S Price: $0.561094 (-3.39%)
    /

    Shadow V3 Positions NFT (SHADOW-V3-NFP)

    Overview

    TokenID

    4421

    Total Transfers

    -

    Market

    Onchain Market Cap

    $0.00

    Circulating Supply Market Cap

    -
    Loading...
    Loading
    Loading...
    Loading
    Loading...
    Loading

    Click here to update the token information / general information
    This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

    Contract Source Code Verified (Exact Match)

    Contract Name:
    NonfungiblePositionManager

    Compiler Version
    v0.8.28+commit.7893614a

    Optimization Enabled:
    Yes with 2633 runs

    Other Settings:
    cancun EvmVersion
    File 1 of 56 : NonfungiblePositionManager.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity ^0.8.26;
    pragma abicoder v2;
    import {ERC721} from '@openzeppelin/contracts/token/ERC721/ERC721.sol';
    import {ERC721Enumerable, IERC165} from '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
    import {Multicall} from './base/Multicall.sol';
    import {IRamsesV3Pool} from '../core/interfaces/IRamsesV3Pool.sol';
    import {FixedPoint128} from '../core/libraries/FixedPoint128.sol';
    import {FullMath} from '../core/libraries/FullMath.sol';
    import {INonfungiblePositionManager, IERC721, IERC721Metadata} from './interfaces/INonfungiblePositionManager.sol';
    import {INonfungibleTokenPositionDescriptor} from './interfaces/INonfungibleTokenPositionDescriptor.sol';
    import {PositionKey} from './libraries/PositionKey.sol';
    import {PoolAddress} from './libraries/PoolAddress.sol';
    import {LiquidityManagement} from './base/LiquidityManagement.sol';
    import {PeripheryImmutableState} from './base/PeripheryImmutableState.sol';
    import {PeripheryValidation} from './base/PeripheryValidation.sol';
    import {PoolInitializer} from './base/PoolInitializer.sol';
    import {IGaugeV3} from '../gauge/interfaces/IGaugeV3.sol';
    import {IVoter} from '../../interfaces/IVoter.sol';
    import {IAccessHub} from '../../interfaces/IAccessHub.sol';
    /// @title NFT positions
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 56 : ERC721.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/ERC721.sol)
    pragma solidity ^0.8.20;
    import {IERC721} from "./IERC721.sol";
    import {IERC721Metadata} from "./extensions/IERC721Metadata.sol";
    import {ERC721Utils} from "./utils/ERC721Utils.sol";
    import {Context} from "../../utils/Context.sol";
    import {Strings} from "../../utils/Strings.sol";
    import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol";
    import {IERC721Errors} from "../../interfaces/draft-IERC6093.sol";
    /**
    * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC-721] Non-Fungible Token Standard, including
    * the Metadata extension, but not including the Enumerable extension, which is available separately as
    * {ERC721Enumerable}.
    */
    abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {
    using Strings for uint256;
    // Token name
    string private _name;
    // Token symbol
    string private _symbol;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 3 of 56 : ERC721Enumerable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/extensions/ERC721Enumerable.sol)
    pragma solidity ^0.8.20;
    import {ERC721} from "../ERC721.sol";
    import {IERC721Enumerable} from "./IERC721Enumerable.sol";
    import {IERC165} from "../../../utils/introspection/ERC165.sol";
    /**
    * @dev This implements an optional extension of {ERC721} defined in the ERC that adds enumerability
    * of all the token ids in the contract as well as all token ids owned by each account.
    *
    * CAUTION: {ERC721} extensions that implement custom `balanceOf` logic, such as {ERC721Consecutive},
    * interfere with enumerability and should not be used together with {ERC721Enumerable}.
    */
    abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    mapping(address owner => mapping(uint256 index => uint256)) private _ownedTokens;
    mapping(uint256 tokenId => uint256) private _ownedTokensIndex;
    uint256[] private _allTokens;
    mapping(uint256 tokenId => uint256) private _allTokensIndex;
    /**
    * @dev An `owner`'s token query was out of bounds for `index`.
    *
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 4 of 56 : Multicall.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity ^0.8.26;
    pragma abicoder v2;
    import '../interfaces/IMulticall.sol';
    /// @title Multicall
    /// @notice Enables calling multiple methods in a single call to the contract
    abstract contract Multicall is IMulticall {
    /// @inheritdoc IMulticall
    function multicall(bytes[] calldata data) public payable override returns (bytes[] memory results) {
    results = new bytes[](data.length);
    for (uint256 i = 0; i < data.length; i++) {
    (bool success, bytes memory result) = address(this).delegatecall(data[i]);
    if (!success) {
    // Next 5 lines from https://ethereum.stackexchange.com/a/83577
    if (result.length < 68) revert();
    assembly {
    result := add(result, 0x04)
    }
    revert(abi.decode(result, (string)));
    }
    results[i] = result;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 5 of 56 : IRamsesV3Pool.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.5.0;
    import {IRamsesV3PoolImmutables} from './pool/IRamsesV3PoolImmutables.sol';
    import {IRamsesV3PoolState} from './pool/IRamsesV3PoolState.sol';
    import {IRamsesV3PoolDerivedState} from './pool/IRamsesV3PoolDerivedState.sol';
    import {IRamsesV3PoolActions} from './pool/IRamsesV3PoolActions.sol';
    import {IRamsesV3PoolOwnerActions} from './pool/IRamsesV3PoolOwnerActions.sol';
    import {IRamsesV3PoolErrors} from './pool/IRamsesV3PoolErrors.sol';
    import {IRamsesV3PoolEvents} from './pool/IRamsesV3PoolEvents.sol';
    /// @title The interface for a Ramses V3 Pool
    /// @notice A Ramses 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 IRamsesV3Pool is
    IRamsesV3PoolImmutables,
    IRamsesV3PoolState,
    IRamsesV3PoolDerivedState,
    IRamsesV3PoolActions,
    IRamsesV3PoolOwnerActions,
    IRamsesV3PoolErrors,
    IRamsesV3PoolEvents
    {
    /// @notice if a new period, advance on interaction
    function _advancePeriod() external;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 6 of 56 : FixedPoint128.sol
    1
    2
    3
    4
    5
    6
    7
    8
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.4.0;
    /// @title FixedPoint128
    /// @notice A library for handling binary fixed point numbers, see https://en.wikipedia.org/wiki/Q_(number_format)
    library FixedPoint128 {
    uint256 internal constant Q128 = 0x100000000000000000000000000000000;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 7 of 56 : FullMath.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.26;
    /// @title Contains 512-bit math functions
    /// @notice Facilitates multiplication and division that can have overflow of an intermediate value without any loss of precision
    /// @dev Handles "phantom overflow" i.e., allows multiplication and division where an intermediate value overflows 256 bits
    library FullMath {
    /// @notice Calculates floor(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
    /// @param a The multiplicand
    /// @param b The multiplier
    /// @param denominator The divisor
    /// @return result The 256-bit result
    /// @dev Credit to Remco Bloemen under MIT license https://xn--2-umb.com/21/muldiv
    function mulDiv(uint256 a, uint256 b, uint256 denominator) internal pure returns (uint256 result) {
    unchecked {
    // 512-bit multiply [prod1 prod0] = a * b
    // Compute the product mod 2**256 and mod 2**256 - 1
    // then use the Chinese Remainder Theorem to reconstruct
    // the 512 bit result. The result is stored in two 256
    // variables such that product = prod1 * 2**256 + prod0
    uint256 prod0; // Least significant 256 bits of the product
    uint256 prod1; // Most significant 256 bits of the product
    assembly {
    let mm := mulmod(a, b, not(0))
    prod0 := mul(a, b)
    prod1 := sub(sub(mm, prod0), lt(mm, prod0))
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 8 of 56 : INonfungiblePositionManager.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.7.5;
    pragma abicoder v2;
    import {IPoolInitializer} from './IPoolInitializer.sol';
    import {IPeripheryPayments} from './IPeripheryPayments.sol';
    import {IPeripheryImmutableState} from './IPeripheryImmutableState.sol';
    import {PoolAddress} from '../libraries/PoolAddress.sol';
    import {IERC721} from '@openzeppelin/contracts/token/ERC721/IERC721.sol';
    import {IERC721Metadata} from '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
    import {IERC721Enumerable} from '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
    import {IPeripheryErrors} from './IPeripheryErrors.sol';
    /// @title Non-fungible token for positions
    /// @notice Wraps Uniswap V3 positions in a non-fungible token interface which allows for them to be transferred
    /// and authorized.
    interface INonfungiblePositionManager is
    IPeripheryErrors,
    IPoolInitializer,
    IPeripheryPayments,
    IPeripheryImmutableState,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 9 of 56 : INonfungibleTokenPositionDescriptor.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.5.0;
    import './INonfungiblePositionManager.sol';
    /// @title Describes position NFT tokens via URI
    interface INonfungibleTokenPositionDescriptor {
    /// @notice Produces the URI describing a particular token ID for a position manager
    /// @dev Note this URI may be a data: URI with the JSON contents directly inlined
    /// @param positionManager The position manager for which to describe the token
    /// @param tokenId The ID of the token for which to produce a description, which may not be valid
    /// @return The URI of the ERC721-compliant metadata
    function tokenURI(INonfungiblePositionManager positionManager, uint256 tokenId)
    external
    view
    returns (string memory);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 10 of 56 : PositionKey.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.5.0;
    library PositionKey {
    /// @dev Returns the key of the position in the core library
    function compute(address owner, uint256 index, int24 tickLower, int24 tickUpper) internal pure returns (bytes32) {
    return keccak256(abi.encodePacked(owner, index, tickLower, tickUpper));
    }
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 11 of 56 : PoolAddress.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.5.0;
    /// @title Provides functions for deriving a pool address from the deployer, tokens, and the fee
    library PoolAddress {
    bytes32 internal constant POOL_INIT_CODE_HASH = 0xc701ee63862761c31d620a4a083c61bdc1e81761e6b9c9267fd19afd22e0821d;
    /// @notice The identifying key of the pool
    struct PoolKey {
    address token0;
    address token1;
    int24 tickSpacing;
    }
    /// @notice Returns PoolKey: the ordered tokens with the matched fee levels
    /// @param tokenA The first token of a pool, unsorted
    /// @param tokenB The second token of a pool, unsorted
    /// @param tickSpacing The tickSpacing of the pool
    /// @return Poolkey The pool details with ordered token0 and token1 assignments
    function getPoolKey(address tokenA, address tokenB, int24 tickSpacing) internal pure returns (PoolKey memory) {
    if (tokenA > tokenB) (tokenA, tokenB) = (tokenB, tokenA);
    return PoolKey({token0: tokenA, token1: tokenB, tickSpacing: tickSpacing});
    }
    /// @notice Deterministically computes the pool address given the deployer and PoolKey
    /// @param deployer The Uniswap V3 deployer contract address
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 12 of 56 : LiquidityManagement.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity ^0.8.26;
    pragma abicoder v2;
    import '../../core/interfaces/IRamsesV3Factory.sol';
    import '../../core/interfaces/callback/IUniswapV3MintCallback.sol';
    import '../../core/libraries/TickMath.sol';
    import '../libraries/PoolAddress.sol';
    import '../libraries/CallbackValidation.sol';
    import '../libraries/LiquidityAmounts.sol';
    import './PeripheryPayments.sol';
    import './PeripheryImmutableState.sol';
    /// @title Liquidity management functions
    /// @notice Internal functions for safely managing liquidity in Ramses V3
    abstract contract LiquidityManagement is IUniswapV3MintCallback, PeripheryImmutableState, PeripheryPayments {
    error Slippage();
    struct MintCallbackData {
    PoolAddress.PoolKey poolKey;
    address payer;
    }
    /// @inheritdoc IUniswapV3MintCallback
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 13 of 56 : PeripheryImmutableState.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity ^0.8.26;
    import '../interfaces/IPeripheryImmutableState.sol';
    /// @title Immutable state
    /// @notice Immutable state used by periphery contracts
    abstract contract PeripheryImmutableState is IPeripheryImmutableState {
    /// @inheritdoc IPeripheryImmutableState
    address public immutable override deployer;
    /// @inheritdoc IPeripheryImmutableState
    address public immutable override WETH9;
    constructor(address _deployer, address _WETH9) {
    deployer = _deployer;
    WETH9 = _WETH9;
    }
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 14 of 56 : PeripheryValidation.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity ^0.8.26;
    import './BlockTimestamp.sol';
    abstract contract PeripheryValidation is BlockTimestamp {
    error Old();
    modifier checkDeadline(uint256 deadline) {
    if (_blockTimestamp() > deadline) revert Old();
    _;
    }
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 15 of 56 : PoolInitializer.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity ^0.8.26;
    import '../../core/interfaces/IRamsesV3Factory.sol';
    import '../../core/interfaces/IRamsesV3Pool.sol';
    import '../../core/interfaces/IRamsesV3PoolDeployer.sol';
    import './PeripheryImmutableState.sol';
    import '../interfaces/IPoolInitializer.sol';
    /// @title Creates and initializes V3 Pools
    abstract contract PoolInitializer is IPoolInitializer, PeripheryImmutableState {
    /// @inheritdoc IPoolInitializer
    function createAndInitializePoolIfNecessary(
    address token0,
    address token1,
    int24 tickSpacing,
    uint160 sqrtPriceX96
    ) external payable override returns (address pool) {
    require(token0 < token1);
    IRamsesV3Factory factory = IRamsesV3Factory(IRamsesV3PoolDeployer(deployer).RamsesV3Factory());
    pool = factory.getPool(token0, token1, tickSpacing);
    if (pool == address(0)) {
    pool = factory.createPool(token0, token1, tickSpacing, sqrtPriceX96);
    } else {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 16 of 56 : IGaugeV3.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: BUSL-1.1
    pragma solidity ^0.8.26;
    interface IGaugeV3 {
    error NOT_AUTHORIZED();
    error NOT_VOTER();
    error NOT_GT_ZERO(uint256 amt);
    error CANT_CLAIM_FUTURE();
    error RETRO();
    /// @notice Emitted when a reward notification is made.
    /// @param from The address from which the reward is notified.
    /// @param reward The address of the reward token.
    /// @param amount The amount of rewards notified.
    /// @param period The period for which the rewards are notified.
    event NotifyReward(
    address indexed from,
    address indexed reward,
    uint256 amount,
    uint256 period
    );
    /// @notice Emitted when a bribe is made.
    /// @param from The address from which the bribe is made.
    /// @param reward The address of the reward token.
    /// @param amount The amount of tokens bribed.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 17 of 56 : IVoter.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: BUSL-1.1
    pragma solidity ^0.8.26;
    pragma abicoder v2;
    interface IVoter {
    error ACTIVE_GAUGE(address gauge);
    error GAUGE_INACTIVE(address gauge);
    error ALREADY_WHITELISTED(address token);
    error NOT_AUTHORIZED(address caller);
    error NOT_WHITELISTED();
    error NOT_POOL();
    error NOT_INIT();
    error LENGTH_MISMATCH();
    error NO_GAUGE();
    error ALREADY_DISTRIBUTED(address gauge, uint256 period);
    error ZERO_VOTE(address pool);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 18 of 56 : IAccessHub.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.26;
    interface IAccessHub {
    error SAME_ADDRESS();
    error NOT_TIMELOCK(address);
    error MANUAL_EXECUTION_FAILURE(bytes);
    /// @dev Struct to hold initialization parameters
    struct InitParams {
    address timelock;
    address treasury;
    address voter;
    address minter;
    address launcherPlugin;
    address xShadow;
    address x33;
    address ramsesV3PoolFactory;
    address poolFactory;
    address clGaugeFactory;
    address gaugeFactory;
    address feeRecipientFactory;
    address feeDistributorFactory;
    address feeCollector;
    address voteModule;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 19 of 56 : IERC721.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721.sol)
    pragma solidity ^0.8.20;
    import {IERC165} from "../../utils/introspection/IERC165.sol";
    /**
    * @dev Required interface of an ERC-721 compliant contract.
    */
    interface IERC721 is IERC165 {
    /**
    * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
    */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
    /**
    * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
    */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
    /**
    * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
    */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 20 of 56 : IERC721Metadata.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)
    pragma solidity ^0.8.20;
    import {IERC721} from "../IERC721.sol";
    /**
    * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
    * @dev See https://eips.ethereum.org/EIPS/eip-721
    */
    interface IERC721Metadata is IERC721 {
    /**
    * @dev Returns the token collection name.
    */
    function name() external view returns (string memory);
    /**
    * @dev Returns the token collection symbol.
    */
    function symbol() external view returns (string memory);
    /**
    * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
    */
    function tokenURI(uint256 tokenId) external view returns (string memory);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 21 of 56 : ERC721Utils.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/utils/ERC721Utils.sol)
    pragma solidity ^0.8.20;
    import {IERC721Receiver} from "../IERC721Receiver.sol";
    import {IERC721Errors} from "../../../interfaces/draft-IERC6093.sol";
    /**
    * @dev Library that provide common ERC-721 utility functions.
    *
    * See https://eips.ethereum.org/EIPS/eip-721[ERC-721].
    *
    * _Available since v5.1._
    */
    library ERC721Utils {
    /**
    * @dev Performs an acceptance check for the provided `operator` by calling {IERC721-onERC721Received}
    * on the `to` address. The `operator` is generally the address that initiated the token transfer (i.e. `msg.sender`).
    *
    * The acceptance call is not executed and treated as a no-op if the target address doesn't contain code (i.e. an EOA).
    * Otherwise, the recipient must implement {IERC721Receiver-onERC721Received} and return the acceptance magic value to accept
    * the transfer.
    */
    function checkOnERC721Received(
    address operator,
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 22 of 56 : Context.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Provides information about the current execution context, including the
    * sender of the transaction and its data. While these are generally available
    * via msg.sender and msg.data, they should not be accessed in such a direct
    * manner, since when dealing with meta-transactions the account sending and
    * paying for execution may not be the actual sender (as far as an application
    * is concerned).
    *
    * This contract is only required for intermediate, library-like contracts.
    */
    abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
    return msg.sender;
    }
    function _msgData() internal view virtual returns (bytes calldata) {
    return msg.data;
    }
    function _contextSuffixLength() internal view virtual returns (uint256) {
    return 0;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 23 of 56 : Strings.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/Strings.sol)
    pragma solidity ^0.8.20;
    import {Math} from "./math/Math.sol";
    import {SignedMath} from "./math/SignedMath.sol";
    /**
    * @dev String operations.
    */
    library Strings {
    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;
    /**
    * @dev The `value` string doesn't fit in the specified `length`.
    */
    error StringsInsufficientHexLength(uint256 value, uint256 length);
    /**
    * @dev Converts a `uint256` to its ASCII `string` decimal representation.
    */
    function toString(uint256 value) internal pure returns (string memory) {
    unchecked {
    uint256 length = Math.log10(value) + 1;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 24 of 56 : ERC165.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol)
    pragma solidity ^0.8.20;
    import {IERC165} from "./IERC165.sol";
    /**
    * @dev Implementation of the {IERC165} interface.
    *
    * Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check
    * for the additional interface id that will be supported. For example:
    *
    * ```solidity
    * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
    * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
    * }
    * ```
    */
    abstract contract ERC165 is IERC165 {
    /**
    * @dev See {IERC165-supportsInterface}.
    */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
    return interfaceId == type(IERC165).interfaceId;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 25 of 56 : draft-IERC6093.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Standard ERC-20 Errors
    * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
    */
    interface IERC20Errors {
    /**
    * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
    * @param sender Address whose tokens are being transferred.
    * @param balance Current balance for the interacting account.
    * @param needed Minimum amount required to perform a transfer.
    */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
    /**
    * @dev Indicates a failure with the token `sender`. Used in transfers.
    * @param sender Address whose tokens are being transferred.
    */
    error ERC20InvalidSender(address sender);
    /**
    * @dev Indicates a failure with the token `receiver`. Used in transfers.
    * @param receiver Address to which tokens are being transferred.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 26 of 56 : IERC721Enumerable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol)
    pragma solidity ^0.8.20;
    import {IERC721} from "../IERC721.sol";
    /**
    * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
    * @dev See https://eips.ethereum.org/EIPS/eip-721
    */
    interface IERC721Enumerable is IERC721 {
    /**
    * @dev Returns the total amount of tokens stored by the contract.
    */
    function totalSupply() external view returns (uint256);
    /**
    * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
    * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
    */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
    /**
    * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
    * Use along with {totalSupply} to enumerate all tokens.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 27 of 56 : IMulticall.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.7.5;
    pragma abicoder v2;
    /// @title Multicall interface
    /// @notice Enables calling multiple methods in a single call to the contract
    interface IMulticall {
    /// @notice Call multiple functions in the current contract and return the data from all of them if they all succeed
    /// @dev The `msg.value` should not be trusted for any method callable from multicall.
    /// @param data The encoded function data for each of the calls to make to this contract
    /// @return results The results from each of the calls passed in via data
    function multicall(bytes[] calldata data) external payable returns (bytes[] memory results);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 28 of 56 : IRamsesV3PoolImmutables.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    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 IRamsesV3PoolImmutables {
    /// @notice The contract that deployed the pool, which must adhere to the IRamsesV3Factory 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.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 29 of 56 : IRamsesV3PoolState.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    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 IRamsesV3PoolState {
    /// @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
    /// @return 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.
    /// @return observationIndex The index of the last oracle observation that was written,
    /// @return observationCardinality The current maximum number of observations stored in the pool,
    /// @return observationCardinalityNext The next maximum number of observations, to be updated when the observation.
    /// @return 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,
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 30 of 56 : IRamsesV3PoolDerivedState.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    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 IRamsesV3PoolDerivedState {
    /// @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
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 31 of 56 : IRamsesV3PoolActions.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.5.0;
    /// @title Permissionless pool actions
    /// @notice Contains pool methods that can be called by anyone
    interface IRamsesV3PoolActions {
    /// @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 index The index 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,
    uint256 index,
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 32 of 56 : IRamsesV3PoolOwnerActions.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.5.0;
    /// @title Permissioned pool actions
    /// @notice Contains pool methods that may only be called by the factory owner
    interface IRamsesV3PoolOwnerActions {
    /// @notice Set the denominator of the protocol's % share of the fees
    function setFeeProtocol() 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);
    function setFee(uint24 _fee) external;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 33 of 56 : IRamsesV3PoolErrors.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.5.0;
    /// @title Errors emitted by a pool
    /// @notice Contains all events emitted by the pool
    interface IRamsesV3PoolErrors {
    error LOK();
    error TLU();
    error TLM();
    error TUM();
    error AI();
    error M0();
    error M1();
    error AS();
    error IIA();
    error L();
    error F0();
    error F1();
    error SPL();
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 34 of 56 : IRamsesV3PoolEvents.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.5.0;
    /// @title Events emitted by a pool
    /// @notice Contains all events emitted by the pool
    interface IRamsesV3PoolEvents {
    /// @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,
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 35 of 56 : IPoolInitializer.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.7.5;
    pragma abicoder v2;
    /// @title Creates and initializes V3 Pools
    /// @notice Provides a method for creating and initializing a pool, if necessary, for bundling with other methods that
    /// require the pool to exist.
    interface IPoolInitializer {
    /// @notice Creates a new pool if it does not exist, then initializes if not initialized
    /// @dev This method can be bundled with others via IMulticall for the first action (e.g. mint) performed against a pool
    /// @param token0 The contract address of token0 of the pool
    /// @param token1 The contract address of token1 of the pool
    /// @param tickSpacing The tickSpacing of the v3 pool for the specified token pair
    /// @param sqrtPriceX96 The initial square root price of the pool as a Q64.96 value
    /// @return pool Returns the pool address based on the pair of tokens and fee, will return the newly created pool address if necessary
    function createAndInitializePoolIfNecessary(
    address token0,
    address token1,
    int24 tickSpacing,
    uint160 sqrtPriceX96
    ) external payable returns (address pool);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 36 of 56 : IPeripheryPayments.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.7.5;
    /// @title Periphery Payments
    /// @notice Functions to ease deposits and withdrawals of ETH
    interface IPeripheryPayments {
    /// @notice Unwraps the contract's WETH9 balance and sends it to recipient as ETH.
    /// @dev The amountMinimum parameter prevents malicious contracts from stealing WETH9 from users.
    /// @param amountMinimum The minimum amount of WETH9 to unwrap
    /// @param recipient The address receiving ETH
    function unwrapWETH9(uint256 amountMinimum, address recipient) external payable;
    /// @notice Refunds any ETH balance held by this contract to the `msg.sender`
    /// @dev Useful for bundling with mint or increase liquidity that uses ether, or exact output swaps
    /// that use ether for the input amount
    function refundETH() external payable;
    /// @notice Transfers the full amount of a token held by this contract to recipient
    /// @dev The amountMinimum parameter prevents malicious contracts from stealing the token from users
    /// @param token The contract address of the token which will be transferred to `recipient`
    /// @param amountMinimum The minimum amount of token required for a transfer
    /// @param recipient The destination address of the token
    function sweepToken(
    address token,
    uint256 amountMinimum,
    address recipient
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 37 of 56 : IPeripheryImmutableState.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.5.0;
    /// @title Immutable state
    /// @notice Functions that return immutable state of the router
    interface IPeripheryImmutableState {
    /// @return Returns the address of the Uniswap V3 deployer
    function deployer() external view returns (address);
    /// @return Returns the address of WETH9
    function WETH9() external view returns (address);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 38 of 56 : IPeripheryErrors.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.5.0;
    /// @title Errors emitted by the NonFungiblePositionManager
    /// @notice Contains all events emitted by the NfpManager
    interface IPeripheryErrors {
    error InvalidTokenId(uint256 tokenId);
    error CheckSlippage();
    error NotCleared();
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 39 of 56 : IRamsesV3Factory.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.5.0;
    /// @title The interface for the Ramses V3 Factory
    /// @notice The Ramses V3 Factory facilitates creation of Ramses V3 pools and control over the protocol fees
    interface IRamsesV3Factory {
    error IT();
    /// @dev Fee Too Large
    error FTL();
    error A0();
    error F0();
    error PE();
    /// @notice Emitted when a pool is created
    /// @param token0 The first token of the pool by address sort order
    /// @param token1 The second token of the pool by address sort order
    /// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip
    /// @param tickSpacing The minimum number of ticks between initialized ticks
    /// @param pool The address of the created pool
    event PoolCreated(
    address indexed token0,
    address indexed token1,
    uint24 indexed fee,
    int24 tickSpacing,
    address pool
    );
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 40 of 56 : IUniswapV3MintCallback.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.5.0;
    /// @dev original UniswapV3 callbacks maintained to ensure seamless integrations
    /// @title Callback for IUniswapV3PoolActions#mint
    /// @notice Any contract that calls IUniswapV3PoolActions#mint must implement this interface
    interface IUniswapV3MintCallback {
    /// @notice Called to `msg.sender` after minting liquidity to a position from IUniswapV3Pool#mint.
    /// @dev In the implementation you must pay the pool tokens owed for the minted liquidity.
    /// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory.
    /// @param amount0Owed The amount of token0 due to the pool for the minted liquidity
    /// @param amount1Owed The amount of token1 due to the pool for the minted liquidity
    /// @param data Any data passed through by the caller via the IUniswapV3PoolActions#mint call
    function uniswapV3MintCallback(uint256 amount0Owed, uint256 amount1Owed, bytes calldata data) external;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 41 of 56 : TickMath.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity ^0.8.26;
    /// @title Math library for computing sqrt prices from ticks and vice versa
    /// @notice Computes sqrt price for ticks of size 1.0001, i.e. sqrt(1.0001^tick) as fixed point Q64.96 numbers. Supports
    /// prices between 2**-128 and 2**128
    library TickMath {
    error T();
    error R();
    /// @dev The minimum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**-128
    int24 internal constant MIN_TICK = -887272;
    /// @dev The maximum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**128
    int24 internal constant MAX_TICK = -MIN_TICK;
    /// @dev The minimum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MIN_TICK)
    uint160 internal constant MIN_SQRT_RATIO = 4295128739;
    /// @dev The maximum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MAX_TICK)
    uint160 internal constant MAX_SQRT_RATIO = 1461446703485210103287273052203988822378723970342;
    /// @notice Calculates sqrt(1.0001^tick) * 2^96
    /// @dev Throws if |tick| > max tick
    /// @param tick The input tick for the above formula
    /// @return sqrtPriceX96 A Fixed point Q64.96 number representing the sqrt of the ratio of the two assets (token1/token0)
    /// at the given tick
    function getSqrtRatioAtTick(int24 tick) internal pure returns (uint160 sqrtPriceX96) {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 42 of 56 : CallbackValidation.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity ^0.8.0;
    import '../../core/interfaces/IRamsesV3Pool.sol';
    import './PoolAddress.sol';
    /// @notice Provides validation for callbacks from Ramses V3 Pools
    library CallbackValidation {
    /// @notice Returns the address of a valid Ramses V3 Pool
    /// @param deployer The contract address of the Ramses V3 deployer
    /// @param tokenA The contract address of either token0 or token1
    /// @param tokenB The contract address of the other token
    /// @param tickSpacing The tickSpacing of the pool
    /// @return pool The V3 pool contract address
    function verifyCallback(
    address deployer,
    address tokenA,
    address tokenB,
    int24 tickSpacing
    ) internal view returns (IRamsesV3Pool pool) {
    return verifyCallback(deployer, PoolAddress.getPoolKey(tokenA, tokenB, tickSpacing));
    }
    /// @notice Returns the address of a valid Ramses V3 Pool
    /// @param deployer The contract address of the Ramses V3 deployer
    /// @param poolKey The identifying key of the V3 pool
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 43 of 56 : LiquidityAmounts.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.5.0;
    import '../../core/libraries/FullMath.sol';
    import '../../core/libraries/FixedPoint96.sol';
    /// @title Liquidity amount functions
    /// @notice Provides functions for computing liquidity amounts from token amounts and prices
    library LiquidityAmounts {
    /// @notice Downcasts uint256 to uint128
    /// @param x The uint258 to be downcasted
    /// @return y The passed value, downcasted to uint128
    function toUint128(uint256 x) private pure returns (uint128 y) {
    require((y = uint128(x)) == x);
    }
    /// @notice Computes the amount of liquidity received for a given amount of token0 and price range
    /// @dev Calculates amount0 * (sqrt(upper) * sqrt(lower)) / (sqrt(upper) - sqrt(lower))
    /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary
    /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary
    /// @param amount0 The amount0 being sent in
    /// @return liquidity The amount of returned liquidity
    function getLiquidityForAmount0(
    uint160 sqrtRatioAX96,
    uint160 sqrtRatioBX96,
    uint256 amount0
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 44 of 56 : PeripheryPayments.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.7.5;
    import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
    import '../interfaces/IPeripheryPayments.sol';
    import '../interfaces/external/IWETH9.sol';
    import '../libraries/TransferHelper.sol';
    import './PeripheryImmutableState.sol';
    abstract contract PeripheryPayments is IPeripheryPayments, PeripheryImmutableState {
    receive() external payable {
    require(msg.sender == WETH9, 'Not WETH9');
    }
    /// @inheritdoc IPeripheryPayments
    function unwrapWETH9(uint256 amountMinimum, address recipient) public payable override {
    uint256 balanceWETH9 = IWETH9(WETH9).balanceOf(address(this));
    require(balanceWETH9 >= amountMinimum, 'Insufficient WETH9');
    if (balanceWETH9 > 0) {
    IWETH9(WETH9).withdraw(balanceWETH9);
    TransferHelper.safeTransferETH(recipient, balanceWETH9);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 45 of 56 : BlockTimestamp.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity ^0.8.26;
    /// @title Function for getting block timestamp
    /// @dev Base contract that is overridden for tests
    abstract contract BlockTimestamp {
    /// @dev Method that exists purely to be overridden for tests
    /// @return The current block timestamp
    function _blockTimestamp() internal view virtual returns (uint256) {
    return block.timestamp;
    }
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 46 of 56 : IRamsesV3PoolDeployer.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.5.0;
    /// @title An interface for a contract that is capable of deploying Ramses V3 Pools
    /// @notice A contract that constructs a pool must implement this to pass arguments to the pool
    /// @dev This is used to avoid having constructor arguments in the pool contract, which results in the init code hash
    /// of the pool being constant allowing the CREATE2 address of the pool to be cheaply computed on-chain
    interface IRamsesV3PoolDeployer {
    /// @notice Get the parameters to be used in constructing the pool, set transiently during pool creation.
    /// @dev Called by the pool constructor to fetch the parameters of the pool
    /// Returns factory The factory address
    /// Returns token0 The first token of the pool by address sort order
    /// Returns token1 The second token of the pool by address sort order
    /// Returns fee The fee collected upon every swap in the pool, denominated in hundredths of a bip
    /// Returns tickSpacing The minimum number of ticks between initialized ticks
    function parameters()
    external
    view
    returns (address factory, address token0, address token1, uint24 fee, int24 tickSpacing);
    /// @dev Deploys a pool with the given parameters by transiently setting the parameters storage slot and then
    /// clearing it after deploying the pool.
    /// @param token0 The first token of the pool by address sort order
    /// @param token1 The second token of the pool by address sort order
    /// @param tickSpacing The tickSpacing of the pool
    function deploy(address token0, address token1, int24 tickSpacing) external returns (address pool);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 47 of 56 : IERC165.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Interface of the ERC-165 standard, as defined in the
    * https://eips.ethereum.org/EIPS/eip-165[ERC].
    *
    * Implementers can declare support of contract interfaces, which can then be
    * queried by others ({ERC165Checker}).
    *
    * For an implementation, see {ERC165}.
    */
    interface IERC165 {
    /**
    * @dev Returns true if this contract implements the interface defined by
    * `interfaceId`. See the corresponding
    * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]
    * to learn more about how these ids are created.
    *
    * This function call must use less than 30 000 gas.
    */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 48 of 56 : IERC721Receiver.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721Receiver.sol)
    pragma solidity ^0.8.20;
    /**
    * @title ERC-721 token receiver interface
    * @dev Interface for any contract that wants to support safeTransfers
    * from ERC-721 asset contracts.
    */
    interface IERC721Receiver {
    /**
    * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
    * by `operator` from `from`, this function is called.
    *
    * It must return its Solidity selector to confirm the token transfer.
    * If any other value is returned or the interface is not implemented by the recipient, the transfer will be
    * reverted.
    *
    * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
    */
    function onERC721Received(
    address operator,
    address from,
    uint256 tokenId,
    bytes calldata data
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 49 of 56 : Math.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/Math.sol)
    pragma solidity ^0.8.20;
    import {Panic} from "../Panic.sol";
    import {SafeCast} from "./SafeCast.sol";
    /**
    * @dev Standard math utilities missing in the Solidity language.
    */
    library Math {
    enum Rounding {
    Floor, // Toward negative infinity
    Ceil, // Toward positive infinity
    Trunc, // Toward zero
    Expand // Away from zero
    }
    /**
    * @dev Returns the addition of two unsigned integers, with an success flag (no overflow).
    */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
    unchecked {
    uint256 c = a + b;
    if (c < a) return (false, 0);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 50 of 56 : SignedMath.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)
    pragma solidity ^0.8.20;
    import {SafeCast} from "./SafeCast.sol";
    /**
    * @dev Standard signed math utilities missing in the Solidity language.
    */
    library SignedMath {
    /**
    * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.
    *
    * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.
    * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute
    * one branch when needed, making this function more expensive.
    */
    function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {
    unchecked {
    // branchless ternary works because:
    // b ^ (a ^ b) == a
    // b ^ 0 == b
    return b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));
    }
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 51 of 56 : FixedPoint96.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.4.0;
    /// @title FixedPoint96
    /// @notice A library for handling binary fixed point numbers, see https://en.wikipedia.org/wiki/Q_(number_format)
    /// @dev Used in SqrtPriceMath.sol
    library FixedPoint96 {
    uint8 internal constant RESOLUTION = 96;
    uint256 internal constant Q96 = 0x1000000000000000000000000;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 52 of 56 : IERC20.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Interface of the ERC-20 standard as defined in the ERC.
    */
    interface IERC20 {
    /**
    * @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);
    /**
    * @dev Returns the value of tokens in existence.
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 53 of 56 : IWETH9.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity ^0.8.26;
    import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
    /// @title Interface for WETH9
    interface IWETH9 is IERC20 {
    /// @notice Deposit ether to get wrapped ether
    function deposit() external payable;
    /// @notice Withdraw wrapped ether to get ether
    function withdraw(uint256) external;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 54 of 56 : TransferHelper.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.6.0;
    import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
    library TransferHelper {
    /// @notice Transfers tokens from the targeted address to the given destination
    /// @notice Errors with 'STF' if transfer fails
    /// @param token The contract address of the token to be transferred
    /// @param from The originating address from which the tokens will be transferred
    /// @param to The destination address of the transfer
    /// @param value The amount to be transferred
    function safeTransferFrom(
    address token,
    address from,
    address to,
    uint256 value
    ) internal {
    (bool success, bytes memory data) = token.call(
    abi.encodeWithSelector(IERC20.transferFrom.selector, from, to, value)
    );
    require(success && (data.length == 0 || abi.decode(data, (bool))), 'STF');
    }
    /// @notice Transfers tokens from msg.sender to a recipient
    /// @dev Errors with ST if transfer fails
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 55 of 56 : Panic.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Helper library for emitting standardized panic codes.
    *
    * ```solidity
    * contract Example {
    * using Panic for uint256;
    *
    * // Use any of the declared internal constants
    * function foo() { Panic.GENERIC.panic(); }
    *
    * // Alternatively
    * function foo() { Panic.panic(Panic.GENERIC); }
    * }
    * ```
    *
    * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].
    *
    * _Available since v5.1._
    */
    // slither-disable-next-line unused-state
    library Panic {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 56 of 56 : SafeCast.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)
    // This file was procedurally generated from scripts/generate/templates/SafeCast.js.
    pragma solidity ^0.8.20;
    /**
    * @dev Wrappers over Solidity's uintXX/intXX/bool 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.
    */
    library SafeCast {
    /**
    * @dev Value doesn't fit in an uint of `bits` size.
    */
    error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);
    /**
    * @dev An int value doesn't fit in an uint of `bits` size.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Settings
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    {
    "remappings": [
    "@openzeppelin-contracts-5.1.0/=dependencies/@openzeppelin-contracts-5.1.0/",
    "@openzeppelin-contracts-upgradeable-5.1.0/=dependencies/@openzeppelin-contracts-upgradeable-5.1.0/",
    "@forge-std-1.9.4/=dependencies/forge-std-1.9.4/",
    "@openzeppelin-contracts-upgradeable/=dependencies/@openzeppelin-contracts-upgradeable-5.1.0/",
    "@openzeppelin-contracts/contracts/=dependencies/@openzeppelin-contracts-5.1.0/",
    "@openzeppelin/contracts/=dependencies/@openzeppelin-contracts-5.1.0/",
    "forge-std/=dependencies/forge-std-1.9.4/src/",
    "permit2/=lib/permit2/",
    "@openzeppelin-3.4.2/=node_modules/@openzeppelin-3.4.2/",
    "@openzeppelin-contracts-5.1.0/=dependencies/@openzeppelin-contracts-5.1.0/",
    "@openzeppelin-contracts-upgradeable-5.1.0/=dependencies/@openzeppelin-contracts-upgradeable-5.1.0/",
    "@uniswap/=node_modules/@uniswap/",
    "base64-sol/=node_modules/base64-sol/",
    "eth-gas-reporter/=node_modules/eth-gas-reporter/",
    "forge-std-1.9.4/=dependencies/forge-std-1.9.4/src/",
    "hardhat/=node_modules/hardhat/",
    "solmate/=node_modules/solmate/"
    ],
    "optimizer": {
    "enabled": true,
    "runs": 2633
    },
    "metadata": {
    "useLiteralContent": false,
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Contract Security Audit

    Contract ABI

    [{"inputs":[{"internalType":"address","name":"_deployer","type":"address"},{"internalType":"address","name":"_WETH9","type":"address"},{"internalType":"address","name":"_tokenDescriptor_","type":"address"},{"internalType":"address","name":"_accessHub","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CheckSlippage","type":"error"},{"inputs":[],"name":"ERC721EnumerableForbiddenBatchMint","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"ERC721OutOfBoundsIndex","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"InvalidTokenId","type":"error"},{"inputs":[],"name":"NotCleared","type":"error"},{"inputs":[],"name":"Old","type":"error"},{"inputs":[],"name":"Slippage","type":"error"},{"inputs":[],"name":"T","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Collect","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint128","name":"liquidity","type":"uint128"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"DecreaseLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint128","name":"liquidity","type":"uint128"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"IncreaseLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"WETH9","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint128","name":"amount0Max","type":"uint128"},{"internalType":"uint128","name":"amount1Max","type":"uint128"}],"internalType":"struct INonfungiblePositionManager.CollectParams","name":"params","type":"tuple"}],"name":"collect","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"int24","name":"tickSpacing","type":"int24"},{"internalType":"uint160","name":"sqrtPriceX96","type":"uint160"}],"name":"createAndInitializePoolIfNecessary","outputs":[{"internalType":"address","name":"pool","type":"address"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint128","name":"liquidity","type":"uint128"},{"internalType":"uint256","name":"amount0Min","type":"uint256"},{"internalType":"uint256","name":"amount1Min","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"internalType":"struct INonfungiblePositionManager.DecreaseLiquidityParams","name":"params","type":"tuple"}],"name":"decreaseLiquidity","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address[]","name":"tokens","type":"address[]"}],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount0Desired","type":"uint256"},{"internalType":"uint256","name":"amount1Desired","type":"uint256"},{"internalType":"uint256","name":"amount0Min","type":"uint256"},{"internalType":"uint256","name":"amount1Min","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"internalType":"struct INonfungiblePositionManager.IncreaseLiquidityParams","name":"params","type":"tuple"}],"name":"increaseLiquidity","outputs":[{"internalType":"uint128","name":"liquidity","type":"uint128"},{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"int24","name":"tickSpacing","type":"int24"},{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint256","name":"amount0Desired","type":"uint256"},{"internalType":"uint256","name":"amount1Desired","type":"uint256"},{"internalType":"uint256","name":"amount0Min","type":"uint256"},{"internalType":"uint256","name":"amount1Min","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"internalType":"struct INonfungiblePositionManager.MintParams","name":"params","type":"tuple"}],"name":"mint","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint128","name":"liquidity","type":"uint128"},{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"positions","outputs":[{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"int24","name":"tickSpacing","type":"int24"},{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint128","name":"liquidity","type":"uint128"},{"internalType":"uint256","name":"feeGrowthInside0LastX128","type":"uint256"},{"internalType":"uint256","name":"feeGrowthInside1LastX128","type":"uint256"},{"internalType":"uint128","name":"tokensOwed0","type":"uint128"},{"internalType":"uint128","name":"tokensOwed1","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refundETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_voter","type":"address"}],"name":"setVoter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amountMinimum","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"sweepToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount0Owed","type":"uint256"},{"internalType":"uint256","name":"amount1Owed","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"uniswapV3MintCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountMinimum","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"unwrapWETH9","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

    610100604052346103ee57614e656080813803918261001d816103f2565b9384928339810103126103ee5761003381610417565b61003f60208301610417565b91610058606061005160408401610417565b9201610417565b9061006360406103f2565b93601785527f536861646f7720563320506f736974696f6e73204e4654000000000000000000602086015261009860406103f2565b600d81526c0534841444f572d56332d4e465609c1b602082015260809490945260a05283516001600160401b038111610302575f54600181811c911680156103e4575b60208210146102e457601f8111610382575b50602094601f8211600114610321579481929394955f92610316575b50508160011b915f199060031b1c1916175f555b82516001600160401b03811161030257600154600181811c911680156102f8575b60208210146102e457601f8111610281575b506020601f821160011461021e57819293945f92610213575b50508160011b915f199060031b1c1916176001555b760100000000000000000000000000000000000000000001600d5560c0526001600160a01b031660e052604051614a39908161042c82396080518181816106e501528181611d5a01528181611f36015281816122760152818161313d015261392f015260a051818181610fdf015281816110fa01528181613300015261408e015260c05181611c77015260e051816111710152f35b015190505f80610169565b601f1982169060015f52805f20915f5b81811061026957509583600195969710610251575b505050811b0160015561017e565b01515f1960f88460031b161c191690555f8080610243565b9192602060018192868b01518155019401920161022e565b60015f527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6601f830160051c810191602084106102da575b601f0160051c01905b8181106102cf5750610150565b5f81556001016102c2565b90915081906102b9565b634e487b7160e01b5f52602260045260245ffd5b90607f169061013e565b634e487b7160e01b5f52604160045260245ffd5b015190505f80610109565b601f198216955f8052805f20915f5b88811061036a57508360019596979810610352575b505050811b015f5561011d565b01515f1960f88460031b161c191690555f8080610345565b91926020600181928685015181550194019201610330565b5f80527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563601f830160051c810191602084106103da575b601f0160051c01905b8181106103cf57506100ed565b5f81556001016103c2565b90915081906103b9565b90607f16906100db565b5f80fd5b6040519190601f01601f191682016001600160401b0381118382101761030257604052565b51906001600160a01b03821682036103ee5756fe60806040526004361015610022575b3615610018575f80fd5b6100206132f6565b005b5f3560e01c806301ffc9a71461022157806306fdde031461021c578063081812fc14610217578063095ea7b3146102125780630c49ccbe1461020d57806312210e8a1461020857806318160ddd14610203578063219f5d17146101fe57806323b872dd146101f95780632f745c59146101f457806342842e0e146101ef57806342966c68146101ea57806349404b7c146101e55780634aa4a4fc146101e05780634bc2a657146101db5780634f6ccce7146101d65780636352211e146101d15780636d70c415146101cc57806370a08231146101c757806395d89b41146101c257806399fbab88146101bd578063a22cb465146101b8578063ac9650d8146101b3578063b88d4fde146101ae578063c87b56dd146101a9578063d3487997146101a4578063d5f394881461019f578063df2ab5bb1461019a578063e985e9c514610195578063f126fb6714610190578063f5f8d3651461018b5763fc6f78650361000e5761237c565b6121d0565b611ea5565b611e34565b611d7e565b611d3b565b611cd9565b611c18565b611b88565b6119dc565b611855565b61169e565b6115e9565b6115ba565b6112b9565b61128a565b61120b565b61111e565b6110db565b610f8e565b610eaa565b610e81565b610dee565b610dd7565b610a90565b610a73565b610a57565b610607565b6104db565b61048d565b61039d565b610254565b7fffffffff0000000000000000000000000000000000000000000000000000000081160361025057565b5f80fd5b34610250576020600319360112610250577fffffffff0000000000000000000000000000000000000000000000000000000060043561029281610226565b167f780e9d630000000000000000000000000000000000000000000000000000000081149081156102cc575b506040519015158152602090f35b7f80ac58cd00000000000000000000000000000000000000000000000000000000811491508115610330575b8115610306575b505f6102be565b7f01ffc9a7000000000000000000000000000000000000000000000000000000009150145f6102ff565b7f5b5e139f00000000000000000000000000000000000000000000000000000000811491506102f8565b5f91031261025057565b90601f19601f602080948051918291828752018686015e5f8582860101520116010190565b90602061039a928181520190610364565b90565b34610250575f600319360112610250576040515f5f548060011c9060018116908115610483575b60208310821461046f5782855260208501919081156104565750600114610406575b610402846103f681860382611b09565b60405191829182610389565b0390f35b5f8080529250907f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5635b818410610442575050016103f6826103e6565b80548484015260209093019260010161042f565b60ff191682525090151560051b0190506103f6826103e6565b634e487b7160e01b5f52602260045260245ffd5b91607f16916103c4565b34610250576020600319360112610250576004356104aa8161336c565b505f52600460205260206001600160a01b0360405f205416604051908152f35b6001600160a01b0381160361025057565b34610250576040600319360112610250576004356104f8816104ca565b602435906105058261336c565b331515806105f4575b806105b4575b610588578261002093610560926001600160a01b0380861691167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9255f80a45f52600460205260405f2090565b906001600160a01b031673ffffffffffffffffffffffffffffffffffffffff19825416179055565b7fa9fbf51f000000000000000000000000000000000000000000000000000000005f523360045260245ffd5b5060ff6105ec336105d6846001600160a01b03165f52600560205260405f2090565b906001600160a01b03165f5260205260405f2090565b541615610514565b50336001600160a01b038216141561050e565b60a060031936011261025057600435805f526002602052610637816001600160a01b0360405f20541633906133b8565b6084354211610a2f5761065b6001600160801b0361065361281e565b161515612842565b61066d815f52600c60205260405f2090565b80549161067a8360801c90565b9161069261068661281e565b6001600160801b031690565b926106a96001600160801b03821694851015612842565b610715610709806106e36106de69ffffffffffffffffffff8a165b69ffffffffffffffffffff165f52600b60205260405f2090565b612849565b7f00000000000000000000000000000000000000000000000000000000000000006134c2565b6001600160a01b031690565b60406107316107278860501c60020b90565b9760681c60020b90565b61073961281e565b82517f6847456a000000000000000000000000000000000000000000000000000000008152600481018890526002998a0b60248201529190980b60448201526001600160801b039097166064880152866084815f855af19485156109c0575f965f966109f8575b50604435871080156109ed575b6109c55760a0610818926107de86546107d66107cc8260501c60020b90565b9160681c60020b90565b90893061363a565b9060405180809681947f514ea4bf000000000000000000000000000000000000000000000000000000008352600483019190602083019252565b03915afa9182156109c0575f905f93610989575b506001850182815483039061084091613697565b6001600160801b03166001600160801b038a8116919091011660038701908154610870906001600160801b031690565b016001600160801b031681546fffffffffffffffffffffffffffffffff19166001600160801b03909116178155600287019384548603906108b091613697565b81546001600160801b038082169281168c82160116608091821c01901b6fffffffffffffffffffffffffffffffff191617905555556108ed61281e565b90036001600160801b031681546001600160801b031660809190911b6fffffffffffffffffffffffffffffffff1916179055818361092961281e565b60405192839261095392846040919493926001600160801b03606083019616825260208201520152565b037f26f6a048ee9138f2c0ce266f322cb99228e8d619ae2bff30c67f8dcf9d2377b491a260408051928352602083019190915290f35b90506109ae91925060a03d60a0116109b9575b6109a68183611b09565b8101906128a6565b50509291505f61082c565b503d61099c565b61289b565b7f0c971c7b000000000000000000000000000000000000000000000000000000005f5260045ffd5b5060643586106107ad565b909550610a1e91965060403d604011610a28575b610a168183611b09565b810190612885565b959095945f6107a0565b503d610a0c565b7fb8e3f2bf000000000000000000000000000000000000000000000000000000005f5260045ffd5b5f6003193601126102505747610a6957005b6100204733613833565b34610250575f600319360112610250576020600854604051908152f35b60c06003193601126102505760a4354211610a2f576001600160a01b03600435610ac2815f52600c60205260405f2090565b90610bae8254610ae16106de6106c48369ffffffffffffffffffff1690565b80516001600160a01b031691610b0f6040610b0660208501516001600160a01b031690565b93015160020b90565b90610b206107cc8260501c60020b90565b610b9260243591610b8860443594610b7160643597610b676084355b9a610b57610b48611b2c565b6001600160a01b03909e168e52565b6001600160a01b031660208d0152565b60020b60408b0152565b3060608a0152608089018b905260020b60a0890152565b60020b60c0870152565b60e08501526101008401526101208301526101408201526138f2565b93919590929460a0610c1b825496610be1610bcc8960501c60020b90565b610bd98a60681c60020b90565b90883061363a565b6040519586809481937f514ea4bf000000000000000000000000000000000000000000000000000000008352600483019190602083019252565b0392165afa80156109c05761040295610d1b935f905f93610d84575b50610c6061068660018601936001600160801b03610c59865486039260801c90565b1690613697565b91610caf610c8a6003870194610c7d86546001600160801b031690565b016001600160801b031690565b84906001600160801b03166fffffffffffffffffffffffffffffffff19825416179055565b610d0a6002860193610ce2610cd861068687548903610cd26106868c5460801c90565b90613697565b825460801c610c7d565b6001600160801b036fffffffffffffffffffffffffffffffff1983549260801b169116179055565b5555610ce286610c7d835460801c90565b604080516001600160801b0386168152602081018790529081018390527f3067048beee31b25b2f1681f88dac838c8bba36af25bfb2b7cf7473a5847e35f90606090a2604051938493846040919493926001600160801b03606083019616825260208201520152565b9050610da091925060a03d60a0116109b9576109a68183611b09565b50509291505f610c37565b600319606091011261025057600435610dc3816104ca565b90602435610dd0816104ca565b9060443590565b3461025057610020610de836610dab565b916128e5565b3461025057604060031936011261025057600435610e0b816104ca565b6001600160a01b0360243591610e2081612cbb565b831015610e5257165f52600660205260405f20905f5260205261040260405f2054604051918291829190602083019252565b7fa57d13dc000000000000000000000000000000000000000000000000000000005f521660045260245260445ffd5b3461025057610020610e9236610dab565b9060405192610ea2602085611b09565b5f8452612f43565b602060031936011261025057600435805f526002602052610eda816001600160a01b0360405f20541633906133b8565b805f52600c60205260405f20805460801c1590811591610f77575b8115610f5e575b50610f365780610f31610f1a610020935f52600c60205260405f2090565b60035f918281558260018201558260028201550155565b613b56565b7f92a032ca000000000000000000000000000000000000000000000000000000005f5260045ffd5b60030154610f6f915060801c610686565b15155f610efc565b60038101546001600160801b031615159150610ef5565b604060031936011261025057602435600435610fa9826104ca565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016929091602083602481875afa9283156109c0575f936110a6575b5061102690831015612a89565b8161102d57005b823b15610250575f60405180947f2e1a7d4d00000000000000000000000000000000000000000000000000000000825281838161107288600483019190602083019252565b03925af19283156109c0576100209361108c575b50613833565b8061109a5f6110a093611b09565b8061035a565b5f611086565b6110269193506110cd9060203d6020116110d4575b6110c58183611b09565b810190612a7a565b9290611019565b503d6110bb565b34610250575f6003193601126102505760206040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152f35b346102505760206003193601126102505760043561113b816104ca565b6040517fd33219b40000000000000000000000000000000000000000000000000000000081526020816004816001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000165afa80156109c0576001600160a01b03915f916111dc575b50163303610250576001600160a01b031673ffffffffffffffffffffffffffffffffffffffff19600e541617600e555f80f35b6111fe915060203d602011611204575b6111f68183611b09565b810190612ad4565b5f6111a9565b503d6111ec565b346102505760206003193601126102505760043560085481101561125b5760085f527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30154604051908152602090f35b7fa57d13dc000000000000000000000000000000000000000000000000000000005f525f60045260245260445ffd5b346102505760206003193601126102505760206112a860043561336c565b6001600160a01b0360405191168152f35b61016060031936011261025057610144354211610a2f5761141375ffffffffffffffffffffffffffffffffffffffffffff61130b600d5475ffffffffffffffffffffffffffffffffffffffffffff1690565b61135782600183011675ffffffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffff00000000000000000000000000000000000000000000600d541617600d55565b166113a4611363612afd565b61136b612b09565b611373612b22565b61137b612b2e565b611383612b3a565b610b9260a43591610b8860c43594610b7160e43597610b6761010435610b3c565b6113bb856113b6979597949394612b15565b613d1d565b60a06001600160a01b036113d86113d0612b2e565b6107d6612b3a565b921691604051809681927f514ea4bf000000000000000000000000000000000000000000000000000000008352600483019190602083019252565b0381845afa9384156109c05761040294611513925f925f9261158e575b5061148e9061143d612afd565b90611489611449612b09565b61147f611454612b22565b9161146f611460611b3e565b6001600160a01b039097168752565b6001600160a01b03166020860152565b60020b6040840152565b613f31565b916114d761149a612b2e565b6114cd6114a5612b3a565b916114c36114b1611b4d565b69ffffffffffffffffffff9098168852565b60020b6020870152565b60020b6040850152565b6001600160801b0389166060840152608083015260a08201525f60c08201525f60e082015261150e865f52600c60205260405f2090565b612b46565b837f3067048beee31b25b2f1681f88dac838c8bba36af25bfb2b7cf7473a5847e35f6040518061155f86868b846040919493926001600160801b03606083019616825260208201520152565b0390a260405194859485909493926001600160801b036060936080840197845216602083015260408201520152565b61148e93506115ad91925060a03d60a0116109b9576109a68183611b09565b5050939150929190611430565b346102505760206003193601126102505760206115e16004356115dc816104ca565b612cbb565b604051908152f35b34610250575f600319360112610250576040515f6001548060011c9060018116908115611694575b60208310821461046f578285526020850191908115610456575060011461164257610402846103f681860382611b09565b60015f9081529250907fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf65b818410611680575050016103f6826103e6565b80548484015260209093019260010161166d565b91607f1691611611565b34610250576020600319360112610250576004356116cc6116c7825f52600c60205260405f2090565b612d05565b9069ffffffffffffffffffff6116ec835169ffffffffffffffffffff1690565b1615611820575061170d6106de6106c4835169ffffffffffffffffffff1690565b9061040261172283516001600160a01b031690565b91611745604061173c60208701516001600160a01b031690565b95015160020b90565b90611754602082015160020b90565b604082015160020b60608301516001600160801b031660808401519160a08501519361179e60e061178f60c08901516001600160801b031690565b9701516001600160801b031690565b966040519a8b9a8b98969492909a99979593916101408a019b6001600160a01b03168a526001600160a01b031660208a015260020b604089015260020b606088015260020b60808701526001600160801b031660a086015260c085015260e08401526001600160801b03166101008301526001600160801b0316906101200152565b7fed15e6cf000000000000000000000000000000000000000000000000000000005f5260045260245ffd5b8015150361025057565b3461025057604060031936011261025057600435611872816104ca565b60243561187e8161184b565b6001600160a01b038216918215611902576118b590335f52600560205260405f20906001600160a01b03165f5260205260405f2090565b60ff1981541660ff831515161790557f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31604051806118fd339482919091602081019215159052565b0390a3005b827f5b08ba18000000000000000000000000000000000000000000000000000000005f5260045260245ffd5b9181601f840112156102505782359167ffffffffffffffff8311610250576020808501948460051b01011161025057565b602081016020825282518091526040820191602060408360051b8301019401925f915b83831061199157505050505090565b90919293946020806119cd837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc086600196030187528951610364565b97019301930191939290611982565b60206003193601126102505760043567ffffffffffffffff811161025057611a0890369060040161192e565b90611a1282612de3565b915f5b818110611a2a5760405180610402868261195f565b5f80611a37838587612e2b565b90611a4760405180938193612e90565b0390305af4611a54612e9d565b9015611a7a5790600191611a688287612f2f565b52611a738186612f2f565b5001611a15565b604481511061025057611a9c816024806004611ab49501518301019101612ecc565b60405191829162461bcd60e51b835260048301610389565b0390fd5b634e487b7160e01b5f52604160045260245ffd5b6060810190811067ffffffffffffffff821117611ae857604052565b611ab8565b6040810190811067ffffffffffffffff821117611ae857604052565b90601f601f19910116810190811067ffffffffffffffff821117611ae857604052565b60405190611b3c61016083611b09565b565b60405190611b3c606083611b09565b60405190611b3c61010083611b09565b60405190611b3c604083611b09565b67ffffffffffffffff8111611ae857601f01601f191660200190565b3461025057608060031936011261025057600435611ba5816104ca565b60243590611bb2826104ca565b6044356064359267ffffffffffffffff8411610250573660238501121561025057836004013592611be284611b6c565b93611bf06040519586611b09565b8085523660248288010111610250576020815f92602461002099018389013786010152612f43565b3461025057602060031936011261025057600435611c358161336c565b50604051907fe9dc637500000000000000000000000000000000000000000000000000000000825230600483015260248201525f816044816001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000165afa80156109c057610402915f91611cb7575b5060405191829182610389565b611cd391503d805f833e611ccb8183611b09565b810190612ecc565b5f611caa565b346102505760606003193601126102505760443560243560043567ffffffffffffffff831161025057366023840112156102505782600401359167ffffffffffffffff83116102505736602484860101116102505760246100209401916130bb565b34610250575f6003193601126102505760206040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152f35b606060031936011261025057600435611d96816104ca565b602435604435611da5816104ca565b604051917f70a082310000000000000000000000000000000000000000000000000000000083523060048401526020836024816001600160a01b0388165afa9283156109c0575f93611e0f575b50611dff908310156131ca565b81611e0657005b610020926141e2565b611dff919350611e2d9060203d6020116110d4576110c58183611b09565b9290611df2565b3461025057604060031936011261025057602060ff611e8e600435611e58816104ca565b6001600160a01b0360243591611e6d836104ca565b165f526005845260405f20906001600160a01b03165f5260205260405f2090565b54166040519015158152f35b8060020b0361025057565b608060031936011261025057600435611ebd816104ca565b60243590611eca826104ca565b604435611ed681611e9a565b60643592611ee3846104ca565b611f006001600160a01b0382166001600160a01b03851610612842565b6040517f9f38f7400000000000000000000000000000000000000000000000000000000081526020816004816001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000165afa80156109c0576001600160a01b03915f916121b1575b506040517f28af8d0b0000000000000000000000000000000000000000000000000000000081526001600160a01b03868116600483015284166024820152600285900b604482015291169190602081606481865afa9081156109c0575f91612192575b506001600160a01b038116806120905750506040517f232aa5ac0000000000000000000000000000000000000000000000000000000081526001600160a01b039485166004820152908416602482015260029290920b604483015292909116606482015290602090829060849082905f905af180156109c057610402915f91612071575b505b6040516001600160a01b0390911681529081906020820190565b61208a915060203d602011611204576111f68183611b09565b5f612055565b9350935050506040517f3850c7bd00000000000000000000000000000000000000000000000000000000815260e081600481855afa80156109c0576001600160a01b03915f9161215d575b5016156120ee575b506104029150612057565b803b15610250576040517ff637731d0000000000000000000000000000000000000000000000000000000081526001600160a01b039390931660048401525f908390602490829084905af19182156109c05761040292156120e3578061109a5f61215793611b09565b5f6120e3565b61217f915060e03d60e01161218b575b6121778183611b09565b810190613224565b5050505050505f6120db565b503d61216d565b6121ab915060203d602011611204576111f68183611b09565b5f611fd1565b6121ca915060203d602011611204576111f68183611b09565b5f611f6e565b346102505760406003193601126102505760043560243567ffffffffffffffff81116102505761220490369060040161192e565b825f939293526002602052612228826001600160a01b0360405f20541633906133b8565b6122df60206122586106de6106c4612248875f52600c60205260405f2090565b5469ffffffffffffffffffff1690565b61229a612273610709610709600e546001600160a01b031690565b917f00000000000000000000000000000000000000000000000000000000000000006134c2565b9060405180809581947f2045be90000000000000000000000000000000000000000000000000000000008352600483019190916001600160a01b036020820193169052565b03915afa80156109c0576001600160a01b03915f9161235d575b5016803b156102505761233f935f8094604051968795869485937fa7852afa0000000000000000000000000000000000000000000000000000000085526004850161328f565b03925af180156109c05761234f57005b8061109a5f61002093611b09565b612376915060203d602011611204576111f68183611b09565b5f6122f9565b608060031936011261025057600435805f5260026020526123ac816001600160a01b0360405f20541633906133b8565b6001600160801b036123bc61282a565b16158015906127f5575b6123cf90612842565b6001600160a01b036123df612b09565b166127e857305b6123f8825f52600c60205260405f2090565b9182549161241b6107096106e36106de6106c48769ffffffffffffffffffff1690565b90600385019485549561243e612437886001600160801b031690565b9760801c90565b87819761244e6106868260801c90565b612671575b50505061245e61282a565b6001600160801b0388811691161115612661578687945b61247d612836565b6001600160801b03898116911611156126535787935b546124a18160501c60020b90565b6040517fa02f10690000000000000000000000000000000000000000000000000000000081526001600160a01b038881166004830152602482018b9052600292830b604483015260689390931c90910b60648201526001600160801b039a8b16608482015299851660a48b0152168860c4815a6040945f91f19687156109c0575f985f9861260c575b50836125bd87946001600160801b03809c996104029b9996612598837f40d0efd1a53d60ecbf40971b9daf7dc90178c3aadc7aab1765632738fa8b8f019b6125f099031685906001600160801b036fffffffffffffffffffffffffffffffff1983549260801b169116179055565b03166001600160801b03166fffffffffffffffffffffffffffffffff19825416179055565b604051938493849160409194936001600160801b0380926001600160a01b03606087019816865216602085015216910152565b0390a26040805191851682529290931660208401528291820190565b8697959294969399508691985060403d60401161264c575b61262e8183611b09565b8101612639916132dd565b969096989194929597509892959861252a565b503d612624565b61265b612836565b93612493565b61266961282a565b968794612475565b9097506126e691985060406001600160a01b038716916126976107cc8260501c60020b90565b82517f6847456a000000000000000000000000000000000000000000000000000000008152600481018b9052600292830b6024820152910b60448201525f606482015292839081906084820190565b03815f855af19182156109c057612727926127ca575b5060a08454916107de6127128460501c60020b90565b61271f8560681c60020b90565b908b3061363a565b03915afa9182156109c05761275d985f915f94612799575b5061276e61278e91610c7d61068660018a019d8e5487039760801c90565b966001600160801b03881690613697565b9a610c7d6106866002890195610cd287548903916001600160801b031690565b9855555f8080612453565b61278e91945061276e92506127bc9060a03d60a0116109b9576109a68183611b09565b50509391509294915061273f565b6127e29060403d604011610a2857610a168183611b09565b506126fc565b6127f0612b09565b6123e6565b506123cf612804610686612836565b151590506123c6565b6001600160801b0381160361025057565b60243561039a8161280d565b60443561039a8161280d565b60643561039a8161280d565b1561025057565b9060405161285681611acc565b6040600182946001600160a01b03815416845201546001600160a01b038116602084015260a01c60020b910152565b9190826040910312610250576020825192015190565b6040513d5f823e3d90fd5b908160a09103126102505780516128bc8161280d565b91602082015191604081015191608060608301516128d98161280d565b92015161039a8161280d565b91906001600160a01b038116928315612a4e576001600160a01b0391835f52600260205261291e60405f206001600160a01b0390541690565b9033612a3e575b848483169687158015612a0e575b61294e846001600160a01b03165f52600360205260405f2090565b6001815401905561296b84610560855f52600260205260405f2090565b82828a7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4156129f8576129a08261494f565b87036129e8575b505050168083036129b757505050565b7f64283d7b000000000000000000000000000000000000000000000000000000005f5260045260245260445260645ffd5b6129f1916149ab565b5f846129a7565b8781146129a057612a0982856148cb565b6129a0565b612a17836142c6565b612a32856001600160a01b03165f52600360205260405f2090565b80545f19019055612933565b612a498533846133b8565b612925565b7f64a0ae92000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b90816020910312610250575190565b15612a9057565b606460405162461bcd60e51b815260206004820152601260248201527f496e73756666696369656e7420574554483900000000000000000000000000006044820152fd5b90816020910312610250575161039a816104ca565b634e487b7160e01b5f52603260045260245ffd5b60043561039a816104ca565b60243561039a816104ca565b6101243561039a816104ca565b60443561039a81611e9a565b60643561039a81611e9a565b60843561039a81611e9a565b90610ce260e06003611b3c94612b8569ffffffffffffffffffff865116829069ffffffffffffffffffff1669ffffffffffffffffffff19825416179055565b602085015160020b7fffffffffffffffffffffffffffffffffffffff000000ffffffffffffffffffff82549160501b6cffffff00000000000000000000169116178155612c1b612bd9604087015160020b90565b82907fffffffffffffffffffffffffffffffff000000ffffffffffffffffffffffffff82549160681b6fffffff00000000000000000000000000169116179055565b612c5b612c3260608701516001600160801b031690565b82546001600160801b031660809190911b6fffffffffffffffffffffffffffffffff1916178255565b6080850151600182015560a085015160028201550192612cad612c8860c08301516001600160801b031690565b85906001600160801b03166fffffffffffffffffffffffffffffffff19825416179055565b01516001600160801b031690565b6001600160a01b03168015612cd9575f52600360205260405f205490565b7f89c62b64000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b9060405161010081019080821067ffffffffffffffff831117611ae857611b3c9160405260e0612dbd60038396612d93612d83825469ffffffffffffffffffff81168852612d63612d598260501c60020b90565b60020b60208a0152565b612d7d612d738260681c60020b90565b60020b60408a0152565b60801c90565b6001600160801b03166060870152565b60018101546080860152600281015460a086015201546001600160801b03811660c0850152612d7d565b6001600160801b0316910152565b67ffffffffffffffff8111611ae85760051b60200190565b90612ded82612dcb565b612dfa6040519182611b09565b828152601f19612e0a8294612dcb565b01905f5b828110612e1a57505050565b806060602080938501015201612e0e565b9190811015612e8b5760051b810135907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18136030182121561025057019081359167ffffffffffffffff8311610250576020018236038113610250579190565b612ae9565b908092918237015f815290565b3d15612ec7573d90612eae82611b6c565b91612ebc6040519384611b09565b82523d5f602084013e565b606090565b6020818303126102505780519067ffffffffffffffff8211610250570181601f8201121561025057805190612f0082611b6c565b92612f0e6040519485611b09565b8284526020838301011161025057815f9260208093018386015e8301015290565b8051821015612e8b5760209160051b010190565b909291612f518185846128e5565b833b612f5e575b50505050565b602091612f9960405194859384937f150b7a020000000000000000000000000000000000000000000000000000000085523360048601614021565b03815f6001600160a01b0387165af15f918161308a575b506130035750612fbe612e9d565b8051919082612ffc577f64a0ae92000000000000000000000000000000000000000000000000000000005f526001600160a01b03821660045260245ffd5b9050602001fd5b7fffffffff000000000000000000000000000000000000000000000000000000007f150b7a020000000000000000000000000000000000000000000000000000000091160361305657505f808080612f58565b7f64a0ae92000000000000000000000000000000000000000000000000000000005f526001600160a01b031660045260245ffd5b6130ad91925060203d6020116130b4575b6130a58183611b09565b81019061400c565b905f612fb0565b503d61309b565b92918091928101039260808412610250576060604051946130db86611aed565b12610250576131616060604051936130f285611acc565b80356130fd816104ca565b8552602081013561310d816104ca565b6020860152604081013561312081611e9a565b6040860152848752013592613134846104ca565b602086019384527f000000000000000000000000000000000000000000000000000000000000000061404f565b50806131a3575b508161317357505050565b61319c61318e6020611b3c955101516001600160a01b031690565b91516001600160a01b031690565b3391614081565b8351516131c491906001600160a01b031683516001600160a01b031661319c565b5f613168565b156131d157565b606460405162461bcd60e51b815260206004820152601260248201527f496e73756666696369656e7420746f6b656e00000000000000000000000000006044820152fd5b519061ffff8216820361025057565b908160e091031261025057805161323a816104ca565b91602082015161324981611e9a565b9161325660408201613215565b9161326360608301613215565b9161327060808201613215565b9160a082015160ff811681036102505760c09092015161039a8161184b565b9081526040602082018190528101839052606001915f5b8181106132b35750505090565b9091926020806001926001600160a01b0387356132cf816104ca565b1681520194019291016132a6565b919082604091031261025057602082516128d98161280d565b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016330361332857565b606460405162461bcd60e51b815260206004820152600960248201527f4e6f7420574554483900000000000000000000000000000000000000000000006044820152fd5b805f5260026020526001600160a01b0360405f20541690811561338d575090565b7f7e273289000000000000000000000000000000000000000000000000000000005f5260045260245ffd5b9190916133d66001600160a01b038416801515908161345057501590565b6133df57505050565b6001600160a01b0316613417577f7e273289000000000000000000000000000000000000000000000000000000005f5260045260245ffd5b7f177e802f000000000000000000000000000000000000000000000000000000005f526001600160a01b0390911660045260245260445ffd5b6001600160a01b0384168082149250821561348f575b50811561347257501590565b9050835f5260046020526001600160a01b0360405f205416141590565b9091505f52600560205260ff6134b98660405f20906001600160a01b03165f5260205260405f2090565b5416905f613466565b906001600160a01b038151169160208201926001600160a01b0384511611156135f6576135496135e761039a948461355761351d6040610b0661350f6107099a516001600160a01b031690565b95516001600160a01b031690565b604080516001600160a01b0395861660208201908152959094169084015260020b606083015281608081015b03601f198101835282611b09565b51902060405192839160208301958690917fffffffffffffffffffffffffffffffffffffffff0000000000000000000000006055937fff00000000000000000000000000000000000000000000000000000000000000845260601b16600183015260158201527fc701ee63862761c31d620a4a083c61bdc1e81761e6b9c9267fd19afd22e0821d60358201520190565b5190206001600160a01b031690565b606460405162461bcd60e51b815260206004820152600b60248201527f21546f6b656e4f726465720000000000000000000000000000000000000000006044820152fd5b929091604051927fffffffffffffffffffffffffffffffffffffffff000000000000000000000000602085019560601b168552603484015260e81b605483015260e81b6057820152603a8152613691605a82611b09565b51902090565b5f1982820990828102928380841093039280840393146136f05782700100000000000000000000000000000000111561025057700100000000000000000000000000000000910990828211900360801b910360801c1790565b50505060801c90565b5f196c010000000000000000000000008209918160601b9182808510940393808503941461378e576c01000000000000000000000000829161373c868411612842565b0981805f03168092046002816003021880820260020302808202600203028082026002030280820260020302808202600203028091026002030293600183805f03040190848311900302920304170290565b50915061379c821515612842565b0490565b5f1982820990828102928380841093039280840393146137f157826c010000000000000000000000001115610250576c01000000000000000000000000910990828211900360a01b910360601c1790565b50505060601c90565b90915f1983830992808302928380861095039480860395146138245790829161373c868411612842565b5050915061379c821515612842565b5f9190829160405190613847602083611b09565b83825260208201915f36843751925af161385f612e9d565b501561386757565b606460405162461bcd60e51b815260206004820152600360248201527f53544500000000000000000000000000000000000000000000000000000000006044820152fd5b929360c0946001600160801b03936001600160a01b0361039a999894168652602086015260020b604085015260020b60608401521660808201528160a08201520190610364565b80516001600160a01b03169061392661391560208301516001600160a01b031690565b61147f611454604085015160020b90565b613953610709837f00000000000000000000000000000000000000000000000000000000000000006134c2565b6001600160a01b038116936040517f3850c7bd00000000000000000000000000000000000000000000000000000000815260e081600481895afa80156109c0576040915f91613b31575b5060a08501966139df6139b96139b48a5160020b90565b614315565b9260c08801936139cd6139b4865160020b90565b60e08a0151916101008b0151936146c9565b975f87613aa5613549613a6f613a1a613a126080613a0760608801516001600160a01b031690565b960151975160020b90565b985160020b90565b9c613a23611b5d565b90815233602082015289519283916020830191909160606001600160a01b03602060808401956040815184815116875284848201511684880152015160020b6040860152015116910152565b8c88519c8d98899788967f8221b8c1000000000000000000000000000000000000000000000000000000008852600488016138ab565b03925af19283156109c0575f945f94613b0a575b50838561012083015111918215613afb575b5050613ad357565b7f7dd37f70000000000000000000000000000000000000000000000000000000005f5260045ffd5b61014001511190505f80613acb565b909350613b2791945060403d604011610a2857610a168183611b09565b939093925f613ab9565b613b4a915060e03d60e01161218b576121778183611b09565b5050505050505f61399d565b805f5260026020526001600160a01b0360405f205416801590811580613ced575b613b89845f52600260205260405f2090565b73ffffffffffffffffffffffffffffffffffffffff198154169055835f837fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8280a48215613cd95750613bdb8361494f565b6008545f19810190808211613cd457845f5260096020528060405f2054921015612e8b5760085f527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee281015490821015612e8b577ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee382018190555f908152600960205260409020555f838152600960205260408120556008548015613cc0575f19810190600854821015612e8b5760085f8181527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee290920191909155555061338d5750565b634e487b7160e01b5f52603160045260245ffd5b613e5c565b15613bdb57613ce883826148cb565b613bdb565b613cf6846142c6565b613d11826001600160a01b03165f52600360205260405f2090565b80545f19019055613b77565b906001600160a01b038216918215612a4e575f828152600260205260409020546001600160a01b0316916001600160a01b0383169384159485159586613e2c575b613d79856001600160a01b03165f52600360205260405f2090565b60018154019055613d9685610560865f52600260205260405f2090565b8383837fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a415613e1657613dcb8361494f565b03613e06575b505050613dda57565b7f73c6ac6e000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b613e0f916149ab565b5f80613dd1565b808214613dcb57613e2783866148cb565b613dcb565b613e35846142c6565b613e50866001600160a01b03165f52600360205260405f2090565b80545f19019055613d5e565b634e487b7160e01b5f52601160045260245ffd5b6001604091613eac6001600160a01b0385511682906001600160a01b031673ffffffffffffffffffffffffffffffffffffffff19825416179055565b0191613ee86001600160a01b0360208301511684906001600160a01b031673ffffffffffffffffffffffffffffffffffffffff19825416179055565b01517fffffffffffffffffff000000ffffffffffffffffffffffffffffffffffffffff82549160a01b76ffffff0000000000000000000000000000000000000000169116179055565b9190916001600160a01b0381165f52600a60205269ffffffffffffffffffff60405f205416928315613f61575050565b909250600d54908160b01c9169ffffffffffffffffffff8314613cd457826140079175ffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffff000000000000000000000000000000000000000000006001611b3c970160b01b16911617600d556001600160a01b038196165f52600a6020526106c48160405f209069ffffffffffffffffffff1669ffffffffffffffffffff19825416179055565b613e70565b90816020910312610250575161039a81610226565b90926001600160a01b036080938161039a979616845216602083015260408201528160608201520190610364565b6001600160a01b0391614061916134c2565b169081330361025057565b90816020910312610250575161039a8161184b565b9290926001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001693846001600160a01b03831614806141d8575b156141af575050823b1561025057604051927fd0e30db00000000000000000000000000000000000000000000000000000000084525f8460048185855af19283156109c05761415f9460209461419b575b505f6040518096819582947fa9059cbb00000000000000000000000000000000000000000000000000000000845260048401602090939291936001600160a01b0360408201951681520152565b03925af180156109c0576141705750565b6141919060203d602011614194575b6141898183611b09565b81019061406c565b50565b503d61417f565b8061109a5f6141a993611b09565b5f614112565b9093509091906001600160a01b03811630036141cf5750611b3c926141e2565b611b3c93614769565b50824710156140c1565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000602082019081526001600160a01b03909316602482015260448101939093525f9283929083906142398160648101613549565b51925af1614245612e9d565b81614297575b501561425357565b606460405162461bcd60e51b815260206004820152600260248201527f53540000000000000000000000000000000000000000000000000000000000006044820152fd5b80518015925082156142ac575b50505f61424b565b6142bf925060208091830101910161406c565b5f806142a4565b6142d8905f52600460205260405f2090565b805473ffffffffffffffffffffffffffffffffffffffff19169055565b8015614301575f190490565b634e487b7160e01b5f52601260045260245ffd5b60020b5f8112156146c357805f035b620d89e8811161469b576001600160a01b039160018216156146725770ffffffffffffffffffffffffffffffffff6ffffcb933bd6fad37aa2d162d1a5940015b169160028116614656575b6004811661463a575b6008811661461e575b60108116614602575b602081166145e6575b604081166145ca575b608081166145ae575b6101008116614592575b6102008116614576575b610400811661455a575b610800811661453e575b6110008116614522575b6120008116614506575b61400081166144ea575b61800081166144ce575b6201000081166144b2575b620200008116614497575b62040000811661447c575b6208000016614463575b5f12614455575b61443e6144348260201c90565b9163ffffffff1690565b61444c5760ff5f5b16011690565b60ff6001614446565b61445e906142f5565b614427565b6b048a170391f7dc42444e8fa290910260801c90614420565b6d2216e584f5fa1ea926041bedfe9890920260801c91614416565b916e5d6af8dedb81196699c329225ee6040260801c9161440b565b916f09aa508b5b7a84e1c677de54f3e99bc90260801c91614400565b916f31be135f97d08fd981231505542fcfa60260801c916143f5565b916f70d869a156d2a1b890bb3df62baf32f70260801c916143eb565b916fa9f746462d870fdf8a65dc1f90e061e50260801c916143e1565b916fd097f3bdfd2022b8845ad8f792aa58250260801c916143d7565b916fe7159475a2c29b7443b29c7fa6e889d90260801c916143cd565b916ff3392b0822b70005940c7a398e4b70f30260801c916143c3565b916ff987a7253ac413176f2b074cf7815e540260801c916143b9565b916ffcbe86c7900a88aedcffc83b479aa3a40260801c916143af565b916ffe5dee046a99a2a811c461f1969c30530260801c916143a5565b916fff2ea16466c96a3843ec78b326b528610260801c9161439c565b916fff973b41fa98c081472e6896dfb254c00260801c91614393565b916fffcb9843d60f6159c9db58835c9266440260801c9161438a565b916fffe5caca7e10e4e61c3624eaa0941cd00260801c91614381565b916ffff2e50f5f656932ef12357cf3c7fdcc0260801c91614378565b916ffff97272373d413259a46990580e213a0260801c9161436f565b70ffffffffffffffffffffffffffffffffff700100000000000000000000000000000000614364565b7f2bc80f3a000000000000000000000000000000000000000000000000000000005f5260045ffd5b80614324565b936001600160a01b0383166001600160a01b03831611614761575b6001600160a01b0385811695908316861161470557505061039a9350614882565b92909391946001600160a01b038216115f1461475557829161472b916147319594614882565b93614852565b6001600160801b0381166001600160801b038316105f14614750575090565b905090565b91505061039a92614852565b9091906146e4565b905f80949381946001600160a01b03604051928160208501967f23b872dd0000000000000000000000000000000000000000000000000000000088521660248501521660448301526064820152606481526147c5608482611b09565b51925af16147d1612e9d565b81614823575b50156147df57565b606460405162461bcd60e51b815260206004820152600360248201527f53544600000000000000000000000000000000000000000000000000000000006044820152fd5b8051801592508215614838575b50505f6147d7565b61484b925060208091830101910161406c565b5f80614830565b916001600160a01b0361039a93614877938281168383161161487c575b0316906136f9565b6149ef565b9061486f565b916148779161039a936001600160a01b0382166001600160a01b038216116148c5575b6001600160a01b03906148bc8284168383166137a0565b920316916137fa565b906148a5565b5f91614921916148da81612cbb565b9180855260076020526001600160a01b0360408620549216855260066020526040852091838103614924575b5084526007602052836040812055905f5260205260405f2090565b55565b838652826020526040862054818752836020528060408820558652600760205260408620555f614906565b600854815f5260096020528060405f205568010000000000000000811015611ae85760018101600855600854811015612e8b5760085f527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b906149b582612cbb565b5f19810192908311613cd4576001600160a01b03165f52600660205260405f20825f526020528060405f20555f52600760205260405f2055565b906001600160801b0382169182036102505756fea26469706673582212208ee5ed08961e15a268fd3a2c0f76b94f10be796dfc0cad22ffdf71c5f870db4a64736f6c634300081c00330000000000000000000000008bbdc15759a8ecf99a92e004e0c64ea9a5142d59000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38000000000000000000000000fe3244e2f3a672d5287dc5c98be60434802d8c4b0000000000000000000000005e7a9eea6988063a4dbb9ccddb3e04c923e8e37f

    Deployed Bytecode

    0x60806040526004361015610022575b3615610018575f80fd5b6100206132f6565b005b5f3560e01c806301ffc9a71461022157806306fdde031461021c578063081812fc14610217578063095ea7b3146102125780630c49ccbe1461020d57806312210e8a1461020857806318160ddd14610203578063219f5d17146101fe57806323b872dd146101f95780632f745c59146101f457806342842e0e146101ef57806342966c68146101ea57806349404b7c146101e55780634aa4a4fc146101e05780634bc2a657146101db5780634f6ccce7146101d65780636352211e146101d15780636d70c415146101cc57806370a08231146101c757806395d89b41146101c257806399fbab88146101bd578063a22cb465146101b8578063ac9650d8146101b3578063b88d4fde146101ae578063c87b56dd146101a9578063d3487997146101a4578063d5f394881461019f578063df2ab5bb1461019a578063e985e9c514610195578063f126fb6714610190578063f5f8d3651461018b5763fc6f78650361000e5761237c565b6121d0565b611ea5565b611e34565b611d7e565b611d3b565b611cd9565b611c18565b611b88565b6119dc565b611855565b61169e565b6115e9565b6115ba565b6112b9565b61128a565b61120b565b61111e565b6110db565b610f8e565b610eaa565b610e81565b610dee565b610dd7565b610a90565b610a73565b610a57565b610607565b6104db565b61048d565b61039d565b610254565b7fffffffff0000000000000000000000000000000000000000000000000000000081160361025057565b5f80fd5b34610250576020600319360112610250577fffffffff0000000000000000000000000000000000000000000000000000000060043561029281610226565b167f780e9d630000000000000000000000000000000000000000000000000000000081149081156102cc575b506040519015158152602090f35b7f80ac58cd00000000000000000000000000000000000000000000000000000000811491508115610330575b8115610306575b505f6102be565b7f01ffc9a7000000000000000000000000000000000000000000000000000000009150145f6102ff565b7f5b5e139f00000000000000000000000000000000000000000000000000000000811491506102f8565b5f91031261025057565b90601f19601f602080948051918291828752018686015e5f8582860101520116010190565b90602061039a928181520190610364565b90565b34610250575f600319360112610250576040515f5f548060011c9060018116908115610483575b60208310821461046f5782855260208501919081156104565750600114610406575b610402846103f681860382611b09565b60405191829182610389565b0390f35b5f8080529250907f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5635b818410610442575050016103f6826103e6565b80548484015260209093019260010161042f565b60ff191682525090151560051b0190506103f6826103e6565b634e487b7160e01b5f52602260045260245ffd5b91607f16916103c4565b34610250576020600319360112610250576004356104aa8161336c565b505f52600460205260206001600160a01b0360405f205416604051908152f35b6001600160a01b0381160361025057565b34610250576040600319360112610250576004356104f8816104ca565b602435906105058261336c565b331515806105f4575b806105b4575b610588578261002093610560926001600160a01b0380861691167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9255f80a45f52600460205260405f2090565b906001600160a01b031673ffffffffffffffffffffffffffffffffffffffff19825416179055565b7fa9fbf51f000000000000000000000000000000000000000000000000000000005f523360045260245ffd5b5060ff6105ec336105d6846001600160a01b03165f52600560205260405f2090565b906001600160a01b03165f5260205260405f2090565b541615610514565b50336001600160a01b038216141561050e565b60a060031936011261025057600435805f526002602052610637816001600160a01b0360405f20541633906133b8565b6084354211610a2f5761065b6001600160801b0361065361281e565b161515612842565b61066d815f52600c60205260405f2090565b80549161067a8360801c90565b9161069261068661281e565b6001600160801b031690565b926106a96001600160801b03821694851015612842565b610715610709806106e36106de69ffffffffffffffffffff8a165b69ffffffffffffffffffff165f52600b60205260405f2090565b612849565b7f0000000000000000000000008bbdc15759a8ecf99a92e004e0c64ea9a5142d596134c2565b6001600160a01b031690565b60406107316107278860501c60020b90565b9760681c60020b90565b61073961281e565b82517f6847456a000000000000000000000000000000000000000000000000000000008152600481018890526002998a0b60248201529190980b60448201526001600160801b039097166064880152866084815f855af19485156109c0575f965f966109f8575b50604435871080156109ed575b6109c55760a0610818926107de86546107d66107cc8260501c60020b90565b9160681c60020b90565b90893061363a565b9060405180809681947f514ea4bf000000000000000000000000000000000000000000000000000000008352600483019190602083019252565b03915afa9182156109c0575f905f93610989575b506001850182815483039061084091613697565b6001600160801b03166001600160801b038a8116919091011660038701908154610870906001600160801b031690565b016001600160801b031681546fffffffffffffffffffffffffffffffff19166001600160801b03909116178155600287019384548603906108b091613697565b81546001600160801b038082169281168c82160116608091821c01901b6fffffffffffffffffffffffffffffffff191617905555556108ed61281e565b90036001600160801b031681546001600160801b031660809190911b6fffffffffffffffffffffffffffffffff1916179055818361092961281e565b60405192839261095392846040919493926001600160801b03606083019616825260208201520152565b037f26f6a048ee9138f2c0ce266f322cb99228e8d619ae2bff30c67f8dcf9d2377b491a260408051928352602083019190915290f35b90506109ae91925060a03d60a0116109b9575b6109a68183611b09565b8101906128a6565b50509291505f61082c565b503d61099c565b61289b565b7f0c971c7b000000000000000000000000000000000000000000000000000000005f5260045ffd5b5060643586106107ad565b909550610a1e91965060403d604011610a28575b610a168183611b09565b810190612885565b959095945f6107a0565b503d610a0c565b7fb8e3f2bf000000000000000000000000000000000000000000000000000000005f5260045ffd5b5f6003193601126102505747610a6957005b6100204733613833565b34610250575f600319360112610250576020600854604051908152f35b60c06003193601126102505760a4354211610a2f576001600160a01b03600435610ac2815f52600c60205260405f2090565b90610bae8254610ae16106de6106c48369ffffffffffffffffffff1690565b80516001600160a01b031691610b0f6040610b0660208501516001600160a01b031690565b93015160020b90565b90610b206107cc8260501c60020b90565b610b9260243591610b8860443594610b7160643597610b676084355b9a610b57610b48611b2c565b6001600160a01b03909e168e52565b6001600160a01b031660208d0152565b60020b60408b0152565b3060608a0152608089018b905260020b60a0890152565b60020b60c0870152565b60e08501526101008401526101208301526101408201526138f2565b93919590929460a0610c1b825496610be1610bcc8960501c60020b90565b610bd98a60681c60020b90565b90883061363a565b6040519586809481937f514ea4bf000000000000000000000000000000000000000000000000000000008352600483019190602083019252565b0392165afa80156109c05761040295610d1b935f905f93610d84575b50610c6061068660018601936001600160801b03610c59865486039260801c90565b1690613697565b91610caf610c8a6003870194610c7d86546001600160801b031690565b016001600160801b031690565b84906001600160801b03166fffffffffffffffffffffffffffffffff19825416179055565b610d0a6002860193610ce2610cd861068687548903610cd26106868c5460801c90565b90613697565b825460801c610c7d565b6001600160801b036fffffffffffffffffffffffffffffffff1983549260801b169116179055565b5555610ce286610c7d835460801c90565b604080516001600160801b0386168152602081018790529081018390527f3067048beee31b25b2f1681f88dac838c8bba36af25bfb2b7cf7473a5847e35f90606090a2604051938493846040919493926001600160801b03606083019616825260208201520152565b9050610da091925060a03d60a0116109b9576109a68183611b09565b50509291505f610c37565b600319606091011261025057600435610dc3816104ca565b90602435610dd0816104ca565b9060443590565b3461025057610020610de836610dab565b916128e5565b3461025057604060031936011261025057600435610e0b816104ca565b6001600160a01b0360243591610e2081612cbb565b831015610e5257165f52600660205260405f20905f5260205261040260405f2054604051918291829190602083019252565b7fa57d13dc000000000000000000000000000000000000000000000000000000005f521660045260245260445ffd5b3461025057610020610e9236610dab565b9060405192610ea2602085611b09565b5f8452612f43565b602060031936011261025057600435805f526002602052610eda816001600160a01b0360405f20541633906133b8565b805f52600c60205260405f20805460801c1590811591610f77575b8115610f5e575b50610f365780610f31610f1a610020935f52600c60205260405f2090565b60035f918281558260018201558260028201550155565b613b56565b7f92a032ca000000000000000000000000000000000000000000000000000000005f5260045ffd5b60030154610f6f915060801c610686565b15155f610efc565b60038101546001600160801b031615159150610ef5565b604060031936011261025057602435600435610fa9826104ca565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b037f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad3816929091602083602481875afa9283156109c0575f936110a6575b5061102690831015612a89565b8161102d57005b823b15610250575f60405180947f2e1a7d4d00000000000000000000000000000000000000000000000000000000825281838161107288600483019190602083019252565b03925af19283156109c0576100209361108c575b50613833565b8061109a5f6110a093611b09565b8061035a565b5f611086565b6110269193506110cd9060203d6020116110d4575b6110c58183611b09565b810190612a7a565b9290611019565b503d6110bb565b34610250575f6003193601126102505760206040516001600160a01b037f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38168152f35b346102505760206003193601126102505760043561113b816104ca565b6040517fd33219b40000000000000000000000000000000000000000000000000000000081526020816004816001600160a01b037f0000000000000000000000005e7a9eea6988063a4dbb9ccddb3e04c923e8e37f165afa80156109c0576001600160a01b03915f916111dc575b50163303610250576001600160a01b031673ffffffffffffffffffffffffffffffffffffffff19600e541617600e555f80f35b6111fe915060203d602011611204575b6111f68183611b09565b810190612ad4565b5f6111a9565b503d6111ec565b346102505760206003193601126102505760043560085481101561125b5760085f527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30154604051908152602090f35b7fa57d13dc000000000000000000000000000000000000000000000000000000005f525f60045260245260445ffd5b346102505760206003193601126102505760206112a860043561336c565b6001600160a01b0360405191168152f35b61016060031936011261025057610144354211610a2f5761141375ffffffffffffffffffffffffffffffffffffffffffff61130b600d5475ffffffffffffffffffffffffffffffffffffffffffff1690565b61135782600183011675ffffffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffff00000000000000000000000000000000000000000000600d541617600d55565b166113a4611363612afd565b61136b612b09565b611373612b22565b61137b612b2e565b611383612b3a565b610b9260a43591610b8860c43594610b7160e43597610b6761010435610b3c565b6113bb856113b6979597949394612b15565b613d1d565b60a06001600160a01b036113d86113d0612b2e565b6107d6612b3a565b921691604051809681927f514ea4bf000000000000000000000000000000000000000000000000000000008352600483019190602083019252565b0381845afa9384156109c05761040294611513925f925f9261158e575b5061148e9061143d612afd565b90611489611449612b09565b61147f611454612b22565b9161146f611460611b3e565b6001600160a01b039097168752565b6001600160a01b03166020860152565b60020b6040840152565b613f31565b916114d761149a612b2e565b6114cd6114a5612b3a565b916114c36114b1611b4d565b69ffffffffffffffffffff9098168852565b60020b6020870152565b60020b6040850152565b6001600160801b0389166060840152608083015260a08201525f60c08201525f60e082015261150e865f52600c60205260405f2090565b612b46565b837f3067048beee31b25b2f1681f88dac838c8bba36af25bfb2b7cf7473a5847e35f6040518061155f86868b846040919493926001600160801b03606083019616825260208201520152565b0390a260405194859485909493926001600160801b036060936080840197845216602083015260408201520152565b61148e93506115ad91925060a03d60a0116109b9576109a68183611b09565b5050939150929190611430565b346102505760206003193601126102505760206115e16004356115dc816104ca565b612cbb565b604051908152f35b34610250575f600319360112610250576040515f6001548060011c9060018116908115611694575b60208310821461046f578285526020850191908115610456575060011461164257610402846103f681860382611b09565b60015f9081529250907fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf65b818410611680575050016103f6826103e6565b80548484015260209093019260010161166d565b91607f1691611611565b34610250576020600319360112610250576004356116cc6116c7825f52600c60205260405f2090565b612d05565b9069ffffffffffffffffffff6116ec835169ffffffffffffffffffff1690565b1615611820575061170d6106de6106c4835169ffffffffffffffffffff1690565b9061040261172283516001600160a01b031690565b91611745604061173c60208701516001600160a01b031690565b95015160020b90565b90611754602082015160020b90565b604082015160020b60608301516001600160801b031660808401519160a08501519361179e60e061178f60c08901516001600160801b031690565b9701516001600160801b031690565b966040519a8b9a8b98969492909a99979593916101408a019b6001600160a01b03168a526001600160a01b031660208a015260020b604089015260020b606088015260020b60808701526001600160801b031660a086015260c085015260e08401526001600160801b03166101008301526001600160801b0316906101200152565b7fed15e6cf000000000000000000000000000000000000000000000000000000005f5260045260245ffd5b8015150361025057565b3461025057604060031936011261025057600435611872816104ca565b60243561187e8161184b565b6001600160a01b038216918215611902576118b590335f52600560205260405f20906001600160a01b03165f5260205260405f2090565b60ff1981541660ff831515161790557f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31604051806118fd339482919091602081019215159052565b0390a3005b827f5b08ba18000000000000000000000000000000000000000000000000000000005f5260045260245ffd5b9181601f840112156102505782359167ffffffffffffffff8311610250576020808501948460051b01011161025057565b602081016020825282518091526040820191602060408360051b8301019401925f915b83831061199157505050505090565b90919293946020806119cd837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc086600196030187528951610364565b97019301930191939290611982565b60206003193601126102505760043567ffffffffffffffff811161025057611a0890369060040161192e565b90611a1282612de3565b915f5b818110611a2a5760405180610402868261195f565b5f80611a37838587612e2b565b90611a4760405180938193612e90565b0390305af4611a54612e9d565b9015611a7a5790600191611a688287612f2f565b52611a738186612f2f565b5001611a15565b604481511061025057611a9c816024806004611ab49501518301019101612ecc565b60405191829162461bcd60e51b835260048301610389565b0390fd5b634e487b7160e01b5f52604160045260245ffd5b6060810190811067ffffffffffffffff821117611ae857604052565b611ab8565b6040810190811067ffffffffffffffff821117611ae857604052565b90601f601f19910116810190811067ffffffffffffffff821117611ae857604052565b60405190611b3c61016083611b09565b565b60405190611b3c606083611b09565b60405190611b3c61010083611b09565b60405190611b3c604083611b09565b67ffffffffffffffff8111611ae857601f01601f191660200190565b3461025057608060031936011261025057600435611ba5816104ca565b60243590611bb2826104ca565b6044356064359267ffffffffffffffff8411610250573660238501121561025057836004013592611be284611b6c565b93611bf06040519586611b09565b8085523660248288010111610250576020815f92602461002099018389013786010152612f43565b3461025057602060031936011261025057600435611c358161336c565b50604051907fe9dc637500000000000000000000000000000000000000000000000000000000825230600483015260248201525f816044816001600160a01b037f000000000000000000000000fe3244e2f3a672d5287dc5c98be60434802d8c4b165afa80156109c057610402915f91611cb7575b5060405191829182610389565b611cd391503d805f833e611ccb8183611b09565b810190612ecc565b5f611caa565b346102505760606003193601126102505760443560243560043567ffffffffffffffff831161025057366023840112156102505782600401359167ffffffffffffffff83116102505736602484860101116102505760246100209401916130bb565b34610250575f6003193601126102505760206040516001600160a01b037f0000000000000000000000008bbdc15759a8ecf99a92e004e0c64ea9a5142d59168152f35b606060031936011261025057600435611d96816104ca565b602435604435611da5816104ca565b604051917f70a082310000000000000000000000000000000000000000000000000000000083523060048401526020836024816001600160a01b0388165afa9283156109c0575f93611e0f575b50611dff908310156131ca565b81611e0657005b610020926141e2565b611dff919350611e2d9060203d6020116110d4576110c58183611b09565b9290611df2565b3461025057604060031936011261025057602060ff611e8e600435611e58816104ca565b6001600160a01b0360243591611e6d836104ca565b165f526005845260405f20906001600160a01b03165f5260205260405f2090565b54166040519015158152f35b8060020b0361025057565b608060031936011261025057600435611ebd816104ca565b60243590611eca826104ca565b604435611ed681611e9a565b60643592611ee3846104ca565b611f006001600160a01b0382166001600160a01b03851610612842565b6040517f9f38f7400000000000000000000000000000000000000000000000000000000081526020816004816001600160a01b037f0000000000000000000000008bbdc15759a8ecf99a92e004e0c64ea9a5142d59165afa80156109c0576001600160a01b03915f916121b1575b506040517f28af8d0b0000000000000000000000000000000000000000000000000000000081526001600160a01b03868116600483015284166024820152600285900b604482015291169190602081606481865afa9081156109c0575f91612192575b506001600160a01b038116806120905750506040517f232aa5ac0000000000000000000000000000000000000000000000000000000081526001600160a01b039485166004820152908416602482015260029290920b604483015292909116606482015290602090829060849082905f905af180156109c057610402915f91612071575b505b6040516001600160a01b0390911681529081906020820190565b61208a915060203d602011611204576111f68183611b09565b5f612055565b9350935050506040517f3850c7bd00000000000000000000000000000000000000000000000000000000815260e081600481855afa80156109c0576001600160a01b03915f9161215d575b5016156120ee575b506104029150612057565b803b15610250576040517ff637731d0000000000000000000000000000000000000000000000000000000081526001600160a01b039390931660048401525f908390602490829084905af19182156109c05761040292156120e3578061109a5f61215793611b09565b5f6120e3565b61217f915060e03d60e01161218b575b6121778183611b09565b810190613224565b5050505050505f6120db565b503d61216d565b6121ab915060203d602011611204576111f68183611b09565b5f611fd1565b6121ca915060203d602011611204576111f68183611b09565b5f611f6e565b346102505760406003193601126102505760043560243567ffffffffffffffff81116102505761220490369060040161192e565b825f939293526002602052612228826001600160a01b0360405f20541633906133b8565b6122df60206122586106de6106c4612248875f52600c60205260405f2090565b5469ffffffffffffffffffff1690565b61229a612273610709610709600e546001600160a01b031690565b917f0000000000000000000000008bbdc15759a8ecf99a92e004e0c64ea9a5142d596134c2565b9060405180809581947f2045be90000000000000000000000000000000000000000000000000000000008352600483019190916001600160a01b036020820193169052565b03915afa80156109c0576001600160a01b03915f9161235d575b5016803b156102505761233f935f8094604051968795869485937fa7852afa0000000000000000000000000000000000000000000000000000000085526004850161328f565b03925af180156109c05761234f57005b8061109a5f61002093611b09565b612376915060203d602011611204576111f68183611b09565b5f6122f9565b608060031936011261025057600435805f5260026020526123ac816001600160a01b0360405f20541633906133b8565b6001600160801b036123bc61282a565b16158015906127f5575b6123cf90612842565b6001600160a01b036123df612b09565b166127e857305b6123f8825f52600c60205260405f2090565b9182549161241b6107096106e36106de6106c48769ffffffffffffffffffff1690565b90600385019485549561243e612437886001600160801b031690565b9760801c90565b87819761244e6106868260801c90565b612671575b50505061245e61282a565b6001600160801b0388811691161115612661578687945b61247d612836565b6001600160801b03898116911611156126535787935b546124a18160501c60020b90565b6040517fa02f10690000000000000000000000000000000000000000000000000000000081526001600160a01b038881166004830152602482018b9052600292830b604483015260689390931c90910b60648201526001600160801b039a8b16608482015299851660a48b0152168860c4815a6040945f91f19687156109c0575f985f9861260c575b50836125bd87946001600160801b03809c996104029b9996612598837f40d0efd1a53d60ecbf40971b9daf7dc90178c3aadc7aab1765632738fa8b8f019b6125f099031685906001600160801b036fffffffffffffffffffffffffffffffff1983549260801b169116179055565b03166001600160801b03166fffffffffffffffffffffffffffffffff19825416179055565b604051938493849160409194936001600160801b0380926001600160a01b03606087019816865216602085015216910152565b0390a26040805191851682529290931660208401528291820190565b8697959294969399508691985060403d60401161264c575b61262e8183611b09565b8101612639916132dd565b969096989194929597509892959861252a565b503d612624565b61265b612836565b93612493565b61266961282a565b968794612475565b9097506126e691985060406001600160a01b038716916126976107cc8260501c60020b90565b82517f6847456a000000000000000000000000000000000000000000000000000000008152600481018b9052600292830b6024820152910b60448201525f606482015292839081906084820190565b03815f855af19182156109c057612727926127ca575b5060a08454916107de6127128460501c60020b90565b61271f8560681c60020b90565b908b3061363a565b03915afa9182156109c05761275d985f915f94612799575b5061276e61278e91610c7d61068660018a019d8e5487039760801c90565b966001600160801b03881690613697565b9a610c7d6106866002890195610cd287548903916001600160801b031690565b9855555f8080612453565b61278e91945061276e92506127bc9060a03d60a0116109b9576109a68183611b09565b50509391509294915061273f565b6127e29060403d604011610a2857610a168183611b09565b506126fc565b6127f0612b09565b6123e6565b506123cf612804610686612836565b151590506123c6565b6001600160801b0381160361025057565b60243561039a8161280d565b60443561039a8161280d565b60643561039a8161280d565b1561025057565b9060405161285681611acc565b6040600182946001600160a01b03815416845201546001600160a01b038116602084015260a01c60020b910152565b9190826040910312610250576020825192015190565b6040513d5f823e3d90fd5b908160a09103126102505780516128bc8161280d565b91602082015191604081015191608060608301516128d98161280d565b92015161039a8161280d565b91906001600160a01b038116928315612a4e576001600160a01b0391835f52600260205261291e60405f206001600160a01b0390541690565b9033612a3e575b848483169687158015612a0e575b61294e846001600160a01b03165f52600360205260405f2090565b6001815401905561296b84610560855f52600260205260405f2090565b82828a7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4156129f8576129a08261494f565b87036129e8575b505050168083036129b757505050565b7f64283d7b000000000000000000000000000000000000000000000000000000005f5260045260245260445260645ffd5b6129f1916149ab565b5f846129a7565b8781146129a057612a0982856148cb565b6129a0565b612a17836142c6565b612a32856001600160a01b03165f52600360205260405f2090565b80545f19019055612933565b612a498533846133b8565b612925565b7f64a0ae92000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b90816020910312610250575190565b15612a9057565b606460405162461bcd60e51b815260206004820152601260248201527f496e73756666696369656e7420574554483900000000000000000000000000006044820152fd5b90816020910312610250575161039a816104ca565b634e487b7160e01b5f52603260045260245ffd5b60043561039a816104ca565b60243561039a816104ca565b6101243561039a816104ca565b60443561039a81611e9a565b60643561039a81611e9a565b60843561039a81611e9a565b90610ce260e06003611b3c94612b8569ffffffffffffffffffff865116829069ffffffffffffffffffff1669ffffffffffffffffffff19825416179055565b602085015160020b7fffffffffffffffffffffffffffffffffffffff000000ffffffffffffffffffff82549160501b6cffffff00000000000000000000169116178155612c1b612bd9604087015160020b90565b82907fffffffffffffffffffffffffffffffff000000ffffffffffffffffffffffffff82549160681b6fffffff00000000000000000000000000169116179055565b612c5b612c3260608701516001600160801b031690565b82546001600160801b031660809190911b6fffffffffffffffffffffffffffffffff1916178255565b6080850151600182015560a085015160028201550192612cad612c8860c08301516001600160801b031690565b85906001600160801b03166fffffffffffffffffffffffffffffffff19825416179055565b01516001600160801b031690565b6001600160a01b03168015612cd9575f52600360205260405f205490565b7f89c62b64000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b9060405161010081019080821067ffffffffffffffff831117611ae857611b3c9160405260e0612dbd60038396612d93612d83825469ffffffffffffffffffff81168852612d63612d598260501c60020b90565b60020b60208a0152565b612d7d612d738260681c60020b90565b60020b60408a0152565b60801c90565b6001600160801b03166060870152565b60018101546080860152600281015460a086015201546001600160801b03811660c0850152612d7d565b6001600160801b0316910152565b67ffffffffffffffff8111611ae85760051b60200190565b90612ded82612dcb565b612dfa6040519182611b09565b828152601f19612e0a8294612dcb565b01905f5b828110612e1a57505050565b806060602080938501015201612e0e565b9190811015612e8b5760051b810135907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18136030182121561025057019081359167ffffffffffffffff8311610250576020018236038113610250579190565b612ae9565b908092918237015f815290565b3d15612ec7573d90612eae82611b6c565b91612ebc6040519384611b09565b82523d5f602084013e565b606090565b6020818303126102505780519067ffffffffffffffff8211610250570181601f8201121561025057805190612f0082611b6c565b92612f0e6040519485611b09565b8284526020838301011161025057815f9260208093018386015e8301015290565b8051821015612e8b5760209160051b010190565b909291612f518185846128e5565b833b612f5e575b50505050565b602091612f9960405194859384937f150b7a020000000000000000000000000000000000000000000000000000000085523360048601614021565b03815f6001600160a01b0387165af15f918161308a575b506130035750612fbe612e9d565b8051919082612ffc577f64a0ae92000000000000000000000000000000000000000000000000000000005f526001600160a01b03821660045260245ffd5b9050602001fd5b7fffffffff000000000000000000000000000000000000000000000000000000007f150b7a020000000000000000000000000000000000000000000000000000000091160361305657505f808080612f58565b7f64a0ae92000000000000000000000000000000000000000000000000000000005f526001600160a01b031660045260245ffd5b6130ad91925060203d6020116130b4575b6130a58183611b09565b81019061400c565b905f612fb0565b503d61309b565b92918091928101039260808412610250576060604051946130db86611aed565b12610250576131616060604051936130f285611acc565b80356130fd816104ca565b8552602081013561310d816104ca565b6020860152604081013561312081611e9a565b6040860152848752013592613134846104ca565b602086019384527f0000000000000000000000008bbdc15759a8ecf99a92e004e0c64ea9a5142d5961404f565b50806131a3575b508161317357505050565b61319c61318e6020611b3c955101516001600160a01b031690565b91516001600160a01b031690565b3391614081565b8351516131c491906001600160a01b031683516001600160a01b031661319c565b5f613168565b156131d157565b606460405162461bcd60e51b815260206004820152601260248201527f496e73756666696369656e7420746f6b656e00000000000000000000000000006044820152fd5b519061ffff8216820361025057565b908160e091031261025057805161323a816104ca565b91602082015161324981611e9a565b9161325660408201613215565b9161326360608301613215565b9161327060808201613215565b9160a082015160ff811681036102505760c09092015161039a8161184b565b9081526040602082018190528101839052606001915f5b8181106132b35750505090565b9091926020806001926001600160a01b0387356132cf816104ca565b1681520194019291016132a6565b919082604091031261025057602082516128d98161280d565b6001600160a01b037f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad3816330361332857565b606460405162461bcd60e51b815260206004820152600960248201527f4e6f7420574554483900000000000000000000000000000000000000000000006044820152fd5b805f5260026020526001600160a01b0360405f20541690811561338d575090565b7f7e273289000000000000000000000000000000000000000000000000000000005f5260045260245ffd5b9190916133d66001600160a01b038416801515908161345057501590565b6133df57505050565b6001600160a01b0316613417577f7e273289000000000000000000000000000000000000000000000000000000005f5260045260245ffd5b7f177e802f000000000000000000000000000000000000000000000000000000005f526001600160a01b0390911660045260245260445ffd5b6001600160a01b0384168082149250821561348f575b50811561347257501590565b9050835f5260046020526001600160a01b0360405f205416141590565b9091505f52600560205260ff6134b98660405f20906001600160a01b03165f5260205260405f2090565b5416905f613466565b906001600160a01b038151169160208201926001600160a01b0384511611156135f6576135496135e761039a948461355761351d6040610b0661350f6107099a516001600160a01b031690565b95516001600160a01b031690565b604080516001600160a01b0395861660208201908152959094169084015260020b606083015281608081015b03601f198101835282611b09565b51902060405192839160208301958690917fffffffffffffffffffffffffffffffffffffffff0000000000000000000000006055937fff00000000000000000000000000000000000000000000000000000000000000845260601b16600183015260158201527fc701ee63862761c31d620a4a083c61bdc1e81761e6b9c9267fd19afd22e0821d60358201520190565b5190206001600160a01b031690565b606460405162461bcd60e51b815260206004820152600b60248201527f21546f6b656e4f726465720000000000000000000000000000000000000000006044820152fd5b929091604051927fffffffffffffffffffffffffffffffffffffffff000000000000000000000000602085019560601b168552603484015260e81b605483015260e81b6057820152603a8152613691605a82611b09565b51902090565b5f1982820990828102928380841093039280840393146136f05782700100000000000000000000000000000000111561025057700100000000000000000000000000000000910990828211900360801b910360801c1790565b50505060801c90565b5f196c010000000000000000000000008209918160601b9182808510940393808503941461378e576c01000000000000000000000000829161373c868411612842565b0981805f03168092046002816003021880820260020302808202600203028082026002030280820260020302808202600203028091026002030293600183805f03040190848311900302920304170290565b50915061379c821515612842565b0490565b5f1982820990828102928380841093039280840393146137f157826c010000000000000000000000001115610250576c01000000000000000000000000910990828211900360a01b910360601c1790565b50505060601c90565b90915f1983830992808302928380861095039480860395146138245790829161373c868411612842565b5050915061379c821515612842565b5f9190829160405190613847602083611b09565b83825260208201915f36843751925af161385f612e9d565b501561386757565b606460405162461bcd60e51b815260206004820152600360248201527f53544500000000000000000000000000000000000000000000000000000000006044820152fd5b929360c0946001600160801b03936001600160a01b0361039a999894168652602086015260020b604085015260020b60608401521660808201528160a08201520190610364565b80516001600160a01b03169061392661391560208301516001600160a01b031690565b61147f611454604085015160020b90565b613953610709837f0000000000000000000000008bbdc15759a8ecf99a92e004e0c64ea9a5142d596134c2565b6001600160a01b038116936040517f3850c7bd00000000000000000000000000000000000000000000000000000000815260e081600481895afa80156109c0576040915f91613b31575b5060a08501966139df6139b96139b48a5160020b90565b614315565b9260c08801936139cd6139b4865160020b90565b60e08a0151916101008b0151936146c9565b975f87613aa5613549613a6f613a1a613a126080613a0760608801516001600160a01b031690565b960151975160020b90565b985160020b90565b9c613a23611b5d565b90815233602082015289519283916020830191909160606001600160a01b03602060808401956040815184815116875284848201511684880152015160020b6040860152015116910152565b8c88519c8d98899788967f8221b8c1000000000000000000000000000000000000000000000000000000008852600488016138ab565b03925af19283156109c0575f945f94613b0a575b50838561012083015111918215613afb575b5050613ad357565b7f7dd37f70000000000000000000000000000000000000000000000000000000005f5260045ffd5b61014001511190505f80613acb565b909350613b2791945060403d604011610a2857610a168183611b09565b939093925f613ab9565b613b4a915060e03d60e01161218b576121778183611b09565b5050505050505f61399d565b805f5260026020526001600160a01b0360405f205416801590811580613ced575b613b89845f52600260205260405f2090565b73ffffffffffffffffffffffffffffffffffffffff198154169055835f837fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8280a48215613cd95750613bdb8361494f565b6008545f19810190808211613cd457845f5260096020528060405f2054921015612e8b5760085f527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee281015490821015612e8b577ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee382018190555f908152600960205260409020555f838152600960205260408120556008548015613cc0575f19810190600854821015612e8b5760085f8181527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee290920191909155555061338d5750565b634e487b7160e01b5f52603160045260245ffd5b613e5c565b15613bdb57613ce883826148cb565b613bdb565b613cf6846142c6565b613d11826001600160a01b03165f52600360205260405f2090565b80545f19019055613b77565b906001600160a01b038216918215612a4e575f828152600260205260409020546001600160a01b0316916001600160a01b0383169384159485159586613e2c575b613d79856001600160a01b03165f52600360205260405f2090565b60018154019055613d9685610560865f52600260205260405f2090565b8383837fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a415613e1657613dcb8361494f565b03613e06575b505050613dda57565b7f73c6ac6e000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b613e0f916149ab565b5f80613dd1565b808214613dcb57613e2783866148cb565b613dcb565b613e35846142c6565b613e50866001600160a01b03165f52600360205260405f2090565b80545f19019055613d5e565b634e487b7160e01b5f52601160045260245ffd5b6001604091613eac6001600160a01b0385511682906001600160a01b031673ffffffffffffffffffffffffffffffffffffffff19825416179055565b0191613ee86001600160a01b0360208301511684906001600160a01b031673ffffffffffffffffffffffffffffffffffffffff19825416179055565b01517fffffffffffffffffff000000ffffffffffffffffffffffffffffffffffffffff82549160a01b76ffffff0000000000000000000000000000000000000000169116179055565b9190916001600160a01b0381165f52600a60205269ffffffffffffffffffff60405f205416928315613f61575050565b909250600d54908160b01c9169ffffffffffffffffffff8314613cd457826140079175ffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffff000000000000000000000000000000000000000000006001611b3c970160b01b16911617600d556001600160a01b038196165f52600a6020526106c48160405f209069ffffffffffffffffffff1669ffffffffffffffffffff19825416179055565b613e70565b90816020910312610250575161039a81610226565b90926001600160a01b036080938161039a979616845216602083015260408201528160608201520190610364565b6001600160a01b0391614061916134c2565b169081330361025057565b90816020910312610250575161039a8161184b565b9290926001600160a01b037f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad381693846001600160a01b03831614806141d8575b156141af575050823b1561025057604051927fd0e30db00000000000000000000000000000000000000000000000000000000084525f8460048185855af19283156109c05761415f9460209461419b575b505f6040518096819582947fa9059cbb00000000000000000000000000000000000000000000000000000000845260048401602090939291936001600160a01b0360408201951681520152565b03925af180156109c0576141705750565b6141919060203d602011614194575b6141898183611b09565b81019061406c565b50565b503d61417f565b8061109a5f6141a993611b09565b5f614112565b9093509091906001600160a01b03811630036141cf5750611b3c926141e2565b611b3c93614769565b50824710156140c1565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000602082019081526001600160a01b03909316602482015260448101939093525f9283929083906142398160648101613549565b51925af1614245612e9d565b81614297575b501561425357565b606460405162461bcd60e51b815260206004820152600260248201527f53540000000000000000000000000000000000000000000000000000000000006044820152fd5b80518015925082156142ac575b50505f61424b565b6142bf925060208091830101910161406c565b5f806142a4565b6142d8905f52600460205260405f2090565b805473ffffffffffffffffffffffffffffffffffffffff19169055565b8015614301575f190490565b634e487b7160e01b5f52601260045260245ffd5b60020b5f8112156146c357805f035b620d89e8811161469b576001600160a01b039160018216156146725770ffffffffffffffffffffffffffffffffff6ffffcb933bd6fad37aa2d162d1a5940015b169160028116614656575b6004811661463a575b6008811661461e575b60108116614602575b602081166145e6575b604081166145ca575b608081166145ae575b6101008116614592575b6102008116614576575b610400811661455a575b610800811661453e575b6110008116614522575b6120008116614506575b61400081166144ea575b61800081166144ce575b6201000081166144b2575b620200008116614497575b62040000811661447c575b6208000016614463575b5f12614455575b61443e6144348260201c90565b9163ffffffff1690565b61444c5760ff5f5b16011690565b60ff6001614446565b61445e906142f5565b614427565b6b048a170391f7dc42444e8fa290910260801c90614420565b6d2216e584f5fa1ea926041bedfe9890920260801c91614416565b916e5d6af8dedb81196699c329225ee6040260801c9161440b565b916f09aa508b5b7a84e1c677de54f3e99bc90260801c91614400565b916f31be135f97d08fd981231505542fcfa60260801c916143f5565b916f70d869a156d2a1b890bb3df62baf32f70260801c916143eb565b916fa9f746462d870fdf8a65dc1f90e061e50260801c916143e1565b916fd097f3bdfd2022b8845ad8f792aa58250260801c916143d7565b916fe7159475a2c29b7443b29c7fa6e889d90260801c916143cd565b916ff3392b0822b70005940c7a398e4b70f30260801c916143c3565b916ff987a7253ac413176f2b074cf7815e540260801c916143b9565b916ffcbe86c7900a88aedcffc83b479aa3a40260801c916143af565b916ffe5dee046a99a2a811c461f1969c30530260801c916143a5565b916fff2ea16466c96a3843ec78b326b528610260801c9161439c565b916fff973b41fa98c081472e6896dfb254c00260801c91614393565b916fffcb9843d60f6159c9db58835c9266440260801c9161438a565b916fffe5caca7e10e4e61c3624eaa0941cd00260801c91614381565b916ffff2e50f5f656932ef12357cf3c7fdcc0260801c91614378565b916ffff97272373d413259a46990580e213a0260801c9161436f565b70ffffffffffffffffffffffffffffffffff700100000000000000000000000000000000614364565b7f2bc80f3a000000000000000000000000000000000000000000000000000000005f5260045ffd5b80614324565b936001600160a01b0383166001600160a01b03831611614761575b6001600160a01b0385811695908316861161470557505061039a9350614882565b92909391946001600160a01b038216115f1461475557829161472b916147319594614882565b93614852565b6001600160801b0381166001600160801b038316105f14614750575090565b905090565b91505061039a92614852565b9091906146e4565b905f80949381946001600160a01b03604051928160208501967f23b872dd0000000000000000000000000000000000000000000000000000000088521660248501521660448301526064820152606481526147c5608482611b09565b51925af16147d1612e9d565b81614823575b50156147df57565b606460405162461bcd60e51b815260206004820152600360248201527f53544600000000000000000000000000000000000000000000000000000000006044820152fd5b8051801592508215614838575b50505f6147d7565b61484b925060208091830101910161406c565b5f80614830565b916001600160a01b0361039a93614877938281168383161161487c575b0316906136f9565b6149ef565b9061486f565b916148779161039a936001600160a01b0382166001600160a01b038216116148c5575b6001600160a01b03906148bc8284168383166137a0565b920316916137fa565b906148a5565b5f91614921916148da81612cbb565b9180855260076020526001600160a01b0360408620549216855260066020526040852091838103614924575b5084526007602052836040812055905f5260205260405f2090565b55565b838652826020526040862054818752836020528060408820558652600760205260408620555f614906565b600854815f5260096020528060405f205568010000000000000000811015611ae85760018101600855600854811015612e8b5760085f527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b906149b582612cbb565b5f19810192908311613cd4576001600160a01b03165f52600660205260405f20825f526020528060405f20555f52600760205260405f2055565b906001600160801b0382169182036102505756fea26469706673582212208ee5ed08961e15a268fd3a2c0f76b94f10be796dfc0cad22ffdf71c5f870db4a64736f6c634300081c0033

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

    0000000000000000000000008bbdc15759a8ecf99a92e004e0c64ea9a5142d59000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38000000000000000000000000fe3244e2f3a672d5287dc5c98be60434802d8c4b0000000000000000000000005e7a9eea6988063a4dbb9ccddb3e04c923e8e37f

    -----Decoded View---------------
    Arg [0] : _deployer (address): 0x8BBDc15759a8eCf99A92E004E0C64ea9A5142d59
    Arg [1] : _WETH9 (address): 0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38
    Arg [2] : _tokenDescriptor_ (address): 0xFE3244e2f3A672d5287Dc5c98bE60434802D8c4B
    Arg [3] : _accessHub (address): 0x5e7A9eea6988063A4dBb9CcDDB3E04C923E8E37f

    -----Encoded View---------------
    4 Constructor Arguments found :
    Arg [0] : 0000000000000000000000008bbdc15759a8ecf99a92e004e0c64ea9a5142d59
    Arg [1] : 000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38
    Arg [2] : 000000000000000000000000fe3244e2f3a672d5287dc5c98be60434802d8c4b
    Arg [3] : 0000000000000000000000005e7a9eea6988063a4dbb9ccddb3e04c923e8e37f


    [ 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.