ETH Price: $2,940.44 (-5.77%)
Gas: 6 Gwei

Token

DogeV3 (DOGEV3)
 

Overview

Max Total Supply

130,000,000,000 DOGEV3

Holders

129 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
0838.eth
Balance
924,380,769.51322397 DOGEV3

Value
$0.00
0x8d701bd0504a13aa89bdbd30ad45688d11adeaca
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A deflationary meme token.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DogeV3

Compiler Version
v0.7.1+commit.f4a555be

Optimization Enabled:
Yes with 200 runs

Other Settings:
constantinople EvmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-18
*/

// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.7.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/2691
    return msg.data;
  }
}

// File: @openzeppelin/contracts/access/Ownable.sol

pragma solidity ^0.7.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
  address private _owner;

  event OwnershipTransferred(
    address indexed previousOwner,
    address indexed newOwner
  );

  /**
   * @dev Initializes the contract setting the deployer as the initial owner.
   */
  constructor() {
    address msgSender = _msgSender();
    _owner = msgSender;
    emit OwnershipTransferred(address(0), msgSender);
  }

  /**
   * @dev Returns the address of the current owner.
   */
  function owner() public view returns (address) {
    return _owner;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(_owner == _msgSender(), "Ownable: caller is not the owner");
    _;
  }

  /**
   * @dev Leaves the contract without owner. It will not be possible to call
   * `onlyOwner` functions anymore. Can only be called by the current owner.
   *
   * NOTE: Renouncing ownership will leave the contract without an owner,
   * thereby removing any functionality that is only available to the owner.
   */
  function renounceOwnership() public virtual onlyOwner {
    emit OwnershipTransferred(_owner, address(0));
    _owner = address(0);
  }

  /**
   * @dev Transfers ownership of the contract to a new account (`newOwner`).
   * Can only be called by the current owner.
   */
  function transferOwnership(address newOwner) public virtual onlyOwner {
    require(newOwner != address(0), "Ownable: new owner is the zero address");
    emit OwnershipTransferred(_owner, newOwner);
    _owner = newOwner;
  }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.7.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
  /**
   * @dev Returns the amount of tokens in existence.
   */
  function totalSupply() external view returns (uint256);

  /**
   * @dev Returns the amount of tokens owned by `account`.
   */
  function balanceOf(address account) external view returns (uint256);

  /**
   * @dev Moves `amount` tokens from the caller's account to `recipient`.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transfer(address recipient, uint256 amount) external returns (bool);

  /**
   * @dev Returns the remaining number of tokens that `spender` will be
   * allowed to spend on behalf of `owner` through {transferFrom}. This is
   * zero by default.
   *
   * This value changes when {approve} or {transferFrom} are called.
   */
  function allowance(address owner, address spender)
    external
    view
    returns (uint256);

  /**
   * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * IMPORTANT: Beware that changing an allowance with this method brings the risk
   * that someone may use both the old and the new allowance by unfortunate
   * transaction ordering. One possible solution to mitigate this race
   * condition is to first reduce the spender's allowance to 0 and set the
   * desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   *
   * Emits an {Approval} event.
   */
  function approve(address spender, uint256 amount) external returns (bool);

  /**
   * @dev Moves `amount` tokens from `sender` to `recipient` using the
   * allowance mechanism. `amount` is then deducted from the caller's
   * allowance.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transferFrom(
    address sender,
    address recipient,
    uint256 amount
  ) external returns (bool);

  /**
   * @dev Emitted when `value` tokens are moved from one account (`from`) to
   * another (`to`).
   *
   * Note that `value` may be zero.
   */
  event Transfer(address indexed from, address indexed to, uint256 value);

  /**
   * @dev Emitted when the allowance of a `spender` for an `owner` is set by
   * a call to {approve}. `value` is the new allowance.
   */
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: contracts/library/SafeMath96.sol

pragma solidity ^0.7.1;

library SafeMath96 {
  /**
   * @dev Returns the addition of two unsigned integers, reverting on
   * overflow.
   *
   * Counterpart to Solidity's `+` operator.
   *
   * Requirements:
   *
   * - Addition cannot overflow.
   */
  function add(uint96 a, uint96 b) internal pure returns (uint96) {
    uint96 c = a + b;
    require(c >= a, "SafeMath: addition overflow");

    return c;
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting on
   * overflow (when the result is negative).
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   *
   * - Subtraction cannot overflow.
   */
  function sub(uint96 a, uint96 b) internal pure returns (uint96) {
    return sub(a, b, "SafeMath: subtraction overflow");
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
   * overflow (when the result is negative).
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   *
   * - Subtraction cannot overflow.
   */
  function sub(
    uint96 a,
    uint96 b,
    string memory errorMessage
  ) internal pure returns (uint96) {
    require(b <= a, errorMessage);
    uint96 c = a - b;

    return c;
  }

  /**
   * @dev Returns the multiplication of two unsigned integers, reverting on
   * overflow.
   *
   * Counterpart to Solidity's `*` operator.
   *
   * Requirements:
   *
   * - Multiplication cannot overflow.
   */
  function mul(uint96 a, uint96 b) internal pure returns (uint96) {
    // 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/522
    if (a == 0) {
      return 0;
    }

    uint96 c = a * b;
    require(c / a == b, "SafeMath: multiplication overflow");

    return c;
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts on
   * division by zero. The result is rounded towards zero.
   *
   * Counterpart to Solidity's `/` operator. Note: this function uses a
   * `revert` opcode (which leaves remaining gas untouched) while Solidity
   * uses an invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   *
   * - The divisor cannot be zero.
   */
  function div(uint96 a, uint96 b) internal pure returns (uint96) {
    return div(a, b, "SafeMath: division by zero");
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
   * division by zero. The result is rounded towards zero.
   *
   * Counterpart to Solidity's `/` operator. Note: this function uses a
   * `revert` opcode (which leaves remaining gas untouched) while Solidity
   * uses an invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   *
   * - The divisor cannot be zero.
   */
  function div(
    uint96 a,
    uint96 b,
    string memory errorMessage
  ) internal pure returns (uint96) {
    require(b > 0, errorMessage);
    uint96 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts when dividing by zero.
   *
   * Counterpart to Solidity's `%` operator. This function uses a `revert`
   * opcode (which leaves remaining gas untouched) while Solidity uses an
   * invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   *
   * - The divisor cannot be zero.
   */
  function mod(uint96 a, uint96 b) internal pure returns (uint96) {
    return mod(a, b, "SafeMath: modulo by zero");
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts with custom message when dividing by zero.
   *
   * Counterpart to Solidity's `%` operator. This function uses a `revert`
   * opcode (which leaves remaining gas untouched) while Solidity uses an
   * invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   *
   * - The divisor cannot be zero.
   */
  function mod(
    uint96 a,
    uint96 b,
    string memory errorMessage
  ) internal pure returns (uint96) {
    require(b != 0, errorMessage);
    return a % b;
  }
}

// File: contracts/library/SafeCast96.sol

pragma solidity ^0.7.1;

library SafeCast96 {
  function toUint96(uint256 value) internal pure returns (uint96) {
    require(value < 2**96, "SafeCast: value doesn't fit in 96 bits");
    return uint96(value);
  }
}

// File: @openzeppelin/contracts/utils/SafeCast.sol

pragma solidity ^0.7.0;

/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such 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.
 *
 * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
 * all math on `uint256` and `int256` and then downcasting.
 */
library SafeCast {
  /**
   * @dev Returns the downcasted uint128 from uint256, reverting on
   * overflow (when the input is greater than largest uint128).
   *
   * Counterpart to Solidity's `uint128` operator.
   *
   * Requirements:
   *
   * - input must fit into 128 bits
   */
  function toUint128(uint256 value) internal pure returns (uint128) {
    require(value < 2**128, "SafeCast: value doesn't fit in 128 bits");
    return uint128(value);
  }

  /**
   * @dev Returns the downcasted uint64 from uint256, reverting on
   * overflow (when the input is greater than largest uint64).
   *
   * Counterpart to Solidity's `uint64` operator.
   *
   * Requirements:
   *
   * - input must fit into 64 bits
   */
  function toUint64(uint256 value) internal pure returns (uint64) {
    require(value < 2**64, "SafeCast: value doesn't fit in 64 bits");
    return uint64(value);
  }

  /**
   * @dev Returns the downcasted uint32 from uint256, reverting on
   * overflow (when the input is greater than largest uint32).
   *
   * Counterpart to Solidity's `uint32` operator.
   *
   * Requirements:
   *
   * - input must fit into 32 bits
   */
  function toUint32(uint256 value) internal pure returns (uint32) {
    require(value < 2**32, "SafeCast: value doesn't fit in 32 bits");
    return uint32(value);
  }

  /**
   * @dev Returns the downcasted uint16 from uint256, reverting on
   * overflow (when the input is greater than largest uint16).
   *
   * Counterpart to Solidity's `uint16` operator.
   *
   * Requirements:
   *
   * - input must fit into 16 bits
   */
  function toUint16(uint256 value) internal pure returns (uint16) {
    require(value < 2**16, "SafeCast: value doesn't fit in 16 bits");
    return uint16(value);
  }

  /**
   * @dev Returns the downcasted uint8 from uint256, reverting on
   * overflow (when the input is greater than largest uint8).
   *
   * Counterpart to Solidity's `uint8` operator.
   *
   * Requirements:
   *
   * - input must fit into 8 bits.
   */
  function toUint8(uint256 value) internal pure returns (uint8) {
    require(value < 2**8, "SafeCast: value doesn't fit in 8 bits");
    return uint8(value);
  }

  /**
   * @dev Converts a signed int256 into an unsigned uint256.
   *
   * Requirements:
   *
   * - input must be greater than or equal to 0.
   */
  function toUint256(int256 value) internal pure returns (uint256) {
    require(value >= 0, "SafeCast: value must be positive");
    return uint256(value);
  }

  /**
   * @dev Returns the downcasted int128 from int256, reverting on
   * overflow (when the input is less than smallest int128 or
   * greater than largest int128).
   *
   * Counterpart to Solidity's `int128` operator.
   *
   * Requirements:
   *
   * - input must fit into 128 bits
   *
   * _Available since v3.1._
   */
  function toInt128(int256 value) internal pure returns (int128) {
    require(
      value >= -2**127 && value < 2**127,
      "SafeCast: value doesn't fit in 128 bits"
    );
    return int128(value);
  }

  /**
   * @dev Returns the downcasted int64 from int256, reverting on
   * overflow (when the input is less than smallest int64 or
   * greater than largest int64).
   *
   * Counterpart to Solidity's `int64` operator.
   *
   * Requirements:
   *
   * - input must fit into 64 bits
   *
   * _Available since v3.1._
   */
  function toInt64(int256 value) internal pure returns (int64) {
    require(
      value >= -2**63 && value < 2**63,
      "SafeCast: value doesn't fit in 64 bits"
    );
    return int64(value);
  }

  /**
   * @dev Returns the downcasted int32 from int256, reverting on
   * overflow (when the input is less than smallest int32 or
   * greater than largest int32).
   *
   * Counterpart to Solidity's `int32` operator.
   *
   * Requirements:
   *
   * - input must fit into 32 bits
   *
   * _Available since v3.1._
   */
  function toInt32(int256 value) internal pure returns (int32) {
    require(
      value >= -2**31 && value < 2**31,
      "SafeCast: value doesn't fit in 32 bits"
    );
    return int32(value);
  }

  /**
   * @dev Returns the downcasted int16 from int256, reverting on
   * overflow (when the input is less than smallest int16 or
   * greater than largest int16).
   *
   * Counterpart to Solidity's `int16` operator.
   *
   * Requirements:
   *
   * - input must fit into 16 bits
   *
   * _Available since v3.1._
   */
  function toInt16(int256 value) internal pure returns (int16) {
    require(
      value >= -2**15 && value < 2**15,
      "SafeCast: value doesn't fit in 16 bits"
    );
    return int16(value);
  }

  /**
   * @dev Returns the downcasted int8 from int256, reverting on
   * overflow (when the input is less than smallest int8 or
   * greater than largest int8).
   *
   * Counterpart to Solidity's `int8` operator.
   *
   * Requirements:
   *
   * - input must fit into 8 bits.
   *
   * _Available since v3.1._
   */
  function toInt8(int256 value) internal pure returns (int8) {
    require(
      value >= -2**7 && value < 2**7,
      "SafeCast: value doesn't fit in 8 bits"
    );
    return int8(value);
  }

  /**
   * @dev Converts an unsigned uint256 into a signed int256.
   *
   * Requirements:
   *
   * - input must be less than or equal to maxInt256.
   */
  function toInt256(uint256 value) internal pure returns (int256) {
    require(value < 2**255, "SafeCast: value doesn't fit in an int256");
    return int256(value);
  }
}

// File: @openzeppelin/contracts/math/SafeMath.sol

pragma solidity ^0.7.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
  /**
   * @dev Returns the addition of two unsigned integers, reverting on
   * overflow.
   *
   * Counterpart to Solidity's `+` operator.
   *
   * Requirements:
   *
   * - Addition cannot overflow.
   */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a, "SafeMath: addition overflow");

    return c;
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting on
   * overflow (when the result is negative).
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   *
   * - Subtraction cannot overflow.
   */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    return sub(a, b, "SafeMath: subtraction overflow");
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
   * overflow (when the result is negative).
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   *
   * - Subtraction cannot overflow.
   */
  function sub(
    uint256 a,
    uint256 b,
    string memory errorMessage
  ) internal pure returns (uint256) {
    require(b <= a, errorMessage);
    uint256 c = a - b;

    return c;
  }

  /**
   * @dev Returns the multiplication of two unsigned integers, reverting on
   * overflow.
   *
   * Counterpart to Solidity's `*` operator.
   *
   * Requirements:
   *
   * - Multiplication cannot overflow.
   */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // 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/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b, "SafeMath: multiplication overflow");

    return c;
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts on
   * division by zero. The result is rounded towards zero.
   *
   * Counterpart to Solidity's `/` operator. Note: this function uses a
   * `revert` opcode (which leaves remaining gas untouched) while Solidity
   * uses an invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   *
   * - The divisor cannot be zero.
   */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    return div(a, b, "SafeMath: division by zero");
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
   * division by zero. The result is rounded towards zero.
   *
   * Counterpart to Solidity's `/` operator. Note: this function uses a
   * `revert` opcode (which leaves remaining gas untouched) while Solidity
   * uses an invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   *
   * - The divisor cannot be zero.
   */
  function div(
    uint256 a,
    uint256 b,
    string memory errorMessage
  ) internal pure returns (uint256) {
    require(b > 0, errorMessage);
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts when dividing by zero.
   *
   * Counterpart to Solidity's `%` operator. This function uses a `revert`
   * opcode (which leaves remaining gas untouched) while Solidity uses an
   * invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   *
   * - The divisor cannot be zero.
   */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    return mod(a, b, "SafeMath: modulo by zero");
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts with custom message when dividing by zero.
   *
   * Counterpart to Solidity's `%` operator. This function uses a `revert`
   * opcode (which leaves remaining gas untouched) while Solidity uses an
   * invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   *
   * - The divisor cannot be zero.
   */
  function mod(
    uint256 a,
    uint256 b,
    string memory errorMessage
  ) internal pure returns (uint256) {
    require(b != 0, errorMessage);
    return a % b;
  }
}

// File: contracts/Interfaces/BaseUniswapV3.sol

pragma solidity ^0.7.1;

library BaseUniswapV3 {
  struct MintParams {
    address token0;
    address token1;
    uint24 fee;
    int24 tickLower;
    int24 tickUpper;
    uint256 amount0Desired;
    uint256 amount1Desired;
    uint256 amount0Min;
    uint256 amount1Min;
    address recipient;
    uint256 deadline;
  }

  struct DecreaseLiquidityParams {
    uint256 tokenId;
    uint128 liquidity;
    uint256 amount0Min;
    uint256 amount1Min;
    uint256 deadline;
  }

  struct CollectParams {
    uint256 tokenId;
    address recipient;
    uint128 amount0Max;
    uint128 amount1Max;
  }
}

// File: contracts/Interfaces/LiquidityManagementInterface.sol

pragma solidity ^0.7.1;
pragma experimental ABIEncoderV2;

interface LiquidityManagementInterface {
  /// @notice Returns the position information associated with a given token ID.
  /// @dev Throws if the token ID is not valid.
  /// @param tokenId The ID of the token that represents the position
  /// @return nonce The nonce for permits
  /// @return operator The address that is approved for spending
  /// @return token0 The address of the token0 for a specific pool
  /// @return token1 The address of the token1 for a specific pool
  /// @return fee The fee associated with the pool
  /// @return tickLower The lower end of the tick range for the position
  /// @return tickUpper The higher end of the tick range for the position
  /// @return liquidity The liquidity of the position
  /// @return feeGrowthInside0LastX128 The fee growth of token0 as of the last action on the individual position
  /// @return feeGrowthInside1LastX128 The fee growth of token1 as of the last action on the individual position
  /// @return tokensOwed0 The uncollected amount of token0 owed to the position as of the last computation
  /// @return tokensOwed1 The uncollected amount of token1 owed to the position as of the last computation
  function positions(uint256 tokenId)
    external
    view
    returns (
      uint96 nonce,
      address operator,
      address token0,
      address token1,
      uint24 fee,
      int24 tickLower,
      int24 tickUpper,
      uint128 liquidity,
      uint256 feeGrowthInside0LastX128,
      uint256 feeGrowthInside1LastX128,
      uint128 tokensOwed0,
      uint128 tokensOwed1
    );

  /// @notice Creates a new position wrapped in a NFT
  /// @dev Call this when the pool does exist and is initialized. Note that if the pool is created but not initialized
  /// a method does not exist, i.e. the pool is assumed to be initialized.
  /// @param params The params necessary to mint a position, encoded as `MintParams` in calldata
  /// @return tokenId The ID of the token that represents the minted position
  /// @return liquidity The amount of liquidity for this position
  /// @return amount0 The amount of token0
  /// @return amount1 The amount of token1
  function mint(BaseUniswapV3.MintParams calldata params)
    external
    payable
    returns (
      uint256 tokenId,
      uint128 liquidity,
      uint256 amount0,
      uint256 amount1
    );

  /// @notice Decreases the amount of liquidity in a position and accounts it to the position
  /// @param params tokenId The ID of the token for which liquidity is being decreased,
  /// amount The amount by which liquidity will be decreased,
  /// amount0Min The minimum amount of token0 that should be accounted for the burned liquidity,
  /// amount1Min The minimum amount of token1 that should be accounted for the burned liquidity,
  /// deadline The time by which the transaction must be included to effect the change
  /// @return amount0 The amount of token0 accounted to the position's tokens owed
  /// @return amount1 The amount of token1 accounted to the position's tokens owed
  function decreaseLiquidity(
    BaseUniswapV3.DecreaseLiquidityParams calldata params
  ) external payable returns (uint256 amount0, uint256 amount1);

  function collect(BaseUniswapV3.CollectParams calldata params)
    external
    payable
    returns (uint256 amount0, uint256 amount1);
}

// File: contracts/Interfaces/CalculatorInterface.sol

pragma solidity ^0.7.1;

interface DogeV3CalculatorInterface {
  function newTicks(
    int24 currentTick,
    int24 startTick,
    int24 endTick,
    int24 denominator,
    uint32 startTimestamp
  )
    external
    view
    returns (
      int24 upperTick,
      int24 lowerTick,
      bool isSafeIncrement
    );

  function setInitialTicks(int24 currentTick, int24 denominator)
    external
    view
    returns (int24 upperTick, int24 lowerTick);

  function getCurrentLiquidity(
    uint160 sqrtRatioX96,
    int24 upperTick,
    int24 lowerTick,
    uint256 amount0,
    uint256 amount1
  ) external pure returns (uint128 fullLiquidity, uint128 limitedLiquidity);

  function ratioE8() external view returns (uint64);

  function getPriceE8FromSQRTPrice(uint160 sqrtPriceX96)
    external
    pure
    returns (uint256 priceE8);

  function getPriceE8FromTick(int24 tick)
    external
    pure
    returns (uint256 priceE8);

  function roundDown(int24 tick, int24 denominator)
    external
    pure
    returns (int24 ans);

  function getTickFromSQRTPrice(uint160 sqrtPriceX96)
    external
    pure
    returns (int24);

  function getDifference() external view returns (int24 tickDifference);
}

// File: @uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolImmutables.sol

pragma 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 values
interface IUniswapV3PoolImmutables {
  /// @notice The contract that deployed the pool, which must adhere to the IUniswapV3Factory interface
  /// @return The contract address
  function factory() external view returns (address);

  /// @notice The first of the two tokens of the pool, sorted by address
  /// @return The token contract address
  function token0() external view returns (address);

  /// @notice The second of the two tokens of the pool, sorted by address
  /// @return The token contract address
  function token1() external view returns (address);

  /// @notice The pool's fee in hundredths of a bip, i.e. 1e-6
  /// @return The fee
  function 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.
  /// @return The tick spacing
  function tickSpacing() external view returns (int24);

  /// @notice The maximum amount of position liquidity that can use any tick in the range
  /// @dev This parameter is enforced per tick to prevent liquidity from overflowing a uint128 at any point, and
  /// also prevents out-of-range liquidity from being used to prevent adding in-range liquidity to a pool
  /// @return The max amount of liquidity per tick
  function maxLiquidityPerTick() external view returns (uint128);
}

// File: @uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolState.sol

pragma 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 transaction
interface 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 reentrancy
  function slot0()
    external
    view
    returns (
      uint160 sqrtPriceX96,
      int24 tick,
      uint16 observationIndex,
      uint16 observationCardinality,
      uint16 observationCardinalityNext,
      uint8 feeProtocol,
      bool unlocked
    );

  /// @notice The fee growth as a Q128.128 fees of token0 collected per unit of liquidity for the entire life of the pool
  /// @dev This value can overflow the uint256
  function feeGrowthGlobal0X128() external view returns (uint256);

  /// @notice The fee growth as a Q128.128 fees of token1 collected per unit of liquidity for the entire life of the pool
  /// @dev This value can overflow the uint256
  function feeGrowthGlobal1X128() external view returns (uint256);

  /// @notice The amounts of token0 and token1 that are owed to the protocol
  /// @dev Protocol fees will never exceed uint128 max in either token
  function protocolFees()
    external
    view
    returns (uint128 token0, uint128 token1);

  /// @notice The currently in range liquidity available to the pool
  /// @dev This value has no relationship to the total liquidity across all ticks
  function liquidity() external view returns (uint128);

  /// @notice Look up information about a specific tick in the pool
  /// @param tick The tick to look up
  /// @return liquidityGross the total amount of position liquidity that uses the pool either as tick lower or
  /// tick upper,
  /// liquidityNet how much liquidity changes when the pool price crosses the tick,
  /// feeGrowthOutside0X128 the fee growth on the other side of the tick from the current tick in token0,
  /// feeGrowthOutside1X128 the fee growth on the other side of the tick from the current tick in token1,
  /// tickCumulativeOutside the cumulative tick value on the other side of the tick from the current tick
  /// secondsPerLiquidityOutsideX128 the seconds spent per liquidity on the other side of the tick from the current tick,
  /// secondsOutside the seconds spent on the other side of the tick from the current tick,
  /// initialized Set to true if the tick is initialized, i.e. liquidityGross is greater than 0, otherwise equal to false.
  /// Outside values can only be used if the tick is initialized, i.e. if liquidityGross is greater than 0.
  /// In addition, these values are only relative and must be used only in comparison to previous snapshots for
  /// a specific position.
  function ticks(int24 tick)
    external
    view
    returns (
      uint128 liquidityGross,
      int128 liquidityNet,
      uint256 feeGrowthOutside0X128,
      uint256 feeGrowthOutside1X128,
      int56 tickCumulativeOutside,
      uint160 secondsPerLiquidityOutsideX128,
      uint32 secondsOutside,
      bool initialized
    );

  /// @notice Returns 256 packed tick initialized boolean values. See TickBitmap for more information
  function tickBitmap(int16 wordPosition) external view returns (uint256);

  /// @notice Returns the information about a position by the position's key
  /// @param key The position's key is a hash of a preimage composed by the owner, tickLower and tickUpper
  /// @return _liquidity The amount of liquidity in the position,
  /// Returns feeGrowthInside0LastX128 fee growth of token0 inside the tick range as of the last mint/burn/poke,
  /// Returns feeGrowthInside1LastX128 fee growth of token1 inside the tick range as of the last mint/burn/poke,
  /// Returns tokensOwed0 the computed amount of token0 owed to the position as of the last mint/burn/poke,
  /// Returns tokensOwed1 the computed amount of token1 owed to the position as of the last mint/burn/poke
  function positions(bytes32 key)
    external
    view
    returns (
      uint128 _liquidity,
      uint256 feeGrowthInside0LastX128,
      uint256 feeGrowthInside1LastX128,
      uint128 tokensOwed0,
      uint128 tokensOwed1
    );

  /// @notice Returns data about a specific observation index
  /// @param index The element of the observations array to fetch
  /// @dev You most likely want to use #observe() instead of this method to get an observation as of some amount of time
  /// ago, rather than at a specific index in the array.
  /// @return blockTimestamp The timestamp of the observation,
  /// Returns tickCumulative the tick multiplied by seconds elapsed for the life of the pool as of the observation timestamp,
  /// Returns secondsPerLiquidityCumulativeX128 the seconds per in range liquidity for the life of the pool as of the observation timestamp,
  /// Returns initialized whether the observation has been initialized and the values are safe to use
  function observations(uint256 index)
    external
    view
    returns (
      uint32 blockTimestamp,
      int56 tickCumulative,
      uint160 secondsPerLiquidityCumulativeX128,
      bool initialized
    );
}

// File: @uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolDerivedState.sol

pragma 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
  /// timestamp
  function observe(uint32[] calldata secondsAgos)
    external
    view
    returns (
      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.
  /// @param tickLower The lower tick of the range
  /// @param tickUpper The upper tick of the range
  /// @return tickCumulativeInside The snapshot of the tick accumulator for the range
  /// @return secondsPerLiquidityInsideX128 The snapshot of seconds per liquidity for the range
  /// @return secondsInside The snapshot of seconds per liquidity for the range
  function snapshotCumulativesInside(int24 tickLower, int24 tickUpper)
    external
    view
    returns (
      int56 tickCumulativeInside,
      uint160 secondsPerLiquidityInsideX128,
      uint32 secondsInside
    );
}

// File: @uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolActions.sol

pragma solidity >=0.5.0;

/// @title Permissionless pool actions
/// @notice Contains pool methods that can be called by anyone
interface 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.96
  function 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 callback
  function mint(
    address recipient,
    int24 tickLower,
    int24 tickUpper,
    uint128 amount,
    bytes calldata data
  ) external returns (uint256 amount0, uint256 amount1);

  /// @notice Collects tokens owed to a position
  /// @dev Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity.
  /// Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or
  /// amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the
  /// actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity.
  /// @param recipient The address which should receive the fees collected
  /// @param tickLower The lower tick of the position for which to collect fees
  /// @param tickUpper The upper tick of the position for which to collect fees
  /// @param amount0Requested How much token0 should be withdrawn from the fees owed
  /// @param amount1Requested How much token1 should be withdrawn from the fees owed
  /// @return amount0 The amount of fees collected in token0
  /// @return amount1 The amount of fees collected in token1
  function collect(
    address recipient,
    int24 tickLower,
    int24 tickUpper,
    uint128 amount0Requested,
    uint128 amount1Requested
  ) external returns (uint128 amount0, uint128 amount1);

  /// @notice Burn liquidity from the sender and account tokens owed for the liquidity to the position
  /// @dev Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0
  /// @dev Fees must be collected separately via a call to #collect
  /// @param tickLower The lower tick of the position for which to burn liquidity
  /// @param tickUpper The upper tick of the position for which to burn liquidity
  /// @param amount How much liquidity to burn
  /// @return amount0 The amount of token0 sent to the recipient
  /// @return amount1 The amount of token1 sent to the recipient
  function burn(
    int24 tickLower,
    int24 tickUpper,
    uint128 amount
  ) external returns (uint256 amount0, uint256 amount1);

  /// @notice Swap token0 for token1, or token1 for token0
  /// @dev The caller of this method receives a callback in the form of IUniswapV3SwapCallback#uniswapV3SwapCallback
  /// @param recipient The address to receive the output of the swap
  /// @param zeroForOne The direction of the swap, true for token0 to token1, false for token1 to token0
  /// @param amountSpecified The amount of the swap, which implicitly configures the swap as exact input (positive), or exact output (negative)
  /// @param sqrtPriceLimitX96 The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this
  /// value after the swap. If one for zero, the price cannot be greater than this value after the swap
  /// @param data Any data to be passed through to the callback
  /// @return amount0 The delta of the balance of token0 of the pool, exact when negative, minimum when positive
  /// @return amount1 The delta of the balance of token1 of the pool, exact when negative, minimum when positive
  function swap(
    address recipient,
    bool zeroForOne,
    int256 amountSpecified,
    uint160 sqrtPriceLimitX96,
    bytes calldata data
  ) external returns (int256 amount0, int256 amount1);

  /// @notice Receive token0 and/or token1 and pay it back, plus a fee, in the callback
  /// @dev The caller of this method receives a callback in the form of IUniswapV3FlashCallback#uniswapV3FlashCallback
  /// @dev Can be used to donate underlying tokens pro-rata to currently in-range liquidity providers by calling
  /// with 0 amount{0,1} and sending the donation amount(s) from the callback
  /// @param recipient The address which will receive the token0 and token1 amounts
  /// @param amount0 The amount of token0 to send
  /// @param amount1 The amount of token1 to send
  /// @param data Any data to be passed through to the callback
  function flash(
    address recipient,
    uint256 amount0,
    uint256 amount1,
    bytes calldata data
  ) external;

  /// @notice Increase the maximum number of price and liquidity observations that this pool will store
  /// @dev This method is no-op if the pool already has an observationCardinalityNext greater than or equal to
  /// the input observationCardinalityNext.
  /// @param observationCardinalityNext The desired minimum number of observations for the pool to store
  function increaseObservationCardinalityNext(uint16 observationCardinalityNext)
    external;
}

// File: @uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolOwnerActions.sol

pragma solidity >=0.5.0;

/// @title Permissioned pool actions
/// @notice Contains pool methods that may only be called by the factory owner
interface 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 pool
  function 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 token1
  function collectProtocol(
    address recipient,
    uint128 amount0Requested,
    uint128 amount1Requested
  ) external returns (uint128 amount0, uint128 amount1);
}

// File: @uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolEvents.sol

pragma solidity >=0.5.0;

/// @title Events emitted by a pool
/// @notice Contains all events emitted by the pool
interface 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 pool
  event 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 liquidity
  event Mint(
    address sender,
    address indexed owner,
    int24 indexed tickLower,
    int24 indexed tickUpper,
    uint128 amount,
    uint256 amount0,
    uint256 amount1
  );

  /// @notice Emitted when fees are collected by the owner of a position
  /// @dev Collect events may be emitted with zero amount0 and amount1 when the caller chooses not to collect fees
  /// @param owner The owner of the position for which fees are collected
  /// @param tickLower The lower tick of the position
  /// @param tickUpper The upper tick of the position
  /// @param amount0 The amount of token0 fees collected
  /// @param amount1 The amount of token1 fees collected
  event Collect(
    address indexed owner,
    address recipient,
    int24 indexed tickLower,
    int24 indexed tickUpper,
    uint128 amount0,
    uint128 amount1
  );

  /// @notice Emitted when a position's liquidity is removed
  /// @dev Does not withdraw any fees earned by the liquidity position, which must be withdrawn via #collect
  /// @param owner The owner of the position for which liquidity is removed
  /// @param tickLower The lower tick of the position
  /// @param tickUpper The upper tick of the position
  /// @param amount The amount of liquidity to remove
  /// @param amount0 The amount of token0 withdrawn
  /// @param amount1 The amount of token1 withdrawn
  event Burn(
    address indexed owner,
    int24 indexed tickLower,
    int24 indexed tickUpper,
    uint128 amount,
    uint256 amount0,
    uint256 amount1
  );

  /// @notice Emitted by the pool for any swaps between token0 and token1
  /// @param sender The address that initiated the swap call, and that received the callback
  /// @param recipient The address that received the output of the swap
  /// @param amount0 The delta of the token0 balance of the pool
  /// @param amount1 The delta of the token1 balance of the pool
  /// @param sqrtPriceX96 The sqrt(price) of the pool after the swap, as a Q64.96
  /// @param liquidity The liquidity of the pool after the swap
  /// @param tick The log base 1.0001 of price of the pool after the swap
  event Swap(
    address indexed sender,
    address indexed recipient,
    int256 amount0,
    int256 amount1,
    uint160 sqrtPriceX96,
    uint128 liquidity,
    int24 tick
  );

  /// @notice Emitted by the pool for any flashes of token0/token1
  /// @param sender The address that initiated the swap call, and that received the callback
  /// @param recipient The address that received the tokens from flash
  /// @param amount0 The amount of token0 that was flashed
  /// @param amount1 The amount of token1 that was flashed
  /// @param paid0 The amount of token0 paid for the flash, which can exceed the amount0 plus the fee
  /// @param paid1 The amount of token1 paid for the flash, which can exceed the amount1 plus the fee
  event Flash(
    address indexed sender,
    address indexed recipient,
    uint256 amount0,
    uint256 amount1,
    uint256 paid0,
    uint256 paid1
  );

  /// @notice Emitted by the pool for increases to the number of observations that can be stored
  /// @dev observationCardinalityNext is not the observation cardinality until an observation is written at the index
  /// just before a mint/swap/burn.
  /// @param observationCardinalityNextOld The previous value of the next observation cardinality
  /// @param observationCardinalityNextNew The updated value of the next observation cardinality
  event IncreaseObservationCardinalityNext(
    uint16 observationCardinalityNextOld,
    uint16 observationCardinalityNextNew
  );

  /// @notice Emitted when the protocol fee is changed by the pool
  /// @param feeProtocol0Old The previous value of the token0 protocol fee
  /// @param feeProtocol1Old The previous value of the token1 protocol fee
  /// @param feeProtocol0New The updated value of the token0 protocol fee
  /// @param feeProtocol1New The updated value of the token1 protocol fee
  event SetFeeProtocol(
    uint8 feeProtocol0Old,
    uint8 feeProtocol1Old,
    uint8 feeProtocol0New,
    uint8 feeProtocol1New
  );

  /// @notice Emitted when the collected protocol fees are withdrawn by the factory owner
  /// @param sender The address that collects the protocol fees
  /// @param recipient The address that receives the collected protocol fees
  /// @param amount0 The amount of token0 protocol fees that is withdrawn
  /// @param amount0 The amount of token1 protocol fees that is withdrawn
  event CollectProtocol(
    address indexed sender,
    address indexed recipient,
    uint128 amount0,
    uint128 amount1
  );
}

// File: @uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol

pragma solidity >=0.5.0;

/// @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 pieces
interface IUniswapV3Pool is
  IUniswapV3PoolImmutables,
  IUniswapV3PoolState,
  IUniswapV3PoolDerivedState,
  IUniswapV3PoolActions,
  IUniswapV3PoolOwnerActions,
  IUniswapV3PoolEvents
{

}

// File: contracts/Interfaces/DogeV3Interface.sol

pragma solidity 0.7.1;

interface DogeV3Interface {
  /*
  function getNFTInfo(uint16 stageID)
    external
    view
    returns (
      uint96 nonce,
      address operator,
      address token0,
      address token1,
      uint24 fee,
      int24 tickLower,
      int24 tickUpper,
      uint128 liquidity,
      uint256 feeGrowthInside0LastX128,
      uint256 feeGrowthInside1LastX128,
      uint128 tokensOwed0,
      uint128 tokensOwed1
    );
*/

  function currentStage() external view returns (uint16);

  function incrementStage() external;

  function changeCalculator(DogeV3CalculatorInterface newCalc) external;

  function depositFirstStage(uint256 amount, IUniswapV3Pool _swap) external;

  function getSwapInfo()
    external
    view
    returns (int24 tick, address swapAddress);

  function isReversedSwap() external view returns (bool);

  function getStageInfo(uint16 stageID)
    external
    view
    returns (
      bool isReversedSwap,
      int24 upterTick,
      int24 lowerTick,
      uint32 startTimestamp,
      uint128 tokenId,
      uint128 tokenId2
    );

  function isUpgradable() external view returns (bool upgradable);

  function currentStatus()
    external
    view
    returns (
      uint16 currentStageId,
      uint32 startTimestamp,
      uint128 tokenId,
      uint128 tokenId2,
      uint256 upperPrice,
      uint256 lowerPrice,
      uint256 currentPrice
    );
}

// File: contracts/DogeV3.sol

pragma solidity 0.7.1;

contract DogeV3 is Ownable, DogeV3Interface, IERC20 {
  using SafeMath96 for uint96;
  using SafeCast96 for uint256;
  using SafeCast for uint256;
  using SafeMath for uint256;
  enum LEGENDS { VITALIK, UNISWAP_DEPLOYER, NONE }
  struct Balance {
    uint96 balance;
    bool getBonusFromVitalik;
    bool getBonusFromUniswapDeployer;
  }

  struct StageInfo {
    int24 upperTick;
    int24 lowerTick;
    uint32 startTimestamp;
    uint96 tokenId;
    uint96 tokenId2;
  }

  uint96 public constant BonusAmount = 15000 * 10**8;

  uint16 public override currentStage;
  bool isGameContinuing = true;
  mapping(address => Balance) public balance;
  mapping(uint16 => StageInfo) public stage;
  mapping(address => mapping(address => uint96)) private _allowances;
  mapping(LEGENDS => bool) public isAcceptedByLegend;
  mapping(LEGENDS => address) public addresses;

  uint96 constant _totalSupply = 13 * 10**18;
  uint96 public constant donateAmount = 200000000 * 10**8;
  LiquidityManagementInterface public immutable LiquidityManager;
  IERC20 public immutable pair;
  DogeV3CalculatorInterface public calcs;
  IUniswapV3Pool public swap;

  uint8 public constant decimals = 8;
  uint96 public circulatingSupply;
  string public constant name = "DogeV3";
  string public constant symbol = "DOGEV3";

  address public immutable IndiaCovid;
  bool internal isReversed;

  event StageIncrement(
    uint16 newStage,
    int24 nextUpperTick,
    int24 nextLowerTick,
    bool isSeccess
  );
  event LegendAccepted(LEGENDS indexed Legend);
  event GetBonusFromLegends(address indexed recipient, LEGENDS Legend);
  event CheerForIndia(LEGENDS indexed Legend, uint96 amount);

  modifier onlyLegends() {
    require(isLegend(msg.sender), "ERROR: You are not legend");
    _;
  }

  constructor(
    LiquidityManagementInterface _LiquidityManager,
    address vitalik,
    address deployer,
    address indiaCovid,
    IERC20 _pair,
    DogeV3CalculatorInterface _calcs
  ) {
    LiquidityManager = _LiquidityManager;
    pair = _pair;
    addresses[LEGENDS.VITALIK] = vitalik;
    addresses[LEGENDS.UNISWAP_DEPLOYER] = deployer;
    IndiaCovid = indiaCovid;
    balance[address(this)].balance = _totalSupply - 10**12;
    balance[msg.sender].balance = 10**12;
    calcs = _calcs;
    if (address(this) > address(_pair)) {
      isReversed = true;
    }
  }

  function totalSupply() public pure override returns (uint256) {
    return _totalSupply;
  }

  function depositFirstStage(uint256 amount, IUniswapV3Pool _swap)
    external
    override
    onlyOwner
  {
    uint96 beforeBalance = balance[address(this)].balance;
    require(address(swap) == address(0), "Invalid swap Address");
    swap = _swap;
    (, int24 tick, , , , , ) = swap.slot0();
    (int24 upperTick, int24 lowerTick) =
      calcs.setInitialTicks(tick, _swap.tickSpacing());
    require(
      pair.transferFrom(msg.sender, address(this), amount),
      "Cannot transfer WETH"
    );
    IERC20(address(this)).approve(address(LiquidityManager), uint96(-1));
    pair.approve(address(LiquidityManager), uint256(-1));
    (uint256 tokenId, , , ) =
      LiquidityManager.mint(
        _getMintParams(
          upperTick,
          lowerTick,
          balance[address(this)].balance,
          (amount * 9) / 10
        )
      );
    LiquidityManager.mint(
      _getMintParams(
        887220,
        -887220,
        balance[address(this)].balance,
        (amount * 1) / 10
      )
    );
    uint96 afterBalance = balance[address(this)].balance;
    int96 balanceDiff = int96(beforeBalance) - int96(afterBalance);
    if (balanceDiff < 0) {
      circulatingSupply -= uint96(-1 * balanceDiff);
    } else {
      circulatingSupply += uint96(balanceDiff);
    }
    stage[1] = StageInfo(
      upperTick,
      lowerTick,
      block.timestamp.toUint32(),
      uint96(tokenId),
      0
    );
    currentStage = 1;
  }

  function changeCalculator(DogeV3CalculatorInterface newCalc)
    public
    override
    onlyOwner
  {
    calcs = newCalc;
  }

  function acceptByLegend() external onlyLegends {
    LEGENDS legendName = LegendToAddress(msg.sender);
    require(!isAcceptedByLegend[legendName], "Already Accepted");
    isAcceptedByLegend[legendName] = true;
    _transfer(address(this), IndiaCovid, donateAmount);
    emit LegendAccepted(legendName);
    emit CheerForIndia(legendName, donateAmount);
  }

  function getBonusFromLegend() external returns (uint96 bonusAmount) {
    require(balance[msg.sender].balance != 0, "ERROR: You have no DOGEV3");
    Balance memory recipient = balance[msg.sender];
    if (!recipient.getBonusFromVitalik && isAcceptedByLegend[LEGENDS.VITALIK]) {
      bonusAmount += BonusAmount;
      recipient.getBonusFromVitalik = true;
      emit GetBonusFromLegends(msg.sender, LEGENDS.VITALIK);
    }

    if (
      !recipient.getBonusFromUniswapDeployer &&
      isAcceptedByLegend[LEGENDS.UNISWAP_DEPLOYER]
    ) {
      bonusAmount += BonusAmount;
      recipient.getBonusFromUniswapDeployer = true;
      emit GetBonusFromLegends(msg.sender, LEGENDS.UNISWAP_DEPLOYER);
    }

    require(
      _transfer(address(this), msg.sender, bonusAmount),
      "Bonus Transfer failed"
    );
  }

  function checkTokenMove(Balance memory sender, Balance memory recipient)
    public
    pure
    returns (Balance memory)
  {
    if (sender.getBonusFromVitalik) {
      recipient.getBonusFromVitalik = true;
    }
    if (sender.getBonusFromUniswapDeployer) {
      recipient.getBonusFromUniswapDeployer = true;
    }
    return recipient;
  }

  function transfer(address to, uint256 value)
    external
    override
    returns (bool)
  {
    return _transfer(msg.sender, to, value);
  }

  function LegendToAddress(address legendAddress)
    public
    view
    returns (LEGENDS)
  {
    if (legendAddress == addresses[LEGENDS.VITALIK]) {
      return LEGENDS.VITALIK;
    } else if (legendAddress == addresses[LEGENDS.UNISWAP_DEPLOYER]) {
      return LEGENDS.UNISWAP_DEPLOYER;
    }
    return LEGENDS.NONE;
  }

  function transferFrom(
    address from,
    address to,
    uint256 value
  ) external override returns (bool) {
    _allowances[from][msg.sender] = _allowances[from][msg.sender].sub(
      value.toUint96()
    );
    return _transfer(from, to, value);
  }

  function approve(address to, uint256 value) external override returns (bool) {
    if (value > uint96(-1)) {
      value = uint96(-1);
    }
    _allowances[msg.sender][to] = value.toUint96();
    emit Approval(msg.sender, to, value);
    return true;
  }

  function balanceOf(address account) external view override returns (uint256) {
    return (balance[account].balance);
  }

  function allowance(address owner, address spender)
    external
    view
    override
    returns (uint256)
  {
    return _allowances[owner][spender];
  }

  function incrementStage() external override {
    int24 tick;
    {
      (uint160 price, , , , , , ) = swap.slot0();
      tick = calcs.getTickFromSQRTPrice(price);
    }
    StageInfo memory stageInfo = stage[currentStage];
    int24 spacing = swap.tickSpacing();
    (int24 upperTick, int24 lowerTick, bool isSafeIncrement) =
      calcs.newTicks(
        tick,
        stageInfo.upperTick,
        stageInfo.lowerTick,
        spacing,
        stageInfo.startTimestamp
      );
    require(isSafeIncrement, "Invalid Incrementation of the stage");
    {
      (, , , , , , , uint128 liquidity, , , , ) =
        LiquidityManager.positions(stageInfo.tokenId);
      LiquidityManager.decreaseLiquidity(
        BaseUniswapV3.DecreaseLiquidityParams(
          stageInfo.tokenId,
          liquidity,
          0,
          0,
          block.timestamp + 1000000
        )
      );
      LiquidityManager.collect(
        BaseUniswapV3.CollectParams({
          tokenId: stageInfo.tokenId,
          recipient: address(this),
          amount0Max: uint128(-1),
          amount1Max: uint128(-1)
        })
      );
      if (stageInfo.tokenId2 != 0) {
        (, , , , , , , liquidity, , , , ) = LiquidityManager.positions(
          stageInfo.tokenId2
        );
        LiquidityManager.decreaseLiquidity(
          BaseUniswapV3.DecreaseLiquidityParams(
            stageInfo.tokenId2,
            liquidity,
            0,
            0,
            block.timestamp + 1000000
          )
        );
        LiquidityManager.collect(
          BaseUniswapV3.CollectParams({
            tokenId: stageInfo.tokenId2,
            recipient: address(this),
            amount0Max: uint128(-1),
            amount1Max: uint128(-1)
          })
        );
      }
    }
    (uint256 tokenId, uint256 tokenId2) =
      _mint(upperTick, lowerTick, calcs.roundDown(tick, spacing));

    stage[currentStage + 1] = StageInfo(
      upperTick,
      lowerTick,
      block.timestamp.toUint32(),
      tokenId.toUint96(),
      tokenId2.toUint96()
    );

    currentStage += 1;
  }

  function _transfer(
    address from,
    address to,
    uint256 value
  ) internal returns (bool) {
    require(from != address(0), "ERC20: transfer from the zero address");
    require(to != address(0), "ERC20: transfer to the zero address");
    Balance memory recipient = balance[to];
    recipient.balance = recipient.balance.add(value.toUint96());
    balance[from].balance = balance[from].balance.sub(value.toUint96());
    if (from != address(swap) && from != address(LiquidityManager)) {
      recipient = checkTokenMove(balance[from], recipient);
    }
    balance[to] = recipient;
    emit Transfer(from, to, value);
    return true;
  }

  function isLegend(address _legend) public view returns (bool) {
    return (_legend == addresses[LEGENDS.VITALIK] ||
      _legend == addresses[LEGENDS.UNISWAP_DEPLOYER]);
  }

  function _mint(
    int24 tickUpper,
    int24 tickLower,
    int24 currentTick
  ) internal returns (uint256 tokenId, uint256 tokenId2) {
    uint256 dogeAmount = balance[address(this)].balance;
    uint256 ethAmount = pair.balanceOf(address(this));
    uint256 tokenAmount;
    int24 secondUpperTick;
    int24 secondLowerTick;
    if (!isReversed) {
      tokenAmount = getFirstLiquidity(ethAmount);
      secondUpperTick = currentTick;
      secondLowerTick = tickLower;
    } else {
      tokenAmount = getFirstLiquidity(ethAmount);
      secondUpperTick = tickUpper;
      secondLowerTick = currentTick;
    }

    (tokenId, , , ) = LiquidityManager.mint(
      _getMintParams(tickUpper, tickLower, dogeAmount, tokenAmount)
    );
    if (pair.balanceOf(address(this)) != 0) {
      (tokenId2, , , ) = LiquidityManager.mint(
        _getMintParams(
          secondUpperTick,
          secondLowerTick,
          dogeAmount,
          ethAmount - tokenAmount
        )
      );
    }
  }

  function _getMintParams(
    int24 tickUpper,
    int24 tickLower,
    uint256 dogeBalance,
    uint256 wethbalance
  ) internal view returns (BaseUniswapV3.MintParams memory) {
    if (!isReversed) {
      return
        BaseUniswapV3.MintParams({
          token0: address(this),
          token1: address(pair),
          fee: swap.fee(),
          tickUpper: tickUpper,
          tickLower: tickLower,
          amount0Desired: dogeBalance,
          amount1Desired: wethbalance,
          amount0Min: 0,
          amount1Min: 0,
          recipient: address(this),
          deadline: block.timestamp + 1000000
        });
    }

    return
      BaseUniswapV3.MintParams({
        token0: address(pair),
        token1: address(this),
        fee: swap.fee(),
        tickUpper: tickUpper,
        tickLower: tickLower,
        amount0Desired: wethbalance,
        amount1Desired: dogeBalance,
        amount0Min: 0,
        amount1Min: 0,
        recipient: address(this),
        deadline: block.timestamp + 1000000
      });
  }

  function getStageInfo(uint16 stageID)
    external
    view
    override
    returns (
      bool isReversedSwap,
      int24 upperTick,
      int24 lowerTick,
      uint32 startTimestamp,
      uint128 tokenId,
      uint128 tokenId2
    )
  {
    return (
      isReversed,
      stage[stageID].upperTick,
      stage[stageID].lowerTick,
      stage[stageID].startTimestamp,
      stage[stageID].tokenId,
      stage[stageID].tokenId2
    );
  }

  function currentStatus()
    external
    view
    override
    returns (
      uint16 currentStageId,
      uint32 startTimestamp,
      uint128 tokenId,
      uint128 tokenId2,
      uint256 upperPrice,
      uint256 lowerPrice,
      uint256 currentPrice
    )
  {
    currentStageId = currentStage;
    (uint160 price, , , , , , ) = swap.slot0();
    if (isReversed) {
      lowerPrice = uint256(10**36)
        .div(
        calcs.getPriceE8FromTick(
          stage[currentStageId].upperTick - calcs.getDifference()
        )
      )
        .div(10**10);
      upperPrice = uint256(10**36)
        .div(
        calcs.getPriceE8FromTick(
          stage[currentStageId].lowerTick + calcs.getDifference()
        )
      )
        .div(10**10);
      currentPrice = uint256(10**36)
        .div(calcs.getPriceE8FromSQRTPrice(price))
        .div(10**10);
    } else {
      upperPrice = calcs
        .getPriceE8FromTick(stage[currentStageId].upperTick)
        .div(10**10);
      lowerPrice = calcs
        .getPriceE8FromTick(stage[currentStageId].lowerTick)
        .div(10**10);
      currentPrice = calcs.getPriceE8FromSQRTPrice(price).div(10**10);
    }
    startTimestamp = stage[currentStageId].startTimestamp;
    tokenId = stage[currentStageId].tokenId;
    tokenId2 = stage[currentStageId].tokenId2;
  }

  function getFirstLiquidity(uint256 wethAmount) public view returns (uint256) {
    uint64 ratioE8 = calcs.ratioE8();
    if (ratioE8 >= 10**8) {
      return wethAmount;
    }
    return wethAmount.mul(ratioE8).div(10**8);
  }

  function isReversedSwap() public view override returns (bool) {
    return isReversed;
  }

  function getSwapInfo()
    public
    view
    override
    returns (int24 tick, address swapAddress)
  {
    swapAddress = address(swap);
    (, tick, , , , , ) = swap.slot0();
  }

  function isUpgradable() external view override returns (bool upgradable) {
    (uint160 price, , , , , , ) = swap.slot0();
    int24 tick = calcs.getTickFromSQRTPrice(price);
    StageInfo memory stageInfo = stage[currentStage];
    (, , upgradable) = calcs.newTicks(
      tick,
      stageInfo.upperTick,
      stageInfo.lowerTick,
      swap.tickSpacing(),
      stageInfo.startTimestamp
    );
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract LiquidityManagementInterface","name":"_LiquidityManager","type":"address"},{"internalType":"address","name":"vitalik","type":"address"},{"internalType":"address","name":"deployer","type":"address"},{"internalType":"address","name":"indiaCovid","type":"address"},{"internalType":"contract IERC20","name":"_pair","type":"address"},{"internalType":"contract DogeV3CalculatorInterface","name":"_calcs","type":"address"}],"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":"enum DogeV3.LEGENDS","name":"Legend","type":"uint8"},{"indexed":false,"internalType":"uint96","name":"amount","type":"uint96"}],"name":"CheerForIndia","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"enum DogeV3.LEGENDS","name":"Legend","type":"uint8"}],"name":"GetBonusFromLegends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"enum DogeV3.LEGENDS","name":"Legend","type":"uint8"}],"name":"LegendAccepted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"newStage","type":"uint16"},{"indexed":false,"internalType":"int24","name":"nextUpperTick","type":"int24"},{"indexed":false,"internalType":"int24","name":"nextLowerTick","type":"int24"},{"indexed":false,"internalType":"bool","name":"isSeccess","type":"bool"}],"name":"StageIncrement","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"},{"inputs":[],"name":"BonusAmount","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IndiaCovid","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"legendAddress","type":"address"}],"name":"LegendToAddress","outputs":[{"internalType":"enum DogeV3.LEGENDS","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LiquidityManager","outputs":[{"internalType":"contract LiquidityManagementInterface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptByLegend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum DogeV3.LEGENDS","name":"","type":"uint8"}],"name":"addresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balance","outputs":[{"internalType":"uint96","name":"balance","type":"uint96"},{"internalType":"bool","name":"getBonusFromVitalik","type":"bool"},{"internalType":"bool","name":"getBonusFromUniswapDeployer","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"calcs","outputs":[{"internalType":"contract DogeV3CalculatorInterface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract DogeV3CalculatorInterface","name":"newCalc","type":"address"}],"name":"changeCalculator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint96","name":"balance","type":"uint96"},{"internalType":"bool","name":"getBonusFromVitalik","type":"bool"},{"internalType":"bool","name":"getBonusFromUniswapDeployer","type":"bool"}],"internalType":"struct DogeV3.Balance","name":"sender","type":"tuple"},{"components":[{"internalType":"uint96","name":"balance","type":"uint96"},{"internalType":"bool","name":"getBonusFromVitalik","type":"bool"},{"internalType":"bool","name":"getBonusFromUniswapDeployer","type":"bool"}],"internalType":"struct DogeV3.Balance","name":"recipient","type":"tuple"}],"name":"checkTokenMove","outputs":[{"components":[{"internalType":"uint96","name":"balance","type":"uint96"},{"internalType":"bool","name":"getBonusFromVitalik","type":"bool"},{"internalType":"bool","name":"getBonusFromUniswapDeployer","type":"bool"}],"internalType":"struct DogeV3.Balance","name":"","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentStage","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentStatus","outputs":[{"internalType":"uint16","name":"currentStageId","type":"uint16"},{"internalType":"uint32","name":"startTimestamp","type":"uint32"},{"internalType":"uint128","name":"tokenId","type":"uint128"},{"internalType":"uint128","name":"tokenId2","type":"uint128"},{"internalType":"uint256","name":"upperPrice","type":"uint256"},{"internalType":"uint256","name":"lowerPrice","type":"uint256"},{"internalType":"uint256","name":"currentPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"contract IUniswapV3Pool","name":"_swap","type":"address"}],"name":"depositFirstStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"donateAmount","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBonusFromLegend","outputs":[{"internalType":"uint96","name":"bonusAmount","type":"uint96"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"wethAmount","type":"uint256"}],"name":"getFirstLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"stageID","type":"uint16"}],"name":"getStageInfo","outputs":[{"internalType":"bool","name":"isReversedSwap","type":"bool"},{"internalType":"int24","name":"upperTick","type":"int24"},{"internalType":"int24","name":"lowerTick","type":"int24"},{"internalType":"uint32","name":"startTimestamp","type":"uint32"},{"internalType":"uint128","name":"tokenId","type":"uint128"},{"internalType":"uint128","name":"tokenId2","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSwapInfo","outputs":[{"internalType":"int24","name":"tick","type":"int24"},{"internalType":"address","name":"swapAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"incrementStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum DogeV3.LEGENDS","name":"","type":"uint8"}],"name":"isAcceptedByLegend","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_legend","type":"address"}],"name":"isLegend","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isReversedSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isUpgradable","outputs":[{"internalType":"bool","name":"upgradable","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"stage","outputs":[{"internalType":"int24","name":"upperTick","type":"int24"},{"internalType":"int24","name":"lowerTick","type":"int24"},{"internalType":"uint32","name":"startTimestamp","type":"uint32"},{"internalType":"uint96","name":"tokenId","type":"uint96"},{"internalType":"uint96","name":"tokenId2","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swap","outputs":[{"internalType":"contract IUniswapV3Pool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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"}]

60e06040526000805460ff60b01b19167601000000000000000000000000000000000000000000001790553480156200003757600080fd5b5060405162004396380380620043968339810160408190526200005a91620001ce565b600062000066620001ca565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600160601b0319606087811b821660805283901b1660a0526000808052600560208190527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc80546001600160a01b0319166001600160a01b0389161790558591600160028111156200012057fe5b81526020808201929092526040908101600090812080546001600160a01b039586166001600160a01b0319918216179091556001600160601b0319606089901b811660c0523080845260019095528383208054821667b4694636ab6ef00017905533835292909120805490921664e8d4a51000179091556006805485851692169190911790559083161015620001be576008805460ff191660011790555b5050505050506200027a565b3390565b60008060008060008060c08789031215620001e7578182fd5b8651620001f48162000261565b6020880151909650620002078162000261565b60408801519095506200021a8162000261565b60608801519094506200022d8162000261565b6080880151909350620002408162000261565b60a0880151909250620002538162000261565b809150509295509295509295565b6001600160a01b03811681146200027757600080fd5b50565b60805160601c60a05160601c60c05160601c61408262000314600039806105d152806112b3525080610b4c5280610ca452806118655280612c8c5280612da25280612f8352806131105250806107fb5280610c0e5280610cd15280610d6a5280610e3d5280611c455280611cd85280611e015280611eb75280611f8b52806120b35280612a9b528061304c528061319c52506140826000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c80636a90ee6d1161013b578063a8aa1b31116100b8578063dd3198a91161007c578063dd3198a914610480578063dd62ed3e146104a5578063e3d670d7146104b8578063ef8a9235146104da578063f2fde38b146104f55761023d565b8063a8aa1b311461041d578063a9059cbb14610425578063ac8f82a814610438578063b03d186014610458578063bed4f43f146104785761023d565b8063831b6f34116100ff578063831b6f34146103ea5780638da5cb5b146103fd5780639358928b1461040557806395d89b411461040d578063965044d5146104155761023d565b80636a90ee6d146103ac57806370a08231146103b4578063715018a6146103c75780637e541239146103cf5780638119c065146103e25761023d565b806328860534116101c957806353459cca1161018d57806353459cca146103505780635479d940146103635780635918bf3e1461036b5780635bf5d54c14610373578063644d47ec146103885761023d565b8063288605341461030357806330e76cc014610318578063313ce5671461032b57806340324aca1461034057806350685c06146103485761023d565b806318160ddd1161021057806318160ddd1461029d5780631b26c80d146102b25780631bf0c8a9146102c857806323b872dd146102dd57806326d1b9fd146102f05761023d565b8063059ec2291461024257806306fdde031461024c578063088aba5f1461026a578063095ea7b31461028a575b600080fd5b61024a610508565b005b610254610680565b6040516102619190613a3a565b60405180910390f35b61027d610278366004613532565b6106a2565b6040516102619190613930565b61027d6102983660046134eb565b6106b7565b6102a5610760565b6040516102619190613fb3565b6102ba61076c565b60405161026192919061399c565b6102d06107f9565b60405161026191906138bd565b61027d6102eb3660046134ab565b61081d565b61024a6102fe366004613457565b6108b2565b61030b610909565b6040516102619190613fca565b61024a610326366004613717565b610913565b6103336110d1565b6040516102619190613fbc565b61030b6110d6565b6102d06112b1565b6102d061035e366004613532565b6112d5565b61027d6112f0565b6102d0611596565b61037b6115a5565b6040516102619190613f5c565b61039b610396366004613613565b6115b6565b6040516102619594939291906139fe565b61027d611602565b6102a56103c2366004613457565b61160b565b61024a611633565b6102a56103dd3660046136e7565b6116b2565b6102d0611784565b61027d6103f8366004613457565b611793565b6102d0611811565b61030b611820565b610254611836565b61030b611858565b6102d0611863565b61027d6104333660046134eb565b611887565b61044b610446366004613457565b611894565b604051610261919061397a565b61046b6104663660046135e8565b61192a565b6040516102619190613dfa565b61024a61195c565b61049361048e366004613613565b612327565b6040516102619695949392919061393b565b6102a56104b3366004613473565b612385565b6104cb6104c6366004613457565b6123b9565b60405161026193929190613fde565b6104e26123ea565b6040516102619796959493929190613f6b565b61024a610503366004613457565b612892565b61051133611793565b6105365760405162461bcd60e51b815260040161052d90613d1c565b60405180910390fd5b600061054133611894565b90506004600082600281111561055357fe5b600281111561055e57fe5b815260208101919091526040016000205460ff161561058f5760405162461bcd60e51b815260040161052d90613d53565b6001600460008360028111156105a157fe5b60028111156105ac57fe5b81526020810191909152604001600020805460ff19169115159190911790556105fd307f000000000000000000000000000000000000000000000000000000000000000066470de4df820000612948565b5080600281111561060a57fe5b6040517fcac15aaf30cee1801b187bcca814a6f060b5cef5357ec037047490f79ce11e1f90600090a280600281111561063f57fe5b7f2c0febdd57565fa3cdc395313653f984b8847d089a14e0df6e865ce8cebe150766470de4df8200006040516106759190613fca565b60405180910390a250565b60405180604001604052806006815260200165446f6765563360d01b81525081565b60046020526000908152604090205460ff1681565b60006001600160601b038211156106d3576001600160601b0391505b6106dc82612bf2565b3360008181526003602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b039590951694909417909355517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061074e908690613fb3565b60405180910390a35060015b92915050565b67b469471f8014000090565b60075460408051633850c7bd60e01b815290516000926001600160a01b0316918291633850c7bd9160048082019260e092909190829003018186803b1580156107b457600080fd5b505afa1580156107c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ec919061362f565b5093979596505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600061085e61082b83612bf2565b6001600160a01b03861660009081526003602090815260408083203384529091529020546001600160601b031690612c17565b6001600160a01b0385166000908152600360209081526040808320338452909152902080546001600160601b0319166001600160601b03929092169190911790556108aa848484612948565b949350505050565b6108ba612c59565b6000546001600160a01b039081169116146108e75760405162461bcd60e51b815260040161052d90613ca2565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b65015d3ef7980081565b61091b612c59565b6000546001600160a01b039081169116146109485760405162461bcd60e51b815260040161052d90613ca2565b306000908152600160205260409020546007546001600160601b03909116906001600160a01b03161561098d5760405162461bcd60e51b815260040161052d90613b93565b600780546001600160a01b0319166001600160a01b03848116919091179182905560408051633850c7bd60e01b8152905160009390921691633850c7bd9160048082019260e092909190829003018186803b1580156109eb57600080fd5b505afa1580156109ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a23919061362f565b5050505050915050600080600660009054906101000a90046001600160a01b03166001600160a01b031663b4095e2e84876001600160a01b031663d0c93a7c6040518163ffffffff1660e01b815260040160206040518083038186803b158015610a8c57600080fd5b505afa158015610aa0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac49190613551565b6040518363ffffffff1660e01b8152600401610ae19291906139b8565b604080518083038186803b158015610af857600080fd5b505afa158015610b0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b30919061356c565b6040516323b872dd60e01b815291935091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906323b872dd90610b8590339030908b906004016138d1565b602060405180830381600087803b158015610b9f57600080fd5b505af1158015610bb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd79190613516565b610bf35760405162461bcd60e51b815260040161052d90613c33565b60405163095ea7b360e01b8152309063095ea7b390610c3a907f0000000000000000000000000000000000000000000000000000000000000000906000199060040161390e565b602060405180830381600087803b158015610c5457600080fd5b505af1158015610c68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8c9190613516565b5060405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063095ea7b390610cfd907f000000000000000000000000000000000000000000000000000000000000000090600019906004016138f5565b602060405180830381600087803b158015610d1757600080fd5b505af1158015610d2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4f9190613516565b50306000908152600160205260408120546001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690638831645690610daf90869086906001600160601b0316600a60098e025b04612c5d565b6040518263ffffffff1660e01b8152600401610dcb9190613eae565b608060405180830381600087803b158015610de557600080fd5b505af1158015610df9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1d919061373b565b505030600090815260016020526040902054919250506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690638831645690610e8490620d89b490620d89b319906001600160601b0316600a8d610da9565b6040518263ffffffff1660e01b8152600401610ea09190613eae565b608060405180830381600087803b158015610eba57600080fd5b505af1158015610ece573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef2919061373b565b5050306000908152600160205260408120546001600160601b031692508288039150600b82900b1215610f53576007805460008390036001600160601b03600160a01b80840482169290920316026001600160a01b03909116179055610f7e565b600780546001600160601b03600160a01b80830482168501909116026001600160a01b039091161790555b6040518060a001604052808660020b81526020018560020b8152602001610fa442612eb0565b63ffffffff90811682526001600160601b039586166020808401919091526000604093840181905260018152600280835285517fe90b7bceb6e7df5418fb78d8ee546e97c83a08bbccc01a0644d599ccd2a7c2e080549488015196880151606089015162ffffff1990961692840b62ffffff9081169390931765ffffff000000191663010000009890940b92909216969096029190911769ffffffff0000000000001916600160301b9190941602929092176bffffffffffffffffffffffff60501b1916600160501b91881691909102179091556080909101517fe90b7bceb6e7df5418fb78d8ee546e97c83a08bbccc01a0644d599ccd2a7c2e180546001600160601b031916919095161790935550508054600160a01b61ffff60a01b19909116179055505050505050565b600881565b336000908152600160205260408120546001600160601b031661110b5760405162461bcd60e51b815260040161052d90613dc3565b611113613300565b5033600090815260016020908152604091829020825160608101845290546001600160601b038116825260ff600160601b82048116158015948401859052600160681b90920416151593820193909352919061119957506000805260046020527f17ef568e3e12ab5b9c7254a8d58478811de00f9e6eb34345acd53bf8fd09d3ec5460ff165b156111ed576001602082015260405165015d3ef79800929092019133907f3f30dcd9a47a307917cd6de7b45b122f23c285d4f5ce5bf722e6de887f545e4c906111e49060009061397a565b60405180910390a25b806040015115801561122a5750600160005260046020527fabd6e7cb50984ff9c2f3e18a2660c3353dadf4e3291deeb275dae2cd1e44fe055460ff165b1561127d57600160408083018290525165015d3ef79800939093019233917f3f30dcd9a47a307917cd6de7b45b122f23c285d4f5ce5bf722e6de887f545e4c91611274919061397a565b60405180910390a25b6112913033846001600160601b0316612948565b6112ad5760405162461bcd60e51b815260040161052d90613c04565b5090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6005602052600090815260409020546001600160a01b031681565b600080600760009054906101000a90046001600160a01b03166001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561134157600080fd5b505afa158015611355573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611379919061362f565b50506006546040516309b637d160e01b81529596506000956001600160a01b0390911694506309b637d193506113b592508691506004016138bd565b60206040518083038186803b1580156113cd57600080fd5b505afa1580156113e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114059190613551565b905061140f613320565b506000805461ffff600160a01b90910416815260026020818152604092839020835160a081018552815480850b850b850b80835263010000008204860b860b90950b82850181905263ffffffff600160301b830416838801526001600160601b03600160501b9092048216606084015260019093015416608082015260065460075486516334324e9f60e21b8152965192966001600160a01b039283169663cacc4a75968a9691959194939093169263d0c93a7c9260048082019391829003018186803b1580156114df57600080fd5b505afa1580156114f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115179190613551565b86604001516040518663ffffffff1660e01b815260040161153c9594939291906139cc565b60606040518083038186803b15801561155457600080fd5b505afa158015611568573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061158c91906135a0565b9695505050505050565b6006546001600160a01b031681565b600054600160a01b900461ffff1681565b6002602081905260009182526040909120805460019091015481830b9263010000008304900b9163ffffffff600160301b820416916001600160601b03600160501b9092048216911685565b60085460ff1690565b6001600160a01b0381166000908152600160205260409020546001600160601b03165b919050565b61163b612c59565b6000546001600160a01b039081169116146116685760405162461bcd60e51b815260040161052d90613ca2565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600080600660009054906101000a90046001600160a01b03166001600160a01b0316636a47069d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561170357600080fd5b505afa158015611717573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173b919061379a565b90506305f5e1008167ffffffffffffffff161061175b578291505061162e565b61177d6305f5e1006117778567ffffffffffffffff8516612ed6565b90612f10565b9392505050565b6007546001600160a01b031681565b600080805260056020527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc546001600160a01b038381169116148061075a575050600160005260056020527f1471eb6eb2c5e789fc3de43f8ce62938c7d1836ec861730447e2ada8fd81017b546001600160a01b0390811691161490565b6000546001600160a01b031690565b600754600160a01b90046001600160601b031681565b60405180604001604052806006815260200165444f4745563360d01b81525081565b66470de4df82000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b600061177d338484612948565b600080805260056020527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc546001600160a01b03838116911614156118db5750600061162e565b600160005260056020527f1471eb6eb2c5e789fc3de43f8ce62938c7d1836ec861730447e2ada8fd81017b546001600160a01b03838116911614156119225750600161162e565b506002919050565b611932613300565b82602001511561194457600160208301525b82604001511561195657600160408301525b50919050565b600080600760009054906101000a90046001600160a01b03166001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156119ad57600080fd5b505afa1580156119c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e5919061362f565b50506006546040516309b637d160e01b81529596506001600160a01b0316946309b637d19450611a1d935086925060040190506138bd565b60206040518083038186803b158015611a3557600080fd5b505afa158015611a49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a6d9190613551565b915050611a78613320565b5060008054600160a01b900461ffff168152600260208181526040808420815160a081018352815480860b860b860b825263010000008104860b860b90950b81850152600160301b850463ffffffff1681840152600160501b9094046001600160601b03908116606086015260019091015416608084015260075481516334324e9f60e21b815291519394936001600160a01b039091169263d0c93a7c9260048082019391829003018186803b158015611b3157600080fd5b505afa158015611b45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b699190613551565b60065483516020850151604080870151905163cacc4a7560e01b8152949550600094859485946001600160a01b039091169363cacc4a7593611bb3938c9392918b916004016139cc565b60606040518083038186803b158015611bcb57600080fd5b505afa158015611bdf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c0391906135a0565b92509250925080611c265760405162461bcd60e51b815260040161052d90613bc1565b606085015160405163133f757160e31b81526000916001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916399fbab8891611c7891600401613fca565b6101806040518083038186803b158015611c9157600080fd5b505afa158015611ca5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cc991906137c2565b505050509750505050505050507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316630c49ccbe6040518060a0016040528089606001516001600160601b03168152602001846001600160801b03168152602001600081526020016000815260200142620f4240018152506040518263ffffffff1660e01b8152600401611d659190613e6b565b6040805180830381600087803b158015611d7e57600080fd5b505af1158015611d92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611db69190613777565b5050604080516080810182526060808901516001600160601b031682523060208301526001600160801b0382840181905290820152905163fc6f786560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163fc6f786591611e359190600401613e28565b6040805180830381600087803b158015611e4e57600080fd5b505af1158015611e62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e869190613777565b505060808601516001600160601b03161561213b57608086015160405163133f757160e31b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916399fbab8891611eeb9190600401613fca565b6101806040518083038186803b158015611f0457600080fd5b505afa158015611f18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f3c91906137c2565b909192939495969798999a5090919293949596979899509091929394959697985090919293949596975090919293949596509091929394955090919293945090919250909150905050809150507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316630c49ccbe6040518060a0016040528089608001516001600160601b03168152602001846001600160801b03168152602001600081526020016000815260200142620f4240018152506040518263ffffffff1660e01b81526004016120189190613e6b565b6040805180830381600087803b15801561203157600080fd5b505af1158015612045573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120699190613777565b505060408051608080820183528801516001600160601b031681523060208201526001600160801b038183018190526060820152905163fc6f786560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163fc6f7865916120e79190600401613e28565b6040805180830381600087803b15801561210057600080fd5b505af1158015612114573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121389190613777565b50505b506006546040516376c47c5560e01b815260009182916121ce91879187916001600160a01b0316906376c47c5590612179908e908d906004016139b8565b60206040518083038186803b15801561219157600080fd5b505afa1580156121a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121c99190613551565b612f52565b915091506040518060a001604052808660020b81526020018560020b81526020016121f842612eb0565b63ffffffff16815260200161220c84612bf2565b6001600160601b0316815260200161222383612bf2565b6001600160601b0390811690915260008054600161ffff600160a01b92839004811682018116845260026020818152604080872089518154938b0151928b015160608c01518b16600160501b026bffffffffffffffffffffffff60501b1963ffffffff909216600160301b0269ffffffff0000000000001995880b62ffffff90811663010000000265ffffff000000199590990b1662ffffff199097169690961792909216959095179290921692909217929092169190911781556080909601519582018054969095166001600160601b0319909616959095179093558154818104851690930190931690920261ffff60a01b199091161790555050505050505050565b60085461ffff919091166000908152600260208190526040909120805460019091015460ff9093169381830b936301000000830490930b92600160301b830463ffffffff1692600160501b90046001600160601b0390811692911690565b6001600160a01b0391821660009081526003602090815260408083209390941682529190915220546001600160601b031690565b6001602052600090815260409020546001600160601b0381169060ff600160601b8204811691600160681b90041683565b60008060008060008060008060149054906101000a900461ffff1696506000600760009054906101000a90046001600160a01b03166001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561245757600080fd5b505afa15801561246b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061248f919061362f565b5050600854949550505060ff90921615915061270790505760065460408051631eafa04560e11b815290516125e1926402540be40092611777926001600160a01b039092169163bfd55ba7918391633d5f408a91600480820192602092909190829003018186803b15801561250357600080fd5b505afa158015612517573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061253b9190613551565b61ffff8e166000908152600260208190526040918290205491516001600160e01b031960e086901b16815261257b939290910b919091039060040161398e565b60206040518083038186803b15801561259357600080fd5b505afa1580156125a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125cb91906136ff565b6ec097ce7bc90715b34b9f100000000090612f10565b60065460408051631eafa04560e11b815290519295506126be926402540be40092611777926001600160a01b039091169163bfd55ba7918391633d5f408a91600480820192602092909190829003018186803b15801561264057600080fd5b505afa158015612654573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126789190613551565b61ffff8e1660009081526002602081905260409182902054915160e085901b6001600160e01b031916815261257b93630100000090930490910b9091019060040161398e565b6006546040516311200da160e11b8152919550612700916402540be40091611777916001600160a01b03909116906322401b429061257b9087906004016138bd565b9150612846565b60065461ffff891660009081526002602081905260409182902054915163bfd55ba760e01b81526127ab936402540be400936001600160a01b039091169263bfd55ba79261275b9290910b9060040161398e565b60206040518083038186803b15801561277357600080fd5b505afa158015612787573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061177791906136ff565b60065461ffff8a1660009081526002602081905260409182902054915163bfd55ba760e01b8152939750612807936402540be400936001600160a01b03169263bfd55ba79261275b926301000000909204900b9060040161398e565b6006546040516311200da160e11b8152919450612843916402540be400916001600160a01b0316906322401b429061275b9086906004016138bd565b91505b5061ffff871660009081526002602052604090208054600190910154979863ffffffff600160301b830416986001600160601b03600160501b9093048316985090911695509293509091565b61289a612c59565b6000546001600160a01b039081169116146128c75760405162461bcd60e51b815260040161052d90613ca2565b6001600160a01b0381166128ed5760405162461bcd60e51b815260040161052d90613b16565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0384166129705760405162461bcd60e51b815260040161052d90613cd7565b6001600160a01b0383166129965760405162461bcd60e51b815260040161052d90613a8d565b61299e613300565b506001600160a01b038316600090815260016020908152604091829020825160608101845290546001600160601b038116825260ff600160601b82048116151593830193909352600160681b9004909116151591810191909152612a15612a0484612bf2565b82516001600160601b031690613259565b6001600160601b03168152612a54612a2c84612bf2565b6001600160a01b0387166000908152600160205260409020546001600160601b031690612c17565b6001600160a01b03868116600081815260016020526040902080546001600160601b0319166001600160601b0394909416939093179092556007541614801590612ad057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b15612b3b576001600160a01b038516600090815260016020908152604091829020825160608101845290546001600160601b038116825260ff600160601b82048116151593830193909352600160681b9004909116151591810191909152612b38908261192a565b90505b6001600160a01b038481166000818152600160209081526040918290208551815492870151878501516001600160601b03199094166001600160601b039092169190911760ff60601b1916600160601b911515919091021760ff60681b1916600160681b921515929092029190911790555190918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612bdf908790613fb3565b60405180910390a3506001949350505050565b6000600160601b82106112ad5760405162461bcd60e51b815260040161052d90613ad0565b600061177d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061328a565b3390565b612c6561334e565b60085460ff16612d9457604051806101600160405280306001600160a01b031681526020017f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602001600760009054906101000a90046001600160a01b03166001600160a01b031663ddca3f436040518163ffffffff1660e01b815260040160206040518083038186803b158015612d0757600080fd5b505afa158015612d1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d3f91906136cc565b62ffffff1681526020018560020b81526020018660020b81526020018481526020018381526020016000815260200160008152602001306001600160a01b0316815260200142620f42400181525090506108aa565b6040518061016001604052807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602001306001600160a01b03168152602001600760009054906101000a90046001600160a01b03166001600160a01b031663ddca3f436040518163ffffffff1660e01b815260040160206040518083038186803b158015612e2c57600080fd5b505afa158015612e40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e6491906136cc565b62ffffff168152600295860b60208201529590940b60408601525060608401526080830152600060a0830181905260c08301523060e0830152620f424042016101009092019190915290565b600064010000000082106112ad5760405162461bcd60e51b815260040161052d90613d7d565b600082612ee55750600061075a565b82820282848281612ef257fe5b041461177d5760405162461bcd60e51b815260040161052d90613c61565b600061177d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506132c9565b306000818152600160205260408082205490516370a0823160e01b8152919283926001600160601b039092169183917f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316916370a0823191612fbe916004016138bd565b60206040518083038186803b158015612fd657600080fd5b505afa158015612fea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061300e91906136ff565b6008549091506000908190819060ff166130385761302b846116b2565b925087915088905061304a565b613041846116b2565b92508991508790505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663883164566130858c8c8988612c5d565b6040518263ffffffff1660e01b81526004016130a19190613eae565b608060405180830381600087803b1580156130bb57600080fd5b505af11580156130cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130f3919061373b565b50506040516370a0823160e01b8152919850506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a08231906131459030906004016138bd565b60206040518083038186803b15801561315d57600080fd5b505afa158015613171573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061319591906136ff565b1561324c577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663883164566131d7848489888a03612c5d565b6040518263ffffffff1660e01b81526004016131f39190613eae565b608060405180830381600087803b15801561320d57600080fd5b505af1158015613221573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613245919061373b565b5091975050505b5050505050935093915050565b60008282016001600160601b03808516908216101561177d5760405162461bcd60e51b815260040161052d90613b5c565b6000836001600160601b0316836001600160601b0316111582906132c15760405162461bcd60e51b815260040161052d9190613a3a565b505050900390565b600081836132ea5760405162461bcd60e51b815260040161052d9190613a3a565b5060008385816132f657fe5b0495945050505050565b604080516060810182526000808252602082018190529181019190915290565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915290565b6040805161016081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810182905261014081019190915290565b8051600281900b811461075a57600080fd5b6000606082840312156133cd578081fd5b6040516060810181811067ffffffffffffffff821117156133ec578283fd5b60405290508082356133fd81614037565b8152602083013561340d81614019565b6020820152604083013561342081614019565b6040919091015292915050565b80516001600160801b038116811461075a57600080fd5b805162ffffff8116811461075a57600080fd5b600060208284031215613468578081fd5b813561177d81614001565b60008060408385031215613485578081fd5b823561349081614001565b915060208301356134a081614001565b809150509250929050565b6000806000606084860312156134bf578081fd5b83356134ca81614001565b925060208401356134da81614001565b929592945050506040919091013590565b600080604083850312156134fd578182fd5b823561350881614001565b946020939093013593505050565b600060208284031215613527578081fd5b815161177d81614019565b600060208284031215613543578081fd5b81356003811061177d578182fd5b600060208284031215613562578081fd5b61177d83836133aa565b6000806040838503121561357e578182fd5b61358884846133aa565b915061359784602085016133aa565b90509250929050565b6000806000606084860312156135b4578081fd5b6135be85856133aa565b92506135cd85602086016133aa565b915060408401516135dd81614019565b809150509250925092565b60008060c083850312156135fa578182fd5b61360484846133bc565b915061359784606085016133bc565b600060208284031215613624578081fd5b813561177d81614027565b600080600080600080600060e0888a031215613649578485fd5b875161365481614001565b96506136638960208a016133aa565b9550604088015161367381614027565b606089015190955061368481614027565b608089015190945061369581614027565b60a089015190935060ff811681146136ab578283fd5b60c08901519092506136bc81614019565b8091505092959891949750929550565b6000602082840312156136dd578081fd5b61177d8383613444565b6000602082840312156136f8578081fd5b5035919050565b600060208284031215613710578081fd5b5051919050565b60008060408385031215613729578182fd5b8235915060208301356134a081614001565b60008060008060808587031215613750578182fd5b84519350613761866020870161342d565b6040860151606090960151949790965092505050565b60008060408385031215613789578182fd5b505080516020909101519092909150565b6000602082840312156137ab578081fd5b815167ffffffffffffffff8116811461177d578182fd5b6000806000806000806000806000806000806101808d8f0312156137e4578586fd5b8c516137ef81614037565b60208e0151909c5061380081614001565b60408e0151909b5061381181614001565b60608e0151909a5061382281614001565b98506138318e60808f01613444565b97506138408e60a08f016133aa565b965061384f8e60c08f016133aa565b955061385e8e60e08f0161342d565b94506101008d015193506101208d0151925061387e8e6101408f0161342d565b915061388e8e6101608f0161342d565b90509295989b509295989b509295989b565b6001600160a01b03169052565b60020b9052565b62ffffff169052565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b039290921682526001600160601b0316602082015260400190565b901515815260200190565b9515158652600294850b60208701529290930b604085015263ffffffff1660608401526001600160801b0391821660808401521660a082015260c00190565b602081016003831061398857fe5b91905290565b60029190910b815260200190565b60029290920b82526001600160a01b0316602082015260400190565b600292830b8152910b602082015260400190565b600295860b815293850b602085015291840b604084015290920b606082015263ffffffff909116608082015260a00190565b600295860b81529390940b602084015263ffffffff9190911660408301526001600160601b039081166060830152909116608082015260a00190565b6000602080835283518082850152825b81811015613a6657858101830151858201604001528201613a4a565b81811115613a775783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f53616665436173743a2076616c756520646f65736e27742066697420696e203960408201526536206269747360d01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b602080825260149082015273496e76616c69642073776170204164647265737360601b604082015260600190565b60208082526023908201527f496e76616c696420496e6372656d656e746174696f6e206f662074686520737460408201526261676560e81b606082015260800190565b602080825260159082015274109bdb9d5cc8151c985b9cd9995c8819985a5b1959605a1b604082015260600190565b602080825260149082015273086c2dcdcdee840e8e4c2dce6cccae440ae8aa8960631b604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526019908201527f4552524f523a20596f7520617265206e6f74206c6567656e6400000000000000604082015260600190565b60208082526010908201526f105b1c9958591e481058d8d95c1d195960821b604082015260600190565b60208082526026908201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360408201526532206269747360d01b606082015260800190565b60208082526019908201527f4552524f523a20596f752068617665206e6f20444f4745563300000000000000604082015260600190565b81516001600160601b0316815260208083015115159082015260409182015115159181019190915260600190565b815181526020808301516001600160a01b0316908201526040808301516001600160801b0390811691830191909152606092830151169181019190915260800190565b600060a082019050825182526001600160801b03602084015116602083015260408301516040830152606083015160608301526080830151608083015292915050565b600061016082019050613ec28284516138a0565b6020830151613ed460208401826138a0565b506040830151613ee760408401826138b4565b506060830151613efa60608401826138ad565b506080830151613f0d60808401826138ad565b5060a083015160a083015260c083015160c083015260e083015160e083015261010080840151818401525061012080840151613f4b828501826138a0565b505061014092830151919092015290565b61ffff91909116815260200190565b61ffff97909716875263ffffffff9590951660208701526001600160801b039384166040870152919092166060850152608084019190915260a083015260c082015260e00190565b90815260200190565b60ff91909116815260200190565b6001600160601b0391909116815260200190565b6001600160601b0393909316835290151560208301521515604082015260600190565b6001600160a01b038116811461401657600080fd5b50565b801515811461401657600080fd5b61ffff8116811461401657600080fd5b6001600160601b038116811461401657600080fdfea2646970667358221220053d86d130d8c7fac3f7376636507614d70e9e2016aae5ef0203bd22f13fc81464736f6c63430007010033000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88000000000000000000000000ab5801a7d398351b8be11c439e05c5b3259aec9b0000000000000000000000006c9fc64a53c1b71fb3f9af64d1ae3a4931a5f4e900000000000000000000000068a99f89e475a078645f4bac491360afe255dff1000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007cf48d7902b9c684d2be78707345ab0f724ee4b4

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061023d5760003560e01c80636a90ee6d1161013b578063a8aa1b31116100b8578063dd3198a91161007c578063dd3198a914610480578063dd62ed3e146104a5578063e3d670d7146104b8578063ef8a9235146104da578063f2fde38b146104f55761023d565b8063a8aa1b311461041d578063a9059cbb14610425578063ac8f82a814610438578063b03d186014610458578063bed4f43f146104785761023d565b8063831b6f34116100ff578063831b6f34146103ea5780638da5cb5b146103fd5780639358928b1461040557806395d89b411461040d578063965044d5146104155761023d565b80636a90ee6d146103ac57806370a08231146103b4578063715018a6146103c75780637e541239146103cf5780638119c065146103e25761023d565b806328860534116101c957806353459cca1161018d57806353459cca146103505780635479d940146103635780635918bf3e1461036b5780635bf5d54c14610373578063644d47ec146103885761023d565b8063288605341461030357806330e76cc014610318578063313ce5671461032b57806340324aca1461034057806350685c06146103485761023d565b806318160ddd1161021057806318160ddd1461029d5780631b26c80d146102b25780631bf0c8a9146102c857806323b872dd146102dd57806326d1b9fd146102f05761023d565b8063059ec2291461024257806306fdde031461024c578063088aba5f1461026a578063095ea7b31461028a575b600080fd5b61024a610508565b005b610254610680565b6040516102619190613a3a565b60405180910390f35b61027d610278366004613532565b6106a2565b6040516102619190613930565b61027d6102983660046134eb565b6106b7565b6102a5610760565b6040516102619190613fb3565b6102ba61076c565b60405161026192919061399c565b6102d06107f9565b60405161026191906138bd565b61027d6102eb3660046134ab565b61081d565b61024a6102fe366004613457565b6108b2565b61030b610909565b6040516102619190613fca565b61024a610326366004613717565b610913565b6103336110d1565b6040516102619190613fbc565b61030b6110d6565b6102d06112b1565b6102d061035e366004613532565b6112d5565b61027d6112f0565b6102d0611596565b61037b6115a5565b6040516102619190613f5c565b61039b610396366004613613565b6115b6565b6040516102619594939291906139fe565b61027d611602565b6102a56103c2366004613457565b61160b565b61024a611633565b6102a56103dd3660046136e7565b6116b2565b6102d0611784565b61027d6103f8366004613457565b611793565b6102d0611811565b61030b611820565b610254611836565b61030b611858565b6102d0611863565b61027d6104333660046134eb565b611887565b61044b610446366004613457565b611894565b604051610261919061397a565b61046b6104663660046135e8565b61192a565b6040516102619190613dfa565b61024a61195c565b61049361048e366004613613565b612327565b6040516102619695949392919061393b565b6102a56104b3366004613473565b612385565b6104cb6104c6366004613457565b6123b9565b60405161026193929190613fde565b6104e26123ea565b6040516102619796959493929190613f6b565b61024a610503366004613457565b612892565b61051133611793565b6105365760405162461bcd60e51b815260040161052d90613d1c565b60405180910390fd5b600061054133611894565b90506004600082600281111561055357fe5b600281111561055e57fe5b815260208101919091526040016000205460ff161561058f5760405162461bcd60e51b815260040161052d90613d53565b6001600460008360028111156105a157fe5b60028111156105ac57fe5b81526020810191909152604001600020805460ff19169115159190911790556105fd307f00000000000000000000000068a99f89e475a078645f4bac491360afe255dff166470de4df820000612948565b5080600281111561060a57fe5b6040517fcac15aaf30cee1801b187bcca814a6f060b5cef5357ec037047490f79ce11e1f90600090a280600281111561063f57fe5b7f2c0febdd57565fa3cdc395313653f984b8847d089a14e0df6e865ce8cebe150766470de4df8200006040516106759190613fca565b60405180910390a250565b60405180604001604052806006815260200165446f6765563360d01b81525081565b60046020526000908152604090205460ff1681565b60006001600160601b038211156106d3576001600160601b0391505b6106dc82612bf2565b3360008181526003602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b039590951694909417909355517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061074e908690613fb3565b60405180910390a35060015b92915050565b67b469471f8014000090565b60075460408051633850c7bd60e01b815290516000926001600160a01b0316918291633850c7bd9160048082019260e092909190829003018186803b1580156107b457600080fd5b505afa1580156107c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ec919061362f565b5093979596505050505050565b7f000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe8881565b600061085e61082b83612bf2565b6001600160a01b03861660009081526003602090815260408083203384529091529020546001600160601b031690612c17565b6001600160a01b0385166000908152600360209081526040808320338452909152902080546001600160601b0319166001600160601b03929092169190911790556108aa848484612948565b949350505050565b6108ba612c59565b6000546001600160a01b039081169116146108e75760405162461bcd60e51b815260040161052d90613ca2565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b65015d3ef7980081565b61091b612c59565b6000546001600160a01b039081169116146109485760405162461bcd60e51b815260040161052d90613ca2565b306000908152600160205260409020546007546001600160601b03909116906001600160a01b03161561098d5760405162461bcd60e51b815260040161052d90613b93565b600780546001600160a01b0319166001600160a01b03848116919091179182905560408051633850c7bd60e01b8152905160009390921691633850c7bd9160048082019260e092909190829003018186803b1580156109eb57600080fd5b505afa1580156109ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a23919061362f565b5050505050915050600080600660009054906101000a90046001600160a01b03166001600160a01b031663b4095e2e84876001600160a01b031663d0c93a7c6040518163ffffffff1660e01b815260040160206040518083038186803b158015610a8c57600080fd5b505afa158015610aa0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac49190613551565b6040518363ffffffff1660e01b8152600401610ae19291906139b8565b604080518083038186803b158015610af857600080fd5b505afa158015610b0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b30919061356c565b6040516323b872dd60e01b815291935091506001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc216906323b872dd90610b8590339030908b906004016138d1565b602060405180830381600087803b158015610b9f57600080fd5b505af1158015610bb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd79190613516565b610bf35760405162461bcd60e51b815260040161052d90613c33565b60405163095ea7b360e01b8152309063095ea7b390610c3a907f000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88906000199060040161390e565b602060405180830381600087803b158015610c5457600080fd5b505af1158015610c68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8c9190613516565b5060405163095ea7b360e01b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2169063095ea7b390610cfd907f000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe8890600019906004016138f5565b602060405180830381600087803b158015610d1757600080fd5b505af1158015610d2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4f9190613516565b50306000908152600160205260408120546001600160a01b037f000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe881690638831645690610daf90869086906001600160601b0316600a60098e025b04612c5d565b6040518263ffffffff1660e01b8152600401610dcb9190613eae565b608060405180830381600087803b158015610de557600080fd5b505af1158015610df9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1d919061373b565b505030600090815260016020526040902054919250506001600160a01b037f000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe881690638831645690610e8490620d89b490620d89b319906001600160601b0316600a8d610da9565b6040518263ffffffff1660e01b8152600401610ea09190613eae565b608060405180830381600087803b158015610eba57600080fd5b505af1158015610ece573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef2919061373b565b5050306000908152600160205260408120546001600160601b031692508288039150600b82900b1215610f53576007805460008390036001600160601b03600160a01b80840482169290920316026001600160a01b03909116179055610f7e565b600780546001600160601b03600160a01b80830482168501909116026001600160a01b039091161790555b6040518060a001604052808660020b81526020018560020b8152602001610fa442612eb0565b63ffffffff90811682526001600160601b039586166020808401919091526000604093840181905260018152600280835285517fe90b7bceb6e7df5418fb78d8ee546e97c83a08bbccc01a0644d599ccd2a7c2e080549488015196880151606089015162ffffff1990961692840b62ffffff9081169390931765ffffff000000191663010000009890940b92909216969096029190911769ffffffff0000000000001916600160301b9190941602929092176bffffffffffffffffffffffff60501b1916600160501b91881691909102179091556080909101517fe90b7bceb6e7df5418fb78d8ee546e97c83a08bbccc01a0644d599ccd2a7c2e180546001600160601b031916919095161790935550508054600160a01b61ffff60a01b19909116179055505050505050565b600881565b336000908152600160205260408120546001600160601b031661110b5760405162461bcd60e51b815260040161052d90613dc3565b611113613300565b5033600090815260016020908152604091829020825160608101845290546001600160601b038116825260ff600160601b82048116158015948401859052600160681b90920416151593820193909352919061119957506000805260046020527f17ef568e3e12ab5b9c7254a8d58478811de00f9e6eb34345acd53bf8fd09d3ec5460ff165b156111ed576001602082015260405165015d3ef79800929092019133907f3f30dcd9a47a307917cd6de7b45b122f23c285d4f5ce5bf722e6de887f545e4c906111e49060009061397a565b60405180910390a25b806040015115801561122a5750600160005260046020527fabd6e7cb50984ff9c2f3e18a2660c3353dadf4e3291deeb275dae2cd1e44fe055460ff165b1561127d57600160408083018290525165015d3ef79800939093019233917f3f30dcd9a47a307917cd6de7b45b122f23c285d4f5ce5bf722e6de887f545e4c91611274919061397a565b60405180910390a25b6112913033846001600160601b0316612948565b6112ad5760405162461bcd60e51b815260040161052d90613c04565b5090565b7f00000000000000000000000068a99f89e475a078645f4bac491360afe255dff181565b6005602052600090815260409020546001600160a01b031681565b600080600760009054906101000a90046001600160a01b03166001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561134157600080fd5b505afa158015611355573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611379919061362f565b50506006546040516309b637d160e01b81529596506000956001600160a01b0390911694506309b637d193506113b592508691506004016138bd565b60206040518083038186803b1580156113cd57600080fd5b505afa1580156113e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114059190613551565b905061140f613320565b506000805461ffff600160a01b90910416815260026020818152604092839020835160a081018552815480850b850b850b80835263010000008204860b860b90950b82850181905263ffffffff600160301b830416838801526001600160601b03600160501b9092048216606084015260019093015416608082015260065460075486516334324e9f60e21b8152965192966001600160a01b039283169663cacc4a75968a9691959194939093169263d0c93a7c9260048082019391829003018186803b1580156114df57600080fd5b505afa1580156114f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115179190613551565b86604001516040518663ffffffff1660e01b815260040161153c9594939291906139cc565b60606040518083038186803b15801561155457600080fd5b505afa158015611568573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061158c91906135a0565b9695505050505050565b6006546001600160a01b031681565b600054600160a01b900461ffff1681565b6002602081905260009182526040909120805460019091015481830b9263010000008304900b9163ffffffff600160301b820416916001600160601b03600160501b9092048216911685565b60085460ff1690565b6001600160a01b0381166000908152600160205260409020546001600160601b03165b919050565b61163b612c59565b6000546001600160a01b039081169116146116685760405162461bcd60e51b815260040161052d90613ca2565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600080600660009054906101000a90046001600160a01b03166001600160a01b0316636a47069d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561170357600080fd5b505afa158015611717573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173b919061379a565b90506305f5e1008167ffffffffffffffff161061175b578291505061162e565b61177d6305f5e1006117778567ffffffffffffffff8516612ed6565b90612f10565b9392505050565b6007546001600160a01b031681565b600080805260056020527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc546001600160a01b038381169116148061075a575050600160005260056020527f1471eb6eb2c5e789fc3de43f8ce62938c7d1836ec861730447e2ada8fd81017b546001600160a01b0390811691161490565b6000546001600160a01b031690565b600754600160a01b90046001600160601b031681565b60405180604001604052806006815260200165444f4745563360d01b81525081565b66470de4df82000081565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b600061177d338484612948565b600080805260056020527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc546001600160a01b03838116911614156118db5750600061162e565b600160005260056020527f1471eb6eb2c5e789fc3de43f8ce62938c7d1836ec861730447e2ada8fd81017b546001600160a01b03838116911614156119225750600161162e565b506002919050565b611932613300565b82602001511561194457600160208301525b82604001511561195657600160408301525b50919050565b600080600760009054906101000a90046001600160a01b03166001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156119ad57600080fd5b505afa1580156119c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e5919061362f565b50506006546040516309b637d160e01b81529596506001600160a01b0316946309b637d19450611a1d935086925060040190506138bd565b60206040518083038186803b158015611a3557600080fd5b505afa158015611a49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a6d9190613551565b915050611a78613320565b5060008054600160a01b900461ffff168152600260208181526040808420815160a081018352815480860b860b860b825263010000008104860b860b90950b81850152600160301b850463ffffffff1681840152600160501b9094046001600160601b03908116606086015260019091015416608084015260075481516334324e9f60e21b815291519394936001600160a01b039091169263d0c93a7c9260048082019391829003018186803b158015611b3157600080fd5b505afa158015611b45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b699190613551565b60065483516020850151604080870151905163cacc4a7560e01b8152949550600094859485946001600160a01b039091169363cacc4a7593611bb3938c9392918b916004016139cc565b60606040518083038186803b158015611bcb57600080fd5b505afa158015611bdf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c0391906135a0565b92509250925080611c265760405162461bcd60e51b815260040161052d90613bc1565b606085015160405163133f757160e31b81526000916001600160a01b037f000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe8816916399fbab8891611c7891600401613fca565b6101806040518083038186803b158015611c9157600080fd5b505afa158015611ca5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cc991906137c2565b505050509750505050505050507f000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe886001600160a01b0316630c49ccbe6040518060a0016040528089606001516001600160601b03168152602001846001600160801b03168152602001600081526020016000815260200142620f4240018152506040518263ffffffff1660e01b8152600401611d659190613e6b565b6040805180830381600087803b158015611d7e57600080fd5b505af1158015611d92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611db69190613777565b5050604080516080810182526060808901516001600160601b031682523060208301526001600160801b0382840181905290820152905163fc6f786560e01b81526001600160a01b037f000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88169163fc6f786591611e359190600401613e28565b6040805180830381600087803b158015611e4e57600080fd5b505af1158015611e62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e869190613777565b505060808601516001600160601b03161561213b57608086015160405163133f757160e31b81526001600160a01b037f000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe8816916399fbab8891611eeb9190600401613fca565b6101806040518083038186803b158015611f0457600080fd5b505afa158015611f18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f3c91906137c2565b909192939495969798999a5090919293949596979899509091929394959697985090919293949596975090919293949596509091929394955090919293945090919250909150905050809150507f000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe886001600160a01b0316630c49ccbe6040518060a0016040528089608001516001600160601b03168152602001846001600160801b03168152602001600081526020016000815260200142620f4240018152506040518263ffffffff1660e01b81526004016120189190613e6b565b6040805180830381600087803b15801561203157600080fd5b505af1158015612045573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120699190613777565b505060408051608080820183528801516001600160601b031681523060208201526001600160801b038183018190526060820152905163fc6f786560e01b81526001600160a01b037f000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88169163fc6f7865916120e79190600401613e28565b6040805180830381600087803b15801561210057600080fd5b505af1158015612114573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121389190613777565b50505b506006546040516376c47c5560e01b815260009182916121ce91879187916001600160a01b0316906376c47c5590612179908e908d906004016139b8565b60206040518083038186803b15801561219157600080fd5b505afa1580156121a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121c99190613551565b612f52565b915091506040518060a001604052808660020b81526020018560020b81526020016121f842612eb0565b63ffffffff16815260200161220c84612bf2565b6001600160601b0316815260200161222383612bf2565b6001600160601b0390811690915260008054600161ffff600160a01b92839004811682018116845260026020818152604080872089518154938b0151928b015160608c01518b16600160501b026bffffffffffffffffffffffff60501b1963ffffffff909216600160301b0269ffffffff0000000000001995880b62ffffff90811663010000000265ffffff000000199590990b1662ffffff199097169690961792909216959095179290921692909217929092169190911781556080909601519582018054969095166001600160601b0319909616959095179093558154818104851690930190931690920261ffff60a01b199091161790555050505050505050565b60085461ffff919091166000908152600260208190526040909120805460019091015460ff9093169381830b936301000000830490930b92600160301b830463ffffffff1692600160501b90046001600160601b0390811692911690565b6001600160a01b0391821660009081526003602090815260408083209390941682529190915220546001600160601b031690565b6001602052600090815260409020546001600160601b0381169060ff600160601b8204811691600160681b90041683565b60008060008060008060008060149054906101000a900461ffff1696506000600760009054906101000a90046001600160a01b03166001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561245757600080fd5b505afa15801561246b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061248f919061362f565b5050600854949550505060ff90921615915061270790505760065460408051631eafa04560e11b815290516125e1926402540be40092611777926001600160a01b039092169163bfd55ba7918391633d5f408a91600480820192602092909190829003018186803b15801561250357600080fd5b505afa158015612517573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061253b9190613551565b61ffff8e166000908152600260208190526040918290205491516001600160e01b031960e086901b16815261257b939290910b919091039060040161398e565b60206040518083038186803b15801561259357600080fd5b505afa1580156125a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125cb91906136ff565b6ec097ce7bc90715b34b9f100000000090612f10565b60065460408051631eafa04560e11b815290519295506126be926402540be40092611777926001600160a01b039091169163bfd55ba7918391633d5f408a91600480820192602092909190829003018186803b15801561264057600080fd5b505afa158015612654573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126789190613551565b61ffff8e1660009081526002602081905260409182902054915160e085901b6001600160e01b031916815261257b93630100000090930490910b9091019060040161398e565b6006546040516311200da160e11b8152919550612700916402540be40091611777916001600160a01b03909116906322401b429061257b9087906004016138bd565b9150612846565b60065461ffff891660009081526002602081905260409182902054915163bfd55ba760e01b81526127ab936402540be400936001600160a01b039091169263bfd55ba79261275b9290910b9060040161398e565b60206040518083038186803b15801561277357600080fd5b505afa158015612787573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061177791906136ff565b60065461ffff8a1660009081526002602081905260409182902054915163bfd55ba760e01b8152939750612807936402540be400936001600160a01b03169263bfd55ba79261275b926301000000909204900b9060040161398e565b6006546040516311200da160e11b8152919450612843916402540be400916001600160a01b0316906322401b429061275b9086906004016138bd565b91505b5061ffff871660009081526002602052604090208054600190910154979863ffffffff600160301b830416986001600160601b03600160501b9093048316985090911695509293509091565b61289a612c59565b6000546001600160a01b039081169116146128c75760405162461bcd60e51b815260040161052d90613ca2565b6001600160a01b0381166128ed5760405162461bcd60e51b815260040161052d90613b16565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0384166129705760405162461bcd60e51b815260040161052d90613cd7565b6001600160a01b0383166129965760405162461bcd60e51b815260040161052d90613a8d565b61299e613300565b506001600160a01b038316600090815260016020908152604091829020825160608101845290546001600160601b038116825260ff600160601b82048116151593830193909352600160681b9004909116151591810191909152612a15612a0484612bf2565b82516001600160601b031690613259565b6001600160601b03168152612a54612a2c84612bf2565b6001600160a01b0387166000908152600160205260409020546001600160601b031690612c17565b6001600160a01b03868116600081815260016020526040902080546001600160601b0319166001600160601b0394909416939093179092556007541614801590612ad057507f000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe886001600160a01b0316856001600160a01b031614155b15612b3b576001600160a01b038516600090815260016020908152604091829020825160608101845290546001600160601b038116825260ff600160601b82048116151593830193909352600160681b9004909116151591810191909152612b38908261192a565b90505b6001600160a01b038481166000818152600160209081526040918290208551815492870151878501516001600160601b03199094166001600160601b039092169190911760ff60601b1916600160601b911515919091021760ff60681b1916600160681b921515929092029190911790555190918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612bdf908790613fb3565b60405180910390a3506001949350505050565b6000600160601b82106112ad5760405162461bcd60e51b815260040161052d90613ad0565b600061177d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061328a565b3390565b612c6561334e565b60085460ff16612d9457604051806101600160405280306001600160a01b031681526020017f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b03168152602001600760009054906101000a90046001600160a01b03166001600160a01b031663ddca3f436040518163ffffffff1660e01b815260040160206040518083038186803b158015612d0757600080fd5b505afa158015612d1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d3f91906136cc565b62ffffff1681526020018560020b81526020018660020b81526020018481526020018381526020016000815260200160008152602001306001600160a01b0316815260200142620f42400181525090506108aa565b6040518061016001604052807f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b03168152602001306001600160a01b03168152602001600760009054906101000a90046001600160a01b03166001600160a01b031663ddca3f436040518163ffffffff1660e01b815260040160206040518083038186803b158015612e2c57600080fd5b505afa158015612e40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e6491906136cc565b62ffffff168152600295860b60208201529590940b60408601525060608401526080830152600060a0830181905260c08301523060e0830152620f424042016101009092019190915290565b600064010000000082106112ad5760405162461bcd60e51b815260040161052d90613d7d565b600082612ee55750600061075a565b82820282848281612ef257fe5b041461177d5760405162461bcd60e51b815260040161052d90613c61565b600061177d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506132c9565b306000818152600160205260408082205490516370a0823160e01b8152919283926001600160601b039092169183917f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316916370a0823191612fbe916004016138bd565b60206040518083038186803b158015612fd657600080fd5b505afa158015612fea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061300e91906136ff565b6008549091506000908190819060ff166130385761302b846116b2565b925087915088905061304a565b613041846116b2565b92508991508790505b7f000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe886001600160a01b031663883164566130858c8c8988612c5d565b6040518263ffffffff1660e01b81526004016130a19190613eae565b608060405180830381600087803b1580156130bb57600080fd5b505af11580156130cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130f3919061373b565b50506040516370a0823160e01b8152919850506001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc216906370a08231906131459030906004016138bd565b60206040518083038186803b15801561315d57600080fd5b505afa158015613171573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061319591906136ff565b1561324c577f000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe886001600160a01b031663883164566131d7848489888a03612c5d565b6040518263ffffffff1660e01b81526004016131f39190613eae565b608060405180830381600087803b15801561320d57600080fd5b505af1158015613221573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613245919061373b565b5091975050505b5050505050935093915050565b60008282016001600160601b03808516908216101561177d5760405162461bcd60e51b815260040161052d90613b5c565b6000836001600160601b0316836001600160601b0316111582906132c15760405162461bcd60e51b815260040161052d9190613a3a565b505050900390565b600081836132ea5760405162461bcd60e51b815260040161052d9190613a3a565b5060008385816132f657fe5b0495945050505050565b604080516060810182526000808252602082018190529181019190915290565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915290565b6040805161016081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810182905261014081019190915290565b8051600281900b811461075a57600080fd5b6000606082840312156133cd578081fd5b6040516060810181811067ffffffffffffffff821117156133ec578283fd5b60405290508082356133fd81614037565b8152602083013561340d81614019565b6020820152604083013561342081614019565b6040919091015292915050565b80516001600160801b038116811461075a57600080fd5b805162ffffff8116811461075a57600080fd5b600060208284031215613468578081fd5b813561177d81614001565b60008060408385031215613485578081fd5b823561349081614001565b915060208301356134a081614001565b809150509250929050565b6000806000606084860312156134bf578081fd5b83356134ca81614001565b925060208401356134da81614001565b929592945050506040919091013590565b600080604083850312156134fd578182fd5b823561350881614001565b946020939093013593505050565b600060208284031215613527578081fd5b815161177d81614019565b600060208284031215613543578081fd5b81356003811061177d578182fd5b600060208284031215613562578081fd5b61177d83836133aa565b6000806040838503121561357e578182fd5b61358884846133aa565b915061359784602085016133aa565b90509250929050565b6000806000606084860312156135b4578081fd5b6135be85856133aa565b92506135cd85602086016133aa565b915060408401516135dd81614019565b809150509250925092565b60008060c083850312156135fa578182fd5b61360484846133bc565b915061359784606085016133bc565b600060208284031215613624578081fd5b813561177d81614027565b600080600080600080600060e0888a031215613649578485fd5b875161365481614001565b96506136638960208a016133aa565b9550604088015161367381614027565b606089015190955061368481614027565b608089015190945061369581614027565b60a089015190935060ff811681146136ab578283fd5b60c08901519092506136bc81614019565b8091505092959891949750929550565b6000602082840312156136dd578081fd5b61177d8383613444565b6000602082840312156136f8578081fd5b5035919050565b600060208284031215613710578081fd5b5051919050565b60008060408385031215613729578182fd5b8235915060208301356134a081614001565b60008060008060808587031215613750578182fd5b84519350613761866020870161342d565b6040860151606090960151949790965092505050565b60008060408385031215613789578182fd5b505080516020909101519092909150565b6000602082840312156137ab578081fd5b815167ffffffffffffffff8116811461177d578182fd5b6000806000806000806000806000806000806101808d8f0312156137e4578586fd5b8c516137ef81614037565b60208e0151909c5061380081614001565b60408e0151909b5061381181614001565b60608e0151909a5061382281614001565b98506138318e60808f01613444565b97506138408e60a08f016133aa565b965061384f8e60c08f016133aa565b955061385e8e60e08f0161342d565b94506101008d015193506101208d0151925061387e8e6101408f0161342d565b915061388e8e6101608f0161342d565b90509295989b509295989b509295989b565b6001600160a01b03169052565b60020b9052565b62ffffff169052565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b039290921682526001600160601b0316602082015260400190565b901515815260200190565b9515158652600294850b60208701529290930b604085015263ffffffff1660608401526001600160801b0391821660808401521660a082015260c00190565b602081016003831061398857fe5b91905290565b60029190910b815260200190565b60029290920b82526001600160a01b0316602082015260400190565b600292830b8152910b602082015260400190565b600295860b815293850b602085015291840b604084015290920b606082015263ffffffff909116608082015260a00190565b600295860b81529390940b602084015263ffffffff9190911660408301526001600160601b039081166060830152909116608082015260a00190565b6000602080835283518082850152825b81811015613a6657858101830151858201604001528201613a4a565b81811115613a775783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f53616665436173743a2076616c756520646f65736e27742066697420696e203960408201526536206269747360d01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b602080825260149082015273496e76616c69642073776170204164647265737360601b604082015260600190565b60208082526023908201527f496e76616c696420496e6372656d656e746174696f6e206f662074686520737460408201526261676560e81b606082015260800190565b602080825260159082015274109bdb9d5cc8151c985b9cd9995c8819985a5b1959605a1b604082015260600190565b602080825260149082015273086c2dcdcdee840e8e4c2dce6cccae440ae8aa8960631b604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526019908201527f4552524f523a20596f7520617265206e6f74206c6567656e6400000000000000604082015260600190565b60208082526010908201526f105b1c9958591e481058d8d95c1d195960821b604082015260600190565b60208082526026908201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360408201526532206269747360d01b606082015260800190565b60208082526019908201527f4552524f523a20596f752068617665206e6f20444f4745563300000000000000604082015260600190565b81516001600160601b0316815260208083015115159082015260409182015115159181019190915260600190565b815181526020808301516001600160a01b0316908201526040808301516001600160801b0390811691830191909152606092830151169181019190915260800190565b600060a082019050825182526001600160801b03602084015116602083015260408301516040830152606083015160608301526080830151608083015292915050565b600061016082019050613ec28284516138a0565b6020830151613ed460208401826138a0565b506040830151613ee760408401826138b4565b506060830151613efa60608401826138ad565b506080830151613f0d60808401826138ad565b5060a083015160a083015260c083015160c083015260e083015160e083015261010080840151818401525061012080840151613f4b828501826138a0565b505061014092830151919092015290565b61ffff91909116815260200190565b61ffff97909716875263ffffffff9590951660208701526001600160801b039384166040870152919092166060850152608084019190915260a083015260c082015260e00190565b90815260200190565b60ff91909116815260200190565b6001600160601b0391909116815260200190565b6001600160601b0393909316835290151560208301521515604082015260600190565b6001600160a01b038116811461401657600080fd5b50565b801515811461401657600080fd5b61ffff8116811461401657600080fd5b6001600160601b038116811461401657600080fdfea2646970667358221220053d86d130d8c7fac3f7376636507614d70e9e2016aae5ef0203bd22f13fc81464736f6c63430007010033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88000000000000000000000000ab5801a7d398351b8be11c439e05c5b3259aec9b0000000000000000000000006c9fc64a53c1b71fb3f9af64d1ae3a4931a5f4e900000000000000000000000068a99f89e475a078645f4bac491360afe255dff1000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007cf48d7902b9c684d2be78707345ab0f724ee4b4

-----Decoded View---------------
Arg [0] : _LiquidityManager (address): 0xC36442b4a4522E871399CD717aBDD847Ab11FE88
Arg [1] : vitalik (address): 0xAb5801a7D398351b8bE11C439e05C5B3259aeC9B
Arg [2] : deployer (address): 0x6C9FC64A53c1b71FB3f9Af64d1ae3A4931A5f4E9
Arg [3] : indiaCovid (address): 0x68A99f89E475a078645f4BAC491360aFe255Dff1
Arg [4] : _pair (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [5] : _calcs (address): 0x7cf48D7902b9c684D2be78707345Ab0F724Ee4B4

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88
Arg [1] : 000000000000000000000000ab5801a7d398351b8be11c439e05c5b3259aec9b
Arg [2] : 0000000000000000000000006c9fc64a53c1b71fb3f9af64d1ae3a4931a5f4e9
Arg [3] : 00000000000000000000000068a99f89e475a078645f4bac491360afe255dff1
Arg [4] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [5] : 0000000000000000000000007cf48d7902b9c684d2be78707345ab0f724ee4b4


Deployed Bytecode Sourcemap

54061:14987:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58233:365;;;:::i;:::-;;55317:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54853:50;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;60573:262::-;;;;;;:::i;:::-;;:::i;56497:94::-;;;:::i;:::-;;;;;;;:::i;68438:189::-;;;:::i;:::-;;;;;;;;:::i;55066:62::-;;;:::i;:::-;;;;;;;:::i;60301:266::-;;;;;;:::i;:::-;;:::i;58094:133::-;;;;;;:::i;:::-;;:::i;54559:50::-;;;:::i;:::-;;;;;;;:::i;56597:1491::-;;;;;;:::i;:::-;;:::i;55242:34::-;;;:::i;:::-;;;;;;;:::i;58604:836::-;;;:::i;55407:35::-;;;:::i;54908:44::-;;;;;;:::i;:::-;;:::i;68633:412::-;;;:::i;55166:38::-;;;:::i;54616:35::-;;;:::i;:::-;;;;;;;:::i;54736:41::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;68340:92::-;;;:::i;60841:123::-;;;;;;:::i;:::-;;:::i;2618:138::-;;;:::i;68102:232::-;;;;;;:::i;:::-;;:::i;55209:26::-;;;:::i;63959:178::-;;;;;;:::i;:::-;;:::i;2016:73::-;;;:::i;55281:31::-;;;:::i;55360:40::-;;;:::i;55006:55::-;;;:::i;55133:28::-;;;:::i;59807:148::-;;;;;;:::i;:::-;;:::i;59961:334::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;59446:355::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;61138:2144::-;;;:::i;66255:468::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;:::i;60970:162::-;;;;;;:::i;:::-;;:::i;54689:42::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;66729:1367::-;;;:::i;:::-;;;;;;;;;;;;;:::i;2901:230::-;;;;;;:::i;:::-;;:::i;58233:365::-;55828:20;55837:10;55828:8;:20::i;:::-;55820:58;;;;-1:-1:-1;;;55820:58:0;;;;;;;:::i;:::-;;;;;;;;;58287:18:::1;58308:27;58324:10;58308:15;:27::i;:::-;58287:48;;58351:18;:30;58370:10;58351:30;;;;;;;;;;;;;;;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;58351:30:0;;::::1;;58350:31;58342:60;;;;-1:-1:-1::0;;;58342:60:0::1;;;;;;;:::i;:::-;58442:4;58409:18;:30;58428:10;58409:30;;;;;;;;;;;;;;;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;58409:30:0;:37;;-1:-1:-1;;58409:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58453:50:::1;58471:4;58478:10;55044:17;58453:9;:50::i;:::-;;58530:10;58515:26;;;;;;;;;::::0;::::1;::::0;;;::::1;58567:10;58553:39;;;;;;;;;55044:17;58553:39;;;;;;:::i;:::-;;;;;;;;55885:1;58233:365::o:0;55317:38::-;;;;;;;;;;;;;;-1:-1:-1;;;55317:38:0;;;;:::o;54853:50::-;;;;;;;;;;;;;;;:::o;60573:262::-;60644:4;-1:-1:-1;;;;;60661:18:0;;60657:59;;;-1:-1:-1;;;;;60690:18:0;-1:-1:-1;60657:59:0;60752:16;:5;:14;:16::i;:::-;60734:10;60722:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;60722:27:0;;;;;;;;;;;:46;;-1:-1:-1;;;;;;60722:46:0;-1:-1:-1;;;;;60722:46:0;;;;;;;;;;;60780:31;;;;;60805:5;;60780:31;:::i;:::-;;;;;;;;-1:-1:-1;60825:4:0;60573:262;;;;;:::o;56497:94::-;54990:11;56497:94;:::o;68438:189::-;68576:4;;68609:12;;;-1:-1:-1;;;68609:12:0;;;;68511:10;;-1:-1:-1;;;;;68576:4:0;;;;68609:10;;:12;;;;;;;;;;;;;;;68576:4;68609:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;68588:33:0;;68438:189;;-1:-1:-1;;;;;;68438:189:0:o;55066:62::-;;;:::o;60301:266::-;60411:4;60456:65;60498:16;:5;:14;:16::i;:::-;-1:-1:-1;;;;;60456:17:0;;;;;;:11;:17;;;;;;;;60474:10;60456:29;;;;;;;;-1:-1:-1;;;;;60456:29:0;;:33;:65::i;:::-;-1:-1:-1;;;;;60424:17:0;;;;;;:11;:17;;;;;;;;60442:10;60424:29;;;;;;;:97;;-1:-1:-1;;;;;;60424:97:0;-1:-1:-1;;;;;60424:97:0;;;;;;;;;;60535:26;60424:17;60551:2;60555:5;60535:9;:26::i;:::-;60528:33;60301:266;-1:-1:-1;;;;60301:266:0:o;58094:133::-;2220:12;:10;:12::i;:::-;2210:6;;-1:-1:-1;;;;;2210:6:0;;;:22;;;2202:67;;;;-1:-1:-1;;;2202:67:0;;;;;;;:::i;:::-;58206:5:::1;:15:::0;;-1:-1:-1;;;;;;58206:15:0::1;-1:-1:-1::0;;;;;58206:15:0;;;::::1;::::0;;;::::1;::::0;;58094:133::o;54559:50::-;54596:13;54559:50;:::o;56597:1491::-;2220:12;:10;:12::i;:::-;2210:6;;-1:-1:-1;;;;;2210:6:0;;;:22;;;2202:67;;;;-1:-1:-1;;;2202:67:0;;;;;;;:::i;:::-;56754:4:::1;56715:20;56738:22:::0;;;:7:::1;:22;::::0;;;;:30;56791:4:::1;::::0;-1:-1:-1;;;;;56738:30:0;;::::1;::::0;-1:-1:-1;;;;;56791:4:0::1;56783:27:::0;56775:60:::1;;;;-1:-1:-1::0;;;56775:60:0::1;;;;;;;:::i;:::-;56842:4;:12:::0;;-1:-1:-1;;;;;;56842:12:0::1;-1:-1:-1::0;;;;;56842:12:0;;::::1;::::0;;;::::1;::::0;;;;56888::::1;::::0;;-1:-1:-1;;;56888:12:0;;;;-1:-1:-1;;56888:4:0;;::::1;::::0;:10:::1;::::0;:12:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;:4;:12;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56861:39;;;;;;;;56908:15;56925::::0;56951:5:::1;;;;;;;;;-1:-1:-1::0;;;;;56951:5:0::1;-1:-1:-1::0;;;;;56951:21:0::1;;56973:4;56979:5;-1:-1:-1::0;;;;;56979:17:0::1;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56951:48;;;;;;;;;;;;;;;;:::i;:::-;;::::0;::::1;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57022:52;::::0;-1:-1:-1;;;57022:52:0;;56907:92;;-1:-1:-1;56907:92:0;-1:-1:-1;;;;;;57022:4:0::1;:17;::::0;::::1;::::0;:52:::1;::::0;57040:10:::1;::::0;57060:4:::1;::::0;57067:6;;57022:52:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57006:106;;;;-1:-1:-1::0;;;57006:106:0::1;;;;;;;:::i;:::-;57119:68;::::0;-1:-1:-1;;;57119:68:0;;57134:4:::1;::::0;57119:29:::1;::::0;:68:::1;::::0;57157:16:::1;::::0;-1:-1:-1;;57183:2:0;57119:68:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;57194:52:0::1;::::0;-1:-1:-1;;;57194:52:0;;-1:-1:-1;;;;;57194:4:0::1;:12;::::0;::::1;::::0;:52:::1;::::0;57215:16:::1;::::0;-1:-1:-1;;57242:2:0;57194:52:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;57405:4:0::1;57254:15;57389:22:::0;;;:7:::1;:22;::::0;;;;:30;-1:-1:-1;;;;;57286:16:0::1;:21;::::0;::::1;::::0;57318:142:::1;::::0;57345:9;;57367;;-1:-1:-1;;;;;57389:30:0::1;57447:2;57442:1;57433:10:::0;::::1;57432:17;;57318:14;:142::i;:::-;57286:183;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;57582:4:0::1;57566:22;::::0;;;:7:::1;:22;::::0;;;;:30;57253:216;;-1:-1:-1;;;;;;;57476:16:0::1;:21;::::0;::::1;::::0;57506:127:::1;::::0;57531:6:::1;::::0;-1:-1:-1;;57548:7:0;-1:-1:-1;;;;;57566:30:0::1;57622:2;57608:6:::0;57607:17:::1;::::0;57506:127:::1;57476:164;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;57685:4:0::1;57647:19;57669:22:::0;;;:7:::1;:22;::::0;;;;:30;-1:-1:-1;;;;;57669:30:0::1;::::0;-1:-1:-1;57726:42:0;;::::1;::::0;-1:-1:-1;57779:15:0::1;::::0;;::::1;;57775:146;;;57805:17;:45:::0;;57833:16;;;;-1:-1:-1;;;;;;;;57805:45:0;;::::1;::::0;::::1;::::0;;;::::1;;;-1:-1:-1::0;;;;;57805:45:0;;::::1;;::::0;;57775:146:::1;;;57873:17;:40:::0;;-1:-1:-1;;;;;;;;57873:40:0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;;-1:-1:-1::0;;;;;57873:40:0;;::::1;;::::0;;57775:146:::1;57938:121;;;;;;;;57956:9;57938:121;;;;;;57974:9;57938:121;;;;;;57992:26;:15;:24;:26::i;:::-;57938:121;::::0;;::::1;::::0;;-1:-1:-1;;;;;57938:121:0;;::::1;;::::0;;::::1;::::0;;;;-1:-1:-1;57938:121:0;;;;;;;57933:1:::1;57927:8:::0;;:5:::1;:8:::0;;;:132;;:8;:132;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;-1:-1:-1;;57927:132:0;;::::1;::::0;;::::1;;::::0;;::::1;::::0;;;::::1;-1:-1:-1::0;;57927:132:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;57927:132:0::1;-1:-1:-1::0;;;57927:132:0;;;::::1;;::::0;;;::::1;-1:-1:-1::0;;;;57927:132:0::1;-1:-1:-1::0;;;57927:132:0;;::::1;::::0;;;::::1;;::::0;;;::::1;::::0;;::::1;::::0;;;;-1:-1:-1;;;;;;57927:132:0::1;::::0;;;::::1;;::::0;;;-1:-1:-1;;58066:16:0;;-1:-1:-1;;;;;;;58066:16:0;;::::1;;::::0;;-1:-1:-1;;;;;;56597:1491:0:o;55242:34::-;55275:1;55242:34;:::o;58604:836::-;58695:10;58652:18;58687:19;;;:7;:19;;;;;:27;-1:-1:-1;;;;;58687:27:0;58679:70;;;;-1:-1:-1;;;58679:70:0;;;;;;;:::i;:::-;58756:24;;:::i;:::-;-1:-1:-1;58791:10:0;58783:19;;;;:7;:19;;;;;;;;;58756:46;;;;;;;;;-1:-1:-1;;;;;58756:46:0;;;;;-1:-1:-1;;;58756:46:0;;;;;;;;;;;;;-1:-1:-1;;;58756:46:0;;;;;;;;;;;;;;;58813:69;;-1:-1:-1;58847:35:0;;;:18;:35;;;;;;58813:69;58809:225;;;58960:4;58928:29;;;:36;58978:48;;54596:13;58893:26;;;;;58998:10;;58978:48;;;;58928:36;;58978:48;:::i;:::-;;;;;;;;58809:225;59055:9;:37;;;59054:38;:93;;;;-1:-1:-1;59122:24:0;59103:44;;:18;:44;;;;;;59054:93;59042:280;;;59239:4;59199:37;;;;:44;;;59257:57;54596:13;59164:26;;;;;59277:10;;59257:57;;;;59239:4;59257:57;:::i;:::-;;;;;;;;59042:280;59346:49;59364:4;59371:10;59383:11;-1:-1:-1;;;;;59346:49:0;:9;:49::i;:::-;59330:104;;;;-1:-1:-1;;;59330:104:0;;;;;;;:::i;:::-;58604:836;;:::o;55407:35::-;;;:::o;54908:44::-;;;;;;;;;;;;-1:-1:-1;;;;;54908:44:0;;:::o;68633:412::-;68689:15;68714:13;68743:4;;;;;;;;;-1:-1:-1;;;;;68743:4:0;-1:-1:-1;;;;;68743:10:0;;:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;68775:5:0;;:33;;-1:-1:-1;;;68775:33:0;;68713:42;;-1:-1:-1;68762:10:0;;-1:-1:-1;;;;;68775:5:0;;;;-1:-1:-1;68775:26:0;;-1:-1:-1;68775:33:0;;-1:-1:-1;68713:42:0;;-1:-1:-1;68775:33:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68762:46;;68815:26;;:::i;:::-;-1:-1:-1;68844:19:0;68850:12;;;-1:-1:-1;;;68850:12:0;;;;68844:19;;:5;:19;;;;;;;;;68815:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;68815:48:0;;;;;;;-1:-1:-1;;;;;;;;68815:48:0;;;;;;;;;;;;;;;;;;;;68889:5;68981:4;;:18;;-1:-1:-1;;;68981:18:0;;;;68815:48;;-1:-1:-1;;;;;68889:5:0;;;;:14;;68912:4;;68815:48;;;;68981:4;;;;;:16;;:18;;;;;;;;;;;:4;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;69008:9;:24;;;68889:150;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68870:169;68633:412;-1:-1:-1;;;;;;68633:412:0:o;55166:38::-;;;-1:-1:-1;;;;;55166:38:0;;:::o;54616:35::-;;;-1:-1:-1;;;54616:35:0;;;;;:::o;54736:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;54736:41:0;;;;-1:-1:-1;;;;;;;;54736:41:0;;;;;;;;:::o;68340:92::-;68416:10;;;;68340:92;:::o;60841:123::-;-1:-1:-1;;;;;60933:16:0;;60909:7;60933:16;;;:7;:16;;;;;:24;-1:-1:-1;;;;;60933:24:0;60841:123;;;;:::o;2618:138::-;2220:12;:10;:12::i;:::-;2210:6;;-1:-1:-1;;;;;2210:6:0;;;:22;;;2202:67;;;;-1:-1:-1;;;2202:67:0;;;;;;;:::i;:::-;2721:1:::1;2705:6:::0;;2684:40:::1;::::0;-1:-1:-1;;;;;2705:6:0;;::::1;::::0;2684:40:::1;::::0;2721:1;;2684:40:::1;2748:1;2731:19:::0;;-1:-1:-1;;;;;;2731:19:0::1;::::0;;2618:138::o;68102:232::-;68170:7;68186:14;68203:5;;;;;;;;;-1:-1:-1;;;;;68203:5:0;-1:-1:-1;;;;;68203:13:0;;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68186:32;;68240:5;68229:7;:16;;;68225:56;;68263:10;68256:17;;;;;68225:56;68294:34;68322:5;68294:23;:10;:23;;;:14;:23::i;:::-;:27;;:34::i;:::-;68287:41;68102:232;-1:-1:-1;;;68102:232:0:o;55209:26::-;;;-1:-1:-1;;;;;55209:26:0;;:::o;63959:178::-;64015:4;64047:26;;;:9;:26;;;;-1:-1:-1;;;;;64036:37:0;;;64047:26;;64036:37;;:94;;-1:-1:-1;;64105:24:0;64095:35;;:9;:35;;;;-1:-1:-1;;;;;64095:35:0;;;64084:46;;;;63959:178::o;2016:73::-;2054:7;2077:6;-1:-1:-1;;;;;2077:6:0;2016:73;:::o;55281:31::-;;;-1:-1:-1;;;55281:31:0;;-1:-1:-1;;;;;55281:31:0;;:::o;55360:40::-;;;;;;;;;;;;;;-1:-1:-1;;;55360:40:0;;;;:::o;55006:55::-;55044:17;55006:55;:::o;55133:28::-;;;:::o;59807:148::-;59894:4;59917:32;59927:10;59939:2;59943:5;59917:9;:32::i;59961:334::-;60045:7;60085:26;;;:9;:26;;;;-1:-1:-1;;;;;60068:43:0;;;60085:26;;60068:43;60064:200;;;-1:-1:-1;60129:15:0;60122:22;;60064:200;60189:24;60179:35;;:9;:35;;;;-1:-1:-1;;;;;60162:52:0;;;60179:35;;60162:52;60158:106;;;-1:-1:-1;60232:24:0;60225:31;;60158:106;-1:-1:-1;60277:12:0;59961:334;;;:::o;59446:355::-;59555:14;;:::i;:::-;59585:6;:26;;;59581:85;;;59654:4;59622:29;;;:36;59581:85;59676:6;:34;;;59672:101;;;59761:4;59721:37;;;:44;59672:101;-1:-1:-1;59786:9:0;59446:355;-1:-1:-1;59446:355:0:o;61138:2144::-;61189:10;61216:13;61245:4;;;;;;;;;-1:-1:-1;;;;;61245:4:0;-1:-1:-1;;;;;61245:10:0;;:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;61273:5:0;;:33;;-1:-1:-1;;;61273:33:0;;61215:42;;-1:-1:-1;;;;;;61273:5:0;;:26;;-1:-1:-1;61273:33:0;;-1:-1:-1;61215:42:0;;-1:-1:-1;61273:33:0;;;-1:-1:-1;61273:33:0;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61266:40;;61138:2144;61320:26;;:::i;:::-;-1:-1:-1;61349:19:0;61355:12;;-1:-1:-1;;;61355:12:0;;;;61349:19;;:5;:19;;;;;;;;61320:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;61320:48:0;;;;;;;;-1:-1:-1;;;61320:48:0;;;-1:-1:-1;;;;;61320:48:0;;;;;;;;;;;;;;;;;61391:4;;:18;;-1:-1:-1;;;61391:18:0;;;;61320:48;;61349:19;-1:-1:-1;;;;;61391:4:0;;;;:16;;:18;;;;;;;;;;;:4;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61482:5;;61522:19;;61552;;;;61600:24;;;;;61482:151;;-1:-1:-1;;;61482:151:0;;61375:34;;-1:-1:-1;61417:15:0;;;;;;-1:-1:-1;;;;;61482:5:0;;;;:14;;:151;;61507:4;;61522:19;61552;61375:34;;61482:151;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61416:217;;;;;;61648:15;61640:63;;;;-1:-1:-1;;;61640:63:0;;;;;;;:::i;:::-;61799:17;;;;61772:45;;-1:-1:-1;;;61772:45:0;;61734:17;;-1:-1:-1;;;;;61772:16:0;:26;;;;:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61719:98;;;;;;;;;;;;;61826:16;-1:-1:-1;;;;;61826:34:0;;61871:166;;;;;;;;61921:9;:17;;;-1:-1:-1;;;;;61871:166:0;;;;;61951:9;-1:-1:-1;;;;;61871:166:0;;;;;61973:1;61871:166;;;;61987:1;61871:166;;;;62001:15;62019:7;62001:25;61871:166;;;61826:220;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;62090:188:0;;;;;;;;62140:17;;;;;-1:-1:-1;;;;;62090:188:0;;;62189:4;62090:188;;;;-1:-1:-1;;;;;62090:188:0;;;;;;;;;;62055:232;;-1:-1:-1;;;62055:232:0;;-1:-1:-1;;;;;62055:16:0;:24;;;;:232;;62090:188;62055:232;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;62300:18:0;;;;-1:-1:-1;;;;;62300:23:0;;62296:660;;62411:18;;;;62372:68;;-1:-1:-1;;;62372:68:0;;-1:-1:-1;;;;;62372:16:0;:26;;;;:68;;62411:18;62372:68;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62336:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62451:16;-1:-1:-1;;;;;62451:34:0;;62498:179;;;;;;;;62550:9;:18;;;-1:-1:-1;;;;;62498:179:0;;;;;62583:9;-1:-1:-1;;;;;62498:179:0;;;;;62607:1;62498:179;;;;62623:1;62498:179;;;;62639:15;62657:7;62639:25;62498:179;;;62451:237;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;62736:199:0;;;;;;;;;62788:18;;;-1:-1:-1;;;;;62736:199:0;;;62840:4;62736:199;;;;-1:-1:-1;;;;;62736:199:0;;;;;;;;;;62699:247;;-1:-1:-1;;;62699:247:0;;-1:-1:-1;;;;;62699:16:0;:24;;;;:247;;62736:199;62699:247;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;62296:660;-1:-1:-1;63042:5:0;;:30;;-1:-1:-1;;;63042:30:0;;62970:15;;;;63014:59;;63020:9;;63031;;-1:-1:-1;;;;;63042:5:0;;:15;;:30;;63058:4;;63064:7;;63042:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63014:5;:59::i;:::-;62969:104;;;;63108:142;;;;;;;;63126:9;63108:142;;;;;;63144:9;63108:142;;;;;;63162:26;:15;:24;:26::i;:::-;63108:142;;;;;;63197:18;:7;:16;:18::i;:::-;-1:-1:-1;;;;;63108:142:0;;;;;63224:19;:8;:17;:19::i;:::-;-1:-1:-1;;;;;63108:142:0;;;;;;63082:23;63088:12;;63103:1;63088:12;-1:-1:-1;;;63088:12:0;;;;;;:16;;63082:23;;;;:5;:23;;;;;;;;:168;;;;;;;;;;;;;;;;;;-1:-1:-1;;;63082:168:0;-1:-1:-1;;;;63082:168:0;;;;-1:-1:-1;;;63082:168:0;-1:-1:-1;;63082:168:0;;;;;;;;;-1:-1:-1;;63082:168:0;;;;;-1:-1:-1;;63082:168:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;63082:168:0;;;;;;;;;;63259:17;;;;;;;;;;;;;;;;-1:-1:-1;;;;63259:17:0;;;;;;-1:-1:-1;;;;;;;;61138:2144:0:o;66255:468::-;66533:10;;66552:14;;;;;66353:19;66552:14;;;:5;:14;;;;;;;;:24;;66533:10;66687:23;;;;66533:10;;;;;66552:24;;;;66585;;;;;;;-1:-1:-1;;;66618:29:0;;;;;-1:-1:-1;;;66656:22:0;;-1:-1:-1;;;;;66656:22:0;;;;66687:23;;;66255:468::o;60970:162::-;-1:-1:-1;;;;;61099:18:0;;;61073:7;61099:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;-1:-1:-1;;;;;61099:27:0;;60970:162::o;54689:42::-;;;;;;;;;;;;-1:-1:-1;;;;;54689:42:0;;;;-1:-1:-1;;;54689:42:0;;;;;-1:-1:-1;;;54689:42:0;;;;:::o;66729:1367::-;66814:21;66844;66874:15;66898:16;66923:18;66950;66977:20;67032:12;;;;;;;;;;;67015:29;;67052:13;67081:4;;;;;;;;;-1:-1:-1;;;;;67081:4:0;-1:-1:-1;;;;;67081:10:0;;:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;67104:10:0;;67051:42;;-1:-1:-1;;;67104:10:0;;;;67100:837;;-1:-1:-1;67100:837:0;;-1:-1:-1;67100:837:0;67178:5;;67249:21;;;-1:-1:-1;;;67249:21:0;;;;67138:174;;67305:6;;67138:152;;-1:-1:-1;;;;;67178:5:0;;;;:24;;:5;;67249:19;;:21;;;;;;;;;;;;;;;67178:5;67249:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67215;;;;;;;:5;:21;;;;;;;;;:31;67178:103;;-1:-1:-1;;;;;;67178:103:0;;;;;;;;;67215:31;;;;:55;;;;;67178:103;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67146:6;;67138:29;:152::i;:174::-;67374:5;;67445:21;;;-1:-1:-1;;;67445:21:0;;;;67125:187;;-1:-1:-1;67334:174:0;;67501:6;;67334:152;;-1:-1:-1;;;;;67374:5:0;;;;:24;;:5;;67445:19;;:21;;;;;;;;;;;;;;;67374:5;67445:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67411;;;;;;;:5;:21;;;;;;;;;:31;67374:103;;;;;;-1:-1:-1;;;;;;67374:103:0;;;;;67411:31;;;;;;;:55;;;;67374:103;;;:::i;67334:174::-;67562:5;;:36;;-1:-1:-1;;;67562:36:0;;67321:187;;-1:-1:-1;67532:89:0;;67614:6;;67532:67;;-1:-1:-1;;;;;67562:5:0;;;;:29;;:36;;67592:5;;67562:36;;;:::i;67532:89::-;67517:104;;67100:837;;;67657:5;;67692:21;;;67657:5;67692:21;;;:5;:21;;;;;;;;;:31;67657:67;;-1:-1:-1;;;67657:67:0;;:89;;67739:6;;-1:-1:-1;;;;;67657:5:0;;;;:34;;:67;;67692:31;;;;67657:67;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:89::-;67768:5;;67803:21;;;67768:5;67803:21;;;:5;:21;;;;;;;;;:31;67768:67;;-1:-1:-1;;;67768:67:0;;67644:102;;-1:-1:-1;67768:89:0;;67850:6;;-1:-1:-1;;;;;67768:5:0;;:34;;:67;;67803:31;;;;;;;67768:67;;;:::i;:89::-;67881:5;;:36;;-1:-1:-1;;;67881:36:0;;67755:102;;-1:-1:-1;67881:48:0;;67922:6;;-1:-1:-1;;;;;67881:5:0;;:29;;:36;;67911:5;;67881:36;;;:::i;:48::-;67866:63;;67100:837;-1:-1:-1;67960:21:0;;;;;;;:5;:21;;;;;:36;;68060:30;;;;;67966:14;;67960:36;-1:-1:-1;;;67960:36:0;;;;-1:-1:-1;;;;;;;;68013:29:0;;;;;;-1:-1:-1;68060:30:0;;;;-1:-1:-1;66729:1367:0;;-1:-1:-1;66729:1367:0;;:::o;2901:230::-;2220:12;:10;:12::i;:::-;2210:6;;-1:-1:-1;;;;;2210:6:0;;;:22;;;2202:67;;;;-1:-1:-1;;;2202:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2986:22:0;::::1;2978:73;;;;-1:-1:-1::0;;;2978:73:0::1;;;;;;;:::i;:::-;3084:6;::::0;;3063:38:::1;::::0;-1:-1:-1;;;;;3063:38:0;;::::1;::::0;3084:6;::::1;::::0;3063:38:::1;::::0;::::1;3108:6;:17:::0;;-1:-1:-1;;;;;;3108:17:0::1;-1:-1:-1::0;;;;;3108:17:0;;;::::1;::::0;;;::::1;::::0;;2901:230::o;63288:665::-;63386:4;-1:-1:-1;;;;;63407:18:0;;63399:68;;;;-1:-1:-1;;;63399:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;63482:16:0;;63474:64;;;;-1:-1:-1;;;63474:64:0;;;;;;;:::i;:::-;63545:24;;:::i;:::-;-1:-1:-1;;;;;;63572:11:0;;;;;;:7;:11;;;;;;;;;63545:38;;;;;;;;;-1:-1:-1;;;;;63545:38:0;;;;;-1:-1:-1;;;63545:38:0;;;;;;;;;;;;;-1:-1:-1;;;63545:38:0;;;;;;;;;;;;;;63610:39;63632:16;:5;:14;:16::i;:::-;63610:17;;-1:-1:-1;;;;;63610:21:0;;;:39::i;:::-;-1:-1:-1;;;;;63590:59:0;;;63680:43;63706:16;:5;:14;:16::i;:::-;-1:-1:-1;;;;;63680:13:0;;;;;;:7;:13;;;;;:21;-1:-1:-1;;;;;63680:21:0;;:25;:43::i;:::-;-1:-1:-1;;;;;63656:13:0;;;;;;;:7;:13;;;;;:67;;-1:-1:-1;;;;;;63656:67:0;-1:-1:-1;;;;;63656:67:0;;;;;;;;;;;63750:4;;;63734:21;;;;:58;;;63775:16;-1:-1:-1;;;;;63759:33:0;:4;-1:-1:-1;;;;;63759:33:0;;;63734:58;63730:133;;;-1:-1:-1;;;;;63830:13:0;;;;;;:7;:13;;;;;;;;;63815:40;;;;;;;;;-1:-1:-1;;;;;63815:40:0;;;;;-1:-1:-1;;;63815:40:0;;;;;;;;;;;;;-1:-1:-1;;;63815:40:0;;;;;;;;;;;;;;;;63845:9;63815:14;:40::i;:::-;63803:52;;63730:133;-1:-1:-1;;;;;63869:11:0;;;;;;;:7;:11;;;;;;;;;:23;;;;;;;;;;;;-1:-1:-1;;;;;;63869:23:0;;;-1:-1:-1;;;;;63869:23:0;;;;;;;-1:-1:-1;;;;63869:23:0;-1:-1:-1;;;63869:23:0;;;;;;;;-1:-1:-1;;;;63869:23:0;-1:-1:-1;;;63869:23:0;;;;;;;;;;;;;63904:25;63869:11;;63904:25;;;;;;;63923:5;;63904:25;:::i;:::-;;;;;;;;-1:-1:-1;63943:4:0;;63288:665;-1:-1:-1;;;;63288:665:0:o;10469:168::-;10525:6;-1:-1:-1;;;10548:5:0;:13;10540:64;;;;-1:-1:-1;;;10540:64:0;;;;;;;:::i;6589:127::-;6645:6;6667:43;6671:1;6674;6667:43;;;;;;;;;;;;;;;;;:3;:43::i;610:100::-;694:10;610:100;:::o;65175:1074::-;65323:31;;:::i;:::-;65368:10;;;;65363:466;;65405:416;;;;;;;;65459:4;-1:-1:-1;;;;;65405:416:0;;;;;65493:4;-1:-1:-1;;;;;65405:416:0;;;;;65516:4;;;;;;;;;-1:-1:-1;;;;;65516:4:0;-1:-1:-1;;;;;65516:8:0;;:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65405:416;;;;;;65583:9;65405:416;;;;;;65550:9;65405:416;;;;;;65621:11;65405:416;;;;65661:11;65405:416;;;;65697:1;65405:416;;;;65723:1;65405:416;;;;65756:4;-1:-1:-1;;;;;65405:416:0;;;;;65784:15;65802:7;65784:25;65405:416;;;65389:432;;;;65363:466;65851:392;;;;;;;;65903:4;-1:-1:-1;;;;;65851:392:0;;;;;65935:4;-1:-1:-1;;;;;65851:392:0;;;;;65956:4;;;;;;;;;-1:-1:-1;;;;;65956:4:0;-1:-1:-1;;;;;65956:8:0;;:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65851:392;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65851:392:0;;;;;;;;-1:-1:-1;65851:392:0;;;;;;;;;;66182:4;65851:392;;;;66226:7;66208:15;:25;65851:392;;;;;;;;65837:406;65175:1074::o;12643:168::-;12699:6;12730:5;12722;:13;12714:64;;;;-1:-1:-1;;;12714:64:0;;;;;;;:::i;19274:431::-;19332:7;19561:6;19557:37;;-1:-1:-1;19585:1:0;19578:8;;19557:37;19614:5;;;19618:1;19614;:5;:1;19634:5;;;;;:10;19626:56;;;;-1:-1:-1;;;19626:56:0;;;;;;;:::i;20155:126::-;20213:7;20236:39;20240:1;20243;20236:39;;;;;;;;;;;;;;;;;:3;:39::i;64143:1026::-;64328:4;64249:15;64312:22;;;:7;:22;;;;;;:30;64369:29;;-1:-1:-1;;;64369:29:0;;64249:15;;;;-1:-1:-1;;;;;64312:30:0;;;;64249:15;;64369:4;-1:-1:-1;;;;;64369:14:0;;;;:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64492:10;;64349:49;;-1:-1:-1;64405:19:0;;;;;;64492:10;;64487:289;;64527:28;64545:9;64527:17;:28::i;:::-;64513:42;;64582:11;64564:29;;64620:9;64602:27;;64487:289;;;64666:28;64684:9;64666:17;:28::i;:::-;64652:42;;64721:9;64703:27;;64757:11;64739:29;;64487:289;64802:16;-1:-1:-1;;;;;64802:21:0;;64832:61;64847:9;64858;64869:10;64881:11;64832:14;:61::i;:::-;64802:98;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;64911:29:0;;-1:-1:-1;;;64911:29:0;;64784:116;;-1:-1:-1;;;;;;;64911:4:0;:14;;;;:29;;64934:4;;64911:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:34;64907:257;;64975:16;-1:-1:-1;;;;;64975:21:0;;65007:140;65034:15;65062;65090:10;65125:11;65113:9;:23;65007:14;:140::i;:::-;64975:181;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;64956:200:0;;-1:-1:-1;;;64907:257:0;64143:1026;;;;;;;;;;;:::o;6165:163::-;6221:6;6247:5;;;-1:-1:-1;;;;;6267:6:0;;;;;;;;6259:46;;;;-1:-1:-1;;;6259:46:0;;;;;;;:::i;6997:194::-;7101:6;7129:1;-1:-1:-1;;;;;7124:6:0;:1;-1:-1:-1;;;;;7124:6:0;;;7132:12;7116:29;;;;;-1:-1:-1;;;7116:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;7163:5:0;;;6997:194::o;20751:280::-;20857:7;20888:12;20881:5;20873:28;;;;-1:-1:-1;;;20873:28:0;;;;;;;;:::i;:::-;;20908:9;20924:1;20920;:5;;;;;;;20751:280;-1:-1:-1;;;;;20751:280:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1098:130::-;1174:13;;44440:1;44429:20;;;48560:33;;48550:2;;48607:1;;48597:12;1263:645;;1377:4;1365:9;1360:3;1356:19;1352:30;1349:2;;;-1:-1;;1385:12;1349:2;43287;43281:9;1377:4;43317:6;43313:17;43424:6;43412:10;43409:22;43388:18;43376:10;43373:34;43370:62;43367:2;;;-1:-1;;43435:12;43367:2;43287;43454:22;1404:29;-1:-1;1404:29;3230:20;;3255:32;3230:20;3255:32;:::i;:::-;1493:74;;1643:2;1694:22;;347:20;372:30;347:20;372:30;:::i;:::-;1643:2;1658:16;;1651:72;43287:2;1858:22;;347:20;372:30;347:20;372:30;:::i;:::-;43287:2;1822:16;;;;1815:72;1343:565;;-1:-1;;1343:565::o;1915:134::-;1993:13;;-1:-1;;;;;44523:46;;48682:35;;48672:2;;48731:1;;48721:12;2471:132;2548:13;;44872:8;44861:20;;49051:34;;49041:2;;49099:1;;49089:12;3438:241;;3542:2;3530:9;3521:7;3517:23;3513:32;3510:2;;;-1:-1;;3548:12;3510:2;85:6;72:20;97:33;124:5;97:33;:::i;3686:366::-;;;3807:2;3795:9;3786:7;3782:23;3778:32;3775:2;;;-1:-1;;3813:12;3775:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;3865:63;-1:-1;3965:2;4004:22;;72:20;97:33;72:20;97:33;:::i;:::-;3973:63;;;;3769:283;;;;;:::o;4059:491::-;;;;4197:2;4185:9;4176:7;4172:23;4168:32;4165:2;;;-1:-1;;4203:12;4165:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;4255:63;-1:-1;4355:2;4394:22;;72:20;97:33;72:20;97:33;:::i;:::-;4159:391;;4363:63;;-1:-1;;;4463:2;4502:22;;;;2677:20;;4159:391::o;4557:366::-;;;4678:2;4666:9;4657:7;4653:23;4649:32;4646:2;;;-1:-1;;4684:12;4646:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;4736:63;4836:2;4875:22;;;;2677:20;;-1:-1;;;4640:283::o;4930:257::-;;5042:2;5030:9;5021:7;5017:23;5013:32;5010:2;;;-1:-1;;5048:12;5010:2;495:6;489:13;507:30;531:5;507:30;:::i;5510:265::-;;5626:2;5614:9;5605:7;5601:23;5597:32;5594:2;;;-1:-1;;5632:12;5594:2;1029:6;1016:20;48471:1;48464:5;48461:12;48451:2;;-1:-1;;48477:12;5782:259;;5895:2;5883:9;5874:7;5870:23;5866:32;5863:2;;;-1:-1;;5901:12;5863:2;5963:62;6017:7;5993:22;5963:62;:::i;6048:391::-;;;6176:2;6164:9;6155:7;6151:23;6147:32;6144:2;;;-1:-1;;6182:12;6144:2;6244:62;6298:7;6274:22;6244:62;:::i;:::-;6234:72;;6361:62;6415:7;6343:2;6395:9;6391:22;6361:62;:::i;:::-;6351:72;;6138:301;;;;;:::o;6446:521::-;;;;6588:2;6576:9;6567:7;6563:23;6559:32;6556:2;;;-1:-1;;6594:12;6556:2;6656:62;6710:7;6686:22;6656:62;:::i;:::-;6646:72;;6773:62;6827:7;6755:2;6807:9;6803:22;6773:62;:::i;:::-;6763:72;;6872:2;6923:9;6919:22;489:13;507:30;531:5;507:30;:::i;:::-;6880:71;;;;6550:417;;;;;:::o;6974:467::-;;;7145:3;7133:9;7124:7;7120:23;7116:33;7113:2;;;-1:-1;;7152:12;7113:2;7214:78;7284:7;7260:22;7214:78;:::i;:::-;7204:88;;7347:78;7417:7;7329:2;7397:9;7393:22;7347:78;:::i;7448:239::-;;7551:2;7539:9;7530:7;7526:23;7522:32;7519:2;;;-1:-1;;7557:12;7519:2;2135:6;2122:20;2147:32;2173:5;2147:32;:::i;7694:1063::-;;;;;;;;7901:3;7889:9;7880:7;7876:23;7872:33;7869:2;;;-1:-1;;7908:12;7869:2;2275:6;2269:13;2287:33;2314:5;2287:33;:::i;:::-;7960:74;-1:-1;8089:62;8143:7;8071:2;8119:22;;8089:62;:::i;:::-;8079:72;;8188:2;8241:9;8237:22;2409:13;2427:32;2453:5;2427:32;:::i;:::-;8306:2;8355:22;;2409:13;8196:73;;-1:-1;2427:32;2409:13;2427:32;:::i;:::-;8424:3;8474:22;;2409:13;8314:73;;-1:-1;2427:32;2409:13;2427:32;:::i;:::-;8543:3;8592:22;;3103:13;8433:73;;-1:-1;45241:4;45230:16;;49418:33;;49408:2;;-1:-1;;49455:12;49408:2;8661:3;8709:22;;489:13;8552:72;;-1:-1;507:30;489:13;507:30;:::i;:::-;8670:71;;;;7863:894;;;;;;;;;;:::o;8764:261::-;;8878:2;8866:9;8857:7;8853:23;8849:32;8846:2;;;-1:-1;;8884:12;8846:2;8946:63;9001:7;8977:22;8946:63;:::i;9032:241::-;;9136:2;9124:9;9115:7;9111:23;9107:32;9104:2;;;-1:-1;;9142:12;9104:2;-1:-1;2677:20;;9098:175;-1:-1;9098:175::o;9280:263::-;;9395:2;9383:9;9374:7;9370:23;9366:32;9363:2;;;-1:-1;;9401:12;9363:2;-1:-1;2825:13;;9357:186;-1:-1;9357:186::o;9550:412::-;;;9694:2;9682:9;9673:7;9669:23;9665:32;9662:2;;;-1:-1;;9700:12;9662:2;2690:6;2677:20;9752:63;;9852:2;9918:9;9914:22;844:20;869:56;919:5;869:56;:::i;9969:672::-;;;;;10135:3;10123:9;10114:7;10110:23;10106:33;10103:2;;;-1:-1;;10142:12;10103:2;2831:6;2825:13;10194:74;;10323:64;10379:7;10305:2;10359:9;10355:22;10323:64;:::i;:::-;10424:2;10474:22;;2825:13;10543:2;10593:22;;;2825:13;10097:544;;10313:74;;-1:-1;10097:544;-1:-1;;;10097:544::o;10648:399::-;;;10780:2;10768:9;10759:7;10755:23;10751:32;10748:2;;;-1:-1;;10786:12;10748:2;-1:-1;;2825:13;;10949:2;10999:22;;;2825:13;;;;;-1:-1;10742:305::o;11054:261::-;;11168:2;11156:9;11147:7;11143:23;11139:32;11136:2;;;-1:-1;;11174:12;11136:2;2971:6;2965:13;45139:18;49324:5;45128:30;49300:5;49297:34;49287:2;;-1:-1;;49335:12;11322:1760;;;;;;;;;;;;;11620:3;11608:9;11599:7;11595:23;11591:33;11588:2;;;-1:-1;;11627:12;11588:2;3382:6;3376:13;3394:32;3420:5;3394:32;:::i;:::-;11789:2;11839:22;;220:13;11679:73;;-1:-1;238:33;220:13;238:33;:::i;:::-;11908:2;11958:22;;220:13;11797:74;;-1:-1;238:33;220:13;238:33;:::i;:::-;12027:2;12077:22;;220:13;11916:74;;-1:-1;238:33;220:13;238:33;:::i;:::-;12035:74;-1:-1;12165:63;12220:7;12146:3;12196:22;;12165:63;:::i;:::-;12155:73;;12284:62;12338:7;12265:3;12318:9;12314:22;12284:62;:::i;:::-;12274:72;;12402:62;12456:7;12383:3;12436:9;12432:22;12402:62;:::i;:::-;12392:72;;12520:64;12576:7;12501:3;12556:9;12552:22;12520:64;:::i;:::-;12510:74;;12621:3;12676:9;12672:22;2825:13;12630:74;;12741:3;12796:9;12792:22;2825:13;12750:74;;12881:64;12937:7;12861:3;12917:9;12913:22;12881:64;:::i;:::-;12870:75;;13002:64;13058:7;12982:3;13038:9;13034:22;13002:64;:::i;:::-;12991:75;;11582:1500;;;;;;;;;;;;;;:::o;13238:103::-;-1:-1;;;;;44734:54;13299:37;;13293:48::o;14581:97::-;44440:1;44429:20;14638:35;;14632:46::o;25673:100::-;44872:8;44861:20;25732:36;;25726:47::o;26596:222::-;-1:-1;;;;;44734:54;;;;13299:37;;26723:2;26708:18;;26694:124::o;26825:460::-;-1:-1;;;;;44734:54;;;13168:58;;44734:54;;;;27188:2;27173:18;;13299:37;27271:2;27256:18;;25841:37;;;;27016:2;27001:18;;26987:298::o;27292:333::-;-1:-1;;;;;44734:54;;;;13299:37;;27611:2;27596:18;;25841:37;27447:2;27432:18;;27418:207::o;27632:331::-;-1:-1;;;;;44734:54;;;;13299:37;;-1:-1;;;;;45319:38;27949:2;27934:18;;26311:49;27786:2;27771:18;;27757:206::o;27970:210::-;43953:13;;43946:21;13523:34;;28091:2;28076:18;;28062:118::o;28187:748::-;43953:13;;43946:21;13523:34;;44440:1;44429:20;;;28593:2;28578:18;;14638:35;44429:20;;;;28672:2;28657:18;;14638:35;45044:10;45033:22;28753:2;28738:18;;26079:36;-1:-1;;;;;44523:46;;;28836:3;28821:19;;25267:37;44523:46;28920:3;28905:19;;25267:37;28438:3;28423:19;;28409:526::o;30074:242::-;30211:2;30196:18;;47757:1;47747:12;;47737:2;;47763:9;47737:2;14509:60;;;30182:134;:::o;30323:214::-;44440:1;44429:20;;;;14638:35;;30446:2;30431:18;;30417:120::o;30544:325::-;44440:1;44429:20;;;;14638:35;;-1:-1;;;;;44734:54;30855:2;30840:18;;13299:37;30695:2;30680:18;;30666:203::o;30876:317::-;44440:1;44429:20;;;14638:35;;44429:20;;31179:2;31164:18;;14638:35;31023:2;31008:18;;30994:199::o;31200:632::-;44440:1;44429:20;;;14638:35;;44429:20;;;31578:2;31563:18;;14638:35;44429:20;;;31657:2;31642:18;;14638:35;44429:20;;;31736:2;31721:18;;14638:35;45044:10;45033:22;;;31817:3;31802:19;;26079:36;31421:3;31406:19;;31392:440::o;31839:640::-;44440:1;44429:20;;;14638:35;;44429:20;;;;32221:2;32206:18;;14638:35;45044:10;45033:22;;;;32302:2;32287:18;;26079:36;-1:-1;;;;;45319:38;;;32383:2;32368:18;;26431:36;45319:38;;;32464:3;32449:19;;26431:36;32064:3;32049:19;;32035:444::o;32486:310::-;;32633:2;;32654:17;32647:47;14944:5;43576:12;43733:6;32633:2;32622:9;32618:18;43721:19;-1:-1;47367:101;47381:6;47378:1;47375:13;47367:101;;;47448:11;;;;;47442:18;47429:11;;;43761:14;47429:11;47422:39;47396:10;;47367:101;;;47483:6;47480:1;47477:13;47474:2;;;-1:-1;43761:14;47539:6;32622:9;47530:16;;47523:27;47474:2;-1:-1;47655:7;47639:14;-1:-1;;47635:28;15102:39;;;;43761:14;15102:39;;32604:192;-1:-1;;;32604:192::o;32803:416::-;33003:2;33017:47;;;15378:2;32988:18;;;43721:19;15414:34;43761:14;;;15394:55;-1:-1;;;15469:12;;;15462:27;15508:12;;;32974:245::o;33226:416::-;33426:2;33440:47;;;15759:2;33411:18;;;43721:19;15795:34;43761:14;;;15775:55;-1:-1;;;15850:12;;;15843:30;15892:12;;;33397:245::o;33649:416::-;33849:2;33863:47;;;16143:2;33834:18;;;43721:19;16179:34;43761:14;;;16159:55;-1:-1;;;16234:12;;;16227:30;16276:12;;;33820:245::o;34072:416::-;34272:2;34286:47;;;16527:2;34257:18;;;43721:19;16563:29;43761:14;;;16543:50;16612:12;;;34243:245::o;34495:416::-;34695:2;34709:47;;;16863:2;34680:18;;;43721:19;-1:-1;;;43761:14;;;16879:43;16941:12;;;34666:245::o;34918:416::-;35118:2;35132:47;;;17192:2;35103:18;;;43721:19;17228:34;43761:14;;;17208:55;-1:-1;;;17283:12;;;17276:27;17322:12;;;35089:245::o;35341:416::-;35541:2;35555:47;;;17573:2;35526:18;;;43721:19;-1:-1;;;43761:14;;;17589:44;17652:12;;;35512:245::o;35764:416::-;35964:2;35978:47;;;17903:2;35949:18;;;43721:19;-1:-1;;;43761:14;;;17919:43;17981:12;;;35935:245::o;36187:416::-;36387:2;36401:47;;;18232:2;36372:18;;;43721:19;18268:34;43761:14;;;18248:55;-1:-1;;;18323:12;;;18316:25;18360:12;;;36358:245::o;36610:416::-;36810:2;36824:47;;;36795:18;;;43721:19;18647:34;43761:14;;;18627:55;18701:12;;;36781:245::o;37033:416::-;37233:2;37247:47;;;18952:2;37218:18;;;43721:19;18988:34;43761:14;;;18968:55;-1:-1;;;19043:12;;;19036:29;19084:12;;;37204:245::o;37456:416::-;37656:2;37670:47;;;19335:2;37641:18;;;43721:19;19371:27;43761:14;;;19351:48;19418:12;;;37627:245::o;37879:416::-;38079:2;38093:47;;;19669:2;38064:18;;;43721:19;-1:-1;;;43761:14;;;19685:39;19743:12;;;38050:245::o;38302:416::-;38502:2;38516:47;;;19994:2;38487:18;;;43721:19;20030:34;43761:14;;;20010:55;-1:-1;;;20085:12;;;20078:30;20127:12;;;38473:245::o;38725:416::-;38925:2;38939:47;;;20378:2;38910:18;;;43721:19;20414:27;43761:14;;;20394:48;20461:12;;;38896:245::o;39148:322::-;20752:23;;-1:-1;;;;;45319:38;26431:36;;20936:4;20925:16;;;20919:23;43953:13;43946:21;20990:14;;;13523:34;21107:4;21096:16;;;21090:23;43953:13;43946:21;21161:14;;;13523:34;;;;39325:2;39310:18;;39296:174::o;39477:343::-;21505:23;;25841:37;;21681:4;21670:16;;;21664:23;-1:-1;;;;;44734:54;21741:14;;;13299:37;21841:4;21830:16;;;21824:23;-1:-1;;;;;44523:46;;;21901:14;;;25267:37;;;;22001:4;21990:16;;;21984:23;44523:46;22061:14;;;25267:37;;;;39664:3;39649:19;;39635:185::o;39827:383::-;;40034:3;40023:9;40019:19;40011:27;;22451:16;22445:23;25848:3;25841:37;-1:-1;;;;;22621:4;22614:5;22610:16;22604:23;44523:46;22621:4;22685:3;22681:14;25267:37;22781:4;22774:5;22770:16;22764:23;22781:4;22845:3;22841:14;25841:37;22941:4;22934:5;22930:16;22924:23;22941:4;23005:3;23001:14;25841:37;23099:4;23092:5;23088:16;23082:23;23099:4;23163:3;23159:14;25841:37;40005:205;;;;:::o;40217:331::-;;40398:3;40387:9;40383:19;40375:27;;23521:63;23569:14;23498:16;23492:23;23521:63;:::i;:::-;23665:4;23658:5;23654:16;23648:23;23677:63;23665:4;23729:3;23725:14;23711:12;23677:63;:::i;:::-;;23818:4;23811:5;23807:16;23801:23;23830:61;23818:4;23880:3;23876:14;23862:12;23830:61;:::i;:::-;;23975:4;23968:5;23964:16;23958:23;23987:59;23975:4;24035:3;24031:14;24017:12;23987:59;:::i;:::-;;24130:4;24123:5;24119:16;24113:23;24142:59;24130:4;24190:3;24186:14;24172:12;24142:59;:::i;:::-;;24290:4;24283:5;24279:16;24273:23;24290:4;24354:3;24350:14;25841:37;24454:4;24447:5;24443:16;24437:23;24454:4;24518:3;24514:14;25841:37;24614:4;24607:5;24603:16;24597:23;24614:4;24678:3;24674:14;25841:37;24774:6;;24767:5;24763:18;24757:25;24774:6;24840:3;24836:16;25841:37;;24937:6;;24930:5;24926:18;24920:25;24951:65;24937:6;25003:3;24999:16;24985:12;24951:65;:::i;:::-;-1:-1;;25099:6;25088:18;;;25082:25;25161:16;;;;25841:37;40369:179;:::o;40784:218::-;44653:6;44642:18;;;;25625:36;;40909:2;40894:18;;40880:122::o;41009:884::-;44653:6;44642:18;;;;25625:36;;45044:10;45033:22;;;;41461:2;41446:18;;26079:36;-1:-1;;;;;44523:46;;;41544:2;41529:18;;25267:37;44523:46;;;;41627:2;41612:18;;25267:37;41710:3;41695:19;;25841:37;;;;41794:3;41779:19;;25841:37;41878:3;41863:19;;25841:37;41300:3;41285:19;;41271:622::o;41900:222::-;25841:37;;;42027:2;42012:18;;41998:124::o;42129:214::-;45241:4;45230:16;;;;26194:35;;42252:2;42237:18;;42223:120::o;42350:220::-;-1:-1;;;;;45319:38;;;;26311:49;;42476:2;42461:18;;42447:123::o;42802:416::-;-1:-1;;;;;45319:38;;;;26431:36;;43953:13;;43946:21;43127:2;43112:18;;13523:34;43953:13;43946:21;43204:2;43189:18;;13523:34;42971:2;42956:18;;42942:276::o;47786:117::-;-1:-1;;;;;44734:54;;47845:35;;47835:2;;47894:1;;47884:12;47835:2;47829:74;:::o;47910:111::-;47991:5;43953:13;43946:21;47969:5;47966:32;47956:2;;48012:1;;48002:12;48747:115;44653:6;48832:5;44642:18;48808:5;48805:34;48795:2;;48853:1;;48843:12;49481:115;-1:-1;;;;;49566:5;45319:38;49542:5;49539:34;49529:2;;49587:1;;49577:12

Swarm Source

ipfs://053d86d130d8c7fac3f7376636507614d70e9e2016aae5ef0203bd22f13fc814
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.