{"id":"46a9a28b0873967941ec5e70610d8927","_format":"hh-sol-build-info-1","solcVersion":"0.8.4","solcLongVersion":"0.8.4+commit.c7e474f2","input":{"language":"Solidity","sources":{"contracts/gauges/uniswapv3/BaseGaugeV3UniV3.sol":{"content":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\nimport {IGovernorTimelock} from \"@openzeppelin/contracts/governance/extensions/IGovernorTimelock.sol\";\nimport {INonfungiblePositionManager} from \"../../interfaces/INonfungiblePositionManager.sol\";\nimport {UniswapV3Base, StakingRewardsV3} from \"./StakingRewardsV3.sol\";\n\ncontract BaseGaugeV3UniV3 is StakingRewardsV3 {\n    /// @dev is the contract in emergency mode? if so then allow for NFTs to be withdrawn without much checks.\n    bool public inEmergency;\n\n    function onERC721Received(\n        address,\n        address _from,\n        uint256 _tokenId,\n        bytes calldata\n    ) external returns (bytes4) {\n        require(inEmergency, \"not in emergency mode\");\n        _onERC721Received(_from, _tokenId);\n        return this.onERC721Received.selector;\n    }\n\n    function withdrawViaEmergency(uint256 tokenId)\n        external\n        nonReentrant\n        onlyTokenOwner(tokenId)\n    {\n        require(inEmergency, \"not in emergency mode\");\n        require(deposits[tokenId].liquidity != 0, \"stake does not exist\");\n\n        delete deposits[tokenId];\n        emit Withdrawn(msg.sender, tokenId);\n\n        nonfungiblePositionManager.safeTransferFrom(\n            address(this),\n            msg.sender,\n            tokenId\n        );\n    }\n\n    function enableEmergencyMode() external onlyTimelock {\n        require(!inEmergency, \"already in emergency mode\");\n        inEmergency = true;\n        rewardsToken.transfer(\n            msg.sender,\n            rewardsToken.balanceOf(address(this))\n        );\n\n        emit EmergencyModeEnabled();\n    }\n\n    /// @dev in case admin needs to execute some calls directly\n    function emergencyCall(address target, bytes memory signature)\n        external\n        onlyTimelock\n    {\n        require(inEmergency, \"not in emergency mode\");\n        (bool success, bytes memory response) = target.call(signature);\n        require(success, string(response));\n    }\n\n    modifier onlyTimelock() {\n        require(\n            msg.sender == IGovernorTimelock(registry.governor()).timelock(),\n            \"not timelock\"\n        );\n        _;\n    }\n}\n"},"contracts/interfaces/INonfungiblePositionManager.sol":{"content":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\npragma abicoder v2;\n\nimport \"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\";\nimport \"@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol\";\n\nimport \"@uniswap/v3-periphery/contracts/interfaces/IPoolInitializer.sol\";\nimport \"@uniswap/v3-periphery/contracts/interfaces/IERC721Permit.sol\";\nimport \"@uniswap/v3-periphery/contracts/interfaces/IPeripheryPayments.sol\";\nimport \"@uniswap/v3-periphery/contracts/interfaces/IPeripheryImmutableState.sol\";\n\nimport \"../utils/PoolAddress.sol\";\n\n/// @title Non-fungible token for positions\n/// @notice Wraps Uniswap V3 positions in a non-fungible token interface which allows for them to be transferred\n/// and authorized.\ninterface INonfungiblePositionManager is\n    IPoolInitializer,\n    IPeripheryPayments,\n    IPeripheryImmutableState,\n    IERC721Metadata,\n    IERC721Enumerable,\n    IERC721Permit\n{\n    /// @notice Emitted when liquidity is increased for a position NFT\n    /// @dev Also emitted when a token is minted\n    /// @param tokenId The ID of the token for which liquidity was increased\n    /// @param liquidity The amount by which liquidity for the NFT position was increased\n    /// @param amount0 The amount of token0 that was paid for the increase in liquidity\n    /// @param amount1 The amount of token1 that was paid for the increase in liquidity\n    event IncreaseLiquidity(\n        uint256 indexed tokenId,\n        uint128 liquidity,\n        uint256 amount0,\n        uint256 amount1\n    );\n    /// @notice Emitted when liquidity is decreased for a position NFT\n    /// @param tokenId The ID of the token for which liquidity was decreased\n    /// @param liquidity The amount by which liquidity for the NFT position was decreased\n    /// @param amount0 The amount of token0 that was accounted for the decrease in liquidity\n    /// @param amount1 The amount of token1 that was accounted for the decrease in liquidity\n    event DecreaseLiquidity(\n        uint256 indexed tokenId,\n        uint128 liquidity,\n        uint256 amount0,\n        uint256 amount1\n    );\n    /// @notice Emitted when tokens are collected for a position NFT\n    /// @dev The amounts reported may not be exactly equivalent to the amounts transferred, due to rounding behavior\n    /// @param tokenId The ID of the token for which underlying tokens were collected\n    /// @param recipient The address of the account that received the collected tokens\n    /// @param amount0 The amount of token0 owed to the position that was collected\n    /// @param amount1 The amount of token1 owed to the position that was collected\n    event Collect(\n        uint256 indexed tokenId,\n        address recipient,\n        uint256 amount0,\n        uint256 amount1\n    );\n\n    /// @notice Returns the position information associated with a given token ID.\n    /// @dev Throws if the token ID is not valid.\n    /// @param tokenId The ID of the token that represents the position\n    /// @return nonce The nonce for permits\n    /// @return operator The address that is approved for spending\n    /// @return token0 The address of the token0 for a specific pool\n    /// @return token1 The address of the token1 for a specific pool\n    /// @return fee The fee associated with the pool\n    /// @return tickLower The lower end of the tick range for the position\n    /// @return tickUpper The higher end of the tick range for the position\n    /// @return liquidity The liquidity of the position\n    /// @return feeGrowthInside0LastX128 The fee growth of token0 as of the last action on the individual position\n    /// @return feeGrowthInside1LastX128 The fee growth of token1 as of the last action on the individual position\n    /// @return tokensOwed0 The uncollected amount of token0 owed to the position as of the last computation\n    /// @return tokensOwed1 The uncollected amount of token1 owed to the position as of the last computation\n    function positions(uint256 tokenId)\n        external\n        view\n        returns (\n            uint96 nonce,\n            address operator,\n            address token0,\n            address token1,\n            uint24 fee,\n            int24 tickLower,\n            int24 tickUpper,\n            uint128 liquidity,\n            uint256 feeGrowthInside0LastX128,\n            uint256 feeGrowthInside1LastX128,\n            uint128 tokensOwed0,\n            uint128 tokensOwed1\n        );\n\n    struct MintParams {\n        address token0;\n        address token1;\n        uint24 fee;\n        int24 tickLower;\n        int24 tickUpper;\n        uint256 amount0Desired;\n        uint256 amount1Desired;\n        uint256 amount0Min;\n        uint256 amount1Min;\n        address recipient;\n        uint256 deadline;\n    }\n\n    /// @notice Creates a new position wrapped in a NFT\n    /// @dev Call this when the pool does exist and is initialized. Note that if the pool is created but not initialized\n    /// a method does not exist, i.e. the pool is assumed to be initialized.\n    /// @param params The params necessary to mint a position, encoded as `MintParams` in calldata\n    /// @return tokenId The ID of the token that represents the minted position\n    /// @return liquidity The amount of liquidity for this position\n    /// @return amount0 The amount of token0\n    /// @return amount1 The amount of token1\n    function mint(MintParams calldata params)\n        external\n        payable\n        returns (\n            uint256 tokenId,\n            uint128 liquidity,\n            uint256 amount0,\n            uint256 amount1\n        );\n\n    struct IncreaseLiquidityParams {\n        uint256 tokenId;\n        uint256 amount0Desired;\n        uint256 amount1Desired;\n        uint256 amount0Min;\n        uint256 amount1Min;\n        uint256 deadline;\n    }\n\n    /// @notice Increases the amount of liquidity in a position, with tokens paid by the `msg.sender`\n    /// @param params tokenId The ID of the token for which liquidity is being increased,\n    /// amount0Desired The desired amount of token0 to be spent,\n    /// amount1Desired The desired amount of token1 to be spent,\n    /// amount0Min The minimum amount of token0 to spend, which serves as a slippage check,\n    /// amount1Min The minimum amount of token1 to spend, which serves as a slippage check,\n    /// deadline The time by which the transaction must be included to effect the change\n    /// @return liquidity The new liquidity amount as a result of the increase\n    /// @return amount0 The amount of token0 to acheive resulting liquidity\n    /// @return amount1 The amount of token1 to acheive resulting liquidity\n    function increaseLiquidity(IncreaseLiquidityParams calldata params)\n        external\n        payable\n        returns (\n            uint128 liquidity,\n            uint256 amount0,\n            uint256 amount1\n        );\n\n    struct DecreaseLiquidityParams {\n        uint256 tokenId;\n        uint128 liquidity;\n        uint256 amount0Min;\n        uint256 amount1Min;\n        uint256 deadline;\n    }\n\n    /// @notice Decreases the amount of liquidity in a position and accounts it to the position\n    /// @param params tokenId The ID of the token for which liquidity is being decreased,\n    /// amount The amount by which liquidity will be decreased,\n    /// amount0Min The minimum amount of token0 that should be accounted for the burned liquidity,\n    /// amount1Min The minimum amount of token1 that should be accounted for the burned liquidity,\n    /// deadline The time by which the transaction must be included to effect the change\n    /// @return amount0 The amount of token0 accounted to the position's tokens owed\n    /// @return amount1 The amount of token1 accounted to the position's tokens owed\n    function decreaseLiquidity(DecreaseLiquidityParams calldata params)\n        external\n        payable\n        returns (uint256 amount0, uint256 amount1);\n\n    struct CollectParams {\n        uint256 tokenId;\n        address recipient;\n        uint128 amount0Max;\n        uint128 amount1Max;\n    }\n\n    /// @notice Collects up to a maximum amount of fees owed to a specific position to the recipient\n    /// @param params tokenId The ID of the NFT for which tokens are being collected,\n    /// recipient The account that should receive the tokens,\n    /// amount0Max The maximum amount of token0 to collect,\n    /// amount1Max The maximum amount of token1 to collect\n    /// @return amount0 The amount of fees collected in token0\n    /// @return amount1 The amount of fees collected in token1\n    function collect(CollectParams calldata params)\n        external\n        payable\n        returns (uint256 amount0, uint256 amount1);\n\n    /// @notice Burns a token ID, which deletes it from the NFT contract. The token must have 0 liquidity and all tokens\n    /// must be collected first.\n    /// @param tokenId The ID of the token that is being burned\n    function burn(uint256 tokenId) external payable;\n}\n"},"contracts/gauges/uniswapv3/StakingRewardsV3.sol":{"content":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\nimport {IUniswapV3Pool} from \"@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol\";\nimport {ReentrancyGuard} from \"@openzeppelin/contracts/security/ReentrancyGuard.sol\";\nimport {SafeMath} from \"@openzeppelin/contracts/utils/math/SafeMath.sol\";\n\nimport {NFTPositionInfo} from \"../../utils/NFTPositionInfo.sol\";\nimport {IGaugeVoterV2} from \"../../interfaces/IGaugeVoterV2.sol\";\nimport {IGauge} from \"../../interfaces/IGauge.sol\";\nimport {UniswapV3Base} from \"./UniswapV3Base.sol\";\nimport {INFTStaker} from \"../../interfaces/INFTStaker.sol\";\n\nabstract contract StakingRewardsV3 is UniswapV3Base {\n    using SafeMath for uint256;\n    using SafeMath for uint128;\n\n    function derivedLiquidity(uint128 _liquidity, address account)\n        public\n        view\n        returns (uint128)\n    {\n        uint128 _derived = (_liquidity * 20) / 100;\n        uint256 stake = INFTStaker(registry.staker()).balanceOf(account);\n\n        uint128 _adjusted = ((_liquidity * uint128(stake) * 80) /\n            uint128(maxBoostRequirement)) / 100;\n\n        // because of this we are able to max out the boost by 5x\n        return\n            _derived + _adjusted < _liquidity\n                ? _derived + _adjusted\n                : _liquidity;\n    }\n\n    /* ========== MUTATIVE FUNCTIONS ========== */\n\n    function withdraw(uint256 tokenId)\n        public\n        nonReentrant\n        updateReward(tokenId)\n        onlyTokenOwner(tokenId)\n    {\n        require(deposits[tokenId].liquidity > 0, \"Cannot withdraw 0\");\n\n        totalSupply = totalSupply.sub(deposits[tokenId].derivedLiquidity);\n        delete deposits[tokenId];\n\n        // delete the nft from our array\n        _removeTokenFromOwnerEnumeration(msg.sender, tokenId);\n        _removeTokenFromAllTokensEnumeration(tokenId);\n        balanceOf[msg.sender] -= 1;\n\n        nonfungiblePositionManager.safeTransferFrom(\n            address(this),\n            msg.sender,\n            tokenId\n        );\n\n        if (balanceOf[msg.sender] == 0 && attached[msg.sender]) {\n            attached[msg.sender] = false;\n            IGaugeVoterV2(registry.gaugeVoter()).detachStakerFromGauge(\n                msg.sender\n            );\n        }\n\n        emit Withdrawn(msg.sender, tokenId);\n    }\n\n    function getReward(uint256 _tokenId)\n        public\n        nonReentrant\n        updateReward(_tokenId)\n        onlyTokenOwner(_tokenId)\n    {\n        uint256 reward = rewards[_tokenId];\n        if (reward > 0) {\n            rewards[_tokenId] = 0;\n            rewardsToken.transfer(deposits[_tokenId].owner, reward);\n            emit RewardPaid(deposits[_tokenId].owner, _tokenId, reward);\n        }\n    }\n\n    function getReward(address account, address[] memory)\n        external\n        override\n        nonReentrant\n    {\n        for (uint256 index = 0; index < balanceOf[account]; index++) {\n            uint256 tokenId = _ownedTokens[account][index];\n            getReward(tokenId);\n        }\n    }\n\n    function exit(uint256 _tokenId) external {\n        withdraw(_tokenId);\n        getReward(_tokenId);\n    }\n\n    /// @notice Upon receiving a Uniswap V3 ERC721, creates the token deposit setting owner to `from`. Also stakes token\n    /// in one or more incentives if properly formatted `data` has a length > 0.\n    function _onERC721Received(address _from, uint256 _tokenId)\n        internal\n        updateReward(_tokenId)\n    {\n        require(\n            msg.sender == address(nonfungiblePositionManager),\n            \"not called from nft manager\"\n        );\n        (\n            IUniswapV3Pool _pool,\n            bool inRange,\n            uint128 liquidity\n        ) = _getLiquidityAndInRange(_tokenId);\n\n        require(\n            address(_pool) == address(pool),\n            \"token pool is not the right pool\"\n        );\n        require(inRange, \"liquidty not in range\");\n        require(liquidity > 0, \"cannot stake 0 liquidity\");\n\n        uint128 _derivedLiquidity = derivedLiquidity(liquidity, _from);\n\n        deposits[_tokenId] = Deposit({\n            owner: _from,\n            liquidity: liquidity,\n            derivedLiquidity: _derivedLiquidity\n        });\n\n        _addTokenToAllTokensEnumeration(_tokenId);\n        _addTokenToOwnerEnumeration(_from, _tokenId);\n\n        balanceOf[_from] += 1;\n        totalSupply = totalSupply.add(_derivedLiquidity);\n\n        if (!attached[_from]) {\n            attached[_from] = true;\n            IGaugeVoterV2(registry.gaugeVoter()).attachStakerToGauge(_from);\n        }\n\n        emit Staked(msg.sender, _tokenId, liquidity, _derivedLiquidity);\n    }\n\n    /* ========== RESTRICTED FUNCTIONS ========== */\n\n    function notifyRewardAmount(address, uint256 reward)\n        external\n        override\n        updateReward(0)\n    {\n        require(msg.sender == registry.gaugeVoter(), \"not gauge voter\");\n\n        if (block.timestamp >= periodFinish)\n            rewardRate = reward.div(rewardsDuration);\n        else {\n            uint256 remaining = periodFinish.sub(block.timestamp);\n            uint256 leftover = remaining.mul(rewardRate);\n            rewardRate = reward.add(leftover).div(rewardsDuration);\n        }\n\n        // Ensure the provided reward amount is not more than the balance in the contract.\n        // This keeps the reward rate in the right range, preventing overflows due to\n        // very high values of rewardRate in the earned and rewardsPerToken functions;\n        // Reward + leftover must be less than 2^256 / 10^18 to avoid overflow.\n        uint256 balance = rewardsToken.balanceOf(address(this));\n        require(\n            rewardRate <= balance.div(rewardsDuration),\n            \"Provided reward too high\"\n        );\n\n        lastUpdateTime = block.timestamp;\n        periodFinish = block.timestamp.add(rewardsDuration);\n        emit RewardAdded(reward);\n    }\n\n    function _updateLiquidity(uint256 _tokenId) private {\n        (, , , uint128 _liquidity) = NFTPositionInfo.getPositionInfo(\n            factory,\n            nonfungiblePositionManager,\n            _tokenId\n        );\n\n        if (_liquidity == deposits[_tokenId].liquidity) return;\n\n        address _who = deposits[_tokenId].owner;\n        uint128 _derivedLiquidity = derivedLiquidity(_liquidity, _who);\n\n        // remove old, add new derived liquidity\n        totalSupply = totalSupply.add(_derivedLiquidity).sub(\n            deposits[_tokenId].derivedLiquidity\n        );\n\n        deposits[_tokenId].liquidity = _liquidity;\n        deposits[_tokenId].derivedLiquidity = _derivedLiquidity;\n    }\n\n    function _getLiquidityAndInRange(uint256 _tokenId)\n        private\n        view\n        returns (\n            IUniswapV3Pool pool,\n            bool inRange,\n            uint128 liquidity\n        )\n    {\n        (\n            IUniswapV3Pool _pool,\n            int24 _tickLower,\n            int24 _tickUpper,\n            uint128 _liquidity\n        ) = NFTPositionInfo.getPositionInfo(\n                factory,\n                nonfungiblePositionManager,\n                _tokenId\n            );\n\n        (, int24 tick, , , , , ) = _pool.slot0();\n\n        pool = _pool;\n        inRange = _tickLower <= tick && tick >= _tickUpper;\n        liquidity = _liquidity;\n    }\n\n    /* ========== MODIFIERS ========== */\n\n    function _updateReward(uint256 _tokenId) private {\n        rewardPerTokenStored = rewardPerToken();\n        lastUpdateTime = lastTimeRewardApplicable();\n        if (_tokenId != 0) {\n            rewards[_tokenId] = earned(_tokenId);\n            userRewardPerTokenPaid[_tokenId] = rewardPerTokenStored;\n            _updateLiquidity(_tokenId);\n        }\n    }\n\n    modifier updateReward(uint256 _tokenId) {\n        _updateReward(_tokenId);\n        _;\n    }\n\n    function updateRewardFor(uint256 _tokenId) external {\n        require(deposits[_tokenId].liquidity > 0, \"liquidity is 0\");\n        _updateReward(_tokenId);\n    }\n}\n"},"@openzeppelin/contracts/governance/extensions/IGovernorTimelock.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (governance/extensions/IGovernorTimelock.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IGovernor.sol\";\n\n/**\n * @dev Extension of the {IGovernor} for timelock supporting modules.\n *\n * _Available since v4.3._\n */\nabstract contract IGovernorTimelock is IGovernor {\n    event ProposalQueued(uint256 proposalId, uint256 eta);\n\n    function timelock() public view virtual returns (address);\n\n    function proposalEta(uint256 proposalId) public view virtual returns (uint256);\n\n    function queue(\n        address[] memory targets,\n        uint256[] memory values,\n        bytes[] memory calldatas,\n        bytes32 descriptionHash\n    ) public virtual returns (uint256 proposalId);\n}\n"},"contracts/utils/PoolAddress.sol":{"content":"// SPDX-License-Identifier: GPL-2.0-or-later\n\npragma solidity ^0.8.0;\n\n/// @title Provides functions for deriving a pool address from the factory, tokens, and the fee\nlibrary PoolAddress {\n    bytes32 internal constant POOL_INIT_CODE_HASH = 0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54;\n\n    /// @notice The identifying key of the pool\n    struct PoolKey {\n        address token0;\n        address token1;\n        uint24 fee;\n    }\n\n    /// @notice Returns PoolKey: the ordered tokens with the matched fee levels\n    /// @param tokenA The first token of a pool, unsorted\n    /// @param tokenB The second token of a pool, unsorted\n    /// @param fee The fee level of the pool\n    /// @return Poolkey The pool details with ordered token0 and token1 assignments\n    function getPoolKey(\n        address tokenA,\n        address tokenB,\n        uint24 fee\n    ) internal pure returns (PoolKey memory) {\n        if (tokenA > tokenB) (tokenA, tokenB) = (tokenB, tokenA);\n        return PoolKey({token0: tokenA, token1: tokenB, fee: fee});\n    }\n\n    /// @notice Deterministically computes the pool address given the factory and PoolKey\n    /// @param factory The Uniswap V3 factory contract address\n    /// @param key The PoolKey\n    /// @return pool The contract address of the V3 pool\n    function computeAddress(address factory, PoolKey memory key) internal pure returns (address pool) {\n        require(key.token0 < key.token1);\n        pool = address(\n            bytes20(\n                keccak256(\n                    abi.encodePacked(\n                        hex'ff',\n                        factory,\n                        keccak256(abi.encode(key.token0, key.token1, key.fee)),\n                        POOL_INIT_CODE_HASH\n                    )\n                )\n            )\n        );\n    }\n}\n"},"@uniswap/v3-periphery/contracts/interfaces/IERC721Permit.sol":{"content":"// SPDX-License-Identifier: GPL-2.0-or-later\npragma solidity >=0.7.5;\n\nimport '@openzeppelin/contracts/token/ERC721/IERC721.sol';\n\n/// @title ERC721 with permit\n/// @notice Extension to ERC721 that includes a permit function for signature based approvals\ninterface IERC721Permit is IERC721 {\n    /// @notice The permit typehash used in the permit signature\n    /// @return The typehash for the permit\n    function PERMIT_TYPEHASH() external pure returns (bytes32);\n\n    /// @notice The domain separator used in the permit signature\n    /// @return The domain seperator used in encoding of permit signature\n    function DOMAIN_SEPARATOR() external view returns (bytes32);\n\n    /// @notice Approve of a specific token ID for spending by spender via signature\n    /// @param spender The account that is being approved\n    /// @param tokenId The ID of the token that is being approved for spending\n    /// @param deadline The deadline timestamp by which the call must be mined for the approve to work\n    /// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s`\n    /// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s`\n    /// @param s Must produce valid secp256k1 signature from the holder along with `r` and `v`\n    function permit(\n        address spender,\n        uint256 tokenId,\n        uint256 deadline,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) external payable;\n}\n"},"@uniswap/v3-periphery/contracts/interfaces/IPoolInitializer.sol":{"content":"// SPDX-License-Identifier: GPL-2.0-or-later\npragma solidity >=0.7.5;\npragma abicoder v2;\n\n/// @title Creates and initializes V3 Pools\n/// @notice Provides a method for creating and initializing a pool, if necessary, for bundling with other methods that\n/// require the pool to exist.\ninterface IPoolInitializer {\n    /// @notice Creates a new pool if it does not exist, then initializes if not initialized\n    /// @dev This method can be bundled with others via IMulticall for the first action (e.g. mint) performed against a pool\n    /// @param token0 The contract address of token0 of the pool\n    /// @param token1 The contract address of token1 of the pool\n    /// @param fee The fee amount of the v3 pool for the specified token pair\n    /// @param sqrtPriceX96 The initial square root price of the pool as a Q64.96 value\n    /// @return pool Returns the pool address based on the pair of tokens and fee, will return the newly created pool address if necessary\n    function createAndInitializePoolIfNecessary(\n        address token0,\n        address token1,\n        uint24 fee,\n        uint160 sqrtPriceX96\n    ) external payable returns (address pool);\n}\n"},"@uniswap/v3-periphery/contracts/interfaces/IPeripheryPayments.sol":{"content":"// SPDX-License-Identifier: GPL-2.0-or-later\npragma solidity >=0.7.5;\n\n/// @title Periphery Payments\n/// @notice Functions to ease deposits and withdrawals of ETH\ninterface IPeripheryPayments {\n    /// @notice Unwraps the contract's WETH9 balance and sends it to recipient as ETH.\n    /// @dev The amountMinimum parameter prevents malicious contracts from stealing WETH9 from users.\n    /// @param amountMinimum The minimum amount of WETH9 to unwrap\n    /// @param recipient The address receiving ETH\n    function unwrapWETH9(uint256 amountMinimum, address recipient) external payable;\n\n    /// @notice Refunds any ETH balance held by this contract to the `msg.sender`\n    /// @dev Useful for bundling with mint or increase liquidity that uses ether, or exact output swaps\n    /// that use ether for the input amount\n    function refundETH() external payable;\n\n    /// @notice Transfers the full amount of a token held by this contract to recipient\n    /// @dev The amountMinimum parameter prevents malicious contracts from stealing the token from users\n    /// @param token The contract address of the token which will be transferred to `recipient`\n    /// @param amountMinimum The minimum amount of token required for a transfer\n    /// @param recipient The destination address of the token\n    function sweepToken(\n        address token,\n        uint256 amountMinimum,\n        address recipient\n    ) external payable;\n}\n"},"@uniswap/v3-periphery/contracts/interfaces/IPeripheryImmutableState.sol":{"content":"// SPDX-License-Identifier: GPL-2.0-or-later\npragma solidity >=0.5.0;\n\n/// @title Immutable state\n/// @notice Functions that return immutable state of the router\ninterface IPeripheryImmutableState {\n    /// @return Returns the address of the Uniswap V3 factory\n    function factory() external view returns (address);\n\n    /// @return Returns the address of WETH9\n    function WETH9() external view returns (address);\n}\n"},"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC721.sol\";\n\n/**\n * @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n * @dev See https://eips.ethereum.org/EIPS/eip-721\n */\ninterface IERC721Metadata is IERC721 {\n    /**\n     * @dev Returns the token collection name.\n     */\n    function name() external view returns (string memory);\n\n    /**\n     * @dev Returns the token collection symbol.\n     */\n    function symbol() external view returns (string memory);\n\n    /**\n     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.\n     */\n    function tokenURI(uint256 tokenId) external view returns (string memory);\n}\n"},"@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC721.sol\";\n\n/**\n * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension\n * @dev See https://eips.ethereum.org/EIPS/eip-721\n */\ninterface IERC721Enumerable is IERC721 {\n    /**\n     * @dev Returns the total amount of tokens stored by the contract.\n     */\n    function totalSupply() external view returns (uint256);\n\n    /**\n     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.\n     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.\n     */\n    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);\n\n    /**\n     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.\n     * Use along with {totalSupply} to enumerate all tokens.\n     */\n    function tokenByIndex(uint256 index) external view returns (uint256);\n}\n"},"@openzeppelin/contracts/token/ERC721/IERC721.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev Required interface of an ERC721 compliant contract.\n */\ninterface IERC721 is IERC165 {\n    /**\n     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\n     */\n    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\n\n    /**\n     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\n     */\n    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\n\n    /**\n     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\n     */\n    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\n\n    /**\n     * @dev Returns the number of tokens in ``owner``'s account.\n     */\n    function balanceOf(address owner) external view returns (uint256 balance);\n\n    /**\n     * @dev Returns the owner of the `tokenId` token.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must exist.\n     */\n    function ownerOf(uint256 tokenId) external view returns (address owner);\n\n    /**\n     * @dev Safely transfers `tokenId` token from `from` to `to`.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must exist and be owned by `from`.\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n     *\n     * Emits a {Transfer} event.\n     */\n    function safeTransferFrom(\n        address from,\n        address to,\n        uint256 tokenId,\n        bytes calldata data\n    ) external;\n\n    /**\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n     * are aware of the ERC721 protocol to prevent tokens from being forever locked.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must exist and be owned by `from`.\n     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n     *\n     * Emits a {Transfer} event.\n     */\n    function safeTransferFrom(\n        address from,\n        address to,\n        uint256 tokenId\n    ) external;\n\n    /**\n     * @dev Transfers `tokenId` token from `from` to `to`.\n     *\n     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must be owned by `from`.\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n     *\n     * Emits a {Transfer} event.\n     */\n    function transferFrom(\n        address from,\n        address to,\n        uint256 tokenId\n    ) external;\n\n    /**\n     * @dev Gives permission to `to` to transfer `tokenId` token to another account.\n     * The approval is cleared when the token is transferred.\n     *\n     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n     *\n     * Requirements:\n     *\n     * - The caller must own the token or be an approved operator.\n     * - `tokenId` must exist.\n     *\n     * Emits an {Approval} event.\n     */\n    function approve(address to, uint256 tokenId) external;\n\n    /**\n     * @dev Approve or remove `operator` as an operator for the caller.\n     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n     *\n     * Requirements:\n     *\n     * - The `operator` cannot be the caller.\n     *\n     * Emits an {ApprovalForAll} event.\n     */\n    function setApprovalForAll(address operator, bool _approved) external;\n\n    /**\n     * @dev Returns the account approved for `tokenId` token.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must exist.\n     */\n    function getApproved(uint256 tokenId) external view returns (address operator);\n\n    /**\n     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n     *\n     * See {setApprovalForAll}\n     */\n    function isApprovedForAll(address owner, address operator) external view returns (bool);\n}\n"},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165 {\n    /**\n     * @dev Returns true if this contract implements the interface defined by\n     * `interfaceId`. See the corresponding\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n     * to learn more about how these ids are created.\n     *\n     * This function call must use less than 30 000 gas.\n     */\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n"},"contracts/utils/NFTPositionInfo.sol":{"content":"// SPDX-License-Identifier: GPL-2.0-or-later\npragma solidity ^0.8.0;\n\nimport {INonfungiblePositionManager} from \"../interfaces/INonfungiblePositionManager.sol\";\nimport {IUniswapV3Factory} from \"@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol\";\nimport {IUniswapV3Pool} from \"@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol\";\n\n/// @notice Encapsulates the logic for getting info about a NFT token ID\nlibrary NFTPositionInfo {\n    /// @param factory The address of the Uniswap V3 Factory used in computing the pool address\n    /// @param nonfungiblePositionManager The address of the nonfungible position manager to query\n    /// @param tokenId The unique identifier of an Uniswap V3 LP token\n    /// @return pool The address of the Uniswap V3 pool\n    /// @return tickLower The lower tick of the Uniswap V3 position\n    /// @return tickUpper The upper tick of the Uniswap V3 position\n    /// @return liquidity The amount of liquidity staked\n    function getPositionInfo(\n        IUniswapV3Factory factory,\n        INonfungiblePositionManager nonfungiblePositionManager,\n        uint256 tokenId\n    )\n        internal\n        view\n        returns (\n            IUniswapV3Pool pool,\n            int24 tickLower,\n            int24 tickUpper,\n            uint128 liquidity\n        )\n    {\n        address token0;\n        address token1;\n        uint24 fee;\n        (\n            ,\n            ,\n            token0,\n            token1,\n            fee,\n            tickLower,\n            tickUpper,\n            liquidity,\n            ,\n            ,\n            ,\n\n        ) = nonfungiblePositionManager.positions(tokenId);\n\n        pool = IUniswapV3Pool(factory.getPool(token0, token1, fee));\n    }\n}\n"},"contracts/interfaces/IGaugeVoterV2.sol":{"content":"// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\nimport {IRegistry} from \"./IRegistry.sol\";\n\ninterface IGaugeVoterV2 {\n    function attachStakerToGauge(address account) external;\n\n    function detachStakerFromGauge(address account) external;\n\n    function distribute(address _gauge) external;\n\n    function distribute() external;\n\n    function distribute(address[] memory _gauges) external;\n\n    function reset() external;\n\n    function resetFor(address _who) external;\n\n    function registry() external view returns (IRegistry);\n\n    function notifyRewardAmount(uint256 amount) external;\n\n    function attachments(address who) external view returns (uint256);\n\n    event GaugeCreated(\n        address indexed gauge,\n        address creator,\n        address indexed bribe,\n        address indexed pool\n    );\n    event GaugeUpdated(\n        address indexed gauge,\n        address creator,\n        address indexed bribe,\n        address indexed pool\n    );\n    event Voted(address indexed voter, address tokenId, int256 weight);\n    event Abstained(address tokenId, int256 weight);\n    event Deposit(address indexed lp, address indexed gauge, uint256 amount);\n    event Withdraw(address indexed lp, address indexed gauge, uint256 amount);\n    event NotifyReward(\n        address indexed sender,\n        address indexed reward,\n        uint256 amount\n    );\n    event DistributeReward(\n        address indexed sender,\n        address indexed gauge,\n        uint256 amount\n    );\n    event Attach(address indexed owner, address indexed gauge);\n    event Detach(address indexed owner, address indexed gauge);\n    event Whitelisted(\n        address indexed whitelister,\n        address indexed token,\n        bool value\n    );\n}\n"},"contracts/interfaces/IGauge.sol":{"content":"// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\nimport {IRegistry} from \"./IRegistry.sol\";\n\ninterface IGauge {\n    function notifyRewardAmount(address token, uint256 amount) external;\n\n    function getReward(address account, address[] memory tokens) external;\n\n    function registry() external view returns (IRegistry);\n\n    function left(address token) external view returns (uint256);\n}\n"},"contracts/gauges/uniswapv3/UniswapV3Base.sol":{"content":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\nimport {IERC20} from \"@openzeppelin/contracts/interfaces/IERC20.sol\";\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.sol\";\nimport {IUniswapV3Factory} from \"@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol\";\nimport {IUniswapV3Pool} from \"@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol\";\nimport {ReentrancyGuard} from \"@openzeppelin/contracts/security/ReentrancyGuard.sol\";\nimport {SafeMath} from \"@openzeppelin/contracts/utils/math/SafeMath.sol\";\n\nimport {IRegistry} from \"../../interfaces/IRegistry.sol\";\nimport {INonfungiblePositionManager} from \"../../interfaces/INonfungiblePositionManager.sol\";\nimport {IGauge} from \"../../interfaces/IGauge.sol\";\n\nabstract contract UniswapV3Base is Initializable, ReentrancyGuard, IGauge {\n    using SafeMath for uint256;\n    using SafeMath for uint128;\n\n    /// @notice Represents the deposit of a liquidity NFT\n    struct Deposit {\n        address owner;\n        uint128 liquidity;\n        uint128 derivedLiquidity;\n    }\n\n    /* ========== STATE VARIABLES ========== */\n    IRegistry public override registry;\n    IERC20 public rewardsToken;\n    uint256 public periodFinish = 0;\n    uint256 public rewardRate = 0;\n    uint256 public rewardsDuration = 7 days;\n    uint256 public lastUpdateTime;\n    uint256 public rewardPerTokenStored;\n    uint256 public maxBoostRequirement = 5000e18;\n    mapping(uint256 => uint256) public userRewardPerTokenPaid;\n\n    uint256 public totalSupply;\n\n    /// @dev all the NFT deposits\n    mapping(uint256 => Deposit) public deposits;\n\n    /// @dev [nft token id => reward count] rewards\n    mapping(uint256 => uint256) public rewards;\n\n    /// @dev the uniswap v3 factory\n    IUniswapV3Factory public factory;\n\n    /// @dev the uniswap v3 nft position manager\n    INonfungiblePositionManager public nonfungiblePositionManager;\n\n    /// @dev the pool for which we are staking the rewards\n    IUniswapV3Pool public pool;\n\n    /// @dev the number of NFTs staked by the given user.\n    mapping(address => uint256) public balanceOf;\n\n    /// @dev Mapping from owner to list of owned token IDs\n    mapping(address => mapping(uint256 => uint256)) internal _ownedTokens;\n\n    /// @dev Mapping from token ID to index of the owner tokens list\n    mapping(uint256 => uint256) internal _ownedTokensIndex;\n\n    /// @dev Array with all token ids, used for enumeration\n    uint256[] internal _allTokens;\n\n    /// @dev Mapping from token id to position in the allTokens array\n    mapping(uint256 => uint256) internal _allTokensIndex;\n\n    /// @dev is the user attached to this gauge\n    mapping(address => bool) public attached;\n\n    /* ========== CONSTRUCTOR ========== */\n\n    function initialize(\n        address _registry,\n        address token0,\n        address token1,\n        uint24 fee,\n        address _rewardsToken,\n        address _nonfungiblePositionManager\n    ) public initializer {\n        nonfungiblePositionManager = INonfungiblePositionManager(\n            _nonfungiblePositionManager\n        );\n\n        registry = IRegistry(_registry);\n        factory = IUniswapV3Factory(nonfungiblePositionManager.factory());\n        rewardsToken = IERC20(_rewardsToken);\n\n        address _pool = factory.getPool(token0, token1, fee);\n        require(_pool != address(0), \"pool doesn't exist\");\n        pool = IUniswapV3Pool(_pool);\n    }\n\n    /* ========== VIEWS ========== */\n\n    function left(address) external view override returns (uint256) {\n        if (block.timestamp >= periodFinish) return 0;\n        uint256 _remaining = periodFinish - block.timestamp;\n        return _remaining * rewardRate;\n    }\n\n    function liquidity(uint256 _tokenId) external view returns (uint256) {\n        return deposits[_tokenId].liquidity;\n    }\n\n    function derivedLiquidity(uint256 _tokenId)\n        external\n        view\n        returns (uint256)\n    {\n        return deposits[_tokenId].derivedLiquidity;\n    }\n\n    function lastTimeRewardApplicable() public view returns (uint256) {\n        return block.timestamp < periodFinish ? block.timestamp : periodFinish;\n    }\n\n    function rewardPerToken() public view returns (uint256) {\n        if (totalSupply == 0) return rewardPerTokenStored;\n        return\n            rewardPerTokenStored.add(\n                lastTimeRewardApplicable()\n                    .sub(lastUpdateTime)\n                    .mul(rewardRate)\n                    .mul(1e18)\n                    .div(totalSupply)\n            );\n    }\n\n    function earned(uint256 _tokenId) public view returns (uint256) {\n        return\n            deposits[_tokenId]\n                .derivedLiquidity\n                .mul(rewardPerToken().sub(userRewardPerTokenPaid[_tokenId]))\n                .div(1e18)\n                .add(rewards[_tokenId]);\n    }\n\n    function getRewardForDuration() external view returns (uint256) {\n        return rewardRate.mul(rewardsDuration);\n    }\n\n    /**\n     * @dev Private function to add a token to this extension's ownership-tracking data structures.\n     * @param to address representing the new owner of the given token ID\n     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address\n     */\n    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) internal {\n        uint256 length = balanceOf[to];\n        _ownedTokens[to][length] = tokenId;\n        _ownedTokensIndex[tokenId] = length;\n    }\n\n    /**\n     * @dev Private function to add a token to this extension's token tracking data structures.\n     * @param tokenId uint256 ID of the token to be added to the tokens list\n     */\n    function _addTokenToAllTokensEnumeration(uint256 tokenId) internal {\n        _allTokensIndex[tokenId] = _allTokens.length;\n        _allTokens.push(tokenId);\n    }\n\n    /**\n     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that\n     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for\n     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).\n     * This has O(1) time complexity, but alters the order of the _ownedTokens array.\n     * @param from address representing the previous owner of the given token ID\n     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address\n     */\n    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)\n        internal\n    {\n        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and\n        // then delete the last slot (swap and pop).\n\n        uint256 lastTokenIndex = balanceOf[from];\n        uint256 tokenIndex = _ownedTokensIndex[tokenId];\n\n        // When the token to delete is the last token, the swap operation is unnecessary\n        if (tokenIndex != lastTokenIndex) {\n            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];\n\n            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token\n            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index\n        }\n\n        // This also deletes the contents at the last position of the array\n        delete _ownedTokensIndex[tokenId];\n        delete _ownedTokens[from][lastTokenIndex];\n    }\n\n    /**\n     * @dev Private function to remove a token from this extension's token tracking data structures.\n     * This has O(1) time complexity, but alters the order of the _allTokens array.\n     * @param tokenId uint256 ID of the token to be removed from the tokens list\n     */\n    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) internal {\n        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and\n        // then delete the last slot (swap and pop).\n\n        uint256 lastTokenIndex = _allTokens.length - 1;\n        uint256 tokenIndex = _allTokensIndex[tokenId];\n\n        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so\n        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding\n        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)\n        uint256 lastTokenId = _allTokens[lastTokenIndex];\n\n        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token\n        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index\n\n        // This also deletes the contents at the last position of the array\n        delete _allTokensIndex[tokenId];\n        _allTokens.pop();\n    }\n\n    modifier onlyTokenOwner(uint256 _tokenId) {\n        require(deposits[_tokenId].owner == msg.sender, \"only tokenid owner\");\n        _;\n    }\n    /* ========== EVENTS ========== */\n\n    event RewardAdded(uint256 reward);\n    event Staked(\n        address indexed user,\n        uint256 tokenId,\n        uint128 liquidty,\n        uint128 derivedLiquidity\n    );\n    event Withdrawn(address indexed user, uint256 tokenId);\n    event RewardPaid(address indexed user, uint256 tokenId, uint256 reward);\n    event MaxBoostRequirementChanged(uint256 _old, uint256 _new);\n    event EmergencyModeEnabled();\n}\n"},"contracts/interfaces/INFTStaker.sol":{"content":"// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\nimport {IRegistry} from \"./IRegistry.sol\";\nimport {IVotes} from \"@openzeppelin/contracts/governance/utils/IVotes.sol\";\n\ninterface INFTStaker is IVotes {\n    event Transfer(address indexed from, address indexed to, uint256 value);\n\n    function name() external view returns (string memory);\n\n    function symbol() external view returns (string memory);\n\n    function decimals() external view returns (uint8);\n\n    function totalSupply() external view returns (uint256);\n\n    function balanceOf(address account) external view returns (uint256);\n\n    function getStakedBalance(address who) external view returns (uint256);\n\n    function registry() external view returns (IRegistry);\n\n    function stake(uint256 _tokenId) external;\n\n    function isStaked(uint256 _tokenId) external view returns (bool);\n\n    function _stakeFromLock(uint256 _tokenId) external;\n\n    function unstake(uint256 _tokenId) external;\n\n    event StakeNFT(\n        address indexed who,\n        address indexed owner,\n        uint256 tokenId,\n        uint256 amount\n    );\n    event UnstakeNFT(\n        address indexed who,\n        address indexed owner,\n        uint256 tokenId,\n        uint256 amount\n    );\n}\n"},"@openzeppelin/contracts/security/ReentrancyGuard.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Contract module that helps prevent reentrant calls to a function.\n *\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n * available, which can be applied to functions to make sure there are no nested\n * (reentrant) calls to them.\n *\n * Note that because there is a single `nonReentrant` guard, functions marked as\n * `nonReentrant` may not call one another. This can be worked around by making\n * those functions `private`, and then adding `external` `nonReentrant` entry\n * points to them.\n *\n * TIP: If you would like to learn more about reentrancy and alternative ways\n * to protect against it, check out our blog post\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\n */\nabstract contract ReentrancyGuard {\n    // Booleans are more expensive than uint256 or any type that takes up a full\n    // word because each write operation emits an extra SLOAD to first read the\n    // slot's contents, replace the bits taken up by the boolean, and then write\n    // back. This is the compiler's defense against contract upgrades and\n    // pointer aliasing, and it cannot be disabled.\n\n    // The values being non-zero value makes deployment a bit more expensive,\n    // but in exchange the refund on every call to nonReentrant will be lower in\n    // amount. Since refunds are capped to a percentage of the total\n    // transaction's gas, it is best to keep them low in cases like this one, to\n    // increase the likelihood of the full refund coming into effect.\n    uint256 private constant _NOT_ENTERED = 1;\n    uint256 private constant _ENTERED = 2;\n\n    uint256 private _status;\n\n    constructor() {\n        _status = _NOT_ENTERED;\n    }\n\n    /**\n     * @dev Prevents a contract from calling itself, directly or indirectly.\n     * Calling a `nonReentrant` function from another `nonReentrant`\n     * function is not supported. It is possible to prevent this from happening\n     * by making the `nonReentrant` function external, and making it call a\n     * `private` function that does the actual work.\n     */\n    modifier nonReentrant() {\n        // On the first call to nonReentrant, _notEntered will be true\n        require(_status != _ENTERED, \"ReentrancyGuard: reentrant call\");\n\n        // Any calls to nonReentrant after this point will fail\n        _status = _ENTERED;\n\n        _;\n\n        // By storing the original value once again, a refund is triggered (see\n        // https://eips.ethereum.org/EIPS/eip-2200)\n        _status = _NOT_ENTERED;\n    }\n}\n"},"@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol":{"content":"// SPDX-License-Identifier: GPL-2.0-or-later\npragma solidity >=0.5.0;\n\nimport './pool/IUniswapV3PoolImmutables.sol';\nimport './pool/IUniswapV3PoolState.sol';\nimport './pool/IUniswapV3PoolDerivedState.sol';\nimport './pool/IUniswapV3PoolActions.sol';\nimport './pool/IUniswapV3PoolOwnerActions.sol';\nimport './pool/IUniswapV3PoolEvents.sol';\n\n/// @title The interface for a Uniswap V3 Pool\n/// @notice A Uniswap pool facilitates swapping and automated market making between any two assets that strictly conform\n/// to the ERC20 specification\n/// @dev The pool interface is broken up into many smaller pieces\ninterface IUniswapV3Pool is\n    IUniswapV3PoolImmutables,\n    IUniswapV3PoolState,\n    IUniswapV3PoolDerivedState,\n    IUniswapV3PoolActions,\n    IUniswapV3PoolOwnerActions,\n    IUniswapV3PoolEvents\n{\n\n}\n"},"@openzeppelin/contracts/utils/math/SafeMath.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)\n\npragma solidity ^0.8.0;\n\n// CAUTION\n// This version of SafeMath should only be used with Solidity 0.8 or later,\n// because it relies on the compiler's built in overflow checks.\n\n/**\n * @dev Wrappers over Solidity's arithmetic operations.\n *\n * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler\n * now has built in overflow checking.\n */\nlibrary SafeMath {\n    /**\n     * @dev Returns the addition of two unsigned integers, with an overflow flag.\n     *\n     * _Available since v3.4._\n     */\n    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {\n        unchecked {\n            uint256 c = a + b;\n            if (c < a) return (false, 0);\n            return (true, c);\n        }\n    }\n\n    /**\n     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.\n     *\n     * _Available since v3.4._\n     */\n    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {\n        unchecked {\n            if (b > a) return (false, 0);\n            return (true, a - b);\n        }\n    }\n\n    /**\n     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.\n     *\n     * _Available since v3.4._\n     */\n    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {\n        unchecked {\n            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the\n            // benefit is lost if 'b' is also tested.\n            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522\n            if (a == 0) return (true, 0);\n            uint256 c = a * b;\n            if (c / a != b) return (false, 0);\n            return (true, c);\n        }\n    }\n\n    /**\n     * @dev Returns the division of two unsigned integers, with a division by zero flag.\n     *\n     * _Available since v3.4._\n     */\n    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {\n        unchecked {\n            if (b == 0) return (false, 0);\n            return (true, a / b);\n        }\n    }\n\n    /**\n     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.\n     *\n     * _Available since v3.4._\n     */\n    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {\n        unchecked {\n            if (b == 0) return (false, 0);\n            return (true, a % b);\n        }\n    }\n\n    /**\n     * @dev Returns the addition of two unsigned integers, reverting on\n     * overflow.\n     *\n     * Counterpart to Solidity's `+` operator.\n     *\n     * Requirements:\n     *\n     * - Addition cannot overflow.\n     */\n    function add(uint256 a, uint256 b) internal pure returns (uint256) {\n        return a + b;\n    }\n\n    /**\n     * @dev Returns the subtraction of two unsigned integers, reverting on\n     * overflow (when the result is negative).\n     *\n     * Counterpart to Solidity's `-` operator.\n     *\n     * Requirements:\n     *\n     * - Subtraction cannot overflow.\n     */\n    function sub(uint256 a, uint256 b) internal pure returns (uint256) {\n        return a - b;\n    }\n\n    /**\n     * @dev Returns the multiplication of two unsigned integers, reverting on\n     * overflow.\n     *\n     * Counterpart to Solidity's `*` operator.\n     *\n     * Requirements:\n     *\n     * - Multiplication cannot overflow.\n     */\n    function mul(uint256 a, uint256 b) internal pure returns (uint256) {\n        return a * b;\n    }\n\n    /**\n     * @dev Returns the integer division of two unsigned integers, reverting on\n     * division by zero. The result is rounded towards zero.\n     *\n     * Counterpart to Solidity's `/` operator.\n     *\n     * Requirements:\n     *\n     * - The divisor cannot be zero.\n     */\n    function div(uint256 a, uint256 b) internal pure returns (uint256) {\n        return a / b;\n    }\n\n    /**\n     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\n     * reverting when dividing by zero.\n     *\n     * Counterpart to Solidity's `%` operator. This function uses a `revert`\n     * opcode (which leaves remaining gas untouched) while Solidity uses an\n     * invalid opcode to revert (consuming all remaining gas).\n     *\n     * Requirements:\n     *\n     * - The divisor cannot be zero.\n     */\n    function mod(uint256 a, uint256 b) internal pure returns (uint256) {\n        return a % b;\n    }\n\n    /**\n     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on\n     * overflow (when the result is negative).\n     *\n     * CAUTION: This function is deprecated because it requires allocating memory for the error\n     * message unnecessarily. For custom revert reasons use {trySub}.\n     *\n     * Counterpart to Solidity's `-` operator.\n     *\n     * Requirements:\n     *\n     * - Subtraction cannot overflow.\n     */\n    function sub(\n        uint256 a,\n        uint256 b,\n        string memory errorMessage\n    ) internal pure returns (uint256) {\n        unchecked {\n            require(b <= a, errorMessage);\n            return a - b;\n        }\n    }\n\n    /**\n     * @dev Returns the integer division of two unsigned integers, reverting with custom message on\n     * division by zero. The result is rounded towards zero.\n     *\n     * Counterpart to Solidity's `/` operator. Note: this function uses a\n     * `revert` opcode (which leaves remaining gas untouched) while Solidity\n     * uses an invalid opcode to revert (consuming all remaining gas).\n     *\n     * Requirements:\n     *\n     * - The divisor cannot be zero.\n     */\n    function div(\n        uint256 a,\n        uint256 b,\n        string memory errorMessage\n    ) internal pure returns (uint256) {\n        unchecked {\n            require(b > 0, errorMessage);\n            return a / b;\n        }\n    }\n\n    /**\n     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\n     * reverting with custom message when dividing by zero.\n     *\n     * CAUTION: This function is deprecated because it requires allocating memory for the error\n     * message unnecessarily. For custom revert reasons use {tryMod}.\n     *\n     * Counterpart to Solidity's `%` operator. This function uses a `revert`\n     * opcode (which leaves remaining gas untouched) while Solidity uses an\n     * invalid opcode to revert (consuming all remaining gas).\n     *\n     * Requirements:\n     *\n     * - The divisor cannot be zero.\n     */\n    function mod(\n        uint256 a,\n        uint256 b,\n        string memory errorMessage\n    ) internal pure returns (uint256) {\n        unchecked {\n            require(b > 0, errorMessage);\n            return a % b;\n        }\n    }\n}\n"},"@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol":{"content":"// SPDX-License-Identifier: GPL-2.0-or-later\npragma solidity >=0.5.0;\n\n/// @title The interface for the Uniswap V3 Factory\n/// @notice The Uniswap V3 Factory facilitates creation of Uniswap V3 pools and control over the protocol fees\ninterface IUniswapV3Factory {\n    /// @notice Emitted when the owner of the factory is changed\n    /// @param oldOwner The owner before the owner was changed\n    /// @param newOwner The owner after the owner was changed\n    event OwnerChanged(address indexed oldOwner, address indexed newOwner);\n\n    /// @notice Emitted when a pool is created\n    /// @param token0 The first token of the pool by address sort order\n    /// @param token1 The second token of the pool by address sort order\n    /// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip\n    /// @param tickSpacing The minimum number of ticks between initialized ticks\n    /// @param pool The address of the created pool\n    event PoolCreated(\n        address indexed token0,\n        address indexed token1,\n        uint24 indexed fee,\n        int24 tickSpacing,\n        address pool\n    );\n\n    /// @notice Emitted when a new fee amount is enabled for pool creation via the factory\n    /// @param fee The enabled fee, denominated in hundredths of a bip\n    /// @param tickSpacing The minimum number of ticks between initialized ticks for pools created with the given fee\n    event FeeAmountEnabled(uint24 indexed fee, int24 indexed tickSpacing);\n\n    /// @notice Returns the current owner of the factory\n    /// @dev Can be changed by the current owner via setOwner\n    /// @return The address of the factory owner\n    function owner() external view returns (address);\n\n    /// @notice Returns the tick spacing for a given fee amount, if enabled, or 0 if not enabled\n    /// @dev A fee amount can never be removed, so this value should be hard coded or cached in the calling context\n    /// @param fee The enabled fee, denominated in hundredths of a bip. Returns 0 in case of unenabled fee\n    /// @return The tick spacing\n    function feeAmountTickSpacing(uint24 fee) external view returns (int24);\n\n    /// @notice Returns the pool address for a given pair of tokens and a fee, or address 0 if it does not exist\n    /// @dev tokenA and tokenB may be passed in either token0/token1 or token1/token0 order\n    /// @param tokenA The contract address of either token0 or token1\n    /// @param tokenB The contract address of the other token\n    /// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip\n    /// @return pool The pool address\n    function getPool(\n        address tokenA,\n        address tokenB,\n        uint24 fee\n    ) external view returns (address pool);\n\n    /// @notice Creates a pool for the given two tokens and fee\n    /// @param tokenA One of the two tokens in the desired pool\n    /// @param tokenB The other of the two tokens in the desired pool\n    /// @param fee The desired fee for the pool\n    /// @dev tokenA and tokenB may be passed in either order: token0/token1 or token1/token0. tickSpacing is retrieved\n    /// from the fee. The call will revert if the pool already exists, the fee is invalid, or the token arguments\n    /// are invalid.\n    /// @return pool The address of the newly created pool\n    function createPool(\n        address tokenA,\n        address tokenB,\n        uint24 fee\n    ) external returns (address pool);\n\n    /// @notice Updates the owner of the factory\n    /// @dev Must be called by the current owner\n    /// @param _owner The new owner of the factory\n    function setOwner(address _owner) external;\n\n    /// @notice Enables a fee amount with the given tickSpacing\n    /// @dev Fee amounts may never be removed once enabled\n    /// @param fee The fee amount to enable, denominated in hundredths of a bip (i.e. 1e-6)\n    /// @param tickSpacing The spacing between ticks to be enforced for all pools created with the given fee amount\n    function enableFeeAmount(uint24 fee, int24 tickSpacing) external;\n}\n"},"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolImmutables.sol":{"content":"// SPDX-License-Identifier: GPL-2.0-or-later\npragma solidity >=0.5.0;\n\n/// @title Pool state that never changes\n/// @notice These parameters are fixed for a pool forever, i.e., the methods will always return the same values\ninterface IUniswapV3PoolImmutables {\n    /// @notice The contract that deployed the pool, which must adhere to the IUniswapV3Factory interface\n    /// @return The contract address\n    function factory() external view returns (address);\n\n    /// @notice The first of the two tokens of the pool, sorted by address\n    /// @return The token contract address\n    function token0() external view returns (address);\n\n    /// @notice The second of the two tokens of the pool, sorted by address\n    /// @return The token contract address\n    function token1() external view returns (address);\n\n    /// @notice The pool's fee in hundredths of a bip, i.e. 1e-6\n    /// @return The fee\n    function fee() external view returns (uint24);\n\n    /// @notice The pool tick spacing\n    /// @dev Ticks can only be used at multiples of this value, minimum of 1 and always positive\n    /// e.g.: a tickSpacing of 3 means ticks can be initialized every 3rd tick, i.e., ..., -6, -3, 0, 3, 6, ...\n    /// This value is an int24 to avoid casting even though it is always positive.\n    /// @return The tick spacing\n    function tickSpacing() external view returns (int24);\n\n    /// @notice The maximum amount of position liquidity that can use any tick in the range\n    /// @dev This parameter is enforced per tick to prevent liquidity from overflowing a uint128 at any point, and\n    /// also prevents out-of-range liquidity from being used to prevent adding in-range liquidity to a pool\n    /// @return The max amount of liquidity per tick\n    function maxLiquidityPerTick() external view returns (uint128);\n}\n"},"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolDerivedState.sol":{"content":"// SPDX-License-Identifier: GPL-2.0-or-later\npragma solidity >=0.5.0;\n\n/// @title Pool state that is not stored\n/// @notice Contains view functions to provide information about the pool that is computed rather than stored on the\n/// blockchain. The functions here may have variable gas costs.\ninterface IUniswapV3PoolDerivedState {\n    /// @notice Returns the cumulative tick and liquidity as of each timestamp `secondsAgo` from the current block timestamp\n    /// @dev To get a time weighted average tick or liquidity-in-range, you must call this with two values, one representing\n    /// the beginning of the period and another for the end of the period. E.g., to get the last hour time-weighted average tick,\n    /// you must call it with secondsAgos = [3600, 0].\n    /// @dev The time weighted average tick represents the geometric time weighted average price of the pool, in\n    /// log base sqrt(1.0001) of token1 / token0. The TickMath library can be used to go from a tick value to a ratio.\n    /// @param secondsAgos From how long ago each cumulative tick and liquidity value should be returned\n    /// @return tickCumulatives Cumulative tick values as of each `secondsAgos` from the current block timestamp\n    /// @return secondsPerLiquidityCumulativeX128s Cumulative seconds per liquidity-in-range value as of each `secondsAgos` from the current block\n    /// timestamp\n    function observe(uint32[] calldata secondsAgos)\n        external\n        view\n        returns (int56[] memory tickCumulatives, uint160[] memory secondsPerLiquidityCumulativeX128s);\n\n    /// @notice Returns a snapshot of the tick cumulative, seconds per liquidity and seconds inside a tick range\n    /// @dev Snapshots must only be compared to other snapshots, taken over a period for which a position existed.\n    /// I.e., snapshots cannot be compared if a position is not held for the entire period between when the first\n    /// snapshot is taken and the second snapshot is taken.\n    /// @param tickLower The lower tick of the range\n    /// @param tickUpper The upper tick of the range\n    /// @return tickCumulativeInside The snapshot of the tick accumulator for the range\n    /// @return secondsPerLiquidityInsideX128 The snapshot of seconds per liquidity for the range\n    /// @return secondsInside The snapshot of seconds per liquidity for the range\n    function snapshotCumulativesInside(int24 tickLower, int24 tickUpper)\n        external\n        view\n        returns (\n            int56 tickCumulativeInside,\n            uint160 secondsPerLiquidityInsideX128,\n            uint32 secondsInside\n        );\n}\n"},"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolState.sol":{"content":"// SPDX-License-Identifier: GPL-2.0-or-later\npragma solidity >=0.5.0;\n\n/// @title Pool state that can change\n/// @notice These methods compose the pool's state, and can change with any frequency including multiple times\n/// per transaction\ninterface IUniswapV3PoolState {\n    /// @notice The 0th storage slot in the pool stores many values, and is exposed as a single method to save gas\n    /// when accessed externally.\n    /// @return sqrtPriceX96 The current price of the pool as a sqrt(token1/token0) Q64.96 value\n    /// tick The current tick of the pool, i.e. according to the last tick transition that was run.\n    /// This value may not always be equal to SqrtTickMath.getTickAtSqrtRatio(sqrtPriceX96) if the price is on a tick\n    /// boundary.\n    /// observationIndex The index of the last oracle observation that was written,\n    /// observationCardinality The current maximum number of observations stored in the pool,\n    /// observationCardinalityNext The next maximum number of observations, to be updated when the observation.\n    /// feeProtocol The protocol fee for both tokens of the pool.\n    /// Encoded as two 4 bit values, where the protocol fee of token1 is shifted 4 bits and the protocol fee of token0\n    /// 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.\n    /// unlocked Whether the pool is currently locked to reentrancy\n    function slot0()\n        external\n        view\n        returns (\n            uint160 sqrtPriceX96,\n            int24 tick,\n            uint16 observationIndex,\n            uint16 observationCardinality,\n            uint16 observationCardinalityNext,\n            uint8 feeProtocol,\n            bool unlocked\n        );\n\n    /// @notice The fee growth as a Q128.128 fees of token0 collected per unit of liquidity for the entire life of the pool\n    /// @dev This value can overflow the uint256\n    function feeGrowthGlobal0X128() external view returns (uint256);\n\n    /// @notice The fee growth as a Q128.128 fees of token1 collected per unit of liquidity for the entire life of the pool\n    /// @dev This value can overflow the uint256\n    function feeGrowthGlobal1X128() external view returns (uint256);\n\n    /// @notice The amounts of token0 and token1 that are owed to the protocol\n    /// @dev Protocol fees will never exceed uint128 max in either token\n    function protocolFees() external view returns (uint128 token0, uint128 token1);\n\n    /// @notice The currently in range liquidity available to the pool\n    /// @dev This value has no relationship to the total liquidity across all ticks\n    function liquidity() external view returns (uint128);\n\n    /// @notice Look up information about a specific tick in the pool\n    /// @param tick The tick to look up\n    /// @return liquidityGross the total amount of position liquidity that uses the pool either as tick lower or\n    /// tick upper,\n    /// liquidityNet how much liquidity changes when the pool price crosses the tick,\n    /// feeGrowthOutside0X128 the fee growth on the other side of the tick from the current tick in token0,\n    /// feeGrowthOutside1X128 the fee growth on the other side of the tick from the current tick in token1,\n    /// tickCumulativeOutside the cumulative tick value on the other side of the tick from the current tick\n    /// secondsPerLiquidityOutsideX128 the seconds spent per liquidity on the other side of the tick from the current tick,\n    /// secondsOutside the seconds spent on the other side of the tick from the current tick,\n    /// initialized Set to true if the tick is initialized, i.e. liquidityGross is greater than 0, otherwise equal to false.\n    /// Outside values can only be used if the tick is initialized, i.e. if liquidityGross is greater than 0.\n    /// In addition, these values are only relative and must be used only in comparison to previous snapshots for\n    /// a specific position.\n    function ticks(int24 tick)\n        external\n        view\n        returns (\n            uint128 liquidityGross,\n            int128 liquidityNet,\n            uint256 feeGrowthOutside0X128,\n            uint256 feeGrowthOutside1X128,\n            int56 tickCumulativeOutside,\n            uint160 secondsPerLiquidityOutsideX128,\n            uint32 secondsOutside,\n            bool initialized\n        );\n\n    /// @notice Returns 256 packed tick initialized boolean values. See TickBitmap for more information\n    function tickBitmap(int16 wordPosition) external view returns (uint256);\n\n    /// @notice Returns the information about a position by the position's key\n    /// @param key The position's key is a hash of a preimage composed by the owner, tickLower and tickUpper\n    /// @return _liquidity The amount of liquidity in the position,\n    /// Returns feeGrowthInside0LastX128 fee growth of token0 inside the tick range as of the last mint/burn/poke,\n    /// Returns feeGrowthInside1LastX128 fee growth of token1 inside the tick range as of the last mint/burn/poke,\n    /// Returns tokensOwed0 the computed amount of token0 owed to the position as of the last mint/burn/poke,\n    /// Returns tokensOwed1 the computed amount of token1 owed to the position as of the last mint/burn/poke\n    function positions(bytes32 key)\n        external\n        view\n        returns (\n            uint128 _liquidity,\n            uint256 feeGrowthInside0LastX128,\n            uint256 feeGrowthInside1LastX128,\n            uint128 tokensOwed0,\n            uint128 tokensOwed1\n        );\n\n    /// @notice Returns data about a specific observation index\n    /// @param index The element of the observations array to fetch\n    /// @dev You most likely want to use #observe() instead of this method to get an observation as of some amount of time\n    /// ago, rather than at a specific index in the array.\n    /// @return blockTimestamp The timestamp of the observation,\n    /// Returns tickCumulative the tick multiplied by seconds elapsed for the life of the pool as of the observation timestamp,\n    /// Returns secondsPerLiquidityCumulativeX128 the seconds per in range liquidity for the life of the pool as of the observation timestamp,\n    /// Returns initialized whether the observation has been initialized and the values are safe to use\n    function observations(uint256 index)\n        external\n        view\n        returns (\n            uint32 blockTimestamp,\n            int56 tickCumulative,\n            uint160 secondsPerLiquidityCumulativeX128,\n            bool initialized\n        );\n}\n"},"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolActions.sol":{"content":"// SPDX-License-Identifier: GPL-2.0-or-later\npragma solidity >=0.5.0;\n\n/// @title Permissionless pool actions\n/// @notice Contains pool methods that can be called by anyone\ninterface IUniswapV3PoolActions {\n    /// @notice Sets the initial price for the pool\n    /// @dev Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value\n    /// @param sqrtPriceX96 the initial sqrt price of the pool as a Q64.96\n    function initialize(uint160 sqrtPriceX96) external;\n\n    /// @notice Adds liquidity for the given recipient/tickLower/tickUpper position\n    /// @dev The caller of this method receives a callback in the form of IUniswapV3MintCallback#uniswapV3MintCallback\n    /// in which they must pay any token0 or token1 owed for the liquidity. The amount of token0/token1 due depends\n    /// on tickLower, tickUpper, the amount of liquidity, and the current price.\n    /// @param recipient The address for which the liquidity will be created\n    /// @param tickLower The lower tick of the position in which to add liquidity\n    /// @param tickUpper The upper tick of the position in which to add liquidity\n    /// @param amount The amount of liquidity to mint\n    /// @param data Any data that should be passed through to the callback\n    /// @return amount0 The amount of token0 that was paid to mint the given amount of liquidity. Matches the value in the callback\n    /// @return amount1 The amount of token1 that was paid to mint the given amount of liquidity. Matches the value in the callback\n    function mint(\n        address recipient,\n        int24 tickLower,\n        int24 tickUpper,\n        uint128 amount,\n        bytes calldata data\n    ) external returns (uint256 amount0, uint256 amount1);\n\n    /// @notice Collects tokens owed to a position\n    /// @dev Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity.\n    /// Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or\n    /// amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the\n    /// actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity.\n    /// @param recipient The address which should receive the fees collected\n    /// @param tickLower The lower tick of the position for which to collect fees\n    /// @param tickUpper The upper tick of the position for which to collect fees\n    /// @param amount0Requested How much token0 should be withdrawn from the fees owed\n    /// @param amount1Requested How much token1 should be withdrawn from the fees owed\n    /// @return amount0 The amount of fees collected in token0\n    /// @return amount1 The amount of fees collected in token1\n    function collect(\n        address recipient,\n        int24 tickLower,\n        int24 tickUpper,\n        uint128 amount0Requested,\n        uint128 amount1Requested\n    ) external returns (uint128 amount0, uint128 amount1);\n\n    /// @notice Burn liquidity from the sender and account tokens owed for the liquidity to the position\n    /// @dev Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0\n    /// @dev Fees must be collected separately via a call to #collect\n    /// @param tickLower The lower tick of the position for which to burn liquidity\n    /// @param tickUpper The upper tick of the position for which to burn liquidity\n    /// @param amount How much liquidity to burn\n    /// @return amount0 The amount of token0 sent to the recipient\n    /// @return amount1 The amount of token1 sent to the recipient\n    function burn(\n        int24 tickLower,\n        int24 tickUpper,\n        uint128 amount\n    ) external returns (uint256 amount0, uint256 amount1);\n\n    /// @notice Swap token0 for token1, or token1 for token0\n    /// @dev The caller of this method receives a callback in the form of IUniswapV3SwapCallback#uniswapV3SwapCallback\n    /// @param recipient The address to receive the output of the swap\n    /// @param zeroForOne The direction of the swap, true for token0 to token1, false for token1 to token0\n    /// @param amountSpecified The amount of the swap, which implicitly configures the swap as exact input (positive), or exact output (negative)\n    /// @param sqrtPriceLimitX96 The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this\n    /// value after the swap. If one for zero, the price cannot be greater than this value after the swap\n    /// @param data Any data to be passed through to the callback\n    /// @return amount0 The delta of the balance of token0 of the pool, exact when negative, minimum when positive\n    /// @return amount1 The delta of the balance of token1 of the pool, exact when negative, minimum when positive\n    function swap(\n        address recipient,\n        bool zeroForOne,\n        int256 amountSpecified,\n        uint160 sqrtPriceLimitX96,\n        bytes calldata data\n    ) external returns (int256 amount0, int256 amount1);\n\n    /// @notice Receive token0 and/or token1 and pay it back, plus a fee, in the callback\n    /// @dev The caller of this method receives a callback in the form of IUniswapV3FlashCallback#uniswapV3FlashCallback\n    /// @dev Can be used to donate underlying tokens pro-rata to currently in-range liquidity providers by calling\n    /// with 0 amount{0,1} and sending the donation amount(s) from the callback\n    /// @param recipient The address which will receive the token0 and token1 amounts\n    /// @param amount0 The amount of token0 to send\n    /// @param amount1 The amount of token1 to send\n    /// @param data Any data to be passed through to the callback\n    function flash(\n        address recipient,\n        uint256 amount0,\n        uint256 amount1,\n        bytes calldata data\n    ) external;\n\n    /// @notice Increase the maximum number of price and liquidity observations that this pool will store\n    /// @dev This method is no-op if the pool already has an observationCardinalityNext greater than or equal to\n    /// the input observationCardinalityNext.\n    /// @param observationCardinalityNext The desired minimum number of observations for the pool to store\n    function increaseObservationCardinalityNext(uint16 observationCardinalityNext) external;\n}\n"},"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolOwnerActions.sol":{"content":"// SPDX-License-Identifier: GPL-2.0-or-later\npragma solidity >=0.5.0;\n\n/// @title Permissioned pool actions\n/// @notice Contains pool methods that may only be called by the factory owner\ninterface IUniswapV3PoolOwnerActions {\n    /// @notice Set the denominator of the protocol's % share of the fees\n    /// @param feeProtocol0 new protocol fee for token0 of the pool\n    /// @param feeProtocol1 new protocol fee for token1 of the pool\n    function setFeeProtocol(uint8 feeProtocol0, uint8 feeProtocol1) external;\n\n    /// @notice Collect the protocol fee accrued to the pool\n    /// @param recipient The address to which collected protocol fees should be sent\n    /// @param amount0Requested The maximum amount of token0 to send, can be 0 to collect fees in only token1\n    /// @param amount1Requested The maximum amount of token1 to send, can be 0 to collect fees in only token0\n    /// @return amount0 The protocol fee collected in token0\n    /// @return amount1 The protocol fee collected in token1\n    function collectProtocol(\n        address recipient,\n        uint128 amount0Requested,\n        uint128 amount1Requested\n    ) external returns (uint128 amount0, uint128 amount1);\n}\n"},"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolEvents.sol":{"content":"// SPDX-License-Identifier: GPL-2.0-or-later\npragma solidity >=0.5.0;\n\n/// @title Events emitted by a pool\n/// @notice Contains all events emitted by the pool\ninterface IUniswapV3PoolEvents {\n    /// @notice Emitted exactly once by a pool when #initialize is first called on the pool\n    /// @dev Mint/Burn/Swap cannot be emitted by the pool before Initialize\n    /// @param sqrtPriceX96 The initial sqrt price of the pool, as a Q64.96\n    /// @param tick The initial tick of the pool, i.e. log base 1.0001 of the starting price of the pool\n    event Initialize(uint160 sqrtPriceX96, int24 tick);\n\n    /// @notice Emitted when liquidity is minted for a given position\n    /// @param sender The address that minted the liquidity\n    /// @param owner The owner of the position and recipient of any minted liquidity\n    /// @param tickLower The lower tick of the position\n    /// @param tickUpper The upper tick of the position\n    /// @param amount The amount of liquidity minted to the position range\n    /// @param amount0 How much token0 was required for the minted liquidity\n    /// @param amount1 How much token1 was required for the minted liquidity\n    event Mint(\n        address sender,\n        address indexed owner,\n        int24 indexed tickLower,\n        int24 indexed tickUpper,\n        uint128 amount,\n        uint256 amount0,\n        uint256 amount1\n    );\n\n    /// @notice Emitted when fees are collected by the owner of a position\n    /// @dev Collect events may be emitted with zero amount0 and amount1 when the caller chooses not to collect fees\n    /// @param owner The owner of the position for which fees are collected\n    /// @param tickLower The lower tick of the position\n    /// @param tickUpper The upper tick of the position\n    /// @param amount0 The amount of token0 fees collected\n    /// @param amount1 The amount of token1 fees collected\n    event Collect(\n        address indexed owner,\n        address recipient,\n        int24 indexed tickLower,\n        int24 indexed tickUpper,\n        uint128 amount0,\n        uint128 amount1\n    );\n\n    /// @notice Emitted when a position's liquidity is removed\n    /// @dev Does not withdraw any fees earned by the liquidity position, which must be withdrawn via #collect\n    /// @param owner The owner of the position for which liquidity is removed\n    /// @param tickLower The lower tick of the position\n    /// @param tickUpper The upper tick of the position\n    /// @param amount The amount of liquidity to remove\n    /// @param amount0 The amount of token0 withdrawn\n    /// @param amount1 The amount of token1 withdrawn\n    event Burn(\n        address indexed owner,\n        int24 indexed tickLower,\n        int24 indexed tickUpper,\n        uint128 amount,\n        uint256 amount0,\n        uint256 amount1\n    );\n\n    /// @notice Emitted by the pool for any swaps between token0 and token1\n    /// @param sender The address that initiated the swap call, and that received the callback\n    /// @param recipient The address that received the output of the swap\n    /// @param amount0 The delta of the token0 balance of the pool\n    /// @param amount1 The delta of the token1 balance of the pool\n    /// @param sqrtPriceX96 The sqrt(price) of the pool after the swap, as a Q64.96\n    /// @param liquidity The liquidity of the pool after the swap\n    /// @param tick The log base 1.0001 of price of the pool after the swap\n    event Swap(\n        address indexed sender,\n        address indexed recipient,\n        int256 amount0,\n        int256 amount1,\n        uint160 sqrtPriceX96,\n        uint128 liquidity,\n        int24 tick\n    );\n\n    /// @notice Emitted by the pool for any flashes of token0/token1\n    /// @param sender The address that initiated the swap call, and that received the callback\n    /// @param recipient The address that received the tokens from flash\n    /// @param amount0 The amount of token0 that was flashed\n    /// @param amount1 The amount of token1 that was flashed\n    /// @param paid0 The amount of token0 paid for the flash, which can exceed the amount0 plus the fee\n    /// @param paid1 The amount of token1 paid for the flash, which can exceed the amount1 plus the fee\n    event Flash(\n        address indexed sender,\n        address indexed recipient,\n        uint256 amount0,\n        uint256 amount1,\n        uint256 paid0,\n        uint256 paid1\n    );\n\n    /// @notice Emitted by the pool for increases to the number of observations that can be stored\n    /// @dev observationCardinalityNext is not the observation cardinality until an observation is written at the index\n    /// just before a mint/swap/burn.\n    /// @param observationCardinalityNextOld The previous value of the next observation cardinality\n    /// @param observationCardinalityNextNew The updated value of the next observation cardinality\n    event IncreaseObservationCardinalityNext(\n        uint16 observationCardinalityNextOld,\n        uint16 observationCardinalityNextNew\n    );\n\n    /// @notice Emitted when the protocol fee is changed by the pool\n    /// @param feeProtocol0Old The previous value of the token0 protocol fee\n    /// @param feeProtocol1Old The previous value of the token1 protocol fee\n    /// @param feeProtocol0New The updated value of the token0 protocol fee\n    /// @param feeProtocol1New The updated value of the token1 protocol fee\n    event SetFeeProtocol(uint8 feeProtocol0Old, uint8 feeProtocol1Old, uint8 feeProtocol0New, uint8 feeProtocol1New);\n\n    /// @notice Emitted when the collected protocol fees are withdrawn by the factory owner\n    /// @param sender The address that collects the protocol fees\n    /// @param recipient The address that receives the collected protocol fees\n    /// @param amount0 The amount of token0 protocol fees that is withdrawn\n    /// @param amount0 The amount of token1 protocol fees that is withdrawn\n    event CollectProtocol(address indexed sender, address indexed recipient, uint128 amount0, uint128 amount1);\n}\n"},"contracts/interfaces/IRegistry.sol":{"content":"// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\nimport {IAccessControl} from \"@openzeppelin/contracts/access/IAccessControl.sol\";\n\ninterface IRegistry is IAccessControl {\n    event MahaChanged(address indexed whom, address _old, address _new);\n    event VoterChanged(address indexed whom, address _old, address _new);\n    event LockerChanged(address indexed whom, address _old, address _new);\n    event GovernorChanged(address indexed whom, address _old, address _new);\n    event StakerChanged(address indexed whom, address _old, address _new);\n    event EmissionControllerChanged(\n        address indexed whom,\n        address _old,\n        address _new\n    );\n\n    function maha() external view returns (address);\n\n    function gaugeVoter() external view returns (address);\n\n    function locker() external view returns (address);\n\n    function staker() external view returns (address);\n\n    function emissionController() external view returns (address);\n\n    function governor() external view returns (address);\n\n    function getAllAddresses()\n        external\n        view\n        returns (\n            address,\n            address,\n            address,\n            address,\n            address\n        );\n\n    function ensureNotPaused() external;\n\n    function setMAHA(address _new) external;\n\n    function setEmissionController(address _new) external;\n\n    function setStaker(address _new) external;\n\n    function setVoter(address _new) external;\n\n    function setLocker(address _new) external;\n\n    function setGovernor(address _new) external;\n}\n"},"@openzeppelin/contracts/access/IAccessControl.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev External interface of AccessControl declared to support ERC165 detection.\n */\ninterface IAccessControl {\n    /**\n     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`\n     *\n     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite\n     * {RoleAdminChanged} not being emitted signaling this.\n     *\n     * _Available since v3.1._\n     */\n    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);\n\n    /**\n     * @dev Emitted when `account` is granted `role`.\n     *\n     * `sender` is the account that originated the contract call, an admin role\n     * bearer except when using {AccessControl-_setupRole}.\n     */\n    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);\n\n    /**\n     * @dev Emitted when `account` is revoked `role`.\n     *\n     * `sender` is the account that originated the contract call:\n     *   - if using `revokeRole`, it is the admin role bearer\n     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)\n     */\n    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);\n\n    /**\n     * @dev Returns `true` if `account` has been granted `role`.\n     */\n    function hasRole(bytes32 role, address account) external view returns (bool);\n\n    /**\n     * @dev Returns the admin role that controls `role`. See {grantRole} and\n     * {revokeRole}.\n     *\n     * To change a role's admin, use {AccessControl-_setRoleAdmin}.\n     */\n    function getRoleAdmin(bytes32 role) external view returns (bytes32);\n\n    /**\n     * @dev Grants `role` to `account`.\n     *\n     * If `account` had not been already granted `role`, emits a {RoleGranted}\n     * event.\n     *\n     * Requirements:\n     *\n     * - the caller must have ``role``'s admin role.\n     */\n    function grantRole(bytes32 role, address account) external;\n\n    /**\n     * @dev Revokes `role` from `account`.\n     *\n     * If `account` had been granted `role`, emits a {RoleRevoked} event.\n     *\n     * Requirements:\n     *\n     * - the caller must have ``role``'s admin role.\n     */\n    function revokeRole(bytes32 role, address account) external;\n\n    /**\n     * @dev Revokes `role` from the calling account.\n     *\n     * Roles are often managed via {grantRole} and {revokeRole}: this function's\n     * purpose is to provide a mechanism for accounts to lose their privileges\n     * if they are compromised (such as when a trusted device is misplaced).\n     *\n     * If the calling account had been granted `role`, emits a {RoleRevoked}\n     * event.\n     *\n     * Requirements:\n     *\n     * - the caller must be `account`.\n     */\n    function renounceRole(bytes32 role, address account) external;\n}\n"},"@openzeppelin/contracts/interfaces/IERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../token/ERC20/IERC20.sol\";\n"},"@openzeppelin/contracts/proxy/utils/Initializable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol)\n\npragma solidity ^0.8.2;\n\nimport \"../../utils/Address.sol\";\n\n/**\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n *\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\n * reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\n * case an upgrade adds a module that needs to be initialized.\n *\n * For example:\n *\n * [.hljs-theme-light.nopadding]\n * ```\n * contract MyToken is ERC20Upgradeable {\n *     function initialize() initializer public {\n *         __ERC20_init(\"MyToken\", \"MTK\");\n *     }\n * }\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\n *     function initializeV2() reinitializer(2) public {\n *         __ERC20Permit_init(\"MyToken\");\n *     }\n * }\n * ```\n *\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n *\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n *\n * [CAUTION]\n * ====\n * Avoid leaving a contract uninitialized.\n *\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\n *\n * [.hljs-theme-light.nopadding]\n * ```\n * /// @custom:oz-upgrades-unsafe-allow constructor\n * constructor() {\n *     _disableInitializers();\n * }\n * ```\n * ====\n */\nabstract contract Initializable {\n    /**\n     * @dev Indicates that the contract has been initialized.\n     * @custom:oz-retyped-from bool\n     */\n    uint8 private _initialized;\n\n    /**\n     * @dev Indicates that the contract is in the process of being initialized.\n     */\n    bool private _initializing;\n\n    /**\n     * @dev Triggered when the contract has been initialized or reinitialized.\n     */\n    event Initialized(uint8 version);\n\n    /**\n     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\n     * `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`.\n     */\n    modifier initializer() {\n        bool isTopLevelCall = !_initializing;\n        require(\n            (isTopLevelCall && _initialized < 1) || (!Address.isContract(address(this)) && _initialized == 1),\n            \"Initializable: contract is already initialized\"\n        );\n        _initialized = 1;\n        if (isTopLevelCall) {\n            _initializing = true;\n        }\n        _;\n        if (isTopLevelCall) {\n            _initializing = false;\n            emit Initialized(1);\n        }\n    }\n\n    /**\n     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\n     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\n     * used to initialize parent contracts.\n     *\n     * `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original\n     * initialization step. This is essential to configure modules that are added through upgrades and that require\n     * initialization.\n     *\n     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\n     * a contract, executing them in the right order is up to the developer or operator.\n     */\n    modifier reinitializer(uint8 version) {\n        require(!_initializing && _initialized < version, \"Initializable: contract is already initialized\");\n        _initialized = version;\n        _initializing = true;\n        _;\n        _initializing = false;\n        emit Initialized(version);\n    }\n\n    /**\n     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\n     * {initializer} and {reinitializer} modifiers, directly or indirectly.\n     */\n    modifier onlyInitializing() {\n        require(_initializing, \"Initializable: contract is not initializing\");\n        _;\n    }\n\n    /**\n     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\n     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\n     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\n     * through proxies.\n     */\n    function _disableInitializers() internal virtual {\n        require(!_initializing, \"Initializable: contract is initializing\");\n        if (_initialized < type(uint8).max) {\n            _initialized = type(uint8).max;\n            emit Initialized(type(uint8).max);\n        }\n    }\n}\n"},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n    /**\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\n     * another (`to`).\n     *\n     * Note that `value` may be zero.\n     */\n    event Transfer(address indexed from, address indexed to, uint256 value);\n\n    /**\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n     * a call to {approve}. `value` is the new allowance.\n     */\n    event Approval(address indexed owner, address indexed spender, uint256 value);\n\n    /**\n     * @dev Returns the amount of tokens in existence.\n     */\n    function totalSupply() external view returns (uint256);\n\n    /**\n     * @dev Returns the amount of tokens owned by `account`.\n     */\n    function balanceOf(address account) external view returns (uint256);\n\n    /**\n     * @dev Moves `amount` tokens from the caller's account to `to`.\n     *\n     * Returns a boolean value indicating whether the operation succeeded.\n     *\n     * Emits a {Transfer} event.\n     */\n    function transfer(address to, uint256 amount) external returns (bool);\n\n    /**\n     * @dev Returns the remaining number of tokens that `spender` will be\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\n     * zero by default.\n     *\n     * This value changes when {approve} or {transferFrom} are called.\n     */\n    function allowance(address owner, address spender) external view returns (uint256);\n\n    /**\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n     *\n     * Returns a boolean value indicating whether the operation succeeded.\n     *\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\n     * that someone may use both the old and the new allowance by unfortunate\n     * transaction ordering. One possible solution to mitigate this race\n     * condition is to first reduce the spender's allowance to 0 and set the\n     * desired value afterwards:\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n     *\n     * Emits an {Approval} event.\n     */\n    function approve(address spender, uint256 amount) external returns (bool);\n\n    /**\n     * @dev Moves `amount` tokens from `from` to `to` using the\n     * allowance mechanism. `amount` is then deducted from the caller's\n     * allowance.\n     *\n     * Returns a boolean value indicating whether the operation succeeded.\n     *\n     * Emits a {Transfer} event.\n     */\n    function transferFrom(\n        address from,\n        address to,\n        uint256 amount\n    ) external returns (bool);\n}\n"},"@openzeppelin/contracts/utils/Address.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n    /**\n     * @dev Returns true if `account` is a contract.\n     *\n     * [IMPORTANT]\n     * ====\n     * It is unsafe to assume that an address for which this function returns\n     * false is an externally-owned account (EOA) and not a contract.\n     *\n     * Among others, `isContract` will return false for the following\n     * types of addresses:\n     *\n     *  - an externally-owned account\n     *  - a contract in construction\n     *  - an address where a contract will be created\n     *  - an address where a contract lived, but was destroyed\n     * ====\n     *\n     * [IMPORTANT]\n     * ====\n     * You shouldn't rely on `isContract` to protect against flash loan attacks!\n     *\n     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n     * constructor.\n     * ====\n     */\n    function isContract(address account) internal view returns (bool) {\n        // This method relies on extcodesize/address.code.length, which returns 0\n        // for contracts in construction, since the code is only stored at the end\n        // of the constructor execution.\n\n        return account.code.length > 0;\n    }\n\n    /**\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n     * `recipient`, forwarding all available gas and reverting on errors.\n     *\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\n     * imposed by `transfer`, making them unable to receive funds via\n     * `transfer`. {sendValue} removes this limitation.\n     *\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n     *\n     * IMPORTANT: because control is transferred to `recipient`, care must be\n     * taken to not create reentrancy vulnerabilities. Consider using\n     * {ReentrancyGuard} or the\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n     */\n    function sendValue(address payable recipient, uint256 amount) internal {\n        require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n        (bool success, ) = recipient.call{value: amount}(\"\");\n        require(success, \"Address: unable to send value, recipient may have reverted\");\n    }\n\n    /**\n     * @dev Performs a Solidity function call using a low level `call`. A\n     * plain `call` is an unsafe replacement for a function call: use this\n     * function instead.\n     *\n     * If `target` reverts with a revert reason, it is bubbled up by this\n     * function (like regular Solidity function calls).\n     *\n     * Returns the raw returned data. To convert to the expected return value,\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n     *\n     * Requirements:\n     *\n     * - `target` must be a contract.\n     * - calling `target` with `data` must not revert.\n     *\n     * _Available since v3.1._\n     */\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n        return functionCall(target, data, \"Address: low-level call failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n     * `errorMessage` as a fallback revert reason when `target` reverts.\n     *\n     * _Available since v3.1._\n     */\n    function functionCall(\n        address target,\n        bytes memory data,\n        string memory errorMessage\n    ) internal returns (bytes memory) {\n        return functionCallWithValue(target, data, 0, errorMessage);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but also transferring `value` wei to `target`.\n     *\n     * Requirements:\n     *\n     * - the calling contract must have an ETH balance of at least `value`.\n     * - the called Solidity function must be `payable`.\n     *\n     * _Available since v3.1._\n     */\n    function functionCallWithValue(\n        address target,\n        bytes memory data,\n        uint256 value\n    ) internal returns (bytes memory) {\n        return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\n     *\n     * _Available since v3.1._\n     */\n    function functionCallWithValue(\n        address target,\n        bytes memory data,\n        uint256 value,\n        string memory errorMessage\n    ) internal returns (bytes memory) {\n        require(address(this).balance >= value, \"Address: insufficient balance for call\");\n        require(isContract(target), \"Address: call to non-contract\");\n\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\n        return verifyCallResult(success, returndata, errorMessage);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but performing a static call.\n     *\n     * _Available since v3.3._\n     */\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n        return functionStaticCall(target, data, \"Address: low-level static call failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n     * but performing a static call.\n     *\n     * _Available since v3.3._\n     */\n    function functionStaticCall(\n        address target,\n        bytes memory data,\n        string memory errorMessage\n    ) internal view returns (bytes memory) {\n        require(isContract(target), \"Address: static call to non-contract\");\n\n        (bool success, bytes memory returndata) = target.staticcall(data);\n        return verifyCallResult(success, returndata, errorMessage);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but performing a delegate call.\n     *\n     * _Available since v3.4._\n     */\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n        return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n     * but performing a delegate call.\n     *\n     * _Available since v3.4._\n     */\n    function functionDelegateCall(\n        address target,\n        bytes memory data,\n        string memory errorMessage\n    ) internal returns (bytes memory) {\n        require(isContract(target), \"Address: delegate call to non-contract\");\n\n        (bool success, bytes memory returndata) = target.delegatecall(data);\n        return verifyCallResult(success, returndata, errorMessage);\n    }\n\n    /**\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\n     * revert reason using the provided one.\n     *\n     * _Available since v4.3._\n     */\n    function verifyCallResult(\n        bool success,\n        bytes memory returndata,\n        string memory errorMessage\n    ) internal pure returns (bytes memory) {\n        if (success) {\n            return returndata;\n        } else {\n            // Look for revert reason and bubble it up if present\n            if (returndata.length > 0) {\n                // The easiest way to bubble the revert reason is using memory via assembly\n                /// @solidity memory-safe-assembly\n                assembly {\n                    let returndata_size := mload(returndata)\n                    revert(add(32, returndata), returndata_size)\n                }\n            } else {\n                revert(errorMessage);\n            }\n        }\n    }\n}\n"},"@openzeppelin/contracts/governance/utils/IVotes.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.5.0) (governance/utils/IVotes.sol)\npragma solidity ^0.8.0;\n\n/**\n * @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts.\n *\n * _Available since v4.5._\n */\ninterface IVotes {\n    /**\n     * @dev Emitted when an account changes their delegate.\n     */\n    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);\n\n    /**\n     * @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of votes.\n     */\n    event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance);\n\n    /**\n     * @dev Returns the current amount of votes that `account` has.\n     */\n    function getVotes(address account) external view returns (uint256);\n\n    /**\n     * @dev Returns the amount of votes that `account` had at the end of a past block (`blockNumber`).\n     */\n    function getPastVotes(address account, uint256 blockNumber) external view returns (uint256);\n\n    /**\n     * @dev Returns the total supply of votes available at the end of a past block (`blockNumber`).\n     *\n     * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.\n     * Votes that have not been delegated are still part of total supply, even though they would not participate in a\n     * vote.\n     */\n    function getPastTotalSupply(uint256 blockNumber) external view returns (uint256);\n\n    /**\n     * @dev Returns the delegate that `account` has chosen.\n     */\n    function delegates(address account) external view returns (address);\n\n    /**\n     * @dev Delegates votes from the sender to `delegatee`.\n     */\n    function delegate(address delegatee) external;\n\n    /**\n     * @dev Delegates votes from signer to `delegatee`.\n     */\n    function delegateBySig(\n        address delegatee,\n        uint256 nonce,\n        uint256 expiry,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) external;\n}\n"},"@openzeppelin/contracts/governance/IGovernor.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.2) (governance/IGovernor.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/introspection/ERC165.sol\";\n\n/**\n * @dev Interface of the {Governor} core.\n *\n * _Available since v4.3._\n */\nabstract contract IGovernor is IERC165 {\n    enum ProposalState {\n        Pending,\n        Active,\n        Canceled,\n        Defeated,\n        Succeeded,\n        Queued,\n        Expired,\n        Executed\n    }\n\n    /**\n     * @dev Emitted when a proposal is created.\n     */\n    event ProposalCreated(\n        uint256 proposalId,\n        address proposer,\n        address[] targets,\n        uint256[] values,\n        string[] signatures,\n        bytes[] calldatas,\n        uint256 startBlock,\n        uint256 endBlock,\n        string description\n    );\n\n    /**\n     * @dev Emitted when a proposal is canceled.\n     */\n    event ProposalCanceled(uint256 proposalId);\n\n    /**\n     * @dev Emitted when a proposal is executed.\n     */\n    event ProposalExecuted(uint256 proposalId);\n\n    /**\n     * @dev Emitted when a vote is cast without params.\n     *\n     * Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\n     */\n    event VoteCast(address indexed voter, uint256 proposalId, uint8 support, uint256 weight, string reason);\n\n    /**\n     * @dev Emitted when a vote is cast with params.\n     *\n     * Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\n     * `params` are additional encoded parameters. Their intepepretation also depends on the voting module used.\n     */\n    event VoteCastWithParams(\n        address indexed voter,\n        uint256 proposalId,\n        uint8 support,\n        uint256 weight,\n        string reason,\n        bytes params\n    );\n\n    /**\n     * @notice module:core\n     * @dev Name of the governor instance (used in building the ERC712 domain separator).\n     */\n    function name() public view virtual returns (string memory);\n\n    /**\n     * @notice module:core\n     * @dev Version of the governor instance (used in building the ERC712 domain separator). Default: \"1\"\n     */\n    function version() public view virtual returns (string memory);\n\n    /**\n     * @notice module:voting\n     * @dev A description of the possible `support` values for {castVote} and the way these votes are counted, meant to\n     * be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of\n     * key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`.\n     *\n     * There are 2 standard keys: `support` and `quorum`.\n     *\n     * - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`.\n     * - `quorum=bravo` means that only For votes are counted towards quorum.\n     * - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum.\n     *\n     * If a counting module makes use of encoded `params`, it should  include this under a `params` key with a unique\n     * name that describes the behavior. For example:\n     *\n     * - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain.\n     * - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote.\n     *\n     * NOTE: The string can be decoded by the standard\n     * https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`]\n     * JavaScript class.\n     */\n    // solhint-disable-next-line func-name-mixedcase\n    function COUNTING_MODE() public pure virtual returns (string memory);\n\n    /**\n     * @notice module:core\n     * @dev Hashing function used to (re)build the proposal id from the proposal details..\n     */\n    function hashProposal(\n        address[] memory targets,\n        uint256[] memory values,\n        bytes[] memory calldatas,\n        bytes32 descriptionHash\n    ) public pure virtual returns (uint256);\n\n    /**\n     * @notice module:core\n     * @dev Current state of a proposal, following Compound's convention\n     */\n    function state(uint256 proposalId) public view virtual returns (ProposalState);\n\n    /**\n     * @notice module:core\n     * @dev Block number used to retrieve user's votes and quorum. As per Compound's Comp and OpenZeppelin's\n     * ERC20Votes, the snapshot is performed at the end of this block. Hence, voting for this proposal starts at the\n     * beginning of the following block.\n     */\n    function proposalSnapshot(uint256 proposalId) public view virtual returns (uint256);\n\n    /**\n     * @notice module:core\n     * @dev Block number at which votes close. Votes close at the end of this block, so it is possible to cast a vote\n     * during this block.\n     */\n    function proposalDeadline(uint256 proposalId) public view virtual returns (uint256);\n\n    /**\n     * @notice module:user-config\n     * @dev Delay, in number of block, between the proposal is created and the vote starts. This can be increassed to\n     * leave time for users to buy voting power, or delegate it, before the voting of a proposal starts.\n     */\n    function votingDelay() public view virtual returns (uint256);\n\n    /**\n     * @notice module:user-config\n     * @dev Delay, in number of blocks, between the vote start and vote ends.\n     *\n     * NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting\n     * duration compared to the voting delay.\n     */\n    function votingPeriod() public view virtual returns (uint256);\n\n    /**\n     * @notice module:user-config\n     * @dev Minimum number of cast voted required for a proposal to be successful.\n     *\n     * Note: The `blockNumber` parameter corresponds to the snapshot used for counting vote. This allows to scale the\n     * quorum depending on values such as the totalSupply of a token at this block (see {ERC20Votes}).\n     */\n    function quorum(uint256 blockNumber) public view virtual returns (uint256);\n\n    /**\n     * @notice module:reputation\n     * @dev Voting power of an `account` at a specific `blockNumber`.\n     *\n     * Note: this can be implemented in a number of ways, for example by reading the delegated balance from one (or\n     * multiple), {ERC20Votes} tokens.\n     */\n    function getVotes(address account, uint256 blockNumber) public view virtual returns (uint256);\n\n    /**\n     * @notice module:reputation\n     * @dev Voting power of an `account` at a specific `blockNumber` given additional encoded parameters.\n     */\n    function getVotesWithParams(\n        address account,\n        uint256 blockNumber,\n        bytes memory params\n    ) public view virtual returns (uint256);\n\n    /**\n     * @notice module:voting\n     * @dev Returns weither `account` has cast a vote on `proposalId`.\n     */\n    function hasVoted(uint256 proposalId, address account) public view virtual returns (bool);\n\n    /**\n     * @dev Create a new proposal. Vote start {IGovernor-votingDelay} blocks after the proposal is created and ends\n     * {IGovernor-votingPeriod} blocks after the voting starts.\n     *\n     * Emits a {ProposalCreated} event.\n     */\n    function propose(\n        address[] memory targets,\n        uint256[] memory values,\n        bytes[] memory calldatas,\n        string memory description\n    ) public virtual returns (uint256 proposalId);\n\n    /**\n     * @dev Execute a successful proposal. This requires the quorum to be reached, the vote to be successful, and the\n     * deadline to be reached.\n     *\n     * Emits a {ProposalExecuted} event.\n     *\n     * Note: some module can modify the requirements for execution, for example by adding an additional timelock.\n     */\n    function execute(\n        address[] memory targets,\n        uint256[] memory values,\n        bytes[] memory calldatas,\n        bytes32 descriptionHash\n    ) public payable virtual returns (uint256 proposalId);\n\n    /**\n     * @dev Cast a vote\n     *\n     * Emits a {VoteCast} event.\n     */\n    function castVote(uint256 proposalId, uint8 support) public virtual returns (uint256 balance);\n\n    /**\n     * @dev Cast a vote with a reason\n     *\n     * Emits a {VoteCast} event.\n     */\n    function castVoteWithReason(\n        uint256 proposalId,\n        uint8 support,\n        string calldata reason\n    ) public virtual returns (uint256 balance);\n\n    /**\n     * @dev Cast a vote with a reason and additional encoded parameters\n     *\n     * Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params.\n     */\n    function castVoteWithReasonAndParams(\n        uint256 proposalId,\n        uint8 support,\n        string calldata reason,\n        bytes memory params\n    ) public virtual returns (uint256 balance);\n\n    /**\n     * @dev Cast a vote using the user's cryptographic signature.\n     *\n     * Emits a {VoteCast} event.\n     */\n    function castVoteBySig(\n        uint256 proposalId,\n        uint8 support,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) public virtual returns (uint256 balance);\n\n    /**\n     * @dev Cast a vote with a reason and additional encoded parameters using the user's cryptographic signature.\n     *\n     * Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params.\n     */\n    function castVoteWithReasonAndParamsBySig(\n        uint256 proposalId,\n        uint8 support,\n        string calldata reason,\n        bytes memory params,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) public virtual returns (uint256 balance);\n}\n"},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC165.sol\";\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\n * for the additional interface id that will be supported. For example:\n *\n * ```solidity\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n * }\n * ```\n *\n * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\n */\nabstract contract ERC165 is IERC165 {\n    /**\n     * @dev See {IERC165-supportsInterface}.\n     */\n    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n        return interfaceId == type(IERC165).interfaceId;\n    }\n}\n"}},"settings":{"optimizer":{"enabled":true,"runs":100},"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata"],"":["ast"]}}}},"output":{"sources":{"@openzeppelin/contracts/access/IAccessControl.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/IAccessControl.sol","exportedSymbols":{"IAccessControl":[72]},"id":73,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"94:23:0"},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"interface","documentation":{"id":2,"nodeType":"StructuredDocumentation","src":"119:89:0","text":" @dev External interface of AccessControl declared to support ERC165 detection."},"fullyImplemented":false,"id":72,"linearizedBaseContracts":[72],"name":"IAccessControl","nameLocation":"219:14:0","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":3,"nodeType":"StructuredDocumentation","src":"240:292:0","text":" @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`\n `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite\n {RoleAdminChanged} not being emitted signaling this.\n _Available since v3.1._"},"id":11,"name":"RoleAdminChanged","nameLocation":"543:16:0","nodeType":"EventDefinition","parameters":{"id":10,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"576:4:0","nodeType":"VariableDeclaration","scope":11,"src":"560:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4,"name":"bytes32","nodeType":"ElementaryTypeName","src":"560:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":7,"indexed":true,"mutability":"mutable","name":"previousAdminRole","nameLocation":"598:17:0","nodeType":"VariableDeclaration","scope":11,"src":"582:33:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6,"name":"bytes32","nodeType":"ElementaryTypeName","src":"582:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9,"indexed":true,"mutability":"mutable","name":"newAdminRole","nameLocation":"633:12:0","nodeType":"VariableDeclaration","scope":11,"src":"617:28:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8,"name":"bytes32","nodeType":"ElementaryTypeName","src":"617:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"559:87:0"},"src":"537:110:0"},{"anonymous":false,"documentation":{"id":12,"nodeType":"StructuredDocumentation","src":"653:212:0","text":" @dev Emitted when `account` is granted `role`.\n `sender` is the account that originated the contract call, an admin role\n bearer except when using {AccessControl-_setupRole}."},"id":20,"name":"RoleGranted","nameLocation":"876:11:0","nodeType":"EventDefinition","parameters":{"id":19,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"904:4:0","nodeType":"VariableDeclaration","scope":20,"src":"888:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13,"name":"bytes32","nodeType":"ElementaryTypeName","src":"888:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"926:7:0","nodeType":"VariableDeclaration","scope":20,"src":"910:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15,"name":"address","nodeType":"ElementaryTypeName","src":"910:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"951:6:0","nodeType":"VariableDeclaration","scope":20,"src":"935:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17,"name":"address","nodeType":"ElementaryTypeName","src":"935:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"887:71:0"},"src":"870:89:0"},{"anonymous":false,"documentation":{"id":21,"nodeType":"StructuredDocumentation","src":"965:275:0","text":" @dev Emitted when `account` is revoked `role`.\n `sender` is the account that originated the contract call:\n   - if using `revokeRole`, it is the admin role bearer\n   - if using `renounceRole`, it is the role bearer (i.e. `account`)"},"id":29,"name":"RoleRevoked","nameLocation":"1251:11:0","nodeType":"EventDefinition","parameters":{"id":28,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"1279:4:0","nodeType":"VariableDeclaration","scope":29,"src":"1263:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":22,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1263:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":25,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1301:7:0","nodeType":"VariableDeclaration","scope":29,"src":"1285:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24,"name":"address","nodeType":"ElementaryTypeName","src":"1285:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":27,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1326:6:0","nodeType":"VariableDeclaration","scope":29,"src":"1310:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":26,"name":"address","nodeType":"ElementaryTypeName","src":"1310:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1262:71:0"},"src":"1245:89:0"},{"documentation":{"id":30,"nodeType":"StructuredDocumentation","src":"1340:76:0","text":" @dev Returns `true` if `account` has been granted `role`."},"functionSelector":"91d14854","id":39,"implemented":false,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"1430:7:0","nodeType":"FunctionDefinition","parameters":{"id":35,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32,"mutability":"mutable","name":"role","nameLocation":"1446:4:0","nodeType":"VariableDeclaration","scope":39,"src":"1438:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":31,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1438:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":34,"mutability":"mutable","name":"account","nameLocation":"1460:7:0","nodeType":"VariableDeclaration","scope":39,"src":"1452:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":33,"name":"address","nodeType":"ElementaryTypeName","src":"1452:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1437:31:0"},"returnParameters":{"id":38,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39,"src":"1492:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":36,"name":"bool","nodeType":"ElementaryTypeName","src":"1492:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1491:6:0"},"scope":72,"src":"1421:77:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":40,"nodeType":"StructuredDocumentation","src":"1504:184:0","text":" @dev Returns the admin role that controls `role`. See {grantRole} and\n {revokeRole}.\n To change a role's admin, use {AccessControl-_setRoleAdmin}."},"functionSelector":"248a9ca3","id":47,"implemented":false,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"1702:12:0","nodeType":"FunctionDefinition","parameters":{"id":43,"nodeType":"ParameterList","parameters":[{"constant":false,"id":42,"mutability":"mutable","name":"role","nameLocation":"1723:4:0","nodeType":"VariableDeclaration","scope":47,"src":"1715:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":41,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1715:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1714:14:0"},"returnParameters":{"id":46,"nodeType":"ParameterList","parameters":[{"constant":false,"id":45,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":47,"src":"1752:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":44,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1752:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1751:9:0"},"scope":72,"src":"1693:68:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":48,"nodeType":"StructuredDocumentation","src":"1767:239:0","text":" @dev Grants `role` to `account`.\n If `account` had not been already granted `role`, emits a {RoleGranted}\n event.\n Requirements:\n - the caller must have ``role``'s admin role."},"functionSelector":"2f2ff15d","id":55,"implemented":false,"kind":"function","modifiers":[],"name":"grantRole","nameLocation":"2020:9:0","nodeType":"FunctionDefinition","parameters":{"id":53,"nodeType":"ParameterList","parameters":[{"constant":false,"id":50,"mutability":"mutable","name":"role","nameLocation":"2038:4:0","nodeType":"VariableDeclaration","scope":55,"src":"2030:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":49,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2030:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":52,"mutability":"mutable","name":"account","nameLocation":"2052:7:0","nodeType":"VariableDeclaration","scope":55,"src":"2044:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":51,"name":"address","nodeType":"ElementaryTypeName","src":"2044:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2029:31:0"},"returnParameters":{"id":54,"nodeType":"ParameterList","parameters":[],"src":"2069:0:0"},"scope":72,"src":"2011:59:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":56,"nodeType":"StructuredDocumentation","src":"2076:223:0","text":" @dev Revokes `role` from `account`.\n If `account` had been granted `role`, emits a {RoleRevoked} event.\n Requirements:\n - the caller must have ``role``'s admin role."},"functionSelector":"d547741f","id":63,"implemented":false,"kind":"function","modifiers":[],"name":"revokeRole","nameLocation":"2313:10:0","nodeType":"FunctionDefinition","parameters":{"id":61,"nodeType":"ParameterList","parameters":[{"constant":false,"id":58,"mutability":"mutable","name":"role","nameLocation":"2332:4:0","nodeType":"VariableDeclaration","scope":63,"src":"2324:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":57,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2324:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":60,"mutability":"mutable","name":"account","nameLocation":"2346:7:0","nodeType":"VariableDeclaration","scope":63,"src":"2338:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":59,"name":"address","nodeType":"ElementaryTypeName","src":"2338:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2323:31:0"},"returnParameters":{"id":62,"nodeType":"ParameterList","parameters":[],"src":"2363:0:0"},"scope":72,"src":"2304:60:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":64,"nodeType":"StructuredDocumentation","src":"2370:480:0","text":" @dev Revokes `role` from the calling account.\n Roles are often managed via {grantRole} and {revokeRole}: this function's\n purpose is to provide a mechanism for accounts to lose their privileges\n if they are compromised (such as when a trusted device is misplaced).\n If the calling account had been granted `role`, emits a {RoleRevoked}\n event.\n Requirements:\n - the caller must be `account`."},"functionSelector":"36568abe","id":71,"implemented":false,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"2864:12:0","nodeType":"FunctionDefinition","parameters":{"id":69,"nodeType":"ParameterList","parameters":[{"constant":false,"id":66,"mutability":"mutable","name":"role","nameLocation":"2885:4:0","nodeType":"VariableDeclaration","scope":71,"src":"2877:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":65,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2877:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":68,"mutability":"mutable","name":"account","nameLocation":"2899:7:0","nodeType":"VariableDeclaration","scope":71,"src":"2891:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":67,"name":"address","nodeType":"ElementaryTypeName","src":"2891:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2876:31:0"},"returnParameters":{"id":70,"nodeType":"ParameterList","parameters":[],"src":"2916:0:0"},"scope":72,"src":"2855:62:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":73,"src":"209:2710:0","usedErrors":[]}],"src":"94:2826:0"},"id":0},"@openzeppelin/contracts/governance/IGovernor.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/IGovernor.sol","exportedSymbols":{"ERC165":[1253],"IERC165":[1265],"IGovernor":[369]},"id":370,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":74,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"108:23:1"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"../utils/introspection/ERC165.sol","id":75,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":370,"sourceUnit":1254,"src":"133:43:1","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":77,"name":"IERC165","nodeType":"IdentifierPath","referencedDeclaration":1265,"src":"289:7:1"},"id":78,"nodeType":"InheritanceSpecifier","src":"289:7:1"}],"contractDependencies":[],"contractKind":"contract","documentation":{"id":76,"nodeType":"StructuredDocumentation","src":"178:79:1","text":" @dev Interface of the {Governor} core.\n _Available since v4.3._"},"fullyImplemented":false,"id":369,"linearizedBaseContracts":[369,1265],"name":"IGovernor","nameLocation":"276:9:1","nodeType":"ContractDefinition","nodes":[{"canonicalName":"IGovernor.ProposalState","id":87,"members":[{"id":79,"name":"Pending","nameLocation":"332:7:1","nodeType":"EnumValue","src":"332:7:1"},{"id":80,"name":"Active","nameLocation":"349:6:1","nodeType":"EnumValue","src":"349:6:1"},{"id":81,"name":"Canceled","nameLocation":"365:8:1","nodeType":"EnumValue","src":"365:8:1"},{"id":82,"name":"Defeated","nameLocation":"383:8:1","nodeType":"EnumValue","src":"383:8:1"},{"id":83,"name":"Succeeded","nameLocation":"401:9:1","nodeType":"EnumValue","src":"401:9:1"},{"id":84,"name":"Queued","nameLocation":"420:6:1","nodeType":"EnumValue","src":"420:6:1"},{"id":85,"name":"Expired","nameLocation":"436:7:1","nodeType":"EnumValue","src":"436:7:1"},{"id":86,"name":"Executed","nameLocation":"453:8:1","nodeType":"EnumValue","src":"453:8:1"}],"name":"ProposalState","nameLocation":"308:13:1","nodeType":"EnumDefinition","src":"303:164:1"},{"anonymous":false,"documentation":{"id":88,"nodeType":"StructuredDocumentation","src":"473:59:1","text":" @dev Emitted when a proposal is created."},"id":112,"name":"ProposalCreated","nameLocation":"543:15:1","nodeType":"EventDefinition","parameters":{"id":111,"nodeType":"ParameterList","parameters":[{"constant":false,"id":90,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"576:10:1","nodeType":"VariableDeclaration","scope":112,"src":"568:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":89,"name":"uint256","nodeType":"ElementaryTypeName","src":"568:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":92,"indexed":false,"mutability":"mutable","name":"proposer","nameLocation":"604:8:1","nodeType":"VariableDeclaration","scope":112,"src":"596:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":91,"name":"address","nodeType":"ElementaryTypeName","src":"596:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":95,"indexed":false,"mutability":"mutable","name":"targets","nameLocation":"632:7:1","nodeType":"VariableDeclaration","scope":112,"src":"622:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":93,"name":"address","nodeType":"ElementaryTypeName","src":"622:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":94,"nodeType":"ArrayTypeName","src":"622:9:1","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":98,"indexed":false,"mutability":"mutable","name":"values","nameLocation":"659:6:1","nodeType":"VariableDeclaration","scope":112,"src":"649:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":96,"name":"uint256","nodeType":"ElementaryTypeName","src":"649:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":97,"nodeType":"ArrayTypeName","src":"649:9:1","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":101,"indexed":false,"mutability":"mutable","name":"signatures","nameLocation":"684:10:1","nodeType":"VariableDeclaration","scope":112,"src":"675:19:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":99,"name":"string","nodeType":"ElementaryTypeName","src":"675:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":100,"nodeType":"ArrayTypeName","src":"675:8:1","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":104,"indexed":false,"mutability":"mutable","name":"calldatas","nameLocation":"712:9:1","nodeType":"VariableDeclaration","scope":112,"src":"704:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":102,"name":"bytes","nodeType":"ElementaryTypeName","src":"704:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":103,"nodeType":"ArrayTypeName","src":"704:7:1","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":106,"indexed":false,"mutability":"mutable","name":"startBlock","nameLocation":"739:10:1","nodeType":"VariableDeclaration","scope":112,"src":"731:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":105,"name":"uint256","nodeType":"ElementaryTypeName","src":"731:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":108,"indexed":false,"mutability":"mutable","name":"endBlock","nameLocation":"767:8:1","nodeType":"VariableDeclaration","scope":112,"src":"759:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":107,"name":"uint256","nodeType":"ElementaryTypeName","src":"759:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":110,"indexed":false,"mutability":"mutable","name":"description","nameLocation":"792:11:1","nodeType":"VariableDeclaration","scope":112,"src":"785:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":109,"name":"string","nodeType":"ElementaryTypeName","src":"785:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"558:251:1"},"src":"537:273:1"},{"anonymous":false,"documentation":{"id":113,"nodeType":"StructuredDocumentation","src":"816:60:1","text":" @dev Emitted when a proposal is canceled."},"id":117,"name":"ProposalCanceled","nameLocation":"887:16:1","nodeType":"EventDefinition","parameters":{"id":116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":115,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"912:10:1","nodeType":"VariableDeclaration","scope":117,"src":"904:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":114,"name":"uint256","nodeType":"ElementaryTypeName","src":"904:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"903:20:1"},"src":"881:43:1"},{"anonymous":false,"documentation":{"id":118,"nodeType":"StructuredDocumentation","src":"930:60:1","text":" @dev Emitted when a proposal is executed."},"id":122,"name":"ProposalExecuted","nameLocation":"1001:16:1","nodeType":"EventDefinition","parameters":{"id":121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":120,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"1026:10:1","nodeType":"VariableDeclaration","scope":122,"src":"1018:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":119,"name":"uint256","nodeType":"ElementaryTypeName","src":"1018:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1017:20:1"},"src":"995:43:1"},{"anonymous":false,"documentation":{"id":123,"nodeType":"StructuredDocumentation","src":"1044:187:1","text":" @dev Emitted when a vote is cast without params.\n Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used."},"id":135,"name":"VoteCast","nameLocation":"1242:8:1","nodeType":"EventDefinition","parameters":{"id":134,"nodeType":"ParameterList","parameters":[{"constant":false,"id":125,"indexed":true,"mutability":"mutable","name":"voter","nameLocation":"1267:5:1","nodeType":"VariableDeclaration","scope":135,"src":"1251:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":124,"name":"address","nodeType":"ElementaryTypeName","src":"1251:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":127,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"1282:10:1","nodeType":"VariableDeclaration","scope":135,"src":"1274:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":126,"name":"uint256","nodeType":"ElementaryTypeName","src":"1274:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":129,"indexed":false,"mutability":"mutable","name":"support","nameLocation":"1300:7:1","nodeType":"VariableDeclaration","scope":135,"src":"1294:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":128,"name":"uint8","nodeType":"ElementaryTypeName","src":"1294:5:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":131,"indexed":false,"mutability":"mutable","name":"weight","nameLocation":"1317:6:1","nodeType":"VariableDeclaration","scope":135,"src":"1309:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":130,"name":"uint256","nodeType":"ElementaryTypeName","src":"1309:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":133,"indexed":false,"mutability":"mutable","name":"reason","nameLocation":"1332:6:1","nodeType":"VariableDeclaration","scope":135,"src":"1325:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":132,"name":"string","nodeType":"ElementaryTypeName","src":"1325:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1250:89:1"},"src":"1236:104:1"},{"anonymous":false,"documentation":{"id":136,"nodeType":"StructuredDocumentation","src":"1346:297:1","text":" @dev Emitted when a vote is cast with params.\n Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\n `params` are additional encoded parameters. Their intepepretation also depends on the voting module used."},"id":150,"name":"VoteCastWithParams","nameLocation":"1654:18:1","nodeType":"EventDefinition","parameters":{"id":149,"nodeType":"ParameterList","parameters":[{"constant":false,"id":138,"indexed":true,"mutability":"mutable","name":"voter","nameLocation":"1698:5:1","nodeType":"VariableDeclaration","scope":150,"src":"1682:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":137,"name":"address","nodeType":"ElementaryTypeName","src":"1682:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":140,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"1721:10:1","nodeType":"VariableDeclaration","scope":150,"src":"1713:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":139,"name":"uint256","nodeType":"ElementaryTypeName","src":"1713:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":142,"indexed":false,"mutability":"mutable","name":"support","nameLocation":"1747:7:1","nodeType":"VariableDeclaration","scope":150,"src":"1741:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":141,"name":"uint8","nodeType":"ElementaryTypeName","src":"1741:5:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":144,"indexed":false,"mutability":"mutable","name":"weight","nameLocation":"1772:6:1","nodeType":"VariableDeclaration","scope":150,"src":"1764:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":143,"name":"uint256","nodeType":"ElementaryTypeName","src":"1764:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":146,"indexed":false,"mutability":"mutable","name":"reason","nameLocation":"1795:6:1","nodeType":"VariableDeclaration","scope":150,"src":"1788:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":145,"name":"string","nodeType":"ElementaryTypeName","src":"1788:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":148,"indexed":false,"mutability":"mutable","name":"params","nameLocation":"1817:6:1","nodeType":"VariableDeclaration","scope":150,"src":"1811:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":147,"name":"bytes","nodeType":"ElementaryTypeName","src":"1811:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1672:157:1"},"src":"1648:182:1"},{"documentation":{"id":151,"nodeType":"StructuredDocumentation","src":"1836:128:1","text":" @notice module:core\n @dev Name of the governor instance (used in building the ERC712 domain separator)."},"functionSelector":"06fdde03","id":156,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"1978:4:1","nodeType":"FunctionDefinition","parameters":{"id":152,"nodeType":"ParameterList","parameters":[],"src":"1982:2:1"},"returnParameters":{"id":155,"nodeType":"ParameterList","parameters":[{"constant":false,"id":154,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":156,"src":"2014:13:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":153,"name":"string","nodeType":"ElementaryTypeName","src":"2014:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2013:15:1"},"scope":369,"src":"1969:60:1","stateMutability":"view","virtual":true,"visibility":"public"},{"documentation":{"id":157,"nodeType":"StructuredDocumentation","src":"2035:144:1","text":" @notice module:core\n @dev Version of the governor instance (used in building the ERC712 domain separator). Default: \"1\""},"functionSelector":"54fd4d50","id":162,"implemented":false,"kind":"function","modifiers":[],"name":"version","nameLocation":"2193:7:1","nodeType":"FunctionDefinition","parameters":{"id":158,"nodeType":"ParameterList","parameters":[],"src":"2200:2:1"},"returnParameters":{"id":161,"nodeType":"ParameterList","parameters":[{"constant":false,"id":160,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":162,"src":"2232:13:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":159,"name":"string","nodeType":"ElementaryTypeName","src":"2232:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2231:15:1"},"scope":369,"src":"2184:63:1","stateMutability":"view","virtual":true,"visibility":"public"},{"documentation":{"id":163,"nodeType":"StructuredDocumentation","src":"2253:1315:1","text":" @notice module:voting\n @dev A description of the possible `support` values for {castVote} and the way these votes are counted, meant to\n be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of\n key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`.\n There are 2 standard keys: `support` and `quorum`.\n - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`.\n - `quorum=bravo` means that only For votes are counted towards quorum.\n - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum.\n If a counting module makes use of encoded `params`, it should  include this under a `params` key with a unique\n name that describes the behavior. For example:\n - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain.\n - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote.\n NOTE: The string can be decoded by the standard\n https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`]\n JavaScript class."},"functionSelector":"dd4e2ba5","id":168,"implemented":false,"kind":"function","modifiers":[],"name":"COUNTING_MODE","nameLocation":"3635:13:1","nodeType":"FunctionDefinition","parameters":{"id":164,"nodeType":"ParameterList","parameters":[],"src":"3648:2:1"},"returnParameters":{"id":167,"nodeType":"ParameterList","parameters":[{"constant":false,"id":166,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":168,"src":"3680:13:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":165,"name":"string","nodeType":"ElementaryTypeName","src":"3680:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3679:15:1"},"scope":369,"src":"3626:69:1","stateMutability":"pure","virtual":true,"visibility":"public"},{"documentation":{"id":169,"nodeType":"StructuredDocumentation","src":"3701:129:1","text":" @notice module:core\n @dev Hashing function used to (re)build the proposal id from the proposal details.."},"functionSelector":"c59057e4","id":185,"implemented":false,"kind":"function","modifiers":[],"name":"hashProposal","nameLocation":"3844:12:1","nodeType":"FunctionDefinition","parameters":{"id":181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":172,"mutability":"mutable","name":"targets","nameLocation":"3883:7:1","nodeType":"VariableDeclaration","scope":185,"src":"3866:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":170,"name":"address","nodeType":"ElementaryTypeName","src":"3866:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":171,"nodeType":"ArrayTypeName","src":"3866:9:1","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":175,"mutability":"mutable","name":"values","nameLocation":"3917:6:1","nodeType":"VariableDeclaration","scope":185,"src":"3900:23:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":173,"name":"uint256","nodeType":"ElementaryTypeName","src":"3900:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":174,"nodeType":"ArrayTypeName","src":"3900:9:1","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":178,"mutability":"mutable","name":"calldatas","nameLocation":"3948:9:1","nodeType":"VariableDeclaration","scope":185,"src":"3933:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":176,"name":"bytes","nodeType":"ElementaryTypeName","src":"3933:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":177,"nodeType":"ArrayTypeName","src":"3933:7:1","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":180,"mutability":"mutable","name":"descriptionHash","nameLocation":"3975:15:1","nodeType":"VariableDeclaration","scope":185,"src":"3967:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":179,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3967:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3856:140:1"},"returnParameters":{"id":184,"nodeType":"ParameterList","parameters":[{"constant":false,"id":183,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":185,"src":"4026:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":182,"name":"uint256","nodeType":"ElementaryTypeName","src":"4026:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4025:9:1"},"scope":369,"src":"3835:200:1","stateMutability":"pure","virtual":true,"visibility":"public"},{"documentation":{"id":186,"nodeType":"StructuredDocumentation","src":"4041:111:1","text":" @notice module:core\n @dev Current state of a proposal, following Compound's convention"},"functionSelector":"3e4f49e6","id":194,"implemented":false,"kind":"function","modifiers":[],"name":"state","nameLocation":"4166:5:1","nodeType":"FunctionDefinition","parameters":{"id":189,"nodeType":"ParameterList","parameters":[{"constant":false,"id":188,"mutability":"mutable","name":"proposalId","nameLocation":"4180:10:1","nodeType":"VariableDeclaration","scope":194,"src":"4172:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":187,"name":"uint256","nodeType":"ElementaryTypeName","src":"4172:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4171:20:1"},"returnParameters":{"id":193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":192,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":194,"src":"4221:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$87","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":191,"nodeType":"UserDefinedTypeName","pathNode":{"id":190,"name":"ProposalState","nodeType":"IdentifierPath","referencedDeclaration":87,"src":"4221:13:1"},"referencedDeclaration":87,"src":"4221:13:1","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$87","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"src":"4220:15:1"},"scope":369,"src":"4157:79:1","stateMutability":"view","virtual":true,"visibility":"public"},{"documentation":{"id":195,"nodeType":"StructuredDocumentation","src":"4242:305:1","text":" @notice module:core\n @dev Block number used to retrieve user's votes and quorum. As per Compound's Comp and OpenZeppelin's\n ERC20Votes, the snapshot is performed at the end of this block. Hence, voting for this proposal starts at the\n beginning of the following block."},"functionSelector":"2d63f693","id":202,"implemented":false,"kind":"function","modifiers":[],"name":"proposalSnapshot","nameLocation":"4561:16:1","nodeType":"FunctionDefinition","parameters":{"id":198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":197,"mutability":"mutable","name":"proposalId","nameLocation":"4586:10:1","nodeType":"VariableDeclaration","scope":202,"src":"4578:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":196,"name":"uint256","nodeType":"ElementaryTypeName","src":"4578:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4577:20:1"},"returnParameters":{"id":201,"nodeType":"ParameterList","parameters":[{"constant":false,"id":200,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":202,"src":"4627:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":199,"name":"uint256","nodeType":"ElementaryTypeName","src":"4627:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4626:9:1"},"scope":369,"src":"4552:84:1","stateMutability":"view","virtual":true,"visibility":"public"},{"documentation":{"id":203,"nodeType":"StructuredDocumentation","src":"4642:182:1","text":" @notice module:core\n @dev Block number at which votes close. Votes close at the end of this block, so it is possible to cast a vote\n during this block."},"functionSelector":"c01f9e37","id":210,"implemented":false,"kind":"function","modifiers":[],"name":"proposalDeadline","nameLocation":"4838:16:1","nodeType":"FunctionDefinition","parameters":{"id":206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":205,"mutability":"mutable","name":"proposalId","nameLocation":"4863:10:1","nodeType":"VariableDeclaration","scope":210,"src":"4855:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":204,"name":"uint256","nodeType":"ElementaryTypeName","src":"4855:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4854:20:1"},"returnParameters":{"id":209,"nodeType":"ParameterList","parameters":[{"constant":false,"id":208,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":210,"src":"4904:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":207,"name":"uint256","nodeType":"ElementaryTypeName","src":"4904:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4903:9:1"},"scope":369,"src":"4829:84:1","stateMutability":"view","virtual":true,"visibility":"public"},{"documentation":{"id":211,"nodeType":"StructuredDocumentation","src":"4919:268:1","text":" @notice module:user-config\n @dev Delay, in number of block, between the proposal is created and the vote starts. This can be increassed to\n leave time for users to buy voting power, or delegate it, before the voting of a proposal starts."},"functionSelector":"3932abb1","id":216,"implemented":false,"kind":"function","modifiers":[],"name":"votingDelay","nameLocation":"5201:11:1","nodeType":"FunctionDefinition","parameters":{"id":212,"nodeType":"ParameterList","parameters":[],"src":"5212:2:1"},"returnParameters":{"id":215,"nodeType":"ParameterList","parameters":[{"constant":false,"id":214,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":216,"src":"5244:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":213,"name":"uint256","nodeType":"ElementaryTypeName","src":"5244:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5243:9:1"},"scope":369,"src":"5192:61:1","stateMutability":"view","virtual":true,"visibility":"public"},{"documentation":{"id":217,"nodeType":"StructuredDocumentation","src":"5259:288:1","text":" @notice module:user-config\n @dev Delay, in number of blocks, between the vote start and vote ends.\n NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting\n duration compared to the voting delay."},"functionSelector":"02a251a3","id":222,"implemented":false,"kind":"function","modifiers":[],"name":"votingPeriod","nameLocation":"5561:12:1","nodeType":"FunctionDefinition","parameters":{"id":218,"nodeType":"ParameterList","parameters":[],"src":"5573:2:1"},"returnParameters":{"id":221,"nodeType":"ParameterList","parameters":[{"constant":false,"id":220,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":222,"src":"5605:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":219,"name":"uint256","nodeType":"ElementaryTypeName","src":"5605:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5604:9:1"},"scope":369,"src":"5552:62:1","stateMutability":"view","virtual":true,"visibility":"public"},{"documentation":{"id":223,"nodeType":"StructuredDocumentation","src":"5620:356:1","text":" @notice module:user-config\n @dev Minimum number of cast voted required for a proposal to be successful.\n Note: The `blockNumber` parameter corresponds to the snapshot used for counting vote. This allows to scale the\n quorum depending on values such as the totalSupply of a token at this block (see {ERC20Votes})."},"functionSelector":"f8ce560a","id":230,"implemented":false,"kind":"function","modifiers":[],"name":"quorum","nameLocation":"5990:6:1","nodeType":"FunctionDefinition","parameters":{"id":226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":225,"mutability":"mutable","name":"blockNumber","nameLocation":"6005:11:1","nodeType":"VariableDeclaration","scope":230,"src":"5997:19:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":224,"name":"uint256","nodeType":"ElementaryTypeName","src":"5997:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5996:21:1"},"returnParameters":{"id":229,"nodeType":"ParameterList","parameters":[{"constant":false,"id":228,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":230,"src":"6047:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":227,"name":"uint256","nodeType":"ElementaryTypeName","src":"6047:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6046:9:1"},"scope":369,"src":"5981:75:1","stateMutability":"view","virtual":true,"visibility":"public"},{"documentation":{"id":231,"nodeType":"StructuredDocumentation","src":"6062:276:1","text":" @notice module:reputation\n @dev Voting power of an `account` at a specific `blockNumber`.\n Note: this can be implemented in a number of ways, for example by reading the delegated balance from one (or\n multiple), {ERC20Votes} tokens."},"functionSelector":"eb9019d4","id":240,"implemented":false,"kind":"function","modifiers":[],"name":"getVotes","nameLocation":"6352:8:1","nodeType":"FunctionDefinition","parameters":{"id":236,"nodeType":"ParameterList","parameters":[{"constant":false,"id":233,"mutability":"mutable","name":"account","nameLocation":"6369:7:1","nodeType":"VariableDeclaration","scope":240,"src":"6361:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":232,"name":"address","nodeType":"ElementaryTypeName","src":"6361:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":235,"mutability":"mutable","name":"blockNumber","nameLocation":"6386:11:1","nodeType":"VariableDeclaration","scope":240,"src":"6378:19:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":234,"name":"uint256","nodeType":"ElementaryTypeName","src":"6378:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6360:38:1"},"returnParameters":{"id":239,"nodeType":"ParameterList","parameters":[{"constant":false,"id":238,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":240,"src":"6428:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":237,"name":"uint256","nodeType":"ElementaryTypeName","src":"6428:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6427:9:1"},"scope":369,"src":"6343:94:1","stateMutability":"view","virtual":true,"visibility":"public"},{"documentation":{"id":241,"nodeType":"StructuredDocumentation","src":"6443:150:1","text":" @notice module:reputation\n @dev Voting power of an `account` at a specific `blockNumber` given additional encoded parameters."},"functionSelector":"9a802a6d","id":252,"implemented":false,"kind":"function","modifiers":[],"name":"getVotesWithParams","nameLocation":"6607:18:1","nodeType":"FunctionDefinition","parameters":{"id":248,"nodeType":"ParameterList","parameters":[{"constant":false,"id":243,"mutability":"mutable","name":"account","nameLocation":"6643:7:1","nodeType":"VariableDeclaration","scope":252,"src":"6635:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":242,"name":"address","nodeType":"ElementaryTypeName","src":"6635:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":245,"mutability":"mutable","name":"blockNumber","nameLocation":"6668:11:1","nodeType":"VariableDeclaration","scope":252,"src":"6660:19:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":244,"name":"uint256","nodeType":"ElementaryTypeName","src":"6660:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":247,"mutability":"mutable","name":"params","nameLocation":"6702:6:1","nodeType":"VariableDeclaration","scope":252,"src":"6689:19:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":246,"name":"bytes","nodeType":"ElementaryTypeName","src":"6689:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6625:89:1"},"returnParameters":{"id":251,"nodeType":"ParameterList","parameters":[{"constant":false,"id":250,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":252,"src":"6744:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":249,"name":"uint256","nodeType":"ElementaryTypeName","src":"6744:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6743:9:1"},"scope":369,"src":"6598:155:1","stateMutability":"view","virtual":true,"visibility":"public"},{"documentation":{"id":253,"nodeType":"StructuredDocumentation","src":"6759:111:1","text":" @notice module:voting\n @dev Returns weither `account` has cast a vote on `proposalId`."},"functionSelector":"43859632","id":262,"implemented":false,"kind":"function","modifiers":[],"name":"hasVoted","nameLocation":"6884:8:1","nodeType":"FunctionDefinition","parameters":{"id":258,"nodeType":"ParameterList","parameters":[{"constant":false,"id":255,"mutability":"mutable","name":"proposalId","nameLocation":"6901:10:1","nodeType":"VariableDeclaration","scope":262,"src":"6893:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":254,"name":"uint256","nodeType":"ElementaryTypeName","src":"6893:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":257,"mutability":"mutable","name":"account","nameLocation":"6921:7:1","nodeType":"VariableDeclaration","scope":262,"src":"6913:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":256,"name":"address","nodeType":"ElementaryTypeName","src":"6913:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6892:37:1"},"returnParameters":{"id":261,"nodeType":"ParameterList","parameters":[{"constant":false,"id":260,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":262,"src":"6959:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":259,"name":"bool","nodeType":"ElementaryTypeName","src":"6959:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6958:6:1"},"scope":369,"src":"6875:90:1","stateMutability":"view","virtual":true,"visibility":"public"},{"documentation":{"id":263,"nodeType":"StructuredDocumentation","src":"6971:238:1","text":" @dev Create a new proposal. Vote start {IGovernor-votingDelay} blocks after the proposal is created and ends\n {IGovernor-votingPeriod} blocks after the voting starts.\n Emits a {ProposalCreated} event."},"functionSelector":"7d5e81e2","id":279,"implemented":false,"kind":"function","modifiers":[],"name":"propose","nameLocation":"7223:7:1","nodeType":"FunctionDefinition","parameters":{"id":275,"nodeType":"ParameterList","parameters":[{"constant":false,"id":266,"mutability":"mutable","name":"targets","nameLocation":"7257:7:1","nodeType":"VariableDeclaration","scope":279,"src":"7240:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":264,"name":"address","nodeType":"ElementaryTypeName","src":"7240:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":265,"nodeType":"ArrayTypeName","src":"7240:9:1","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":269,"mutability":"mutable","name":"values","nameLocation":"7291:6:1","nodeType":"VariableDeclaration","scope":279,"src":"7274:23:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":267,"name":"uint256","nodeType":"ElementaryTypeName","src":"7274:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":268,"nodeType":"ArrayTypeName","src":"7274:9:1","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":272,"mutability":"mutable","name":"calldatas","nameLocation":"7322:9:1","nodeType":"VariableDeclaration","scope":279,"src":"7307:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":270,"name":"bytes","nodeType":"ElementaryTypeName","src":"7307:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":271,"nodeType":"ArrayTypeName","src":"7307:7:1","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":274,"mutability":"mutable","name":"description","nameLocation":"7355:11:1","nodeType":"VariableDeclaration","scope":279,"src":"7341:25:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":273,"name":"string","nodeType":"ElementaryTypeName","src":"7341:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7230:142:1"},"returnParameters":{"id":278,"nodeType":"ParameterList","parameters":[{"constant":false,"id":277,"mutability":"mutable","name":"proposalId","nameLocation":"7405:10:1","nodeType":"VariableDeclaration","scope":279,"src":"7397:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":276,"name":"uint256","nodeType":"ElementaryTypeName","src":"7397:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7396:20:1"},"scope":369,"src":"7214:203:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"documentation":{"id":280,"nodeType":"StructuredDocumentation","src":"7423:329:1","text":" @dev Execute a successful proposal. This requires the quorum to be reached, the vote to be successful, and the\n deadline to be reached.\n Emits a {ProposalExecuted} event.\n Note: some module can modify the requirements for execution, for example by adding an additional timelock."},"functionSelector":"2656227d","id":296,"implemented":false,"kind":"function","modifiers":[],"name":"execute","nameLocation":"7766:7:1","nodeType":"FunctionDefinition","parameters":{"id":292,"nodeType":"ParameterList","parameters":[{"constant":false,"id":283,"mutability":"mutable","name":"targets","nameLocation":"7800:7:1","nodeType":"VariableDeclaration","scope":296,"src":"7783:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":281,"name":"address","nodeType":"ElementaryTypeName","src":"7783:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":282,"nodeType":"ArrayTypeName","src":"7783:9:1","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":286,"mutability":"mutable","name":"values","nameLocation":"7834:6:1","nodeType":"VariableDeclaration","scope":296,"src":"7817:23:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":284,"name":"uint256","nodeType":"ElementaryTypeName","src":"7817:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":285,"nodeType":"ArrayTypeName","src":"7817:9:1","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":289,"mutability":"mutable","name":"calldatas","nameLocation":"7865:9:1","nodeType":"VariableDeclaration","scope":296,"src":"7850:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":287,"name":"bytes","nodeType":"ElementaryTypeName","src":"7850:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":288,"nodeType":"ArrayTypeName","src":"7850:7:1","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":291,"mutability":"mutable","name":"descriptionHash","nameLocation":"7892:15:1","nodeType":"VariableDeclaration","scope":296,"src":"7884:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":290,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7884:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7773:140:1"},"returnParameters":{"id":295,"nodeType":"ParameterList","parameters":[{"constant":false,"id":294,"mutability":"mutable","name":"proposalId","nameLocation":"7954:10:1","nodeType":"VariableDeclaration","scope":296,"src":"7946:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":293,"name":"uint256","nodeType":"ElementaryTypeName","src":"7946:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7945:20:1"},"scope":369,"src":"7757:209:1","stateMutability":"payable","virtual":true,"visibility":"public"},{"documentation":{"id":297,"nodeType":"StructuredDocumentation","src":"7972:75:1","text":" @dev Cast a vote\n Emits a {VoteCast} event."},"functionSelector":"56781388","id":306,"implemented":false,"kind":"function","modifiers":[],"name":"castVote","nameLocation":"8061:8:1","nodeType":"FunctionDefinition","parameters":{"id":302,"nodeType":"ParameterList","parameters":[{"constant":false,"id":299,"mutability":"mutable","name":"proposalId","nameLocation":"8078:10:1","nodeType":"VariableDeclaration","scope":306,"src":"8070:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":298,"name":"uint256","nodeType":"ElementaryTypeName","src":"8070:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":301,"mutability":"mutable","name":"support","nameLocation":"8096:7:1","nodeType":"VariableDeclaration","scope":306,"src":"8090:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":300,"name":"uint8","nodeType":"ElementaryTypeName","src":"8090:5:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"8069:35:1"},"returnParameters":{"id":305,"nodeType":"ParameterList","parameters":[{"constant":false,"id":304,"mutability":"mutable","name":"balance","nameLocation":"8137:7:1","nodeType":"VariableDeclaration","scope":306,"src":"8129:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":303,"name":"uint256","nodeType":"ElementaryTypeName","src":"8129:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8128:17:1"},"scope":369,"src":"8052:94:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"documentation":{"id":307,"nodeType":"StructuredDocumentation","src":"8152:89:1","text":" @dev Cast a vote with a reason\n Emits a {VoteCast} event."},"functionSelector":"7b3c71d3","id":318,"implemented":false,"kind":"function","modifiers":[],"name":"castVoteWithReason","nameLocation":"8255:18:1","nodeType":"FunctionDefinition","parameters":{"id":314,"nodeType":"ParameterList","parameters":[{"constant":false,"id":309,"mutability":"mutable","name":"proposalId","nameLocation":"8291:10:1","nodeType":"VariableDeclaration","scope":318,"src":"8283:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":308,"name":"uint256","nodeType":"ElementaryTypeName","src":"8283:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":311,"mutability":"mutable","name":"support","nameLocation":"8317:7:1","nodeType":"VariableDeclaration","scope":318,"src":"8311:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":310,"name":"uint8","nodeType":"ElementaryTypeName","src":"8311:5:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":313,"mutability":"mutable","name":"reason","nameLocation":"8350:6:1","nodeType":"VariableDeclaration","scope":318,"src":"8334:22:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":312,"name":"string","nodeType":"ElementaryTypeName","src":"8334:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8273:89:1"},"returnParameters":{"id":317,"nodeType":"ParameterList","parameters":[{"constant":false,"id":316,"mutability":"mutable","name":"balance","nameLocation":"8395:7:1","nodeType":"VariableDeclaration","scope":318,"src":"8387:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":315,"name":"uint256","nodeType":"ElementaryTypeName","src":"8387:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8386:17:1"},"scope":369,"src":"8246:158:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"documentation":{"id":319,"nodeType":"StructuredDocumentation","src":"8410:181:1","text":" @dev Cast a vote with a reason and additional encoded parameters\n Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params."},"functionSelector":"5f398a14","id":332,"implemented":false,"kind":"function","modifiers":[],"name":"castVoteWithReasonAndParams","nameLocation":"8605:27:1","nodeType":"FunctionDefinition","parameters":{"id":328,"nodeType":"ParameterList","parameters":[{"constant":false,"id":321,"mutability":"mutable","name":"proposalId","nameLocation":"8650:10:1","nodeType":"VariableDeclaration","scope":332,"src":"8642:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":320,"name":"uint256","nodeType":"ElementaryTypeName","src":"8642:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":323,"mutability":"mutable","name":"support","nameLocation":"8676:7:1","nodeType":"VariableDeclaration","scope":332,"src":"8670:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":322,"name":"uint8","nodeType":"ElementaryTypeName","src":"8670:5:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":325,"mutability":"mutable","name":"reason","nameLocation":"8709:6:1","nodeType":"VariableDeclaration","scope":332,"src":"8693:22:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":324,"name":"string","nodeType":"ElementaryTypeName","src":"8693:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":327,"mutability":"mutable","name":"params","nameLocation":"8738:6:1","nodeType":"VariableDeclaration","scope":332,"src":"8725:19:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":326,"name":"bytes","nodeType":"ElementaryTypeName","src":"8725:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8632:118:1"},"returnParameters":{"id":331,"nodeType":"ParameterList","parameters":[{"constant":false,"id":330,"mutability":"mutable","name":"balance","nameLocation":"8783:7:1","nodeType":"VariableDeclaration","scope":332,"src":"8775:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":329,"name":"uint256","nodeType":"ElementaryTypeName","src":"8775:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8774:17:1"},"scope":369,"src":"8596:196:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"documentation":{"id":333,"nodeType":"StructuredDocumentation","src":"8798:117:1","text":" @dev Cast a vote using the user's cryptographic signature.\n Emits a {VoteCast} event."},"functionSelector":"3bccf4fd","id":348,"implemented":false,"kind":"function","modifiers":[],"name":"castVoteBySig","nameLocation":"8929:13:1","nodeType":"FunctionDefinition","parameters":{"id":344,"nodeType":"ParameterList","parameters":[{"constant":false,"id":335,"mutability":"mutable","name":"proposalId","nameLocation":"8960:10:1","nodeType":"VariableDeclaration","scope":348,"src":"8952:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":334,"name":"uint256","nodeType":"ElementaryTypeName","src":"8952:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":337,"mutability":"mutable","name":"support","nameLocation":"8986:7:1","nodeType":"VariableDeclaration","scope":348,"src":"8980:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":336,"name":"uint8","nodeType":"ElementaryTypeName","src":"8980:5:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":339,"mutability":"mutable","name":"v","nameLocation":"9009:1:1","nodeType":"VariableDeclaration","scope":348,"src":"9003:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":338,"name":"uint8","nodeType":"ElementaryTypeName","src":"9003:5:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":341,"mutability":"mutable","name":"r","nameLocation":"9028:1:1","nodeType":"VariableDeclaration","scope":348,"src":"9020:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":340,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9020:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":343,"mutability":"mutable","name":"s","nameLocation":"9047:1:1","nodeType":"VariableDeclaration","scope":348,"src":"9039:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":342,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9039:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8942:112:1"},"returnParameters":{"id":347,"nodeType":"ParameterList","parameters":[{"constant":false,"id":346,"mutability":"mutable","name":"balance","nameLocation":"9087:7:1","nodeType":"VariableDeclaration","scope":348,"src":"9079:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":345,"name":"uint256","nodeType":"ElementaryTypeName","src":"9079:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9078:17:1"},"scope":369,"src":"8920:176:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"documentation":{"id":349,"nodeType":"StructuredDocumentation","src":"9102:223:1","text":" @dev Cast a vote with a reason and additional encoded parameters using the user's cryptographic signature.\n Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params."},"functionSelector":"03420181","id":368,"implemented":false,"kind":"function","modifiers":[],"name":"castVoteWithReasonAndParamsBySig","nameLocation":"9339:32:1","nodeType":"FunctionDefinition","parameters":{"id":364,"nodeType":"ParameterList","parameters":[{"constant":false,"id":351,"mutability":"mutable","name":"proposalId","nameLocation":"9389:10:1","nodeType":"VariableDeclaration","scope":368,"src":"9381:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":350,"name":"uint256","nodeType":"ElementaryTypeName","src":"9381:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":353,"mutability":"mutable","name":"support","nameLocation":"9415:7:1","nodeType":"VariableDeclaration","scope":368,"src":"9409:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":352,"name":"uint8","nodeType":"ElementaryTypeName","src":"9409:5:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":355,"mutability":"mutable","name":"reason","nameLocation":"9448:6:1","nodeType":"VariableDeclaration","scope":368,"src":"9432:22:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":354,"name":"string","nodeType":"ElementaryTypeName","src":"9432:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":357,"mutability":"mutable","name":"params","nameLocation":"9477:6:1","nodeType":"VariableDeclaration","scope":368,"src":"9464:19:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":356,"name":"bytes","nodeType":"ElementaryTypeName","src":"9464:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":359,"mutability":"mutable","name":"v","nameLocation":"9499:1:1","nodeType":"VariableDeclaration","scope":368,"src":"9493:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":358,"name":"uint8","nodeType":"ElementaryTypeName","src":"9493:5:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":361,"mutability":"mutable","name":"r","nameLocation":"9518:1:1","nodeType":"VariableDeclaration","scope":368,"src":"9510:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":360,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9510:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":363,"mutability":"mutable","name":"s","nameLocation":"9537:1:1","nodeType":"VariableDeclaration","scope":368,"src":"9529:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":362,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9529:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"9371:173:1"},"returnParameters":{"id":367,"nodeType":"ParameterList","parameters":[{"constant":false,"id":366,"mutability":"mutable","name":"balance","nameLocation":"9577:7:1","nodeType":"VariableDeclaration","scope":368,"src":"9569:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":365,"name":"uint256","nodeType":"ElementaryTypeName","src":"9569:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9568:17:1"},"scope":369,"src":"9330:256:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"}],"scope":370,"src":"258:9330:1","usedErrors":[]}],"src":"108:9481:1"},"id":1},"@openzeppelin/contracts/governance/extensions/IGovernorTimelock.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/extensions/IGovernorTimelock.sol","exportedSymbols":{"ERC165":[1253],"IERC165":[1265],"IGovernor":[369],"IGovernorTimelock":[410]},"id":411,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":371,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"112:23:2"},{"absolutePath":"@openzeppelin/contracts/governance/IGovernor.sol","file":"../IGovernor.sol","id":372,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":411,"sourceUnit":370,"src":"137:26:2","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":374,"name":"IGovernor","nodeType":"IdentifierPath","referencedDeclaration":369,"src":"312:9:2"},"id":375,"nodeType":"InheritanceSpecifier","src":"312:9:2"}],"contractDependencies":[],"contractKind":"contract","documentation":{"id":373,"nodeType":"StructuredDocumentation","src":"165:107:2","text":" @dev Extension of the {IGovernor} for timelock supporting modules.\n _Available since v4.3._"},"fullyImplemented":false,"id":410,"linearizedBaseContracts":[410,369,1265],"name":"IGovernorTimelock","nameLocation":"291:17:2","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"id":381,"name":"ProposalQueued","nameLocation":"334:14:2","nodeType":"EventDefinition","parameters":{"id":380,"nodeType":"ParameterList","parameters":[{"constant":false,"id":377,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"357:10:2","nodeType":"VariableDeclaration","scope":381,"src":"349:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":376,"name":"uint256","nodeType":"ElementaryTypeName","src":"349:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":379,"indexed":false,"mutability":"mutable","name":"eta","nameLocation":"377:3:2","nodeType":"VariableDeclaration","scope":381,"src":"369:11:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":378,"name":"uint256","nodeType":"ElementaryTypeName","src":"369:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"348:33:2"},"src":"328:54:2"},{"functionSelector":"d33219b4","id":386,"implemented":false,"kind":"function","modifiers":[],"name":"timelock","nameLocation":"397:8:2","nodeType":"FunctionDefinition","parameters":{"id":382,"nodeType":"ParameterList","parameters":[],"src":"405:2:2"},"returnParameters":{"id":385,"nodeType":"ParameterList","parameters":[{"constant":false,"id":384,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":386,"src":"437:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":383,"name":"address","nodeType":"ElementaryTypeName","src":"437:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"436:9:2"},"scope":410,"src":"388:58:2","stateMutability":"view","virtual":true,"visibility":"public"},{"functionSelector":"ab58fb8e","id":393,"implemented":false,"kind":"function","modifiers":[],"name":"proposalEta","nameLocation":"461:11:2","nodeType":"FunctionDefinition","parameters":{"id":389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":388,"mutability":"mutable","name":"proposalId","nameLocation":"481:10:2","nodeType":"VariableDeclaration","scope":393,"src":"473:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":387,"name":"uint256","nodeType":"ElementaryTypeName","src":"473:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"472:20:2"},"returnParameters":{"id":392,"nodeType":"ParameterList","parameters":[{"constant":false,"id":391,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":393,"src":"522:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":390,"name":"uint256","nodeType":"ElementaryTypeName","src":"522:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"521:9:2"},"scope":410,"src":"452:79:2","stateMutability":"view","virtual":true,"visibility":"public"},{"functionSelector":"160cbed7","id":409,"implemented":false,"kind":"function","modifiers":[],"name":"queue","nameLocation":"546:5:2","nodeType":"FunctionDefinition","parameters":{"id":405,"nodeType":"ParameterList","parameters":[{"constant":false,"id":396,"mutability":"mutable","name":"targets","nameLocation":"578:7:2","nodeType":"VariableDeclaration","scope":409,"src":"561:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":394,"name":"address","nodeType":"ElementaryTypeName","src":"561:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":395,"nodeType":"ArrayTypeName","src":"561:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":399,"mutability":"mutable","name":"values","nameLocation":"612:6:2","nodeType":"VariableDeclaration","scope":409,"src":"595:23:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":397,"name":"uint256","nodeType":"ElementaryTypeName","src":"595:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":398,"nodeType":"ArrayTypeName","src":"595:9:2","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":402,"mutability":"mutable","name":"calldatas","nameLocation":"643:9:2","nodeType":"VariableDeclaration","scope":409,"src":"628:24:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":400,"name":"bytes","nodeType":"ElementaryTypeName","src":"628:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":401,"nodeType":"ArrayTypeName","src":"628:7:2","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":404,"mutability":"mutable","name":"descriptionHash","nameLocation":"670:15:2","nodeType":"VariableDeclaration","scope":409,"src":"662:23:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":403,"name":"bytes32","nodeType":"ElementaryTypeName","src":"662:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"551:140:2"},"returnParameters":{"id":408,"nodeType":"ParameterList","parameters":[{"constant":false,"id":407,"mutability":"mutable","name":"proposalId","nameLocation":"724:10:2","nodeType":"VariableDeclaration","scope":409,"src":"716:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":406,"name":"uint256","nodeType":"ElementaryTypeName","src":"716:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"715:20:2"},"scope":410,"src":"537:199:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"}],"scope":411,"src":"273:465:2","usedErrors":[]}],"src":"112:627:2"},"id":2},"@openzeppelin/contracts/governance/utils/IVotes.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/utils/IVotes.sol","exportedSymbols":{"IVotes":[488]},"id":489,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":412,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"110:23:3"},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"interface","documentation":{"id":413,"nodeType":"StructuredDocumentation","src":"135:132:3","text":" @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts.\n _Available since v4.5._"},"fullyImplemented":false,"id":488,"linearizedBaseContracts":[488],"name":"IVotes","nameLocation":"278:6:3","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":414,"nodeType":"StructuredDocumentation","src":"291:71:3","text":" @dev Emitted when an account changes their delegate."},"id":422,"name":"DelegateChanged","nameLocation":"373:15:3","nodeType":"EventDefinition","parameters":{"id":421,"nodeType":"ParameterList","parameters":[{"constant":false,"id":416,"indexed":true,"mutability":"mutable","name":"delegator","nameLocation":"405:9:3","nodeType":"VariableDeclaration","scope":422,"src":"389:25:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":415,"name":"address","nodeType":"ElementaryTypeName","src":"389:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":418,"indexed":true,"mutability":"mutable","name":"fromDelegate","nameLocation":"432:12:3","nodeType":"VariableDeclaration","scope":422,"src":"416:28:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":417,"name":"address","nodeType":"ElementaryTypeName","src":"416:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":420,"indexed":true,"mutability":"mutable","name":"toDelegate","nameLocation":"462:10:3","nodeType":"VariableDeclaration","scope":422,"src":"446:26:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":419,"name":"address","nodeType":"ElementaryTypeName","src":"446:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"388:85:3"},"src":"367:107:3"},{"anonymous":false,"documentation":{"id":423,"nodeType":"StructuredDocumentation","src":"480:124:3","text":" @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of votes."},"id":431,"name":"DelegateVotesChanged","nameLocation":"615:20:3","nodeType":"EventDefinition","parameters":{"id":430,"nodeType":"ParameterList","parameters":[{"constant":false,"id":425,"indexed":true,"mutability":"mutable","name":"delegate","nameLocation":"652:8:3","nodeType":"VariableDeclaration","scope":431,"src":"636:24:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":424,"name":"address","nodeType":"ElementaryTypeName","src":"636:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":427,"indexed":false,"mutability":"mutable","name":"previousBalance","nameLocation":"670:15:3","nodeType":"VariableDeclaration","scope":431,"src":"662:23:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":426,"name":"uint256","nodeType":"ElementaryTypeName","src":"662:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":429,"indexed":false,"mutability":"mutable","name":"newBalance","nameLocation":"695:10:3","nodeType":"VariableDeclaration","scope":431,"src":"687:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":428,"name":"uint256","nodeType":"ElementaryTypeName","src":"687:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"635:71:3"},"src":"609:98:3"},{"documentation":{"id":432,"nodeType":"StructuredDocumentation","src":"713:79:3","text":" @dev Returns the current amount of votes that `account` has."},"functionSelector":"9ab24eb0","id":439,"implemented":false,"kind":"function","modifiers":[],"name":"getVotes","nameLocation":"806:8:3","nodeType":"FunctionDefinition","parameters":{"id":435,"nodeType":"ParameterList","parameters":[{"constant":false,"id":434,"mutability":"mutable","name":"account","nameLocation":"823:7:3","nodeType":"VariableDeclaration","scope":439,"src":"815:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":433,"name":"address","nodeType":"ElementaryTypeName","src":"815:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"814:17:3"},"returnParameters":{"id":438,"nodeType":"ParameterList","parameters":[{"constant":false,"id":437,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":439,"src":"855:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":436,"name":"uint256","nodeType":"ElementaryTypeName","src":"855:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"854:9:3"},"scope":488,"src":"797:67:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":440,"nodeType":"StructuredDocumentation","src":"870:114:3","text":" @dev Returns the amount of votes that `account` had at the end of a past block (`blockNumber`)."},"functionSelector":"3a46b1a8","id":449,"implemented":false,"kind":"function","modifiers":[],"name":"getPastVotes","nameLocation":"998:12:3","nodeType":"FunctionDefinition","parameters":{"id":445,"nodeType":"ParameterList","parameters":[{"constant":false,"id":442,"mutability":"mutable","name":"account","nameLocation":"1019:7:3","nodeType":"VariableDeclaration","scope":449,"src":"1011:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":441,"name":"address","nodeType":"ElementaryTypeName","src":"1011:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":444,"mutability":"mutable","name":"blockNumber","nameLocation":"1036:11:3","nodeType":"VariableDeclaration","scope":449,"src":"1028:19:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":443,"name":"uint256","nodeType":"ElementaryTypeName","src":"1028:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1010:38:3"},"returnParameters":{"id":448,"nodeType":"ParameterList","parameters":[{"constant":false,"id":447,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":449,"src":"1072:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":446,"name":"uint256","nodeType":"ElementaryTypeName","src":"1072:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1071:9:3"},"scope":488,"src":"989:92:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":450,"nodeType":"StructuredDocumentation","src":"1087:365:3","text":" @dev Returns the total supply of votes available at the end of a past block (`blockNumber`).\n NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.\n Votes that have not been delegated are still part of total supply, even though they would not participate in a\n vote."},"functionSelector":"8e539e8c","id":457,"implemented":false,"kind":"function","modifiers":[],"name":"getPastTotalSupply","nameLocation":"1466:18:3","nodeType":"FunctionDefinition","parameters":{"id":453,"nodeType":"ParameterList","parameters":[{"constant":false,"id":452,"mutability":"mutable","name":"blockNumber","nameLocation":"1493:11:3","nodeType":"VariableDeclaration","scope":457,"src":"1485:19:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":451,"name":"uint256","nodeType":"ElementaryTypeName","src":"1485:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1484:21:3"},"returnParameters":{"id":456,"nodeType":"ParameterList","parameters":[{"constant":false,"id":455,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":457,"src":"1529:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":454,"name":"uint256","nodeType":"ElementaryTypeName","src":"1529:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1528:9:3"},"scope":488,"src":"1457:81:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":458,"nodeType":"StructuredDocumentation","src":"1544:71:3","text":" @dev Returns the delegate that `account` has chosen."},"functionSelector":"587cde1e","id":465,"implemented":false,"kind":"function","modifiers":[],"name":"delegates","nameLocation":"1629:9:3","nodeType":"FunctionDefinition","parameters":{"id":461,"nodeType":"ParameterList","parameters":[{"constant":false,"id":460,"mutability":"mutable","name":"account","nameLocation":"1647:7:3","nodeType":"VariableDeclaration","scope":465,"src":"1639:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":459,"name":"address","nodeType":"ElementaryTypeName","src":"1639:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1638:17:3"},"returnParameters":{"id":464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":463,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":465,"src":"1679:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":462,"name":"address","nodeType":"ElementaryTypeName","src":"1679:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1678:9:3"},"scope":488,"src":"1620:68:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":466,"nodeType":"StructuredDocumentation","src":"1694:71:3","text":" @dev Delegates votes from the sender to `delegatee`."},"functionSelector":"5c19a95c","id":471,"implemented":false,"kind":"function","modifiers":[],"name":"delegate","nameLocation":"1779:8:3","nodeType":"FunctionDefinition","parameters":{"id":469,"nodeType":"ParameterList","parameters":[{"constant":false,"id":468,"mutability":"mutable","name":"delegatee","nameLocation":"1796:9:3","nodeType":"VariableDeclaration","scope":471,"src":"1788:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":467,"name":"address","nodeType":"ElementaryTypeName","src":"1788:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1787:19:3"},"returnParameters":{"id":470,"nodeType":"ParameterList","parameters":[],"src":"1815:0:3"},"scope":488,"src":"1770:46:3","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":472,"nodeType":"StructuredDocumentation","src":"1822:67:3","text":" @dev Delegates votes from signer to `delegatee`."},"functionSelector":"c3cda520","id":487,"implemented":false,"kind":"function","modifiers":[],"name":"delegateBySig","nameLocation":"1903:13:3","nodeType":"FunctionDefinition","parameters":{"id":485,"nodeType":"ParameterList","parameters":[{"constant":false,"id":474,"mutability":"mutable","name":"delegatee","nameLocation":"1934:9:3","nodeType":"VariableDeclaration","scope":487,"src":"1926:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":473,"name":"address","nodeType":"ElementaryTypeName","src":"1926:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":476,"mutability":"mutable","name":"nonce","nameLocation":"1961:5:3","nodeType":"VariableDeclaration","scope":487,"src":"1953:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":475,"name":"uint256","nodeType":"ElementaryTypeName","src":"1953:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":478,"mutability":"mutable","name":"expiry","nameLocation":"1984:6:3","nodeType":"VariableDeclaration","scope":487,"src":"1976:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":477,"name":"uint256","nodeType":"ElementaryTypeName","src":"1976:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":480,"mutability":"mutable","name":"v","nameLocation":"2006:1:3","nodeType":"VariableDeclaration","scope":487,"src":"2000:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":479,"name":"uint8","nodeType":"ElementaryTypeName","src":"2000:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":482,"mutability":"mutable","name":"r","nameLocation":"2025:1:3","nodeType":"VariableDeclaration","scope":487,"src":"2017:9:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":481,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2017:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":484,"mutability":"mutable","name":"s","nameLocation":"2044:1:3","nodeType":"VariableDeclaration","scope":487,"src":"2036:9:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":483,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2036:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1916:135:3"},"returnParameters":{"id":486,"nodeType":"ParameterList","parameters":[],"src":"2060:0:3"},"scope":488,"src":"1894:167:3","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":489,"src":"268:1795:3","usedErrors":[]}],"src":"110:1954:3"},"id":3},"@openzeppelin/contracts/interfaces/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20.sol","exportedSymbols":{"IERC20":[760]},"id":492,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":490,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"90:23:4"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../token/ERC20/IERC20.sol","id":491,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":492,"sourceUnit":761,"src":"115:35:4","symbolAliases":[],"unitAlias":""}],"src":"90:61:4"},"id":4},"@openzeppelin/contracts/proxy/utils/Initializable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","exportedSymbols":{"Address":[1229],"Initializable":[642]},"id":643,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":493,"literals":["solidity","^","0.8",".2"],"nodeType":"PragmaDirective","src":"113:23:5"},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"../../utils/Address.sol","id":494,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":643,"sourceUnit":1230,"src":"138:33:5","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[],"contractDependencies":[],"contractKind":"contract","documentation":{"id":495,"nodeType":"StructuredDocumentation","src":"173:2198:5","text":" @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\n external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\n reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\n case an upgrade adds a module that needs to be initialized.\n For example:\n [.hljs-theme-light.nopadding]\n ```\n contract MyToken is ERC20Upgradeable {\n     function initialize() initializer public {\n         __ERC20_init(\"MyToken\", \"MTK\");\n     }\n }\n contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\n     function initializeV2() reinitializer(2) public {\n         __ERC20Permit_init(\"MyToken\");\n     }\n }\n ```\n TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n [CAUTION]\n ====\n Avoid leaving a contract uninitialized.\n An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\n contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\n the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\n [.hljs-theme-light.nopadding]\n ```\n /// @custom:oz-upgrades-unsafe-allow constructor\n constructor() {\n     _disableInitializers();\n }\n ```\n ===="},"fullyImplemented":true,"id":642,"linearizedBaseContracts":[642],"name":"Initializable","nameLocation":"2390:13:5","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":496,"nodeType":"StructuredDocumentation","src":"2410:109:5","text":" @dev Indicates that the contract has been initialized.\n @custom:oz-retyped-from bool"},"id":498,"mutability":"mutable","name":"_initialized","nameLocation":"2538:12:5","nodeType":"VariableDeclaration","scope":642,"src":"2524:26:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":497,"name":"uint8","nodeType":"ElementaryTypeName","src":"2524:5:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"private"},{"constant":false,"documentation":{"id":499,"nodeType":"StructuredDocumentation","src":"2557:91:5","text":" @dev Indicates that the contract is in the process of being initialized."},"id":501,"mutability":"mutable","name":"_initializing","nameLocation":"2666:13:5","nodeType":"VariableDeclaration","scope":642,"src":"2653:26:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":500,"name":"bool","nodeType":"ElementaryTypeName","src":"2653:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"private"},{"anonymous":false,"documentation":{"id":502,"nodeType":"StructuredDocumentation","src":"2686:90:5","text":" @dev Triggered when the contract has been initialized or reinitialized."},"id":506,"name":"Initialized","nameLocation":"2787:11:5","nodeType":"EventDefinition","parameters":{"id":505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":504,"indexed":false,"mutability":"mutable","name":"version","nameLocation":"2805:7:5","nodeType":"VariableDeclaration","scope":506,"src":"2799:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":503,"name":"uint8","nodeType":"ElementaryTypeName","src":"2799:5:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"2798:15:5"},"src":"2781:33:5"},{"body":{"id":561,"nodeType":"Block","src":"3090:472:5","statements":[{"assignments":[510],"declarations":[{"constant":false,"id":510,"mutability":"mutable","name":"isTopLevelCall","nameLocation":"3105:14:5","nodeType":"VariableDeclaration","scope":561,"src":"3100:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":509,"name":"bool","nodeType":"ElementaryTypeName","src":"3100:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":513,"initialValue":{"id":512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3122:14:5","subExpression":{"id":511,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"3123:13:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"3100:36:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":534,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":515,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":510,"src":"3168:14:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":516,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":498,"src":"3186:12:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"31","id":517,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3201:1:5","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3186:16:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3168:34:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":520,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3167:36:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":532,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":528,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3208:34:5","subExpression":{"arguments":[{"arguments":[{"id":525,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3236:4:5","typeDescriptions":{"typeIdentifier":"t_contract$_Initializable_$642","typeString":"contract Initializable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Initializable_$642","typeString":"contract Initializable"}],"id":524,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3228:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":523,"name":"address","nodeType":"ElementaryTypeName","src":"3228:7:5","typeDescriptions":{}}},"id":526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3228:13:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":521,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1229,"src":"3209:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$1229_$","typeString":"type(library Address)"}},"id":522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"isContract","nodeType":"MemberAccess","referencedDeclaration":952,"src":"3209:18:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3209:33:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":531,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":529,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":498,"src":"3246:12:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":530,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3262:1:5","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3246:17:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3208:55:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":533,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3207:57:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3167:97:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564","id":535,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3278:48:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""},"value":"Initializable: contract is already initialized"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""}],"id":514,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3146:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":536,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3146:190:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":537,"nodeType":"ExpressionStatement","src":"3146:190:5"},{"expression":{"id":540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":538,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":498,"src":"3346:12:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"31","id":539,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3361:1:5","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3346:16:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":541,"nodeType":"ExpressionStatement","src":"3346:16:5"},{"condition":{"id":542,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":510,"src":"3376:14:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":548,"nodeType":"IfStatement","src":"3372:65:5","trueBody":{"id":547,"nodeType":"Block","src":"3392:45:5","statements":[{"expression":{"id":545,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":543,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"3406:13:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":544,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3422:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"3406:20:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":546,"nodeType":"ExpressionStatement","src":"3406:20:5"}]}},{"id":549,"nodeType":"PlaceholderStatement","src":"3446:1:5"},{"condition":{"id":550,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":510,"src":"3461:14:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":560,"nodeType":"IfStatement","src":"3457:99:5","trueBody":{"id":559,"nodeType":"Block","src":"3477:79:5","statements":[{"expression":{"id":553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":551,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"3491:13:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":552,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3507:5:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"3491:21:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":554,"nodeType":"ExpressionStatement","src":"3491:21:5"},{"eventCall":{"arguments":[{"hexValue":"31","id":556,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3543:1:5","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":555,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":506,"src":"3531:11:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint8_$returns$__$","typeString":"function (uint8)"}},"id":557,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3531:14:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":558,"nodeType":"EmitStatement","src":"3526:19:5"}]}}]},"documentation":{"id":507,"nodeType":"StructuredDocumentation","src":"2820:242:5","text":" @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\n `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`."},"id":562,"name":"initializer","nameLocation":"3076:11:5","nodeType":"ModifierDefinition","parameters":{"id":508,"nodeType":"ParameterList","parameters":[],"src":"3087:2:5"},"src":"3067:495:5","virtual":false,"visibility":"internal"},{"body":{"id":594,"nodeType":"Block","src":"4377:255:5","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":573,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4395:14:5","subExpression":{"id":568,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"4396:13:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":572,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":570,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":498,"src":"4413:12:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":571,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":565,"src":"4428:7:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"4413:22:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4395:40:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564","id":574,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4437:48:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""},"value":"Initializable: contract is already initialized"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""}],"id":567,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4387:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":575,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4387:99:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":576,"nodeType":"ExpressionStatement","src":"4387:99:5"},{"expression":{"id":579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":577,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":498,"src":"4496:12:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":578,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":565,"src":"4511:7:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"4496:22:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":580,"nodeType":"ExpressionStatement","src":"4496:22:5"},{"expression":{"id":583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":581,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"4528:13:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":582,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4544:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"4528:20:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":584,"nodeType":"ExpressionStatement","src":"4528:20:5"},{"id":585,"nodeType":"PlaceholderStatement","src":"4558:1:5"},{"expression":{"id":588,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":586,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"4569:13:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":587,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4585:5:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"4569:21:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":589,"nodeType":"ExpressionStatement","src":"4569:21:5"},{"eventCall":{"arguments":[{"id":591,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":565,"src":"4617:7:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":590,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":506,"src":"4605:11:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint8_$returns$__$","typeString":"function (uint8)"}},"id":592,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4605:20:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":593,"nodeType":"EmitStatement","src":"4600:25:5"}]},"documentation":{"id":563,"nodeType":"StructuredDocumentation","src":"3568:766:5","text":" @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\n contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\n used to initialize parent contracts.\n `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original\n initialization step. This is essential to configure modules that are added through upgrades and that require\n initialization.\n Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\n a contract, executing them in the right order is up to the developer or operator."},"id":595,"name":"reinitializer","nameLocation":"4348:13:5","nodeType":"ModifierDefinition","parameters":{"id":566,"nodeType":"ParameterList","parameters":[{"constant":false,"id":565,"mutability":"mutable","name":"version","nameLocation":"4368:7:5","nodeType":"VariableDeclaration","scope":595,"src":"4362:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":564,"name":"uint8","nodeType":"ElementaryTypeName","src":"4362:5:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"4361:15:5"},"src":"4339:293:5","virtual":false,"visibility":"internal"},{"body":{"id":604,"nodeType":"Block","src":"4870:97:5","statements":[{"expression":{"arguments":[{"id":599,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"4888:13:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420696e697469616c697a696e67","id":600,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4903:45:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","typeString":"literal_string \"Initializable: contract is not initializing\""},"value":"Initializable: contract is not initializing"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","typeString":"literal_string \"Initializable: contract is not initializing\""}],"id":598,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4880:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":601,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4880:69:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":602,"nodeType":"ExpressionStatement","src":"4880:69:5"},{"id":603,"nodeType":"PlaceholderStatement","src":"4959:1:5"}]},"documentation":{"id":596,"nodeType":"StructuredDocumentation","src":"4638:199:5","text":" @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\n {initializer} and {reinitializer} modifiers, directly or indirectly."},"id":605,"name":"onlyInitializing","nameLocation":"4851:16:5","nodeType":"ModifierDefinition","parameters":{"id":597,"nodeType":"ParameterList","parameters":[],"src":"4867:2:5"},"src":"4842:125:5","virtual":false,"visibility":"internal"},{"body":{"id":640,"nodeType":"Block","src":"5415:230:5","statements":[{"expression":{"arguments":[{"id":611,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5433:14:5","subExpression":{"id":610,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"5434:13:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320696e697469616c697a696e67","id":612,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5449:41:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","typeString":"literal_string \"Initializable: contract is initializing\""},"value":"Initializable: contract is initializing"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","typeString":"literal_string \"Initializable: contract is initializing\""}],"id":609,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5425:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":613,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5425:66:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":614,"nodeType":"ExpressionStatement","src":"5425:66:5"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":621,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":615,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":498,"src":"5505:12:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"id":618,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5525:5:5","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":617,"name":"uint8","nodeType":"ElementaryTypeName","src":"5525:5:5","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":616,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5520:4:5","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":619,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5520:11:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":620,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberName":"max","nodeType":"MemberAccess","src":"5520:15:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"5505:30:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":639,"nodeType":"IfStatement","src":"5501:138:5","trueBody":{"id":638,"nodeType":"Block","src":"5537:102:5","statements":[{"expression":{"id":628,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":622,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":498,"src":"5551:12:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"arguments":[{"id":625,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5571:5:5","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":624,"name":"uint8","nodeType":"ElementaryTypeName","src":"5571:5:5","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":623,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5566:4:5","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":626,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5566:11:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":627,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberName":"max","nodeType":"MemberAccess","src":"5566:15:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"5551:30:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":629,"nodeType":"ExpressionStatement","src":"5551:30:5"},{"eventCall":{"arguments":[{"expression":{"arguments":[{"id":633,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5617:5:5","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":632,"name":"uint8","nodeType":"ElementaryTypeName","src":"5617:5:5","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":631,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5612:4:5","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":634,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5612:11:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":635,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberName":"max","nodeType":"MemberAccess","src":"5612:15:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":630,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":506,"src":"5600:11:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint8_$returns$__$","typeString":"function (uint8)"}},"id":636,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5600:28:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":637,"nodeType":"EmitStatement","src":"5595:33:5"}]}}]},"documentation":{"id":606,"nodeType":"StructuredDocumentation","src":"4973:388:5","text":" @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\n Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\n to any version. It is recommended to use this to lock implementation contracts that are designed to be called\n through proxies."},"id":641,"implemented":true,"kind":"function","modifiers":[],"name":"_disableInitializers","nameLocation":"5375:20:5","nodeType":"FunctionDefinition","parameters":{"id":607,"nodeType":"ParameterList","parameters":[],"src":"5395:2:5"},"returnParameters":{"id":608,"nodeType":"ParameterList","parameters":[],"src":"5415:0:5"},"scope":642,"src":"5366:279:5","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":643,"src":"2372:3275:5","usedErrors":[]}],"src":"113:5535:5"},"id":5},"@openzeppelin/contracts/security/ReentrancyGuard.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/security/ReentrancyGuard.sol","exportedSymbols":{"ReentrancyGuard":[682]},"id":683,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":644,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"97:23:6"},{"abstract":true,"baseContracts":[],"contractDependencies":[],"contractKind":"contract","documentation":{"id":645,"nodeType":"StructuredDocumentation","src":"122:750:6","text":" @dev Contract module that helps prevent reentrant calls to a function.\n Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n available, which can be applied to functions to make sure there are no nested\n (reentrant) calls to them.\n Note that because there is a single `nonReentrant` guard, functions marked as\n `nonReentrant` may not call one another. This can be worked around by making\n those functions `private`, and then adding `external` `nonReentrant` entry\n points to them.\n TIP: If you would like to learn more about reentrancy and alternative ways\n to protect against it, check out our blog post\n https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]."},"fullyImplemented":true,"id":682,"linearizedBaseContracts":[682],"name":"ReentrancyGuard","nameLocation":"891:15:6","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":648,"mutability":"constant","name":"_NOT_ENTERED","nameLocation":"1686:12:6","nodeType":"VariableDeclaration","scope":682,"src":"1661:41:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":646,"name":"uint256","nodeType":"ElementaryTypeName","src":"1661:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31","id":647,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1701:1:6","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"visibility":"private"},{"constant":true,"id":651,"mutability":"constant","name":"_ENTERED","nameLocation":"1733:8:6","nodeType":"VariableDeclaration","scope":682,"src":"1708:37:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":649,"name":"uint256","nodeType":"ElementaryTypeName","src":"1708:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"32","id":650,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1744:1:6","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"visibility":"private"},{"constant":false,"id":653,"mutability":"mutable","name":"_status","nameLocation":"1768:7:6","nodeType":"VariableDeclaration","scope":682,"src":"1752:23:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":652,"name":"uint256","nodeType":"ElementaryTypeName","src":"1752:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"body":{"id":660,"nodeType":"Block","src":"1796:39:6","statements":[{"expression":{"id":658,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":656,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":653,"src":"1806:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":657,"name":"_NOT_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":648,"src":"1816:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1806:22:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":659,"nodeType":"ExpressionStatement","src":"1806:22:6"}]},"id":661,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":654,"nodeType":"ParameterList","parameters":[],"src":"1793:2:6"},"returnParameters":{"id":655,"nodeType":"ParameterList","parameters":[],"src":"1796:0:6"},"scope":682,"src":"1782:53:6","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":680,"nodeType":"Block","src":"2236:421:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":665,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":653,"src":"2325:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":666,"name":"_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":651,"src":"2336:8:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2325:19:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5265656e7472616e637947756172643a207265656e7472616e742063616c6c","id":668,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2346:33:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619","typeString":"literal_string \"ReentrancyGuard: reentrant call\""},"value":"ReentrancyGuard: reentrant call"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619","typeString":"literal_string \"ReentrancyGuard: reentrant call\""}],"id":664,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2317:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"2317:63:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":670,"nodeType":"ExpressionStatement","src":"2317:63:6"},{"expression":{"id":673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":671,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":653,"src":"2455:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":672,"name":"_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":651,"src":"2465:8:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2455:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":674,"nodeType":"ExpressionStatement","src":"2455:18:6"},{"id":675,"nodeType":"PlaceholderStatement","src":"2484:1:6"},{"expression":{"id":678,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":676,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":653,"src":"2628:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":677,"name":"_NOT_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":648,"src":"2638:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2628:22:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":679,"nodeType":"ExpressionStatement","src":"2628:22:6"}]},"documentation":{"id":662,"nodeType":"StructuredDocumentation","src":"1841:366:6","text":" @dev Prevents a contract from calling itself, directly or indirectly.\n Calling a `nonReentrant` function from another `nonReentrant`\n function is not supported. It is possible to prevent this from happening\n by making the `nonReentrant` function external, and making it call a\n `private` function that does the actual work."},"id":681,"name":"nonReentrant","nameLocation":"2221:12:6","nodeType":"ModifierDefinition","parameters":{"id":663,"nodeType":"ParameterList","parameters":[],"src":"2233:2:6"},"src":"2212:445:6","virtual":false,"visibility":"internal"}],"scope":683,"src":"873:1786:6","usedErrors":[]}],"src":"97:2563:6"},"id":6},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","exportedSymbols":{"IERC20":[760]},"id":761,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":684,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"106:23:7"},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"interface","documentation":{"id":685,"nodeType":"StructuredDocumentation","src":"131:70:7","text":" @dev Interface of the ERC20 standard as defined in the EIP."},"fullyImplemented":false,"id":760,"linearizedBaseContracts":[760],"name":"IERC20","nameLocation":"212:6:7","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":686,"nodeType":"StructuredDocumentation","src":"225:158:7","text":" @dev Emitted when `value` tokens are moved from one account (`from`) to\n another (`to`).\n Note that `value` may be zero."},"id":694,"name":"Transfer","nameLocation":"394:8:7","nodeType":"EventDefinition","parameters":{"id":693,"nodeType":"ParameterList","parameters":[{"constant":false,"id":688,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"419:4:7","nodeType":"VariableDeclaration","scope":694,"src":"403:20:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":687,"name":"address","nodeType":"ElementaryTypeName","src":"403:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":690,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"441:2:7","nodeType":"VariableDeclaration","scope":694,"src":"425:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":689,"name":"address","nodeType":"ElementaryTypeName","src":"425:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":692,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"453:5:7","nodeType":"VariableDeclaration","scope":694,"src":"445:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":691,"name":"uint256","nodeType":"ElementaryTypeName","src":"445:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"402:57:7"},"src":"388:72:7"},{"anonymous":false,"documentation":{"id":695,"nodeType":"StructuredDocumentation","src":"466:148:7","text":" @dev Emitted when the allowance of a `spender` for an `owner` is set by\n a call to {approve}. `value` is the new allowance."},"id":703,"name":"Approval","nameLocation":"625:8:7","nodeType":"EventDefinition","parameters":{"id":702,"nodeType":"ParameterList","parameters":[{"constant":false,"id":697,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"650:5:7","nodeType":"VariableDeclaration","scope":703,"src":"634:21:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":696,"name":"address","nodeType":"ElementaryTypeName","src":"634:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":699,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"673:7:7","nodeType":"VariableDeclaration","scope":703,"src":"657:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":698,"name":"address","nodeType":"ElementaryTypeName","src":"657:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":701,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"690:5:7","nodeType":"VariableDeclaration","scope":703,"src":"682:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":700,"name":"uint256","nodeType":"ElementaryTypeName","src":"682:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"633:63:7"},"src":"619:78:7"},{"documentation":{"id":704,"nodeType":"StructuredDocumentation","src":"703:66:7","text":" @dev Returns the amount of tokens in existence."},"functionSelector":"18160ddd","id":709,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"783:11:7","nodeType":"FunctionDefinition","parameters":{"id":705,"nodeType":"ParameterList","parameters":[],"src":"794:2:7"},"returnParameters":{"id":708,"nodeType":"ParameterList","parameters":[{"constant":false,"id":707,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":709,"src":"820:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":706,"name":"uint256","nodeType":"ElementaryTypeName","src":"820:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"819:9:7"},"scope":760,"src":"774:55:7","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":710,"nodeType":"StructuredDocumentation","src":"835:72:7","text":" @dev Returns the amount of tokens owned by `account`."},"functionSelector":"70a08231","id":717,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"921:9:7","nodeType":"FunctionDefinition","parameters":{"id":713,"nodeType":"ParameterList","parameters":[{"constant":false,"id":712,"mutability":"mutable","name":"account","nameLocation":"939:7:7","nodeType":"VariableDeclaration","scope":717,"src":"931:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":711,"name":"address","nodeType":"ElementaryTypeName","src":"931:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"930:17:7"},"returnParameters":{"id":716,"nodeType":"ParameterList","parameters":[{"constant":false,"id":715,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":717,"src":"971:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":714,"name":"uint256","nodeType":"ElementaryTypeName","src":"971:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"970:9:7"},"scope":760,"src":"912:68:7","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":718,"nodeType":"StructuredDocumentation","src":"986:202:7","text":" @dev Moves `amount` tokens from the caller's account to `to`.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"a9059cbb","id":727,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1202:8:7","nodeType":"FunctionDefinition","parameters":{"id":723,"nodeType":"ParameterList","parameters":[{"constant":false,"id":720,"mutability":"mutable","name":"to","nameLocation":"1219:2:7","nodeType":"VariableDeclaration","scope":727,"src":"1211:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":719,"name":"address","nodeType":"ElementaryTypeName","src":"1211:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":722,"mutability":"mutable","name":"amount","nameLocation":"1231:6:7","nodeType":"VariableDeclaration","scope":727,"src":"1223:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":721,"name":"uint256","nodeType":"ElementaryTypeName","src":"1223:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1210:28:7"},"returnParameters":{"id":726,"nodeType":"ParameterList","parameters":[{"constant":false,"id":725,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":727,"src":"1257:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":724,"name":"bool","nodeType":"ElementaryTypeName","src":"1257:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1256:6:7"},"scope":760,"src":"1193:70:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":728,"nodeType":"StructuredDocumentation","src":"1269:264:7","text":" @dev Returns the remaining number of tokens that `spender` will be\n allowed to spend on behalf of `owner` through {transferFrom}. This is\n zero by default.\n This value changes when {approve} or {transferFrom} are called."},"functionSelector":"dd62ed3e","id":737,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1547:9:7","nodeType":"FunctionDefinition","parameters":{"id":733,"nodeType":"ParameterList","parameters":[{"constant":false,"id":730,"mutability":"mutable","name":"owner","nameLocation":"1565:5:7","nodeType":"VariableDeclaration","scope":737,"src":"1557:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":729,"name":"address","nodeType":"ElementaryTypeName","src":"1557:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":732,"mutability":"mutable","name":"spender","nameLocation":"1580:7:7","nodeType":"VariableDeclaration","scope":737,"src":"1572:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":731,"name":"address","nodeType":"ElementaryTypeName","src":"1572:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1556:32:7"},"returnParameters":{"id":736,"nodeType":"ParameterList","parameters":[{"constant":false,"id":735,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":737,"src":"1612:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":734,"name":"uint256","nodeType":"ElementaryTypeName","src":"1612:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1611:9:7"},"scope":760,"src":"1538:83:7","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":738,"nodeType":"StructuredDocumentation","src":"1627:642:7","text":" @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n Returns a boolean value indicating whether the operation succeeded.\n IMPORTANT: Beware that changing an allowance with this method brings the risk\n that someone may use both the old and the new allowance by unfortunate\n transaction ordering. One possible solution to mitigate this race\n condition is to first reduce the spender's allowance to 0 and set the\n desired value afterwards:\n https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n Emits an {Approval} event."},"functionSelector":"095ea7b3","id":747,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2283:7:7","nodeType":"FunctionDefinition","parameters":{"id":743,"nodeType":"ParameterList","parameters":[{"constant":false,"id":740,"mutability":"mutable","name":"spender","nameLocation":"2299:7:7","nodeType":"VariableDeclaration","scope":747,"src":"2291:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":739,"name":"address","nodeType":"ElementaryTypeName","src":"2291:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":742,"mutability":"mutable","name":"amount","nameLocation":"2316:6:7","nodeType":"VariableDeclaration","scope":747,"src":"2308:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":741,"name":"uint256","nodeType":"ElementaryTypeName","src":"2308:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2290:33:7"},"returnParameters":{"id":746,"nodeType":"ParameterList","parameters":[{"constant":false,"id":745,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":747,"src":"2342:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":744,"name":"bool","nodeType":"ElementaryTypeName","src":"2342:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2341:6:7"},"scope":760,"src":"2274:74:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":748,"nodeType":"StructuredDocumentation","src":"2354:287:7","text":" @dev Moves `amount` tokens from `from` to `to` using the\n allowance mechanism. `amount` is then deducted from the caller's\n allowance.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"23b872dd","id":759,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2655:12:7","nodeType":"FunctionDefinition","parameters":{"id":755,"nodeType":"ParameterList","parameters":[{"constant":false,"id":750,"mutability":"mutable","name":"from","nameLocation":"2685:4:7","nodeType":"VariableDeclaration","scope":759,"src":"2677:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":749,"name":"address","nodeType":"ElementaryTypeName","src":"2677:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":752,"mutability":"mutable","name":"to","nameLocation":"2707:2:7","nodeType":"VariableDeclaration","scope":759,"src":"2699:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":751,"name":"address","nodeType":"ElementaryTypeName","src":"2699:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":754,"mutability":"mutable","name":"amount","nameLocation":"2727:6:7","nodeType":"VariableDeclaration","scope":759,"src":"2719:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":753,"name":"uint256","nodeType":"ElementaryTypeName","src":"2719:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2667:72:7"},"returnParameters":{"id":758,"nodeType":"ParameterList","parameters":[{"constant":false,"id":757,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":759,"src":"2758:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":756,"name":"bool","nodeType":"ElementaryTypeName","src":"2758:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2757:6:7"},"scope":760,"src":"2646:118:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":761,"src":"202:2564:7","usedErrors":[]}],"src":"106:2661:7"},"id":7},"@openzeppelin/contracts/token/ERC721/IERC721.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","exportedSymbols":{"IERC165":[1265],"IERC721":[876]},"id":877,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":762,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"108:23:8"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"../../utils/introspection/IERC165.sol","id":763,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":877,"sourceUnit":1266,"src":"133:47:8","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":765,"name":"IERC165","nodeType":"IdentifierPath","referencedDeclaration":1265,"src":"271:7:8"},"id":766,"nodeType":"InheritanceSpecifier","src":"271:7:8"}],"contractDependencies":[],"contractKind":"interface","documentation":{"id":764,"nodeType":"StructuredDocumentation","src":"182:67:8","text":" @dev Required interface of an ERC721 compliant contract."},"fullyImplemented":false,"id":876,"linearizedBaseContracts":[876,1265],"name":"IERC721","nameLocation":"260:7:8","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":767,"nodeType":"StructuredDocumentation","src":"285:88:8","text":" @dev Emitted when `tokenId` token is transferred from `from` to `to`."},"id":775,"name":"Transfer","nameLocation":"384:8:8","nodeType":"EventDefinition","parameters":{"id":774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":769,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"409:4:8","nodeType":"VariableDeclaration","scope":775,"src":"393:20:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":768,"name":"address","nodeType":"ElementaryTypeName","src":"393:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":771,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"431:2:8","nodeType":"VariableDeclaration","scope":775,"src":"415:18:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":770,"name":"address","nodeType":"ElementaryTypeName","src":"415:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":773,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"451:7:8","nodeType":"VariableDeclaration","scope":775,"src":"435:23:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":772,"name":"uint256","nodeType":"ElementaryTypeName","src":"435:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"392:67:8"},"src":"378:82:8"},{"anonymous":false,"documentation":{"id":776,"nodeType":"StructuredDocumentation","src":"466:94:8","text":" @dev Emitted when `owner` enables `approved` to manage the `tokenId` token."},"id":784,"name":"Approval","nameLocation":"571:8:8","nodeType":"EventDefinition","parameters":{"id":783,"nodeType":"ParameterList","parameters":[{"constant":false,"id":778,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"596:5:8","nodeType":"VariableDeclaration","scope":784,"src":"580:21:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":777,"name":"address","nodeType":"ElementaryTypeName","src":"580:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":780,"indexed":true,"mutability":"mutable","name":"approved","nameLocation":"619:8:8","nodeType":"VariableDeclaration","scope":784,"src":"603:24:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":779,"name":"address","nodeType":"ElementaryTypeName","src":"603:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":782,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"645:7:8","nodeType":"VariableDeclaration","scope":784,"src":"629:23:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":781,"name":"uint256","nodeType":"ElementaryTypeName","src":"629:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"579:74:8"},"src":"565:89:8"},{"anonymous":false,"documentation":{"id":785,"nodeType":"StructuredDocumentation","src":"660:117:8","text":" @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets."},"id":793,"name":"ApprovalForAll","nameLocation":"788:14:8","nodeType":"EventDefinition","parameters":{"id":792,"nodeType":"ParameterList","parameters":[{"constant":false,"id":787,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"819:5:8","nodeType":"VariableDeclaration","scope":793,"src":"803:21:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":786,"name":"address","nodeType":"ElementaryTypeName","src":"803:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":789,"indexed":true,"mutability":"mutable","name":"operator","nameLocation":"842:8:8","nodeType":"VariableDeclaration","scope":793,"src":"826:24:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":788,"name":"address","nodeType":"ElementaryTypeName","src":"826:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":791,"indexed":false,"mutability":"mutable","name":"approved","nameLocation":"857:8:8","nodeType":"VariableDeclaration","scope":793,"src":"852:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":790,"name":"bool","nodeType":"ElementaryTypeName","src":"852:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"802:64:8"},"src":"782:85:8"},{"documentation":{"id":794,"nodeType":"StructuredDocumentation","src":"873:76:8","text":" @dev Returns the number of tokens in ``owner``'s account."},"functionSelector":"70a08231","id":801,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"963:9:8","nodeType":"FunctionDefinition","parameters":{"id":797,"nodeType":"ParameterList","parameters":[{"constant":false,"id":796,"mutability":"mutable","name":"owner","nameLocation":"981:5:8","nodeType":"VariableDeclaration","scope":801,"src":"973:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":795,"name":"address","nodeType":"ElementaryTypeName","src":"973:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"972:15:8"},"returnParameters":{"id":800,"nodeType":"ParameterList","parameters":[{"constant":false,"id":799,"mutability":"mutable","name":"balance","nameLocation":"1019:7:8","nodeType":"VariableDeclaration","scope":801,"src":"1011:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":798,"name":"uint256","nodeType":"ElementaryTypeName","src":"1011:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1010:17:8"},"scope":876,"src":"954:74:8","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":802,"nodeType":"StructuredDocumentation","src":"1034:131:8","text":" @dev Returns the owner of the `tokenId` token.\n Requirements:\n - `tokenId` must exist."},"functionSelector":"6352211e","id":809,"implemented":false,"kind":"function","modifiers":[],"name":"ownerOf","nameLocation":"1179:7:8","nodeType":"FunctionDefinition","parameters":{"id":805,"nodeType":"ParameterList","parameters":[{"constant":false,"id":804,"mutability":"mutable","name":"tokenId","nameLocation":"1195:7:8","nodeType":"VariableDeclaration","scope":809,"src":"1187:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":803,"name":"uint256","nodeType":"ElementaryTypeName","src":"1187:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1186:17:8"},"returnParameters":{"id":808,"nodeType":"ParameterList","parameters":[{"constant":false,"id":807,"mutability":"mutable","name":"owner","nameLocation":"1235:5:8","nodeType":"VariableDeclaration","scope":809,"src":"1227:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":806,"name":"address","nodeType":"ElementaryTypeName","src":"1227:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1226:15:8"},"scope":876,"src":"1170:72:8","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":810,"nodeType":"StructuredDocumentation","src":"1248:556:8","text":" @dev Safely transfers `tokenId` token from `from` to `to`.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must exist and be owned by `from`.\n - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n Emits a {Transfer} event."},"functionSelector":"b88d4fde","id":821,"implemented":false,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"1818:16:8","nodeType":"FunctionDefinition","parameters":{"id":819,"nodeType":"ParameterList","parameters":[{"constant":false,"id":812,"mutability":"mutable","name":"from","nameLocation":"1852:4:8","nodeType":"VariableDeclaration","scope":821,"src":"1844:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":811,"name":"address","nodeType":"ElementaryTypeName","src":"1844:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":814,"mutability":"mutable","name":"to","nameLocation":"1874:2:8","nodeType":"VariableDeclaration","scope":821,"src":"1866:10:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":813,"name":"address","nodeType":"ElementaryTypeName","src":"1866:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":816,"mutability":"mutable","name":"tokenId","nameLocation":"1894:7:8","nodeType":"VariableDeclaration","scope":821,"src":"1886:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":815,"name":"uint256","nodeType":"ElementaryTypeName","src":"1886:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":818,"mutability":"mutable","name":"data","nameLocation":"1926:4:8","nodeType":"VariableDeclaration","scope":821,"src":"1911:19:8","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":817,"name":"bytes","nodeType":"ElementaryTypeName","src":"1911:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1834:102:8"},"returnParameters":{"id":820,"nodeType":"ParameterList","parameters":[],"src":"1945:0:8"},"scope":876,"src":"1809:137:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":822,"nodeType":"StructuredDocumentation","src":"1952:687:8","text":" @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n are aware of the ERC721 protocol to prevent tokens from being forever locked.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must exist and be owned by `from`.\n - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n Emits a {Transfer} event."},"functionSelector":"42842e0e","id":831,"implemented":false,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"2653:16:8","nodeType":"FunctionDefinition","parameters":{"id":829,"nodeType":"ParameterList","parameters":[{"constant":false,"id":824,"mutability":"mutable","name":"from","nameLocation":"2687:4:8","nodeType":"VariableDeclaration","scope":831,"src":"2679:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":823,"name":"address","nodeType":"ElementaryTypeName","src":"2679:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":826,"mutability":"mutable","name":"to","nameLocation":"2709:2:8","nodeType":"VariableDeclaration","scope":831,"src":"2701:10:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":825,"name":"address","nodeType":"ElementaryTypeName","src":"2701:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":828,"mutability":"mutable","name":"tokenId","nameLocation":"2729:7:8","nodeType":"VariableDeclaration","scope":831,"src":"2721:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":827,"name":"uint256","nodeType":"ElementaryTypeName","src":"2721:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2669:73:8"},"returnParameters":{"id":830,"nodeType":"ParameterList","parameters":[],"src":"2751:0:8"},"scope":876,"src":"2644:108:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":832,"nodeType":"StructuredDocumentation","src":"2758:504:8","text":" @dev Transfers `tokenId` token from `from` to `to`.\n WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must be owned by `from`.\n - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n Emits a {Transfer} event."},"functionSelector":"23b872dd","id":841,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"3276:12:8","nodeType":"FunctionDefinition","parameters":{"id":839,"nodeType":"ParameterList","parameters":[{"constant":false,"id":834,"mutability":"mutable","name":"from","nameLocation":"3306:4:8","nodeType":"VariableDeclaration","scope":841,"src":"3298:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":833,"name":"address","nodeType":"ElementaryTypeName","src":"3298:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":836,"mutability":"mutable","name":"to","nameLocation":"3328:2:8","nodeType":"VariableDeclaration","scope":841,"src":"3320:10:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":835,"name":"address","nodeType":"ElementaryTypeName","src":"3320:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":838,"mutability":"mutable","name":"tokenId","nameLocation":"3348:7:8","nodeType":"VariableDeclaration","scope":841,"src":"3340:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":837,"name":"uint256","nodeType":"ElementaryTypeName","src":"3340:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3288:73:8"},"returnParameters":{"id":840,"nodeType":"ParameterList","parameters":[],"src":"3370:0:8"},"scope":876,"src":"3267:104:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":842,"nodeType":"StructuredDocumentation","src":"3377:452:8","text":" @dev Gives permission to `to` to transfer `tokenId` token to another account.\n The approval is cleared when the token is transferred.\n Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n Requirements:\n - The caller must own the token or be an approved operator.\n - `tokenId` must exist.\n Emits an {Approval} event."},"functionSelector":"095ea7b3","id":849,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"3843:7:8","nodeType":"FunctionDefinition","parameters":{"id":847,"nodeType":"ParameterList","parameters":[{"constant":false,"id":844,"mutability":"mutable","name":"to","nameLocation":"3859:2:8","nodeType":"VariableDeclaration","scope":849,"src":"3851:10:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":843,"name":"address","nodeType":"ElementaryTypeName","src":"3851:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":846,"mutability":"mutable","name":"tokenId","nameLocation":"3871:7:8","nodeType":"VariableDeclaration","scope":849,"src":"3863:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":845,"name":"uint256","nodeType":"ElementaryTypeName","src":"3863:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3850:29:8"},"returnParameters":{"id":848,"nodeType":"ParameterList","parameters":[],"src":"3888:0:8"},"scope":876,"src":"3834:55:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":850,"nodeType":"StructuredDocumentation","src":"3895:309:8","text":" @dev Approve or remove `operator` as an operator for the caller.\n Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n Requirements:\n - The `operator` cannot be the caller.\n Emits an {ApprovalForAll} event."},"functionSelector":"a22cb465","id":857,"implemented":false,"kind":"function","modifiers":[],"name":"setApprovalForAll","nameLocation":"4218:17:8","nodeType":"FunctionDefinition","parameters":{"id":855,"nodeType":"ParameterList","parameters":[{"constant":false,"id":852,"mutability":"mutable","name":"operator","nameLocation":"4244:8:8","nodeType":"VariableDeclaration","scope":857,"src":"4236:16:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":851,"name":"address","nodeType":"ElementaryTypeName","src":"4236:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":854,"mutability":"mutable","name":"_approved","nameLocation":"4259:9:8","nodeType":"VariableDeclaration","scope":857,"src":"4254:14:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":853,"name":"bool","nodeType":"ElementaryTypeName","src":"4254:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4235:34:8"},"returnParameters":{"id":856,"nodeType":"ParameterList","parameters":[],"src":"4278:0:8"},"scope":876,"src":"4209:70:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":858,"nodeType":"StructuredDocumentation","src":"4285:139:8","text":" @dev Returns the account approved for `tokenId` token.\n Requirements:\n - `tokenId` must exist."},"functionSelector":"081812fc","id":865,"implemented":false,"kind":"function","modifiers":[],"name":"getApproved","nameLocation":"4438:11:8","nodeType":"FunctionDefinition","parameters":{"id":861,"nodeType":"ParameterList","parameters":[{"constant":false,"id":860,"mutability":"mutable","name":"tokenId","nameLocation":"4458:7:8","nodeType":"VariableDeclaration","scope":865,"src":"4450:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":859,"name":"uint256","nodeType":"ElementaryTypeName","src":"4450:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4449:17:8"},"returnParameters":{"id":864,"nodeType":"ParameterList","parameters":[{"constant":false,"id":863,"mutability":"mutable","name":"operator","nameLocation":"4498:8:8","nodeType":"VariableDeclaration","scope":865,"src":"4490:16:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":862,"name":"address","nodeType":"ElementaryTypeName","src":"4490:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4489:18:8"},"scope":876,"src":"4429:79:8","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":866,"nodeType":"StructuredDocumentation","src":"4514:138:8","text":" @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n See {setApprovalForAll}"},"functionSelector":"e985e9c5","id":875,"implemented":false,"kind":"function","modifiers":[],"name":"isApprovedForAll","nameLocation":"4666:16:8","nodeType":"FunctionDefinition","parameters":{"id":871,"nodeType":"ParameterList","parameters":[{"constant":false,"id":868,"mutability":"mutable","name":"owner","nameLocation":"4691:5:8","nodeType":"VariableDeclaration","scope":875,"src":"4683:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":867,"name":"address","nodeType":"ElementaryTypeName","src":"4683:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":870,"mutability":"mutable","name":"operator","nameLocation":"4706:8:8","nodeType":"VariableDeclaration","scope":875,"src":"4698:16:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":869,"name":"address","nodeType":"ElementaryTypeName","src":"4698:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4682:33:8"},"returnParameters":{"id":874,"nodeType":"ParameterList","parameters":[{"constant":false,"id":873,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":875,"src":"4739:4:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":872,"name":"bool","nodeType":"ElementaryTypeName","src":"4739:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4738:6:8"},"scope":876,"src":"4657:88:8","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":877,"src":"250:4497:8","usedErrors":[]}],"src":"108:4640:8"},"id":8},"@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol","exportedSymbols":{"IERC165":[1265],"IERC721":[876],"IERC721Enumerable":[907]},"id":908,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":878,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"129:23:9"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","file":"../IERC721.sol","id":879,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":908,"sourceUnit":877,"src":"154:24:9","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":881,"name":"IERC721","nodeType":"IdentifierPath","referencedDeclaration":876,"src":"348:7:9"},"id":882,"nodeType":"InheritanceSpecifier","src":"348:7:9"}],"contractDependencies":[],"contractKind":"interface","documentation":{"id":880,"nodeType":"StructuredDocumentation","src":"180:136:9","text":" @title ERC-721 Non-Fungible Token Standard, optional enumeration extension\n @dev See https://eips.ethereum.org/EIPS/eip-721"},"fullyImplemented":false,"id":907,"linearizedBaseContracts":[907,876,1265],"name":"IERC721Enumerable","nameLocation":"327:17:9","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":883,"nodeType":"StructuredDocumentation","src":"362:82:9","text":" @dev Returns the total amount of tokens stored by the contract."},"functionSelector":"18160ddd","id":888,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"458:11:9","nodeType":"FunctionDefinition","parameters":{"id":884,"nodeType":"ParameterList","parameters":[],"src":"469:2:9"},"returnParameters":{"id":887,"nodeType":"ParameterList","parameters":[{"constant":false,"id":886,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":888,"src":"495:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":885,"name":"uint256","nodeType":"ElementaryTypeName","src":"495:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"494:9:9"},"scope":907,"src":"449:55:9","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":889,"nodeType":"StructuredDocumentation","src":"510:171:9","text":" @dev Returns a token ID owned by `owner` at a given `index` of its token list.\n Use along with {balanceOf} to enumerate all of ``owner``'s tokens."},"functionSelector":"2f745c59","id":898,"implemented":false,"kind":"function","modifiers":[],"name":"tokenOfOwnerByIndex","nameLocation":"695:19:9","nodeType":"FunctionDefinition","parameters":{"id":894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":891,"mutability":"mutable","name":"owner","nameLocation":"723:5:9","nodeType":"VariableDeclaration","scope":898,"src":"715:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":890,"name":"address","nodeType":"ElementaryTypeName","src":"715:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":893,"mutability":"mutable","name":"index","nameLocation":"738:5:9","nodeType":"VariableDeclaration","scope":898,"src":"730:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":892,"name":"uint256","nodeType":"ElementaryTypeName","src":"730:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"714:30:9"},"returnParameters":{"id":897,"nodeType":"ParameterList","parameters":[{"constant":false,"id":896,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":898,"src":"768:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":895,"name":"uint256","nodeType":"ElementaryTypeName","src":"768:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"767:9:9"},"scope":907,"src":"686:91:9","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":899,"nodeType":"StructuredDocumentation","src":"783:164:9","text":" @dev Returns a token ID at a given `index` of all the tokens stored by the contract.\n Use along with {totalSupply} to enumerate all tokens."},"functionSelector":"4f6ccce7","id":906,"implemented":false,"kind":"function","modifiers":[],"name":"tokenByIndex","nameLocation":"961:12:9","nodeType":"FunctionDefinition","parameters":{"id":902,"nodeType":"ParameterList","parameters":[{"constant":false,"id":901,"mutability":"mutable","name":"index","nameLocation":"982:5:9","nodeType":"VariableDeclaration","scope":906,"src":"974:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":900,"name":"uint256","nodeType":"ElementaryTypeName","src":"974:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"973:15:9"},"returnParameters":{"id":905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":904,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":906,"src":"1012:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":903,"name":"uint256","nodeType":"ElementaryTypeName","src":"1012:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1011:9:9"},"scope":907,"src":"952:69:9","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":908,"src":"317:706:9","usedErrors":[]}],"src":"129:895:9"},"id":9},"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol","exportedSymbols":{"IERC165":[1265],"IERC721":[876],"IERC721Metadata":[934]},"id":935,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":909,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"112:23:10"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","file":"../IERC721.sol","id":910,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":935,"sourceUnit":877,"src":"137:24:10","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":912,"name":"IERC721","nodeType":"IdentifierPath","referencedDeclaration":876,"src":"326:7:10"},"id":913,"nodeType":"InheritanceSpecifier","src":"326:7:10"}],"contractDependencies":[],"contractKind":"interface","documentation":{"id":911,"nodeType":"StructuredDocumentation","src":"163:133:10","text":" @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n @dev See https://eips.ethereum.org/EIPS/eip-721"},"fullyImplemented":false,"id":934,"linearizedBaseContracts":[934,876,1265],"name":"IERC721Metadata","nameLocation":"307:15:10","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":914,"nodeType":"StructuredDocumentation","src":"340:58:10","text":" @dev Returns the token collection name."},"functionSelector":"06fdde03","id":919,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"412:4:10","nodeType":"FunctionDefinition","parameters":{"id":915,"nodeType":"ParameterList","parameters":[],"src":"416:2:10"},"returnParameters":{"id":918,"nodeType":"ParameterList","parameters":[{"constant":false,"id":917,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":919,"src":"442:13:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":916,"name":"string","nodeType":"ElementaryTypeName","src":"442:6:10","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"441:15:10"},"scope":934,"src":"403:54:10","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":920,"nodeType":"StructuredDocumentation","src":"463:60:10","text":" @dev Returns the token collection symbol."},"functionSelector":"95d89b41","id":925,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"537:6:10","nodeType":"FunctionDefinition","parameters":{"id":921,"nodeType":"ParameterList","parameters":[],"src":"543:2:10"},"returnParameters":{"id":924,"nodeType":"ParameterList","parameters":[{"constant":false,"id":923,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":925,"src":"569:13:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":922,"name":"string","nodeType":"ElementaryTypeName","src":"569:6:10","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"568:15:10"},"scope":934,"src":"528:56:10","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":926,"nodeType":"StructuredDocumentation","src":"590:90:10","text":" @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token."},"functionSelector":"c87b56dd","id":933,"implemented":false,"kind":"function","modifiers":[],"name":"tokenURI","nameLocation":"694:8:10","nodeType":"FunctionDefinition","parameters":{"id":929,"nodeType":"ParameterList","parameters":[{"constant":false,"id":928,"mutability":"mutable","name":"tokenId","nameLocation":"711:7:10","nodeType":"VariableDeclaration","scope":933,"src":"703:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":927,"name":"uint256","nodeType":"ElementaryTypeName","src":"703:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"702:17:10"},"returnParameters":{"id":932,"nodeType":"ParameterList","parameters":[{"constant":false,"id":931,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":933,"src":"743:13:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":930,"name":"string","nodeType":"ElementaryTypeName","src":"743:6:10","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"742:15:10"},"scope":934,"src":"685:73:10","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":935,"src":"297:463:10","usedErrors":[]}],"src":"112:649:10"},"id":10},"@openzeppelin/contracts/utils/Address.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","exportedSymbols":{"Address":[1229]},"id":1230,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":936,"literals":["solidity","^","0.8",".1"],"nodeType":"PragmaDirective","src":"101:23:11"},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"library","documentation":{"id":937,"nodeType":"StructuredDocumentation","src":"126:67:11","text":" @dev Collection of functions related to the address type"},"fullyImplemented":true,"id":1229,"linearizedBaseContracts":[1229],"name":"Address","nameLocation":"202:7:11","nodeType":"ContractDefinition","nodes":[{"body":{"id":951,"nodeType":"Block","src":"1241:254:11","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":949,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":945,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":940,"src":"1465:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":946,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"code","nodeType":"MemberAccess","src":"1465:12:11","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":947,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"length","nodeType":"MemberAccess","src":"1465:19:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":948,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1487:1:11","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1465:23:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":944,"id":950,"nodeType":"Return","src":"1458:30:11"}]},"documentation":{"id":938,"nodeType":"StructuredDocumentation","src":"216:954:11","text":" @dev Returns true if `account` is a contract.\n [IMPORTANT]\n ====\n It is unsafe to assume that an address for which this function returns\n false is an externally-owned account (EOA) and not a contract.\n Among others, `isContract` will return false for the following\n types of addresses:\n  - an externally-owned account\n  - a contract in construction\n  - an address where a contract will be created\n  - an address where a contract lived, but was destroyed\n ====\n [IMPORTANT]\n ====\n You shouldn't rely on `isContract` to protect against flash loan attacks!\n Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n constructor.\n ===="},"id":952,"implemented":true,"kind":"function","modifiers":[],"name":"isContract","nameLocation":"1184:10:11","nodeType":"FunctionDefinition","parameters":{"id":941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":940,"mutability":"mutable","name":"account","nameLocation":"1203:7:11","nodeType":"VariableDeclaration","scope":952,"src":"1195:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":939,"name":"address","nodeType":"ElementaryTypeName","src":"1195:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1194:17:11"},"returnParameters":{"id":944,"nodeType":"ParameterList","parameters":[{"constant":false,"id":943,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":952,"src":"1235:4:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":942,"name":"bool","nodeType":"ElementaryTypeName","src":"1235:4:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1234:6:11"},"scope":1229,"src":"1175:320:11","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":985,"nodeType":"Block","src":"2483:241:11","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":967,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":963,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2509:4:11","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$1229","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$1229","typeString":"library Address"}],"id":962,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2501:7:11","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":961,"name":"address","nodeType":"ElementaryTypeName","src":"2501:7:11","typeDescriptions":{}}},"id":964,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"2501:13:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":965,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"balance","nodeType":"MemberAccess","src":"2501:21:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":966,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":957,"src":"2526:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2501:31:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e6365","id":968,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2534:31:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9","typeString":"literal_string \"Address: insufficient balance\""},"value":"Address: insufficient balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9","typeString":"literal_string \"Address: insufficient balance\""}],"id":960,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2493:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":969,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"2493:73:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":970,"nodeType":"ExpressionStatement","src":"2493:73:11"},{"assignments":[972,null],"declarations":[{"constant":false,"id":972,"mutability":"mutable","name":"success","nameLocation":"2583:7:11","nodeType":"VariableDeclaration","scope":985,"src":"2578:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":971,"name":"bool","nodeType":"ElementaryTypeName","src":"2578:4:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":979,"initialValue":{"arguments":[{"hexValue":"","id":977,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2626:2:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"id":973,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":955,"src":"2596:9:11","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"call","nodeType":"MemberAccess","src":"2596:14:11","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":976,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":975,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":957,"src":"2618:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"2596:29:11","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":978,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"2596:33:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"2577:52:11"},{"expression":{"arguments":[{"id":981,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":972,"src":"2647:7:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564","id":982,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2656:60:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae","typeString":"literal_string \"Address: unable to send value, recipient may have reverted\""},"value":"Address: unable to send value, recipient may have reverted"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae","typeString":"literal_string \"Address: unable to send value, recipient may have reverted\""}],"id":980,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2639:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":983,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"2639:78:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":984,"nodeType":"ExpressionStatement","src":"2639:78:11"}]},"documentation":{"id":953,"nodeType":"StructuredDocumentation","src":"1501:906:11","text":" @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n `recipient`, forwarding all available gas and reverting on errors.\n https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n of certain opcodes, possibly making contracts go over the 2300 gas limit\n imposed by `transfer`, making them unable to receive funds via\n `transfer`. {sendValue} removes this limitation.\n https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n IMPORTANT: because control is transferred to `recipient`, care must be\n taken to not create reentrancy vulnerabilities. Consider using\n {ReentrancyGuard} or the\n https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]."},"id":986,"implemented":true,"kind":"function","modifiers":[],"name":"sendValue","nameLocation":"2421:9:11","nodeType":"FunctionDefinition","parameters":{"id":958,"nodeType":"ParameterList","parameters":[{"constant":false,"id":955,"mutability":"mutable","name":"recipient","nameLocation":"2447:9:11","nodeType":"VariableDeclaration","scope":986,"src":"2431:25:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":954,"name":"address","nodeType":"ElementaryTypeName","src":"2431:15:11","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":957,"mutability":"mutable","name":"amount","nameLocation":"2466:6:11","nodeType":"VariableDeclaration","scope":986,"src":"2458:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":956,"name":"uint256","nodeType":"ElementaryTypeName","src":"2458:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2430:43:11"},"returnParameters":{"id":959,"nodeType":"ParameterList","parameters":[],"src":"2483:0:11"},"scope":1229,"src":"2412:312:11","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1002,"nodeType":"Block","src":"3555:84:11","statements":[{"expression":{"arguments":[{"id":997,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":989,"src":"3585:6:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":998,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":991,"src":"3593:4:11","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c206661696c6564","id":999,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3599:32:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df","typeString":"literal_string \"Address: low-level call failed\""},"value":"Address: low-level call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df","typeString":"literal_string \"Address: low-level call failed\""}],"id":996,"name":"functionCall","nodeType":"Identifier","overloadedDeclarations":[1003,1023],"referencedDeclaration":1023,"src":"3572:12:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,string memory) returns (bytes memory)"}},"id":1000,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3572:60:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":995,"id":1001,"nodeType":"Return","src":"3565:67:11"}]},"documentation":{"id":987,"nodeType":"StructuredDocumentation","src":"2730:731:11","text":" @dev Performs a Solidity function call using a low level `call`. A\n plain `call` is an unsafe replacement for a function call: use this\n function instead.\n If `target` reverts with a revert reason, it is bubbled up by this\n function (like regular Solidity function calls).\n Returns the raw returned data. To convert to the expected return value,\n use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n Requirements:\n - `target` must be a contract.\n - calling `target` with `data` must not revert.\n _Available since v3.1._"},"id":1003,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"3475:12:11","nodeType":"FunctionDefinition","parameters":{"id":992,"nodeType":"ParameterList","parameters":[{"constant":false,"id":989,"mutability":"mutable","name":"target","nameLocation":"3496:6:11","nodeType":"VariableDeclaration","scope":1003,"src":"3488:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":988,"name":"address","nodeType":"ElementaryTypeName","src":"3488:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":991,"mutability":"mutable","name":"data","nameLocation":"3517:4:11","nodeType":"VariableDeclaration","scope":1003,"src":"3504:17:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":990,"name":"bytes","nodeType":"ElementaryTypeName","src":"3504:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3487:35:11"},"returnParameters":{"id":995,"nodeType":"ParameterList","parameters":[{"constant":false,"id":994,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1003,"src":"3541:12:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":993,"name":"bytes","nodeType":"ElementaryTypeName","src":"3541:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3540:14:11"},"scope":1229,"src":"3466:173:11","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1022,"nodeType":"Block","src":"4008:76:11","statements":[{"expression":{"arguments":[{"id":1016,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1006,"src":"4047:6:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1017,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1008,"src":"4055:4:11","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":1018,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4061:1:11","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":1019,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1010,"src":"4064:12:11","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1015,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[1043,1093],"referencedDeclaration":1093,"src":"4025:21:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":1020,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4025:52:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1014,"id":1021,"nodeType":"Return","src":"4018:59:11"}]},"documentation":{"id":1004,"nodeType":"StructuredDocumentation","src":"3645:211:11","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"},"id":1023,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"3870:12:11","nodeType":"FunctionDefinition","parameters":{"id":1011,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1006,"mutability":"mutable","name":"target","nameLocation":"3900:6:11","nodeType":"VariableDeclaration","scope":1023,"src":"3892:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1005,"name":"address","nodeType":"ElementaryTypeName","src":"3892:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1008,"mutability":"mutable","name":"data","nameLocation":"3929:4:11","nodeType":"VariableDeclaration","scope":1023,"src":"3916:17:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1007,"name":"bytes","nodeType":"ElementaryTypeName","src":"3916:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1010,"mutability":"mutable","name":"errorMessage","nameLocation":"3957:12:11","nodeType":"VariableDeclaration","scope":1023,"src":"3943:26:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1009,"name":"string","nodeType":"ElementaryTypeName","src":"3943:6:11","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3882:93:11"},"returnParameters":{"id":1014,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1013,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1023,"src":"3994:12:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1012,"name":"bytes","nodeType":"ElementaryTypeName","src":"3994:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3993:14:11"},"scope":1229,"src":"3861:223:11","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1042,"nodeType":"Block","src":"4589:111:11","statements":[{"expression":{"arguments":[{"id":1036,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1026,"src":"4628:6:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1037,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1028,"src":"4636:4:11","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":1038,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1030,"src":"4642:5:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c20776974682076616c7565206661696c6564","id":1039,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4649:43:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc","typeString":"literal_string \"Address: low-level call with value failed\""},"value":"Address: low-level call with value failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc","typeString":"literal_string \"Address: low-level call with value failed\""}],"id":1035,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[1043,1093],"referencedDeclaration":1093,"src":"4606:21:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":1040,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4606:87:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1034,"id":1041,"nodeType":"Return","src":"4599:94:11"}]},"documentation":{"id":1024,"nodeType":"StructuredDocumentation","src":"4090:351:11","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but also transferring `value` wei to `target`.\n Requirements:\n - the calling contract must have an ETH balance of at least `value`.\n - the called Solidity function must be `payable`.\n _Available since v3.1._"},"id":1043,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"4455:21:11","nodeType":"FunctionDefinition","parameters":{"id":1031,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1026,"mutability":"mutable","name":"target","nameLocation":"4494:6:11","nodeType":"VariableDeclaration","scope":1043,"src":"4486:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1025,"name":"address","nodeType":"ElementaryTypeName","src":"4486:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1028,"mutability":"mutable","name":"data","nameLocation":"4523:4:11","nodeType":"VariableDeclaration","scope":1043,"src":"4510:17:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1027,"name":"bytes","nodeType":"ElementaryTypeName","src":"4510:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1030,"mutability":"mutable","name":"value","nameLocation":"4545:5:11","nodeType":"VariableDeclaration","scope":1043,"src":"4537:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1029,"name":"uint256","nodeType":"ElementaryTypeName","src":"4537:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4476:80:11"},"returnParameters":{"id":1034,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1033,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1043,"src":"4575:12:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1032,"name":"bytes","nodeType":"ElementaryTypeName","src":"4575:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4574:14:11"},"scope":1229,"src":"4446:254:11","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1092,"nodeType":"Block","src":"5127:320:11","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1064,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":1060,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5153:4:11","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$1229","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$1229","typeString":"library Address"}],"id":1059,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5145:7:11","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1058,"name":"address","nodeType":"ElementaryTypeName","src":"5145:7:11","typeDescriptions":{}}},"id":1061,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5145:13:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1062,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"balance","nodeType":"MemberAccess","src":"5145:21:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":1063,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1050,"src":"5170:5:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5145:30:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c","id":1065,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5177:40:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c","typeString":"literal_string \"Address: insufficient balance for call\""},"value":"Address: insufficient balance for call"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c","typeString":"literal_string \"Address: insufficient balance for call\""}],"id":1057,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5137:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1066,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5137:81:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1067,"nodeType":"ExpressionStatement","src":"5137:81:11"},{"expression":{"arguments":[{"arguments":[{"id":1070,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1046,"src":"5247:6:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1069,"name":"isContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":952,"src":"5236:10:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":1071,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5236:18:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374","id":1072,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5256:31:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad","typeString":"literal_string \"Address: call to non-contract\""},"value":"Address: call to non-contract"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad","typeString":"literal_string \"Address: call to non-contract\""}],"id":1068,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5228:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1073,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5228:60:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1074,"nodeType":"ExpressionStatement","src":"5228:60:11"},{"assignments":[1076,1078],"declarations":[{"constant":false,"id":1076,"mutability":"mutable","name":"success","nameLocation":"5305:7:11","nodeType":"VariableDeclaration","scope":1092,"src":"5300:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1075,"name":"bool","nodeType":"ElementaryTypeName","src":"5300:4:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1078,"mutability":"mutable","name":"returndata","nameLocation":"5327:10:11","nodeType":"VariableDeclaration","scope":1092,"src":"5314:23:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1077,"name":"bytes","nodeType":"ElementaryTypeName","src":"5314:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1085,"initialValue":{"arguments":[{"id":1083,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1048,"src":"5367:4:11","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":1079,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1046,"src":"5341:6:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1080,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"call","nodeType":"MemberAccess","src":"5341:11:11","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":1082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":1081,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1050,"src":"5360:5:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"5341:25:11","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":1084,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5341:31:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"5299:73:11"},{"expression":{"arguments":[{"id":1087,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1076,"src":"5406:7:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1088,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1078,"src":"5415:10:11","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":1089,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1052,"src":"5427:12:11","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1086,"name":"verifyCallResult","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1228,"src":"5389:16:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (bool,bytes memory,string memory) pure returns (bytes memory)"}},"id":1090,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5389:51:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1056,"id":1091,"nodeType":"Return","src":"5382:58:11"}]},"documentation":{"id":1044,"nodeType":"StructuredDocumentation","src":"4706:237:11","text":" @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n with `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"},"id":1093,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"4957:21:11","nodeType":"FunctionDefinition","parameters":{"id":1053,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1046,"mutability":"mutable","name":"target","nameLocation":"4996:6:11","nodeType":"VariableDeclaration","scope":1093,"src":"4988:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1045,"name":"address","nodeType":"ElementaryTypeName","src":"4988:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1048,"mutability":"mutable","name":"data","nameLocation":"5025:4:11","nodeType":"VariableDeclaration","scope":1093,"src":"5012:17:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1047,"name":"bytes","nodeType":"ElementaryTypeName","src":"5012:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1050,"mutability":"mutable","name":"value","nameLocation":"5047:5:11","nodeType":"VariableDeclaration","scope":1093,"src":"5039:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1049,"name":"uint256","nodeType":"ElementaryTypeName","src":"5039:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1052,"mutability":"mutable","name":"errorMessage","nameLocation":"5076:12:11","nodeType":"VariableDeclaration","scope":1093,"src":"5062:26:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1051,"name":"string","nodeType":"ElementaryTypeName","src":"5062:6:11","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4978:116:11"},"returnParameters":{"id":1056,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1055,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1093,"src":"5113:12:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1054,"name":"bytes","nodeType":"ElementaryTypeName","src":"5113:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5112:14:11"},"scope":1229,"src":"4948:499:11","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1109,"nodeType":"Block","src":"5724:97:11","statements":[{"expression":{"arguments":[{"id":1104,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1096,"src":"5760:6:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1105,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1098,"src":"5768:4:11","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c207374617469632063616c6c206661696c6564","id":1106,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5774:39:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0","typeString":"literal_string \"Address: low-level static call failed\""},"value":"Address: low-level static call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0","typeString":"literal_string \"Address: low-level static call failed\""}],"id":1103,"name":"functionStaticCall","nodeType":"Identifier","overloadedDeclarations":[1110,1145],"referencedDeclaration":1145,"src":"5741:18:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,string memory) view returns (bytes memory)"}},"id":1107,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5741:73:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1102,"id":1108,"nodeType":"Return","src":"5734:80:11"}]},"documentation":{"id":1094,"nodeType":"StructuredDocumentation","src":"5453:166:11","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":1110,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"5633:18:11","nodeType":"FunctionDefinition","parameters":{"id":1099,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1096,"mutability":"mutable","name":"target","nameLocation":"5660:6:11","nodeType":"VariableDeclaration","scope":1110,"src":"5652:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1095,"name":"address","nodeType":"ElementaryTypeName","src":"5652:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1098,"mutability":"mutable","name":"data","nameLocation":"5681:4:11","nodeType":"VariableDeclaration","scope":1110,"src":"5668:17:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1097,"name":"bytes","nodeType":"ElementaryTypeName","src":"5668:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5651:35:11"},"returnParameters":{"id":1102,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1101,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1110,"src":"5710:12:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1100,"name":"bytes","nodeType":"ElementaryTypeName","src":"5710:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5709:14:11"},"scope":1229,"src":"5624:197:11","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":1144,"nodeType":"Block","src":"6163:228:11","statements":[{"expression":{"arguments":[{"arguments":[{"id":1124,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1113,"src":"6192:6:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1123,"name":"isContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":952,"src":"6181:10:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":1125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"6181:18:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a207374617469632063616c6c20746f206e6f6e2d636f6e7472616374","id":1126,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6201:38:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_c79cc78e4f16ce3933a42b84c73868f93bb4a59c031a0acf576679de98c608a9","typeString":"literal_string \"Address: static call to non-contract\""},"value":"Address: static call to non-contract"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c79cc78e4f16ce3933a42b84c73868f93bb4a59c031a0acf576679de98c608a9","typeString":"literal_string \"Address: static call to non-contract\""}],"id":1122,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6173:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"6173:67:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1128,"nodeType":"ExpressionStatement","src":"6173:67:11"},{"assignments":[1130,1132],"declarations":[{"constant":false,"id":1130,"mutability":"mutable","name":"success","nameLocation":"6257:7:11","nodeType":"VariableDeclaration","scope":1144,"src":"6252:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1129,"name":"bool","nodeType":"ElementaryTypeName","src":"6252:4:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1132,"mutability":"mutable","name":"returndata","nameLocation":"6279:10:11","nodeType":"VariableDeclaration","scope":1144,"src":"6266:23:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1131,"name":"bytes","nodeType":"ElementaryTypeName","src":"6266:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1137,"initialValue":{"arguments":[{"id":1135,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1115,"src":"6311:4:11","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":1133,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1113,"src":"6293:6:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1134,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"staticcall","nodeType":"MemberAccess","src":"6293:17:11","typeDescriptions":{"typeIdentifier":"t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) view returns (bool,bytes memory)"}},"id":1136,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"6293:23:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"6251:65:11"},{"expression":{"arguments":[{"id":1139,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1130,"src":"6350:7:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1140,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1132,"src":"6359:10:11","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":1141,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1117,"src":"6371:12:11","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1138,"name":"verifyCallResult","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1228,"src":"6333:16:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (bool,bytes memory,string memory) pure returns (bytes memory)"}},"id":1142,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"6333:51:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1121,"id":1143,"nodeType":"Return","src":"6326:58:11"}]},"documentation":{"id":1111,"nodeType":"StructuredDocumentation","src":"5827:173:11","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":1145,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"6014:18:11","nodeType":"FunctionDefinition","parameters":{"id":1118,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1113,"mutability":"mutable","name":"target","nameLocation":"6050:6:11","nodeType":"VariableDeclaration","scope":1145,"src":"6042:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1112,"name":"address","nodeType":"ElementaryTypeName","src":"6042:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1115,"mutability":"mutable","name":"data","nameLocation":"6079:4:11","nodeType":"VariableDeclaration","scope":1145,"src":"6066:17:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1114,"name":"bytes","nodeType":"ElementaryTypeName","src":"6066:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1117,"mutability":"mutable","name":"errorMessage","nameLocation":"6107:12:11","nodeType":"VariableDeclaration","scope":1145,"src":"6093:26:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1116,"name":"string","nodeType":"ElementaryTypeName","src":"6093:6:11","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6032:93:11"},"returnParameters":{"id":1121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1120,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1145,"src":"6149:12:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1119,"name":"bytes","nodeType":"ElementaryTypeName","src":"6149:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6148:14:11"},"scope":1229,"src":"6005:386:11","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":1161,"nodeType":"Block","src":"6667:101:11","statements":[{"expression":{"arguments":[{"id":1156,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1148,"src":"6705:6:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1157,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1150,"src":"6713:4:11","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564","id":1158,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6719:41:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398","typeString":"literal_string \"Address: low-level delegate call failed\""},"value":"Address: low-level delegate call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398","typeString":"literal_string \"Address: low-level delegate call failed\""}],"id":1155,"name":"functionDelegateCall","nodeType":"Identifier","overloadedDeclarations":[1162,1197],"referencedDeclaration":1197,"src":"6684:20:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,string memory) returns (bytes memory)"}},"id":1159,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"6684:77:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1154,"id":1160,"nodeType":"Return","src":"6677:84:11"}]},"documentation":{"id":1146,"nodeType":"StructuredDocumentation","src":"6397:168:11","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":1162,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"6579:20:11","nodeType":"FunctionDefinition","parameters":{"id":1151,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1148,"mutability":"mutable","name":"target","nameLocation":"6608:6:11","nodeType":"VariableDeclaration","scope":1162,"src":"6600:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1147,"name":"address","nodeType":"ElementaryTypeName","src":"6600:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1150,"mutability":"mutable","name":"data","nameLocation":"6629:4:11","nodeType":"VariableDeclaration","scope":1162,"src":"6616:17:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1149,"name":"bytes","nodeType":"ElementaryTypeName","src":"6616:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6599:35:11"},"returnParameters":{"id":1154,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1153,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1162,"src":"6653:12:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1152,"name":"bytes","nodeType":"ElementaryTypeName","src":"6653:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6652:14:11"},"scope":1229,"src":"6570:198:11","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1196,"nodeType":"Block","src":"7109:232:11","statements":[{"expression":{"arguments":[{"arguments":[{"id":1176,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1165,"src":"7138:6:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1175,"name":"isContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":952,"src":"7127:10:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":1177,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"7127:18:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6e7472616374","id":1178,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7147:40:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_b94ded0918034cf8f896e19fa3cfdef1188cd569c577264a3622e49152f88520","typeString":"literal_string \"Address: delegate call to non-contract\""},"value":"Address: delegate call to non-contract"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b94ded0918034cf8f896e19fa3cfdef1188cd569c577264a3622e49152f88520","typeString":"literal_string \"Address: delegate call to non-contract\""}],"id":1174,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7119:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1179,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"7119:69:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1180,"nodeType":"ExpressionStatement","src":"7119:69:11"},{"assignments":[1182,1184],"declarations":[{"constant":false,"id":1182,"mutability":"mutable","name":"success","nameLocation":"7205:7:11","nodeType":"VariableDeclaration","scope":1196,"src":"7200:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1181,"name":"bool","nodeType":"ElementaryTypeName","src":"7200:4:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1184,"mutability":"mutable","name":"returndata","nameLocation":"7227:10:11","nodeType":"VariableDeclaration","scope":1196,"src":"7214:23:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1183,"name":"bytes","nodeType":"ElementaryTypeName","src":"7214:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1189,"initialValue":{"arguments":[{"id":1187,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1167,"src":"7261:4:11","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":1185,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1165,"src":"7241:6:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"delegatecall","nodeType":"MemberAccess","src":"7241:19:11","typeDescriptions":{"typeIdentifier":"t_function_baredelegatecall_nonpayable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) returns (bool,bytes memory)"}},"id":1188,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"7241:25:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"7199:67:11"},{"expression":{"arguments":[{"id":1191,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1182,"src":"7300:7:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1192,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1184,"src":"7309:10:11","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":1193,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1169,"src":"7321:12:11","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1190,"name":"verifyCallResult","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1228,"src":"7283:16:11","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (bool,bytes memory,string memory) pure returns (bytes memory)"}},"id":1194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"7283:51:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1173,"id":1195,"nodeType":"Return","src":"7276:58:11"}]},"documentation":{"id":1163,"nodeType":"StructuredDocumentation","src":"6774:175:11","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":1197,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"6963:20:11","nodeType":"FunctionDefinition","parameters":{"id":1170,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1165,"mutability":"mutable","name":"target","nameLocation":"7001:6:11","nodeType":"VariableDeclaration","scope":1197,"src":"6993:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1164,"name":"address","nodeType":"ElementaryTypeName","src":"6993:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1167,"mutability":"mutable","name":"data","nameLocation":"7030:4:11","nodeType":"VariableDeclaration","scope":1197,"src":"7017:17:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1166,"name":"bytes","nodeType":"ElementaryTypeName","src":"7017:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1169,"mutability":"mutable","name":"errorMessage","nameLocation":"7058:12:11","nodeType":"VariableDeclaration","scope":1197,"src":"7044:26:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1168,"name":"string","nodeType":"ElementaryTypeName","src":"7044:6:11","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6983:93:11"},"returnParameters":{"id":1173,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1172,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1197,"src":"7095:12:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1171,"name":"bytes","nodeType":"ElementaryTypeName","src":"7095:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7094:14:11"},"scope":1229,"src":"6954:387:11","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1227,"nodeType":"Block","src":"7721:582:11","statements":[{"condition":{"id":1209,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1200,"src":"7735:7:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1225,"nodeType":"Block","src":"7792:505:11","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1216,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1213,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1202,"src":"7876:10:11","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1214,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"length","nodeType":"MemberAccess","src":"7876:17:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1215,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7896:1:11","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7876:21:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1223,"nodeType":"Block","src":"8234:53:11","statements":[{"expression":{"arguments":[{"id":1220,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1204,"src":"8259:12:11","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1219,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"8252:6:11","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":1221,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"8252:20:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1222,"nodeType":"ExpressionStatement","src":"8252:20:11"}]},"id":1224,"nodeType":"IfStatement","src":"7872:415:11","trueBody":{"id":1218,"nodeType":"Block","src":"7899:329:11","statements":[{"AST":{"nodeType":"YulBlock","src":"8069:145:11","statements":[{"nodeType":"YulVariableDeclaration","src":"8091:40:11","value":{"arguments":[{"name":"returndata","nodeType":"YulIdentifier","src":"8120:10:11"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8114:5:11"},"nodeType":"YulFunctionCall","src":"8114:17:11"},"variables":[{"name":"returndata_size","nodeType":"YulTypedName","src":"8095:15:11","type":""}]},{"expression":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8163:2:11","type":"","value":"32"},{"name":"returndata","nodeType":"YulIdentifier","src":"8167:10:11"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8159:3:11"},"nodeType":"YulFunctionCall","src":"8159:19:11"},{"name":"returndata_size","nodeType":"YulIdentifier","src":"8180:15:11"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8152:6:11"},"nodeType":"YulFunctionCall","src":"8152:44:11"},"nodeType":"YulExpressionStatement","src":"8152:44:11"}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"istanbul","externalReferences":[{"declaration":1202,"isOffset":false,"isSlot":false,"src":"8120:10:11","valueSize":1},{"declaration":1202,"isOffset":false,"isSlot":false,"src":"8167:10:11","valueSize":1}],"id":1217,"nodeType":"InlineAssembly","src":"8060:154:11"}]}}]},"id":1226,"nodeType":"IfStatement","src":"7731:566:11","trueBody":{"id":1212,"nodeType":"Block","src":"7744:42:11","statements":[{"expression":{"id":1210,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1202,"src":"7765:10:11","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1208,"id":1211,"nodeType":"Return","src":"7758:17:11"}]}}]},"documentation":{"id":1198,"nodeType":"StructuredDocumentation","src":"7347:209:11","text":" @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\n revert reason using the provided one.\n _Available since v4.3._"},"id":1228,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResult","nameLocation":"7570:16:11","nodeType":"FunctionDefinition","parameters":{"id":1205,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1200,"mutability":"mutable","name":"success","nameLocation":"7601:7:11","nodeType":"VariableDeclaration","scope":1228,"src":"7596:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1199,"name":"bool","nodeType":"ElementaryTypeName","src":"7596:4:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1202,"mutability":"mutable","name":"returndata","nameLocation":"7631:10:11","nodeType":"VariableDeclaration","scope":1228,"src":"7618:23:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1201,"name":"bytes","nodeType":"ElementaryTypeName","src":"7618:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1204,"mutability":"mutable","name":"errorMessage","nameLocation":"7665:12:11","nodeType":"VariableDeclaration","scope":1228,"src":"7651:26:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1203,"name":"string","nodeType":"ElementaryTypeName","src":"7651:6:11","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7586:97:11"},"returnParameters":{"id":1208,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1207,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1228,"src":"7707:12:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1206,"name":"bytes","nodeType":"ElementaryTypeName","src":"7707:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7706:14:11"},"scope":1229,"src":"7561:742:11","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":1230,"src":"194:8111:11","usedErrors":[]}],"src":"101:8205:11"},"id":11},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","exportedSymbols":{"ERC165":[1253],"IERC165":[1265]},"id":1254,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1231,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"99:23:12"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"./IERC165.sol","id":1232,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1254,"sourceUnit":1266,"src":"124:23:12","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":1234,"name":"IERC165","nodeType":"IdentifierPath","referencedDeclaration":1265,"src":"754:7:12"},"id":1235,"nodeType":"InheritanceSpecifier","src":"754:7:12"}],"contractDependencies":[],"contractKind":"contract","documentation":{"id":1233,"nodeType":"StructuredDocumentation","src":"149:576:12","text":" @dev Implementation of the {IERC165} interface.\n Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\n for the additional interface id that will be supported. For example:\n ```solidity\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n }\n ```\n Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation."},"fullyImplemented":true,"id":1253,"linearizedBaseContracts":[1253,1265],"name":"ERC165","nameLocation":"744:6:12","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[1264],"body":{"id":1251,"nodeType":"Block","src":"920:64:12","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":1249,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1244,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1238,"src":"937:11:12","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":1246,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1265,"src":"957:7:12","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$1265_$","typeString":"type(contract IERC165)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC165_$1265_$","typeString":"type(contract IERC165)"}],"id":1245,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"952:4:12","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":1247,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"952:13:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC165_$1265","typeString":"type(contract IERC165)"}},"id":1248,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberName":"interfaceId","nodeType":"MemberAccess","src":"952:25:12","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"937:40:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":1243,"id":1250,"nodeType":"Return","src":"930:47:12"}]},"documentation":{"id":1236,"nodeType":"StructuredDocumentation","src":"768:56:12","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":1252,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"838:17:12","nodeType":"FunctionDefinition","overrides":{"id":1240,"nodeType":"OverrideSpecifier","overrides":[],"src":"896:8:12"},"parameters":{"id":1239,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1238,"mutability":"mutable","name":"interfaceId","nameLocation":"863:11:12","nodeType":"VariableDeclaration","scope":1252,"src":"856:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1237,"name":"bytes4","nodeType":"ElementaryTypeName","src":"856:6:12","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"855:20:12"},"returnParameters":{"id":1243,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1242,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1252,"src":"914:4:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1241,"name":"bool","nodeType":"ElementaryTypeName","src":"914:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"913:6:12"},"scope":1253,"src":"829:155:12","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":1254,"src":"726:260:12","usedErrors":[]}],"src":"99:888:12"},"id":12},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","exportedSymbols":{"IERC165":[1265]},"id":1266,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1255,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"100:23:13"},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"interface","documentation":{"id":1256,"nodeType":"StructuredDocumentation","src":"125:279:13","text":" @dev Interface of the ERC165 standard, as defined in the\n https://eips.ethereum.org/EIPS/eip-165[EIP].\n Implementers can declare support of contract interfaces, which can then be\n queried by others ({ERC165Checker}).\n For an implementation, see {ERC165}."},"fullyImplemented":false,"id":1265,"linearizedBaseContracts":[1265],"name":"IERC165","nameLocation":"415:7:13","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1257,"nodeType":"StructuredDocumentation","src":"429:340:13","text":" @dev Returns true if this contract implements the interface defined by\n `interfaceId`. See the corresponding\n https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n to learn more about how these ids are created.\n This function call must use less than 30 000 gas."},"functionSelector":"01ffc9a7","id":1264,"implemented":false,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"783:17:13","nodeType":"FunctionDefinition","parameters":{"id":1260,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1259,"mutability":"mutable","name":"interfaceId","nameLocation":"808:11:13","nodeType":"VariableDeclaration","scope":1264,"src":"801:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1258,"name":"bytes4","nodeType":"ElementaryTypeName","src":"801:6:13","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"800:20:13"},"returnParameters":{"id":1263,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1262,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1264,"src":"844:4:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1261,"name":"bool","nodeType":"ElementaryTypeName","src":"844:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"843:6:13"},"scope":1265,"src":"774:76:13","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":1266,"src":"405:447:13","usedErrors":[]}],"src":"100:753:13"},"id":13},"@openzeppelin/contracts/utils/math/SafeMath.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/SafeMath.sol","exportedSymbols":{"SafeMath":[1577]},"id":1578,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1267,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"107:23:14"},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"library","documentation":{"id":1268,"nodeType":"StructuredDocumentation","src":"285:196:14","text":" @dev Wrappers over Solidity's arithmetic operations.\n NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler\n now has built in overflow checking."},"fullyImplemented":true,"id":1577,"linearizedBaseContracts":[1577],"name":"SafeMath","nameLocation":"490:8:14","nodeType":"ContractDefinition","nodes":[{"body":{"id":1299,"nodeType":"Block","src":"717:140:14","statements":[{"id":1298,"nodeType":"UncheckedBlock","src":"727:124:14","statements":[{"assignments":[1281],"declarations":[{"constant":false,"id":1281,"mutability":"mutable","name":"c","nameLocation":"759:1:14","nodeType":"VariableDeclaration","scope":1298,"src":"751:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1280,"name":"uint256","nodeType":"ElementaryTypeName","src":"751:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1285,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1284,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1282,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1271,"src":"763:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1283,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1273,"src":"767:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"763:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"751:17:14"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1288,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1286,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1281,"src":"786:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":1287,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1271,"src":"790:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"786:5:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1293,"nodeType":"IfStatement","src":"782:28:14","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":1289,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"801:5:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":1290,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"808:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":1291,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"800:10:14","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":1279,"id":1292,"nodeType":"Return","src":"793:17:14"}},{"expression":{"components":[{"hexValue":"74727565","id":1294,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"832:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":1295,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1281,"src":"838:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1296,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"831:9:14","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":1279,"id":1297,"nodeType":"Return","src":"824:16:14"}]}]},"documentation":{"id":1269,"nodeType":"StructuredDocumentation","src":"505:131:14","text":" @dev Returns the addition of two unsigned integers, with an overflow flag.\n _Available since v3.4._"},"id":1300,"implemented":true,"kind":"function","modifiers":[],"name":"tryAdd","nameLocation":"650:6:14","nodeType":"FunctionDefinition","parameters":{"id":1274,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1271,"mutability":"mutable","name":"a","nameLocation":"665:1:14","nodeType":"VariableDeclaration","scope":1300,"src":"657:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1270,"name":"uint256","nodeType":"ElementaryTypeName","src":"657:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1273,"mutability":"mutable","name":"b","nameLocation":"676:1:14","nodeType":"VariableDeclaration","scope":1300,"src":"668:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1272,"name":"uint256","nodeType":"ElementaryTypeName","src":"668:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"656:22:14"},"returnParameters":{"id":1279,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1276,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1300,"src":"702:4:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1275,"name":"bool","nodeType":"ElementaryTypeName","src":"702:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1278,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1300,"src":"708:7:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1277,"name":"uint256","nodeType":"ElementaryTypeName","src":"708:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"701:15:14"},"scope":1577,"src":"641:216:14","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1327,"nodeType":"Block","src":"1078:113:14","statements":[{"id":1326,"nodeType":"UncheckedBlock","src":"1088:97:14","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1312,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1305,"src":"1116:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":1313,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1303,"src":"1120:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1116:5:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1319,"nodeType":"IfStatement","src":"1112:28:14","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":1315,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1131:5:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":1316,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1138:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":1317,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1130:10:14","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":1311,"id":1318,"nodeType":"Return","src":"1123:17:14"}},{"expression":{"components":[{"hexValue":"74727565","id":1320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1162:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1321,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1303,"src":"1168:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1322,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1305,"src":"1172:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1168:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1324,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1161:13:14","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":1311,"id":1325,"nodeType":"Return","src":"1154:20:14"}]}]},"documentation":{"id":1301,"nodeType":"StructuredDocumentation","src":"863:134:14","text":" @dev Returns the subtraction of two unsigned integers, with an overflow flag.\n _Available since v3.4._"},"id":1328,"implemented":true,"kind":"function","modifiers":[],"name":"trySub","nameLocation":"1011:6:14","nodeType":"FunctionDefinition","parameters":{"id":1306,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1303,"mutability":"mutable","name":"a","nameLocation":"1026:1:14","nodeType":"VariableDeclaration","scope":1328,"src":"1018:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1302,"name":"uint256","nodeType":"ElementaryTypeName","src":"1018:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1305,"mutability":"mutable","name":"b","nameLocation":"1037:1:14","nodeType":"VariableDeclaration","scope":1328,"src":"1029:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1304,"name":"uint256","nodeType":"ElementaryTypeName","src":"1029:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1017:22:14"},"returnParameters":{"id":1311,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1308,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1328,"src":"1063:4:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1307,"name":"bool","nodeType":"ElementaryTypeName","src":"1063:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1310,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1328,"src":"1069:7:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1309,"name":"uint256","nodeType":"ElementaryTypeName","src":"1069:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1062:15:14"},"scope":1577,"src":"1002:189:14","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1369,"nodeType":"Block","src":"1415:417:14","statements":[{"id":1368,"nodeType":"UncheckedBlock","src":"1425:401:14","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1342,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1340,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1331,"src":"1683:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1341,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1688:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1683:6:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1347,"nodeType":"IfStatement","src":"1679:28:14","trueBody":{"expression":{"components":[{"hexValue":"74727565","id":1343,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1699:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"hexValue":"30","id":1344,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1705:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":1345,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1698:9:14","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":1339,"id":1346,"nodeType":"Return","src":"1691:16:14"}},{"assignments":[1349],"declarations":[{"constant":false,"id":1349,"mutability":"mutable","name":"c","nameLocation":"1729:1:14","nodeType":"VariableDeclaration","scope":1368,"src":"1721:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1348,"name":"uint256","nodeType":"ElementaryTypeName","src":"1721:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1353,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1350,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1331,"src":"1733:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":1351,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1333,"src":"1737:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1733:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1721:17:14"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1356,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1354,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1349,"src":"1756:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1355,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1331,"src":"1760:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1756:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":1357,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1333,"src":"1765:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1756:10:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1363,"nodeType":"IfStatement","src":"1752:33:14","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":1359,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1776:5:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":1360,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1783:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":1361,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1775:10:14","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":1339,"id":1362,"nodeType":"Return","src":"1768:17:14"}},{"expression":{"components":[{"hexValue":"74727565","id":1364,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1807:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":1365,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1349,"src":"1813:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1366,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1806:9:14","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":1339,"id":1367,"nodeType":"Return","src":"1799:16:14"}]}]},"documentation":{"id":1329,"nodeType":"StructuredDocumentation","src":"1197:137:14","text":" @dev Returns the multiplication of two unsigned integers, with an overflow flag.\n _Available since v3.4._"},"id":1370,"implemented":true,"kind":"function","modifiers":[],"name":"tryMul","nameLocation":"1348:6:14","nodeType":"FunctionDefinition","parameters":{"id":1334,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1331,"mutability":"mutable","name":"a","nameLocation":"1363:1:14","nodeType":"VariableDeclaration","scope":1370,"src":"1355:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1330,"name":"uint256","nodeType":"ElementaryTypeName","src":"1355:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1333,"mutability":"mutable","name":"b","nameLocation":"1374:1:14","nodeType":"VariableDeclaration","scope":1370,"src":"1366:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1332,"name":"uint256","nodeType":"ElementaryTypeName","src":"1366:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1354:22:14"},"returnParameters":{"id":1339,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1336,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1370,"src":"1400:4:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1335,"name":"bool","nodeType":"ElementaryTypeName","src":"1400:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1338,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1370,"src":"1406:7:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1337,"name":"uint256","nodeType":"ElementaryTypeName","src":"1406:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1399:15:14"},"scope":1577,"src":"1339:493:14","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1397,"nodeType":"Block","src":"2057:114:14","statements":[{"id":1396,"nodeType":"UncheckedBlock","src":"2067:98:14","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1382,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1375,"src":"2095:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1383,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2100:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2095:6:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1389,"nodeType":"IfStatement","src":"2091:29:14","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":1385,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2111:5:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":1386,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2118:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":1387,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2110:10:14","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":1381,"id":1388,"nodeType":"Return","src":"2103:17:14"}},{"expression":{"components":[{"hexValue":"74727565","id":1390,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2142:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1391,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1373,"src":"2148:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1392,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1375,"src":"2152:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2148:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1394,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2141:13:14","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":1381,"id":1395,"nodeType":"Return","src":"2134:20:14"}]}]},"documentation":{"id":1371,"nodeType":"StructuredDocumentation","src":"1838:138:14","text":" @dev Returns the division of two unsigned integers, with a division by zero flag.\n _Available since v3.4._"},"id":1398,"implemented":true,"kind":"function","modifiers":[],"name":"tryDiv","nameLocation":"1990:6:14","nodeType":"FunctionDefinition","parameters":{"id":1376,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1373,"mutability":"mutable","name":"a","nameLocation":"2005:1:14","nodeType":"VariableDeclaration","scope":1398,"src":"1997:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1372,"name":"uint256","nodeType":"ElementaryTypeName","src":"1997:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1375,"mutability":"mutable","name":"b","nameLocation":"2016:1:14","nodeType":"VariableDeclaration","scope":1398,"src":"2008:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1374,"name":"uint256","nodeType":"ElementaryTypeName","src":"2008:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1996:22:14"},"returnParameters":{"id":1381,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1378,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1398,"src":"2042:4:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1377,"name":"bool","nodeType":"ElementaryTypeName","src":"2042:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1380,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1398,"src":"2048:7:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1379,"name":"uint256","nodeType":"ElementaryTypeName","src":"2048:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2041:15:14"},"scope":1577,"src":"1981:190:14","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1425,"nodeType":"Block","src":"2406:114:14","statements":[{"id":1424,"nodeType":"UncheckedBlock","src":"2416:98:14","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1412,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1410,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1403,"src":"2444:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1411,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2449:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2444:6:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1417,"nodeType":"IfStatement","src":"2440:29:14","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":1413,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2460:5:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":1414,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2467:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":1415,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2459:10:14","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":1409,"id":1416,"nodeType":"Return","src":"2452:17:14"}},{"expression":{"components":[{"hexValue":"74727565","id":1418,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2491:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1421,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1419,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1401,"src":"2497:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"id":1420,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1403,"src":"2501:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2497:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1422,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2490:13:14","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":1409,"id":1423,"nodeType":"Return","src":"2483:20:14"}]}]},"documentation":{"id":1399,"nodeType":"StructuredDocumentation","src":"2177:148:14","text":" @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.\n _Available since v3.4._"},"id":1426,"implemented":true,"kind":"function","modifiers":[],"name":"tryMod","nameLocation":"2339:6:14","nodeType":"FunctionDefinition","parameters":{"id":1404,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1401,"mutability":"mutable","name":"a","nameLocation":"2354:1:14","nodeType":"VariableDeclaration","scope":1426,"src":"2346:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1400,"name":"uint256","nodeType":"ElementaryTypeName","src":"2346:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1403,"mutability":"mutable","name":"b","nameLocation":"2365:1:14","nodeType":"VariableDeclaration","scope":1426,"src":"2357:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1402,"name":"uint256","nodeType":"ElementaryTypeName","src":"2357:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2345:22:14"},"returnParameters":{"id":1409,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1406,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1426,"src":"2391:4:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1405,"name":"bool","nodeType":"ElementaryTypeName","src":"2391:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1408,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1426,"src":"2397:7:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1407,"name":"uint256","nodeType":"ElementaryTypeName","src":"2397:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2390:15:14"},"scope":1577,"src":"2330:190:14","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1440,"nodeType":"Block","src":"2822:29:14","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1436,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1429,"src":"2839:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1437,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1431,"src":"2843:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2839:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1435,"id":1439,"nodeType":"Return","src":"2832:12:14"}]},"documentation":{"id":1427,"nodeType":"StructuredDocumentation","src":"2526:224:14","text":" @dev Returns the addition of two unsigned integers, reverting on\n overflow.\n Counterpart to Solidity's `+` operator.\n Requirements:\n - Addition cannot overflow."},"id":1441,"implemented":true,"kind":"function","modifiers":[],"name":"add","nameLocation":"2764:3:14","nodeType":"FunctionDefinition","parameters":{"id":1432,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1429,"mutability":"mutable","name":"a","nameLocation":"2776:1:14","nodeType":"VariableDeclaration","scope":1441,"src":"2768:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1428,"name":"uint256","nodeType":"ElementaryTypeName","src":"2768:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1431,"mutability":"mutable","name":"b","nameLocation":"2787:1:14","nodeType":"VariableDeclaration","scope":1441,"src":"2779:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1430,"name":"uint256","nodeType":"ElementaryTypeName","src":"2779:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2767:22:14"},"returnParameters":{"id":1435,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1434,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1441,"src":"2813:7:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1433,"name":"uint256","nodeType":"ElementaryTypeName","src":"2813:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2812:9:14"},"scope":1577,"src":"2755:96:14","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1455,"nodeType":"Block","src":"3189:29:14","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1451,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1444,"src":"3206:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1452,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1446,"src":"3210:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3206:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1450,"id":1454,"nodeType":"Return","src":"3199:12:14"}]},"documentation":{"id":1442,"nodeType":"StructuredDocumentation","src":"2857:260:14","text":" @dev Returns the subtraction of two unsigned integers, reverting on\n overflow (when the result is negative).\n Counterpart to Solidity's `-` operator.\n Requirements:\n - Subtraction cannot overflow."},"id":1456,"implemented":true,"kind":"function","modifiers":[],"name":"sub","nameLocation":"3131:3:14","nodeType":"FunctionDefinition","parameters":{"id":1447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1444,"mutability":"mutable","name":"a","nameLocation":"3143:1:14","nodeType":"VariableDeclaration","scope":1456,"src":"3135:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1443,"name":"uint256","nodeType":"ElementaryTypeName","src":"3135:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1446,"mutability":"mutable","name":"b","nameLocation":"3154:1:14","nodeType":"VariableDeclaration","scope":1456,"src":"3146:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1445,"name":"uint256","nodeType":"ElementaryTypeName","src":"3146:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3134:22:14"},"returnParameters":{"id":1450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1449,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1456,"src":"3180:7:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1448,"name":"uint256","nodeType":"ElementaryTypeName","src":"3180:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3179:9:14"},"scope":1577,"src":"3122:96:14","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1470,"nodeType":"Block","src":"3532:29:14","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1468,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1466,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1459,"src":"3549:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":1467,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1461,"src":"3553:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3549:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1465,"id":1469,"nodeType":"Return","src":"3542:12:14"}]},"documentation":{"id":1457,"nodeType":"StructuredDocumentation","src":"3224:236:14","text":" @dev Returns the multiplication of two unsigned integers, reverting on\n overflow.\n Counterpart to Solidity's `*` operator.\n Requirements:\n - Multiplication cannot overflow."},"id":1471,"implemented":true,"kind":"function","modifiers":[],"name":"mul","nameLocation":"3474:3:14","nodeType":"FunctionDefinition","parameters":{"id":1462,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1459,"mutability":"mutable","name":"a","nameLocation":"3486:1:14","nodeType":"VariableDeclaration","scope":1471,"src":"3478:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1458,"name":"uint256","nodeType":"ElementaryTypeName","src":"3478:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1461,"mutability":"mutable","name":"b","nameLocation":"3497:1:14","nodeType":"VariableDeclaration","scope":1471,"src":"3489:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1460,"name":"uint256","nodeType":"ElementaryTypeName","src":"3489:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3477:22:14"},"returnParameters":{"id":1465,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1464,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1471,"src":"3523:7:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1463,"name":"uint256","nodeType":"ElementaryTypeName","src":"3523:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3522:9:14"},"scope":1577,"src":"3465:96:14","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1485,"nodeType":"Block","src":"3917:29:14","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1483,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1481,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1474,"src":"3934:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1482,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1476,"src":"3938:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3934:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1480,"id":1484,"nodeType":"Return","src":"3927:12:14"}]},"documentation":{"id":1472,"nodeType":"StructuredDocumentation","src":"3567:278:14","text":" @dev Returns the integer division of two unsigned integers, reverting on\n division by zero. The result is rounded towards zero.\n Counterpart to Solidity's `/` operator.\n Requirements:\n - The divisor cannot be zero."},"id":1486,"implemented":true,"kind":"function","modifiers":[],"name":"div","nameLocation":"3859:3:14","nodeType":"FunctionDefinition","parameters":{"id":1477,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1474,"mutability":"mutable","name":"a","nameLocation":"3871:1:14","nodeType":"VariableDeclaration","scope":1486,"src":"3863:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1473,"name":"uint256","nodeType":"ElementaryTypeName","src":"3863:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1476,"mutability":"mutable","name":"b","nameLocation":"3882:1:14","nodeType":"VariableDeclaration","scope":1486,"src":"3874:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1475,"name":"uint256","nodeType":"ElementaryTypeName","src":"3874:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3862:22:14"},"returnParameters":{"id":1480,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1479,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1486,"src":"3908:7:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1478,"name":"uint256","nodeType":"ElementaryTypeName","src":"3908:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3907:9:14"},"scope":1577,"src":"3850:96:14","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1500,"nodeType":"Block","src":"4466:29:14","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1498,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1496,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1489,"src":"4483:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"id":1497,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1491,"src":"4487:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4483:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1495,"id":1499,"nodeType":"Return","src":"4476:12:14"}]},"documentation":{"id":1487,"nodeType":"StructuredDocumentation","src":"3952:442:14","text":" @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\n reverting when dividing by zero.\n Counterpart to Solidity's `%` operator. This function uses a `revert`\n opcode (which leaves remaining gas untouched) while Solidity uses an\n invalid opcode to revert (consuming all remaining gas).\n Requirements:\n - The divisor cannot be zero."},"id":1501,"implemented":true,"kind":"function","modifiers":[],"name":"mod","nameLocation":"4408:3:14","nodeType":"FunctionDefinition","parameters":{"id":1492,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1489,"mutability":"mutable","name":"a","nameLocation":"4420:1:14","nodeType":"VariableDeclaration","scope":1501,"src":"4412:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1488,"name":"uint256","nodeType":"ElementaryTypeName","src":"4412:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1491,"mutability":"mutable","name":"b","nameLocation":"4431:1:14","nodeType":"VariableDeclaration","scope":1501,"src":"4423:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1490,"name":"uint256","nodeType":"ElementaryTypeName","src":"4423:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4411:22:14"},"returnParameters":{"id":1495,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1494,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1501,"src":"4457:7:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1493,"name":"uint256","nodeType":"ElementaryTypeName","src":"4457:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4456:9:14"},"scope":1577,"src":"4399:96:14","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1525,"nodeType":"Block","src":"5084:106:14","statements":[{"id":1524,"nodeType":"UncheckedBlock","src":"5094:90:14","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1516,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1514,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1506,"src":"5126:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":1515,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1504,"src":"5131:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5126:6:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1517,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1508,"src":"5134:12:14","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1513,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5118:7:14","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1518,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5118:29:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1519,"nodeType":"ExpressionStatement","src":"5118:29:14"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1520,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1504,"src":"5168:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1521,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1506,"src":"5172:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5168:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1512,"id":1523,"nodeType":"Return","src":"5161:12:14"}]}]},"documentation":{"id":1502,"nodeType":"StructuredDocumentation","src":"4501:453:14","text":" @dev Returns the subtraction of two unsigned integers, reverting with custom message on\n overflow (when the result is negative).\n CAUTION: This function is deprecated because it requires allocating memory for the error\n message unnecessarily. For custom revert reasons use {trySub}.\n Counterpart to Solidity's `-` operator.\n Requirements:\n - Subtraction cannot overflow."},"id":1526,"implemented":true,"kind":"function","modifiers":[],"name":"sub","nameLocation":"4968:3:14","nodeType":"FunctionDefinition","parameters":{"id":1509,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1504,"mutability":"mutable","name":"a","nameLocation":"4989:1:14","nodeType":"VariableDeclaration","scope":1526,"src":"4981:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1503,"name":"uint256","nodeType":"ElementaryTypeName","src":"4981:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1506,"mutability":"mutable","name":"b","nameLocation":"5008:1:14","nodeType":"VariableDeclaration","scope":1526,"src":"5000:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1505,"name":"uint256","nodeType":"ElementaryTypeName","src":"5000:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1508,"mutability":"mutable","name":"errorMessage","nameLocation":"5033:12:14","nodeType":"VariableDeclaration","scope":1526,"src":"5019:26:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1507,"name":"string","nodeType":"ElementaryTypeName","src":"5019:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4971:80:14"},"returnParameters":{"id":1512,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1511,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1526,"src":"5075:7:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1510,"name":"uint256","nodeType":"ElementaryTypeName","src":"5075:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5074:9:14"},"scope":1577,"src":"4959:231:14","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1550,"nodeType":"Block","src":"5799:105:14","statements":[{"id":1549,"nodeType":"UncheckedBlock","src":"5809:89:14","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1539,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1531,"src":"5841:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1540,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5845:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5841:5:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1542,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1533,"src":"5848:12:14","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1538,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5833:7:14","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1543,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5833:28:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1544,"nodeType":"ExpressionStatement","src":"5833:28:14"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1545,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1529,"src":"5882:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1546,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1531,"src":"5886:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5882:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1537,"id":1548,"nodeType":"Return","src":"5875:12:14"}]}]},"documentation":{"id":1527,"nodeType":"StructuredDocumentation","src":"5196:473:14","text":" @dev Returns the integer division of two unsigned integers, reverting with custom message on\n division by zero. The result is rounded towards zero.\n Counterpart to Solidity's `/` operator. Note: this function uses a\n `revert` opcode (which leaves remaining gas untouched) while Solidity\n uses an invalid opcode to revert (consuming all remaining gas).\n Requirements:\n - The divisor cannot be zero."},"id":1551,"implemented":true,"kind":"function","modifiers":[],"name":"div","nameLocation":"5683:3:14","nodeType":"FunctionDefinition","parameters":{"id":1534,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1529,"mutability":"mutable","name":"a","nameLocation":"5704:1:14","nodeType":"VariableDeclaration","scope":1551,"src":"5696:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1528,"name":"uint256","nodeType":"ElementaryTypeName","src":"5696:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1531,"mutability":"mutable","name":"b","nameLocation":"5723:1:14","nodeType":"VariableDeclaration","scope":1551,"src":"5715:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1530,"name":"uint256","nodeType":"ElementaryTypeName","src":"5715:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1533,"mutability":"mutable","name":"errorMessage","nameLocation":"5748:12:14","nodeType":"VariableDeclaration","scope":1551,"src":"5734:26:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1532,"name":"string","nodeType":"ElementaryTypeName","src":"5734:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5686:80:14"},"returnParameters":{"id":1537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1536,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1551,"src":"5790:7:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1535,"name":"uint256","nodeType":"ElementaryTypeName","src":"5790:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5789:9:14"},"scope":1577,"src":"5674:230:14","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1575,"nodeType":"Block","src":"6675:105:14","statements":[{"id":1574,"nodeType":"UncheckedBlock","src":"6685:89:14","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1566,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1564,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1556,"src":"6717:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1565,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6721:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6717:5:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1567,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1558,"src":"6724:12:14","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1563,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6709:7:14","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1568,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"6709:28:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1569,"nodeType":"ExpressionStatement","src":"6709:28:14"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1572,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1570,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1554,"src":"6758:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"id":1571,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1556,"src":"6762:1:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6758:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1562,"id":1573,"nodeType":"Return","src":"6751:12:14"}]}]},"documentation":{"id":1552,"nodeType":"StructuredDocumentation","src":"5910:635:14","text":" @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\n reverting with custom message when dividing by zero.\n CAUTION: This function is deprecated because it requires allocating memory for the error\n message unnecessarily. For custom revert reasons use {tryMod}.\n Counterpart to Solidity's `%` operator. This function uses a `revert`\n opcode (which leaves remaining gas untouched) while Solidity uses an\n invalid opcode to revert (consuming all remaining gas).\n Requirements:\n - The divisor cannot be zero."},"id":1576,"implemented":true,"kind":"function","modifiers":[],"name":"mod","nameLocation":"6559:3:14","nodeType":"FunctionDefinition","parameters":{"id":1559,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1554,"mutability":"mutable","name":"a","nameLocation":"6580:1:14","nodeType":"VariableDeclaration","scope":1576,"src":"6572:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1553,"name":"uint256","nodeType":"ElementaryTypeName","src":"6572:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1556,"mutability":"mutable","name":"b","nameLocation":"6599:1:14","nodeType":"VariableDeclaration","scope":1576,"src":"6591:9:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1555,"name":"uint256","nodeType":"ElementaryTypeName","src":"6591:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1558,"mutability":"mutable","name":"errorMessage","nameLocation":"6624:12:14","nodeType":"VariableDeclaration","scope":1576,"src":"6610:26:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1557,"name":"string","nodeType":"ElementaryTypeName","src":"6610:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6562:80:14"},"returnParameters":{"id":1562,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1561,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1576,"src":"6666:7:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1560,"name":"uint256","nodeType":"ElementaryTypeName","src":"6666:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6665:9:14"},"scope":1577,"src":"6550:230:14","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":1578,"src":"482:6300:14","usedErrors":[]}],"src":"107:6676:14"},"id":14},"@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol":{"ast":{"absolutePath":"@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol","exportedSymbols":{"IUniswapV3Factory":[1660]},"id":1661,"license":"GPL-2.0-or-later","nodeType":"SourceUnit","nodes":[{"id":1579,"literals":["solidity",">=","0.5",".0"],"nodeType":"PragmaDirective","src":"45:24:15"},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"interface","documentation":{"id":1580,"nodeType":"StructuredDocumentation","src":"71:163:15","text":"@title The interface for the Uniswap V3 Factory\n @notice The Uniswap V3 Factory facilitates creation of Uniswap V3 pools and control over the protocol fees"},"fullyImplemented":false,"id":1660,"linearizedBaseContracts":[1660],"name":"IUniswapV3Factory","nameLocation":"244:17:15","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":1581,"nodeType":"StructuredDocumentation","src":"268:185:15","text":"@notice Emitted when the owner of the factory is changed\n @param oldOwner The owner before the owner was changed\n @param newOwner The owner after the owner was changed"},"id":1587,"name":"OwnerChanged","nameLocation":"464:12:15","nodeType":"EventDefinition","parameters":{"id":1586,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1583,"indexed":true,"mutability":"mutable","name":"oldOwner","nameLocation":"493:8:15","nodeType":"VariableDeclaration","scope":1587,"src":"477:24:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1582,"name":"address","nodeType":"ElementaryTypeName","src":"477:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1585,"indexed":true,"mutability":"mutable","name":"newOwner","nameLocation":"519:8:15","nodeType":"VariableDeclaration","scope":1587,"src":"503:24:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1584,"name":"address","nodeType":"ElementaryTypeName","src":"503:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"476:52:15"},"src":"458:71:15"},{"anonymous":false,"documentation":{"id":1588,"nodeType":"StructuredDocumentation","src":"535:421:15","text":"@notice Emitted when a pool is created\n @param token0 The first token of the pool by address sort order\n @param token1 The second token of the pool by address sort order\n @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip\n @param tickSpacing The minimum number of ticks between initialized ticks\n @param pool The address of the created pool"},"id":1600,"name":"PoolCreated","nameLocation":"967:11:15","nodeType":"EventDefinition","parameters":{"id":1599,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1590,"indexed":true,"mutability":"mutable","name":"token0","nameLocation":"1004:6:15","nodeType":"VariableDeclaration","scope":1600,"src":"988:22:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1589,"name":"address","nodeType":"ElementaryTypeName","src":"988:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1592,"indexed":true,"mutability":"mutable","name":"token1","nameLocation":"1036:6:15","nodeType":"VariableDeclaration","scope":1600,"src":"1020:22:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1591,"name":"address","nodeType":"ElementaryTypeName","src":"1020:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1594,"indexed":true,"mutability":"mutable","name":"fee","nameLocation":"1067:3:15","nodeType":"VariableDeclaration","scope":1600,"src":"1052:18:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":1593,"name":"uint24","nodeType":"ElementaryTypeName","src":"1052:6:15","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"},{"constant":false,"id":1596,"indexed":false,"mutability":"mutable","name":"tickSpacing","nameLocation":"1086:11:15","nodeType":"VariableDeclaration","scope":1600,"src":"1080:17:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1595,"name":"int24","nodeType":"ElementaryTypeName","src":"1080:5:15","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":1598,"indexed":false,"mutability":"mutable","name":"pool","nameLocation":"1115:4:15","nodeType":"VariableDeclaration","scope":1600,"src":"1107:12:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1597,"name":"address","nodeType":"ElementaryTypeName","src":"1107:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"978:147:15"},"src":"961:165:15"},{"anonymous":false,"documentation":{"id":1601,"nodeType":"StructuredDocumentation","src":"1132:275:15","text":"@notice Emitted when a new fee amount is enabled for pool creation via the factory\n @param fee The enabled fee, denominated in hundredths of a bip\n @param tickSpacing The minimum number of ticks between initialized ticks for pools created with the given fee"},"id":1607,"name":"FeeAmountEnabled","nameLocation":"1418:16:15","nodeType":"EventDefinition","parameters":{"id":1606,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1603,"indexed":true,"mutability":"mutable","name":"fee","nameLocation":"1450:3:15","nodeType":"VariableDeclaration","scope":1607,"src":"1435:18:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":1602,"name":"uint24","nodeType":"ElementaryTypeName","src":"1435:6:15","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"},{"constant":false,"id":1605,"indexed":true,"mutability":"mutable","name":"tickSpacing","nameLocation":"1469:11:15","nodeType":"VariableDeclaration","scope":1607,"src":"1455:25:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1604,"name":"int24","nodeType":"ElementaryTypeName","src":"1455:5:15","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"}],"src":"1434:47:15"},"src":"1412:70:15"},{"documentation":{"id":1608,"nodeType":"StructuredDocumentation","src":"1488:163:15","text":"@notice Returns the current owner of the factory\n @dev Can be changed by the current owner via setOwner\n @return The address of the factory owner"},"functionSelector":"8da5cb5b","id":1613,"implemented":false,"kind":"function","modifiers":[],"name":"owner","nameLocation":"1665:5:15","nodeType":"FunctionDefinition","parameters":{"id":1609,"nodeType":"ParameterList","parameters":[],"src":"1670:2:15"},"returnParameters":{"id":1612,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1611,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1613,"src":"1696:7:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1610,"name":"address","nodeType":"ElementaryTypeName","src":"1696:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1695:9:15"},"scope":1660,"src":"1656:49:15","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1614,"nodeType":"StructuredDocumentation","src":"1711:348:15","text":"@notice Returns the tick spacing for a given fee amount, if enabled, or 0 if not enabled\n @dev A fee amount can never be removed, so this value should be hard coded or cached in the calling context\n @param fee The enabled fee, denominated in hundredths of a bip. Returns 0 in case of unenabled fee\n @return The tick spacing"},"functionSelector":"22afcccb","id":1621,"implemented":false,"kind":"function","modifiers":[],"name":"feeAmountTickSpacing","nameLocation":"2073:20:15","nodeType":"FunctionDefinition","parameters":{"id":1617,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1616,"mutability":"mutable","name":"fee","nameLocation":"2101:3:15","nodeType":"VariableDeclaration","scope":1621,"src":"2094:10:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":1615,"name":"uint24","nodeType":"ElementaryTypeName","src":"2094:6:15","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"src":"2093:12:15"},"returnParameters":{"id":1620,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1619,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1621,"src":"2129:5:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1618,"name":"int24","nodeType":"ElementaryTypeName","src":"2129:5:15","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"}],"src":"2128:7:15"},"scope":1660,"src":"2064:72:15","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1622,"nodeType":"StructuredDocumentation","src":"2142:471:15","text":"@notice Returns the pool address for a given pair of tokens and a fee, or address 0 if it does not exist\n @dev tokenA and tokenB may be passed in either token0/token1 or token1/token0 order\n @param tokenA The contract address of either token0 or token1\n @param tokenB The contract address of the other token\n @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip\n @return pool The pool address"},"functionSelector":"1698ee82","id":1633,"implemented":false,"kind":"function","modifiers":[],"name":"getPool","nameLocation":"2627:7:15","nodeType":"FunctionDefinition","parameters":{"id":1629,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1624,"mutability":"mutable","name":"tokenA","nameLocation":"2652:6:15","nodeType":"VariableDeclaration","scope":1633,"src":"2644:14:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1623,"name":"address","nodeType":"ElementaryTypeName","src":"2644:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1626,"mutability":"mutable","name":"tokenB","nameLocation":"2676:6:15","nodeType":"VariableDeclaration","scope":1633,"src":"2668:14:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1625,"name":"address","nodeType":"ElementaryTypeName","src":"2668:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1628,"mutability":"mutable","name":"fee","nameLocation":"2699:3:15","nodeType":"VariableDeclaration","scope":1633,"src":"2692:10:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":1627,"name":"uint24","nodeType":"ElementaryTypeName","src":"2692:6:15","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"src":"2634:74:15"},"returnParameters":{"id":1632,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1631,"mutability":"mutable","name":"pool","nameLocation":"2740:4:15","nodeType":"VariableDeclaration","scope":1633,"src":"2732:12:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1630,"name":"address","nodeType":"ElementaryTypeName","src":"2732:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2731:14:15"},"scope":1660,"src":"2618:128:15","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1634,"nodeType":"StructuredDocumentation","src":"2752:554:15","text":"@notice Creates a pool for the given two tokens and fee\n @param tokenA One of the two tokens in the desired pool\n @param tokenB The other of the two tokens in the desired pool\n @param fee The desired fee for the pool\n @dev tokenA and tokenB may be passed in either order: token0/token1 or token1/token0. tickSpacing is retrieved\n from the fee. The call will revert if the pool already exists, the fee is invalid, or the token arguments\n are invalid.\n @return pool The address of the newly created pool"},"functionSelector":"a1671295","id":1645,"implemented":false,"kind":"function","modifiers":[],"name":"createPool","nameLocation":"3320:10:15","nodeType":"FunctionDefinition","parameters":{"id":1641,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1636,"mutability":"mutable","name":"tokenA","nameLocation":"3348:6:15","nodeType":"VariableDeclaration","scope":1645,"src":"3340:14:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1635,"name":"address","nodeType":"ElementaryTypeName","src":"3340:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1638,"mutability":"mutable","name":"tokenB","nameLocation":"3372:6:15","nodeType":"VariableDeclaration","scope":1645,"src":"3364:14:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1637,"name":"address","nodeType":"ElementaryTypeName","src":"3364:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1640,"mutability":"mutable","name":"fee","nameLocation":"3395:3:15","nodeType":"VariableDeclaration","scope":1645,"src":"3388:10:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":1639,"name":"uint24","nodeType":"ElementaryTypeName","src":"3388:6:15","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"src":"3330:74:15"},"returnParameters":{"id":1644,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1643,"mutability":"mutable","name":"pool","nameLocation":"3431:4:15","nodeType":"VariableDeclaration","scope":1645,"src":"3423:12:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1642,"name":"address","nodeType":"ElementaryTypeName","src":"3423:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3422:14:15"},"scope":1660,"src":"3311:126:15","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1646,"nodeType":"StructuredDocumentation","src":"3443:144:15","text":"@notice Updates the owner of the factory\n @dev Must be called by the current owner\n @param _owner The new owner of the factory"},"functionSelector":"13af4035","id":1651,"implemented":false,"kind":"function","modifiers":[],"name":"setOwner","nameLocation":"3601:8:15","nodeType":"FunctionDefinition","parameters":{"id":1649,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1648,"mutability":"mutable","name":"_owner","nameLocation":"3618:6:15","nodeType":"VariableDeclaration","scope":1651,"src":"3610:14:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1647,"name":"address","nodeType":"ElementaryTypeName","src":"3610:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3609:16:15"},"returnParameters":{"id":1650,"nodeType":"ParameterList","parameters":[],"src":"3634:0:15"},"scope":1660,"src":"3592:43:15","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1652,"nodeType":"StructuredDocumentation","src":"3641:326:15","text":"@notice Enables a fee amount with the given tickSpacing\n @dev Fee amounts may never be removed once enabled\n @param fee The fee amount to enable, denominated in hundredths of a bip (i.e. 1e-6)\n @param tickSpacing The spacing between ticks to be enforced for all pools created with the given fee amount"},"functionSelector":"8a7c195f","id":1659,"implemented":false,"kind":"function","modifiers":[],"name":"enableFeeAmount","nameLocation":"3981:15:15","nodeType":"FunctionDefinition","parameters":{"id":1657,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1654,"mutability":"mutable","name":"fee","nameLocation":"4004:3:15","nodeType":"VariableDeclaration","scope":1659,"src":"3997:10:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":1653,"name":"uint24","nodeType":"ElementaryTypeName","src":"3997:6:15","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"},{"constant":false,"id":1656,"mutability":"mutable","name":"tickSpacing","nameLocation":"4015:11:15","nodeType":"VariableDeclaration","scope":1659,"src":"4009:17:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1655,"name":"int24","nodeType":"ElementaryTypeName","src":"4009:5:15","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"}],"src":"3996:31:15"},"returnParameters":{"id":1658,"nodeType":"ParameterList","parameters":[],"src":"4036:0:15"},"scope":1660,"src":"3972:65:15","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":1661,"src":"234:3805:15","usedErrors":[]}],"src":"45:3995:15"},"id":15},"@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol":{"ast":{"absolutePath":"@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol","exportedSymbols":{"IUniswapV3Pool":[1682],"IUniswapV3PoolActions":[1778],"IUniswapV3PoolDerivedState":[1809],"IUniswapV3PoolEvents":[1928],"IUniswapV3PoolImmutables":[1968],"IUniswapV3PoolOwnerActions":[1994],"IUniswapV3PoolState":[2102]},"id":1683,"license":"GPL-2.0-or-later","nodeType":"SourceUnit","nodes":[{"id":1662,"literals":["solidity",">=","0.5",".0"],"nodeType":"PragmaDirective","src":"45:24:16"},{"absolutePath":"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolImmutables.sol","file":"./pool/IUniswapV3PoolImmutables.sol","id":1663,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1683,"sourceUnit":1969,"src":"71:45:16","symbolAliases":[],"unitAlias":""},{"absolutePath":"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolState.sol","file":"./pool/IUniswapV3PoolState.sol","id":1664,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1683,"sourceUnit":2103,"src":"117:40:16","symbolAliases":[],"unitAlias":""},{"absolutePath":"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolDerivedState.sol","file":"./pool/IUniswapV3PoolDerivedState.sol","id":1665,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1683,"sourceUnit":1810,"src":"158:47:16","symbolAliases":[],"unitAlias":""},{"absolutePath":"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolActions.sol","file":"./pool/IUniswapV3PoolActions.sol","id":1666,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1683,"sourceUnit":1779,"src":"206:42:16","symbolAliases":[],"unitAlias":""},{"absolutePath":"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolOwnerActions.sol","file":"./pool/IUniswapV3PoolOwnerActions.sol","id":1667,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1683,"sourceUnit":1995,"src":"249:47:16","symbolAliases":[],"unitAlias":""},{"absolutePath":"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolEvents.sol","file":"./pool/IUniswapV3PoolEvents.sol","id":1668,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1683,"sourceUnit":1929,"src":"297:41:16","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":1670,"name":"IUniswapV3PoolImmutables","nodeType":"IdentifierPath","referencedDeclaration":1968,"src":"637:24:16"},"id":1671,"nodeType":"InheritanceSpecifier","src":"637:24:16"},{"baseName":{"id":1672,"name":"IUniswapV3PoolState","nodeType":"IdentifierPath","referencedDeclaration":2102,"src":"667:19:16"},"id":1673,"nodeType":"InheritanceSpecifier","src":"667:19:16"},{"baseName":{"id":1674,"name":"IUniswapV3PoolDerivedState","nodeType":"IdentifierPath","referencedDeclaration":1809,"src":"692:26:16"},"id":1675,"nodeType":"InheritanceSpecifier","src":"692:26:16"},{"baseName":{"id":1676,"name":"IUniswapV3PoolActions","nodeType":"IdentifierPath","referencedDeclaration":1778,"src":"724:21:16"},"id":1677,"nodeType":"InheritanceSpecifier","src":"724:21:16"},{"baseName":{"id":1678,"name":"IUniswapV3PoolOwnerActions","nodeType":"IdentifierPath","referencedDeclaration":1994,"src":"751:26:16"},"id":1679,"nodeType":"InheritanceSpecifier","src":"751:26:16"},{"baseName":{"id":1680,"name":"IUniswapV3PoolEvents","nodeType":"IdentifierPath","referencedDeclaration":1928,"src":"783:20:16"},"id":1681,"nodeType":"InheritanceSpecifier","src":"783:20:16"}],"contractDependencies":[],"contractKind":"interface","documentation":{"id":1669,"nodeType":"StructuredDocumentation","src":"340:265:16","text":"@title The interface for a Uniswap V3 Pool\n @notice A Uniswap pool facilitates swapping and automated market making between any two assets that strictly conform\n to the ERC20 specification\n @dev The pool interface is broken up into many smaller pieces"},"fullyImplemented":false,"id":1682,"linearizedBaseContracts":[1682,1928,1994,1778,1809,2102,1968],"name":"IUniswapV3Pool","nameLocation":"615:14:16","nodeType":"ContractDefinition","nodes":[],"scope":1683,"src":"605:203:16","usedErrors":[]}],"src":"45:764:16"},"id":16},"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolActions.sol":{"ast":{"absolutePath":"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolActions.sol","exportedSymbols":{"IUniswapV3PoolActions":[1778]},"id":1779,"license":"GPL-2.0-or-later","nodeType":"SourceUnit","nodes":[{"id":1684,"literals":["solidity",">=","0.5",".0"],"nodeType":"PragmaDirective","src":"45:24:17"},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"interface","documentation":{"id":1685,"nodeType":"StructuredDocumentation","src":"71:102:17","text":"@title Permissionless pool actions\n @notice Contains pool methods that can be called by anyone"},"fullyImplemented":false,"id":1778,"linearizedBaseContracts":[1778],"name":"IUniswapV3PoolActions","nameLocation":"183:21:17","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1686,"nodeType":"StructuredDocumentation","src":"211:206:17","text":"@notice Sets the initial price for the pool\n @dev Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value\n @param sqrtPriceX96 the initial sqrt price of the pool as a Q64.96"},"functionSelector":"f637731d","id":1691,"implemented":false,"kind":"function","modifiers":[],"name":"initialize","nameLocation":"431:10:17","nodeType":"FunctionDefinition","parameters":{"id":1689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1688,"mutability":"mutable","name":"sqrtPriceX96","nameLocation":"450:12:17","nodeType":"VariableDeclaration","scope":1691,"src":"442:20:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":1687,"name":"uint160","nodeType":"ElementaryTypeName","src":"442:7:17","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"441:22:17"},"returnParameters":{"id":1690,"nodeType":"ParameterList","parameters":[],"src":"472:0:17"},"scope":1778,"src":"422:51:17","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1692,"nodeType":"StructuredDocumentation","src":"479:1029:17","text":"@notice Adds liquidity for the given recipient/tickLower/tickUpper position\n @dev The caller of this method receives a callback in the form of IUniswapV3MintCallback#uniswapV3MintCallback\n in which they must pay any token0 or token1 owed for the liquidity. The amount of token0/token1 due depends\n on tickLower, tickUpper, the amount of liquidity, and the current price.\n @param recipient The address for which the liquidity will be created\n @param tickLower The lower tick of the position in which to add liquidity\n @param tickUpper The upper tick of the position in which to add liquidity\n @param amount The amount of liquidity to mint\n @param data Any data that should be passed through to the callback\n @return amount0 The amount of token0 that was paid to mint the given amount of liquidity. Matches the value in the callback\n @return amount1 The amount of token1 that was paid to mint the given amount of liquidity. Matches the value in the callback"},"functionSelector":"3c8a7d8d","id":1709,"implemented":false,"kind":"function","modifiers":[],"name":"mint","nameLocation":"1522:4:17","nodeType":"FunctionDefinition","parameters":{"id":1703,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1694,"mutability":"mutable","name":"recipient","nameLocation":"1544:9:17","nodeType":"VariableDeclaration","scope":1709,"src":"1536:17:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1693,"name":"address","nodeType":"ElementaryTypeName","src":"1536:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1696,"mutability":"mutable","name":"tickLower","nameLocation":"1569:9:17","nodeType":"VariableDeclaration","scope":1709,"src":"1563:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1695,"name":"int24","nodeType":"ElementaryTypeName","src":"1563:5:17","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":1698,"mutability":"mutable","name":"tickUpper","nameLocation":"1594:9:17","nodeType":"VariableDeclaration","scope":1709,"src":"1588:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1697,"name":"int24","nodeType":"ElementaryTypeName","src":"1588:5:17","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":1700,"mutability":"mutable","name":"amount","nameLocation":"1621:6:17","nodeType":"VariableDeclaration","scope":1709,"src":"1613:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1699,"name":"uint128","nodeType":"ElementaryTypeName","src":"1613:7:17","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":1702,"mutability":"mutable","name":"data","nameLocation":"1652:4:17","nodeType":"VariableDeclaration","scope":1709,"src":"1637:19:17","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1701,"name":"bytes","nodeType":"ElementaryTypeName","src":"1637:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1526:136:17"},"returnParameters":{"id":1708,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1705,"mutability":"mutable","name":"amount0","nameLocation":"1689:7:17","nodeType":"VariableDeclaration","scope":1709,"src":"1681:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1704,"name":"uint256","nodeType":"ElementaryTypeName","src":"1681:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1707,"mutability":"mutable","name":"amount1","nameLocation":"1706:7:17","nodeType":"VariableDeclaration","scope":1709,"src":"1698:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1706,"name":"uint256","nodeType":"ElementaryTypeName","src":"1698:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1680:34:17"},"scope":1778,"src":"1513:202:17","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1710,"nodeType":"StructuredDocumentation","src":"1721:1053:17","text":"@notice Collects tokens owed to a position\n @dev Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity.\n Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or\n amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the\n actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity.\n @param recipient The address which should receive the fees collected\n @param tickLower The lower tick of the position for which to collect fees\n @param tickUpper The upper tick of the position for which to collect fees\n @param amount0Requested How much token0 should be withdrawn from the fees owed\n @param amount1Requested How much token1 should be withdrawn from the fees owed\n @return amount0 The amount of fees collected in token0\n @return amount1 The amount of fees collected in token1"},"functionSelector":"4f1eb3d8","id":1727,"implemented":false,"kind":"function","modifiers":[],"name":"collect","nameLocation":"2788:7:17","nodeType":"FunctionDefinition","parameters":{"id":1721,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1712,"mutability":"mutable","name":"recipient","nameLocation":"2813:9:17","nodeType":"VariableDeclaration","scope":1727,"src":"2805:17:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1711,"name":"address","nodeType":"ElementaryTypeName","src":"2805:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1714,"mutability":"mutable","name":"tickLower","nameLocation":"2838:9:17","nodeType":"VariableDeclaration","scope":1727,"src":"2832:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1713,"name":"int24","nodeType":"ElementaryTypeName","src":"2832:5:17","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":1716,"mutability":"mutable","name":"tickUpper","nameLocation":"2863:9:17","nodeType":"VariableDeclaration","scope":1727,"src":"2857:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1715,"name":"int24","nodeType":"ElementaryTypeName","src":"2857:5:17","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":1718,"mutability":"mutable","name":"amount0Requested","nameLocation":"2890:16:17","nodeType":"VariableDeclaration","scope":1727,"src":"2882:24:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1717,"name":"uint128","nodeType":"ElementaryTypeName","src":"2882:7:17","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":1720,"mutability":"mutable","name":"amount1Requested","nameLocation":"2924:16:17","nodeType":"VariableDeclaration","scope":1727,"src":"2916:24:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1719,"name":"uint128","nodeType":"ElementaryTypeName","src":"2916:7:17","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"2795:151:17"},"returnParameters":{"id":1726,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1723,"mutability":"mutable","name":"amount0","nameLocation":"2973:7:17","nodeType":"VariableDeclaration","scope":1727,"src":"2965:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1722,"name":"uint128","nodeType":"ElementaryTypeName","src":"2965:7:17","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":1725,"mutability":"mutable","name":"amount1","nameLocation":"2990:7:17","nodeType":"VariableDeclaration","scope":1727,"src":"2982:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1724,"name":"uint128","nodeType":"ElementaryTypeName","src":"2982:7:17","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"2964:34:17"},"scope":1778,"src":"2779:220:17","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1728,"nodeType":"StructuredDocumentation","src":"3005:631:17","text":"@notice Burn liquidity from the sender and account tokens owed for the liquidity to the position\n @dev Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0\n @dev Fees must be collected separately via a call to #collect\n @param tickLower The lower tick of the position for which to burn liquidity\n @param tickUpper The upper tick of the position for which to burn liquidity\n @param amount How much liquidity to burn\n @return amount0 The amount of token0 sent to the recipient\n @return amount1 The amount of token1 sent to the recipient"},"functionSelector":"a34123a7","id":1741,"implemented":false,"kind":"function","modifiers":[],"name":"burn","nameLocation":"3650:4:17","nodeType":"FunctionDefinition","parameters":{"id":1735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1730,"mutability":"mutable","name":"tickLower","nameLocation":"3670:9:17","nodeType":"VariableDeclaration","scope":1741,"src":"3664:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1729,"name":"int24","nodeType":"ElementaryTypeName","src":"3664:5:17","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":1732,"mutability":"mutable","name":"tickUpper","nameLocation":"3695:9:17","nodeType":"VariableDeclaration","scope":1741,"src":"3689:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1731,"name":"int24","nodeType":"ElementaryTypeName","src":"3689:5:17","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":1734,"mutability":"mutable","name":"amount","nameLocation":"3722:6:17","nodeType":"VariableDeclaration","scope":1741,"src":"3714:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1733,"name":"uint128","nodeType":"ElementaryTypeName","src":"3714:7:17","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"3654:80:17"},"returnParameters":{"id":1740,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1737,"mutability":"mutable","name":"amount0","nameLocation":"3761:7:17","nodeType":"VariableDeclaration","scope":1741,"src":"3753:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1736,"name":"uint256","nodeType":"ElementaryTypeName","src":"3753:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1739,"mutability":"mutable","name":"amount1","nameLocation":"3778:7:17","nodeType":"VariableDeclaration","scope":1741,"src":"3770:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1738,"name":"uint256","nodeType":"ElementaryTypeName","src":"3770:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3752:34:17"},"scope":1778,"src":"3641:146:17","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1742,"nodeType":"StructuredDocumentation","src":"3793:1015:17","text":"@notice Swap token0 for token1, or token1 for token0\n @dev The caller of this method receives a callback in the form of IUniswapV3SwapCallback#uniswapV3SwapCallback\n @param recipient The address to receive the output of the swap\n @param zeroForOne The direction of the swap, true for token0 to token1, false for token1 to token0\n @param amountSpecified The amount of the swap, which implicitly configures the swap as exact input (positive), or exact output (negative)\n @param sqrtPriceLimitX96 The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this\n value after the swap. If one for zero, the price cannot be greater than this value after the swap\n @param data Any data to be passed through to the callback\n @return amount0 The delta of the balance of token0 of the pool, exact when negative, minimum when positive\n @return amount1 The delta of the balance of token1 of the pool, exact when negative, minimum when positive"},"functionSelector":"128acb08","id":1759,"implemented":false,"kind":"function","modifiers":[],"name":"swap","nameLocation":"4822:4:17","nodeType":"FunctionDefinition","parameters":{"id":1753,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1744,"mutability":"mutable","name":"recipient","nameLocation":"4844:9:17","nodeType":"VariableDeclaration","scope":1759,"src":"4836:17:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1743,"name":"address","nodeType":"ElementaryTypeName","src":"4836:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1746,"mutability":"mutable","name":"zeroForOne","nameLocation":"4868:10:17","nodeType":"VariableDeclaration","scope":1759,"src":"4863:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1745,"name":"bool","nodeType":"ElementaryTypeName","src":"4863:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1748,"mutability":"mutable","name":"amountSpecified","nameLocation":"4895:15:17","nodeType":"VariableDeclaration","scope":1759,"src":"4888:22:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":1747,"name":"int256","nodeType":"ElementaryTypeName","src":"4888:6:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":1750,"mutability":"mutable","name":"sqrtPriceLimitX96","nameLocation":"4928:17:17","nodeType":"VariableDeclaration","scope":1759,"src":"4920:25:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":1749,"name":"uint160","nodeType":"ElementaryTypeName","src":"4920:7:17","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"},{"constant":false,"id":1752,"mutability":"mutable","name":"data","nameLocation":"4970:4:17","nodeType":"VariableDeclaration","scope":1759,"src":"4955:19:17","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1751,"name":"bytes","nodeType":"ElementaryTypeName","src":"4955:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4826:154:17"},"returnParameters":{"id":1758,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1755,"mutability":"mutable","name":"amount0","nameLocation":"5006:7:17","nodeType":"VariableDeclaration","scope":1759,"src":"4999:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":1754,"name":"int256","nodeType":"ElementaryTypeName","src":"4999:6:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":1757,"mutability":"mutable","name":"amount1","nameLocation":"5022:7:17","nodeType":"VariableDeclaration","scope":1759,"src":"5015:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":1756,"name":"int256","nodeType":"ElementaryTypeName","src":"5015:6:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"4998:32:17"},"scope":1778,"src":"4813:218:17","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1760,"nodeType":"StructuredDocumentation","src":"5037:657:17","text":"@notice Receive token0 and/or token1 and pay it back, plus a fee, in the callback\n @dev The caller of this method receives a callback in the form of IUniswapV3FlashCallback#uniswapV3FlashCallback\n @dev Can be used to donate underlying tokens pro-rata to currently in-range liquidity providers by calling\n with 0 amount{0,1} and sending the donation amount(s) from the callback\n @param recipient The address which will receive the token0 and token1 amounts\n @param amount0 The amount of token0 to send\n @param amount1 The amount of token1 to send\n @param data Any data to be passed through to the callback"},"functionSelector":"490e6cbc","id":1771,"implemented":false,"kind":"function","modifiers":[],"name":"flash","nameLocation":"5708:5:17","nodeType":"FunctionDefinition","parameters":{"id":1769,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1762,"mutability":"mutable","name":"recipient","nameLocation":"5731:9:17","nodeType":"VariableDeclaration","scope":1771,"src":"5723:17:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1761,"name":"address","nodeType":"ElementaryTypeName","src":"5723:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1764,"mutability":"mutable","name":"amount0","nameLocation":"5758:7:17","nodeType":"VariableDeclaration","scope":1771,"src":"5750:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1763,"name":"uint256","nodeType":"ElementaryTypeName","src":"5750:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1766,"mutability":"mutable","name":"amount1","nameLocation":"5783:7:17","nodeType":"VariableDeclaration","scope":1771,"src":"5775:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1765,"name":"uint256","nodeType":"ElementaryTypeName","src":"5775:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1768,"mutability":"mutable","name":"data","nameLocation":"5815:4:17","nodeType":"VariableDeclaration","scope":1771,"src":"5800:19:17","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1767,"name":"bytes","nodeType":"ElementaryTypeName","src":"5800:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5713:112:17"},"returnParameters":{"id":1770,"nodeType":"ParameterList","parameters":[],"src":"5834:0:17"},"scope":1778,"src":"5699:136:17","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1772,"nodeType":"StructuredDocumentation","src":"5841:367:17","text":"@notice Increase the maximum number of price and liquidity observations that this pool will store\n @dev This method is no-op if the pool already has an observationCardinalityNext greater than or equal to\n the input observationCardinalityNext.\n @param observationCardinalityNext The desired minimum number of observations for the pool to store"},"functionSelector":"32148f67","id":1777,"implemented":false,"kind":"function","modifiers":[],"name":"increaseObservationCardinalityNext","nameLocation":"6222:34:17","nodeType":"FunctionDefinition","parameters":{"id":1775,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1774,"mutability":"mutable","name":"observationCardinalityNext","nameLocation":"6264:26:17","nodeType":"VariableDeclaration","scope":1777,"src":"6257:33:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":1773,"name":"uint16","nodeType":"ElementaryTypeName","src":"6257:6:17","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"src":"6256:35:17"},"returnParameters":{"id":1776,"nodeType":"ParameterList","parameters":[],"src":"6300:0:17"},"scope":1778,"src":"6213:88:17","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":1779,"src":"173:6130:17","usedErrors":[]}],"src":"45:6259:17"},"id":17},"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolDerivedState.sol":{"ast":{"absolutePath":"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolDerivedState.sol","exportedSymbols":{"IUniswapV3PoolDerivedState":[1809]},"id":1810,"license":"GPL-2.0-or-later","nodeType":"SourceUnit","nodes":[{"id":1780,"literals":["solidity",">=","0.5",".0"],"nodeType":"PragmaDirective","src":"45:24:18"},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"interface","documentation":{"id":1781,"nodeType":"StructuredDocumentation","src":"71:222:18","text":"@title Pool state that is not stored\n @notice Contains view functions to provide information about the pool that is computed rather than stored on the\n blockchain. The functions here may have variable gas costs."},"fullyImplemented":false,"id":1809,"linearizedBaseContracts":[1809],"name":"IUniswapV3PoolDerivedState","nameLocation":"303:26:18","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1782,"nodeType":"StructuredDocumentation","src":"336:1045:18","text":"@notice Returns the cumulative tick and liquidity as of each timestamp `secondsAgo` from the current block timestamp\n @dev To get a time weighted average tick or liquidity-in-range, you must call this with two values, one representing\n the beginning of the period and another for the end of the period. E.g., to get the last hour time-weighted average tick,\n you must call it with secondsAgos = [3600, 0].\n @dev The time weighted average tick represents the geometric time weighted average price of the pool, in\n log base sqrt(1.0001) of token1 / token0. The TickMath library can be used to go from a tick value to a ratio.\n @param secondsAgos From how long ago each cumulative tick and liquidity value should be returned\n @return tickCumulatives Cumulative tick values as of each `secondsAgos` from the current block timestamp\n @return secondsPerLiquidityCumulativeX128s Cumulative seconds per liquidity-in-range value as of each `secondsAgos` from the current block\n timestamp"},"functionSelector":"883bdbfd","id":1794,"implemented":false,"kind":"function","modifiers":[],"name":"observe","nameLocation":"1395:7:18","nodeType":"FunctionDefinition","parameters":{"id":1786,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1785,"mutability":"mutable","name":"secondsAgos","nameLocation":"1421:11:18","nodeType":"VariableDeclaration","scope":1794,"src":"1403:29:18","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_calldata_ptr","typeString":"uint32[]"},"typeName":{"baseType":{"id":1783,"name":"uint32","nodeType":"ElementaryTypeName","src":"1403:6:18","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":1784,"nodeType":"ArrayTypeName","src":"1403:8:18","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_storage_ptr","typeString":"uint32[]"}},"visibility":"internal"}],"src":"1402:31:18"},"returnParameters":{"id":1793,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1789,"mutability":"mutable","name":"tickCumulatives","nameLocation":"1496:15:18","nodeType":"VariableDeclaration","scope":1794,"src":"1481:30:18","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_int56_$dyn_memory_ptr","typeString":"int56[]"},"typeName":{"baseType":{"id":1787,"name":"int56","nodeType":"ElementaryTypeName","src":"1481:5:18","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"id":1788,"nodeType":"ArrayTypeName","src":"1481:7:18","typeDescriptions":{"typeIdentifier":"t_array$_t_int56_$dyn_storage_ptr","typeString":"int56[]"}},"visibility":"internal"},{"constant":false,"id":1792,"mutability":"mutable","name":"secondsPerLiquidityCumulativeX128s","nameLocation":"1530:34:18","nodeType":"VariableDeclaration","scope":1794,"src":"1513:51:18","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint160_$dyn_memory_ptr","typeString":"uint160[]"},"typeName":{"baseType":{"id":1790,"name":"uint160","nodeType":"ElementaryTypeName","src":"1513:7:18","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"id":1791,"nodeType":"ArrayTypeName","src":"1513:9:18","typeDescriptions":{"typeIdentifier":"t_array$_t_uint160_$dyn_storage_ptr","typeString":"uint160[]"}},"visibility":"internal"}],"src":"1480:85:18"},"scope":1809,"src":"1386:180:18","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1795,"nodeType":"StructuredDocumentation","src":"1572:771:18","text":"@notice Returns a snapshot of the tick cumulative, seconds per liquidity and seconds inside a tick range\n @dev Snapshots must only be compared to other snapshots, taken over a period for which a position existed.\n I.e., snapshots cannot be compared if a position is not held for the entire period between when the first\n snapshot is taken and the second snapshot is taken.\n @param tickLower The lower tick of the range\n @param tickUpper The upper tick of the range\n @return tickCumulativeInside The snapshot of the tick accumulator for the range\n @return secondsPerLiquidityInsideX128 The snapshot of seconds per liquidity for the range\n @return secondsInside The snapshot of seconds per liquidity for the range"},"functionSelector":"a38807f2","id":1808,"implemented":false,"kind":"function","modifiers":[],"name":"snapshotCumulativesInside","nameLocation":"2357:25:18","nodeType":"FunctionDefinition","parameters":{"id":1800,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1797,"mutability":"mutable","name":"tickLower","nameLocation":"2389:9:18","nodeType":"VariableDeclaration","scope":1808,"src":"2383:15:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1796,"name":"int24","nodeType":"ElementaryTypeName","src":"2383:5:18","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":1799,"mutability":"mutable","name":"tickUpper","nameLocation":"2406:9:18","nodeType":"VariableDeclaration","scope":1808,"src":"2400:15:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1798,"name":"int24","nodeType":"ElementaryTypeName","src":"2400:5:18","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"}],"src":"2382:34:18"},"returnParameters":{"id":1807,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1802,"mutability":"mutable","name":"tickCumulativeInside","nameLocation":"2483:20:18","nodeType":"VariableDeclaration","scope":1808,"src":"2477:26:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"},"typeName":{"id":1801,"name":"int56","nodeType":"ElementaryTypeName","src":"2477:5:18","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"visibility":"internal"},{"constant":false,"id":1804,"mutability":"mutable","name":"secondsPerLiquidityInsideX128","nameLocation":"2525:29:18","nodeType":"VariableDeclaration","scope":1808,"src":"2517:37:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":1803,"name":"uint160","nodeType":"ElementaryTypeName","src":"2517:7:18","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"},{"constant":false,"id":1806,"mutability":"mutable","name":"secondsInside","nameLocation":"2575:13:18","nodeType":"VariableDeclaration","scope":1808,"src":"2568:20:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":1805,"name":"uint32","nodeType":"ElementaryTypeName","src":"2568:6:18","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2463:135:18"},"scope":1809,"src":"2348:251:18","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":1810,"src":"293:2308:18","usedErrors":[]}],"src":"45:2557:18"},"id":18},"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolEvents.sol":{"ast":{"absolutePath":"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolEvents.sol","exportedSymbols":{"IUniswapV3PoolEvents":[1928]},"id":1929,"license":"GPL-2.0-or-later","nodeType":"SourceUnit","nodes":[{"id":1811,"literals":["solidity",">=","0.5",".0"],"nodeType":"PragmaDirective","src":"45:24:19"},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"interface","documentation":{"id":1812,"nodeType":"StructuredDocumentation","src":"71:88:19","text":"@title Events emitted by a pool\n @notice Contains all events emitted by the pool"},"fullyImplemented":true,"id":1928,"linearizedBaseContracts":[1928],"name":"IUniswapV3PoolEvents","nameLocation":"169:20:19","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":1813,"nodeType":"StructuredDocumentation","src":"196:344:19","text":"@notice Emitted exactly once by a pool when #initialize is first called on the pool\n @dev Mint/Burn/Swap cannot be emitted by the pool before Initialize\n @param sqrtPriceX96 The initial sqrt price of the pool, as a Q64.96\n @param tick The initial tick of the pool, i.e. log base 1.0001 of the starting price of the pool"},"id":1819,"name":"Initialize","nameLocation":"551:10:19","nodeType":"EventDefinition","parameters":{"id":1818,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1815,"indexed":false,"mutability":"mutable","name":"sqrtPriceX96","nameLocation":"570:12:19","nodeType":"VariableDeclaration","scope":1819,"src":"562:20:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":1814,"name":"uint160","nodeType":"ElementaryTypeName","src":"562:7:19","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"},{"constant":false,"id":1817,"indexed":false,"mutability":"mutable","name":"tick","nameLocation":"590:4:19","nodeType":"VariableDeclaration","scope":1819,"src":"584:10:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1816,"name":"int24","nodeType":"ElementaryTypeName","src":"584:5:19","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"}],"src":"561:34:19"},"src":"545:51:19"},{"anonymous":false,"documentation":{"id":1820,"nodeType":"StructuredDocumentation","src":"602:551:19","text":"@notice Emitted when liquidity is minted for a given position\n @param sender The address that minted the liquidity\n @param owner The owner of the position and recipient of any minted liquidity\n @param tickLower The lower tick of the position\n @param tickUpper The upper tick of the position\n @param amount The amount of liquidity minted to the position range\n @param amount0 How much token0 was required for the minted liquidity\n @param amount1 How much token1 was required for the minted liquidity"},"id":1836,"name":"Mint","nameLocation":"1164:4:19","nodeType":"EventDefinition","parameters":{"id":1835,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1822,"indexed":false,"mutability":"mutable","name":"sender","nameLocation":"1186:6:19","nodeType":"VariableDeclaration","scope":1836,"src":"1178:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1821,"name":"address","nodeType":"ElementaryTypeName","src":"1178:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1824,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"1218:5:19","nodeType":"VariableDeclaration","scope":1836,"src":"1202:21:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1823,"name":"address","nodeType":"ElementaryTypeName","src":"1202:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1826,"indexed":true,"mutability":"mutable","name":"tickLower","nameLocation":"1247:9:19","nodeType":"VariableDeclaration","scope":1836,"src":"1233:23:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1825,"name":"int24","nodeType":"ElementaryTypeName","src":"1233:5:19","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":1828,"indexed":true,"mutability":"mutable","name":"tickUpper","nameLocation":"1280:9:19","nodeType":"VariableDeclaration","scope":1836,"src":"1266:23:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1827,"name":"int24","nodeType":"ElementaryTypeName","src":"1266:5:19","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":1830,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"1307:6:19","nodeType":"VariableDeclaration","scope":1836,"src":"1299:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1829,"name":"uint128","nodeType":"ElementaryTypeName","src":"1299:7:19","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":1832,"indexed":false,"mutability":"mutable","name":"amount0","nameLocation":"1331:7:19","nodeType":"VariableDeclaration","scope":1836,"src":"1323:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1831,"name":"uint256","nodeType":"ElementaryTypeName","src":"1323:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1834,"indexed":false,"mutability":"mutable","name":"amount1","nameLocation":"1356:7:19","nodeType":"VariableDeclaration","scope":1836,"src":"1348:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1833,"name":"uint256","nodeType":"ElementaryTypeName","src":"1348:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1168:201:19"},"src":"1158:212:19"},{"anonymous":false,"documentation":{"id":1837,"nodeType":"StructuredDocumentation","src":"1376:493:19","text":"@notice Emitted when fees are collected by the owner of a position\n @dev Collect events may be emitted with zero amount0 and amount1 when the caller chooses not to collect fees\n @param owner The owner of the position for which fees are collected\n @param tickLower The lower tick of the position\n @param tickUpper The upper tick of the position\n @param amount0 The amount of token0 fees collected\n @param amount1 The amount of token1 fees collected"},"id":1851,"name":"Collect","nameLocation":"1880:7:19","nodeType":"EventDefinition","parameters":{"id":1850,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1839,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"1913:5:19","nodeType":"VariableDeclaration","scope":1851,"src":"1897:21:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1838,"name":"address","nodeType":"ElementaryTypeName","src":"1897:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1841,"indexed":false,"mutability":"mutable","name":"recipient","nameLocation":"1936:9:19","nodeType":"VariableDeclaration","scope":1851,"src":"1928:17:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1840,"name":"address","nodeType":"ElementaryTypeName","src":"1928:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1843,"indexed":true,"mutability":"mutable","name":"tickLower","nameLocation":"1969:9:19","nodeType":"VariableDeclaration","scope":1851,"src":"1955:23:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1842,"name":"int24","nodeType":"ElementaryTypeName","src":"1955:5:19","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":1845,"indexed":true,"mutability":"mutable","name":"tickUpper","nameLocation":"2002:9:19","nodeType":"VariableDeclaration","scope":1851,"src":"1988:23:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1844,"name":"int24","nodeType":"ElementaryTypeName","src":"1988:5:19","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":1847,"indexed":false,"mutability":"mutable","name":"amount0","nameLocation":"2029:7:19","nodeType":"VariableDeclaration","scope":1851,"src":"2021:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1846,"name":"uint128","nodeType":"ElementaryTypeName","src":"2021:7:19","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":1849,"indexed":false,"mutability":"mutable","name":"amount1","nameLocation":"2054:7:19","nodeType":"VariableDeclaration","scope":1851,"src":"2046:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1848,"name":"uint128","nodeType":"ElementaryTypeName","src":"2046:7:19","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"1887:180:19"},"src":"1874:194:19"},{"anonymous":false,"documentation":{"id":1852,"nodeType":"StructuredDocumentation","src":"2074:523:19","text":"@notice Emitted when a position's liquidity is removed\n @dev Does not withdraw any fees earned by the liquidity position, which must be withdrawn via #collect\n @param owner The owner of the position for which liquidity is removed\n @param tickLower The lower tick of the position\n @param tickUpper The upper tick of the position\n @param amount The amount of liquidity to remove\n @param amount0 The amount of token0 withdrawn\n @param amount1 The amount of token1 withdrawn"},"id":1866,"name":"Burn","nameLocation":"2608:4:19","nodeType":"EventDefinition","parameters":{"id":1865,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1854,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"2638:5:19","nodeType":"VariableDeclaration","scope":1866,"src":"2622:21:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1853,"name":"address","nodeType":"ElementaryTypeName","src":"2622:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1856,"indexed":true,"mutability":"mutable","name":"tickLower","nameLocation":"2667:9:19","nodeType":"VariableDeclaration","scope":1866,"src":"2653:23:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1855,"name":"int24","nodeType":"ElementaryTypeName","src":"2653:5:19","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":1858,"indexed":true,"mutability":"mutable","name":"tickUpper","nameLocation":"2700:9:19","nodeType":"VariableDeclaration","scope":1866,"src":"2686:23:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1857,"name":"int24","nodeType":"ElementaryTypeName","src":"2686:5:19","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":1860,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"2727:6:19","nodeType":"VariableDeclaration","scope":1866,"src":"2719:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1859,"name":"uint128","nodeType":"ElementaryTypeName","src":"2719:7:19","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":1862,"indexed":false,"mutability":"mutable","name":"amount0","nameLocation":"2751:7:19","nodeType":"VariableDeclaration","scope":1866,"src":"2743:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1861,"name":"uint256","nodeType":"ElementaryTypeName","src":"2743:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1864,"indexed":false,"mutability":"mutable","name":"amount1","nameLocation":"2776:7:19","nodeType":"VariableDeclaration","scope":1866,"src":"2768:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1863,"name":"uint256","nodeType":"ElementaryTypeName","src":"2768:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2612:177:19"},"src":"2602:188:19"},{"anonymous":false,"documentation":{"id":1867,"nodeType":"StructuredDocumentation","src":"2796:600:19","text":"@notice Emitted by the pool for any swaps between token0 and token1\n @param sender The address that initiated the swap call, and that received the callback\n @param recipient The address that received the output of the swap\n @param amount0 The delta of the token0 balance of the pool\n @param amount1 The delta of the token1 balance of the pool\n @param sqrtPriceX96 The sqrt(price) of the pool after the swap, as a Q64.96\n @param liquidity The liquidity of the pool after the swap\n @param tick The log base 1.0001 of price of the pool after the swap"},"id":1883,"name":"Swap","nameLocation":"3407:4:19","nodeType":"EventDefinition","parameters":{"id":1882,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1869,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"3437:6:19","nodeType":"VariableDeclaration","scope":1883,"src":"3421:22:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1868,"name":"address","nodeType":"ElementaryTypeName","src":"3421:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1871,"indexed":true,"mutability":"mutable","name":"recipient","nameLocation":"3469:9:19","nodeType":"VariableDeclaration","scope":1883,"src":"3453:25:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1870,"name":"address","nodeType":"ElementaryTypeName","src":"3453:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1873,"indexed":false,"mutability":"mutable","name":"amount0","nameLocation":"3495:7:19","nodeType":"VariableDeclaration","scope":1883,"src":"3488:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":1872,"name":"int256","nodeType":"ElementaryTypeName","src":"3488:6:19","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":1875,"indexed":false,"mutability":"mutable","name":"amount1","nameLocation":"3519:7:19","nodeType":"VariableDeclaration","scope":1883,"src":"3512:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":1874,"name":"int256","nodeType":"ElementaryTypeName","src":"3512:6:19","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":1877,"indexed":false,"mutability":"mutable","name":"sqrtPriceX96","nameLocation":"3544:12:19","nodeType":"VariableDeclaration","scope":1883,"src":"3536:20:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":1876,"name":"uint160","nodeType":"ElementaryTypeName","src":"3536:7:19","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"},{"constant":false,"id":1879,"indexed":false,"mutability":"mutable","name":"liquidity","nameLocation":"3574:9:19","nodeType":"VariableDeclaration","scope":1883,"src":"3566:17:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1878,"name":"uint128","nodeType":"ElementaryTypeName","src":"3566:7:19","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":1881,"indexed":false,"mutability":"mutable","name":"tick","nameLocation":"3599:4:19","nodeType":"VariableDeclaration","scope":1883,"src":"3593:10:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1880,"name":"int24","nodeType":"ElementaryTypeName","src":"3593:5:19","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"}],"src":"3411:198:19"},"src":"3401:209:19"},{"anonymous":false,"documentation":{"id":1884,"nodeType":"StructuredDocumentation","src":"3616:562:19","text":"@notice Emitted by the pool for any flashes of token0/token1\n @param sender The address that initiated the swap call, and that received the callback\n @param recipient The address that received the tokens from flash\n @param amount0 The amount of token0 that was flashed\n @param amount1 The amount of token1 that was flashed\n @param paid0 The amount of token0 paid for the flash, which can exceed the amount0 plus the fee\n @param paid1 The amount of token1 paid for the flash, which can exceed the amount1 plus the fee"},"id":1898,"name":"Flash","nameLocation":"4189:5:19","nodeType":"EventDefinition","parameters":{"id":1897,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1886,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"4220:6:19","nodeType":"VariableDeclaration","scope":1898,"src":"4204:22:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1885,"name":"address","nodeType":"ElementaryTypeName","src":"4204:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1888,"indexed":true,"mutability":"mutable","name":"recipient","nameLocation":"4252:9:19","nodeType":"VariableDeclaration","scope":1898,"src":"4236:25:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1887,"name":"address","nodeType":"ElementaryTypeName","src":"4236:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1890,"indexed":false,"mutability":"mutable","name":"amount0","nameLocation":"4279:7:19","nodeType":"VariableDeclaration","scope":1898,"src":"4271:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1889,"name":"uint256","nodeType":"ElementaryTypeName","src":"4271:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1892,"indexed":false,"mutability":"mutable","name":"amount1","nameLocation":"4304:7:19","nodeType":"VariableDeclaration","scope":1898,"src":"4296:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1891,"name":"uint256","nodeType":"ElementaryTypeName","src":"4296:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1894,"indexed":false,"mutability":"mutable","name":"paid0","nameLocation":"4329:5:19","nodeType":"VariableDeclaration","scope":1898,"src":"4321:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1893,"name":"uint256","nodeType":"ElementaryTypeName","src":"4321:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1896,"indexed":false,"mutability":"mutable","name":"paid1","nameLocation":"4352:5:19","nodeType":"VariableDeclaration","scope":1898,"src":"4344:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1895,"name":"uint256","nodeType":"ElementaryTypeName","src":"4344:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4194:169:19"},"src":"4183:181:19"},{"anonymous":false,"documentation":{"id":1899,"nodeType":"StructuredDocumentation","src":"4370:451:19","text":"@notice Emitted by the pool for increases to the number of observations that can be stored\n @dev observationCardinalityNext is not the observation cardinality until an observation is written at the index\n just before a mint/swap/burn.\n @param observationCardinalityNextOld The previous value of the next observation cardinality\n @param observationCardinalityNextNew The updated value of the next observation cardinality"},"id":1905,"name":"IncreaseObservationCardinalityNext","nameLocation":"4832:34:19","nodeType":"EventDefinition","parameters":{"id":1904,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1901,"indexed":false,"mutability":"mutable","name":"observationCardinalityNextOld","nameLocation":"4883:29:19","nodeType":"VariableDeclaration","scope":1905,"src":"4876:36:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":1900,"name":"uint16","nodeType":"ElementaryTypeName","src":"4876:6:19","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"},{"constant":false,"id":1903,"indexed":false,"mutability":"mutable","name":"observationCardinalityNextNew","nameLocation":"4929:29:19","nodeType":"VariableDeclaration","scope":1905,"src":"4922:36:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":1902,"name":"uint16","nodeType":"ElementaryTypeName","src":"4922:6:19","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"src":"4866:98:19"},"src":"4826:139:19"},{"anonymous":false,"documentation":{"id":1906,"nodeType":"StructuredDocumentation","src":"4971:370:19","text":"@notice Emitted when the protocol fee is changed by the pool\n @param feeProtocol0Old The previous value of the token0 protocol fee\n @param feeProtocol1Old The previous value of the token1 protocol fee\n @param feeProtocol0New The updated value of the token0 protocol fee\n @param feeProtocol1New The updated value of the token1 protocol fee"},"id":1916,"name":"SetFeeProtocol","nameLocation":"5352:14:19","nodeType":"EventDefinition","parameters":{"id":1915,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1908,"indexed":false,"mutability":"mutable","name":"feeProtocol0Old","nameLocation":"5373:15:19","nodeType":"VariableDeclaration","scope":1916,"src":"5367:21:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1907,"name":"uint8","nodeType":"ElementaryTypeName","src":"5367:5:19","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1910,"indexed":false,"mutability":"mutable","name":"feeProtocol1Old","nameLocation":"5396:15:19","nodeType":"VariableDeclaration","scope":1916,"src":"5390:21:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1909,"name":"uint8","nodeType":"ElementaryTypeName","src":"5390:5:19","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1912,"indexed":false,"mutability":"mutable","name":"feeProtocol0New","nameLocation":"5419:15:19","nodeType":"VariableDeclaration","scope":1916,"src":"5413:21:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1911,"name":"uint8","nodeType":"ElementaryTypeName","src":"5413:5:19","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1914,"indexed":false,"mutability":"mutable","name":"feeProtocol1New","nameLocation":"5442:15:19","nodeType":"VariableDeclaration","scope":1916,"src":"5436:21:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1913,"name":"uint8","nodeType":"ElementaryTypeName","src":"5436:5:19","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"5366:92:19"},"src":"5346:113:19"},{"anonymous":false,"documentation":{"id":1917,"nodeType":"StructuredDocumentation","src":"5465:384:19","text":"@notice Emitted when the collected protocol fees are withdrawn by the factory owner\n @param sender The address that collects the protocol fees\n @param recipient The address that receives the collected protocol fees\n @param amount0 The amount of token0 protocol fees that is withdrawn\n @param amount0 The amount of token1 protocol fees that is withdrawn"},"id":1927,"name":"CollectProtocol","nameLocation":"5860:15:19","nodeType":"EventDefinition","parameters":{"id":1926,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1919,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"5892:6:19","nodeType":"VariableDeclaration","scope":1927,"src":"5876:22:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1918,"name":"address","nodeType":"ElementaryTypeName","src":"5876:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1921,"indexed":true,"mutability":"mutable","name":"recipient","nameLocation":"5916:9:19","nodeType":"VariableDeclaration","scope":1927,"src":"5900:25:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1920,"name":"address","nodeType":"ElementaryTypeName","src":"5900:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1923,"indexed":false,"mutability":"mutable","name":"amount0","nameLocation":"5935:7:19","nodeType":"VariableDeclaration","scope":1927,"src":"5927:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1922,"name":"uint128","nodeType":"ElementaryTypeName","src":"5927:7:19","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":1925,"indexed":false,"mutability":"mutable","name":"amount1","nameLocation":"5952:7:19","nodeType":"VariableDeclaration","scope":1927,"src":"5944:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1924,"name":"uint128","nodeType":"ElementaryTypeName","src":"5944:7:19","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"5875:85:19"},"src":"5854:107:19"}],"scope":1929,"src":"159:5804:19","usedErrors":[]}],"src":"45:5919:19"},"id":19},"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolImmutables.sol":{"ast":{"absolutePath":"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolImmutables.sol","exportedSymbols":{"IUniswapV3PoolImmutables":[1968]},"id":1969,"license":"GPL-2.0-or-later","nodeType":"SourceUnit","nodes":[{"id":1930,"literals":["solidity",">=","0.5",".0"],"nodeType":"PragmaDirective","src":"45:24:20"},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"interface","documentation":{"id":1931,"nodeType":"StructuredDocumentation","src":"71:153:20","text":"@title Pool state that never changes\n @notice These parameters are fixed for a pool forever, i.e., the methods will always return the same values"},"fullyImplemented":false,"id":1968,"linearizedBaseContracts":[1968],"name":"IUniswapV3PoolImmutables","nameLocation":"234:24:20","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1932,"nodeType":"StructuredDocumentation","src":"265:138:20","text":"@notice The contract that deployed the pool, which must adhere to the IUniswapV3Factory interface\n @return The contract address"},"functionSelector":"c45a0155","id":1937,"implemented":false,"kind":"function","modifiers":[],"name":"factory","nameLocation":"417:7:20","nodeType":"FunctionDefinition","parameters":{"id":1933,"nodeType":"ParameterList","parameters":[],"src":"424:2:20"},"returnParameters":{"id":1936,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1935,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1937,"src":"450:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1934,"name":"address","nodeType":"ElementaryTypeName","src":"450:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"449:9:20"},"scope":1968,"src":"408:51:20","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1938,"nodeType":"StructuredDocumentation","src":"465:113:20","text":"@notice The first of the two tokens of the pool, sorted by address\n @return The token contract address"},"functionSelector":"0dfe1681","id":1943,"implemented":false,"kind":"function","modifiers":[],"name":"token0","nameLocation":"592:6:20","nodeType":"FunctionDefinition","parameters":{"id":1939,"nodeType":"ParameterList","parameters":[],"src":"598:2:20"},"returnParameters":{"id":1942,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1941,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1943,"src":"624:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1940,"name":"address","nodeType":"ElementaryTypeName","src":"624:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"623:9:20"},"scope":1968,"src":"583:50:20","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1944,"nodeType":"StructuredDocumentation","src":"639:114:20","text":"@notice The second of the two tokens of the pool, sorted by address\n @return The token contract address"},"functionSelector":"d21220a7","id":1949,"implemented":false,"kind":"function","modifiers":[],"name":"token1","nameLocation":"767:6:20","nodeType":"FunctionDefinition","parameters":{"id":1945,"nodeType":"ParameterList","parameters":[],"src":"773:2:20"},"returnParameters":{"id":1948,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1947,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1949,"src":"799:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1946,"name":"address","nodeType":"ElementaryTypeName","src":"799:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"798:9:20"},"scope":1968,"src":"758:50:20","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1950,"nodeType":"StructuredDocumentation","src":"814:84:20","text":"@notice The pool's fee in hundredths of a bip, i.e. 1e-6\n @return The fee"},"functionSelector":"ddca3f43","id":1955,"implemented":false,"kind":"function","modifiers":[],"name":"fee","nameLocation":"912:3:20","nodeType":"FunctionDefinition","parameters":{"id":1951,"nodeType":"ParameterList","parameters":[],"src":"915:2:20"},"returnParameters":{"id":1954,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1953,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1955,"src":"941:6:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":1952,"name":"uint24","nodeType":"ElementaryTypeName","src":"941:6:20","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"src":"940:8:20"},"scope":1968,"src":"903:46:20","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1956,"nodeType":"StructuredDocumentation","src":"955:358:20","text":"@notice The pool tick spacing\n @dev Ticks can only be used at multiples of this value, minimum of 1 and always positive\n e.g.: a tickSpacing of 3 means ticks can be initialized every 3rd tick, i.e., ..., -6, -3, 0, 3, 6, ...\n This value is an int24 to avoid casting even though it is always positive.\n @return The tick spacing"},"functionSelector":"d0c93a7c","id":1961,"implemented":false,"kind":"function","modifiers":[],"name":"tickSpacing","nameLocation":"1327:11:20","nodeType":"FunctionDefinition","parameters":{"id":1957,"nodeType":"ParameterList","parameters":[],"src":"1338:2:20"},"returnParameters":{"id":1960,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1959,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1961,"src":"1364:5:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":1958,"name":"int24","nodeType":"ElementaryTypeName","src":"1364:5:20","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"}],"src":"1363:7:20"},"scope":1968,"src":"1318:53:20","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1962,"nodeType":"StructuredDocumentation","src":"1377:363:20","text":"@notice The maximum amount of position liquidity that can use any tick in the range\n @dev This parameter is enforced per tick to prevent liquidity from overflowing a uint128 at any point, and\n also prevents out-of-range liquidity from being used to prevent adding in-range liquidity to a pool\n @return The max amount of liquidity per tick"},"functionSelector":"70cf754a","id":1967,"implemented":false,"kind":"function","modifiers":[],"name":"maxLiquidityPerTick","nameLocation":"1754:19:20","nodeType":"FunctionDefinition","parameters":{"id":1963,"nodeType":"ParameterList","parameters":[],"src":"1773:2:20"},"returnParameters":{"id":1966,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1965,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1967,"src":"1799:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1964,"name":"uint128","nodeType":"ElementaryTypeName","src":"1799:7:20","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"1798:9:20"},"scope":1968,"src":"1745:63:20","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":1969,"src":"224:1586:20","usedErrors":[]}],"src":"45:1766:20"},"id":20},"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolOwnerActions.sol":{"ast":{"absolutePath":"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolOwnerActions.sol","exportedSymbols":{"IUniswapV3PoolOwnerActions":[1994]},"id":1995,"license":"GPL-2.0-or-later","nodeType":"SourceUnit","nodes":[{"id":1970,"literals":["solidity",">=","0.5",".0"],"nodeType":"PragmaDirective","src":"45:24:21"},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"interface","documentation":{"id":1971,"nodeType":"StructuredDocumentation","src":"71:116:21","text":"@title Permissioned pool actions\n @notice Contains pool methods that may only be called by the factory owner"},"fullyImplemented":false,"id":1994,"linearizedBaseContracts":[1994],"name":"IUniswapV3PoolOwnerActions","nameLocation":"197:26:21","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1972,"nodeType":"StructuredDocumentation","src":"230:205:21","text":"@notice Set the denominator of the protocol's % share of the fees\n @param feeProtocol0 new protocol fee for token0 of the pool\n @param feeProtocol1 new protocol fee for token1 of the pool"},"functionSelector":"8206a4d1","id":1979,"implemented":false,"kind":"function","modifiers":[],"name":"setFeeProtocol","nameLocation":"449:14:21","nodeType":"FunctionDefinition","parameters":{"id":1977,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1974,"mutability":"mutable","name":"feeProtocol0","nameLocation":"470:12:21","nodeType":"VariableDeclaration","scope":1979,"src":"464:18:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1973,"name":"uint8","nodeType":"ElementaryTypeName","src":"464:5:21","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1976,"mutability":"mutable","name":"feeProtocol1","nameLocation":"490:12:21","nodeType":"VariableDeclaration","scope":1979,"src":"484:18:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1975,"name":"uint8","nodeType":"ElementaryTypeName","src":"484:5:21","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"463:40:21"},"returnParameters":{"id":1978,"nodeType":"ParameterList","parameters":[],"src":"512:0:21"},"scope":1994,"src":"440:73:21","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1980,"nodeType":"StructuredDocumentation","src":"519:483:21","text":"@notice Collect the protocol fee accrued to the pool\n @param recipient The address to which collected protocol fees should be sent\n @param amount0Requested The maximum amount of token0 to send, can be 0 to collect fees in only token1\n @param amount1Requested The maximum amount of token1 to send, can be 0 to collect fees in only token0\n @return amount0 The protocol fee collected in token0\n @return amount1 The protocol fee collected in token1"},"functionSelector":"85b66729","id":1993,"implemented":false,"kind":"function","modifiers":[],"name":"collectProtocol","nameLocation":"1016:15:21","nodeType":"FunctionDefinition","parameters":{"id":1987,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1982,"mutability":"mutable","name":"recipient","nameLocation":"1049:9:21","nodeType":"VariableDeclaration","scope":1993,"src":"1041:17:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1981,"name":"address","nodeType":"ElementaryTypeName","src":"1041:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1984,"mutability":"mutable","name":"amount0Requested","nameLocation":"1076:16:21","nodeType":"VariableDeclaration","scope":1993,"src":"1068:24:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1983,"name":"uint128","nodeType":"ElementaryTypeName","src":"1068:7:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":1986,"mutability":"mutable","name":"amount1Requested","nameLocation":"1110:16:21","nodeType":"VariableDeclaration","scope":1993,"src":"1102:24:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1985,"name":"uint128","nodeType":"ElementaryTypeName","src":"1102:7:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"1031:101:21"},"returnParameters":{"id":1992,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1989,"mutability":"mutable","name":"amount0","nameLocation":"1159:7:21","nodeType":"VariableDeclaration","scope":1993,"src":"1151:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1988,"name":"uint128","nodeType":"ElementaryTypeName","src":"1151:7:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":1991,"mutability":"mutable","name":"amount1","nameLocation":"1176:7:21","nodeType":"VariableDeclaration","scope":1993,"src":"1168:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1990,"name":"uint128","nodeType":"ElementaryTypeName","src":"1168:7:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"1150:34:21"},"scope":1994,"src":"1007:178:21","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":1995,"src":"187:1000:21","usedErrors":[]}],"src":"45:1143:21"},"id":21},"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolState.sol":{"ast":{"absolutePath":"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolState.sol","exportedSymbols":{"IUniswapV3PoolState":[2102]},"id":2103,"license":"GPL-2.0-or-later","nodeType":"SourceUnit","nodes":[{"id":1996,"literals":["solidity",">=","0.5",".0"],"nodeType":"PragmaDirective","src":"45:24:22"},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"interface","documentation":{"id":1997,"nodeType":"StructuredDocumentation","src":"71:169:22","text":"@title Pool state that can change\n @notice These methods compose the pool's state, and can change with any frequency including multiple times\n per transaction"},"fullyImplemented":false,"id":2102,"linearizedBaseContracts":[2102],"name":"IUniswapV3PoolState","nameLocation":"250:19:22","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1998,"nodeType":"StructuredDocumentation","src":"276:1140:22","text":"@notice The 0th storage slot in the pool stores many values, and is exposed as a single method to save gas\n when accessed externally.\n @return sqrtPriceX96 The current price of the pool as a sqrt(token1/token0) Q64.96 value\n tick The current tick of the pool, i.e. according to the last tick transition that was run.\n This value may not always be equal to SqrtTickMath.getTickAtSqrtRatio(sqrtPriceX96) if the price is on a tick\n boundary.\n observationIndex The index of the last oracle observation that was written,\n observationCardinality The current maximum number of observations stored in the pool,\n observationCardinalityNext The next maximum number of observations, to be updated when the observation.\n feeProtocol The protocol fee for both tokens of the pool.\n Encoded as two 4 bit values, where the protocol fee of token1 is shifted 4 bits and the protocol fee of token0\n 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.\n unlocked Whether the pool is currently locked to reentrancy"},"functionSelector":"3850c7bd","id":2015,"implemented":false,"kind":"function","modifiers":[],"name":"slot0","nameLocation":"1430:5:22","nodeType":"FunctionDefinition","parameters":{"id":1999,"nodeType":"ParameterList","parameters":[],"src":"1435:2:22"},"returnParameters":{"id":2014,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2001,"mutability":"mutable","name":"sqrtPriceX96","nameLocation":"1506:12:22","nodeType":"VariableDeclaration","scope":2015,"src":"1498:20:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":2000,"name":"uint160","nodeType":"ElementaryTypeName","src":"1498:7:22","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"},{"constant":false,"id":2003,"mutability":"mutable","name":"tick","nameLocation":"1538:4:22","nodeType":"VariableDeclaration","scope":2015,"src":"1532:10:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":2002,"name":"int24","nodeType":"ElementaryTypeName","src":"1532:5:22","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":2005,"mutability":"mutable","name":"observationIndex","nameLocation":"1563:16:22","nodeType":"VariableDeclaration","scope":2015,"src":"1556:23:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":2004,"name":"uint16","nodeType":"ElementaryTypeName","src":"1556:6:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"},{"constant":false,"id":2007,"mutability":"mutable","name":"observationCardinality","nameLocation":"1600:22:22","nodeType":"VariableDeclaration","scope":2015,"src":"1593:29:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":2006,"name":"uint16","nodeType":"ElementaryTypeName","src":"1593:6:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"},{"constant":false,"id":2009,"mutability":"mutable","name":"observationCardinalityNext","nameLocation":"1643:26:22","nodeType":"VariableDeclaration","scope":2015,"src":"1636:33:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":2008,"name":"uint16","nodeType":"ElementaryTypeName","src":"1636:6:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"},{"constant":false,"id":2011,"mutability":"mutable","name":"feeProtocol","nameLocation":"1689:11:22","nodeType":"VariableDeclaration","scope":2015,"src":"1683:17:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2010,"name":"uint8","nodeType":"ElementaryTypeName","src":"1683:5:22","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2013,"mutability":"mutable","name":"unlocked","nameLocation":"1719:8:22","nodeType":"VariableDeclaration","scope":2015,"src":"1714:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2012,"name":"bool","nodeType":"ElementaryTypeName","src":"1714:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1484:253:22"},"scope":2102,"src":"1421:317:22","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2016,"nodeType":"StructuredDocumentation","src":"1744:168:22","text":"@notice The fee growth as a Q128.128 fees of token0 collected per unit of liquidity for the entire life of the pool\n @dev This value can overflow the uint256"},"functionSelector":"f3058399","id":2021,"implemented":false,"kind":"function","modifiers":[],"name":"feeGrowthGlobal0X128","nameLocation":"1926:20:22","nodeType":"FunctionDefinition","parameters":{"id":2017,"nodeType":"ParameterList","parameters":[],"src":"1946:2:22"},"returnParameters":{"id":2020,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2019,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2021,"src":"1972:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2018,"name":"uint256","nodeType":"ElementaryTypeName","src":"1972:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1971:9:22"},"scope":2102,"src":"1917:64:22","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2022,"nodeType":"StructuredDocumentation","src":"1987:168:22","text":"@notice The fee growth as a Q128.128 fees of token1 collected per unit of liquidity for the entire life of the pool\n @dev This value can overflow the uint256"},"functionSelector":"46141319","id":2027,"implemented":false,"kind":"function","modifiers":[],"name":"feeGrowthGlobal1X128","nameLocation":"2169:20:22","nodeType":"FunctionDefinition","parameters":{"id":2023,"nodeType":"ParameterList","parameters":[],"src":"2189:2:22"},"returnParameters":{"id":2026,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2025,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2027,"src":"2215:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2024,"name":"uint256","nodeType":"ElementaryTypeName","src":"2215:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2214:9:22"},"scope":2102,"src":"2160:64:22","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2028,"nodeType":"StructuredDocumentation","src":"2230:147:22","text":"@notice The amounts of token0 and token1 that are owed to the protocol\n @dev Protocol fees will never exceed uint128 max in either token"},"functionSelector":"1ad8b03b","id":2035,"implemented":false,"kind":"function","modifiers":[],"name":"protocolFees","nameLocation":"2391:12:22","nodeType":"FunctionDefinition","parameters":{"id":2029,"nodeType":"ParameterList","parameters":[],"src":"2403:2:22"},"returnParameters":{"id":2034,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2031,"mutability":"mutable","name":"token0","nameLocation":"2437:6:22","nodeType":"VariableDeclaration","scope":2035,"src":"2429:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2030,"name":"uint128","nodeType":"ElementaryTypeName","src":"2429:7:22","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":2033,"mutability":"mutable","name":"token1","nameLocation":"2453:6:22","nodeType":"VariableDeclaration","scope":2035,"src":"2445:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2032,"name":"uint128","nodeType":"ElementaryTypeName","src":"2445:7:22","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"2428:32:22"},"scope":2102,"src":"2382:79:22","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2036,"nodeType":"StructuredDocumentation","src":"2467:150:22","text":"@notice The currently in range liquidity available to the pool\n @dev This value has no relationship to the total liquidity across all ticks"},"functionSelector":"1a686502","id":2041,"implemented":false,"kind":"function","modifiers":[],"name":"liquidity","nameLocation":"2631:9:22","nodeType":"FunctionDefinition","parameters":{"id":2037,"nodeType":"ParameterList","parameters":[],"src":"2640:2:22"},"returnParameters":{"id":2040,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2039,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2041,"src":"2666:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2038,"name":"uint128","nodeType":"ElementaryTypeName","src":"2666:7:22","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"2665:9:22"},"scope":2102,"src":"2622:53:22","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2042,"nodeType":"StructuredDocumentation","src":"2681:1244:22","text":"@notice Look up information about a specific tick in the pool\n @param tick The tick to look up\n @return liquidityGross the total amount of position liquidity that uses the pool either as tick lower or\n tick upper,\n liquidityNet how much liquidity changes when the pool price crosses the tick,\n feeGrowthOutside0X128 the fee growth on the other side of the tick from the current tick in token0,\n feeGrowthOutside1X128 the fee growth on the other side of the tick from the current tick in token1,\n tickCumulativeOutside the cumulative tick value on the other side of the tick from the current tick\n secondsPerLiquidityOutsideX128 the seconds spent per liquidity on the other side of the tick from the current tick,\n secondsOutside the seconds spent on the other side of the tick from the current tick,\n initialized Set to true if the tick is initialized, i.e. liquidityGross is greater than 0, otherwise equal to false.\n Outside values can only be used if the tick is initialized, i.e. if liquidityGross is greater than 0.\n In addition, these values are only relative and must be used only in comparison to previous snapshots for\n a specific position."},"functionSelector":"f30dba93","id":2063,"implemented":false,"kind":"function","modifiers":[],"name":"ticks","nameLocation":"3939:5:22","nodeType":"FunctionDefinition","parameters":{"id":2045,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2044,"mutability":"mutable","name":"tick","nameLocation":"3951:4:22","nodeType":"VariableDeclaration","scope":2063,"src":"3945:10:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":2043,"name":"int24","nodeType":"ElementaryTypeName","src":"3945:5:22","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"}],"src":"3944:12:22"},"returnParameters":{"id":2062,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2047,"mutability":"mutable","name":"liquidityGross","nameLocation":"4025:14:22","nodeType":"VariableDeclaration","scope":2063,"src":"4017:22:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2046,"name":"uint128","nodeType":"ElementaryTypeName","src":"4017:7:22","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":2049,"mutability":"mutable","name":"liquidityNet","nameLocation":"4060:12:22","nodeType":"VariableDeclaration","scope":2063,"src":"4053:19:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"},"typeName":{"id":2048,"name":"int128","nodeType":"ElementaryTypeName","src":"4053:6:22","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"visibility":"internal"},{"constant":false,"id":2051,"mutability":"mutable","name":"feeGrowthOutside0X128","nameLocation":"4094:21:22","nodeType":"VariableDeclaration","scope":2063,"src":"4086:29:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2050,"name":"uint256","nodeType":"ElementaryTypeName","src":"4086:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2053,"mutability":"mutable","name":"feeGrowthOutside1X128","nameLocation":"4137:21:22","nodeType":"VariableDeclaration","scope":2063,"src":"4129:29:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2052,"name":"uint256","nodeType":"ElementaryTypeName","src":"4129:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2055,"mutability":"mutable","name":"tickCumulativeOutside","nameLocation":"4178:21:22","nodeType":"VariableDeclaration","scope":2063,"src":"4172:27:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"},"typeName":{"id":2054,"name":"int56","nodeType":"ElementaryTypeName","src":"4172:5:22","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"visibility":"internal"},{"constant":false,"id":2057,"mutability":"mutable","name":"secondsPerLiquidityOutsideX128","nameLocation":"4221:30:22","nodeType":"VariableDeclaration","scope":2063,"src":"4213:38:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":2056,"name":"uint160","nodeType":"ElementaryTypeName","src":"4213:7:22","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"},{"constant":false,"id":2059,"mutability":"mutable","name":"secondsOutside","nameLocation":"4272:14:22","nodeType":"VariableDeclaration","scope":2063,"src":"4265:21:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":2058,"name":"uint32","nodeType":"ElementaryTypeName","src":"4265:6:22","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":2061,"mutability":"mutable","name":"initialized","nameLocation":"4305:11:22","nodeType":"VariableDeclaration","scope":2063,"src":"4300:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2060,"name":"bool","nodeType":"ElementaryTypeName","src":"4300:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4003:323:22"},"scope":2102,"src":"3930:397:22","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2064,"nodeType":"StructuredDocumentation","src":"4333:99:22","text":"@notice Returns 256 packed tick initialized boolean values. See TickBitmap for more information"},"functionSelector":"5339c296","id":2071,"implemented":false,"kind":"function","modifiers":[],"name":"tickBitmap","nameLocation":"4446:10:22","nodeType":"FunctionDefinition","parameters":{"id":2067,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2066,"mutability":"mutable","name":"wordPosition","nameLocation":"4463:12:22","nodeType":"VariableDeclaration","scope":2071,"src":"4457:18:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"},"typeName":{"id":2065,"name":"int16","nodeType":"ElementaryTypeName","src":"4457:5:22","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"visibility":"internal"}],"src":"4456:20:22"},"returnParameters":{"id":2070,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2069,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2071,"src":"4500:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2068,"name":"uint256","nodeType":"ElementaryTypeName","src":"4500:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4499:9:22"},"scope":2102,"src":"4437:72:22","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2072,"nodeType":"StructuredDocumentation","src":"4515:700:22","text":"@notice Returns the information about a position by the position's key\n @param key The position's key is a hash of a preimage composed by the owner, tickLower and tickUpper\n @return _liquidity The amount of liquidity in the position,\n Returns feeGrowthInside0LastX128 fee growth of token0 inside the tick range as of the last mint/burn/poke,\n Returns feeGrowthInside1LastX128 fee growth of token1 inside the tick range as of the last mint/burn/poke,\n Returns tokensOwed0 the computed amount of token0 owed to the position as of the last mint/burn/poke,\n Returns tokensOwed1 the computed amount of token1 owed to the position as of the last mint/burn/poke"},"functionSelector":"514ea4bf","id":2087,"implemented":false,"kind":"function","modifiers":[],"name":"positions","nameLocation":"5229:9:22","nodeType":"FunctionDefinition","parameters":{"id":2075,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2074,"mutability":"mutable","name":"key","nameLocation":"5247:3:22","nodeType":"VariableDeclaration","scope":2087,"src":"5239:11:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2073,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5239:7:22","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5238:13:22"},"returnParameters":{"id":2086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2077,"mutability":"mutable","name":"_liquidity","nameLocation":"5320:10:22","nodeType":"VariableDeclaration","scope":2087,"src":"5312:18:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2076,"name":"uint128","nodeType":"ElementaryTypeName","src":"5312:7:22","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":2079,"mutability":"mutable","name":"feeGrowthInside0LastX128","nameLocation":"5352:24:22","nodeType":"VariableDeclaration","scope":2087,"src":"5344:32:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2078,"name":"uint256","nodeType":"ElementaryTypeName","src":"5344:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2081,"mutability":"mutable","name":"feeGrowthInside1LastX128","nameLocation":"5398:24:22","nodeType":"VariableDeclaration","scope":2087,"src":"5390:32:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2080,"name":"uint256","nodeType":"ElementaryTypeName","src":"5390:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2083,"mutability":"mutable","name":"tokensOwed0","nameLocation":"5444:11:22","nodeType":"VariableDeclaration","scope":2087,"src":"5436:19:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2082,"name":"uint128","nodeType":"ElementaryTypeName","src":"5436:7:22","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":2085,"mutability":"mutable","name":"tokensOwed1","nameLocation":"5477:11:22","nodeType":"VariableDeclaration","scope":2087,"src":"5469:19:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2084,"name":"uint128","nodeType":"ElementaryTypeName","src":"5469:7:22","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"5298:200:22"},"scope":2102,"src":"5220:279:22","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2088,"nodeType":"StructuredDocumentation","src":"5505:749:22","text":"@notice Returns data about a specific observation index\n @param index The element of the observations array to fetch\n @dev You most likely want to use #observe() instead of this method to get an observation as of some amount of time\n ago, rather than at a specific index in the array.\n @return blockTimestamp The timestamp of the observation,\n Returns tickCumulative the tick multiplied by seconds elapsed for the life of the pool as of the observation timestamp,\n Returns secondsPerLiquidityCumulativeX128 the seconds per in range liquidity for the life of the pool as of the observation timestamp,\n Returns initialized whether the observation has been initialized and the values are safe to use"},"functionSelector":"252c09d7","id":2101,"implemented":false,"kind":"function","modifiers":[],"name":"observations","nameLocation":"6268:12:22","nodeType":"FunctionDefinition","parameters":{"id":2091,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2090,"mutability":"mutable","name":"index","nameLocation":"6289:5:22","nodeType":"VariableDeclaration","scope":2101,"src":"6281:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2089,"name":"uint256","nodeType":"ElementaryTypeName","src":"6281:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6280:15:22"},"returnParameters":{"id":2100,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2093,"mutability":"mutable","name":"blockTimestamp","nameLocation":"6363:14:22","nodeType":"VariableDeclaration","scope":2101,"src":"6356:21:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":2092,"name":"uint32","nodeType":"ElementaryTypeName","src":"6356:6:22","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":2095,"mutability":"mutable","name":"tickCumulative","nameLocation":"6397:14:22","nodeType":"VariableDeclaration","scope":2101,"src":"6391:20:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"},"typeName":{"id":2094,"name":"int56","nodeType":"ElementaryTypeName","src":"6391:5:22","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"visibility":"internal"},{"constant":false,"id":2097,"mutability":"mutable","name":"secondsPerLiquidityCumulativeX128","nameLocation":"6433:33:22","nodeType":"VariableDeclaration","scope":2101,"src":"6425:41:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":2096,"name":"uint160","nodeType":"ElementaryTypeName","src":"6425:7:22","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"},{"constant":false,"id":2099,"mutability":"mutable","name":"initialized","nameLocation":"6485:11:22","nodeType":"VariableDeclaration","scope":2101,"src":"6480:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2098,"name":"bool","nodeType":"ElementaryTypeName","src":"6480:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6342:164:22"},"scope":2102,"src":"6259:248:22","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":2103,"src":"240:6269:22","usedErrors":[]}],"src":"45:6465:22"},"id":22},"@uniswap/v3-periphery/contracts/interfaces/IERC721Permit.sol":{"ast":{"absolutePath":"@uniswap/v3-periphery/contracts/interfaces/IERC721Permit.sol","exportedSymbols":{"IERC165":[1265],"IERC721":[876],"IERC721Permit":[2137]},"id":2138,"license":"GPL-2.0-or-later","nodeType":"SourceUnit","nodes":[{"id":2104,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"45:24:23"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","file":"@openzeppelin/contracts/token/ERC721/IERC721.sol","id":2105,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2138,"sourceUnit":877,"src":"71:58:23","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":2107,"name":"IERC721","nodeType":"IdentifierPath","referencedDeclaration":876,"src":"282:7:23"},"id":2108,"nodeType":"InheritanceSpecifier","src":"282:7:23"}],"contractDependencies":[],"contractKind":"interface","documentation":{"id":2106,"nodeType":"StructuredDocumentation","src":"131:124:23","text":"@title ERC721 with permit\n @notice Extension to ERC721 that includes a permit function for signature based approvals"},"fullyImplemented":false,"id":2137,"linearizedBaseContracts":[2137,876,1265],"name":"IERC721Permit","nameLocation":"265:13:23","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":2109,"nodeType":"StructuredDocumentation","src":"296:104:23","text":"@notice The permit typehash used in the permit signature\n @return The typehash for the permit"},"functionSelector":"30adf81f","id":2114,"implemented":false,"kind":"function","modifiers":[],"name":"PERMIT_TYPEHASH","nameLocation":"414:15:23","nodeType":"FunctionDefinition","parameters":{"id":2110,"nodeType":"ParameterList","parameters":[],"src":"429:2:23"},"returnParameters":{"id":2113,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2112,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2114,"src":"455:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2111,"name":"bytes32","nodeType":"ElementaryTypeName","src":"455:7:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"454:9:23"},"scope":2137,"src":"405:59:23","stateMutability":"pure","virtual":false,"visibility":"external"},{"documentation":{"id":2115,"nodeType":"StructuredDocumentation","src":"470:135:23","text":"@notice The domain separator used in the permit signature\n @return The domain seperator used in encoding of permit signature"},"functionSelector":"3644e515","id":2120,"implemented":false,"kind":"function","modifiers":[],"name":"DOMAIN_SEPARATOR","nameLocation":"619:16:23","nodeType":"FunctionDefinition","parameters":{"id":2116,"nodeType":"ParameterList","parameters":[],"src":"635:2:23"},"returnParameters":{"id":2119,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2118,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2120,"src":"661:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2117,"name":"bytes32","nodeType":"ElementaryTypeName","src":"661:7:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"660:9:23"},"scope":2137,"src":"610:60:23","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2121,"nodeType":"StructuredDocumentation","src":"676:605:23","text":"@notice Approve of a specific token ID for spending by spender via signature\n @param spender The account that is being approved\n @param tokenId The ID of the token that is being approved for spending\n @param deadline The deadline timestamp by which the call must be mined for the approve to work\n @param v Must produce valid secp256k1 signature from the holder along with `r` and `s`\n @param r Must produce valid secp256k1 signature from the holder along with `v` and `s`\n @param s Must produce valid secp256k1 signature from the holder along with `r` and `v`"},"functionSelector":"7ac2ff7b","id":2136,"implemented":false,"kind":"function","modifiers":[],"name":"permit","nameLocation":"1295:6:23","nodeType":"FunctionDefinition","parameters":{"id":2134,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2123,"mutability":"mutable","name":"spender","nameLocation":"1319:7:23","nodeType":"VariableDeclaration","scope":2136,"src":"1311:15:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2122,"name":"address","nodeType":"ElementaryTypeName","src":"1311:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2125,"mutability":"mutable","name":"tokenId","nameLocation":"1344:7:23","nodeType":"VariableDeclaration","scope":2136,"src":"1336:15:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2124,"name":"uint256","nodeType":"ElementaryTypeName","src":"1336:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2127,"mutability":"mutable","name":"deadline","nameLocation":"1369:8:23","nodeType":"VariableDeclaration","scope":2136,"src":"1361:16:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2126,"name":"uint256","nodeType":"ElementaryTypeName","src":"1361:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2129,"mutability":"mutable","name":"v","nameLocation":"1393:1:23","nodeType":"VariableDeclaration","scope":2136,"src":"1387:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2128,"name":"uint8","nodeType":"ElementaryTypeName","src":"1387:5:23","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2131,"mutability":"mutable","name":"r","nameLocation":"1412:1:23","nodeType":"VariableDeclaration","scope":2136,"src":"1404:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2130,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1404:7:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2133,"mutability":"mutable","name":"s","nameLocation":"1431:1:23","nodeType":"VariableDeclaration","scope":2136,"src":"1423:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2132,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1423:7:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1301:137:23"},"returnParameters":{"id":2135,"nodeType":"ParameterList","parameters":[],"src":"1455:0:23"},"scope":2137,"src":"1286:170:23","stateMutability":"payable","virtual":false,"visibility":"external"}],"scope":2138,"src":"255:1203:23","usedErrors":[]}],"src":"45:1414:23"},"id":23},"@uniswap/v3-periphery/contracts/interfaces/IPeripheryImmutableState.sol":{"ast":{"absolutePath":"@uniswap/v3-periphery/contracts/interfaces/IPeripheryImmutableState.sol","exportedSymbols":{"IPeripheryImmutableState":[2153]},"id":2154,"license":"GPL-2.0-or-later","nodeType":"SourceUnit","nodes":[{"id":2139,"literals":["solidity",">=","0.5",".0"],"nodeType":"PragmaDirective","src":"45:24:24"},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"interface","documentation":{"id":2140,"nodeType":"StructuredDocumentation","src":"71:91:24","text":"@title Immutable state\n @notice Functions that return immutable state of the router"},"fullyImplemented":false,"id":2153,"linearizedBaseContracts":[2153],"name":"IPeripheryImmutableState","nameLocation":"172:24:24","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":2141,"nodeType":"StructuredDocumentation","src":"203:57:24","text":"@return Returns the address of the Uniswap V3 factory"},"functionSelector":"c45a0155","id":2146,"implemented":false,"kind":"function","modifiers":[],"name":"factory","nameLocation":"274:7:24","nodeType":"FunctionDefinition","parameters":{"id":2142,"nodeType":"ParameterList","parameters":[],"src":"281:2:24"},"returnParameters":{"id":2145,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2144,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2146,"src":"307:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2143,"name":"address","nodeType":"ElementaryTypeName","src":"307:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"306:9:24"},"scope":2153,"src":"265:51:24","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2147,"nodeType":"StructuredDocumentation","src":"322:40:24","text":"@return Returns the address of WETH9"},"functionSelector":"4aa4a4fc","id":2152,"implemented":false,"kind":"function","modifiers":[],"name":"WETH9","nameLocation":"376:5:24","nodeType":"FunctionDefinition","parameters":{"id":2148,"nodeType":"ParameterList","parameters":[],"src":"381:2:24"},"returnParameters":{"id":2151,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2150,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2152,"src":"407:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2149,"name":"address","nodeType":"ElementaryTypeName","src":"407:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"406:9:24"},"scope":2153,"src":"367:49:24","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":2154,"src":"162:256:24","usedErrors":[]}],"src":"45:374:24"},"id":24},"@uniswap/v3-periphery/contracts/interfaces/IPeripheryPayments.sol":{"ast":{"absolutePath":"@uniswap/v3-periphery/contracts/interfaces/IPeripheryPayments.sol","exportedSymbols":{"IPeripheryPayments":[2179]},"id":2180,"license":"GPL-2.0-or-later","nodeType":"SourceUnit","nodes":[{"id":2155,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"45:24:25"},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"interface","documentation":{"id":2156,"nodeType":"StructuredDocumentation","src":"71:92:25","text":"@title Periphery Payments\n @notice Functions to ease deposits and withdrawals of ETH"},"fullyImplemented":false,"id":2179,"linearizedBaseContracts":[2179],"name":"IPeripheryPayments","nameLocation":"173:18:25","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":2157,"nodeType":"StructuredDocumentation","src":"198:302:25","text":"@notice Unwraps the contract's WETH9 balance and sends it to recipient as ETH.\n @dev The amountMinimum parameter prevents malicious contracts from stealing WETH9 from users.\n @param amountMinimum The minimum amount of WETH9 to unwrap\n @param recipient The address receiving ETH"},"functionSelector":"49404b7c","id":2164,"implemented":false,"kind":"function","modifiers":[],"name":"unwrapWETH9","nameLocation":"514:11:25","nodeType":"FunctionDefinition","parameters":{"id":2162,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2159,"mutability":"mutable","name":"amountMinimum","nameLocation":"534:13:25","nodeType":"VariableDeclaration","scope":2164,"src":"526:21:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2158,"name":"uint256","nodeType":"ElementaryTypeName","src":"526:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2161,"mutability":"mutable","name":"recipient","nameLocation":"557:9:25","nodeType":"VariableDeclaration","scope":2164,"src":"549:17:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2160,"name":"address","nodeType":"ElementaryTypeName","src":"549:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"525:42:25"},"returnParameters":{"id":2163,"nodeType":"ParameterList","parameters":[],"src":"584:0:25"},"scope":2179,"src":"505:80:25","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":2165,"nodeType":"StructuredDocumentation","src":"591:225:25","text":"@notice Refunds any ETH balance held by this contract to the `msg.sender`\n @dev Useful for bundling with mint or increase liquidity that uses ether, or exact output swaps\n that use ether for the input amount"},"functionSelector":"12210e8a","id":2168,"implemented":false,"kind":"function","modifiers":[],"name":"refundETH","nameLocation":"830:9:25","nodeType":"FunctionDefinition","parameters":{"id":2166,"nodeType":"ParameterList","parameters":[],"src":"839:2:25"},"returnParameters":{"id":2167,"nodeType":"ParameterList","parameters":[],"src":"858:0:25"},"scope":2179,"src":"821:38:25","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":2169,"nodeType":"StructuredDocumentation","src":"865:427:25","text":"@notice Transfers the full amount of a token held by this contract to recipient\n @dev The amountMinimum parameter prevents malicious contracts from stealing the token from users\n @param token The contract address of the token which will be transferred to `recipient`\n @param amountMinimum The minimum amount of token required for a transfer\n @param recipient The destination address of the token"},"functionSelector":"df2ab5bb","id":2178,"implemented":false,"kind":"function","modifiers":[],"name":"sweepToken","nameLocation":"1306:10:25","nodeType":"FunctionDefinition","parameters":{"id":2176,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2171,"mutability":"mutable","name":"token","nameLocation":"1334:5:25","nodeType":"VariableDeclaration","scope":2178,"src":"1326:13:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2170,"name":"address","nodeType":"ElementaryTypeName","src":"1326:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2173,"mutability":"mutable","name":"amountMinimum","nameLocation":"1357:13:25","nodeType":"VariableDeclaration","scope":2178,"src":"1349:21:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2172,"name":"uint256","nodeType":"ElementaryTypeName","src":"1349:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2175,"mutability":"mutable","name":"recipient","nameLocation":"1388:9:25","nodeType":"VariableDeclaration","scope":2178,"src":"1380:17:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2174,"name":"address","nodeType":"ElementaryTypeName","src":"1380:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1316:87:25"},"returnParameters":{"id":2177,"nodeType":"ParameterList","parameters":[],"src":"1420:0:25"},"scope":2179,"src":"1297:124:25","stateMutability":"payable","virtual":false,"visibility":"external"}],"scope":2180,"src":"163:1260:25","usedErrors":[]}],"src":"45:1379:25"},"id":25},"@uniswap/v3-periphery/contracts/interfaces/IPoolInitializer.sol":{"ast":{"absolutePath":"@uniswap/v3-periphery/contracts/interfaces/IPoolInitializer.sol","exportedSymbols":{"IPoolInitializer":[2198]},"id":2199,"license":"GPL-2.0-or-later","nodeType":"SourceUnit","nodes":[{"id":2181,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"45:24:26"},{"id":2182,"literals":["abicoder","v2"],"nodeType":"PragmaDirective","src":"70:19:26"},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"interface","documentation":{"id":2183,"nodeType":"StructuredDocumentation","src":"91:194:26","text":"@title Creates and initializes V3 Pools\n @notice Provides a method for creating and initializing a pool, if necessary, for bundling with other methods that\n require the pool to exist."},"fullyImplemented":false,"id":2198,"linearizedBaseContracts":[2198],"name":"IPoolInitializer","nameLocation":"295:16:26","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":2184,"nodeType":"StructuredDocumentation","src":"318:648:26","text":"@notice Creates a new pool if it does not exist, then initializes if not initialized\n @dev This method can be bundled with others via IMulticall for the first action (e.g. mint) performed against a pool\n @param token0 The contract address of token0 of the pool\n @param token1 The contract address of token1 of the pool\n @param fee The fee amount of the v3 pool for the specified token pair\n @param sqrtPriceX96 The initial square root price of the pool as a Q64.96 value\n @return pool Returns the pool address based on the pair of tokens and fee, will return the newly created pool address if necessary"},"functionSelector":"13ead562","id":2197,"implemented":false,"kind":"function","modifiers":[],"name":"createAndInitializePoolIfNecessary","nameLocation":"980:34:26","nodeType":"FunctionDefinition","parameters":{"id":2193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2186,"mutability":"mutable","name":"token0","nameLocation":"1032:6:26","nodeType":"VariableDeclaration","scope":2197,"src":"1024:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2185,"name":"address","nodeType":"ElementaryTypeName","src":"1024:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2188,"mutability":"mutable","name":"token1","nameLocation":"1056:6:26","nodeType":"VariableDeclaration","scope":2197,"src":"1048:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2187,"name":"address","nodeType":"ElementaryTypeName","src":"1048:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2190,"mutability":"mutable","name":"fee","nameLocation":"1079:3:26","nodeType":"VariableDeclaration","scope":2197,"src":"1072:10:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":2189,"name":"uint24","nodeType":"ElementaryTypeName","src":"1072:6:26","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"},{"constant":false,"id":2192,"mutability":"mutable","name":"sqrtPriceX96","nameLocation":"1100:12:26","nodeType":"VariableDeclaration","scope":2197,"src":"1092:20:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":2191,"name":"uint160","nodeType":"ElementaryTypeName","src":"1092:7:26","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"1014:104:26"},"returnParameters":{"id":2196,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2195,"mutability":"mutable","name":"pool","nameLocation":"1153:4:26","nodeType":"VariableDeclaration","scope":2197,"src":"1145:12:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2194,"name":"address","nodeType":"ElementaryTypeName","src":"1145:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1144:14:26"},"scope":2198,"src":"971:188:26","stateMutability":"payable","virtual":false,"visibility":"external"}],"scope":2199,"src":"285:876:26","usedErrors":[]}],"src":"45:1117:26"},"id":26},"contracts/gauges/uniswapv3/BaseGaugeV3UniV3.sol":{"ast":{"absolutePath":"contracts/gauges/uniswapv3/BaseGaugeV3UniV3.sol","exportedSymbols":{"BaseGaugeV3UniV3":[2374],"IGovernorTimelock":[410],"INonfungiblePositionManager":[4091],"StakingRewardsV3":[3078],"UniswapV3Base":[3619]},"id":2375,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2200,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"32:23:27"},{"absolutePath":"@openzeppelin/contracts/governance/extensions/IGovernorTimelock.sol","file":"@openzeppelin/contracts/governance/extensions/IGovernorTimelock.sol","id":2202,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2375,"sourceUnit":411,"src":"57:102:27","symbolAliases":[{"foreign":{"id":2201,"name":"IGovernorTimelock","nodeType":"Identifier","overloadedDeclarations":[],"src":"65:17:27","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/INonfungiblePositionManager.sol","file":"../../interfaces/INonfungiblePositionManager.sol","id":2204,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2375,"sourceUnit":4092,"src":"160:93:27","symbolAliases":[{"foreign":{"id":2203,"name":"INonfungiblePositionManager","nodeType":"Identifier","overloadedDeclarations":[],"src":"168:27:27","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/gauges/uniswapv3/StakingRewardsV3.sol","file":"./StakingRewardsV3.sol","id":2207,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2375,"sourceUnit":3079,"src":"254:71:27","symbolAliases":[{"foreign":{"id":2205,"name":"UniswapV3Base","nodeType":"Identifier","overloadedDeclarations":[],"src":"262:13:27","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":2206,"name":"StakingRewardsV3","nodeType":"Identifier","overloadedDeclarations":[],"src":"277:16:27","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":2208,"name":"StakingRewardsV3","nodeType":"IdentifierPath","referencedDeclaration":3078,"src":"356:16:27"},"id":2209,"nodeType":"InheritanceSpecifier","src":"356:16:27"}],"contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":2374,"linearizedBaseContracts":[2374,3078,3619,3652,682,642],"name":"BaseGaugeV3UniV3","nameLocation":"336:16:27","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":2210,"nodeType":"StructuredDocumentation","src":"379:106:27","text":"@dev is the contract in emergency mode? if so then allow for NFTs to be withdrawn without much checks."},"functionSelector":"9be54945","id":2212,"mutability":"mutable","name":"inEmergency","nameLocation":"502:11:27","nodeType":"VariableDeclaration","scope":2374,"src":"490:23:27","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2211,"name":"bool","nodeType":"ElementaryTypeName","src":"490:4:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"public"},{"body":{"id":2239,"nodeType":"Block","src":"668:153:27","statements":[{"expression":{"arguments":[{"id":2226,"name":"inEmergency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2212,"src":"686:11:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6e6f7420696e20656d657267656e6379206d6f6465","id":2227,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"699:23:27","typeDescriptions":{"typeIdentifier":"t_stringliteral_df5ccee6bec62de6a91a7261842116168780a7dde172cbff918d08ca37634eae","typeString":"literal_string \"not in emergency mode\""},"value":"not in emergency mode"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_df5ccee6bec62de6a91a7261842116168780a7dde172cbff918d08ca37634eae","typeString":"literal_string \"not in emergency mode\""}],"id":2225,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"678:7:27","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2228,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"678:45:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2229,"nodeType":"ExpressionStatement","src":"678:45:27"},{"expression":{"arguments":[{"id":2231,"name":"_from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2216,"src":"751:5:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2232,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2218,"src":"758:8:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2230,"name":"_onERC721Received","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2794,"src":"733:17:27","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2233,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"733:34:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2234,"nodeType":"ExpressionStatement","src":"733:34:27"},{"expression":{"expression":{"expression":{"id":2235,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"784:4:27","typeDescriptions":{"typeIdentifier":"t_contract$_BaseGaugeV3UniV3_$2374","typeString":"contract BaseGaugeV3UniV3"}},"id":2236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"onERC721Received","nodeType":"MemberAccess","referencedDeclaration":2240,"src":"784:21:27","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function (address,address,uint256,bytes memory) external returns (bytes4)"}},"id":2237,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberName":"selector","nodeType":"MemberAccess","src":"784:30:27","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":2224,"id":2238,"nodeType":"Return","src":"777:37:27"}]},"functionSelector":"150b7a02","id":2240,"implemented":true,"kind":"function","modifiers":[],"name":"onERC721Received","nameLocation":"529:16:27","nodeType":"FunctionDefinition","parameters":{"id":2221,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2214,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2240,"src":"555:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2213,"name":"address","nodeType":"ElementaryTypeName","src":"555:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2216,"mutability":"mutable","name":"_from","nameLocation":"580:5:27","nodeType":"VariableDeclaration","scope":2240,"src":"572:13:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2215,"name":"address","nodeType":"ElementaryTypeName","src":"572:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2218,"mutability":"mutable","name":"_tokenId","nameLocation":"603:8:27","nodeType":"VariableDeclaration","scope":2240,"src":"595:16:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2217,"name":"uint256","nodeType":"ElementaryTypeName","src":"595:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2220,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2240,"src":"621:14:27","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":2219,"name":"bytes","nodeType":"ElementaryTypeName","src":"621:5:27","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"545:96:27"},"returnParameters":{"id":2224,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2223,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2240,"src":"660:6:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":2222,"name":"bytes4","nodeType":"ElementaryTypeName","src":"660:6:27","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"659:8:27"},"scope":2374,"src":"520:301:27","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2288,"nodeType":"Block","src":"948:353:27","statements":[{"expression":{"arguments":[{"id":2251,"name":"inEmergency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2212,"src":"966:11:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6e6f7420696e20656d657267656e6379206d6f6465","id":2252,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"979:23:27","typeDescriptions":{"typeIdentifier":"t_stringliteral_df5ccee6bec62de6a91a7261842116168780a7dde172cbff918d08ca37634eae","typeString":"literal_string \"not in emergency mode\""},"value":"not in emergency mode"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_df5ccee6bec62de6a91a7261842116168780a7dde172cbff918d08ca37634eae","typeString":"literal_string \"not in emergency mode\""}],"id":2250,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"958:7:27","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2253,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"958:45:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2254,"nodeType":"ExpressionStatement","src":"958:45:27"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":2261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2256,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"1021:8:27","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit storage ref)"}},"id":2258,"indexExpression":{"id":2257,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2242,"src":"1030:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1021:17:27","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage","typeString":"struct UniswapV3Base.Deposit storage ref"}},"id":2259,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberName":"liquidity","nodeType":"MemberAccess","referencedDeclaration":3114,"src":"1021:27:27","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":2260,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1052:1:27","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1021:32:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"7374616b6520646f6573206e6f74206578697374","id":2262,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1055:22:27","typeDescriptions":{"typeIdentifier":"t_stringliteral_b053777096494c68d763d5980fe57eef5a024316a3cb689ed805fab926222805","typeString":"literal_string \"stake does not exist\""},"value":"stake does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b053777096494c68d763d5980fe57eef5a024316a3cb689ed805fab926222805","typeString":"literal_string \"stake does not exist\""}],"id":2255,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1013:7:27","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2263,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1013:65:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2264,"nodeType":"ExpressionStatement","src":"1013:65:27"},{"expression":{"id":2268,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"1089:24:27","subExpression":{"baseExpression":{"id":2265,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"1096:8:27","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit storage ref)"}},"id":2267,"indexExpression":{"id":2266,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2242,"src":"1105:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1096:17:27","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage","typeString":"struct UniswapV3Base.Deposit storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2269,"nodeType":"ExpressionStatement","src":"1089:24:27"},{"eventCall":{"arguments":[{"expression":{"id":2271,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1138:3:27","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2272,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sender","nodeType":"MemberAccess","src":"1138:10:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2273,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2242,"src":"1150:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2270,"name":"Withdrawn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3602,"src":"1128:9:27","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1128:30:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2275,"nodeType":"EmitStatement","src":"1123:35:27"},{"expression":{"arguments":[{"arguments":[{"id":2281,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1234:4:27","typeDescriptions":{"typeIdentifier":"t_contract$_BaseGaugeV3UniV3_$2374","typeString":"contract BaseGaugeV3UniV3"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_BaseGaugeV3UniV3_$2374","typeString":"contract BaseGaugeV3UniV3"}],"id":2280,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1226:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2279,"name":"address","nodeType":"ElementaryTypeName","src":"1226:7:27","typeDescriptions":{}}},"id":2282,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1226:13:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":2283,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1253:3:27","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2284,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sender","nodeType":"MemberAccess","src":"1253:10:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2285,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2242,"src":"1277:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2276,"name":"nonfungiblePositionManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3165,"src":"1169:26:27","typeDescriptions":{"typeIdentifier":"t_contract$_INonfungiblePositionManager_$4091","typeString":"contract INonfungiblePositionManager"}},"id":2278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":831,"src":"1169:43:27","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256) external"}},"id":2286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1169:125:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2287,"nodeType":"ExpressionStatement","src":"1169:125:27"}]},"functionSelector":"8a16a30b","id":2289,"implemented":true,"kind":"function","modifiers":[{"id":2245,"kind":"modifierInvocation","modifierName":{"id":2244,"name":"nonReentrant","nodeType":"IdentifierPath","referencedDeclaration":681,"src":"899:12:27"},"nodeType":"ModifierInvocation","src":"899:12:27"},{"arguments":[{"id":2247,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2242,"src":"935:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2248,"kind":"modifierInvocation","modifierName":{"id":2246,"name":"onlyTokenOwner","nodeType":"IdentifierPath","referencedDeclaration":3582,"src":"920:14:27"},"nodeType":"ModifierInvocation","src":"920:23:27"}],"name":"withdrawViaEmergency","nameLocation":"836:20:27","nodeType":"FunctionDefinition","parameters":{"id":2243,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2242,"mutability":"mutable","name":"tokenId","nameLocation":"865:7:27","nodeType":"VariableDeclaration","scope":2289,"src":"857:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2241,"name":"uint256","nodeType":"ElementaryTypeName","src":"857:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"856:17:27"},"returnParameters":{"id":2249,"nodeType":"ParameterList","parameters":[],"src":"948:0:27"},"scope":2374,"src":"827:474:27","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2321,"nodeType":"Block","src":"1360:249:27","statements":[{"expression":{"arguments":[{"id":2296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"1378:12:27","subExpression":{"id":2295,"name":"inEmergency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2212,"src":"1379:11:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"616c726561647920696e20656d657267656e6379206d6f6465","id":2297,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1392:27:27","typeDescriptions":{"typeIdentifier":"t_stringliteral_001c2f91d7f5b9f826ee8d160ab1223b43e8f4bdecc5987100aba307290ca66d","typeString":"literal_string \"already in emergency mode\""},"value":"already in emergency mode"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_001c2f91d7f5b9f826ee8d160ab1223b43e8f4bdecc5987100aba307290ca66d","typeString":"literal_string \"already in emergency mode\""}],"id":2294,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1370:7:27","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2298,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1370:50:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2299,"nodeType":"ExpressionStatement","src":"1370:50:27"},{"expression":{"id":2302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2300,"name":"inEmergency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2212,"src":"1430:11:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2301,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1444:4:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"1430:18:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2303,"nodeType":"ExpressionStatement","src":"1430:18:27"},{"expression":{"arguments":[{"expression":{"id":2307,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1493:3:27","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2308,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sender","nodeType":"MemberAccess","src":"1493:10:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"arguments":[{"id":2313,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1548:4:27","typeDescriptions":{"typeIdentifier":"t_contract$_BaseGaugeV3UniV3_$2374","typeString":"contract BaseGaugeV3UniV3"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_BaseGaugeV3UniV3_$2374","typeString":"contract BaseGaugeV3UniV3"}],"id":2312,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1540:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2311,"name":"address","nodeType":"ElementaryTypeName","src":"1540:7:27","typeDescriptions":{}}},"id":2314,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1540:13:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":2309,"name":"rewardsToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3124,"src":"1517:12:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$760","typeString":"contract IERC20"}},"id":2310,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":717,"src":"1517:22:27","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":2315,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1517:37:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2304,"name":"rewardsToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3124,"src":"1458:12:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$760","typeString":"contract IERC20"}},"id":2306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":727,"src":"1458:21:27","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2316,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1458:106:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2317,"nodeType":"ExpressionStatement","src":"1458:106:27"},{"eventCall":{"arguments":[],"expression":{"argumentTypes":[],"id":2318,"name":"EmergencyModeEnabled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3618,"src":"1580:20:27","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$__$returns$__$","typeString":"function ()"}},"id":2319,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1580:22:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2320,"nodeType":"EmitStatement","src":"1575:27:27"}]},"functionSelector":"c5b1c7d0","id":2322,"implemented":true,"kind":"function","modifiers":[{"id":2292,"kind":"modifierInvocation","modifierName":{"id":2291,"name":"onlyTimelock","nodeType":"IdentifierPath","referencedDeclaration":2373,"src":"1347:12:27"},"nodeType":"ModifierInvocation","src":"1347:12:27"}],"name":"enableEmergencyMode","nameLocation":"1316:19:27","nodeType":"FunctionDefinition","parameters":{"id":2290,"nodeType":"ParameterList","parameters":[],"src":"1335:2:27"},"returnParameters":{"id":2293,"nodeType":"ParameterList","parameters":[],"src":"1360:0:27"},"scope":2374,"src":"1307:302:27","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2354,"nodeType":"Block","src":"1784:178:27","statements":[{"expression":{"arguments":[{"id":2333,"name":"inEmergency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2212,"src":"1802:11:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6e6f7420696e20656d657267656e6379206d6f6465","id":2334,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1815:23:27","typeDescriptions":{"typeIdentifier":"t_stringliteral_df5ccee6bec62de6a91a7261842116168780a7dde172cbff918d08ca37634eae","typeString":"literal_string \"not in emergency mode\""},"value":"not in emergency mode"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_df5ccee6bec62de6a91a7261842116168780a7dde172cbff918d08ca37634eae","typeString":"literal_string \"not in emergency mode\""}],"id":2332,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1794:7:27","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2335,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1794:45:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2336,"nodeType":"ExpressionStatement","src":"1794:45:27"},{"assignments":[2338,2340],"declarations":[{"constant":false,"id":2338,"mutability":"mutable","name":"success","nameLocation":"1855:7:27","nodeType":"VariableDeclaration","scope":2354,"src":"1850:12:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2337,"name":"bool","nodeType":"ElementaryTypeName","src":"1850:4:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2340,"mutability":"mutable","name":"response","nameLocation":"1877:8:27","nodeType":"VariableDeclaration","scope":2354,"src":"1864:21:27","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2339,"name":"bytes","nodeType":"ElementaryTypeName","src":"1864:5:27","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2345,"initialValue":{"arguments":[{"id":2343,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2327,"src":"1901:9:27","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":2341,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2325,"src":"1889:6:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2342,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"call","nodeType":"MemberAccess","src":"1889:11:27","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":2344,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1889:22:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"1849:62:27"},{"expression":{"arguments":[{"id":2347,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2338,"src":"1929:7:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":2350,"name":"response","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2340,"src":"1945:8:27","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2349,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1938:6:27","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":2348,"name":"string","nodeType":"ElementaryTypeName","src":"1938:6:27","typeDescriptions":{}}},"id":2351,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1938:16:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2346,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1921:7:27","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2352,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1921:34:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2353,"nodeType":"ExpressionStatement","src":"1921:34:27"}]},"documentation":{"id":2323,"nodeType":"StructuredDocumentation","src":"1615:59:27","text":"@dev in case admin needs to execute some calls directly"},"functionSelector":"c4bf0220","id":2355,"implemented":true,"kind":"function","modifiers":[{"id":2330,"kind":"modifierInvocation","modifierName":{"id":2329,"name":"onlyTimelock","nodeType":"IdentifierPath","referencedDeclaration":2373,"src":"1767:12:27"},"nodeType":"ModifierInvocation","src":"1767:12:27"}],"name":"emergencyCall","nameLocation":"1688:13:27","nodeType":"FunctionDefinition","parameters":{"id":2328,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2325,"mutability":"mutable","name":"target","nameLocation":"1710:6:27","nodeType":"VariableDeclaration","scope":2355,"src":"1702:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2324,"name":"address","nodeType":"ElementaryTypeName","src":"1702:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2327,"mutability":"mutable","name":"signature","nameLocation":"1731:9:27","nodeType":"VariableDeclaration","scope":2355,"src":"1718:22:27","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2326,"name":"bytes","nodeType":"ElementaryTypeName","src":"1718:5:27","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1701:40:27"},"returnParameters":{"id":2331,"nodeType":"ParameterList","parameters":[],"src":"1784:0:27"},"scope":2374,"src":"1679:283:27","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2372,"nodeType":"Block","src":"1992:150:27","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2358,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2023:3:27","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sender","nodeType":"MemberAccess","src":"2023:10:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":2361,"name":"registry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3121,"src":"2055:8:27","typeDescriptions":{"typeIdentifier":"t_contract$_IRegistry_$4222","typeString":"contract IRegistry"}},"id":2362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"governor","nodeType":"MemberAccess","referencedDeclaration":4175,"src":"2055:17:27","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":2363,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"2055:19:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2360,"name":"IGovernorTimelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":410,"src":"2037:17:27","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IGovernorTimelock_$410_$","typeString":"type(contract IGovernorTimelock)"}},"id":2364,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"2037:38:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IGovernorTimelock_$410","typeString":"contract IGovernorTimelock"}},"id":2365,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"timelock","nodeType":"MemberAccess","referencedDeclaration":386,"src":"2037:47:27","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":2366,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"2037:49:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2023:63:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6e6f742074696d656c6f636b","id":2368,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2100:14:27","typeDescriptions":{"typeIdentifier":"t_stringliteral_9cc68d25774760b7dce2e9971365bd17252e55dfa1873462c3da5524c9895468","typeString":"literal_string \"not timelock\""},"value":"not timelock"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9cc68d25774760b7dce2e9971365bd17252e55dfa1873462c3da5524c9895468","typeString":"literal_string \"not timelock\""}],"id":2357,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2002:7:27","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2369,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"2002:122:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2370,"nodeType":"ExpressionStatement","src":"2002:122:27"},{"id":2371,"nodeType":"PlaceholderStatement","src":"2134:1:27"}]},"id":2373,"name":"onlyTimelock","nameLocation":"1977:12:27","nodeType":"ModifierDefinition","parameters":{"id":2356,"nodeType":"ParameterList","parameters":[],"src":"1989:2:27"},"src":"1968:174:27","virtual":false,"visibility":"internal"}],"scope":2375,"src":"327:1817:27","usedErrors":[]}],"src":"32:2113:27"},"id":27},"contracts/gauges/uniswapv3/StakingRewardsV3.sol":{"ast":{"absolutePath":"contracts/gauges/uniswapv3/StakingRewardsV3.sol","exportedSymbols":{"IGauge":[3652],"IGaugeVoterV2":[3793],"INFTStaker":[3892],"IUniswapV3Pool":[1682],"NFTPositionInfo":[4287],"ReentrancyGuard":[682],"SafeMath":[1577],"StakingRewardsV3":[3078],"UniswapV3Base":[3619]},"id":3079,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2376,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"32:23:28"},{"absolutePath":"@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol","file":"@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol","id":2378,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3079,"sourceUnit":1683,"src":"57:88:28","symbolAliases":[{"foreign":{"id":2377,"name":"IUniswapV3Pool","nodeType":"Identifier","overloadedDeclarations":[],"src":"65:14:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/security/ReentrancyGuard.sol","file":"@openzeppelin/contracts/security/ReentrancyGuard.sol","id":2380,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3079,"sourceUnit":683,"src":"146:85:28","symbolAliases":[{"foreign":{"id":2379,"name":"ReentrancyGuard","nodeType":"Identifier","overloadedDeclarations":[],"src":"154:15:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeMath.sol","file":"@openzeppelin/contracts/utils/math/SafeMath.sol","id":2382,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3079,"sourceUnit":1578,"src":"232:73:28","symbolAliases":[{"foreign":{"id":2381,"name":"SafeMath","nodeType":"Identifier","overloadedDeclarations":[],"src":"240:8:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/utils/NFTPositionInfo.sol","file":"../../utils/NFTPositionInfo.sol","id":2384,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3079,"sourceUnit":4288,"src":"307:64:28","symbolAliases":[{"foreign":{"id":2383,"name":"NFTPositionInfo","nodeType":"Identifier","overloadedDeclarations":[],"src":"315:15:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IGaugeVoterV2.sol","file":"../../interfaces/IGaugeVoterV2.sol","id":2386,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3079,"sourceUnit":3794,"src":"372:65:28","symbolAliases":[{"foreign":{"id":2385,"name":"IGaugeVoterV2","nodeType":"Identifier","overloadedDeclarations":[],"src":"380:13:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IGauge.sol","file":"../../interfaces/IGauge.sol","id":2388,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3079,"sourceUnit":3653,"src":"438:51:28","symbolAliases":[{"foreign":{"id":2387,"name":"IGauge","nodeType":"Identifier","overloadedDeclarations":[],"src":"446:6:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/gauges/uniswapv3/UniswapV3Base.sol","file":"./UniswapV3Base.sol","id":2390,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3079,"sourceUnit":3620,"src":"490:50:28","symbolAliases":[{"foreign":{"id":2389,"name":"UniswapV3Base","nodeType":"Identifier","overloadedDeclarations":[],"src":"498:13:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/INFTStaker.sol","file":"../../interfaces/INFTStaker.sol","id":2392,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3079,"sourceUnit":3893,"src":"541:59:28","symbolAliases":[{"foreign":{"id":2391,"name":"INFTStaker","nodeType":"Identifier","overloadedDeclarations":[],"src":"549:10:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":2393,"name":"UniswapV3Base","nodeType":"IdentifierPath","referencedDeclaration":3619,"src":"640:13:28"},"id":2394,"nodeType":"InheritanceSpecifier","src":"640:13:28"}],"contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":3078,"linearizedBaseContracts":[3078,3619,3652,682,642],"name":"StakingRewardsV3","nameLocation":"620:16:28","nodeType":"ContractDefinition","nodes":[{"id":2397,"libraryName":{"id":2395,"name":"SafeMath","nodeType":"IdentifierPath","referencedDeclaration":1577,"src":"666:8:28"},"nodeType":"UsingForDirective","src":"660:27:28","typeName":{"id":2396,"name":"uint256","nodeType":"ElementaryTypeName","src":"679:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"id":2400,"libraryName":{"id":2398,"name":"SafeMath","nodeType":"IdentifierPath","referencedDeclaration":1577,"src":"698:8:28"},"nodeType":"UsingForDirective","src":"692:27:28","typeName":{"id":2399,"name":"uint128","nodeType":"ElementaryTypeName","src":"711:7:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}},{"body":{"id":2460,"nodeType":"Block","src":"846:446:28","statements":[{"assignments":[2410],"declarations":[{"constant":false,"id":2410,"mutability":"mutable","name":"_derived","nameLocation":"864:8:28","nodeType":"VariableDeclaration","scope":2460,"src":"856:16:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2409,"name":"uint128","nodeType":"ElementaryTypeName","src":"856:7:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":2417,"initialValue":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":2416,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":2413,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2411,"name":"_liquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2402,"src":"876:10:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3230","id":2412,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"889:2:28","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"src":"876:15:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"id":2414,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"875:17:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"313030","id":2415,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"895:3:28","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"875:23:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"856:42:28"},{"assignments":[2419],"declarations":[{"constant":false,"id":2419,"mutability":"mutable","name":"stake","nameLocation":"916:5:28","nodeType":"VariableDeclaration","scope":2460,"src":"908:13:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2418,"name":"uint256","nodeType":"ElementaryTypeName","src":"908:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2428,"initialValue":{"arguments":[{"id":2426,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2404,"src":"964:7:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":2421,"name":"registry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3121,"src":"935:8:28","typeDescriptions":{"typeIdentifier":"t_contract$_IRegistry_$4222","typeString":"contract IRegistry"}},"id":2422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"staker","nodeType":"MemberAccess","referencedDeclaration":4165,"src":"935:15:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":2423,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"935:17:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2420,"name":"INFTStaker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3892,"src":"924:10:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_INFTStaker_$3892_$","typeString":"type(contract INFTStaker)"}},"id":2424,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"924:29:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_INFTStaker_$3892","typeString":"contract INFTStaker"}},"id":2425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":3836,"src":"924:39:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":2427,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"924:48:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"908:64:28"},{"assignments":[2430],"declarations":[{"constant":false,"id":2430,"mutability":"mutable","name":"_adjusted","nameLocation":"991:9:28","nodeType":"VariableDeclaration","scope":2460,"src":"983:17:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2429,"name":"uint128","nodeType":"ElementaryTypeName","src":"983:7:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":2448,"initialValue":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":2447,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":2444,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":2438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":2436,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2431,"name":"_liquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2402,"src":"1005:10:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":2434,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2419,"src":"1026:5:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2433,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1018:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":2432,"name":"uint128","nodeType":"ElementaryTypeName","src":"1018:7:28","typeDescriptions":{}}},"id":2435,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1018:14:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"1005:27:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3830","id":2437,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1035:2:28","typeDescriptions":{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},"value":"80"},"src":"1005:32:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"id":2439,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1004:34:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"arguments":[{"id":2442,"name":"maxBoostRequirement","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3140,"src":"1061:19:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2441,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1053:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":2440,"name":"uint128","nodeType":"ElementaryTypeName","src":"1053:7:28","typeDescriptions":{}}},"id":2443,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1053:28:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"1004:77:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"id":2445,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1003:79:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"313030","id":2446,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1085:3:28","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"1003:85:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"983:105:28"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":2453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":2451,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2449,"name":"_derived","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2410,"src":"1184:8:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":2450,"name":"_adjusted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2430,"src":"1195:9:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"1184:20:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2452,"name":"_liquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2402,"src":"1207:10:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"1184:33:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":2457,"name":"_liquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2402,"src":"1275:10:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":2458,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1184:101:28","trueExpression":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":2456,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2454,"name":"_derived","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2410,"src":"1236:8:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":2455,"name":"_adjusted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2430,"src":"1247:9:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"1236:20:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":2408,"id":2459,"nodeType":"Return","src":"1165:120:28"}]},"functionSelector":"c4cfbf06","id":2461,"implemented":true,"kind":"function","modifiers":[],"name":"derivedLiquidity","nameLocation":"734:16:28","nodeType":"FunctionDefinition","parameters":{"id":2405,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2402,"mutability":"mutable","name":"_liquidity","nameLocation":"759:10:28","nodeType":"VariableDeclaration","scope":2461,"src":"751:18:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2401,"name":"uint128","nodeType":"ElementaryTypeName","src":"751:7:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":2404,"mutability":"mutable","name":"account","nameLocation":"779:7:28","nodeType":"VariableDeclaration","scope":2461,"src":"771:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2403,"name":"address","nodeType":"ElementaryTypeName","src":"771:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"750:37:28"},"returnParameters":{"id":2408,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2407,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2461,"src":"833:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2406,"name":"uint128","nodeType":"ElementaryTypeName","src":"833:7:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"832:9:28"},"scope":3078,"src":"725:567:28","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2564,"nodeType":"Block","src":"1487:799:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":2480,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2475,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"1505:8:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit storage ref)"}},"id":2477,"indexExpression":{"id":2476,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2463,"src":"1514:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1505:17:28","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage","typeString":"struct UniswapV3Base.Deposit storage ref"}},"id":2478,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberName":"liquidity","nodeType":"MemberAccess","referencedDeclaration":3114,"src":"1505:27:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2479,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1535:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1505:31:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"43616e6e6f742077697468647261772030","id":2481,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1538:19:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_8d85b8e7f4404d04d93e8d532ad219ceeba0becfbc18622bad46b31e08b1f0b0","typeString":"literal_string \"Cannot withdraw 0\""},"value":"Cannot withdraw 0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8d85b8e7f4404d04d93e8d532ad219ceeba0becfbc18622bad46b31e08b1f0b0","typeString":"literal_string \"Cannot withdraw 0\""}],"id":2474,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1497:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2482,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1497:61:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2483,"nodeType":"ExpressionStatement","src":"1497:61:28"},{"expression":{"id":2492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2484,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3146,"src":"1569:11:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"baseExpression":{"id":2487,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"1599:8:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit storage ref)"}},"id":2489,"indexExpression":{"id":2488,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2463,"src":"1608:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1599:17:28","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage","typeString":"struct UniswapV3Base.Deposit storage ref"}},"id":2490,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberName":"derivedLiquidity","nodeType":"MemberAccess","referencedDeclaration":3116,"src":"1599:34:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"expression":{"id":2485,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3146,"src":"1583:11:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2486,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sub","nodeType":"MemberAccess","referencedDeclaration":1456,"src":"1583:15:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":2491,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1583:51:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1569:65:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2493,"nodeType":"ExpressionStatement","src":"1569:65:28"},{"expression":{"id":2497,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"1644:24:28","subExpression":{"baseExpression":{"id":2494,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"1651:8:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit storage ref)"}},"id":2496,"indexExpression":{"id":2495,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2463,"src":"1660:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1651:17:28","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage","typeString":"struct UniswapV3Base.Deposit storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2498,"nodeType":"ExpressionStatement","src":"1644:24:28"},{"expression":{"arguments":[{"expression":{"id":2500,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1753:3:28","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sender","nodeType":"MemberAccess","src":"1753:10:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2502,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2463,"src":"1765:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2499,"name":"_removeTokenFromOwnerEnumeration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3517,"src":"1720:32:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2503,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1720:53:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2504,"nodeType":"ExpressionStatement","src":"1720:53:28"},{"expression":{"arguments":[{"id":2506,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2463,"src":"1820:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2505,"name":"_removeTokenFromAllTokensEnumeration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3565,"src":"1783:36:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":2507,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1783:45:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2508,"nodeType":"ExpressionStatement","src":"1783:45:28"},{"expression":{"id":2514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2509,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"1838:9:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2512,"indexExpression":{"expression":{"id":2510,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1848:3:28","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sender","nodeType":"MemberAccess","src":"1848:10:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1838:21:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"31","id":2513,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1863:1:28","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1838:26:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2515,"nodeType":"ExpressionStatement","src":"1838:26:28"},{"expression":{"arguments":[{"arguments":[{"id":2521,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1940:4:28","typeDescriptions":{"typeIdentifier":"t_contract$_StakingRewardsV3_$3078","typeString":"contract StakingRewardsV3"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_StakingRewardsV3_$3078","typeString":"contract StakingRewardsV3"}],"id":2520,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1932:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2519,"name":"address","nodeType":"ElementaryTypeName","src":"1932:7:28","typeDescriptions":{}}},"id":2522,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1932:13:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":2523,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1959:3:28","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sender","nodeType":"MemberAccess","src":"1959:10:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2525,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2463,"src":"1983:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2516,"name":"nonfungiblePositionManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3165,"src":"1875:26:28","typeDescriptions":{"typeIdentifier":"t_contract$_INonfungiblePositionManager_$4091","typeString":"contract INonfungiblePositionManager"}},"id":2518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":831,"src":"1875:43:28","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256) external"}},"id":2526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1875:125:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2527,"nodeType":"ExpressionStatement","src":"1875:125:28"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2538,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2533,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":2528,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"2015:9:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2531,"indexExpression":{"expression":{"id":2529,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2025:3:28","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2530,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sender","nodeType":"MemberAccess","src":"2025:10:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2015:21:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2532,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2040:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2015:26:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"baseExpression":{"id":2534,"name":"attached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3200,"src":"2045:8:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":2537,"indexExpression":{"expression":{"id":2535,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2054:3:28","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sender","nodeType":"MemberAccess","src":"2054:10:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2045:20:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2015:50:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2557,"nodeType":"IfStatement","src":"2011:223:28","trueBody":{"id":2556,"nodeType":"Block","src":"2067:167:28","statements":[{"expression":{"id":2544,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2539,"name":"attached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3200,"src":"2081:8:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":2542,"indexExpression":{"expression":{"id":2540,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2090:3:28","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sender","nodeType":"MemberAccess","src":"2090:10:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2081:20:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":2543,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2104:5:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"2081:28:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2545,"nodeType":"ExpressionStatement","src":"2081:28:28"},{"expression":{"arguments":[{"expression":{"id":2552,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2199:3:28","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sender","nodeType":"MemberAccess","src":"2199:10:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":2547,"name":"registry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3121,"src":"2137:8:28","typeDescriptions":{"typeIdentifier":"t_contract$_IRegistry_$4222","typeString":"contract IRegistry"}},"id":2548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"gaugeVoter","nodeType":"MemberAccess","referencedDeclaration":4155,"src":"2137:19:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":2549,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"2137:21:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2546,"name":"IGaugeVoterV2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3793,"src":"2123:13:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IGaugeVoterV2_$3793_$","typeString":"type(contract IGaugeVoterV2)"}},"id":2550,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"2123:36:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IGaugeVoterV2_$3793","typeString":"contract IGaugeVoterV2"}},"id":2551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"detachStakerFromGauge","nodeType":"MemberAccess","referencedDeclaration":3666,"src":"2123:58:28","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$returns$__$","typeString":"function (address) external"}},"id":2554,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"2123:100:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2555,"nodeType":"ExpressionStatement","src":"2123:100:28"}]}},{"eventCall":{"arguments":[{"expression":{"id":2559,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2259:3:28","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2560,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sender","nodeType":"MemberAccess","src":"2259:10:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2561,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2463,"src":"2271:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2558,"name":"Withdrawn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3602,"src":"2249:9:28","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2562,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"2249:30:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2563,"nodeType":"EmitStatement","src":"2244:35:28"}]},"functionSelector":"2e1a7d4d","id":2565,"implemented":true,"kind":"function","modifiers":[{"id":2466,"kind":"modifierInvocation","modifierName":{"id":2465,"name":"nonReentrant","nodeType":"IdentifierPath","referencedDeclaration":681,"src":"1408:12:28"},"nodeType":"ModifierInvocation","src":"1408:12:28"},{"arguments":[{"id":2468,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2463,"src":"1442:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2469,"kind":"modifierInvocation","modifierName":{"id":2467,"name":"updateReward","nodeType":"IdentifierPath","referencedDeclaration":3057,"src":"1429:12:28"},"nodeType":"ModifierInvocation","src":"1429:21:28"},{"arguments":[{"id":2471,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2463,"src":"1474:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2472,"kind":"modifierInvocation","modifierName":{"id":2470,"name":"onlyTokenOwner","nodeType":"IdentifierPath","referencedDeclaration":3582,"src":"1459:14:28"},"nodeType":"ModifierInvocation","src":"1459:23:28"}],"name":"withdraw","nameLocation":"1359:8:28","nodeType":"FunctionDefinition","parameters":{"id":2464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2463,"mutability":"mutable","name":"tokenId","nameLocation":"1376:7:28","nodeType":"VariableDeclaration","scope":2565,"src":"1368:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2462,"name":"uint256","nodeType":"ElementaryTypeName","src":"1368:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1367:17:28"},"returnParameters":{"id":2473,"nodeType":"ParameterList","parameters":[],"src":"1487:0:28"},"scope":3078,"src":"1350:936:28","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":2614,"nodeType":"Block","src":"2433:264:28","statements":[{"assignments":[2579],"declarations":[{"constant":false,"id":2579,"mutability":"mutable","name":"reward","nameLocation":"2451:6:28","nodeType":"VariableDeclaration","scope":2614,"src":"2443:14:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2578,"name":"uint256","nodeType":"ElementaryTypeName","src":"2443:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2583,"initialValue":{"baseExpression":{"id":2580,"name":"rewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3157,"src":"2460:7:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":2582,"indexExpression":{"id":2581,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2567,"src":"2468:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2460:17:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2443:34:28"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2586,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2584,"name":"reward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2579,"src":"2491:6:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2585,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2500:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2491:10:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2613,"nodeType":"IfStatement","src":"2487:204:28","trueBody":{"id":2612,"nodeType":"Block","src":"2503:188:28","statements":[{"expression":{"id":2591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2587,"name":"rewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3157,"src":"2517:7:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":2589,"indexExpression":{"id":2588,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2567,"src":"2525:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2517:17:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":2590,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2537:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2517:21:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2592,"nodeType":"ExpressionStatement","src":"2517:21:28"},{"expression":{"arguments":[{"expression":{"baseExpression":{"id":2596,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"2574:8:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit storage ref)"}},"id":2598,"indexExpression":{"id":2597,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2567,"src":"2583:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2574:18:28","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage","typeString":"struct UniswapV3Base.Deposit storage ref"}},"id":2599,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberName":"owner","nodeType":"MemberAccess","referencedDeclaration":3112,"src":"2574:24:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2600,"name":"reward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2579,"src":"2600:6:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2593,"name":"rewardsToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3124,"src":"2552:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$760","typeString":"contract IERC20"}},"id":2595,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":727,"src":"2552:21:28","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2601,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"2552:55:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2602,"nodeType":"ExpressionStatement","src":"2552:55:28"},{"eventCall":{"arguments":[{"expression":{"baseExpression":{"id":2604,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"2637:8:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit storage ref)"}},"id":2606,"indexExpression":{"id":2605,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2567,"src":"2646:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2637:18:28","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage","typeString":"struct UniswapV3Base.Deposit storage ref"}},"id":2607,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberName":"owner","nodeType":"MemberAccess","referencedDeclaration":3112,"src":"2637:24:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2608,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2567,"src":"2663:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2609,"name":"reward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2579,"src":"2673:6:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2603,"name":"RewardPaid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3610,"src":"2626:10:28","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":2610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"2626:54:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2611,"nodeType":"EmitStatement","src":"2621:59:28"}]}}]},"functionSelector":"1c4b774b","id":2615,"implemented":true,"kind":"function","modifiers":[{"id":2570,"kind":"modifierInvocation","modifierName":{"id":2569,"name":"nonReentrant","nodeType":"IdentifierPath","referencedDeclaration":681,"src":"2352:12:28"},"nodeType":"ModifierInvocation","src":"2352:12:28"},{"arguments":[{"id":2572,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2567,"src":"2386:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2573,"kind":"modifierInvocation","modifierName":{"id":2571,"name":"updateReward","nodeType":"IdentifierPath","referencedDeclaration":3057,"src":"2373:12:28"},"nodeType":"ModifierInvocation","src":"2373:22:28"},{"arguments":[{"id":2575,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2567,"src":"2419:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2576,"kind":"modifierInvocation","modifierName":{"id":2574,"name":"onlyTokenOwner","nodeType":"IdentifierPath","referencedDeclaration":3582,"src":"2404:14:28"},"nodeType":"ModifierInvocation","src":"2404:24:28"}],"name":"getReward","nameLocation":"2301:9:28","nodeType":"FunctionDefinition","parameters":{"id":2568,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2567,"mutability":"mutable","name":"_tokenId","nameLocation":"2319:8:28","nodeType":"VariableDeclaration","scope":2615,"src":"2311:16:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2566,"name":"uint256","nodeType":"ElementaryTypeName","src":"2311:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2310:18:28"},"returnParameters":{"id":2577,"nodeType":"ParameterList","parameters":[],"src":"2433:0:28"},"scope":3078,"src":"2292:405:28","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[3638],"body":{"id":2652,"nodeType":"Block","src":"2816:180:28","statements":[{"body":{"id":2650,"nodeType":"Block","src":"2887:103:28","statements":[{"assignments":[2639],"declarations":[{"constant":false,"id":2639,"mutability":"mutable","name":"tokenId","nameLocation":"2909:7:28","nodeType":"VariableDeclaration","scope":2650,"src":"2901:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2638,"name":"uint256","nodeType":"ElementaryTypeName","src":"2901:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2645,"initialValue":{"baseExpression":{"baseExpression":{"id":2640,"name":"_ownedTokens","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3181,"src":"2919:12:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"}},"id":2642,"indexExpression":{"id":2641,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2617,"src":"2932:7:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2919:21:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":2644,"indexExpression":{"id":2643,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2627,"src":"2941:5:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2919:28:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2901:46:28"},{"expression":{"arguments":[{"id":2647,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2639,"src":"2971:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2646,"name":"getReward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2615,"src":"2961:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":2648,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"2961:18:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2649,"nodeType":"ExpressionStatement","src":"2961:18:28"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2634,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2630,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2627,"src":"2850:5:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"baseExpression":{"id":2631,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"2858:9:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2633,"indexExpression":{"id":2632,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2617,"src":"2868:7:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2858:18:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2850:26:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2651,"initializationExpression":{"assignments":[2627],"declarations":[{"constant":false,"id":2627,"mutability":"mutable","name":"index","nameLocation":"2839:5:28","nodeType":"VariableDeclaration","scope":2651,"src":"2831:13:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2626,"name":"uint256","nodeType":"ElementaryTypeName","src":"2831:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2629,"initialValue":{"hexValue":"30","id":2628,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2847:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"2831:17:28"},"loopExpression":{"expression":{"id":2636,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"2878:7:28","subExpression":{"id":2635,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2627,"src":"2878:5:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2637,"nodeType":"ExpressionStatement","src":"2878:7:28"},"nodeType":"ForStatement","src":"2826:164:28"}]},"functionSelector":"31279d3d","id":2653,"implemented":true,"kind":"function","modifiers":[{"id":2624,"kind":"modifierInvocation","modifierName":{"id":2623,"name":"nonReentrant","nodeType":"IdentifierPath","referencedDeclaration":681,"src":"2799:12:28"},"nodeType":"ModifierInvocation","src":"2799:12:28"}],"name":"getReward","nameLocation":"2712:9:28","nodeType":"FunctionDefinition","overrides":{"id":2622,"nodeType":"OverrideSpecifier","overrides":[],"src":"2782:8:28"},"parameters":{"id":2621,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2617,"mutability":"mutable","name":"account","nameLocation":"2730:7:28","nodeType":"VariableDeclaration","scope":2653,"src":"2722:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2616,"name":"address","nodeType":"ElementaryTypeName","src":"2722:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2620,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2653,"src":"2739:16:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2618,"name":"address","nodeType":"ElementaryTypeName","src":"2739:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2619,"nodeType":"ArrayTypeName","src":"2739:9:28","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"}],"src":"2721:35:28"},"returnParameters":{"id":2625,"nodeType":"ParameterList","parameters":[],"src":"2816:0:28"},"scope":3078,"src":"2703:293:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2666,"nodeType":"Block","src":"3043:64:28","statements":[{"expression":{"arguments":[{"id":2659,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2655,"src":"3062:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2658,"name":"withdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"3053:8:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":2660,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3053:18:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2661,"nodeType":"ExpressionStatement","src":"3053:18:28"},{"expression":{"arguments":[{"id":2663,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2655,"src":"3091:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2662,"name":"getReward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2615,"src":"3081:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":2664,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3081:19:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2665,"nodeType":"ExpressionStatement","src":"3081:19:28"}]},"functionSelector":"7f8661a1","id":2667,"implemented":true,"kind":"function","modifiers":[],"name":"exit","nameLocation":"3011:4:28","nodeType":"FunctionDefinition","parameters":{"id":2656,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2655,"mutability":"mutable","name":"_tokenId","nameLocation":"3024:8:28","nodeType":"VariableDeclaration","scope":2667,"src":"3016:16:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2654,"name":"uint256","nodeType":"ElementaryTypeName","src":"3016:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3015:18:28"},"returnParameters":{"id":2657,"nodeType":"ParameterList","parameters":[],"src":"3043:0:28"},"scope":3078,"src":"3002:105:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2793,"nodeType":"Block","src":"3427:1178:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2679,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3458:3:28","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2680,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sender","nodeType":"MemberAccess","src":"3458:10:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":2683,"name":"nonfungiblePositionManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3165,"src":"3480:26:28","typeDescriptions":{"typeIdentifier":"t_contract$_INonfungiblePositionManager_$4091","typeString":"contract INonfungiblePositionManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_INonfungiblePositionManager_$4091","typeString":"contract INonfungiblePositionManager"}],"id":2682,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3472:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2681,"name":"address","nodeType":"ElementaryTypeName","src":"3472:7:28","typeDescriptions":{}}},"id":2684,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3472:35:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3458:49:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6e6f742063616c6c65642066726f6d206e6674206d616e61676572","id":2686,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3521:29:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_3e13bccce6b8496a226c03eda750fa8184bb0407e6d5afc9a4faf8b40fdd2150","typeString":"literal_string \"not called from nft manager\""},"value":"not called from nft manager"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3e13bccce6b8496a226c03eda750fa8184bb0407e6d5afc9a4faf8b40fdd2150","typeString":"literal_string \"not called from nft manager\""}],"id":2678,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3437:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3437:123:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2688,"nodeType":"ExpressionStatement","src":"3437:123:28"},{"assignments":[2691,2693,2695],"declarations":[{"constant":false,"id":2691,"mutability":"mutable","name":"_pool","nameLocation":"3599:5:28","nodeType":"VariableDeclaration","scope":2793,"src":"3584:20:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"},"typeName":{"id":2690,"nodeType":"UserDefinedTypeName","pathNode":{"id":2689,"name":"IUniswapV3Pool","nodeType":"IdentifierPath","referencedDeclaration":1682,"src":"3584:14:28"},"referencedDeclaration":1682,"src":"3584:14:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"}},"visibility":"internal"},{"constant":false,"id":2693,"mutability":"mutable","name":"inRange","nameLocation":"3623:7:28","nodeType":"VariableDeclaration","scope":2793,"src":"3618:12:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2692,"name":"bool","nodeType":"ElementaryTypeName","src":"3618:4:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2695,"mutability":"mutable","name":"liquidity","nameLocation":"3652:9:28","nodeType":"VariableDeclaration","scope":2793,"src":"3644:17:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2694,"name":"uint128","nodeType":"ElementaryTypeName","src":"3644:7:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":2699,"initialValue":{"arguments":[{"id":2697,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2672,"src":"3698:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2696,"name":"_getLiquidityAndInRange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3008,"src":"3674:23:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_contract$_IUniswapV3Pool_$1682_$_t_bool_$_t_uint128_$","typeString":"function (uint256) view returns (contract IUniswapV3Pool,bool,uint128)"}},"id":2698,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3674:33:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_contract$_IUniswapV3Pool_$1682_$_t_bool_$_t_uint128_$","typeString":"tuple(contract IUniswapV3Pool,bool,uint128)"}},"nodeType":"VariableDeclarationStatement","src":"3570:137:28"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2703,"name":"_pool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2691,"src":"3747:5:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"}],"id":2702,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3739:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2701,"name":"address","nodeType":"ElementaryTypeName","src":"3739:7:28","typeDescriptions":{}}},"id":2704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3739:14:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":2707,"name":"pool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3169,"src":"3765:4:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"}],"id":2706,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3757:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2705,"name":"address","nodeType":"ElementaryTypeName","src":"3757:7:28","typeDescriptions":{}}},"id":2708,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3757:13:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3739:31:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"746f6b656e20706f6f6c206973206e6f742074686520726967687420706f6f6c","id":2710,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3784:34:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_6c6fdad9528ba94a432ea0119e61556a6886bc009e245446573b9ddd893623b8","typeString":"literal_string \"token pool is not the right pool\""},"value":"token pool is not the right pool"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_6c6fdad9528ba94a432ea0119e61556a6886bc009e245446573b9ddd893623b8","typeString":"literal_string \"token pool is not the right pool\""}],"id":2700,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3718:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2711,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3718:110:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2712,"nodeType":"ExpressionStatement","src":"3718:110:28"},{"expression":{"arguments":[{"id":2714,"name":"inRange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2693,"src":"3846:7:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6c69717569647479206e6f7420696e2072616e6765","id":2715,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3855:23:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_64a1256a522864251d2b98ba0d8b2204db04a4d66b9d6078787508f543e6e57a","typeString":"literal_string \"liquidty not in range\""},"value":"liquidty not in range"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_64a1256a522864251d2b98ba0d8b2204db04a4d66b9d6078787508f543e6e57a","typeString":"literal_string \"liquidty not in range\""}],"id":2713,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3838:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2716,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3838:41:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2717,"nodeType":"ExpressionStatement","src":"3838:41:28"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":2721,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2719,"name":"liquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2695,"src":"3897:9:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2720,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3909:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3897:13:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"63616e6e6f74207374616b652030206c6971756964697479","id":2722,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3912:26:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_7163d19ed0e499d5d9dbc4995b32af0873a5d59f79a456bb47421efa2460860f","typeString":"literal_string \"cannot stake 0 liquidity\""},"value":"cannot stake 0 liquidity"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_7163d19ed0e499d5d9dbc4995b32af0873a5d59f79a456bb47421efa2460860f","typeString":"literal_string \"cannot stake 0 liquidity\""}],"id":2718,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3889:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2723,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3889:50:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2724,"nodeType":"ExpressionStatement","src":"3889:50:28"},{"assignments":[2726],"declarations":[{"constant":false,"id":2726,"mutability":"mutable","name":"_derivedLiquidity","nameLocation":"3958:17:28","nodeType":"VariableDeclaration","scope":2793,"src":"3950:25:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2725,"name":"uint128","nodeType":"ElementaryTypeName","src":"3950:7:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":2731,"initialValue":{"arguments":[{"id":2728,"name":"liquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2695,"src":"3995:9:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"id":2729,"name":"_from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2670,"src":"4006:5:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2727,"name":"derivedLiquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2461,"src":"3978:16:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint128_$_t_address_$returns$_t_uint128_$","typeString":"function (uint128,address) view returns (uint128)"}},"id":2730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3978:34:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"3950:62:28"},{"expression":{"id":2740,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2732,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"4023:8:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit storage ref)"}},"id":2734,"indexExpression":{"id":2733,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2672,"src":"4032:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4023:18:28","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage","typeString":"struct UniswapV3Base.Deposit storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":2736,"name":"_from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2670,"src":"4073:5:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2737,"name":"liquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2695,"src":"4103:9:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"id":2738,"name":"_derivedLiquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2726,"src":"4144:17:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":2735,"name":"Deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3117,"src":"4044:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Deposit_$3117_storage_ptr_$","typeString":"type(struct UniswapV3Base.Deposit storage pointer)"}},"id":2739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"names":["owner","liquidity","derivedLiquidity"],"nodeType":"FunctionCall","src":"4044:128:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_memory_ptr","typeString":"struct UniswapV3Base.Deposit memory"}},"src":"4023:149:28","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage","typeString":"struct UniswapV3Base.Deposit storage ref"}},"id":2741,"nodeType":"ExpressionStatement","src":"4023:149:28"},{"expression":{"arguments":[{"id":2743,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2672,"src":"4215:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2742,"name":"_addTokenToAllTokensEnumeration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3457,"src":"4183:31:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":2744,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4183:41:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2745,"nodeType":"ExpressionStatement","src":"4183:41:28"},{"expression":{"arguments":[{"id":2747,"name":"_from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2670,"src":"4262:5:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2748,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2672,"src":"4269:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2746,"name":"_addTokenToOwnerEnumeration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3437,"src":"4234:27:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2749,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4234:44:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2750,"nodeType":"ExpressionStatement","src":"4234:44:28"},{"expression":{"id":2755,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2751,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"4289:9:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2753,"indexExpression":{"id":2752,"name":"_from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2670,"src":"4299:5:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4289:16:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":2754,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4309:1:28","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4289:21:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2756,"nodeType":"ExpressionStatement","src":"4289:21:28"},{"expression":{"id":2762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2757,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3146,"src":"4320:11:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":2760,"name":"_derivedLiquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2726,"src":"4350:17:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"expression":{"id":2758,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3146,"src":"4334:11:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2759,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"add","nodeType":"MemberAccess","referencedDeclaration":1441,"src":"4334:15:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":2761,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4334:34:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4320:48:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2763,"nodeType":"ExpressionStatement","src":"4320:48:28"},{"condition":{"id":2767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4383:16:28","subExpression":{"baseExpression":{"id":2764,"name":"attached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3200,"src":"4384:8:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":2766,"indexExpression":{"id":2765,"name":"_from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2670,"src":"4393:5:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4384:15:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2784,"nodeType":"IfStatement","src":"4379:146:28","trueBody":{"id":2783,"nodeType":"Block","src":"4401:124:28","statements":[{"expression":{"id":2772,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2768,"name":"attached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3200,"src":"4415:8:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":2770,"indexExpression":{"id":2769,"name":"_from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2670,"src":"4424:5:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4415:15:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2771,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4433:4:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"4415:22:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2773,"nodeType":"ExpressionStatement","src":"4415:22:28"},{"expression":{"arguments":[{"id":2780,"name":"_from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2670,"src":"4508:5:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":2775,"name":"registry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3121,"src":"4465:8:28","typeDescriptions":{"typeIdentifier":"t_contract$_IRegistry_$4222","typeString":"contract IRegistry"}},"id":2776,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"gaugeVoter","nodeType":"MemberAccess","referencedDeclaration":4155,"src":"4465:19:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":2777,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4465:21:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2774,"name":"IGaugeVoterV2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3793,"src":"4451:13:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IGaugeVoterV2_$3793_$","typeString":"type(contract IGaugeVoterV2)"}},"id":2778,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4451:36:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IGaugeVoterV2_$3793","typeString":"contract IGaugeVoterV2"}},"id":2779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"attachStakerToGauge","nodeType":"MemberAccess","referencedDeclaration":3661,"src":"4451:56:28","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$returns$__$","typeString":"function (address) external"}},"id":2781,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4451:63:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2782,"nodeType":"ExpressionStatement","src":"4451:63:28"}]}},{"eventCall":{"arguments":[{"expression":{"id":2786,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4547:3:28","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sender","nodeType":"MemberAccess","src":"4547:10:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2788,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2672,"src":"4559:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2789,"name":"liquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2695,"src":"4569:9:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"id":2790,"name":"_derivedLiquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2726,"src":"4580:17:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":2785,"name":"Staked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3596,"src":"4540:6:28","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint128_$_t_uint128_$returns$__$","typeString":"function (address,uint256,uint128,uint128)"}},"id":2791,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4540:58:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2792,"nodeType":"EmitStatement","src":"4535:63:28"}]},"documentation":{"id":2668,"nodeType":"StructuredDocumentation","src":"3113:197:28","text":"@notice Upon receiving a Uniswap V3 ERC721, creates the token deposit setting owner to `from`. Also stakes token\n in one or more incentives if properly formatted `data` has a length > 0."},"id":2794,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":2675,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2672,"src":"3413:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2676,"kind":"modifierInvocation","modifierName":{"id":2674,"name":"updateReward","nodeType":"IdentifierPath","referencedDeclaration":3057,"src":"3400:12:28"},"nodeType":"ModifierInvocation","src":"3400:22:28"}],"name":"_onERC721Received","nameLocation":"3324:17:28","nodeType":"FunctionDefinition","parameters":{"id":2673,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2670,"mutability":"mutable","name":"_from","nameLocation":"3350:5:28","nodeType":"VariableDeclaration","scope":2794,"src":"3342:13:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2669,"name":"address","nodeType":"ElementaryTypeName","src":"3342:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2672,"mutability":"mutable","name":"_tokenId","nameLocation":"3365:8:28","nodeType":"VariableDeclaration","scope":2794,"src":"3357:16:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2671,"name":"uint256","nodeType":"ElementaryTypeName","src":"3357:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3341:33:28"},"returnParameters":{"id":2677,"nodeType":"ParameterList","parameters":[],"src":"3427:0:28"},"scope":3078,"src":"3315:1290:28","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[3630],"body":{"id":2890,"nodeType":"Block","src":"4780:1069:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2806,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4798:3:28","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sender","nodeType":"MemberAccess","src":"4798:10:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":2808,"name":"registry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3121,"src":"4812:8:28","typeDescriptions":{"typeIdentifier":"t_contract$_IRegistry_$4222","typeString":"contract IRegistry"}},"id":2809,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"gaugeVoter","nodeType":"MemberAccess","referencedDeclaration":4155,"src":"4812:19:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":2810,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4812:21:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4798:35:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6e6f7420676175676520766f746572","id":2812,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4835:17:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_25d3b055c11d0967ef8bb6b71cf1c4fc04b1e509ce03ce6dc51f45e899291e19","typeString":"literal_string \"not gauge voter\""},"value":"not gauge voter"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_25d3b055c11d0967ef8bb6b71cf1c4fc04b1e509ce03ce6dc51f45e899291e19","typeString":"literal_string \"not gauge voter\""}],"id":2805,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4790:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2813,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4790:63:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2814,"nodeType":"ExpressionStatement","src":"4790:63:28"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2818,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2815,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"4868:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2816,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"timestamp","nodeType":"MemberAccess","src":"4868:15:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":2817,"name":"periodFinish","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3127,"src":"4887:12:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4868:31:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2851,"nodeType":"Block","src":"4968:204:28","statements":[{"assignments":[2827],"declarations":[{"constant":false,"id":2827,"mutability":"mutable","name":"remaining","nameLocation":"4990:9:28","nodeType":"VariableDeclaration","scope":2851,"src":"4982:17:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2826,"name":"uint256","nodeType":"ElementaryTypeName","src":"4982:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2833,"initialValue":{"arguments":[{"expression":{"id":2830,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"5019:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2831,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"timestamp","nodeType":"MemberAccess","src":"5019:15:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2828,"name":"periodFinish","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3127,"src":"5002:12:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2829,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sub","nodeType":"MemberAccess","referencedDeclaration":1456,"src":"5002:16:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":2832,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5002:33:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"4982:53:28"},{"assignments":[2835],"declarations":[{"constant":false,"id":2835,"mutability":"mutable","name":"leftover","nameLocation":"5057:8:28","nodeType":"VariableDeclaration","scope":2851,"src":"5049:16:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2834,"name":"uint256","nodeType":"ElementaryTypeName","src":"5049:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2840,"initialValue":{"arguments":[{"id":2838,"name":"rewardRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3130,"src":"5082:10:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2836,"name":"remaining","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2827,"src":"5068:9:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2837,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"mul","nodeType":"MemberAccess","referencedDeclaration":1471,"src":"5068:13:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":2839,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5068:25:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5049:44:28"},{"expression":{"id":2849,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2841,"name":"rewardRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3130,"src":"5107:10:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":2847,"name":"rewardsDuration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3133,"src":"5145:15:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":2844,"name":"leftover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2835,"src":"5131:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2842,"name":"reward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2798,"src":"5120:6:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2843,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"add","nodeType":"MemberAccess","referencedDeclaration":1441,"src":"5120:10:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":2845,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5120:20:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2846,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"div","nodeType":"MemberAccess","referencedDeclaration":1486,"src":"5120:24:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":2848,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5120:41:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5107:54:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2850,"nodeType":"ExpressionStatement","src":"5107:54:28"}]},"id":2852,"nodeType":"IfStatement","src":"4864:308:28","trueBody":{"expression":{"id":2824,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2819,"name":"rewardRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3130,"src":"4913:10:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":2822,"name":"rewardsDuration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3133,"src":"4937:15:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2820,"name":"reward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2798,"src":"4926:6:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2821,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"div","nodeType":"MemberAccess","referencedDeclaration":1486,"src":"4926:10:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":2823,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4926:27:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4913:40:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2825,"nodeType":"ExpressionStatement","src":"4913:40:28"}},{"assignments":[2854],"declarations":[{"constant":false,"id":2854,"mutability":"mutable","name":"balance","nameLocation":"5534:7:28","nodeType":"VariableDeclaration","scope":2890,"src":"5526:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2853,"name":"uint256","nodeType":"ElementaryTypeName","src":"5526:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2862,"initialValue":{"arguments":[{"arguments":[{"id":2859,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5575:4:28","typeDescriptions":{"typeIdentifier":"t_contract$_StakingRewardsV3_$3078","typeString":"contract StakingRewardsV3"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_StakingRewardsV3_$3078","typeString":"contract StakingRewardsV3"}],"id":2858,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5567:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2857,"name":"address","nodeType":"ElementaryTypeName","src":"5567:7:28","typeDescriptions":{}}},"id":2860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5567:13:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":2855,"name":"rewardsToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3124,"src":"5544:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$760","typeString":"contract IERC20"}},"id":2856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":717,"src":"5544:22:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":2861,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5544:37:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5526:55:28"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2864,"name":"rewardRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3130,"src":"5612:10:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[{"id":2867,"name":"rewardsDuration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3133,"src":"5638:15:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2865,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2854,"src":"5626:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2866,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"div","nodeType":"MemberAccess","referencedDeclaration":1486,"src":"5626:11:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":2868,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5626:28:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5612:42:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50726f76696465642072657761726420746f6f2068696768","id":2870,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5668:26:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_af294828ccb7807394ab9c640e14eb2534ed0e75bb2e1346f1bb81dd84cda810","typeString":"literal_string \"Provided reward too high\""},"value":"Provided reward too high"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_af294828ccb7807394ab9c640e14eb2534ed0e75bb2e1346f1bb81dd84cda810","typeString":"literal_string \"Provided reward too high\""}],"id":2863,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5591:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2871,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5591:113:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2872,"nodeType":"ExpressionStatement","src":"5591:113:28"},{"expression":{"id":2876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2873,"name":"lastUpdateTime","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3135,"src":"5715:14:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":2874,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"5732:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2875,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"timestamp","nodeType":"MemberAccess","src":"5732:15:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5715:32:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2877,"nodeType":"ExpressionStatement","src":"5715:32:28"},{"expression":{"id":2884,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2878,"name":"periodFinish","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3127,"src":"5757:12:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":2882,"name":"rewardsDuration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3133,"src":"5792:15:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":2879,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"5772:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2880,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"timestamp","nodeType":"MemberAccess","src":"5772:15:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2881,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"add","nodeType":"MemberAccess","referencedDeclaration":1441,"src":"5772:19:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":2883,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5772:36:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5757:51:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2885,"nodeType":"ExpressionStatement","src":"5757:51:28"},{"eventCall":{"arguments":[{"id":2887,"name":"reward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2798,"src":"5835:6:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2886,"name":"RewardAdded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3586,"src":"5823:11:28","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":2888,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5823:19:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2889,"nodeType":"EmitStatement","src":"5818:24:28"}]},"functionSelector":"b66503cf","id":2891,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"hexValue":"30","id":2802,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4773:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":2803,"kind":"modifierInvocation","modifierName":{"id":2801,"name":"updateReward","nodeType":"IdentifierPath","referencedDeclaration":3057,"src":"4760:12:28"},"nodeType":"ModifierInvocation","src":"4760:15:28"}],"name":"notifyRewardAmount","nameLocation":"4674:18:28","nodeType":"FunctionDefinition","overrides":{"id":2800,"nodeType":"OverrideSpecifier","overrides":[],"src":"4743:8:28"},"parameters":{"id":2799,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2796,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2891,"src":"4693:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2795,"name":"address","nodeType":"ElementaryTypeName","src":"4693:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2798,"mutability":"mutable","name":"reward","nameLocation":"4710:6:28","nodeType":"VariableDeclaration","scope":2891,"src":"4702:14:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2797,"name":"uint256","nodeType":"ElementaryTypeName","src":"4702:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4692:25:28"},"returnParameters":{"id":2804,"nodeType":"ParameterList","parameters":[],"src":"4780:0:28"},"scope":3078,"src":"4665:1184:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2954,"nodeType":"Block","src":"5907:645:28","statements":[{"assignments":[null,null,null,2897],"declarations":[null,null,null,{"constant":false,"id":2897,"mutability":"mutable","name":"_liquidity","nameLocation":"5932:10:28","nodeType":"VariableDeclaration","scope":2954,"src":"5924:18:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2896,"name":"uint128","nodeType":"ElementaryTypeName","src":"5924:7:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":2904,"initialValue":{"arguments":[{"id":2900,"name":"factory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3161,"src":"5991:7:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Factory_$1660","typeString":"contract IUniswapV3Factory"}},{"id":2901,"name":"nonfungiblePositionManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3165,"src":"6012:26:28","typeDescriptions":{"typeIdentifier":"t_contract$_INonfungiblePositionManager_$4091","typeString":"contract INonfungiblePositionManager"}},{"id":2902,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2893,"src":"6052:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IUniswapV3Factory_$1660","typeString":"contract IUniswapV3Factory"},{"typeIdentifier":"t_contract$_INonfungiblePositionManager_$4091","typeString":"contract INonfungiblePositionManager"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2898,"name":"NFTPositionInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4287,"src":"5946:15:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_NFTPositionInfo_$4287_$","typeString":"type(library NFTPositionInfo)"}},"id":2899,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"getPositionInfo","nodeType":"MemberAccess","referencedDeclaration":4286,"src":"5946:31:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_contract$_IUniswapV3Factory_$1660_$_t_contract$_INonfungiblePositionManager_$4091_$_t_uint256_$returns$_t_contract$_IUniswapV3Pool_$1682_$_t_int24_$_t_int24_$_t_uint128_$","typeString":"function (contract IUniswapV3Factory,contract INonfungiblePositionManager,uint256) view returns (contract IUniswapV3Pool,int24,int24,uint128)"}},"id":2903,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5946:124:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_contract$_IUniswapV3Pool_$1682_$_t_int24_$_t_int24_$_t_uint128_$","typeString":"tuple(contract IUniswapV3Pool,int24,int24,uint128)"}},"nodeType":"VariableDeclarationStatement","src":"5917:153:28"},{"condition":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":2910,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2905,"name":"_liquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2897,"src":"6085:10:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"baseExpression":{"id":2906,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"6099:8:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit storage ref)"}},"id":2908,"indexExpression":{"id":2907,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2893,"src":"6108:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6099:18:28","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage","typeString":"struct UniswapV3Base.Deposit storage ref"}},"id":2909,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberName":"liquidity","nodeType":"MemberAccess","referencedDeclaration":3114,"src":"6099:28:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"6085:42:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2912,"nodeType":"IfStatement","src":"6081:55:28","trueBody":{"functionReturnParameters":2895,"id":2911,"nodeType":"Return","src":"6129:7:28"}},{"assignments":[2914],"declarations":[{"constant":false,"id":2914,"mutability":"mutable","name":"_who","nameLocation":"6154:4:28","nodeType":"VariableDeclaration","scope":2954,"src":"6146:12:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2913,"name":"address","nodeType":"ElementaryTypeName","src":"6146:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2919,"initialValue":{"expression":{"baseExpression":{"id":2915,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"6161:8:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit storage ref)"}},"id":2917,"indexExpression":{"id":2916,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2893,"src":"6170:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6161:18:28","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage","typeString":"struct UniswapV3Base.Deposit storage ref"}},"id":2918,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberName":"owner","nodeType":"MemberAccess","referencedDeclaration":3112,"src":"6161:24:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6146:39:28"},{"assignments":[2921],"declarations":[{"constant":false,"id":2921,"mutability":"mutable","name":"_derivedLiquidity","nameLocation":"6203:17:28","nodeType":"VariableDeclaration","scope":2954,"src":"6195:25:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2920,"name":"uint128","nodeType":"ElementaryTypeName","src":"6195:7:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":2926,"initialValue":{"arguments":[{"id":2923,"name":"_liquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2897,"src":"6240:10:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"id":2924,"name":"_who","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2914,"src":"6252:4:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2922,"name":"derivedLiquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2461,"src":"6223:16:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint128_$_t_address_$returns$_t_uint128_$","typeString":"function (uint128,address) view returns (uint128)"}},"id":2925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"6223:34:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"6195:62:28"},{"expression":{"id":2938,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2927,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3146,"src":"6317:11:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"baseExpression":{"id":2933,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"6383:8:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit storage ref)"}},"id":2935,"indexExpression":{"id":2934,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2893,"src":"6392:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6383:18:28","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage","typeString":"struct UniswapV3Base.Deposit storage ref"}},"id":2936,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberName":"derivedLiquidity","nodeType":"MemberAccess","referencedDeclaration":3116,"src":"6383:35:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"expression":{"arguments":[{"id":2930,"name":"_derivedLiquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2921,"src":"6347:17:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"expression":{"id":2928,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3146,"src":"6331:11:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2929,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"add","nodeType":"MemberAccess","referencedDeclaration":1441,"src":"6331:15:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":2931,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"6331:34:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2932,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sub","nodeType":"MemberAccess","referencedDeclaration":1456,"src":"6331:38:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":2937,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"6331:97:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6317:111:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2939,"nodeType":"ExpressionStatement","src":"6317:111:28"},{"expression":{"id":2945,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":2940,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"6439:8:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit storage ref)"}},"id":2942,"indexExpression":{"id":2941,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2893,"src":"6448:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6439:18:28","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage","typeString":"struct UniswapV3Base.Deposit storage ref"}},"id":2943,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberName":"liquidity","nodeType":"MemberAccess","referencedDeclaration":3114,"src":"6439:28:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2944,"name":"_liquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2897,"src":"6470:10:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"6439:41:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":2946,"nodeType":"ExpressionStatement","src":"6439:41:28"},{"expression":{"id":2952,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":2947,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"6490:8:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit storage ref)"}},"id":2949,"indexExpression":{"id":2948,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2893,"src":"6499:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6490:18:28","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage","typeString":"struct UniswapV3Base.Deposit storage ref"}},"id":2950,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberName":"derivedLiquidity","nodeType":"MemberAccess","referencedDeclaration":3116,"src":"6490:35:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2951,"name":"_derivedLiquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2921,"src":"6528:17:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"6490:55:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":2953,"nodeType":"ExpressionStatement","src":"6490:55:28"}]},"id":2955,"implemented":true,"kind":"function","modifiers":[],"name":"_updateLiquidity","nameLocation":"5864:16:28","nodeType":"FunctionDefinition","parameters":{"id":2894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2893,"mutability":"mutable","name":"_tokenId","nameLocation":"5889:8:28","nodeType":"VariableDeclaration","scope":2955,"src":"5881:16:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2892,"name":"uint256","nodeType":"ElementaryTypeName","src":"5881:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5880:18:28"},"returnParameters":{"id":2895,"nodeType":"ParameterList","parameters":[],"src":"5907:0:28"},"scope":3078,"src":"5855:697:28","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":3007,"nodeType":"Block","src":"6759:462:28","statements":[{"assignments":[2969,2971,2973,2975],"declarations":[{"constant":false,"id":2969,"mutability":"mutable","name":"_pool","nameLocation":"6798:5:28","nodeType":"VariableDeclaration","scope":3007,"src":"6783:20:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"},"typeName":{"id":2968,"nodeType":"UserDefinedTypeName","pathNode":{"id":2967,"name":"IUniswapV3Pool","nodeType":"IdentifierPath","referencedDeclaration":1682,"src":"6783:14:28"},"referencedDeclaration":1682,"src":"6783:14:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"}},"visibility":"internal"},{"constant":false,"id":2971,"mutability":"mutable","name":"_tickLower","nameLocation":"6823:10:28","nodeType":"VariableDeclaration","scope":3007,"src":"6817:16:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":2970,"name":"int24","nodeType":"ElementaryTypeName","src":"6817:5:28","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":2973,"mutability":"mutable","name":"_tickUpper","nameLocation":"6853:10:28","nodeType":"VariableDeclaration","scope":3007,"src":"6847:16:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":2972,"name":"int24","nodeType":"ElementaryTypeName","src":"6847:5:28","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":2975,"mutability":"mutable","name":"_liquidity","nameLocation":"6885:10:28","nodeType":"VariableDeclaration","scope":3007,"src":"6877:18:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2974,"name":"uint128","nodeType":"ElementaryTypeName","src":"6877:7:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":2982,"initialValue":{"arguments":[{"id":2978,"name":"factory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3161,"src":"6957:7:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Factory_$1660","typeString":"contract IUniswapV3Factory"}},{"id":2979,"name":"nonfungiblePositionManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3165,"src":"6982:26:28","typeDescriptions":{"typeIdentifier":"t_contract$_INonfungiblePositionManager_$4091","typeString":"contract INonfungiblePositionManager"}},{"id":2980,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2957,"src":"7026:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IUniswapV3Factory_$1660","typeString":"contract IUniswapV3Factory"},{"typeIdentifier":"t_contract$_INonfungiblePositionManager_$4091","typeString":"contract INonfungiblePositionManager"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2976,"name":"NFTPositionInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4287,"src":"6908:15:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_NFTPositionInfo_$4287_$","typeString":"type(library NFTPositionInfo)"}},"id":2977,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"getPositionInfo","nodeType":"MemberAccess","referencedDeclaration":4286,"src":"6908:31:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_contract$_IUniswapV3Factory_$1660_$_t_contract$_INonfungiblePositionManager_$4091_$_t_uint256_$returns$_t_contract$_IUniswapV3Pool_$1682_$_t_int24_$_t_int24_$_t_uint128_$","typeString":"function (contract IUniswapV3Factory,contract INonfungiblePositionManager,uint256) view returns (contract IUniswapV3Pool,int24,int24,uint128)"}},"id":2981,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"6908:140:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_contract$_IUniswapV3Pool_$1682_$_t_int24_$_t_int24_$_t_uint128_$","typeString":"tuple(contract IUniswapV3Pool,int24,int24,uint128)"}},"nodeType":"VariableDeclarationStatement","src":"6769:279:28"},{"assignments":[null,2984,null,null,null,null,null],"declarations":[null,{"constant":false,"id":2984,"mutability":"mutable","name":"tick","nameLocation":"7068:4:28","nodeType":"VariableDeclaration","scope":3007,"src":"7062:10:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":2983,"name":"int24","nodeType":"ElementaryTypeName","src":"7062:5:28","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},null,null,null,null,null],"id":2988,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":2985,"name":"_pool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2969,"src":"7086:5:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"}},"id":2986,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"slot0","nodeType":"MemberAccess","referencedDeclaration":2015,"src":"7086:11:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint160_$_t_int24_$_t_uint16_$_t_uint16_$_t_uint16_$_t_uint8_$_t_bool_$","typeString":"function () view external returns (uint160,int24,uint16,uint16,uint16,uint8,bool)"}},"id":2987,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"7086:13:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint160_$_t_int24_$_t_uint16_$_t_uint16_$_t_uint16_$_t_uint8_$_t_bool_$","typeString":"tuple(uint160,int24,uint16,uint16,uint16,uint8,bool)"}},"nodeType":"VariableDeclarationStatement","src":"7059:40:28"},{"expression":{"id":2991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2989,"name":"pool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2961,"src":"7110:4:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2990,"name":"_pool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2969,"src":"7117:5:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"}},"src":"7110:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"}},"id":2992,"nodeType":"ExpressionStatement","src":"7110:12:28"},{"expression":{"id":3001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2993,"name":"inRange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2963,"src":"7132:7:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3000,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_int24","typeString":"int24"},"id":2996,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2994,"name":"_tickLower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2971,"src":"7142:10:28","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":2995,"name":"tick","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2984,"src":"7156:4:28","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"src":"7142:18:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_int24","typeString":"int24"},"id":2999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2997,"name":"tick","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2984,"src":"7164:4:28","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":2998,"name":"_tickUpper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2973,"src":"7172:10:28","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"src":"7164:18:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7142:40:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7132:50:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3002,"nodeType":"ExpressionStatement","src":"7132:50:28"},{"expression":{"id":3005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3003,"name":"liquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2965,"src":"7192:9:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3004,"name":"_liquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2975,"src":"7204:10:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"7192:22:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":3006,"nodeType":"ExpressionStatement","src":"7192:22:28"}]},"id":3008,"implemented":true,"kind":"function","modifiers":[],"name":"_getLiquidityAndInRange","nameLocation":"6567:23:28","nodeType":"FunctionDefinition","parameters":{"id":2958,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2957,"mutability":"mutable","name":"_tokenId","nameLocation":"6599:8:28","nodeType":"VariableDeclaration","scope":3008,"src":"6591:16:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2956,"name":"uint256","nodeType":"ElementaryTypeName","src":"6591:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6590:18:28"},"returnParameters":{"id":2966,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2961,"mutability":"mutable","name":"pool","nameLocation":"6683:4:28","nodeType":"VariableDeclaration","scope":3008,"src":"6668:19:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"},"typeName":{"id":2960,"nodeType":"UserDefinedTypeName","pathNode":{"id":2959,"name":"IUniswapV3Pool","nodeType":"IdentifierPath","referencedDeclaration":1682,"src":"6668:14:28"},"referencedDeclaration":1682,"src":"6668:14:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"}},"visibility":"internal"},{"constant":false,"id":2963,"mutability":"mutable","name":"inRange","nameLocation":"6706:7:28","nodeType":"VariableDeclaration","scope":3008,"src":"6701:12:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2962,"name":"bool","nodeType":"ElementaryTypeName","src":"6701:4:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2965,"mutability":"mutable","name":"liquidity","nameLocation":"6735:9:28","nodeType":"VariableDeclaration","scope":3008,"src":"6727:17:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2964,"name":"uint128","nodeType":"ElementaryTypeName","src":"6727:7:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"6654:100:28"},"scope":3078,"src":"6558:663:28","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":3046,"nodeType":"Block","src":"7319:307:28","statements":[{"expression":{"id":3016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3013,"name":"rewardPerTokenStored","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3137,"src":"7329:20:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":3014,"name":"rewardPerToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3367,"src":"7352:14:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":3015,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"7352:16:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7329:39:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3017,"nodeType":"ExpressionStatement","src":"7329:39:28"},{"expression":{"id":3021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3018,"name":"lastUpdateTime","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3135,"src":"7378:14:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":3019,"name":"lastTimeRewardApplicable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3337,"src":"7395:24:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":3020,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"7395:26:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7378:43:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3022,"nodeType":"ExpressionStatement","src":"7378:43:28"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3025,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3023,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3010,"src":"7435:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":3024,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7447:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7435:13:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3045,"nodeType":"IfStatement","src":"7431:189:28","trueBody":{"id":3044,"nodeType":"Block","src":"7450:170:28","statements":[{"expression":{"id":3032,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3026,"name":"rewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3157,"src":"7464:7:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3028,"indexExpression":{"id":3027,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3010,"src":"7472:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7464:17:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3030,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3010,"src":"7491:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3029,"name":"earned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3397,"src":"7484:6:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":3031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"7484:16:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7464:36:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3033,"nodeType":"ExpressionStatement","src":"7464:36:28"},{"expression":{"id":3038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3034,"name":"userRewardPerTokenPaid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3144,"src":"7514:22:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3036,"indexExpression":{"id":3035,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3010,"src":"7537:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7514:32:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3037,"name":"rewardPerTokenStored","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3137,"src":"7549:20:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7514:55:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3039,"nodeType":"ExpressionStatement","src":"7514:55:28"},{"expression":{"arguments":[{"id":3041,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3010,"src":"7600:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3040,"name":"_updateLiquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2955,"src":"7583:16:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":3042,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"7583:26:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3043,"nodeType":"ExpressionStatement","src":"7583:26:28"}]}}]},"id":3047,"implemented":true,"kind":"function","modifiers":[],"name":"_updateReward","nameLocation":"7279:13:28","nodeType":"FunctionDefinition","parameters":{"id":3011,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3010,"mutability":"mutable","name":"_tokenId","nameLocation":"7301:8:28","nodeType":"VariableDeclaration","scope":3047,"src":"7293:16:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3009,"name":"uint256","nodeType":"ElementaryTypeName","src":"7293:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7292:18:28"},"returnParameters":{"id":3012,"nodeType":"ParameterList","parameters":[],"src":"7319:0:28"},"scope":3078,"src":"7270:356:28","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":3056,"nodeType":"Block","src":"7672:51:28","statements":[{"expression":{"arguments":[{"id":3052,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3049,"src":"7696:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3051,"name":"_updateReward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3047,"src":"7682:13:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":3053,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"7682:23:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3054,"nodeType":"ExpressionStatement","src":"7682:23:28"},{"id":3055,"nodeType":"PlaceholderStatement","src":"7715:1:28"}]},"id":3057,"name":"updateReward","nameLocation":"7641:12:28","nodeType":"ModifierDefinition","parameters":{"id":3050,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3049,"mutability":"mutable","name":"_tokenId","nameLocation":"7662:8:28","nodeType":"VariableDeclaration","scope":3057,"src":"7654:16:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3048,"name":"uint256","nodeType":"ElementaryTypeName","src":"7654:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7653:18:28"},"src":"7632:91:28","virtual":false,"visibility":"internal"},{"body":{"id":3076,"nodeType":"Block","src":"7781:109:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":3068,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":3063,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"7799:8:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit storage ref)"}},"id":3065,"indexExpression":{"id":3064,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3059,"src":"7808:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7799:18:28","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage","typeString":"struct UniswapV3Base.Deposit storage ref"}},"id":3066,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberName":"liquidity","nodeType":"MemberAccess","referencedDeclaration":3114,"src":"7799:28:28","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3067,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7830:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7799:32:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6c69717569646974792069732030","id":3069,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7833:16:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_696ff4afb8f94b9e0615b62dd4c79972c046448a8e5683291d4d2bbc3e2e7b4a","typeString":"literal_string \"liquidity is 0\""},"value":"liquidity is 0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_696ff4afb8f94b9e0615b62dd4c79972c046448a8e5683291d4d2bbc3e2e7b4a","typeString":"literal_string \"liquidity is 0\""}],"id":3062,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7791:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3070,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"7791:59:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3071,"nodeType":"ExpressionStatement","src":"7791:59:28"},{"expression":{"arguments":[{"id":3073,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3059,"src":"7874:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3072,"name":"_updateReward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3047,"src":"7860:13:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":3074,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"7860:23:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3075,"nodeType":"ExpressionStatement","src":"7860:23:28"}]},"functionSelector":"d7e79f02","id":3077,"implemented":true,"kind":"function","modifiers":[],"name":"updateRewardFor","nameLocation":"7738:15:28","nodeType":"FunctionDefinition","parameters":{"id":3060,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3059,"mutability":"mutable","name":"_tokenId","nameLocation":"7762:8:28","nodeType":"VariableDeclaration","scope":3077,"src":"7754:16:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3058,"name":"uint256","nodeType":"ElementaryTypeName","src":"7754:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7753:18:28"},"returnParameters":{"id":3061,"nodeType":"ParameterList","parameters":[],"src":"7781:0:28"},"scope":3078,"src":"7729:161:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":3079,"src":"602:7290:28","usedErrors":[]}],"src":"32:7861:28"},"id":28},"contracts/gauges/uniswapv3/UniswapV3Base.sol":{"ast":{"absolutePath":"contracts/gauges/uniswapv3/UniswapV3Base.sol","exportedSymbols":{"IERC20":[760],"IGauge":[3652],"INonfungiblePositionManager":[4091],"IRegistry":[4222],"IUniswapV3Factory":[1660],"IUniswapV3Pool":[1682],"Initializable":[642],"ReentrancyGuard":[682],"SafeMath":[1577],"UniswapV3Base":[3619]},"id":3620,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3080,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"32:23:29"},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20.sol","file":"@openzeppelin/contracts/interfaces/IERC20.sol","id":3082,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3620,"sourceUnit":492,"src":"57:69:29","symbolAliases":[{"foreign":{"id":3081,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"src":"65:6:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":3084,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3620,"sourceUnit":643,"src":"127:84:29","symbolAliases":[{"foreign":{"id":3083,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"src":"135:13:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol","file":"@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol","id":3086,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3620,"sourceUnit":1661,"src":"212:94:29","symbolAliases":[{"foreign":{"id":3085,"name":"IUniswapV3Factory","nodeType":"Identifier","overloadedDeclarations":[],"src":"220:17:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol","file":"@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol","id":3088,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3620,"sourceUnit":1683,"src":"307:88:29","symbolAliases":[{"foreign":{"id":3087,"name":"IUniswapV3Pool","nodeType":"Identifier","overloadedDeclarations":[],"src":"315:14:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/security/ReentrancyGuard.sol","file":"@openzeppelin/contracts/security/ReentrancyGuard.sol","id":3090,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3620,"sourceUnit":683,"src":"396:85:29","symbolAliases":[{"foreign":{"id":3089,"name":"ReentrancyGuard","nodeType":"Identifier","overloadedDeclarations":[],"src":"404:15:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeMath.sol","file":"@openzeppelin/contracts/utils/math/SafeMath.sol","id":3092,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3620,"sourceUnit":1578,"src":"482:73:29","symbolAliases":[{"foreign":{"id":3091,"name":"SafeMath","nodeType":"Identifier","overloadedDeclarations":[],"src":"490:8:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IRegistry.sol","file":"../../interfaces/IRegistry.sol","id":3094,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3620,"sourceUnit":4223,"src":"557:57:29","symbolAliases":[{"foreign":{"id":3093,"name":"IRegistry","nodeType":"Identifier","overloadedDeclarations":[],"src":"565:9:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/INonfungiblePositionManager.sol","file":"../../interfaces/INonfungiblePositionManager.sol","id":3096,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3620,"sourceUnit":4092,"src":"615:93:29","symbolAliases":[{"foreign":{"id":3095,"name":"INonfungiblePositionManager","nodeType":"Identifier","overloadedDeclarations":[],"src":"623:27:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IGauge.sol","file":"../../interfaces/IGauge.sol","id":3098,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3620,"sourceUnit":3653,"src":"709:51:29","symbolAliases":[{"foreign":{"id":3097,"name":"IGauge","nodeType":"Identifier","overloadedDeclarations":[],"src":"717:6:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":3099,"name":"Initializable","nodeType":"IdentifierPath","referencedDeclaration":642,"src":"797:13:29"},"id":3100,"nodeType":"InheritanceSpecifier","src":"797:13:29"},{"baseName":{"id":3101,"name":"ReentrancyGuard","nodeType":"IdentifierPath","referencedDeclaration":682,"src":"812:15:29"},"id":3102,"nodeType":"InheritanceSpecifier","src":"812:15:29"},{"baseName":{"id":3103,"name":"IGauge","nodeType":"IdentifierPath","referencedDeclaration":3652,"src":"829:6:29"},"id":3104,"nodeType":"InheritanceSpecifier","src":"829:6:29"}],"contractDependencies":[],"contractKind":"contract","fullyImplemented":false,"id":3619,"linearizedBaseContracts":[3619,3652,682,642],"name":"UniswapV3Base","nameLocation":"780:13:29","nodeType":"ContractDefinition","nodes":[{"id":3107,"libraryName":{"id":3105,"name":"SafeMath","nodeType":"IdentifierPath","referencedDeclaration":1577,"src":"848:8:29"},"nodeType":"UsingForDirective","src":"842:27:29","typeName":{"id":3106,"name":"uint256","nodeType":"ElementaryTypeName","src":"861:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"id":3110,"libraryName":{"id":3108,"name":"SafeMath","nodeType":"IdentifierPath","referencedDeclaration":1577,"src":"880:8:29"},"nodeType":"UsingForDirective","src":"874:27:29","typeName":{"id":3109,"name":"uint128","nodeType":"ElementaryTypeName","src":"893:7:29","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}},{"canonicalName":"UniswapV3Base.Deposit","id":3117,"members":[{"constant":false,"id":3112,"mutability":"mutable","name":"owner","nameLocation":"998:5:29","nodeType":"VariableDeclaration","scope":3117,"src":"990:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3111,"name":"address","nodeType":"ElementaryTypeName","src":"990:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3114,"mutability":"mutable","name":"liquidity","nameLocation":"1021:9:29","nodeType":"VariableDeclaration","scope":3117,"src":"1013:17:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":3113,"name":"uint128","nodeType":"ElementaryTypeName","src":"1013:7:29","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":3116,"mutability":"mutable","name":"derivedLiquidity","nameLocation":"1048:16:29","nodeType":"VariableDeclaration","scope":3117,"src":"1040:24:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":3115,"name":"uint128","nodeType":"ElementaryTypeName","src":"1040:7:29","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"name":"Deposit","nameLocation":"972:7:29","nodeType":"StructDefinition","scope":3619,"src":"965:106:29","visibility":"public"},{"baseFunctions":[3644],"constant":false,"functionSelector":"7b103999","id":3121,"mutability":"mutable","name":"registry","nameLocation":"1151:8:29","nodeType":"VariableDeclaration","overrides":{"id":3120,"nodeType":"OverrideSpecifier","overrides":[],"src":"1142:8:29"},"scope":3619,"src":"1125:34:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRegistry_$4222","typeString":"contract IRegistry"},"typeName":{"id":3119,"nodeType":"UserDefinedTypeName","pathNode":{"id":3118,"name":"IRegistry","nodeType":"IdentifierPath","referencedDeclaration":4222,"src":"1125:9:29"},"referencedDeclaration":4222,"src":"1125:9:29","typeDescriptions":{"typeIdentifier":"t_contract$_IRegistry_$4222","typeString":"contract IRegistry"}},"visibility":"public"},{"constant":false,"functionSelector":"d1af0c7d","id":3124,"mutability":"mutable","name":"rewardsToken","nameLocation":"1179:12:29","nodeType":"VariableDeclaration","scope":3619,"src":"1165:26:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$760","typeString":"contract IERC20"},"typeName":{"id":3123,"nodeType":"UserDefinedTypeName","pathNode":{"id":3122,"name":"IERC20","nodeType":"IdentifierPath","referencedDeclaration":760,"src":"1165:6:29"},"referencedDeclaration":760,"src":"1165:6:29","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$760","typeString":"contract IERC20"}},"visibility":"public"},{"constant":false,"functionSelector":"ebe2b12b","id":3127,"mutability":"mutable","name":"periodFinish","nameLocation":"1212:12:29","nodeType":"VariableDeclaration","scope":3619,"src":"1197:31:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3125,"name":"uint256","nodeType":"ElementaryTypeName","src":"1197:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30","id":3126,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1227:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"public"},{"constant":false,"functionSelector":"7b0a47ee","id":3130,"mutability":"mutable","name":"rewardRate","nameLocation":"1249:10:29","nodeType":"VariableDeclaration","scope":3619,"src":"1234:29:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3128,"name":"uint256","nodeType":"ElementaryTypeName","src":"1234:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30","id":3129,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1262:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"public"},{"constant":false,"functionSelector":"386a9525","id":3133,"mutability":"mutable","name":"rewardsDuration","nameLocation":"1284:15:29","nodeType":"VariableDeclaration","scope":3619,"src":"1269:39:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3131,"name":"uint256","nodeType":"ElementaryTypeName","src":"1269:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"37","id":3132,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1302:6:29","subdenomination":"days","typeDescriptions":{"typeIdentifier":"t_rational_604800_by_1","typeString":"int_const 604800"},"value":"7"},"visibility":"public"},{"constant":false,"functionSelector":"c8f33c91","id":3135,"mutability":"mutable","name":"lastUpdateTime","nameLocation":"1329:14:29","nodeType":"VariableDeclaration","scope":3619,"src":"1314:29:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3134,"name":"uint256","nodeType":"ElementaryTypeName","src":"1314:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"df136d65","id":3137,"mutability":"mutable","name":"rewardPerTokenStored","nameLocation":"1364:20:29","nodeType":"VariableDeclaration","scope":3619,"src":"1349:35:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3136,"name":"uint256","nodeType":"ElementaryTypeName","src":"1349:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"69db8b27","id":3140,"mutability":"mutable","name":"maxBoostRequirement","nameLocation":"1405:19:29","nodeType":"VariableDeclaration","scope":3619,"src":"1390:44:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3138,"name":"uint256","nodeType":"ElementaryTypeName","src":"1390:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"35303030653138","id":3139,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1427:7:29","typeDescriptions":{"typeIdentifier":"t_rational_5000000000000000000000_by_1","typeString":"int_const 5000000000000000000000"},"value":"5000e18"},"visibility":"public"},{"constant":false,"functionSelector":"6c6f858b","id":3144,"mutability":"mutable","name":"userRewardPerTokenPaid","nameLocation":"1475:22:29","nodeType":"VariableDeclaration","scope":3619,"src":"1440:57:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"},"typeName":{"id":3143,"keyType":{"id":3141,"name":"uint256","nodeType":"ElementaryTypeName","src":"1448:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"1440:27:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"},"valueType":{"id":3142,"name":"uint256","nodeType":"ElementaryTypeName","src":"1459:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"functionSelector":"18160ddd","id":3146,"mutability":"mutable","name":"totalSupply","nameLocation":"1519:11:29","nodeType":"VariableDeclaration","scope":3619,"src":"1504:26:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3145,"name":"uint256","nodeType":"ElementaryTypeName","src":"1504:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"documentation":{"id":3147,"nodeType":"StructuredDocumentation","src":"1537:29:29","text":"@dev all the NFT deposits"},"functionSelector":"b02c43d0","id":3152,"mutability":"mutable","name":"deposits","nameLocation":"1606:8:29","nodeType":"VariableDeclaration","scope":3619,"src":"1571:43:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit)"},"typeName":{"id":3151,"keyType":{"id":3148,"name":"uint256","nodeType":"ElementaryTypeName","src":"1579:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"1571:27:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit)"},"valueType":{"id":3150,"nodeType":"UserDefinedTypeName","pathNode":{"id":3149,"name":"Deposit","nodeType":"IdentifierPath","referencedDeclaration":3117,"src":"1590:7:29"},"referencedDeclaration":3117,"src":"1590:7:29","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage_ptr","typeString":"struct UniswapV3Base.Deposit"}}},"visibility":"public"},{"constant":false,"documentation":{"id":3153,"nodeType":"StructuredDocumentation","src":"1621:47:29","text":"@dev [nft token id => reward count] rewards"},"functionSelector":"f301af42","id":3157,"mutability":"mutable","name":"rewards","nameLocation":"1708:7:29","nodeType":"VariableDeclaration","scope":3619,"src":"1673:42:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"},"typeName":{"id":3156,"keyType":{"id":3154,"name":"uint256","nodeType":"ElementaryTypeName","src":"1681:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"1673:27:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"},"valueType":{"id":3155,"name":"uint256","nodeType":"ElementaryTypeName","src":"1692:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"documentation":{"id":3158,"nodeType":"StructuredDocumentation","src":"1722:31:29","text":"@dev the uniswap v3 factory"},"functionSelector":"c45a0155","id":3161,"mutability":"mutable","name":"factory","nameLocation":"1783:7:29","nodeType":"VariableDeclaration","scope":3619,"src":"1758:32:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Factory_$1660","typeString":"contract IUniswapV3Factory"},"typeName":{"id":3160,"nodeType":"UserDefinedTypeName","pathNode":{"id":3159,"name":"IUniswapV3Factory","nodeType":"IdentifierPath","referencedDeclaration":1660,"src":"1758:17:29"},"referencedDeclaration":1660,"src":"1758:17:29","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Factory_$1660","typeString":"contract IUniswapV3Factory"}},"visibility":"public"},{"constant":false,"documentation":{"id":3162,"nodeType":"StructuredDocumentation","src":"1797:44:29","text":"@dev the uniswap v3 nft position manager"},"functionSelector":"b44a2722","id":3165,"mutability":"mutable","name":"nonfungiblePositionManager","nameLocation":"1881:26:29","nodeType":"VariableDeclaration","scope":3619,"src":"1846:61:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_INonfungiblePositionManager_$4091","typeString":"contract INonfungiblePositionManager"},"typeName":{"id":3164,"nodeType":"UserDefinedTypeName","pathNode":{"id":3163,"name":"INonfungiblePositionManager","nodeType":"IdentifierPath","referencedDeclaration":4091,"src":"1846:27:29"},"referencedDeclaration":4091,"src":"1846:27:29","typeDescriptions":{"typeIdentifier":"t_contract$_INonfungiblePositionManager_$4091","typeString":"contract INonfungiblePositionManager"}},"visibility":"public"},{"constant":false,"documentation":{"id":3166,"nodeType":"StructuredDocumentation","src":"1914:54:29","text":"@dev the pool for which we are staking the rewards"},"functionSelector":"16f0115b","id":3169,"mutability":"mutable","name":"pool","nameLocation":"1995:4:29","nodeType":"VariableDeclaration","scope":3619,"src":"1973:26:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"},"typeName":{"id":3168,"nodeType":"UserDefinedTypeName","pathNode":{"id":3167,"name":"IUniswapV3Pool","nodeType":"IdentifierPath","referencedDeclaration":1682,"src":"1973:14:29"},"referencedDeclaration":1682,"src":"1973:14:29","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"}},"visibility":"public"},{"constant":false,"documentation":{"id":3170,"nodeType":"StructuredDocumentation","src":"2006:53:29","text":"@dev the number of NFTs staked by the given user."},"functionSelector":"70a08231","id":3174,"mutability":"mutable","name":"balanceOf","nameLocation":"2099:9:29","nodeType":"VariableDeclaration","scope":3619,"src":"2064:44:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":3173,"keyType":{"id":3171,"name":"address","nodeType":"ElementaryTypeName","src":"2072:7:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2064:27:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueType":{"id":3172,"name":"uint256","nodeType":"ElementaryTypeName","src":"2083:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"documentation":{"id":3175,"nodeType":"StructuredDocumentation","src":"2115:54:29","text":"@dev Mapping from owner to list of owned token IDs"},"id":3181,"mutability":"mutable","name":"_ownedTokens","nameLocation":"2231:12:29","nodeType":"VariableDeclaration","scope":3619,"src":"2174:69:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"},"typeName":{"id":3180,"keyType":{"id":3176,"name":"address","nodeType":"ElementaryTypeName","src":"2182:7:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2174:47:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"},"valueType":{"id":3179,"keyType":{"id":3177,"name":"uint256","nodeType":"ElementaryTypeName","src":"2201:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2193:27:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"},"valueType":{"id":3178,"name":"uint256","nodeType":"ElementaryTypeName","src":"2212:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"internal"},{"constant":false,"documentation":{"id":3182,"nodeType":"StructuredDocumentation","src":"2250:64:29","text":"@dev Mapping from token ID to index of the owner tokens list"},"id":3186,"mutability":"mutable","name":"_ownedTokensIndex","nameLocation":"2356:17:29","nodeType":"VariableDeclaration","scope":3619,"src":"2319:54:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"},"typeName":{"id":3185,"keyType":{"id":3183,"name":"uint256","nodeType":"ElementaryTypeName","src":"2327:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2319:27:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"},"valueType":{"id":3184,"name":"uint256","nodeType":"ElementaryTypeName","src":"2338:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"constant":false,"documentation":{"id":3187,"nodeType":"StructuredDocumentation","src":"2380:55:29","text":"@dev Array with all token ids, used for enumeration"},"id":3190,"mutability":"mutable","name":"_allTokens","nameLocation":"2459:10:29","nodeType":"VariableDeclaration","scope":3619,"src":"2440:29:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage","typeString":"uint256[]"},"typeName":{"baseType":{"id":3188,"name":"uint256","nodeType":"ElementaryTypeName","src":"2440:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3189,"nodeType":"ArrayTypeName","src":"2440:9:29","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"documentation":{"id":3191,"nodeType":"StructuredDocumentation","src":"2476:65:29","text":"@dev Mapping from token id to position in the allTokens array"},"id":3195,"mutability":"mutable","name":"_allTokensIndex","nameLocation":"2583:15:29","nodeType":"VariableDeclaration","scope":3619,"src":"2546:52:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"},"typeName":{"id":3194,"keyType":{"id":3192,"name":"uint256","nodeType":"ElementaryTypeName","src":"2554:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2546:27:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"},"valueType":{"id":3193,"name":"uint256","nodeType":"ElementaryTypeName","src":"2565:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"constant":false,"documentation":{"id":3196,"nodeType":"StructuredDocumentation","src":"2605:43:29","text":"@dev is the user attached to this gauge"},"functionSelector":"36703461","id":3200,"mutability":"mutable","name":"attached","nameLocation":"2685:8:29","nodeType":"VariableDeclaration","scope":3619,"src":"2653:40:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":3199,"keyType":{"id":3197,"name":"address","nodeType":"ElementaryTypeName","src":"2661:7:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2653:24:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueType":{"id":3198,"name":"bool","nodeType":"ElementaryTypeName","src":"2672:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"public"},{"body":{"id":3268,"nodeType":"Block","src":"2961:448:29","statements":[{"expression":{"id":3221,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3217,"name":"nonfungiblePositionManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3165,"src":"2971:26:29","typeDescriptions":{"typeIdentifier":"t_contract$_INonfungiblePositionManager_$4091","typeString":"contract INonfungiblePositionManager"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3219,"name":"_nonfungiblePositionManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3212,"src":"3041:27:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3218,"name":"INonfungiblePositionManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4091,"src":"3000:27:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_INonfungiblePositionManager_$4091_$","typeString":"type(contract INonfungiblePositionManager)"}},"id":3220,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3000:78:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_INonfungiblePositionManager_$4091","typeString":"contract INonfungiblePositionManager"}},"src":"2971:107:29","typeDescriptions":{"typeIdentifier":"t_contract$_INonfungiblePositionManager_$4091","typeString":"contract INonfungiblePositionManager"}},"id":3222,"nodeType":"ExpressionStatement","src":"2971:107:29"},{"expression":{"id":3227,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3223,"name":"registry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3121,"src":"3089:8:29","typeDescriptions":{"typeIdentifier":"t_contract$_IRegistry_$4222","typeString":"contract IRegistry"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3225,"name":"_registry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3202,"src":"3110:9:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3224,"name":"IRegistry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4222,"src":"3100:9:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRegistry_$4222_$","typeString":"type(contract IRegistry)"}},"id":3226,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3100:20:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRegistry_$4222","typeString":"contract IRegistry"}},"src":"3089:31:29","typeDescriptions":{"typeIdentifier":"t_contract$_IRegistry_$4222","typeString":"contract IRegistry"}},"id":3228,"nodeType":"ExpressionStatement","src":"3089:31:29"},{"expression":{"id":3235,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3229,"name":"factory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3161,"src":"3130:7:29","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Factory_$1660","typeString":"contract IUniswapV3Factory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":3231,"name":"nonfungiblePositionManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3165,"src":"3158:26:29","typeDescriptions":{"typeIdentifier":"t_contract$_INonfungiblePositionManager_$4091","typeString":"contract INonfungiblePositionManager"}},"id":3232,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"factory","nodeType":"MemberAccess","referencedDeclaration":2146,"src":"3158:34:29","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":3233,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3158:36:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3230,"name":"IUniswapV3Factory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1660,"src":"3140:17:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IUniswapV3Factory_$1660_$","typeString":"type(contract IUniswapV3Factory)"}},"id":3234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3140:55:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Factory_$1660","typeString":"contract IUniswapV3Factory"}},"src":"3130:65:29","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Factory_$1660","typeString":"contract IUniswapV3Factory"}},"id":3236,"nodeType":"ExpressionStatement","src":"3130:65:29"},{"expression":{"id":3241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3237,"name":"rewardsToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3124,"src":"3205:12:29","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$760","typeString":"contract IERC20"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3239,"name":"_rewardsToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3210,"src":"3227:13:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3238,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":760,"src":"3220:6:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$760_$","typeString":"type(contract IERC20)"}},"id":3240,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3220:21:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$760","typeString":"contract IERC20"}},"src":"3205:36:29","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$760","typeString":"contract IERC20"}},"id":3242,"nodeType":"ExpressionStatement","src":"3205:36:29"},{"assignments":[3244],"declarations":[{"constant":false,"id":3244,"mutability":"mutable","name":"_pool","nameLocation":"3260:5:29","nodeType":"VariableDeclaration","scope":3268,"src":"3252:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3243,"name":"address","nodeType":"ElementaryTypeName","src":"3252:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":3251,"initialValue":{"arguments":[{"id":3247,"name":"token0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3204,"src":"3284:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3248,"name":"token1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3206,"src":"3292:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3249,"name":"fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3208,"src":"3300:3:29","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint24","typeString":"uint24"}],"expression":{"id":3245,"name":"factory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3161,"src":"3268:7:29","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Factory_$1660","typeString":"contract IUniswapV3Factory"}},"id":3246,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"getPool","nodeType":"MemberAccess","referencedDeclaration":1633,"src":"3268:15:29","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$_t_uint24_$returns$_t_address_$","typeString":"function (address,address,uint24) view external returns (address)"}},"id":3250,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3268:36:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3252:52:29"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3258,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3253,"name":"_pool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3244,"src":"3322:5:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":3256,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3339:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":3255,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3331:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3254,"name":"address","nodeType":"ElementaryTypeName","src":"3331:7:29","typeDescriptions":{}}},"id":3257,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3331:10:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3322:19:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"706f6f6c20646f65736e2774206578697374","id":3259,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3343:20:29","typeDescriptions":{"typeIdentifier":"t_stringliteral_0e7bfa41936ea0f14228a1e1d47a40800594bfee7c0cb33646a51576af420e4a","typeString":"literal_string \"pool doesn't exist\""},"value":"pool doesn't exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0e7bfa41936ea0f14228a1e1d47a40800594bfee7c0cb33646a51576af420e4a","typeString":"literal_string \"pool doesn't exist\""}],"id":3252,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3314:7:29","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3260,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3314:50:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3261,"nodeType":"ExpressionStatement","src":"3314:50:29"},{"expression":{"id":3266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3262,"name":"pool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3169,"src":"3374:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3264,"name":"_pool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3244,"src":"3396:5:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3263,"name":"IUniswapV3Pool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1682,"src":"3381:14:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IUniswapV3Pool_$1682_$","typeString":"type(contract IUniswapV3Pool)"}},"id":3265,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"3381:21:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"}},"src":"3374:28:29","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"}},"id":3267,"nodeType":"ExpressionStatement","src":"3374:28:29"}]},"functionSelector":"b93c9a1d","id":3269,"implemented":true,"kind":"function","modifiers":[{"id":3215,"kind":"modifierInvocation","modifierName":{"id":3214,"name":"initializer","nodeType":"IdentifierPath","referencedDeclaration":562,"src":"2949:11:29"},"nodeType":"ModifierInvocation","src":"2949:11:29"}],"name":"initialize","nameLocation":"2754:10:29","nodeType":"FunctionDefinition","parameters":{"id":3213,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3202,"mutability":"mutable","name":"_registry","nameLocation":"2782:9:29","nodeType":"VariableDeclaration","scope":3269,"src":"2774:17:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3201,"name":"address","nodeType":"ElementaryTypeName","src":"2774:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3204,"mutability":"mutable","name":"token0","nameLocation":"2809:6:29","nodeType":"VariableDeclaration","scope":3269,"src":"2801:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3203,"name":"address","nodeType":"ElementaryTypeName","src":"2801:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3206,"mutability":"mutable","name":"token1","nameLocation":"2833:6:29","nodeType":"VariableDeclaration","scope":3269,"src":"2825:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3205,"name":"address","nodeType":"ElementaryTypeName","src":"2825:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3208,"mutability":"mutable","name":"fee","nameLocation":"2856:3:29","nodeType":"VariableDeclaration","scope":3269,"src":"2849:10:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":3207,"name":"uint24","nodeType":"ElementaryTypeName","src":"2849:6:29","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"},{"constant":false,"id":3210,"mutability":"mutable","name":"_rewardsToken","nameLocation":"2877:13:29","nodeType":"VariableDeclaration","scope":3269,"src":"2869:21:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3209,"name":"address","nodeType":"ElementaryTypeName","src":"2869:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3212,"mutability":"mutable","name":"_nonfungiblePositionManager","nameLocation":"2908:27:29","nodeType":"VariableDeclaration","scope":3269,"src":"2900:35:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3211,"name":"address","nodeType":"ElementaryTypeName","src":"2900:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2764:177:29"},"returnParameters":{"id":3216,"nodeType":"ParameterList","parameters":[],"src":"2961:0:29"},"scope":3619,"src":"2745:664:29","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[3651],"body":{"id":3295,"nodeType":"Block","src":"3518:163:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3277,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"3532:5:29","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"timestamp","nodeType":"MemberAccess","src":"3532:15:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":3279,"name":"periodFinish","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3127,"src":"3551:12:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3532:31:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3283,"nodeType":"IfStatement","src":"3528:45:29","trueBody":{"expression":{"hexValue":"30","id":3281,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3572:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":3276,"id":3282,"nodeType":"Return","src":"3565:8:29"}},{"assignments":[3285],"declarations":[{"constant":false,"id":3285,"mutability":"mutable","name":"_remaining","nameLocation":"3591:10:29","nodeType":"VariableDeclaration","scope":3295,"src":"3583:18:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3284,"name":"uint256","nodeType":"ElementaryTypeName","src":"3583:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3290,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3286,"name":"periodFinish","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3127,"src":"3604:12:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":3287,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"3619:5:29","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3288,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"timestamp","nodeType":"MemberAccess","src":"3619:15:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3604:30:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3583:51:29"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3291,"name":"_remaining","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3285,"src":"3651:10:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3292,"name":"rewardRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3130,"src":"3664:10:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3651:23:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3276,"id":3294,"nodeType":"Return","src":"3644:30:29"}]},"functionSelector":"99bcc052","id":3296,"implemented":true,"kind":"function","modifiers":[],"name":"left","nameLocation":"3463:4:29","nodeType":"FunctionDefinition","overrides":{"id":3273,"nodeType":"OverrideSpecifier","overrides":[],"src":"3491:8:29"},"parameters":{"id":3272,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3271,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3296,"src":"3468:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3270,"name":"address","nodeType":"ElementaryTypeName","src":"3468:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3467:9:29"},"returnParameters":{"id":3276,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3275,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3296,"src":"3509:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3274,"name":"uint256","nodeType":"ElementaryTypeName","src":"3509:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3508:9:29"},"scope":3619,"src":"3454:227:29","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":3308,"nodeType":"Block","src":"3756:52:29","statements":[{"expression":{"expression":{"baseExpression":{"id":3303,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"3773:8:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit storage ref)"}},"id":3305,"indexExpression":{"id":3304,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3298,"src":"3782:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3773:18:29","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage","typeString":"struct UniswapV3Base.Deposit storage ref"}},"id":3306,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberName":"liquidity","nodeType":"MemberAccess","referencedDeclaration":3114,"src":"3773:28:29","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":3302,"id":3307,"nodeType":"Return","src":"3766:35:29"}]},"functionSelector":"c8f1c3af","id":3309,"implemented":true,"kind":"function","modifiers":[],"name":"liquidity","nameLocation":"3696:9:29","nodeType":"FunctionDefinition","parameters":{"id":3299,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3298,"mutability":"mutable","name":"_tokenId","nameLocation":"3714:8:29","nodeType":"VariableDeclaration","scope":3309,"src":"3706:16:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3297,"name":"uint256","nodeType":"ElementaryTypeName","src":"3706:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3705:18:29"},"returnParameters":{"id":3302,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3301,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3309,"src":"3747:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3300,"name":"uint256","nodeType":"ElementaryTypeName","src":"3747:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3746:9:29"},"scope":3619,"src":"3687:121:29","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":3321,"nodeType":"Block","src":"3918:59:29","statements":[{"expression":{"expression":{"baseExpression":{"id":3316,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"3935:8:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit storage ref)"}},"id":3318,"indexExpression":{"id":3317,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3311,"src":"3944:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3935:18:29","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage","typeString":"struct UniswapV3Base.Deposit storage ref"}},"id":3319,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberName":"derivedLiquidity","nodeType":"MemberAccess","referencedDeclaration":3116,"src":"3935:35:29","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":3315,"id":3320,"nodeType":"Return","src":"3928:42:29"}]},"functionSelector":"03f3e30e","id":3322,"implemented":true,"kind":"function","modifiers":[],"name":"derivedLiquidity","nameLocation":"3823:16:29","nodeType":"FunctionDefinition","parameters":{"id":3312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3311,"mutability":"mutable","name":"_tokenId","nameLocation":"3848:8:29","nodeType":"VariableDeclaration","scope":3322,"src":"3840:16:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3310,"name":"uint256","nodeType":"ElementaryTypeName","src":"3840:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3839:18:29"},"returnParameters":{"id":3315,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3314,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3322,"src":"3905:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3313,"name":"uint256","nodeType":"ElementaryTypeName","src":"3905:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3904:9:29"},"scope":3619,"src":"3814:163:29","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":3336,"nodeType":"Block","src":"4049:87:29","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3330,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3327,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"4066:5:29","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"timestamp","nodeType":"MemberAccess","src":"4066:15:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":3329,"name":"periodFinish","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3127,"src":"4084:12:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4066:30:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":3333,"name":"periodFinish","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3127,"src":"4117:12:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3334,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"4066:63:29","trueExpression":{"expression":{"id":3331,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"4099:5:29","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"timestamp","nodeType":"MemberAccess","src":"4099:15:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3326,"id":3335,"nodeType":"Return","src":"4059:70:29"}]},"functionSelector":"80faa57d","id":3337,"implemented":true,"kind":"function","modifiers":[],"name":"lastTimeRewardApplicable","nameLocation":"3992:24:29","nodeType":"FunctionDefinition","parameters":{"id":3323,"nodeType":"ParameterList","parameters":[],"src":"4016:2:29"},"returnParameters":{"id":3326,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3325,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3337,"src":"4040:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3324,"name":"uint256","nodeType":"ElementaryTypeName","src":"4040:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4039:9:29"},"scope":3619,"src":"3983:153:29","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":3366,"nodeType":"Block","src":"4198:324:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3342,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3146,"src":"4212:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":3343,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4227:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4212:16:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3347,"nodeType":"IfStatement","src":"4208:49:29","trueBody":{"expression":{"id":3345,"name":"rewardPerTokenStored","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3137,"src":"4237:20:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3341,"id":3346,"nodeType":"Return","src":"4230:27:29"}},{"expression":{"arguments":[{"arguments":[{"id":3362,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3146,"src":"4489:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"hexValue":"31653138","id":3359,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4458:4:29","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"}],"expression":{"arguments":[{"id":3356,"name":"rewardRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3130,"src":"4421:10:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":3353,"name":"lastUpdateTime","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3135,"src":"4380:14:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":3350,"name":"lastTimeRewardApplicable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3337,"src":"4328:24:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":3351,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4328:26:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sub","nodeType":"MemberAccess","referencedDeclaration":1456,"src":"4328:51:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":3354,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4328:67:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"mul","nodeType":"MemberAccess","referencedDeclaration":1471,"src":"4328:92:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":3357,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4328:104:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"mul","nodeType":"MemberAccess","referencedDeclaration":1471,"src":"4328:129:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":3360,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4328:135:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3361,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"div","nodeType":"MemberAccess","referencedDeclaration":1486,"src":"4328:160:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":3363,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4328:173:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":3348,"name":"rewardPerTokenStored","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3137,"src":"4286:20:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3349,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"add","nodeType":"MemberAccess","referencedDeclaration":1441,"src":"4286:24:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":3364,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4286:229:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3341,"id":3365,"nodeType":"Return","src":"4267:248:29"}]},"functionSelector":"cd3daf9d","id":3367,"implemented":true,"kind":"function","modifiers":[],"name":"rewardPerToken","nameLocation":"4151:14:29","nodeType":"FunctionDefinition","parameters":{"id":3338,"nodeType":"ParameterList","parameters":[],"src":"4165:2:29"},"returnParameters":{"id":3341,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3340,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3367,"src":"4189:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3339,"name":"uint256","nodeType":"ElementaryTypeName","src":"4189:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4188:9:29"},"scope":3619,"src":"4142:380:29","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":3396,"nodeType":"Block","src":"4592:232:29","statements":[{"expression":{"arguments":[{"baseExpression":{"id":3391,"name":"rewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3157,"src":"4799:7:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3393,"indexExpression":{"id":3392,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3369,"src":"4807:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4799:17:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"hexValue":"31653138","id":3388,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4772:4:29","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"}],"expression":{"arguments":[{"arguments":[{"baseExpression":{"id":3382,"name":"userRewardPerTokenPaid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3144,"src":"4716:22:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3384,"indexExpression":{"id":3383,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3369,"src":"4739:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4716:32:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":3379,"name":"rewardPerToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3367,"src":"4695:14:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":3380,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4695:16:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3381,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sub","nodeType":"MemberAccess","referencedDeclaration":1456,"src":"4695:20:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":3385,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4695:54:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"baseExpression":{"id":3374,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"4621:8:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit storage ref)"}},"id":3376,"indexExpression":{"id":3375,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3369,"src":"4630:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4621:18:29","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage","typeString":"struct UniswapV3Base.Deposit storage ref"}},"id":3377,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberName":"derivedLiquidity","nodeType":"MemberAccess","referencedDeclaration":3116,"src":"4621:52:29","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":3378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"mul","nodeType":"MemberAccess","referencedDeclaration":1471,"src":"4621:73:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":3386,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4621:129:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"div","nodeType":"MemberAccess","referencedDeclaration":1486,"src":"4621:150:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":3389,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4621:156:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3390,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"add","nodeType":"MemberAccess","referencedDeclaration":1441,"src":"4621:177:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":3394,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4621:196:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3373,"id":3395,"nodeType":"Return","src":"4602:215:29"}]},"functionSelector":"4d6ed8c4","id":3397,"implemented":true,"kind":"function","modifiers":[],"name":"earned","nameLocation":"4537:6:29","nodeType":"FunctionDefinition","parameters":{"id":3370,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3369,"mutability":"mutable","name":"_tokenId","nameLocation":"4552:8:29","nodeType":"VariableDeclaration","scope":3397,"src":"4544:16:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3368,"name":"uint256","nodeType":"ElementaryTypeName","src":"4544:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4543:18:29"},"returnParameters":{"id":3373,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3372,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3397,"src":"4583:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3371,"name":"uint256","nodeType":"ElementaryTypeName","src":"4583:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4582:9:29"},"scope":3619,"src":"4528:296:29","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":3407,"nodeType":"Block","src":"4894:55:29","statements":[{"expression":{"arguments":[{"id":3404,"name":"rewardsDuration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3133,"src":"4926:15:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":3402,"name":"rewardRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3130,"src":"4911:10:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"mul","nodeType":"MemberAccess","referencedDeclaration":1471,"src":"4911:14:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":3405,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"4911:31:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3401,"id":3406,"nodeType":"Return","src":"4904:38:29"}]},"functionSelector":"1c1f78eb","id":3408,"implemented":true,"kind":"function","modifiers":[],"name":"getRewardForDuration","nameLocation":"4839:20:29","nodeType":"FunctionDefinition","parameters":{"id":3398,"nodeType":"ParameterList","parameters":[],"src":"4859:2:29"},"returnParameters":{"id":3401,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3400,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3408,"src":"4885:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3399,"name":"uint256","nodeType":"ElementaryTypeName","src":"4885:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4884:9:29"},"scope":3619,"src":"4830:119:29","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":3436,"nodeType":"Block","src":"5318:136:29","statements":[{"assignments":[3417],"declarations":[{"constant":false,"id":3417,"mutability":"mutable","name":"length","nameLocation":"5336:6:29","nodeType":"VariableDeclaration","scope":3436,"src":"5328:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3416,"name":"uint256","nodeType":"ElementaryTypeName","src":"5328:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3421,"initialValue":{"baseExpression":{"id":3418,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"5345:9:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3420,"indexExpression":{"id":3419,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3411,"src":"5355:2:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5345:13:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5328:30:29"},{"expression":{"id":3428,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":3422,"name":"_ownedTokens","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3181,"src":"5368:12:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"}},"id":3425,"indexExpression":{"id":3423,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3411,"src":"5381:2:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5368:16:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3426,"indexExpression":{"id":3424,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3417,"src":"5385:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"5368:24:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3427,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3413,"src":"5395:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5368:34:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3429,"nodeType":"ExpressionStatement","src":"5368:34:29"},{"expression":{"id":3434,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3430,"name":"_ownedTokensIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3186,"src":"5412:17:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3432,"indexExpression":{"id":3431,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3413,"src":"5430:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"5412:26:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3433,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3417,"src":"5441:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5412:35:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3435,"nodeType":"ExpressionStatement","src":"5412:35:29"}]},"documentation":{"id":3409,"nodeType":"StructuredDocumentation","src":"4955:283:29","text":" @dev Private function to add a token to this extension's ownership-tracking data structures.\n @param to address representing the new owner of the given token ID\n @param tokenId uint256 ID of the token to be added to the tokens list of the given address"},"id":3437,"implemented":true,"kind":"function","modifiers":[],"name":"_addTokenToOwnerEnumeration","nameLocation":"5252:27:29","nodeType":"FunctionDefinition","parameters":{"id":3414,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3411,"mutability":"mutable","name":"to","nameLocation":"5288:2:29","nodeType":"VariableDeclaration","scope":3437,"src":"5280:10:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3410,"name":"address","nodeType":"ElementaryTypeName","src":"5280:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3413,"mutability":"mutable","name":"tokenId","nameLocation":"5300:7:29","nodeType":"VariableDeclaration","scope":3437,"src":"5292:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3412,"name":"uint256","nodeType":"ElementaryTypeName","src":"5292:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5279:29:29"},"returnParameters":{"id":3415,"nodeType":"ParameterList","parameters":[],"src":"5318:0:29"},"scope":3619,"src":"5243:211:29","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3456,"nodeType":"Block","src":"5716:95:29","statements":[{"expression":{"id":3448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3443,"name":"_allTokensIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3195,"src":"5726:15:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3445,"indexExpression":{"id":3444,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3440,"src":"5742:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"5726:24:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":3446,"name":"_allTokens","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3190,"src":"5753:10:29","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage","typeString":"uint256[] storage ref"}},"id":3447,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"length","nodeType":"MemberAccess","src":"5753:17:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5726:44:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3449,"nodeType":"ExpressionStatement","src":"5726:44:29"},{"expression":{"arguments":[{"id":3453,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3440,"src":"5796:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":3450,"name":"_allTokens","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3190,"src":"5780:10:29","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage","typeString":"uint256[] storage ref"}},"id":3452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"push","nodeType":"MemberAccess","src":"5780:15:29","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_uint256_$dyn_storage_ptr_$_t_uint256_$returns$__$bound_to$_t_array$_t_uint256_$dyn_storage_ptr_$","typeString":"function (uint256[] storage pointer,uint256)"}},"id":3454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"5780:24:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3455,"nodeType":"ExpressionStatement","src":"5780:24:29"}]},"documentation":{"id":3438,"nodeType":"StructuredDocumentation","src":"5460:184:29","text":" @dev Private function to add a token to this extension's token tracking data structures.\n @param tokenId uint256 ID of the token to be added to the tokens list"},"id":3457,"implemented":true,"kind":"function","modifiers":[],"name":"_addTokenToAllTokensEnumeration","nameLocation":"5658:31:29","nodeType":"FunctionDefinition","parameters":{"id":3441,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3440,"mutability":"mutable","name":"tokenId","nameLocation":"5698:7:29","nodeType":"VariableDeclaration","scope":3457,"src":"5690:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3439,"name":"uint256","nodeType":"ElementaryTypeName","src":"5690:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5689:17:29"},"returnParameters":{"id":3442,"nodeType":"ParameterList","parameters":[],"src":"5716:0:29"},"scope":3619,"src":"5649:162:29","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3516,"nodeType":"Block","src":"6522:878:29","statements":[{"assignments":[3466],"declarations":[{"constant":false,"id":3466,"mutability":"mutable","name":"lastTokenIndex","nameLocation":"6711:14:29","nodeType":"VariableDeclaration","scope":3516,"src":"6703:22:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3465,"name":"uint256","nodeType":"ElementaryTypeName","src":"6703:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3470,"initialValue":{"baseExpression":{"id":3467,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"6728:9:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3469,"indexExpression":{"id":3468,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3460,"src":"6738:4:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6728:15:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6703:40:29"},{"assignments":[3472],"declarations":[{"constant":false,"id":3472,"mutability":"mutable","name":"tokenIndex","nameLocation":"6761:10:29","nodeType":"VariableDeclaration","scope":3516,"src":"6753:18:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3471,"name":"uint256","nodeType":"ElementaryTypeName","src":"6753:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3476,"initialValue":{"baseExpression":{"id":3473,"name":"_ownedTokensIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3186,"src":"6774:17:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3475,"indexExpression":{"id":3474,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3462,"src":"6792:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6774:26:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6753:47:29"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3479,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3477,"name":"tokenIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3472,"src":"6904:10:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":3478,"name":"lastTokenIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3466,"src":"6918:14:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6904:28:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3503,"nodeType":"IfStatement","src":"6900:323:29","trueBody":{"id":3502,"nodeType":"Block","src":"6934:289:29","statements":[{"assignments":[3481],"declarations":[{"constant":false,"id":3481,"mutability":"mutable","name":"lastTokenId","nameLocation":"6956:11:29","nodeType":"VariableDeclaration","scope":3502,"src":"6948:19:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3480,"name":"uint256","nodeType":"ElementaryTypeName","src":"6948:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3487,"initialValue":{"baseExpression":{"baseExpression":{"id":3482,"name":"_ownedTokens","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3181,"src":"6970:12:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"}},"id":3484,"indexExpression":{"id":3483,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3460,"src":"6983:4:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6970:18:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3486,"indexExpression":{"id":3485,"name":"lastTokenIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3466,"src":"6989:14:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6970:34:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6948:56:29"},{"expression":{"id":3494,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":3488,"name":"_ownedTokens","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3181,"src":"7019:12:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"}},"id":3491,"indexExpression":{"id":3489,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3460,"src":"7032:4:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7019:18:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3492,"indexExpression":{"id":3490,"name":"tokenIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3472,"src":"7038:10:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7019:30:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3493,"name":"lastTokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3481,"src":"7052:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7019:44:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3495,"nodeType":"ExpressionStatement","src":"7019:44:29"},{"expression":{"id":3500,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3496,"name":"_ownedTokensIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3186,"src":"7135:17:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3498,"indexExpression":{"id":3497,"name":"lastTokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3481,"src":"7153:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7135:30:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3499,"name":"tokenIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3472,"src":"7168:10:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7135:43:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3501,"nodeType":"ExpressionStatement","src":"7135:43:29"}]}},{"expression":{"id":3507,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"7309:33:29","subExpression":{"baseExpression":{"id":3504,"name":"_ownedTokensIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3186,"src":"7316:17:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3506,"indexExpression":{"id":3505,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3462,"src":"7334:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7316:26:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3508,"nodeType":"ExpressionStatement","src":"7309:33:29"},{"expression":{"id":3514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"7352:41:29","subExpression":{"baseExpression":{"baseExpression":{"id":3509,"name":"_ownedTokens","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3181,"src":"7359:12:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"}},"id":3511,"indexExpression":{"id":3510,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3460,"src":"7372:4:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7359:18:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3513,"indexExpression":{"id":3512,"name":"lastTokenIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3466,"src":"7378:14:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7359:34:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3515,"nodeType":"ExpressionStatement","src":"7352:41:29"}]},"documentation":{"id":3458,"nodeType":"StructuredDocumentation","src":"5817:606:29","text":" @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that\n while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for\n gas optimizations e.g. when performing a transfer operation (avoiding double writes).\n This has O(1) time complexity, but alters the order of the _ownedTokens array.\n @param from address representing the previous owner of the given token ID\n @param tokenId uint256 ID of the token to be removed from the tokens list of the given address"},"id":3517,"implemented":true,"kind":"function","modifiers":[],"name":"_removeTokenFromOwnerEnumeration","nameLocation":"6437:32:29","nodeType":"FunctionDefinition","parameters":{"id":3463,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3460,"mutability":"mutable","name":"from","nameLocation":"6478:4:29","nodeType":"VariableDeclaration","scope":3517,"src":"6470:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3459,"name":"address","nodeType":"ElementaryTypeName","src":"6470:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3462,"mutability":"mutable","name":"tokenId","nameLocation":"6492:7:29","nodeType":"VariableDeclaration","scope":3517,"src":"6484:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3461,"name":"uint256","nodeType":"ElementaryTypeName","src":"6484:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6469:31:29"},"returnParameters":{"id":3464,"nodeType":"ParameterList","parameters":[],"src":"6522:0:29"},"scope":3619,"src":"6428:972:29","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3564,"nodeType":"Block","src":"7760:990:29","statements":[{"assignments":[3524],"declarations":[{"constant":false,"id":3524,"mutability":"mutable","name":"lastTokenIndex","nameLocation":"7946:14:29","nodeType":"VariableDeclaration","scope":3564,"src":"7938:22:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3523,"name":"uint256","nodeType":"ElementaryTypeName","src":"7938:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3529,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3528,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3525,"name":"_allTokens","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3190,"src":"7963:10:29","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage","typeString":"uint256[] storage ref"}},"id":3526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"length","nodeType":"MemberAccess","src":"7963:17:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":3527,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7983:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7963:21:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7938:46:29"},{"assignments":[3531],"declarations":[{"constant":false,"id":3531,"mutability":"mutable","name":"tokenIndex","nameLocation":"8002:10:29","nodeType":"VariableDeclaration","scope":3564,"src":"7994:18:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3530,"name":"uint256","nodeType":"ElementaryTypeName","src":"7994:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3535,"initialValue":{"baseExpression":{"id":3532,"name":"_allTokensIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3195,"src":"8015:15:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3534,"indexExpression":{"id":3533,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3520,"src":"8031:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8015:24:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7994:45:29"},{"assignments":[3537],"declarations":[{"constant":false,"id":3537,"mutability":"mutable","name":"lastTokenId","nameLocation":"8369:11:29","nodeType":"VariableDeclaration","scope":3564,"src":"8361:19:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3536,"name":"uint256","nodeType":"ElementaryTypeName","src":"8361:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3541,"initialValue":{"baseExpression":{"id":3538,"name":"_allTokens","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3190,"src":"8383:10:29","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage","typeString":"uint256[] storage ref"}},"id":3540,"indexExpression":{"id":3539,"name":"lastTokenIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3524,"src":"8394:14:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8383:26:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8361:48:29"},{"expression":{"id":3546,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3542,"name":"_allTokens","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3190,"src":"8420:10:29","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage","typeString":"uint256[] storage ref"}},"id":3544,"indexExpression":{"id":3543,"name":"tokenIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3531,"src":"8431:10:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"8420:22:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3545,"name":"lastTokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3537,"src":"8445:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8420:36:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3547,"nodeType":"ExpressionStatement","src":"8420:36:29"},{"expression":{"id":3552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3548,"name":"_allTokensIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3195,"src":"8524:15:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3550,"indexExpression":{"id":3549,"name":"lastTokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3537,"src":"8540:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"8524:28:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3551,"name":"tokenIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3531,"src":"8555:10:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8524:41:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3553,"nodeType":"ExpressionStatement","src":"8524:41:29"},{"expression":{"id":3557,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"8686:31:29","subExpression":{"baseExpression":{"id":3554,"name":"_allTokensIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3195,"src":"8693:15:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3556,"indexExpression":{"id":3555,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3520,"src":"8709:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"8693:24:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3558,"nodeType":"ExpressionStatement","src":"8686:31:29"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":3559,"name":"_allTokens","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3190,"src":"8727:10:29","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage","typeString":"uint256[] storage ref"}},"id":3561,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"pop","nodeType":"MemberAccess","src":"8727:14:29","typeDescriptions":{"typeIdentifier":"t_function_arraypop_nonpayable$_t_array$_t_uint256_$dyn_storage_ptr_$returns$__$bound_to$_t_array$_t_uint256_$dyn_storage_ptr_$","typeString":"function (uint256[] storage pointer)"}},"id":3562,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"8727:16:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3563,"nodeType":"ExpressionStatement","src":"8727:16:29"}]},"documentation":{"id":3518,"nodeType":"StructuredDocumentation","src":"7406:277:29","text":" @dev Private function to remove a token from this extension's token tracking data structures.\n This has O(1) time complexity, but alters the order of the _allTokens array.\n @param tokenId uint256 ID of the token to be removed from the tokens list"},"id":3565,"implemented":true,"kind":"function","modifiers":[],"name":"_removeTokenFromAllTokensEnumeration","nameLocation":"7697:36:29","nodeType":"FunctionDefinition","parameters":{"id":3521,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3520,"mutability":"mutable","name":"tokenId","nameLocation":"7742:7:29","nodeType":"VariableDeclaration","scope":3565,"src":"7734:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3519,"name":"uint256","nodeType":"ElementaryTypeName","src":"7734:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7733:17:29"},"returnParameters":{"id":3522,"nodeType":"ParameterList","parameters":[],"src":"7760:0:29"},"scope":3619,"src":"7688:1062:29","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3581,"nodeType":"Block","src":"8798:97:29","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3576,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":3570,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"8816:8:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Deposit_$3117_storage_$","typeString":"mapping(uint256 => struct UniswapV3Base.Deposit storage ref)"}},"id":3572,"indexExpression":{"id":3571,"name":"_tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3567,"src":"8825:8:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8816:18:29","typeDescriptions":{"typeIdentifier":"t_struct$_Deposit_$3117_storage","typeString":"struct UniswapV3Base.Deposit storage ref"}},"id":3573,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberName":"owner","nodeType":"MemberAccess","referencedDeclaration":3112,"src":"8816:24:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":3574,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8844:3:29","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3575,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"sender","nodeType":"MemberAccess","src":"8844:10:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8816:38:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6f6e6c7920746f6b656e6964206f776e6572","id":3577,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8856:20:29","typeDescriptions":{"typeIdentifier":"t_stringliteral_1c4669339db1b9128f87a0e23d1b39c4647e9f6c39f951c47e41f9dced5e33fc","typeString":"literal_string \"only tokenid owner\""},"value":"only tokenid owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1c4669339db1b9128f87a0e23d1b39c4647e9f6c39f951c47e41f9dced5e33fc","typeString":"literal_string \"only tokenid owner\""}],"id":3569,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8808:7:29","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3578,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"8808:69:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3579,"nodeType":"ExpressionStatement","src":"8808:69:29"},{"id":3580,"nodeType":"PlaceholderStatement","src":"8887:1:29"}]},"id":3582,"name":"onlyTokenOwner","nameLocation":"8765:14:29","nodeType":"ModifierDefinition","parameters":{"id":3568,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3567,"mutability":"mutable","name":"_tokenId","nameLocation":"8788:8:29","nodeType":"VariableDeclaration","scope":3582,"src":"8780:16:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3566,"name":"uint256","nodeType":"ElementaryTypeName","src":"8780:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8779:18:29"},"src":"8756:139:29","virtual":false,"visibility":"internal"},{"anonymous":false,"id":3586,"name":"RewardAdded","nameLocation":"8946:11:29","nodeType":"EventDefinition","parameters":{"id":3585,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3584,"indexed":false,"mutability":"mutable","name":"reward","nameLocation":"8966:6:29","nodeType":"VariableDeclaration","scope":3586,"src":"8958:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3583,"name":"uint256","nodeType":"ElementaryTypeName","src":"8958:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8957:16:29"},"src":"8940:34:29"},{"anonymous":false,"id":3596,"name":"Staked","nameLocation":"8985:6:29","nodeType":"EventDefinition","parameters":{"id":3595,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3588,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"9017:4:29","nodeType":"VariableDeclaration","scope":3596,"src":"9001:20:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3587,"name":"address","nodeType":"ElementaryTypeName","src":"9001:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3590,"indexed":false,"mutability":"mutable","name":"tokenId","nameLocation":"9039:7:29","nodeType":"VariableDeclaration","scope":3596,"src":"9031:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3589,"name":"uint256","nodeType":"ElementaryTypeName","src":"9031:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3592,"indexed":false,"mutability":"mutable","name":"liquidty","nameLocation":"9064:8:29","nodeType":"VariableDeclaration","scope":3596,"src":"9056:16:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":3591,"name":"uint128","nodeType":"ElementaryTypeName","src":"9056:7:29","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":3594,"indexed":false,"mutability":"mutable","name":"derivedLiquidity","nameLocation":"9090:16:29","nodeType":"VariableDeclaration","scope":3596,"src":"9082:24:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":3593,"name":"uint128","nodeType":"ElementaryTypeName","src":"9082:7:29","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"8991:121:29"},"src":"8979:134:29"},{"anonymous":false,"id":3602,"name":"Withdrawn","nameLocation":"9124:9:29","nodeType":"EventDefinition","parameters":{"id":3601,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3598,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"9150:4:29","nodeType":"VariableDeclaration","scope":3602,"src":"9134:20:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3597,"name":"address","nodeType":"ElementaryTypeName","src":"9134:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3600,"indexed":false,"mutability":"mutable","name":"tokenId","nameLocation":"9164:7:29","nodeType":"VariableDeclaration","scope":3602,"src":"9156:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3599,"name":"uint256","nodeType":"ElementaryTypeName","src":"9156:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9133:39:29"},"src":"9118:55:29"},{"anonymous":false,"id":3610,"name":"RewardPaid","nameLocation":"9184:10:29","nodeType":"EventDefinition","parameters":{"id":3609,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3604,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"9211:4:29","nodeType":"VariableDeclaration","scope":3610,"src":"9195:20:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3603,"name":"address","nodeType":"ElementaryTypeName","src":"9195:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3606,"indexed":false,"mutability":"mutable","name":"tokenId","nameLocation":"9225:7:29","nodeType":"VariableDeclaration","scope":3610,"src":"9217:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3605,"name":"uint256","nodeType":"ElementaryTypeName","src":"9217:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3608,"indexed":false,"mutability":"mutable","name":"reward","nameLocation":"9242:6:29","nodeType":"VariableDeclaration","scope":3610,"src":"9234:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3607,"name":"uint256","nodeType":"ElementaryTypeName","src":"9234:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9194:55:29"},"src":"9178:72:29"},{"anonymous":false,"id":3616,"name":"MaxBoostRequirementChanged","nameLocation":"9261:26:29","nodeType":"EventDefinition","parameters":{"id":3615,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3612,"indexed":false,"mutability":"mutable","name":"_old","nameLocation":"9296:4:29","nodeType":"VariableDeclaration","scope":3616,"src":"9288:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3611,"name":"uint256","nodeType":"ElementaryTypeName","src":"9288:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3614,"indexed":false,"mutability":"mutable","name":"_new","nameLocation":"9310:4:29","nodeType":"VariableDeclaration","scope":3616,"src":"9302:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3613,"name":"uint256","nodeType":"ElementaryTypeName","src":"9302:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9287:28:29"},"src":"9255:61:29"},{"anonymous":false,"id":3618,"name":"EmergencyModeEnabled","nameLocation":"9327:20:29","nodeType":"EventDefinition","parameters":{"id":3617,"nodeType":"ParameterList","parameters":[],"src":"9347:2:29"},"src":"9321:29:29"}],"scope":3620,"src":"762:8590:29","usedErrors":[]}],"src":"32:9321:29"},"id":29},"contracts/interfaces/IGauge.sol":{"ast":{"absolutePath":"contracts/interfaces/IGauge.sol","exportedSymbols":{"IGauge":[3652],"IRegistry":[4222]},"id":3653,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3621,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"33:23:30"},{"absolutePath":"contracts/interfaces/IRegistry.sol","file":"./IRegistry.sol","id":3623,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3653,"sourceUnit":4223,"src":"58:42:30","symbolAliases":[{"foreign":{"id":3622,"name":"IRegistry","nodeType":"Identifier","overloadedDeclarations":[],"src":"66:9:30","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":3652,"linearizedBaseContracts":[3652],"name":"IGauge","nameLocation":"112:6:30","nodeType":"ContractDefinition","nodes":[{"functionSelector":"b66503cf","id":3630,"implemented":false,"kind":"function","modifiers":[],"name":"notifyRewardAmount","nameLocation":"134:18:30","nodeType":"FunctionDefinition","parameters":{"id":3628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3625,"mutability":"mutable","name":"token","nameLocation":"161:5:30","nodeType":"VariableDeclaration","scope":3630,"src":"153:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3624,"name":"address","nodeType":"ElementaryTypeName","src":"153:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3627,"mutability":"mutable","name":"amount","nameLocation":"176:6:30","nodeType":"VariableDeclaration","scope":3630,"src":"168:14:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3626,"name":"uint256","nodeType":"ElementaryTypeName","src":"168:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"152:31:30"},"returnParameters":{"id":3629,"nodeType":"ParameterList","parameters":[],"src":"192:0:30"},"scope":3652,"src":"125:68:30","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"31279d3d","id":3638,"implemented":false,"kind":"function","modifiers":[],"name":"getReward","nameLocation":"208:9:30","nodeType":"FunctionDefinition","parameters":{"id":3636,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3632,"mutability":"mutable","name":"account","nameLocation":"226:7:30","nodeType":"VariableDeclaration","scope":3638,"src":"218:15:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3631,"name":"address","nodeType":"ElementaryTypeName","src":"218:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3635,"mutability":"mutable","name":"tokens","nameLocation":"252:6:30","nodeType":"VariableDeclaration","scope":3638,"src":"235:23:30","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":3633,"name":"address","nodeType":"ElementaryTypeName","src":"235:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3634,"nodeType":"ArrayTypeName","src":"235:9:30","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"}],"src":"217:42:30"},"returnParameters":{"id":3637,"nodeType":"ParameterList","parameters":[],"src":"268:0:30"},"scope":3652,"src":"199:70:30","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"7b103999","id":3644,"implemented":false,"kind":"function","modifiers":[],"name":"registry","nameLocation":"284:8:30","nodeType":"FunctionDefinition","parameters":{"id":3639,"nodeType":"ParameterList","parameters":[],"src":"292:2:30"},"returnParameters":{"id":3643,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3642,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3644,"src":"318:9:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRegistry_$4222","typeString":"contract IRegistry"},"typeName":{"id":3641,"nodeType":"UserDefinedTypeName","pathNode":{"id":3640,"name":"IRegistry","nodeType":"IdentifierPath","referencedDeclaration":4222,"src":"318:9:30"},"referencedDeclaration":4222,"src":"318:9:30","typeDescriptions":{"typeIdentifier":"t_contract$_IRegistry_$4222","typeString":"contract IRegistry"}},"visibility":"internal"}],"src":"317:11:30"},"scope":3652,"src":"275:54:30","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"99bcc052","id":3651,"implemented":false,"kind":"function","modifiers":[],"name":"left","nameLocation":"344:4:30","nodeType":"FunctionDefinition","parameters":{"id":3647,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3646,"mutability":"mutable","name":"token","nameLocation":"357:5:30","nodeType":"VariableDeclaration","scope":3651,"src":"349:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3645,"name":"address","nodeType":"ElementaryTypeName","src":"349:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"348:15:30"},"returnParameters":{"id":3650,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3649,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3651,"src":"387:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3648,"name":"uint256","nodeType":"ElementaryTypeName","src":"387:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"386:9:30"},"scope":3652,"src":"335:61:30","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":3653,"src":"102:296:30","usedErrors":[]}],"src":"33:366:30"},"id":30},"contracts/interfaces/IGaugeVoterV2.sol":{"ast":{"absolutePath":"contracts/interfaces/IGaugeVoterV2.sol","exportedSymbols":{"IGaugeVoterV2":[3793],"IRegistry":[4222]},"id":3794,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3654,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"33:23:31"},{"absolutePath":"contracts/interfaces/IRegistry.sol","file":"./IRegistry.sol","id":3656,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3794,"sourceUnit":4223,"src":"58:42:31","symbolAliases":[{"foreign":{"id":3655,"name":"IRegistry","nodeType":"Identifier","overloadedDeclarations":[],"src":"66:9:31","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":3793,"linearizedBaseContracts":[3793],"name":"IGaugeVoterV2","nameLocation":"112:13:31","nodeType":"ContractDefinition","nodes":[{"functionSelector":"97a302f7","id":3661,"implemented":false,"kind":"function","modifiers":[],"name":"attachStakerToGauge","nameLocation":"141:19:31","nodeType":"FunctionDefinition","parameters":{"id":3659,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3658,"mutability":"mutable","name":"account","nameLocation":"169:7:31","nodeType":"VariableDeclaration","scope":3661,"src":"161:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3657,"name":"address","nodeType":"ElementaryTypeName","src":"161:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"160:17:31"},"returnParameters":{"id":3660,"nodeType":"ParameterList","parameters":[],"src":"186:0:31"},"scope":3793,"src":"132:55:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"e32e4e88","id":3666,"implemented":false,"kind":"function","modifiers":[],"name":"detachStakerFromGauge","nameLocation":"202:21:31","nodeType":"FunctionDefinition","parameters":{"id":3664,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3663,"mutability":"mutable","name":"account","nameLocation":"232:7:31","nodeType":"VariableDeclaration","scope":3666,"src":"224:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3662,"name":"address","nodeType":"ElementaryTypeName","src":"224:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"223:17:31"},"returnParameters":{"id":3665,"nodeType":"ParameterList","parameters":[],"src":"249:0:31"},"scope":3793,"src":"193:57:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"63453ae1","id":3671,"implemented":false,"kind":"function","modifiers":[],"name":"distribute","nameLocation":"265:10:31","nodeType":"FunctionDefinition","parameters":{"id":3669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3668,"mutability":"mutable","name":"_gauge","nameLocation":"284:6:31","nodeType":"VariableDeclaration","scope":3671,"src":"276:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3667,"name":"address","nodeType":"ElementaryTypeName","src":"276:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"275:16:31"},"returnParameters":{"id":3670,"nodeType":"ParameterList","parameters":[],"src":"300:0:31"},"scope":3793,"src":"256:45:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"e4fc6b6d","id":3674,"implemented":false,"kind":"function","modifiers":[],"name":"distribute","nameLocation":"316:10:31","nodeType":"FunctionDefinition","parameters":{"id":3672,"nodeType":"ParameterList","parameters":[],"src":"326:2:31"},"returnParameters":{"id":3673,"nodeType":"ParameterList","parameters":[],"src":"337:0:31"},"scope":3793,"src":"307:31:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"6138889b","id":3680,"implemented":false,"kind":"function","modifiers":[],"name":"distribute","nameLocation":"353:10:31","nodeType":"FunctionDefinition","parameters":{"id":3678,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3677,"mutability":"mutable","name":"_gauges","nameLocation":"381:7:31","nodeType":"VariableDeclaration","scope":3680,"src":"364:24:31","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":3675,"name":"address","nodeType":"ElementaryTypeName","src":"364:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3676,"nodeType":"ArrayTypeName","src":"364:9:31","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"}],"src":"363:26:31"},"returnParameters":{"id":3679,"nodeType":"ParameterList","parameters":[],"src":"398:0:31"},"scope":3793,"src":"344:55:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"d826f88f","id":3683,"implemented":false,"kind":"function","modifiers":[],"name":"reset","nameLocation":"414:5:31","nodeType":"FunctionDefinition","parameters":{"id":3681,"nodeType":"ParameterList","parameters":[],"src":"419:2:31"},"returnParameters":{"id":3682,"nodeType":"ParameterList","parameters":[],"src":"430:0:31"},"scope":3793,"src":"405:26:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"20217176","id":3688,"implemented":false,"kind":"function","modifiers":[],"name":"resetFor","nameLocation":"446:8:31","nodeType":"FunctionDefinition","parameters":{"id":3686,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3685,"mutability":"mutable","name":"_who","nameLocation":"463:4:31","nodeType":"VariableDeclaration","scope":3688,"src":"455:12:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3684,"name":"address","nodeType":"ElementaryTypeName","src":"455:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"454:14:31"},"returnParameters":{"id":3687,"nodeType":"ParameterList","parameters":[],"src":"477:0:31"},"scope":3793,"src":"437:41:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"7b103999","id":3694,"implemented":false,"kind":"function","modifiers":[],"name":"registry","nameLocation":"493:8:31","nodeType":"FunctionDefinition","parameters":{"id":3689,"nodeType":"ParameterList","parameters":[],"src":"501:2:31"},"returnParameters":{"id":3693,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3692,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3694,"src":"527:9:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRegistry_$4222","typeString":"contract IRegistry"},"typeName":{"id":3691,"nodeType":"UserDefinedTypeName","pathNode":{"id":3690,"name":"IRegistry","nodeType":"IdentifierPath","referencedDeclaration":4222,"src":"527:9:31"},"referencedDeclaration":4222,"src":"527:9:31","typeDescriptions":{"typeIdentifier":"t_contract$_IRegistry_$4222","typeString":"contract IRegistry"}},"visibility":"internal"}],"src":"526:11:31"},"scope":3793,"src":"484:54:31","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"3c6b16ab","id":3699,"implemented":false,"kind":"function","modifiers":[],"name":"notifyRewardAmount","nameLocation":"553:18:31","nodeType":"FunctionDefinition","parameters":{"id":3697,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3696,"mutability":"mutable","name":"amount","nameLocation":"580:6:31","nodeType":"VariableDeclaration","scope":3699,"src":"572:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3695,"name":"uint256","nodeType":"ElementaryTypeName","src":"572:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"571:16:31"},"returnParameters":{"id":3698,"nodeType":"ParameterList","parameters":[],"src":"596:0:31"},"scope":3793,"src":"544:53:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"6405eacd","id":3706,"implemented":false,"kind":"function","modifiers":[],"name":"attachments","nameLocation":"612:11:31","nodeType":"FunctionDefinition","parameters":{"id":3702,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3701,"mutability":"mutable","name":"who","nameLocation":"632:3:31","nodeType":"VariableDeclaration","scope":3706,"src":"624:11:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3700,"name":"address","nodeType":"ElementaryTypeName","src":"624:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"623:13:31"},"returnParameters":{"id":3705,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3704,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3706,"src":"660:7:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3703,"name":"uint256","nodeType":"ElementaryTypeName","src":"660:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"659:9:31"},"scope":3793,"src":"603:66:31","stateMutability":"view","virtual":false,"visibility":"external"},{"anonymous":false,"id":3716,"name":"GaugeCreated","nameLocation":"681:12:31","nodeType":"EventDefinition","parameters":{"id":3715,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3708,"indexed":true,"mutability":"mutable","name":"gauge","nameLocation":"719:5:31","nodeType":"VariableDeclaration","scope":3716,"src":"703:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3707,"name":"address","nodeType":"ElementaryTypeName","src":"703:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3710,"indexed":false,"mutability":"mutable","name":"creator","nameLocation":"742:7:31","nodeType":"VariableDeclaration","scope":3716,"src":"734:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3709,"name":"address","nodeType":"ElementaryTypeName","src":"734:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3712,"indexed":true,"mutability":"mutable","name":"bribe","nameLocation":"775:5:31","nodeType":"VariableDeclaration","scope":3716,"src":"759:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3711,"name":"address","nodeType":"ElementaryTypeName","src":"759:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3714,"indexed":true,"mutability":"mutable","name":"pool","nameLocation":"806:4:31","nodeType":"VariableDeclaration","scope":3716,"src":"790:20:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3713,"name":"address","nodeType":"ElementaryTypeName","src":"790:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"693:123:31"},"src":"675:142:31"},{"anonymous":false,"id":3726,"name":"GaugeUpdated","nameLocation":"828:12:31","nodeType":"EventDefinition","parameters":{"id":3725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3718,"indexed":true,"mutability":"mutable","name":"gauge","nameLocation":"866:5:31","nodeType":"VariableDeclaration","scope":3726,"src":"850:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3717,"name":"address","nodeType":"ElementaryTypeName","src":"850:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3720,"indexed":false,"mutability":"mutable","name":"creator","nameLocation":"889:7:31","nodeType":"VariableDeclaration","scope":3726,"src":"881:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3719,"name":"address","nodeType":"ElementaryTypeName","src":"881:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3722,"indexed":true,"mutability":"mutable","name":"bribe","nameLocation":"922:5:31","nodeType":"VariableDeclaration","scope":3726,"src":"906:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3721,"name":"address","nodeType":"ElementaryTypeName","src":"906:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3724,"indexed":true,"mutability":"mutable","name":"pool","nameLocation":"953:4:31","nodeType":"VariableDeclaration","scope":3726,"src":"937:20:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3723,"name":"address","nodeType":"ElementaryTypeName","src":"937:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"840:123:31"},"src":"822:142:31"},{"anonymous":false,"id":3734,"name":"Voted","nameLocation":"975:5:31","nodeType":"EventDefinition","parameters":{"id":3733,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3728,"indexed":true,"mutability":"mutable","name":"voter","nameLocation":"997:5:31","nodeType":"VariableDeclaration","scope":3734,"src":"981:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3727,"name":"address","nodeType":"ElementaryTypeName","src":"981:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3730,"indexed":false,"mutability":"mutable","name":"tokenId","nameLocation":"1012:7:31","nodeType":"VariableDeclaration","scope":3734,"src":"1004:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3729,"name":"address","nodeType":"ElementaryTypeName","src":"1004:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3732,"indexed":false,"mutability":"mutable","name":"weight","nameLocation":"1028:6:31","nodeType":"VariableDeclaration","scope":3734,"src":"1021:13:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3731,"name":"int256","nodeType":"ElementaryTypeName","src":"1021:6:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"980:55:31"},"src":"969:67:31"},{"anonymous":false,"id":3740,"name":"Abstained","nameLocation":"1047:9:31","nodeType":"EventDefinition","parameters":{"id":3739,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3736,"indexed":false,"mutability":"mutable","name":"tokenId","nameLocation":"1065:7:31","nodeType":"VariableDeclaration","scope":3740,"src":"1057:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3735,"name":"address","nodeType":"ElementaryTypeName","src":"1057:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3738,"indexed":false,"mutability":"mutable","name":"weight","nameLocation":"1081:6:31","nodeType":"VariableDeclaration","scope":3740,"src":"1074:13:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3737,"name":"int256","nodeType":"ElementaryTypeName","src":"1074:6:31","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1056:32:31"},"src":"1041:48:31"},{"anonymous":false,"id":3748,"name":"Deposit","nameLocation":"1100:7:31","nodeType":"EventDefinition","parameters":{"id":3747,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3742,"indexed":true,"mutability":"mutable","name":"lp","nameLocation":"1124:2:31","nodeType":"VariableDeclaration","scope":3748,"src":"1108:18:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3741,"name":"address","nodeType":"ElementaryTypeName","src":"1108:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3744,"indexed":true,"mutability":"mutable","name":"gauge","nameLocation":"1144:5:31","nodeType":"VariableDeclaration","scope":3748,"src":"1128:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3743,"name":"address","nodeType":"ElementaryTypeName","src":"1128:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3746,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"1159:6:31","nodeType":"VariableDeclaration","scope":3748,"src":"1151:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3745,"name":"uint256","nodeType":"ElementaryTypeName","src":"1151:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1107:59:31"},"src":"1094:73:31"},{"anonymous":false,"id":3756,"name":"Withdraw","nameLocation":"1178:8:31","nodeType":"EventDefinition","parameters":{"id":3755,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3750,"indexed":true,"mutability":"mutable","name":"lp","nameLocation":"1203:2:31","nodeType":"VariableDeclaration","scope":3756,"src":"1187:18:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3749,"name":"address","nodeType":"ElementaryTypeName","src":"1187:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3752,"indexed":true,"mutability":"mutable","name":"gauge","nameLocation":"1223:5:31","nodeType":"VariableDeclaration","scope":3756,"src":"1207:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3751,"name":"address","nodeType":"ElementaryTypeName","src":"1207:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3754,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"1238:6:31","nodeType":"VariableDeclaration","scope":3756,"src":"1230:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3753,"name":"uint256","nodeType":"ElementaryTypeName","src":"1230:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1186:59:31"},"src":"1172:74:31"},{"anonymous":false,"id":3764,"name":"NotifyReward","nameLocation":"1257:12:31","nodeType":"EventDefinition","parameters":{"id":3763,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3758,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1295:6:31","nodeType":"VariableDeclaration","scope":3764,"src":"1279:22:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3757,"name":"address","nodeType":"ElementaryTypeName","src":"1279:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3760,"indexed":true,"mutability":"mutable","name":"reward","nameLocation":"1327:6:31","nodeType":"VariableDeclaration","scope":3764,"src":"1311:22:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3759,"name":"address","nodeType":"ElementaryTypeName","src":"1311:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3762,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"1351:6:31","nodeType":"VariableDeclaration","scope":3764,"src":"1343:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3761,"name":"uint256","nodeType":"ElementaryTypeName","src":"1343:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1269:94:31"},"src":"1251:113:31"},{"anonymous":false,"id":3772,"name":"DistributeReward","nameLocation":"1375:16:31","nodeType":"EventDefinition","parameters":{"id":3771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3766,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1417:6:31","nodeType":"VariableDeclaration","scope":3772,"src":"1401:22:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3765,"name":"address","nodeType":"ElementaryTypeName","src":"1401:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3768,"indexed":true,"mutability":"mutable","name":"gauge","nameLocation":"1449:5:31","nodeType":"VariableDeclaration","scope":3772,"src":"1433:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3767,"name":"address","nodeType":"ElementaryTypeName","src":"1433:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3770,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"1472:6:31","nodeType":"VariableDeclaration","scope":3772,"src":"1464:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3769,"name":"uint256","nodeType":"ElementaryTypeName","src":"1464:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1391:93:31"},"src":"1369:116:31"},{"anonymous":false,"id":3778,"name":"Attach","nameLocation":"1496:6:31","nodeType":"EventDefinition","parameters":{"id":3777,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3774,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"1519:5:31","nodeType":"VariableDeclaration","scope":3778,"src":"1503:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3773,"name":"address","nodeType":"ElementaryTypeName","src":"1503:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3776,"indexed":true,"mutability":"mutable","name":"gauge","nameLocation":"1542:5:31","nodeType":"VariableDeclaration","scope":3778,"src":"1526:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3775,"name":"address","nodeType":"ElementaryTypeName","src":"1526:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1502:46:31"},"src":"1490:59:31"},{"anonymous":false,"id":3784,"name":"Detach","nameLocation":"1560:6:31","nodeType":"EventDefinition","parameters":{"id":3783,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3780,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"1583:5:31","nodeType":"VariableDeclaration","scope":3784,"src":"1567:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3779,"name":"address","nodeType":"ElementaryTypeName","src":"1567:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3782,"indexed":true,"mutability":"mutable","name":"gauge","nameLocation":"1606:5:31","nodeType":"VariableDeclaration","scope":3784,"src":"1590:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3781,"name":"address","nodeType":"ElementaryTypeName","src":"1590:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1566:46:31"},"src":"1554:59:31"},{"anonymous":false,"id":3792,"name":"Whitelisted","nameLocation":"1624:11:31","nodeType":"EventDefinition","parameters":{"id":3791,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3786,"indexed":true,"mutability":"mutable","name":"whitelister","nameLocation":"1661:11:31","nodeType":"VariableDeclaration","scope":3792,"src":"1645:27:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3785,"name":"address","nodeType":"ElementaryTypeName","src":"1645:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3788,"indexed":true,"mutability":"mutable","name":"token","nameLocation":"1698:5:31","nodeType":"VariableDeclaration","scope":3792,"src":"1682:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3787,"name":"address","nodeType":"ElementaryTypeName","src":"1682:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3790,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"1718:5:31","nodeType":"VariableDeclaration","scope":3792,"src":"1713:10:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3789,"name":"bool","nodeType":"ElementaryTypeName","src":"1713:4:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1635:94:31"},"src":"1618:112:31"}],"scope":3794,"src":"102:1630:31","usedErrors":[]}],"src":"33:1700:31"},"id":31},"contracts/interfaces/INFTStaker.sol":{"ast":{"absolutePath":"contracts/interfaces/INFTStaker.sol","exportedSymbols":{"INFTStaker":[3892],"IRegistry":[4222],"IVotes":[488]},"id":3893,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3795,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"33:23:32"},{"absolutePath":"contracts/interfaces/IRegistry.sol","file":"./IRegistry.sol","id":3797,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3893,"sourceUnit":4223,"src":"58:42:32","symbolAliases":[{"foreign":{"id":3796,"name":"IRegistry","nodeType":"Identifier","overloadedDeclarations":[],"src":"66:9:32","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/utils/IVotes.sol","file":"@openzeppelin/contracts/governance/utils/IVotes.sol","id":3799,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3893,"sourceUnit":489,"src":"101:75:32","symbolAliases":[{"foreign":{"id":3798,"name":"IVotes","nodeType":"Identifier","overloadedDeclarations":[],"src":"109:6:32","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":3800,"name":"IVotes","nodeType":"IdentifierPath","referencedDeclaration":488,"src":"202:6:32"},"id":3801,"nodeType":"InheritanceSpecifier","src":"202:6:32"}],"contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":3892,"linearizedBaseContracts":[3892,488],"name":"INFTStaker","nameLocation":"188:10:32","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"id":3809,"name":"Transfer","nameLocation":"221:8:32","nodeType":"EventDefinition","parameters":{"id":3808,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3803,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"246:4:32","nodeType":"VariableDeclaration","scope":3809,"src":"230:20:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3802,"name":"address","nodeType":"ElementaryTypeName","src":"230:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3805,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"268:2:32","nodeType":"VariableDeclaration","scope":3809,"src":"252:18:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3804,"name":"address","nodeType":"ElementaryTypeName","src":"252:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3807,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"280:5:32","nodeType":"VariableDeclaration","scope":3809,"src":"272:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3806,"name":"uint256","nodeType":"ElementaryTypeName","src":"272:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"229:57:32"},"src":"215:72:32"},{"functionSelector":"06fdde03","id":3814,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"302:4:32","nodeType":"FunctionDefinition","parameters":{"id":3810,"nodeType":"ParameterList","parameters":[],"src":"306:2:32"},"returnParameters":{"id":3813,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3812,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3814,"src":"332:13:32","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3811,"name":"string","nodeType":"ElementaryTypeName","src":"332:6:32","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"331:15:32"},"scope":3892,"src":"293:54:32","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"95d89b41","id":3819,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"362:6:32","nodeType":"FunctionDefinition","parameters":{"id":3815,"nodeType":"ParameterList","parameters":[],"src":"368:2:32"},"returnParameters":{"id":3818,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3817,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3819,"src":"394:13:32","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3816,"name":"string","nodeType":"ElementaryTypeName","src":"394:6:32","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"393:15:32"},"scope":3892,"src":"353:56:32","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"313ce567","id":3824,"implemented":false,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"424:8:32","nodeType":"FunctionDefinition","parameters":{"id":3820,"nodeType":"ParameterList","parameters":[],"src":"432:2:32"},"returnParameters":{"id":3823,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3822,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3824,"src":"458:5:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":3821,"name":"uint8","nodeType":"ElementaryTypeName","src":"458:5:32","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"457:7:32"},"scope":3892,"src":"415:50:32","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"18160ddd","id":3829,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"480:11:32","nodeType":"FunctionDefinition","parameters":{"id":3825,"nodeType":"ParameterList","parameters":[],"src":"491:2:32"},"returnParameters":{"id":3828,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3827,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3829,"src":"517:7:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3826,"name":"uint256","nodeType":"ElementaryTypeName","src":"517:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"516:9:32"},"scope":3892,"src":"471:55:32","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"70a08231","id":3836,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"541:9:32","nodeType":"FunctionDefinition","parameters":{"id":3832,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3831,"mutability":"mutable","name":"account","nameLocation":"559:7:32","nodeType":"VariableDeclaration","scope":3836,"src":"551:15:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3830,"name":"address","nodeType":"ElementaryTypeName","src":"551:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"550:17:32"},"returnParameters":{"id":3835,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3834,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3836,"src":"591:7:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3833,"name":"uint256","nodeType":"ElementaryTypeName","src":"591:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"590:9:32"},"scope":3892,"src":"532:68:32","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"3a02a42d","id":3843,"implemented":false,"kind":"function","modifiers":[],"name":"getStakedBalance","nameLocation":"615:16:32","nodeType":"FunctionDefinition","parameters":{"id":3839,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3838,"mutability":"mutable","name":"who","nameLocation":"640:3:32","nodeType":"VariableDeclaration","scope":3843,"src":"632:11:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3837,"name":"address","nodeType":"ElementaryTypeName","src":"632:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"631:13:32"},"returnParameters":{"id":3842,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3841,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3843,"src":"668:7:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3840,"name":"uint256","nodeType":"ElementaryTypeName","src":"668:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"667:9:32"},"scope":3892,"src":"606:71:32","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"7b103999","id":3849,"implemented":false,"kind":"function","modifiers":[],"name":"registry","nameLocation":"692:8:32","nodeType":"FunctionDefinition","parameters":{"id":3844,"nodeType":"ParameterList","parameters":[],"src":"700:2:32"},"returnParameters":{"id":3848,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3847,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3849,"src":"726:9:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRegistry_$4222","typeString":"contract IRegistry"},"typeName":{"id":3846,"nodeType":"UserDefinedTypeName","pathNode":{"id":3845,"name":"IRegistry","nodeType":"IdentifierPath","referencedDeclaration":4222,"src":"726:9:32"},"referencedDeclaration":4222,"src":"726:9:32","typeDescriptions":{"typeIdentifier":"t_contract$_IRegistry_$4222","typeString":"contract IRegistry"}},"visibility":"internal"}],"src":"725:11:32"},"scope":3892,"src":"683:54:32","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"a694fc3a","id":3854,"implemented":false,"kind":"function","modifiers":[],"name":"stake","nameLocation":"752:5:32","nodeType":"FunctionDefinition","parameters":{"id":3852,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3851,"mutability":"mutable","name":"_tokenId","nameLocation":"766:8:32","nodeType":"VariableDeclaration","scope":3854,"src":"758:16:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3850,"name":"uint256","nodeType":"ElementaryTypeName","src":"758:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"757:18:32"},"returnParameters":{"id":3853,"nodeType":"ParameterList","parameters":[],"src":"784:0:32"},"scope":3892,"src":"743:42:32","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"baa51f86","id":3861,"implemented":false,"kind":"function","modifiers":[],"name":"isStaked","nameLocation":"800:8:32","nodeType":"FunctionDefinition","parameters":{"id":3857,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3856,"mutability":"mutable","name":"_tokenId","nameLocation":"817:8:32","nodeType":"VariableDeclaration","scope":3861,"src":"809:16:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3855,"name":"uint256","nodeType":"ElementaryTypeName","src":"809:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"808:18:32"},"returnParameters":{"id":3860,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3859,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3861,"src":"850:4:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3858,"name":"bool","nodeType":"ElementaryTypeName","src":"850:4:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"849:6:32"},"scope":3892,"src":"791:65:32","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"630b4b90","id":3866,"implemented":false,"kind":"function","modifiers":[],"name":"_stakeFromLock","nameLocation":"871:14:32","nodeType":"FunctionDefinition","parameters":{"id":3864,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3863,"mutability":"mutable","name":"_tokenId","nameLocation":"894:8:32","nodeType":"VariableDeclaration","scope":3866,"src":"886:16:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3862,"name":"uint256","nodeType":"ElementaryTypeName","src":"886:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"885:18:32"},"returnParameters":{"id":3865,"nodeType":"ParameterList","parameters":[],"src":"912:0:32"},"scope":3892,"src":"862:51:32","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"2e17de78","id":3871,"implemented":false,"kind":"function","modifiers":[],"name":"unstake","nameLocation":"928:7:32","nodeType":"FunctionDefinition","parameters":{"id":3869,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3868,"mutability":"mutable","name":"_tokenId","nameLocation":"944:8:32","nodeType":"VariableDeclaration","scope":3871,"src":"936:16:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3867,"name":"uint256","nodeType":"ElementaryTypeName","src":"936:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"935:18:32"},"returnParameters":{"id":3870,"nodeType":"ParameterList","parameters":[],"src":"962:0:32"},"scope":3892,"src":"919:44:32","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"anonymous":false,"id":3881,"name":"StakeNFT","nameLocation":"975:8:32","nodeType":"EventDefinition","parameters":{"id":3880,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3873,"indexed":true,"mutability":"mutable","name":"who","nameLocation":"1009:3:32","nodeType":"VariableDeclaration","scope":3881,"src":"993:19:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3872,"name":"address","nodeType":"ElementaryTypeName","src":"993:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3875,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"1038:5:32","nodeType":"VariableDeclaration","scope":3881,"src":"1022:21:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3874,"name":"address","nodeType":"ElementaryTypeName","src":"1022:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3877,"indexed":false,"mutability":"mutable","name":"tokenId","nameLocation":"1061:7:32","nodeType":"VariableDeclaration","scope":3881,"src":"1053:15:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3876,"name":"uint256","nodeType":"ElementaryTypeName","src":"1053:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3879,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"1086:6:32","nodeType":"VariableDeclaration","scope":3881,"src":"1078:14:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3878,"name":"uint256","nodeType":"ElementaryTypeName","src":"1078:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"983:115:32"},"src":"969:130:32"},{"anonymous":false,"id":3891,"name":"UnstakeNFT","nameLocation":"1110:10:32","nodeType":"EventDefinition","parameters":{"id":3890,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3883,"indexed":true,"mutability":"mutable","name":"who","nameLocation":"1146:3:32","nodeType":"VariableDeclaration","scope":3891,"src":"1130:19:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3882,"name":"address","nodeType":"ElementaryTypeName","src":"1130:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3885,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"1175:5:32","nodeType":"VariableDeclaration","scope":3891,"src":"1159:21:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3884,"name":"address","nodeType":"ElementaryTypeName","src":"1159:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3887,"indexed":false,"mutability":"mutable","name":"tokenId","nameLocation":"1198:7:32","nodeType":"VariableDeclaration","scope":3891,"src":"1190:15:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3886,"name":"uint256","nodeType":"ElementaryTypeName","src":"1190:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3889,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"1223:6:32","nodeType":"VariableDeclaration","scope":3891,"src":"1215:14:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3888,"name":"uint256","nodeType":"ElementaryTypeName","src":"1215:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1120:115:32"},"src":"1104:132:32"}],"scope":3893,"src":"178:1060:32","usedErrors":[]}],"src":"33:1206:32"},"id":32},"contracts/interfaces/INonfungiblePositionManager.sol":{"ast":{"absolutePath":"contracts/interfaces/INonfungiblePositionManager.sol","exportedSymbols":{"IERC165":[1265],"IERC721":[876],"IERC721Enumerable":[907],"IERC721Metadata":[934],"IERC721Permit":[2137],"INonfungiblePositionManager":[4091],"IPeripheryImmutableState":[2153],"IPeripheryPayments":[2179],"IPoolInitializer":[2198],"PoolAddress":[4381]},"id":4092,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3894,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"32:23:33"},{"id":3895,"literals":["abicoder","v2"],"nodeType":"PragmaDirective","src":"56:19:33"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol","file":"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol","id":3896,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4092,"sourceUnit":935,"src":"77:77:33","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol","file":"@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol","id":3897,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4092,"sourceUnit":908,"src":"155:79:33","symbolAliases":[],"unitAlias":""},{"absolutePath":"@uniswap/v3-periphery/contracts/interfaces/IPoolInitializer.sol","file":"@uniswap/v3-periphery/contracts/interfaces/IPoolInitializer.sol","id":3898,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4092,"sourceUnit":2199,"src":"236:73:33","symbolAliases":[],"unitAlias":""},{"absolutePath":"@uniswap/v3-periphery/contracts/interfaces/IERC721Permit.sol","file":"@uniswap/v3-periphery/contracts/interfaces/IERC721Permit.sol","id":3899,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4092,"sourceUnit":2138,"src":"310:70:33","symbolAliases":[],"unitAlias":""},{"absolutePath":"@uniswap/v3-periphery/contracts/interfaces/IPeripheryPayments.sol","file":"@uniswap/v3-periphery/contracts/interfaces/IPeripheryPayments.sol","id":3900,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4092,"sourceUnit":2180,"src":"381:75:33","symbolAliases":[],"unitAlias":""},{"absolutePath":"@uniswap/v3-periphery/contracts/interfaces/IPeripheryImmutableState.sol","file":"@uniswap/v3-periphery/contracts/interfaces/IPeripheryImmutableState.sol","id":3901,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4092,"sourceUnit":2154,"src":"457:81:33","symbolAliases":[],"unitAlias":""},{"absolutePath":"contracts/utils/PoolAddress.sol","file":"../utils/PoolAddress.sol","id":3902,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4092,"sourceUnit":4382,"src":"540:34:33","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":3904,"name":"IPoolInitializer","nodeType":"IdentifierPath","referencedDeclaration":2198,"src":"798:16:33"},"id":3905,"nodeType":"InheritanceSpecifier","src":"798:16:33"},{"baseName":{"id":3906,"name":"IPeripheryPayments","nodeType":"IdentifierPath","referencedDeclaration":2179,"src":"820:18:33"},"id":3907,"nodeType":"InheritanceSpecifier","src":"820:18:33"},{"baseName":{"id":3908,"name":"IPeripheryImmutableState","nodeType":"IdentifierPath","referencedDeclaration":2153,"src":"844:24:33"},"id":3909,"nodeType":"InheritanceSpecifier","src":"844:24:33"},{"baseName":{"id":3910,"name":"IERC721Metadata","nodeType":"IdentifierPath","referencedDeclaration":934,"src":"874:15:33"},"id":3911,"nodeType":"InheritanceSpecifier","src":"874:15:33"},{"baseName":{"id":3912,"name":"IERC721Enumerable","nodeType":"IdentifierPath","referencedDeclaration":907,"src":"895:17:33"},"id":3913,"nodeType":"InheritanceSpecifier","src":"895:17:33"},{"baseName":{"id":3914,"name":"IERC721Permit","nodeType":"IdentifierPath","referencedDeclaration":2137,"src":"918:13:33"},"id":3915,"nodeType":"InheritanceSpecifier","src":"918:13:33"}],"contractDependencies":[],"contractKind":"interface","documentation":{"id":3903,"nodeType":"StructuredDocumentation","src":"576:177:33","text":"@title Non-fungible token for positions\n @notice Wraps Uniswap V3 positions in a non-fungible token interface which allows for them to be transferred\n and authorized."},"fullyImplemented":false,"id":4091,"linearizedBaseContracts":[4091,2137,907,934,876,1265,2153,2179,2198],"name":"INonfungiblePositionManager","nameLocation":"763:27:33","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":3916,"nodeType":"StructuredDocumentation","src":"938:458:33","text":"@notice Emitted when liquidity is increased for a position NFT\n @dev Also emitted when a token is minted\n @param tokenId The ID of the token for which liquidity was increased\n @param liquidity The amount by which liquidity for the NFT position was increased\n @param amount0 The amount of token0 that was paid for the increase in liquidity\n @param amount1 The amount of token1 that was paid for the increase in liquidity"},"id":3926,"name":"IncreaseLiquidity","nameLocation":"1407:17:33","nodeType":"EventDefinition","parameters":{"id":3925,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3918,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"1450:7:33","nodeType":"VariableDeclaration","scope":3926,"src":"1434:23:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3917,"name":"uint256","nodeType":"ElementaryTypeName","src":"1434:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3920,"indexed":false,"mutability":"mutable","name":"liquidity","nameLocation":"1475:9:33","nodeType":"VariableDeclaration","scope":3926,"src":"1467:17:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":3919,"name":"uint128","nodeType":"ElementaryTypeName","src":"1467:7:33","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":3922,"indexed":false,"mutability":"mutable","name":"amount0","nameLocation":"1502:7:33","nodeType":"VariableDeclaration","scope":3926,"src":"1494:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3921,"name":"uint256","nodeType":"ElementaryTypeName","src":"1494:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3924,"indexed":false,"mutability":"mutable","name":"amount1","nameLocation":"1527:7:33","nodeType":"VariableDeclaration","scope":3926,"src":"1519:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3923,"name":"uint256","nodeType":"ElementaryTypeName","src":"1519:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1424:116:33"},"src":"1401:140:33"},{"anonymous":false,"documentation":{"id":3927,"nodeType":"StructuredDocumentation","src":"1546:419:33","text":"@notice Emitted when liquidity is decreased for a position NFT\n @param tokenId The ID of the token for which liquidity was decreased\n @param liquidity The amount by which liquidity for the NFT position was decreased\n @param amount0 The amount of token0 that was accounted for the decrease in liquidity\n @param amount1 The amount of token1 that was accounted for the decrease in liquidity"},"id":3937,"name":"DecreaseLiquidity","nameLocation":"1976:17:33","nodeType":"EventDefinition","parameters":{"id":3936,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3929,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"2019:7:33","nodeType":"VariableDeclaration","scope":3937,"src":"2003:23:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3928,"name":"uint256","nodeType":"ElementaryTypeName","src":"2003:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3931,"indexed":false,"mutability":"mutable","name":"liquidity","nameLocation":"2044:9:33","nodeType":"VariableDeclaration","scope":3937,"src":"2036:17:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":3930,"name":"uint128","nodeType":"ElementaryTypeName","src":"2036:7:33","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":3933,"indexed":false,"mutability":"mutable","name":"amount0","nameLocation":"2071:7:33","nodeType":"VariableDeclaration","scope":3937,"src":"2063:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3932,"name":"uint256","nodeType":"ElementaryTypeName","src":"2063:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3935,"indexed":false,"mutability":"mutable","name":"amount1","nameLocation":"2096:7:33","nodeType":"VariableDeclaration","scope":3937,"src":"2088:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3934,"name":"uint256","nodeType":"ElementaryTypeName","src":"2088:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1993:116:33"},"src":"1970:140:33"},{"anonymous":false,"documentation":{"id":3938,"nodeType":"StructuredDocumentation","src":"2115:522:33","text":"@notice Emitted when tokens are collected for a position NFT\n @dev The amounts reported may not be exactly equivalent to the amounts transferred, due to rounding behavior\n @param tokenId The ID of the token for which underlying tokens were collected\n @param recipient The address of the account that received the collected tokens\n @param amount0 The amount of token0 owed to the position that was collected\n @param amount1 The amount of token1 owed to the position that was collected"},"id":3948,"name":"Collect","nameLocation":"2648:7:33","nodeType":"EventDefinition","parameters":{"id":3947,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3940,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"2681:7:33","nodeType":"VariableDeclaration","scope":3948,"src":"2665:23:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3939,"name":"uint256","nodeType":"ElementaryTypeName","src":"2665:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3942,"indexed":false,"mutability":"mutable","name":"recipient","nameLocation":"2706:9:33","nodeType":"VariableDeclaration","scope":3948,"src":"2698:17:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3941,"name":"address","nodeType":"ElementaryTypeName","src":"2698:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3944,"indexed":false,"mutability":"mutable","name":"amount0","nameLocation":"2733:7:33","nodeType":"VariableDeclaration","scope":3948,"src":"2725:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3943,"name":"uint256","nodeType":"ElementaryTypeName","src":"2725:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3946,"indexed":false,"mutability":"mutable","name":"amount1","nameLocation":"2758:7:33","nodeType":"VariableDeclaration","scope":3948,"src":"2750:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3945,"name":"uint256","nodeType":"ElementaryTypeName","src":"2750:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2655:116:33"},"src":"2642:130:33"},{"documentation":{"id":3949,"nodeType":"StructuredDocumentation","src":"2778:1157:33","text":"@notice Returns the position information associated with a given token ID.\n @dev Throws if the token ID is not valid.\n @param tokenId The ID of the token that represents the position\n @return nonce The nonce for permits\n @return operator The address that is approved for spending\n @return token0 The address of the token0 for a specific pool\n @return token1 The address of the token1 for a specific pool\n @return fee The fee associated with the pool\n @return tickLower The lower end of the tick range for the position\n @return tickUpper The higher end of the tick range for the position\n @return liquidity The liquidity of the position\n @return feeGrowthInside0LastX128 The fee growth of token0 as of the last action on the individual position\n @return feeGrowthInside1LastX128 The fee growth of token1 as of the last action on the individual position\n @return tokensOwed0 The uncollected amount of token0 owed to the position as of the last computation\n @return tokensOwed1 The uncollected amount of token1 owed to the position as of the last computation"},"functionSelector":"99fbab88","id":3978,"implemented":false,"kind":"function","modifiers":[],"name":"positions","nameLocation":"3949:9:33","nodeType":"FunctionDefinition","parameters":{"id":3952,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3951,"mutability":"mutable","name":"tokenId","nameLocation":"3967:7:33","nodeType":"VariableDeclaration","scope":3978,"src":"3959:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3950,"name":"uint256","nodeType":"ElementaryTypeName","src":"3959:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3958:17:33"},"returnParameters":{"id":3977,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3954,"mutability":"mutable","name":"nonce","nameLocation":"4043:5:33","nodeType":"VariableDeclaration","scope":3978,"src":"4036:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":3953,"name":"uint96","nodeType":"ElementaryTypeName","src":"4036:6:33","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":3956,"mutability":"mutable","name":"operator","nameLocation":"4070:8:33","nodeType":"VariableDeclaration","scope":3978,"src":"4062:16:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3955,"name":"address","nodeType":"ElementaryTypeName","src":"4062:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3958,"mutability":"mutable","name":"token0","nameLocation":"4100:6:33","nodeType":"VariableDeclaration","scope":3978,"src":"4092:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3957,"name":"address","nodeType":"ElementaryTypeName","src":"4092:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3960,"mutability":"mutable","name":"token1","nameLocation":"4128:6:33","nodeType":"VariableDeclaration","scope":3978,"src":"4120:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3959,"name":"address","nodeType":"ElementaryTypeName","src":"4120:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3962,"mutability":"mutable","name":"fee","nameLocation":"4155:3:33","nodeType":"VariableDeclaration","scope":3978,"src":"4148:10:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":3961,"name":"uint24","nodeType":"ElementaryTypeName","src":"4148:6:33","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"},{"constant":false,"id":3964,"mutability":"mutable","name":"tickLower","nameLocation":"4178:9:33","nodeType":"VariableDeclaration","scope":3978,"src":"4172:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":3963,"name":"int24","nodeType":"ElementaryTypeName","src":"4172:5:33","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":3966,"mutability":"mutable","name":"tickUpper","nameLocation":"4207:9:33","nodeType":"VariableDeclaration","scope":3978,"src":"4201:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":3965,"name":"int24","nodeType":"ElementaryTypeName","src":"4201:5:33","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":3968,"mutability":"mutable","name":"liquidity","nameLocation":"4238:9:33","nodeType":"VariableDeclaration","scope":3978,"src":"4230:17:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":3967,"name":"uint128","nodeType":"ElementaryTypeName","src":"4230:7:33","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":3970,"mutability":"mutable","name":"feeGrowthInside0LastX128","nameLocation":"4269:24:33","nodeType":"VariableDeclaration","scope":3978,"src":"4261:32:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3969,"name":"uint256","nodeType":"ElementaryTypeName","src":"4261:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3972,"mutability":"mutable","name":"feeGrowthInside1LastX128","nameLocation":"4315:24:33","nodeType":"VariableDeclaration","scope":3978,"src":"4307:32:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3971,"name":"uint256","nodeType":"ElementaryTypeName","src":"4307:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3974,"mutability":"mutable","name":"tokensOwed0","nameLocation":"4361:11:33","nodeType":"VariableDeclaration","scope":3978,"src":"4353:19:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":3973,"name":"uint128","nodeType":"ElementaryTypeName","src":"4353:7:33","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":3976,"mutability":"mutable","name":"tokensOwed1","nameLocation":"4394:11:33","nodeType":"VariableDeclaration","scope":3978,"src":"4386:19:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":3975,"name":"uint128","nodeType":"ElementaryTypeName","src":"4386:7:33","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"4022:393:33"},"scope":4091,"src":"3940:476:33","stateMutability":"view","virtual":false,"visibility":"external"},{"canonicalName":"INonfungiblePositionManager.MintParams","id":4001,"members":[{"constant":false,"id":3980,"mutability":"mutable","name":"token0","nameLocation":"4458:6:33","nodeType":"VariableDeclaration","scope":4001,"src":"4450:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3979,"name":"address","nodeType":"ElementaryTypeName","src":"4450:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3982,"mutability":"mutable","name":"token1","nameLocation":"4482:6:33","nodeType":"VariableDeclaration","scope":4001,"src":"4474:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3981,"name":"address","nodeType":"ElementaryTypeName","src":"4474:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3984,"mutability":"mutable","name":"fee","nameLocation":"4505:3:33","nodeType":"VariableDeclaration","scope":4001,"src":"4498:10:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":3983,"name":"uint24","nodeType":"ElementaryTypeName","src":"4498:6:33","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"},{"constant":false,"id":3986,"mutability":"mutable","name":"tickLower","nameLocation":"4524:9:33","nodeType":"VariableDeclaration","scope":4001,"src":"4518:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":3985,"name":"int24","nodeType":"ElementaryTypeName","src":"4518:5:33","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":3988,"mutability":"mutable","name":"tickUpper","nameLocation":"4549:9:33","nodeType":"VariableDeclaration","scope":4001,"src":"4543:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":3987,"name":"int24","nodeType":"ElementaryTypeName","src":"4543:5:33","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":3990,"mutability":"mutable","name":"amount0Desired","nameLocation":"4576:14:33","nodeType":"VariableDeclaration","scope":4001,"src":"4568:22:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3989,"name":"uint256","nodeType":"ElementaryTypeName","src":"4568:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3992,"mutability":"mutable","name":"amount1Desired","nameLocation":"4608:14:33","nodeType":"VariableDeclaration","scope":4001,"src":"4600:22:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3991,"name":"uint256","nodeType":"ElementaryTypeName","src":"4600:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3994,"mutability":"mutable","name":"amount0Min","nameLocation":"4640:10:33","nodeType":"VariableDeclaration","scope":4001,"src":"4632:18:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3993,"name":"uint256","nodeType":"ElementaryTypeName","src":"4632:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3996,"mutability":"mutable","name":"amount1Min","nameLocation":"4668:10:33","nodeType":"VariableDeclaration","scope":4001,"src":"4660:18:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3995,"name":"uint256","nodeType":"ElementaryTypeName","src":"4660:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3998,"mutability":"mutable","name":"recipient","nameLocation":"4696:9:33","nodeType":"VariableDeclaration","scope":4001,"src":"4688:17:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3997,"name":"address","nodeType":"ElementaryTypeName","src":"4688:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4000,"mutability":"mutable","name":"deadline","nameLocation":"4723:8:33","nodeType":"VariableDeclaration","scope":4001,"src":"4715:16:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3999,"name":"uint256","nodeType":"ElementaryTypeName","src":"4715:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"MintParams","nameLocation":"4429:10:33","nodeType":"StructDefinition","scope":4091,"src":"4422:316:33","visibility":"public"},{"documentation":{"id":4002,"nodeType":"StructuredDocumentation","src":"4744:586:33","text":"@notice Creates a new position wrapped in a NFT\n @dev Call this when the pool does exist and is initialized. Note that if the pool is created but not initialized\n a method does not exist, i.e. the pool is assumed to be initialized.\n @param params The params necessary to mint a position, encoded as `MintParams` in calldata\n @return tokenId The ID of the token that represents the minted position\n @return liquidity The amount of liquidity for this position\n @return amount0 The amount of token0\n @return amount1 The amount of token1"},"functionSelector":"88316456","id":4016,"implemented":false,"kind":"function","modifiers":[],"name":"mint","nameLocation":"5344:4:33","nodeType":"FunctionDefinition","parameters":{"id":4006,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4005,"mutability":"mutable","name":"params","nameLocation":"5369:6:33","nodeType":"VariableDeclaration","scope":4016,"src":"5349:26:33","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_MintParams_$4001_calldata_ptr","typeString":"struct INonfungiblePositionManager.MintParams"},"typeName":{"id":4004,"nodeType":"UserDefinedTypeName","pathNode":{"id":4003,"name":"MintParams","nodeType":"IdentifierPath","referencedDeclaration":4001,"src":"5349:10:33"},"referencedDeclaration":4001,"src":"5349:10:33","typeDescriptions":{"typeIdentifier":"t_struct$_MintParams_$4001_storage_ptr","typeString":"struct INonfungiblePositionManager.MintParams"}},"visibility":"internal"}],"src":"5348:28:33"},"returnParameters":{"id":4015,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4008,"mutability":"mutable","name":"tokenId","nameLocation":"5448:7:33","nodeType":"VariableDeclaration","scope":4016,"src":"5440:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4007,"name":"uint256","nodeType":"ElementaryTypeName","src":"5440:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4010,"mutability":"mutable","name":"liquidity","nameLocation":"5477:9:33","nodeType":"VariableDeclaration","scope":4016,"src":"5469:17:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":4009,"name":"uint128","nodeType":"ElementaryTypeName","src":"5469:7:33","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":4012,"mutability":"mutable","name":"amount0","nameLocation":"5508:7:33","nodeType":"VariableDeclaration","scope":4016,"src":"5500:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4011,"name":"uint256","nodeType":"ElementaryTypeName","src":"5500:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4014,"mutability":"mutable","name":"amount1","nameLocation":"5537:7:33","nodeType":"VariableDeclaration","scope":4016,"src":"5529:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4013,"name":"uint256","nodeType":"ElementaryTypeName","src":"5529:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5426:128:33"},"scope":4091,"src":"5335:220:33","stateMutability":"payable","virtual":false,"visibility":"external"},{"canonicalName":"INonfungiblePositionManager.IncreaseLiquidityParams","id":4029,"members":[{"constant":false,"id":4018,"mutability":"mutable","name":"tokenId","nameLocation":"5610:7:33","nodeType":"VariableDeclaration","scope":4029,"src":"5602:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4017,"name":"uint256","nodeType":"ElementaryTypeName","src":"5602:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4020,"mutability":"mutable","name":"amount0Desired","nameLocation":"5635:14:33","nodeType":"VariableDeclaration","scope":4029,"src":"5627:22:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4019,"name":"uint256","nodeType":"ElementaryTypeName","src":"5627:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4022,"mutability":"mutable","name":"amount1Desired","nameLocation":"5667:14:33","nodeType":"VariableDeclaration","scope":4029,"src":"5659:22:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4021,"name":"uint256","nodeType":"ElementaryTypeName","src":"5659:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4024,"mutability":"mutable","name":"amount0Min","nameLocation":"5699:10:33","nodeType":"VariableDeclaration","scope":4029,"src":"5691:18:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4023,"name":"uint256","nodeType":"ElementaryTypeName","src":"5691:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4026,"mutability":"mutable","name":"amount1Min","nameLocation":"5727:10:33","nodeType":"VariableDeclaration","scope":4029,"src":"5719:18:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4025,"name":"uint256","nodeType":"ElementaryTypeName","src":"5719:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4028,"mutability":"mutable","name":"deadline","nameLocation":"5755:8:33","nodeType":"VariableDeclaration","scope":4029,"src":"5747:16:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4027,"name":"uint256","nodeType":"ElementaryTypeName","src":"5747:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"IncreaseLiquidityParams","nameLocation":"5568:23:33","nodeType":"StructDefinition","scope":4091,"src":"5561:209:33","visibility":"public"},{"documentation":{"id":4030,"nodeType":"StructuredDocumentation","src":"5776:821:33","text":"@notice Increases the amount of liquidity in a position, with tokens paid by the `msg.sender`\n @param params tokenId The ID of the token for which liquidity is being increased,\n amount0Desired The desired amount of token0 to be spent,\n amount1Desired The desired amount of token1 to be spent,\n amount0Min The minimum amount of token0 to spend, which serves as a slippage check,\n amount1Min The minimum amount of token1 to spend, which serves as a slippage check,\n deadline The time by which the transaction must be included to effect the change\n @return liquidity The new liquidity amount as a result of the increase\n @return amount0 The amount of token0 to acheive resulting liquidity\n @return amount1 The amount of token1 to acheive resulting liquidity"},"functionSelector":"219f5d17","id":4042,"implemented":false,"kind":"function","modifiers":[],"name":"increaseLiquidity","nameLocation":"6611:17:33","nodeType":"FunctionDefinition","parameters":{"id":4034,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4033,"mutability":"mutable","name":"params","nameLocation":"6662:6:33","nodeType":"VariableDeclaration","scope":4042,"src":"6629:39:33","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_IncreaseLiquidityParams_$4029_calldata_ptr","typeString":"struct INonfungiblePositionManager.IncreaseLiquidityParams"},"typeName":{"id":4032,"nodeType":"UserDefinedTypeName","pathNode":{"id":4031,"name":"IncreaseLiquidityParams","nodeType":"IdentifierPath","referencedDeclaration":4029,"src":"6629:23:33"},"referencedDeclaration":4029,"src":"6629:23:33","typeDescriptions":{"typeIdentifier":"t_struct$_IncreaseLiquidityParams_$4029_storage_ptr","typeString":"struct INonfungiblePositionManager.IncreaseLiquidityParams"}},"visibility":"internal"}],"src":"6628:41:33"},"returnParameters":{"id":4041,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4036,"mutability":"mutable","name":"liquidity","nameLocation":"6741:9:33","nodeType":"VariableDeclaration","scope":4042,"src":"6733:17:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":4035,"name":"uint128","nodeType":"ElementaryTypeName","src":"6733:7:33","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":4038,"mutability":"mutable","name":"amount0","nameLocation":"6772:7:33","nodeType":"VariableDeclaration","scope":4042,"src":"6764:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4037,"name":"uint256","nodeType":"ElementaryTypeName","src":"6764:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4040,"mutability":"mutable","name":"amount1","nameLocation":"6801:7:33","nodeType":"VariableDeclaration","scope":4042,"src":"6793:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4039,"name":"uint256","nodeType":"ElementaryTypeName","src":"6793:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6719:99:33"},"scope":4091,"src":"6602:217:33","stateMutability":"payable","virtual":false,"visibility":"external"},{"canonicalName":"INonfungiblePositionManager.DecreaseLiquidityParams","id":4053,"members":[{"constant":false,"id":4044,"mutability":"mutable","name":"tokenId","nameLocation":"6874:7:33","nodeType":"VariableDeclaration","scope":4053,"src":"6866:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4043,"name":"uint256","nodeType":"ElementaryTypeName","src":"6866:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4046,"mutability":"mutable","name":"liquidity","nameLocation":"6899:9:33","nodeType":"VariableDeclaration","scope":4053,"src":"6891:17:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":4045,"name":"uint128","nodeType":"ElementaryTypeName","src":"6891:7:33","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":4048,"mutability":"mutable","name":"amount0Min","nameLocation":"6926:10:33","nodeType":"VariableDeclaration","scope":4053,"src":"6918:18:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4047,"name":"uint256","nodeType":"ElementaryTypeName","src":"6918:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4050,"mutability":"mutable","name":"amount1Min","nameLocation":"6954:10:33","nodeType":"VariableDeclaration","scope":4053,"src":"6946:18:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4049,"name":"uint256","nodeType":"ElementaryTypeName","src":"6946:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4052,"mutability":"mutable","name":"deadline","nameLocation":"6982:8:33","nodeType":"VariableDeclaration","scope":4053,"src":"6974:16:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4051,"name":"uint256","nodeType":"ElementaryTypeName","src":"6974:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"DecreaseLiquidityParams","nameLocation":"6832:23:33","nodeType":"StructDefinition","scope":4091,"src":"6825:172:33","visibility":"public"},{"documentation":{"id":4054,"nodeType":"StructuredDocumentation","src":"7003:702:33","text":"@notice Decreases the amount of liquidity in a position and accounts it to the position\n @param params tokenId The ID of the token for which liquidity is being decreased,\n amount The amount by which liquidity will be decreased,\n amount0Min The minimum amount of token0 that should be accounted for the burned liquidity,\n amount1Min The minimum amount of token1 that should be accounted for the burned liquidity,\n deadline The time by which the transaction must be included to effect the change\n @return amount0 The amount of token0 accounted to the position's tokens owed\n @return amount1 The amount of token1 accounted to the position's tokens owed"},"functionSelector":"0c49ccbe","id":4064,"implemented":false,"kind":"function","modifiers":[],"name":"decreaseLiquidity","nameLocation":"7719:17:33","nodeType":"FunctionDefinition","parameters":{"id":4058,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4057,"mutability":"mutable","name":"params","nameLocation":"7770:6:33","nodeType":"VariableDeclaration","scope":4064,"src":"7737:39:33","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_DecreaseLiquidityParams_$4053_calldata_ptr","typeString":"struct INonfungiblePositionManager.DecreaseLiquidityParams"},"typeName":{"id":4056,"nodeType":"UserDefinedTypeName","pathNode":{"id":4055,"name":"DecreaseLiquidityParams","nodeType":"IdentifierPath","referencedDeclaration":4053,"src":"7737:23:33"},"referencedDeclaration":4053,"src":"7737:23:33","typeDescriptions":{"typeIdentifier":"t_struct$_DecreaseLiquidityParams_$4053_storage_ptr","typeString":"struct INonfungiblePositionManager.DecreaseLiquidityParams"}},"visibility":"internal"}],"src":"7736:41:33"},"returnParameters":{"id":4063,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4060,"mutability":"mutable","name":"amount0","nameLocation":"7836:7:33","nodeType":"VariableDeclaration","scope":4064,"src":"7828:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4059,"name":"uint256","nodeType":"ElementaryTypeName","src":"7828:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4062,"mutability":"mutable","name":"amount1","nameLocation":"7853:7:33","nodeType":"VariableDeclaration","scope":4064,"src":"7845:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4061,"name":"uint256","nodeType":"ElementaryTypeName","src":"7845:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7827:34:33"},"scope":4091,"src":"7710:152:33","stateMutability":"payable","virtual":false,"visibility":"external"},{"canonicalName":"INonfungiblePositionManager.CollectParams","id":4073,"members":[{"constant":false,"id":4066,"mutability":"mutable","name":"tokenId","nameLocation":"7907:7:33","nodeType":"VariableDeclaration","scope":4073,"src":"7899:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4065,"name":"uint256","nodeType":"ElementaryTypeName","src":"7899:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4068,"mutability":"mutable","name":"recipient","nameLocation":"7932:9:33","nodeType":"VariableDeclaration","scope":4073,"src":"7924:17:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4067,"name":"address","nodeType":"ElementaryTypeName","src":"7924:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4070,"mutability":"mutable","name":"amount0Max","nameLocation":"7959:10:33","nodeType":"VariableDeclaration","scope":4073,"src":"7951:18:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":4069,"name":"uint128","nodeType":"ElementaryTypeName","src":"7951:7:33","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":4072,"mutability":"mutable","name":"amount1Max","nameLocation":"7987:10:33","nodeType":"VariableDeclaration","scope":4073,"src":"7979:18:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":4071,"name":"uint128","nodeType":"ElementaryTypeName","src":"7979:7:33","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"name":"CollectParams","nameLocation":"7875:13:33","nodeType":"StructDefinition","scope":4091,"src":"7868:136:33","visibility":"public"},{"documentation":{"id":4074,"nodeType":"StructuredDocumentation","src":"8010:489:33","text":"@notice Collects up to a maximum amount of fees owed to a specific position to the recipient\n @param params tokenId The ID of the NFT for which tokens are being collected,\n recipient The account that should receive the tokens,\n amount0Max The maximum amount of token0 to collect,\n amount1Max The maximum amount of token1 to collect\n @return amount0 The amount of fees collected in token0\n @return amount1 The amount of fees collected in token1"},"functionSelector":"fc6f7865","id":4084,"implemented":false,"kind":"function","modifiers":[],"name":"collect","nameLocation":"8513:7:33","nodeType":"FunctionDefinition","parameters":{"id":4078,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4077,"mutability":"mutable","name":"params","nameLocation":"8544:6:33","nodeType":"VariableDeclaration","scope":4084,"src":"8521:29:33","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_CollectParams_$4073_calldata_ptr","typeString":"struct INonfungiblePositionManager.CollectParams"},"typeName":{"id":4076,"nodeType":"UserDefinedTypeName","pathNode":{"id":4075,"name":"CollectParams","nodeType":"IdentifierPath","referencedDeclaration":4073,"src":"8521:13:33"},"referencedDeclaration":4073,"src":"8521:13:33","typeDescriptions":{"typeIdentifier":"t_struct$_CollectParams_$4073_storage_ptr","typeString":"struct INonfungiblePositionManager.CollectParams"}},"visibility":"internal"}],"src":"8520:31:33"},"returnParameters":{"id":4083,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4080,"mutability":"mutable","name":"amount0","nameLocation":"8610:7:33","nodeType":"VariableDeclaration","scope":4084,"src":"8602:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4079,"name":"uint256","nodeType":"ElementaryTypeName","src":"8602:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4082,"mutability":"mutable","name":"amount1","nameLocation":"8627:7:33","nodeType":"VariableDeclaration","scope":4084,"src":"8619:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4081,"name":"uint256","nodeType":"ElementaryTypeName","src":"8619:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8601:34:33"},"scope":4091,"src":"8504:132:33","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":4085,"nodeType":"StructuredDocumentation","src":"8642:213:33","text":"@notice Burns a token ID, which deletes it from the NFT contract. The token must have 0 liquidity and all tokens\n must be collected first.\n @param tokenId The ID of the token that is being burned"},"functionSelector":"42966c68","id":4090,"implemented":false,"kind":"function","modifiers":[],"name":"burn","nameLocation":"8869:4:33","nodeType":"FunctionDefinition","parameters":{"id":4088,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4087,"mutability":"mutable","name":"tokenId","nameLocation":"8882:7:33","nodeType":"VariableDeclaration","scope":4090,"src":"8874:15:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4086,"name":"uint256","nodeType":"ElementaryTypeName","src":"8874:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8873:17:33"},"returnParameters":{"id":4089,"nodeType":"ParameterList","parameters":[],"src":"8907:0:33"},"scope":4091,"src":"8860:48:33","stateMutability":"payable","virtual":false,"visibility":"external"}],"scope":4092,"src":"753:8157:33","usedErrors":[]}],"src":"32:8879:33"},"id":33},"contracts/interfaces/IRegistry.sol":{"ast":{"absolutePath":"contracts/interfaces/IRegistry.sol","exportedSymbols":{"IAccessControl":[72],"IRegistry":[4222]},"id":4223,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4093,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"33:23:34"},{"absolutePath":"@openzeppelin/contracts/access/IAccessControl.sol","file":"@openzeppelin/contracts/access/IAccessControl.sol","id":4095,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4223,"sourceUnit":73,"src":"58:81:34","symbolAliases":[{"foreign":{"id":4094,"name":"IAccessControl","nodeType":"Identifier","overloadedDeclarations":[],"src":"66:14:34","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":4096,"name":"IAccessControl","nodeType":"IdentifierPath","referencedDeclaration":72,"src":"164:14:34"},"id":4097,"nodeType":"InheritanceSpecifier","src":"164:14:34"}],"contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":4222,"linearizedBaseContracts":[4222,72],"name":"IRegistry","nameLocation":"151:9:34","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"id":4105,"name":"MahaChanged","nameLocation":"191:11:34","nodeType":"EventDefinition","parameters":{"id":4104,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4099,"indexed":true,"mutability":"mutable","name":"whom","nameLocation":"219:4:34","nodeType":"VariableDeclaration","scope":4105,"src":"203:20:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4098,"name":"address","nodeType":"ElementaryTypeName","src":"203:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4101,"indexed":false,"mutability":"mutable","name":"_old","nameLocation":"233:4:34","nodeType":"VariableDeclaration","scope":4105,"src":"225:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4100,"name":"address","nodeType":"ElementaryTypeName","src":"225:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4103,"indexed":false,"mutability":"mutable","name":"_new","nameLocation":"247:4:34","nodeType":"VariableDeclaration","scope":4105,"src":"239:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4102,"name":"address","nodeType":"ElementaryTypeName","src":"239:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"202:50:34"},"src":"185:68:34"},{"anonymous":false,"id":4113,"name":"VoterChanged","nameLocation":"264:12:34","nodeType":"EventDefinition","parameters":{"id":4112,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4107,"indexed":true,"mutability":"mutable","name":"whom","nameLocation":"293:4:34","nodeType":"VariableDeclaration","scope":4113,"src":"277:20:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4106,"name":"address","nodeType":"ElementaryTypeName","src":"277:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4109,"indexed":false,"mutability":"mutable","name":"_old","nameLocation":"307:4:34","nodeType":"VariableDeclaration","scope":4113,"src":"299:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4108,"name":"address","nodeType":"ElementaryTypeName","src":"299:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4111,"indexed":false,"mutability":"mutable","name":"_new","nameLocation":"321:4:34","nodeType":"VariableDeclaration","scope":4113,"src":"313:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4110,"name":"address","nodeType":"ElementaryTypeName","src":"313:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"276:50:34"},"src":"258:69:34"},{"anonymous":false,"id":4121,"name":"LockerChanged","nameLocation":"338:13:34","nodeType":"EventDefinition","parameters":{"id":4120,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4115,"indexed":true,"mutability":"mutable","name":"whom","nameLocation":"368:4:34","nodeType":"VariableDeclaration","scope":4121,"src":"352:20:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4114,"name":"address","nodeType":"ElementaryTypeName","src":"352:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4117,"indexed":false,"mutability":"mutable","name":"_old","nameLocation":"382:4:34","nodeType":"VariableDeclaration","scope":4121,"src":"374:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4116,"name":"address","nodeType":"ElementaryTypeName","src":"374:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4119,"indexed":false,"mutability":"mutable","name":"_new","nameLocation":"396:4:34","nodeType":"VariableDeclaration","scope":4121,"src":"388:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4118,"name":"address","nodeType":"ElementaryTypeName","src":"388:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"351:50:34"},"src":"332:70:34"},{"anonymous":false,"id":4129,"name":"GovernorChanged","nameLocation":"413:15:34","nodeType":"EventDefinition","parameters":{"id":4128,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4123,"indexed":true,"mutability":"mutable","name":"whom","nameLocation":"445:4:34","nodeType":"VariableDeclaration","scope":4129,"src":"429:20:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4122,"name":"address","nodeType":"ElementaryTypeName","src":"429:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4125,"indexed":false,"mutability":"mutable","name":"_old","nameLocation":"459:4:34","nodeType":"VariableDeclaration","scope":4129,"src":"451:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4124,"name":"address","nodeType":"ElementaryTypeName","src":"451:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4127,"indexed":false,"mutability":"mutable","name":"_new","nameLocation":"473:4:34","nodeType":"VariableDeclaration","scope":4129,"src":"465:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4126,"name":"address","nodeType":"ElementaryTypeName","src":"465:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"428:50:34"},"src":"407:72:34"},{"anonymous":false,"id":4137,"name":"StakerChanged","nameLocation":"490:13:34","nodeType":"EventDefinition","parameters":{"id":4136,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4131,"indexed":true,"mutability":"mutable","name":"whom","nameLocation":"520:4:34","nodeType":"VariableDeclaration","scope":4137,"src":"504:20:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4130,"name":"address","nodeType":"ElementaryTypeName","src":"504:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4133,"indexed":false,"mutability":"mutable","name":"_old","nameLocation":"534:4:34","nodeType":"VariableDeclaration","scope":4137,"src":"526:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4132,"name":"address","nodeType":"ElementaryTypeName","src":"526:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4135,"indexed":false,"mutability":"mutable","name":"_new","nameLocation":"548:4:34","nodeType":"VariableDeclaration","scope":4137,"src":"540:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4134,"name":"address","nodeType":"ElementaryTypeName","src":"540:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"503:50:34"},"src":"484:70:34"},{"anonymous":false,"id":4145,"name":"EmissionControllerChanged","nameLocation":"565:25:34","nodeType":"EventDefinition","parameters":{"id":4144,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4139,"indexed":true,"mutability":"mutable","name":"whom","nameLocation":"616:4:34","nodeType":"VariableDeclaration","scope":4145,"src":"600:20:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4138,"name":"address","nodeType":"ElementaryTypeName","src":"600:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4141,"indexed":false,"mutability":"mutable","name":"_old","nameLocation":"638:4:34","nodeType":"VariableDeclaration","scope":4145,"src":"630:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4140,"name":"address","nodeType":"ElementaryTypeName","src":"630:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4143,"indexed":false,"mutability":"mutable","name":"_new","nameLocation":"660:4:34","nodeType":"VariableDeclaration","scope":4145,"src":"652:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4142,"name":"address","nodeType":"ElementaryTypeName","src":"652:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"590:80:34"},"src":"559:112:34"},{"functionSelector":"3de00c36","id":4150,"implemented":false,"kind":"function","modifiers":[],"name":"maha","nameLocation":"686:4:34","nodeType":"FunctionDefinition","parameters":{"id":4146,"nodeType":"ParameterList","parameters":[],"src":"690:2:34"},"returnParameters":{"id":4149,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4148,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4150,"src":"716:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4147,"name":"address","nodeType":"ElementaryTypeName","src":"716:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"715:9:34"},"scope":4222,"src":"677:48:34","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"81ca29a1","id":4155,"implemented":false,"kind":"function","modifiers":[],"name":"gaugeVoter","nameLocation":"740:10:34","nodeType":"FunctionDefinition","parameters":{"id":4151,"nodeType":"ParameterList","parameters":[],"src":"750:2:34"},"returnParameters":{"id":4154,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4153,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4155,"src":"776:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4152,"name":"address","nodeType":"ElementaryTypeName","src":"776:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"775:9:34"},"scope":4222,"src":"731:54:34","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"d7b96d4e","id":4160,"implemented":false,"kind":"function","modifiers":[],"name":"locker","nameLocation":"800:6:34","nodeType":"FunctionDefinition","parameters":{"id":4156,"nodeType":"ParameterList","parameters":[],"src":"806:2:34"},"returnParameters":{"id":4159,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4158,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4160,"src":"832:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4157,"name":"address","nodeType":"ElementaryTypeName","src":"832:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"831:9:34"},"scope":4222,"src":"791:50:34","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"5ebaf1db","id":4165,"implemented":false,"kind":"function","modifiers":[],"name":"staker","nameLocation":"856:6:34","nodeType":"FunctionDefinition","parameters":{"id":4161,"nodeType":"ParameterList","parameters":[],"src":"862:2:34"},"returnParameters":{"id":4164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4163,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4165,"src":"888:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4162,"name":"address","nodeType":"ElementaryTypeName","src":"888:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"887:9:34"},"scope":4222,"src":"847:50:34","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"6dee2012","id":4170,"implemented":false,"kind":"function","modifiers":[],"name":"emissionController","nameLocation":"912:18:34","nodeType":"FunctionDefinition","parameters":{"id":4166,"nodeType":"ParameterList","parameters":[],"src":"930:2:34"},"returnParameters":{"id":4169,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4168,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4170,"src":"956:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4167,"name":"address","nodeType":"ElementaryTypeName","src":"956:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"955:9:34"},"scope":4222,"src":"903:62:34","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"0c340a24","id":4175,"implemented":false,"kind":"function","modifiers":[],"name":"governor","nameLocation":"980:8:34","nodeType":"FunctionDefinition","parameters":{"id":4171,"nodeType":"ParameterList","parameters":[],"src":"988:2:34"},"returnParameters":{"id":4174,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4173,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4175,"src":"1014:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4172,"name":"address","nodeType":"ElementaryTypeName","src":"1014:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1013:9:34"},"scope":4222,"src":"971:52:34","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"9516a104","id":4188,"implemented":false,"kind":"function","modifiers":[],"name":"getAllAddresses","nameLocation":"1038:15:34","nodeType":"FunctionDefinition","parameters":{"id":4176,"nodeType":"ParameterList","parameters":[],"src":"1053:2:34"},"returnParameters":{"id":4187,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4178,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4188,"src":"1116:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4177,"name":"address","nodeType":"ElementaryTypeName","src":"1116:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4180,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4188,"src":"1137:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4179,"name":"address","nodeType":"ElementaryTypeName","src":"1137:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4182,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4188,"src":"1158:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4181,"name":"address","nodeType":"ElementaryTypeName","src":"1158:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4184,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4188,"src":"1179:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4183,"name":"address","nodeType":"ElementaryTypeName","src":"1179:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4186,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4188,"src":"1200:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4185,"name":"address","nodeType":"ElementaryTypeName","src":"1200:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1102:115:34"},"scope":4222,"src":"1029:189:34","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"f9fa2123","id":4191,"implemented":false,"kind":"function","modifiers":[],"name":"ensureNotPaused","nameLocation":"1233:15:34","nodeType":"FunctionDefinition","parameters":{"id":4189,"nodeType":"ParameterList","parameters":[],"src":"1248:2:34"},"returnParameters":{"id":4190,"nodeType":"ParameterList","parameters":[],"src":"1259:0:34"},"scope":4222,"src":"1224:36:34","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"be21c026","id":4196,"implemented":false,"kind":"function","modifiers":[],"name":"setMAHA","nameLocation":"1275:7:34","nodeType":"FunctionDefinition","parameters":{"id":4194,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4193,"mutability":"mutable","name":"_new","nameLocation":"1291:4:34","nodeType":"VariableDeclaration","scope":4196,"src":"1283:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4192,"name":"address","nodeType":"ElementaryTypeName","src":"1283:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1282:14:34"},"returnParameters":{"id":4195,"nodeType":"ParameterList","parameters":[],"src":"1305:0:34"},"scope":4222,"src":"1266:40:34","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"b641522e","id":4201,"implemented":false,"kind":"function","modifiers":[],"name":"setEmissionController","nameLocation":"1321:21:34","nodeType":"FunctionDefinition","parameters":{"id":4199,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4198,"mutability":"mutable","name":"_new","nameLocation":"1351:4:34","nodeType":"VariableDeclaration","scope":4201,"src":"1343:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4197,"name":"address","nodeType":"ElementaryTypeName","src":"1343:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1342:14:34"},"returnParameters":{"id":4200,"nodeType":"ParameterList","parameters":[],"src":"1365:0:34"},"scope":4222,"src":"1312:54:34","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"a29a43bb","id":4206,"implemented":false,"kind":"function","modifiers":[],"name":"setStaker","nameLocation":"1381:9:34","nodeType":"FunctionDefinition","parameters":{"id":4204,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4203,"mutability":"mutable","name":"_new","nameLocation":"1399:4:34","nodeType":"VariableDeclaration","scope":4206,"src":"1391:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4202,"name":"address","nodeType":"ElementaryTypeName","src":"1391:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1390:14:34"},"returnParameters":{"id":4205,"nodeType":"ParameterList","parameters":[],"src":"1413:0:34"},"scope":4222,"src":"1372:42:34","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"4bc2a657","id":4211,"implemented":false,"kind":"function","modifiers":[],"name":"setVoter","nameLocation":"1429:8:34","nodeType":"FunctionDefinition","parameters":{"id":4209,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4208,"mutability":"mutable","name":"_new","nameLocation":"1446:4:34","nodeType":"VariableDeclaration","scope":4211,"src":"1438:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4207,"name":"address","nodeType":"ElementaryTypeName","src":"1438:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1437:14:34"},"returnParameters":{"id":4210,"nodeType":"ParameterList","parameters":[],"src":"1460:0:34"},"scope":4222,"src":"1420:41:34","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"171060ec","id":4216,"implemented":false,"kind":"function","modifiers":[],"name":"setLocker","nameLocation":"1476:9:34","nodeType":"FunctionDefinition","parameters":{"id":4214,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4213,"mutability":"mutable","name":"_new","nameLocation":"1494:4:34","nodeType":"VariableDeclaration","scope":4216,"src":"1486:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4212,"name":"address","nodeType":"ElementaryTypeName","src":"1486:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1485:14:34"},"returnParameters":{"id":4215,"nodeType":"ParameterList","parameters":[],"src":"1508:0:34"},"scope":4222,"src":"1467:42:34","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"c42cf535","id":4221,"implemented":false,"kind":"function","modifiers":[],"name":"setGovernor","nameLocation":"1524:11:34","nodeType":"FunctionDefinition","parameters":{"id":4219,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4218,"mutability":"mutable","name":"_new","nameLocation":"1544:4:34","nodeType":"VariableDeclaration","scope":4221,"src":"1536:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4217,"name":"address","nodeType":"ElementaryTypeName","src":"1536:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1535:14:34"},"returnParameters":{"id":4220,"nodeType":"ParameterList","parameters":[],"src":"1558:0:34"},"scope":4222,"src":"1515:44:34","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":4223,"src":"141:1420:34","usedErrors":[]}],"src":"33:1529:34"},"id":34},"contracts/utils/NFTPositionInfo.sol":{"ast":{"absolutePath":"contracts/utils/NFTPositionInfo.sol","exportedSymbols":{"INonfungiblePositionManager":[4091],"IUniswapV3Factory":[1660],"IUniswapV3Pool":[1682],"NFTPositionInfo":[4287]},"id":4288,"license":"GPL-2.0-or-later","nodeType":"SourceUnit","nodes":[{"id":4224,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"45:23:35"},{"absolutePath":"contracts/interfaces/INonfungiblePositionManager.sol","file":"../interfaces/INonfungiblePositionManager.sol","id":4226,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4288,"sourceUnit":4092,"src":"70:90:35","symbolAliases":[{"foreign":{"id":4225,"name":"INonfungiblePositionManager","nodeType":"Identifier","overloadedDeclarations":[],"src":"78:27:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol","file":"@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol","id":4228,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4288,"sourceUnit":1661,"src":"161:94:35","symbolAliases":[{"foreign":{"id":4227,"name":"IUniswapV3Factory","nodeType":"Identifier","overloadedDeclarations":[],"src":"169:17:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol","file":"@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol","id":4230,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4288,"sourceUnit":1683,"src":"256:88:35","symbolAliases":[{"foreign":{"id":4229,"name":"IUniswapV3Pool","nodeType":"Identifier","overloadedDeclarations":[],"src":"264:14:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"library","documentation":{"id":4231,"nodeType":"StructuredDocumentation","src":"346:73:35","text":"@notice Encapsulates the logic for getting info about a NFT token ID"},"fullyImplemented":true,"id":4287,"linearizedBaseContracts":[4287],"name":"NFTPositionInfo","nameLocation":"427:15:35","nodeType":"ContractDefinition","nodes":[{"body":{"id":4285,"nodeType":"Block","src":"1302:411:35","statements":[{"assignments":[4253],"declarations":[{"constant":false,"id":4253,"mutability":"mutable","name":"token0","nameLocation":"1320:6:35","nodeType":"VariableDeclaration","scope":4285,"src":"1312:14:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4252,"name":"address","nodeType":"ElementaryTypeName","src":"1312:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4254,"nodeType":"VariableDeclarationStatement","src":"1312:14:35"},{"assignments":[4256],"declarations":[{"constant":false,"id":4256,"mutability":"mutable","name":"token1","nameLocation":"1344:6:35","nodeType":"VariableDeclaration","scope":4285,"src":"1336:14:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4255,"name":"address","nodeType":"ElementaryTypeName","src":"1336:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4257,"nodeType":"VariableDeclarationStatement","src":"1336:14:35"},{"assignments":[4259],"declarations":[{"constant":false,"id":4259,"mutability":"mutable","name":"fee","nameLocation":"1367:3:35","nodeType":"VariableDeclaration","scope":4285,"src":"1360:10:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":4258,"name":"uint24","nodeType":"ElementaryTypeName","src":"1360:6:35","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"id":4260,"nodeType":"VariableDeclarationStatement","src":"1360:10:35"},{"expression":{"id":4272,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[null,null,{"id":4261,"name":"token0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4253,"src":"1422:6:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4262,"name":"token1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4256,"src":"1442:6:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4263,"name":"fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4259,"src":"1462:3:35","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},{"id":4264,"name":"tickLower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4246,"src":"1479:9:35","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},{"id":4265,"name":"tickUpper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4248,"src":"1502:9:35","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},{"id":4266,"name":"liquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4250,"src":"1525:9:35","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},null,null,null,null],"id":4267,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"1380:208:35","typeDescriptions":{"typeIdentifier":"t_tuple$__$__$_t_address_$_t_address_$_t_uint24_$_t_int24_$_t_int24_$_t_uint128_$__$__$__$__$","typeString":"tuple(,,address,address,uint24,int24,int24,uint128,,,,)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4270,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4240,"src":"1628:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4268,"name":"nonfungiblePositionManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4238,"src":"1591:26:35","typeDescriptions":{"typeIdentifier":"t_contract$_INonfungiblePositionManager_$4091","typeString":"contract INonfungiblePositionManager"}},"id":4269,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"positions","nodeType":"MemberAccess","referencedDeclaration":3978,"src":"1591:36:35","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_uint96_$_t_address_$_t_address_$_t_address_$_t_uint24_$_t_int24_$_t_int24_$_t_uint128_$_t_uint256_$_t_uint256_$_t_uint128_$_t_uint128_$","typeString":"function (uint256) view external returns (uint96,address,address,address,uint24,int24,int24,uint128,uint256,uint256,uint128,uint128)"}},"id":4271,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1591:45:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint96_$_t_address_$_t_address_$_t_address_$_t_uint24_$_t_int24_$_t_int24_$_t_uint128_$_t_uint256_$_t_uint256_$_t_uint128_$_t_uint128_$","typeString":"tuple(uint96,address,address,address,uint24,int24,int24,uint128,uint256,uint256,uint128,uint128)"}},"src":"1380:256:35","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4273,"nodeType":"ExpressionStatement","src":"1380:256:35"},{"expression":{"id":4283,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4274,"name":"pool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4244,"src":"1647:4:35","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":4278,"name":"token0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4253,"src":"1685:6:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4279,"name":"token1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4256,"src":"1693:6:35","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4280,"name":"fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4259,"src":"1701:3:35","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint24","typeString":"uint24"}],"expression":{"id":4276,"name":"factory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4235,"src":"1669:7:35","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Factory_$1660","typeString":"contract IUniswapV3Factory"}},"id":4277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberName":"getPool","nodeType":"MemberAccess","referencedDeclaration":1633,"src":"1669:15:35","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$_t_uint24_$returns$_t_address_$","typeString":"function (address,address,uint24) view external returns (address)"}},"id":4281,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1669:36:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4275,"name":"IUniswapV3Pool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1682,"src":"1654:14:35","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IUniswapV3Pool_$1682_$","typeString":"type(contract IUniswapV3Pool)"}},"id":4282,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1654:52:35","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"}},"src":"1647:59:35","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"}},"id":4284,"nodeType":"ExpressionStatement","src":"1647:59:35"}]},"documentation":{"id":4232,"nodeType":"StructuredDocumentation","src":"449:510:35","text":"@param factory The address of the Uniswap V3 Factory used in computing the pool address\n @param nonfungiblePositionManager The address of the nonfungible position manager to query\n @param tokenId The unique identifier of an Uniswap V3 LP token\n @return pool The address of the Uniswap V3 pool\n @return tickLower The lower tick of the Uniswap V3 position\n @return tickUpper The upper tick of the Uniswap V3 position\n @return liquidity The amount of liquidity staked"},"id":4286,"implemented":true,"kind":"function","modifiers":[],"name":"getPositionInfo","nameLocation":"973:15:35","nodeType":"FunctionDefinition","parameters":{"id":4241,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4235,"mutability":"mutable","name":"factory","nameLocation":"1016:7:35","nodeType":"VariableDeclaration","scope":4286,"src":"998:25:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Factory_$1660","typeString":"contract IUniswapV3Factory"},"typeName":{"id":4234,"nodeType":"UserDefinedTypeName","pathNode":{"id":4233,"name":"IUniswapV3Factory","nodeType":"IdentifierPath","referencedDeclaration":1660,"src":"998:17:35"},"referencedDeclaration":1660,"src":"998:17:35","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Factory_$1660","typeString":"contract IUniswapV3Factory"}},"visibility":"internal"},{"constant":false,"id":4238,"mutability":"mutable","name":"nonfungiblePositionManager","nameLocation":"1061:26:35","nodeType":"VariableDeclaration","scope":4286,"src":"1033:54:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_INonfungiblePositionManager_$4091","typeString":"contract INonfungiblePositionManager"},"typeName":{"id":4237,"nodeType":"UserDefinedTypeName","pathNode":{"id":4236,"name":"INonfungiblePositionManager","nodeType":"IdentifierPath","referencedDeclaration":4091,"src":"1033:27:35"},"referencedDeclaration":4091,"src":"1033:27:35","typeDescriptions":{"typeIdentifier":"t_contract$_INonfungiblePositionManager_$4091","typeString":"contract INonfungiblePositionManager"}},"visibility":"internal"},{"constant":false,"id":4240,"mutability":"mutable","name":"tokenId","nameLocation":"1105:7:35","nodeType":"VariableDeclaration","scope":4286,"src":"1097:15:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4239,"name":"uint256","nodeType":"ElementaryTypeName","src":"1097:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"988:130:35"},"returnParameters":{"id":4251,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4244,"mutability":"mutable","name":"pool","nameLocation":"1194:4:35","nodeType":"VariableDeclaration","scope":4286,"src":"1179:19:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"},"typeName":{"id":4243,"nodeType":"UserDefinedTypeName","pathNode":{"id":4242,"name":"IUniswapV3Pool","nodeType":"IdentifierPath","referencedDeclaration":1682,"src":"1179:14:35"},"referencedDeclaration":1682,"src":"1179:14:35","typeDescriptions":{"typeIdentifier":"t_contract$_IUniswapV3Pool_$1682","typeString":"contract IUniswapV3Pool"}},"visibility":"internal"},{"constant":false,"id":4246,"mutability":"mutable","name":"tickLower","nameLocation":"1218:9:35","nodeType":"VariableDeclaration","scope":4286,"src":"1212:15:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":4245,"name":"int24","nodeType":"ElementaryTypeName","src":"1212:5:35","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":4248,"mutability":"mutable","name":"tickUpper","nameLocation":"1247:9:35","nodeType":"VariableDeclaration","scope":4286,"src":"1241:15:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":4247,"name":"int24","nodeType":"ElementaryTypeName","src":"1241:5:35","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"},{"constant":false,"id":4250,"mutability":"mutable","name":"liquidity","nameLocation":"1278:9:35","nodeType":"VariableDeclaration","scope":4286,"src":"1270:17:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":4249,"name":"uint128","nodeType":"ElementaryTypeName","src":"1270:7:35","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"1165:132:35"},"scope":4287,"src":"964:749:35","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":4288,"src":"419:1296:35","usedErrors":[]}],"src":"45:1671:35"},"id":35},"contracts/utils/PoolAddress.sol":{"ast":{"absolutePath":"contracts/utils/PoolAddress.sol","exportedSymbols":{"PoolAddress":[4381]},"id":4382,"license":"GPL-2.0-or-later","nodeType":"SourceUnit","nodes":[{"id":4289,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"46:23:36"},{"abstract":false,"baseContracts":[],"contractDependencies":[],"contractKind":"library","documentation":{"id":4290,"nodeType":"StructuredDocumentation","src":"71:96:36","text":"@title Provides functions for deriving a pool address from the factory, tokens, and the fee"},"fullyImplemented":true,"id":4381,"linearizedBaseContracts":[4381],"name":"PoolAddress","nameLocation":"175:11:36","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":4293,"mutability":"constant","name":"POOL_INIT_CODE_HASH","nameLocation":"219:19:36","nodeType":"VariableDeclaration","scope":4381,"src":"193:114:36","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4291,"name":"bytes32","nodeType":"ElementaryTypeName","src":"193:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307865333466313939623139623262346634376636383434323631396435353535323764323434663738613332393765613839333235663834336638376238623534","id":4292,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"241:66:36","typeDescriptions":{"typeIdentifier":"t_rational_102814774271675688723325049954498779091328469440286648861889194717372678376276_by_1","typeString":"int_const 1028...(70 digits omitted)...6276"},"value":"0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54"},"visibility":"internal"},{"canonicalName":"PoolAddress.PoolKey","id":4300,"members":[{"constant":false,"id":4295,"mutability":"mutable","name":"token0","nameLocation":"395:6:36","nodeType":"VariableDeclaration","scope":4300,"src":"387:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4294,"name":"address","nodeType":"ElementaryTypeName","src":"387:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4297,"mutability":"mutable","name":"token1","nameLocation":"419:6:36","nodeType":"VariableDeclaration","scope":4300,"src":"411:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4296,"name":"address","nodeType":"ElementaryTypeName","src":"411:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4299,"mutability":"mutable","name":"fee","nameLocation":"442:3:36","nodeType":"VariableDeclaration","scope":4300,"src":"435:10:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":4298,"name":"uint24","nodeType":"ElementaryTypeName","src":"435:6:36","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"name":"PoolKey","nameLocation":"369:7:36","nodeType":"StructDefinition","scope":4381,"src":"362:90:36","visibility":"public"},{"body":{"id":4331,"nodeType":"Block","src":"917:141:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":4315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4313,"name":"tokenA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4303,"src":"931:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":4314,"name":"tokenB","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4305,"src":"940:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"931:15:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4324,"nodeType":"IfStatement","src":"927:56:36","trueBody":{"expression":{"id":4322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":4316,"name":"tokenA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4303,"src":"949:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4317,"name":"tokenB","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4305,"src":"957:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":4318,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"948:16:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_address_$","typeString":"tuple(address,address)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"id":4319,"name":"tokenB","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4305,"src":"968:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4320,"name":"tokenA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4303,"src":"976:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":4321,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"967:16:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_address_$","typeString":"tuple(address,address)"}},"src":"948:35:36","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4323,"nodeType":"ExpressionStatement","src":"948:35:36"}},{"expression":{"arguments":[{"id":4326,"name":"tokenA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4303,"src":"1017:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4327,"name":"tokenB","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4305,"src":"1033:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4328,"name":"fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4307,"src":"1046:3:36","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint24","typeString":"uint24"}],"id":4325,"name":"PoolKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4300,"src":"1000:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_PoolKey_$4300_storage_ptr_$","typeString":"type(struct PoolAddress.PoolKey storage pointer)"}},"id":4329,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"names":["token0","token1","fee"],"nodeType":"FunctionCall","src":"1000:51:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PoolKey_$4300_memory_ptr","typeString":"struct PoolAddress.PoolKey memory"}},"functionReturnParameters":4312,"id":4330,"nodeType":"Return","src":"993:58:36"}]},"documentation":{"id":4301,"nodeType":"StructuredDocumentation","src":"458:321:36","text":"@notice Returns PoolKey: the ordered tokens with the matched fee levels\n @param tokenA The first token of a pool, unsorted\n @param tokenB The second token of a pool, unsorted\n @param fee The fee level of the pool\n @return Poolkey The pool details with ordered token0 and token1 assignments"},"id":4332,"implemented":true,"kind":"function","modifiers":[],"name":"getPoolKey","nameLocation":"793:10:36","nodeType":"FunctionDefinition","parameters":{"id":4308,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4303,"mutability":"mutable","name":"tokenA","nameLocation":"821:6:36","nodeType":"VariableDeclaration","scope":4332,"src":"813:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4302,"name":"address","nodeType":"ElementaryTypeName","src":"813:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4305,"mutability":"mutable","name":"tokenB","nameLocation":"845:6:36","nodeType":"VariableDeclaration","scope":4332,"src":"837:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4304,"name":"address","nodeType":"ElementaryTypeName","src":"837:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4307,"mutability":"mutable","name":"fee","nameLocation":"868:3:36","nodeType":"VariableDeclaration","scope":4332,"src":"861:10:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":4306,"name":"uint24","nodeType":"ElementaryTypeName","src":"861:6:36","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"src":"803:74:36"},"returnParameters":{"id":4312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4311,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4332,"src":"901:14:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PoolKey_$4300_memory_ptr","typeString":"struct PoolAddress.PoolKey"},"typeName":{"id":4310,"nodeType":"UserDefinedTypeName","pathNode":{"id":4309,"name":"PoolKey","nodeType":"IdentifierPath","referencedDeclaration":4300,"src":"901:7:36"},"referencedDeclaration":4300,"src":"901:7:36","typeDescriptions":{"typeIdentifier":"t_struct$_PoolKey_$4300_storage_ptr","typeString":"struct PoolAddress.PoolKey"}},"visibility":"internal"}],"src":"900:16:36"},"scope":4381,"src":"784:274:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4379,"nodeType":"Block","src":"1403:414:36","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":4348,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4344,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4338,"src":"1421:3:36","typeDescriptions":{"typeIdentifier":"t_struct$_PoolKey_$4300_memory_ptr","typeString":"struct PoolAddress.PoolKey memory"}},"id":4345,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberName":"token0","nodeType":"MemberAccess","referencedDeclaration":4295,"src":"1421:10:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":4346,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4338,"src":"1434:3:36","typeDescriptions":{"typeIdentifier":"t_struct$_PoolKey_$4300_memory_ptr","typeString":"struct PoolAddress.PoolKey memory"}},"id":4347,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberName":"token1","nodeType":"MemberAccess","referencedDeclaration":4297,"src":"1434:10:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1421:23:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"id":4343,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1413:7:36","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$returns$__$","typeString":"function (bool) pure"}},"id":4349,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1413:32:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4350,"nodeType":"ExpressionStatement","src":"1413:32:36"},{"expression":{"id":4377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4351,"name":"pool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4341,"src":"1455:4:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"hexValue":"ff","id":4359,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"1581:7:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_8b1a944cf13a9a1c08facb2c9e98623ef3254d2ddb48113885c3e8e97fec8db9","typeString":"literal_string hex\"ff\""}},{"id":4360,"name":"factory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4335,"src":"1614:7:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"arguments":[{"expression":{"id":4364,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4338,"src":"1668:3:36","typeDescriptions":{"typeIdentifier":"t_struct$_PoolKey_$4300_memory_ptr","typeString":"struct PoolAddress.PoolKey memory"}},"id":4365,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberName":"token0","nodeType":"MemberAccess","referencedDeclaration":4295,"src":"1668:10:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":4366,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4338,"src":"1680:3:36","typeDescriptions":{"typeIdentifier":"t_struct$_PoolKey_$4300_memory_ptr","typeString":"struct PoolAddress.PoolKey memory"}},"id":4367,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberName":"token1","nodeType":"MemberAccess","referencedDeclaration":4297,"src":"1680:10:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":4368,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4338,"src":"1692:3:36","typeDescriptions":{"typeIdentifier":"t_struct$_PoolKey_$4300_memory_ptr","typeString":"struct PoolAddress.PoolKey memory"}},"id":4369,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberName":"fee","nodeType":"MemberAccess","referencedDeclaration":4299,"src":"1692:7:36","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint24","typeString":"uint24"}],"expression":{"id":4362,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1657:3:36","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":4363,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberName":"encode","nodeType":"MemberAccess","src":"1657:10:36","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":4370,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1657:43:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":4361,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1647:9:36","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4371,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1647:54:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4372,"name":"POOL_INIT_CODE_HASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4293,"src":"1727:19:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_8b1a944cf13a9a1c08facb2c9e98623ef3254d2ddb48113885c3e8e97fec8db9","typeString":"literal_string hex\"ff\""},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4357,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1539:3:36","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":4358,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberName":"encodePacked","nodeType":"MemberAccess","src":"1539:16:36","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":4373,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1539:229:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":4356,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1508:9:36","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4374,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1508:278:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4355,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1483:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":4354,"name":"bytes20","nodeType":"ElementaryTypeName","src":"1483:7:36","typeDescriptions":{}}},"id":4375,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1483:317:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"}],"id":4353,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1462:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4352,"name":"address","nodeType":"ElementaryTypeName","src":"1462:7:36","typeDescriptions":{}}},"id":4376,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"names":[],"nodeType":"FunctionCall","src":"1462:348:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1455:355:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4378,"nodeType":"ExpressionStatement","src":"1455:355:36"}]},"documentation":{"id":4333,"nodeType":"StructuredDocumentation","src":"1064:236:36","text":"@notice Deterministically computes the pool address given the factory and PoolKey\n @param factory The Uniswap V3 factory contract address\n @param key The PoolKey\n @return pool The contract address of the V3 pool"},"id":4380,"implemented":true,"kind":"function","modifiers":[],"name":"computeAddress","nameLocation":"1314:14:36","nodeType":"FunctionDefinition","parameters":{"id":4339,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4335,"mutability":"mutable","name":"factory","nameLocation":"1337:7:36","nodeType":"VariableDeclaration","scope":4380,"src":"1329:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4334,"name":"address","nodeType":"ElementaryTypeName","src":"1329:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4338,"mutability":"mutable","name":"key","nameLocation":"1361:3:36","nodeType":"VariableDeclaration","scope":4380,"src":"1346:18:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PoolKey_$4300_memory_ptr","typeString":"struct PoolAddress.PoolKey"},"typeName":{"id":4337,"nodeType":"UserDefinedTypeName","pathNode":{"id":4336,"name":"PoolKey","nodeType":"IdentifierPath","referencedDeclaration":4300,"src":"1346:7:36"},"referencedDeclaration":4300,"src":"1346:7:36","typeDescriptions":{"typeIdentifier":"t_struct$_PoolKey_$4300_storage_ptr","typeString":"struct PoolAddress.PoolKey"}},"visibility":"internal"}],"src":"1328:37:36"},"returnParameters":{"id":4342,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4341,"mutability":"mutable","name":"pool","nameLocation":"1397:4:36","nodeType":"VariableDeclaration","scope":4380,"src":"1389:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4340,"name":"address","nodeType":"ElementaryTypeName","src":"1389:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1388:14:36"},"scope":4381,"src":"1305:512:36","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":4382,"src":"167:1652:36","usedErrors":[]}],"src":"46:1774:36"},"id":36}},"contracts":{"@openzeppelin/contracts/access/IAccessControl.sol":{"IAccessControl":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"getRoleAdmin(bytes32)":"248a9ca3","grantRole(bytes32,address)":"2f2ff15d","hasRole(bytes32,address)":"91d14854","renounceRole(bytes32,address)":"36568abe","revokeRole(bytes32,address)":"d547741f"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"previousAdminRole\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"newAdminRole\",\"type\":\"bytes32\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"External interface of AccessControl declared to support ERC165 detection.\",\"events\":{\"RoleAdminChanged(bytes32,bytes32,bytes32)\":{\"details\":\"Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted signaling this. _Available since v3.1._\"},\"RoleGranted(bytes32,address,address)\":{\"details\":\"Emitted when `account` is granted `role`. `sender` is the account that originated the contract call, an admin role bearer except when using {AccessControl-_setupRole}.\"},\"RoleRevoked(bytes32,address,address)\":{\"details\":\"Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call:   - if using `revokeRole`, it is the admin role bearer   - if using `renounceRole`, it is the role bearer (i.e. `account`)\"}},\"kind\":\"dev\",\"methods\":{\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {AccessControl-_setRoleAdmin}.\"},\"grantRole(bytes32,address)\":{\"details\":\"Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"renounceRole(bytes32,address)\":{\"details\":\"Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `account`.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":\"IAccessControl\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0x59ce320a585d7e1f163cd70390a0ef2ff9cec832e2aa544293a00692465a7a57\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bb2c137c343ef0c4c7ce7b18c1d108afdc9d315a04e48307288d2d05adcbde3a\",\"dweb:/ipfs/QmUxhrAQM3MM3FF5j7AtcXLXguWCJBHJ14BRdVtuoQc8Fh\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/IGovernor.sol":{"IGovernor":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"startBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endBlock","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"VoteCast","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"},{"indexed":false,"internalType":"bytes","name":"params","type":"bytes"}],"name":"VoteCastWithParams","type":"event"},{"inputs":[],"name":"COUNTING_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"}],"name":"castVote","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"castVoteBySig","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"}],"name":"castVoteWithReason","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"castVoteWithReasonAndParams","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"castVoteWithReasonAndParamsBySig","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"execute","outputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"getVotesWithParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"hashProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"quorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum IGovernor.ProposalState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"COUNTING_MODE()":"dd4e2ba5","castVote(uint256,uint8)":"56781388","castVoteBySig(uint256,uint8,uint8,bytes32,bytes32)":"3bccf4fd","castVoteWithReason(uint256,uint8,string)":"7b3c71d3","castVoteWithReasonAndParams(uint256,uint8,string,bytes)":"5f398a14","castVoteWithReasonAndParamsBySig(uint256,uint8,string,bytes,uint8,bytes32,bytes32)":"03420181","execute(address[],uint256[],bytes[],bytes32)":"2656227d","getVotes(address,uint256)":"eb9019d4","getVotesWithParams(address,uint256,bytes)":"9a802a6d","hasVoted(uint256,address)":"43859632","hashProposal(address[],uint256[],bytes[],bytes32)":"c59057e4","name()":"06fdde03","proposalDeadline(uint256)":"c01f9e37","proposalSnapshot(uint256)":"2d63f693","propose(address[],uint256[],bytes[],string)":"7d5e81e2","quorum(uint256)":"f8ce560a","state(uint256)":"3e4f49e6","supportsInterface(bytes4)":"01ffc9a7","version()":"54fd4d50","votingDelay()":"3932abb1","votingPeriod()":"02a251a3"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"signatures\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"startBlock\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"endBlock\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"VoteCast\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"VoteCastWithParams\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"COUNTING_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"}],\"name\":\"castVote\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"castVoteBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"castVoteWithReason\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"castVoteWithReasonAndParamsBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"getVotesWithParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasVoted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"hashProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalDeadline\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalSnapshot\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"propose\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"state\",\"outputs\":[{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"version\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingPeriod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the {Governor} core. _Available since v4.3._\",\"events\":{\"ProposalCanceled(uint256)\":{\"details\":\"Emitted when a proposal is canceled.\"},\"ProposalCreated(uint256,address,address[],uint256[],string[],bytes[],uint256,uint256,string)\":{\"details\":\"Emitted when a proposal is created.\"},\"ProposalExecuted(uint256)\":{\"details\":\"Emitted when a proposal is executed.\"},\"VoteCast(address,uint256,uint8,uint256,string)\":{\"details\":\"Emitted when a vote is cast without params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\"},\"VoteCastWithParams(address,uint256,uint8,uint256,string,bytes)\":{\"details\":\"Emitted when a vote is cast with params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used. `params` are additional encoded parameters. Their intepepretation also depends on the voting module used.\"}},\"kind\":\"dev\",\"methods\":{\"COUNTING_MODE()\":{\"details\":\"A description of the possible `support` values for {castVote} and the way these votes are counted, meant to be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`. There are 2 standard keys: `support` and `quorum`. - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`. - `quorum=bravo` means that only For votes are counted towards quorum. - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum. If a counting module makes use of encoded `params`, it should  include this under a `params` key with a unique name that describes the behavior. For example: - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain. - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote. NOTE: The string can be decoded by the standard https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`] JavaScript class.\"},\"castVote(uint256,uint8)\":{\"details\":\"Cast a vote Emits a {VoteCast} event.\"},\"castVoteBySig(uint256,uint8,uint8,bytes32,bytes32)\":{\"details\":\"Cast a vote using the user's cryptographic signature. Emits a {VoteCast} event.\"},\"castVoteWithReason(uint256,uint8,string)\":{\"details\":\"Cast a vote with a reason Emits a {VoteCast} event.\"},\"castVoteWithReasonAndParams(uint256,uint8,string,bytes)\":{\"details\":\"Cast a vote with a reason and additional encoded parameters Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params.\"},\"castVoteWithReasonAndParamsBySig(uint256,uint8,string,bytes,uint8,bytes32,bytes32)\":{\"details\":\"Cast a vote with a reason and additional encoded parameters using the user's cryptographic signature. Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"Execute a successful proposal. This requires the quorum to be reached, the vote to be successful, and the deadline to be reached. Emits a {ProposalExecuted} event. Note: some module can modify the requirements for execution, for example by adding an additional timelock.\"},\"getVotes(address,uint256)\":{\"details\":\"Voting power of an `account` at a specific `blockNumber`. Note: this can be implemented in a number of ways, for example by reading the delegated balance from one (or multiple), {ERC20Votes} tokens.\"},\"getVotesWithParams(address,uint256,bytes)\":{\"details\":\"Voting power of an `account` at a specific `blockNumber` given additional encoded parameters.\"},\"hasVoted(uint256,address)\":{\"details\":\"Returns weither `account` has cast a vote on `proposalId`.\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"details\":\"Hashing function used to (re)build the proposal id from the proposal details..\"},\"name()\":{\"details\":\"Name of the governor instance (used in building the ERC712 domain separator).\"},\"proposalDeadline(uint256)\":{\"details\":\"Block number at which votes close. Votes close at the end of this block, so it is possible to cast a vote during this block.\"},\"proposalSnapshot(uint256)\":{\"details\":\"Block number used to retrieve user's votes and quorum. As per Compound's Comp and OpenZeppelin's ERC20Votes, the snapshot is performed at the end of this block. Hence, voting for this proposal starts at the beginning of the following block.\"},\"propose(address[],uint256[],bytes[],string)\":{\"details\":\"Create a new proposal. Vote start {IGovernor-votingDelay} blocks after the proposal is created and ends {IGovernor-votingPeriod} blocks after the voting starts. Emits a {ProposalCreated} event.\"},\"quorum(uint256)\":{\"details\":\"Minimum number of cast voted required for a proposal to be successful. Note: The `blockNumber` parameter corresponds to the snapshot used for counting vote. This allows to scale the quorum depending on values such as the totalSupply of a token at this block (see {ERC20Votes}).\"},\"state(uint256)\":{\"details\":\"Current state of a proposal, following Compound's convention\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"version()\":{\"details\":\"Version of the governor instance (used in building the ERC712 domain separator). Default: \\\"1\\\"\"},\"votingDelay()\":{\"details\":\"Delay, in number of block, between the proposal is created and the vote starts. This can be increassed to leave time for users to buy voting power, or delegate it, before the voting of a proposal starts.\"},\"votingPeriod()\":{\"details\":\"Delay, in number of blocks, between the vote start and vote ends. NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting duration compared to the voting delay.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"COUNTING_MODE()\":{\"notice\":\"module:voting\"},\"getVotes(address,uint256)\":{\"notice\":\"module:reputation\"},\"getVotesWithParams(address,uint256,bytes)\":{\"notice\":\"module:reputation\"},\"hasVoted(uint256,address)\":{\"notice\":\"module:voting\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"notice\":\"module:core\"},\"name()\":{\"notice\":\"module:core\"},\"proposalDeadline(uint256)\":{\"notice\":\"module:core\"},\"proposalSnapshot(uint256)\":{\"notice\":\"module:core\"},\"quorum(uint256)\":{\"notice\":\"module:user-config\"},\"state(uint256)\":{\"notice\":\"module:core\"},\"version()\":{\"notice\":\"module:core\"},\"votingDelay()\":{\"notice\":\"module:user-config\"},\"votingPeriod()\":{\"notice\":\"module:user-config\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/IGovernor.sol\":\"IGovernor\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0xe1d0cd92e6827b0ca89925a59ec0eadc2b444aa3dd430fecb752a93c36436991\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cf6b448bf512c72350a4aaeeb0053e7f112c278cd9bdd7eb04c2f7b40b24f4dc\",\"dweb:/ipfs/Qmd1o6mVH7xLRg6yQ7Hza51bjARb2UA38LXsbTNRG9tvRu\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d\",\"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/extensions/IGovernorTimelock.sol":{"IGovernorTimelock":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"startBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endBlock","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"eta","type":"uint256"}],"name":"ProposalQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"VoteCast","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"},{"indexed":false,"internalType":"bytes","name":"params","type":"bytes"}],"name":"VoteCastWithParams","type":"event"},{"inputs":[],"name":"COUNTING_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"}],"name":"castVote","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"castVoteBySig","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"}],"name":"castVoteWithReason","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"castVoteWithReasonAndParams","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"castVoteWithReasonAndParamsBySig","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"execute","outputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"getVotesWithParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"hashProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalEta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"queue","outputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"quorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum IGovernor.ProposalState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timelock","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"COUNTING_MODE()":"dd4e2ba5","castVote(uint256,uint8)":"56781388","castVoteBySig(uint256,uint8,uint8,bytes32,bytes32)":"3bccf4fd","castVoteWithReason(uint256,uint8,string)":"7b3c71d3","castVoteWithReasonAndParams(uint256,uint8,string,bytes)":"5f398a14","castVoteWithReasonAndParamsBySig(uint256,uint8,string,bytes,uint8,bytes32,bytes32)":"03420181","execute(address[],uint256[],bytes[],bytes32)":"2656227d","getVotes(address,uint256)":"eb9019d4","getVotesWithParams(address,uint256,bytes)":"9a802a6d","hasVoted(uint256,address)":"43859632","hashProposal(address[],uint256[],bytes[],bytes32)":"c59057e4","name()":"06fdde03","proposalDeadline(uint256)":"c01f9e37","proposalEta(uint256)":"ab58fb8e","proposalSnapshot(uint256)":"2d63f693","propose(address[],uint256[],bytes[],string)":"7d5e81e2","queue(address[],uint256[],bytes[],bytes32)":"160cbed7","quorum(uint256)":"f8ce560a","state(uint256)":"3e4f49e6","supportsInterface(bytes4)":"01ffc9a7","timelock()":"d33219b4","version()":"54fd4d50","votingDelay()":"3932abb1","votingPeriod()":"02a251a3"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"signatures\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"startBlock\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"endBlock\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"eta\",\"type\":\"uint256\"}],\"name\":\"ProposalQueued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"VoteCast\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"VoteCastWithParams\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"COUNTING_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"}],\"name\":\"castVote\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"castVoteBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"castVoteWithReason\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"castVoteWithReasonAndParamsBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"getVotesWithParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasVoted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"hashProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalDeadline\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalEta\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalSnapshot\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"propose\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"queue\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"state\",\"outputs\":[{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"timelock\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"version\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingPeriod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Extension of the {IGovernor} for timelock supporting modules. _Available since v4.3._\",\"kind\":\"dev\",\"methods\":{\"COUNTING_MODE()\":{\"details\":\"A description of the possible `support` values for {castVote} and the way these votes are counted, meant to be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`. There are 2 standard keys: `support` and `quorum`. - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`. - `quorum=bravo` means that only For votes are counted towards quorum. - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum. If a counting module makes use of encoded `params`, it should  include this under a `params` key with a unique name that describes the behavior. For example: - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain. - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote. NOTE: The string can be decoded by the standard https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`] JavaScript class.\"},\"castVote(uint256,uint8)\":{\"details\":\"Cast a vote Emits a {VoteCast} event.\"},\"castVoteBySig(uint256,uint8,uint8,bytes32,bytes32)\":{\"details\":\"Cast a vote using the user's cryptographic signature. Emits a {VoteCast} event.\"},\"castVoteWithReason(uint256,uint8,string)\":{\"details\":\"Cast a vote with a reason Emits a {VoteCast} event.\"},\"castVoteWithReasonAndParams(uint256,uint8,string,bytes)\":{\"details\":\"Cast a vote with a reason and additional encoded parameters Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params.\"},\"castVoteWithReasonAndParamsBySig(uint256,uint8,string,bytes,uint8,bytes32,bytes32)\":{\"details\":\"Cast a vote with a reason and additional encoded parameters using the user's cryptographic signature. Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"Execute a successful proposal. This requires the quorum to be reached, the vote to be successful, and the deadline to be reached. Emits a {ProposalExecuted} event. Note: some module can modify the requirements for execution, for example by adding an additional timelock.\"},\"getVotes(address,uint256)\":{\"details\":\"Voting power of an `account` at a specific `blockNumber`. Note: this can be implemented in a number of ways, for example by reading the delegated balance from one (or multiple), {ERC20Votes} tokens.\"},\"getVotesWithParams(address,uint256,bytes)\":{\"details\":\"Voting power of an `account` at a specific `blockNumber` given additional encoded parameters.\"},\"hasVoted(uint256,address)\":{\"details\":\"Returns weither `account` has cast a vote on `proposalId`.\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"details\":\"Hashing function used to (re)build the proposal id from the proposal details..\"},\"name()\":{\"details\":\"Name of the governor instance (used in building the ERC712 domain separator).\"},\"proposalDeadline(uint256)\":{\"details\":\"Block number at which votes close. Votes close at the end of this block, so it is possible to cast a vote during this block.\"},\"proposalSnapshot(uint256)\":{\"details\":\"Block number used to retrieve user's votes and quorum. As per Compound's Comp and OpenZeppelin's ERC20Votes, the snapshot is performed at the end of this block. Hence, voting for this proposal starts at the beginning of the following block.\"},\"propose(address[],uint256[],bytes[],string)\":{\"details\":\"Create a new proposal. Vote start {IGovernor-votingDelay} blocks after the proposal is created and ends {IGovernor-votingPeriod} blocks after the voting starts. Emits a {ProposalCreated} event.\"},\"quorum(uint256)\":{\"details\":\"Minimum number of cast voted required for a proposal to be successful. Note: The `blockNumber` parameter corresponds to the snapshot used for counting vote. This allows to scale the quorum depending on values such as the totalSupply of a token at this block (see {ERC20Votes}).\"},\"state(uint256)\":{\"details\":\"Current state of a proposal, following Compound's convention\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"version()\":{\"details\":\"Version of the governor instance (used in building the ERC712 domain separator). Default: \\\"1\\\"\"},\"votingDelay()\":{\"details\":\"Delay, in number of block, between the proposal is created and the vote starts. This can be increassed to leave time for users to buy voting power, or delegate it, before the voting of a proposal starts.\"},\"votingPeriod()\":{\"details\":\"Delay, in number of blocks, between the vote start and vote ends. NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting duration compared to the voting delay.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"COUNTING_MODE()\":{\"notice\":\"module:voting\"},\"getVotes(address,uint256)\":{\"notice\":\"module:reputation\"},\"getVotesWithParams(address,uint256,bytes)\":{\"notice\":\"module:reputation\"},\"hasVoted(uint256,address)\":{\"notice\":\"module:voting\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"notice\":\"module:core\"},\"name()\":{\"notice\":\"module:core\"},\"proposalDeadline(uint256)\":{\"notice\":\"module:core\"},\"proposalSnapshot(uint256)\":{\"notice\":\"module:core\"},\"quorum(uint256)\":{\"notice\":\"module:user-config\"},\"state(uint256)\":{\"notice\":\"module:core\"},\"version()\":{\"notice\":\"module:core\"},\"votingDelay()\":{\"notice\":\"module:user-config\"},\"votingPeriod()\":{\"notice\":\"module:user-config\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/extensions/IGovernorTimelock.sol\":\"IGovernorTimelock\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0xe1d0cd92e6827b0ca89925a59ec0eadc2b444aa3dd430fecb752a93c36436991\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cf6b448bf512c72350a4aaeeb0053e7f112c278cd9bdd7eb04c2f7b40b24f4dc\",\"dweb:/ipfs/Qmd1o6mVH7xLRg6yQ7Hza51bjARb2UA38LXsbTNRG9tvRu\"]},\"@openzeppelin/contracts/governance/extensions/IGovernorTimelock.sol\":{\"keccak256\":\"0xe6234ac4ba0508a3371a46543cdf4bf3a1a404d2d3c3470006741a0da294f974\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f65e0806425afa3946ba400879444d73b0b9320534eaecb2c64dc3689cff0614\",\"dweb:/ipfs/QmbpjBrErEMrx9qbS529XXbfooHfkihCj9iBz2QWiw4Xe4\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d\",\"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/utils/IVotes.sol":{"IVotes":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"delegate(address)":"5c19a95c","delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)":"c3cda520","delegates(address)":"587cde1e","getPastTotalSupply(uint256)":"8e539e8c","getPastVotes(address,uint256)":"3a46b1a8","getVotes(address)":"9ab24eb0"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"fromDelegate\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"toDelegate\",\"type\":\"address\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"previousBalance\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newBalance\",\"type\":\"uint256\"}],\"name\":\"DelegateVotesChanged\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"delegates\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"}],\"name\":\"getPastTotalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"}],\"name\":\"getPastVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts. _Available since v4.5._\",\"events\":{\"DelegateChanged(address,address,address)\":{\"details\":\"Emitted when an account changes their delegate.\"},\"DelegateVotesChanged(address,uint256,uint256)\":{\"details\":\"Emitted when a token transfer or delegate change results in changes to a delegate's number of votes.\"}},\"kind\":\"dev\",\"methods\":{\"delegate(address)\":{\"details\":\"Delegates votes from the sender to `delegatee`.\"},\"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Delegates votes from signer to `delegatee`.\"},\"delegates(address)\":{\"details\":\"Returns the delegate that `account` has chosen.\"},\"getPastTotalSupply(uint256)\":{\"details\":\"Returns the total supply of votes available at the end of a past block (`blockNumber`). NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. Votes that have not been delegated are still part of total supply, even though they would not participate in a vote.\"},\"getPastVotes(address,uint256)\":{\"details\":\"Returns the amount of votes that `account` had at the end of a past block (`blockNumber`).\"},\"getVotes(address)\":{\"details\":\"Returns the current amount of votes that `account` has.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/utils/IVotes.sol\":\"IVotes\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0xf5324a55ee9c0b4a840ea57c055ac9d046f88986ceef567e1cf68113e46a79c0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f41fe2bddc33c17ccccfc25379b1869354e9ee62d8b28d2acc95229eeba37a86\",\"dweb:/ipfs/Qmb6SF2XL2uSvH6k5JSjtx4Xoqz41ACkhdAhtbW1Yh3RiY\"]}},\"version\":1}"}},"@openzeppelin/contracts/proxy/utils/Initializable.sol":{"Initializable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"}],\"devdoc\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor constructor() {     _disableInitializers(); } ``` ====\",\"details\":\"This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. The initialization functions use a version number. Once a version number is used, it is consumed and cannot be reused. This mechanism prevents re-execution of each \\\"step\\\" but allows the creation of new initialization steps in case an upgrade adds a module that needs to be initialized. For example: [.hljs-theme-light.nopadding] ``` contract MyToken is ERC20Upgradeable {     function initialize() initializer public {         __ERC20_init(\\\"MyToken\\\", \\\"MTK\\\");     } } contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {     function initializeV2() reinitializer(2) public {         __ERC20Permit_init(\\\"MyToken\\\");     } } ``` TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. [CAUTION] ==== Avoid leaving a contract uninitialized. An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: [.hljs-theme-light.nopadding] ```\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"_initialized\":{\"custom:oz-retyped-from\":\"bool\",\"details\":\"Indicates that the contract has been initialized.\"},\"_initializing\":{\"details\":\"Indicates that the contract is in the process of being initialized.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":\"Initializable\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x2a21b14ff90012878752f230d3ffd5c3405e5938d06c97a7d89c0a64561d0d66\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3313a8f9bb1f9476857c9050067b31982bf2140b83d84f3bc0cec1f62bbe947f\",\"dweb:/ipfs/Qma17Pk8NRe7aB4UD3jjVxk7nSFaov3eQyv86hcyqkwJRV\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xd6153ce99bcdcce22b124f755e72553295be6abcd63804cfdffceb188b8bef10\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://35c47bece3c03caaa07fab37dd2bb3413bfbca20db7bd9895024390e0a469487\",\"dweb:/ipfs/QmPGWT2x3QHcKxqe6gRmAkdakhbaRgx3DLzcakHz5M4eXG\"]}},\"version\":1}"}},"@openzeppelin/contracts/security/ReentrancyGuard.sol":{"ReentrancyGuard":{"abi":[],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Contract module that helps prevent reentrant calls to a function. Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier available, which can be applied to functions to make sure there are no nested (reentrant) calls to them. Note that because there is a single `nonReentrant` guard, functions marked as `nonReentrant` may not call one another. This can be worked around by making those functions `private`, and then adding `external` `nonReentrant` entry points to them. TIP: If you would like to learn more about reentrancy and alternative ways to protect against it, check out our blog post https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":\"ReentrancyGuard\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"keccak256\":\"0x0e9621f60b2faabe65549f7ed0f24e8853a45c1b7990d47e8160e523683f3935\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://287a2f8d5814dd0f05f22b740f18ca8321acc21c9bd03a6cb2203ea626e2f3f2\",\"dweb:/ipfs/QmZRQv9iuwU817VuqkA2WweiaibKii69x9QxYBBEfbNEud\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"IERC20":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC20 standard as defined in the EIP.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x9750c6b834f7b43000631af5cc30001c5f547b3ceb3635488f140f60e897ea6b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5a7d5b1ef5d8d5889ad2ed89d8619c09383b80b72ab226e0fe7bde1636481e34\",\"dweb:/ipfs/QmebXWgtEfumQGBdVeM6c71McLixYXQP5Bk6kKXuoY4Bmr\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC721/IERC721.sol":{"IERC721":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"operator","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","getApproved(uint256)":"081812fc","isApprovedForAll(address,address)":"e985e9c5","ownerOf(uint256)":"6352211e","safeTransferFrom(address,address,uint256)":"42842e0e","safeTransferFrom(address,address,uint256,bytes)":"b88d4fde","setApprovalForAll(address,bool)":"a22cb465","supportsInterface(bytes4)":"01ffc9a7","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"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\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"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\"}],\"devdoc\":{\"details\":\"Required interface of an ERC721 compliant contract.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when `owner` enables `approved` to manage the `tokenId` token.\"},\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `tokenId` token is transferred from `from` to `to`.\"}},\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the caller. Emits an {ApprovalForAll} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":\"IERC721\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xed6a749c5373af398105ce6ee3ac4763aa450ea7285d268c85d9eeca809cdb1f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://20a97f891d06f0fe91560ea1a142aaa26fdd22bed1b51606b7d48f670deeb50f\",\"dweb:/ipfs/QmTbCtZKChpaX5H2iRiTDMcSz29GSLCpTCDgJpcMR4wg8x\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol":{"IERC721Enumerable":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"operator","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"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"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","getApproved(uint256)":"081812fc","isApprovedForAll(address,address)":"e985e9c5","ownerOf(uint256)":"6352211e","safeTransferFrom(address,address,uint256)":"42842e0e","safeTransferFrom(address,address,uint256,bytes)":"b88d4fde","setApprovalForAll(address,bool)":"a22cb465","supportsInterface(bytes4)":"01ffc9a7","tokenByIndex(uint256)":"4f6ccce7","tokenOfOwnerByIndex(address,uint256)":"2f745c59","totalSupply()":"18160ddd","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"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\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"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\":[],\"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\"}],\"devdoc\":{\"details\":\"See https://eips.ethereum.org/EIPS/eip-721\",\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the caller. Emits an {ApprovalForAll} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"tokenByIndex(uint256)\":{\"details\":\"Returns a token ID at a given `index` of all the tokens stored by the contract. Use along with {totalSupply} to enumerate all tokens.\"},\"tokenOfOwnerByIndex(address,uint256)\":{\"details\":\"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.\"},\"totalSupply()\":{\"details\":\"Returns the total amount of tokens stored by the contract.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"}},\"title\":\"ERC-721 Non-Fungible Token Standard, optional enumeration extension\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol\":\"IERC721Enumerable\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xed6a749c5373af398105ce6ee3ac4763aa450ea7285d268c85d9eeca809cdb1f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://20a97f891d06f0fe91560ea1a142aaa26fdd22bed1b51606b7d48f670deeb50f\",\"dweb:/ipfs/QmTbCtZKChpaX5H2iRiTDMcSz29GSLCpTCDgJpcMR4wg8x\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol\":{\"keccak256\":\"0xd1556954440b31c97a142c6ba07d5cade45f96fafd52091d33a14ebe365aecbf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://26fef835622b46a5ba08b3ef6b46a22e94b5f285d0f0fb66b703bd30217d2c34\",\"dweb:/ipfs/QmZ548qdwfL1qF7aXz3xh1GCdTiST81kGGuKRqVUfYmPZR\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol":{"IERC721Metadata":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"operator","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","getApproved(uint256)":"081812fc","isApprovedForAll(address,address)":"e985e9c5","name()":"06fdde03","ownerOf(uint256)":"6352211e","safeTransferFrom(address,address,uint256)":"42842e0e","safeTransferFrom(address,address,uint256,bytes)":"b88d4fde","setApprovalForAll(address,bool)":"a22cb465","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","tokenURI(uint256)":"c87b56dd","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"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\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"tokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"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\"}],\"devdoc\":{\"details\":\"See https://eips.ethereum.org/EIPS/eip-721\",\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"name()\":{\"details\":\"Returns the token collection name.\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the caller. Emits an {ApprovalForAll} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"symbol()\":{\"details\":\"Returns the token collection symbol.\"},\"tokenURI(uint256)\":{\"details\":\"Returns the Uniform Resource Identifier (URI) for `tokenId` token.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"}},\"title\":\"ERC-721 Non-Fungible Token Standard, optional metadata extension\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":\"IERC721Metadata\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xed6a749c5373af398105ce6ee3ac4763aa450ea7285d268c85d9eeca809cdb1f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://20a97f891d06f0fe91560ea1a142aaa26fdd22bed1b51606b7d48f670deeb50f\",\"dweb:/ipfs/QmTbCtZKChpaX5H2iRiTDMcSz29GSLCpTCDgJpcMR4wg8x\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146\",\"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Address.sol":{"Address":{"abi":[],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122041ba65f8ba70c77d82b498530370678a78f06240cb94acf62833106e3c7164a364736f6c63430008040033","opcodes":"PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 COINBASE 0xBA PUSH6 0xF8BA70C77D82 0xB4 SWAP9 MSTORE8 SUB PUSH17 0x678A78F06240CB94ACF62833106E3C7164 LOG3 PUSH5 0x736F6C6343 STOP ADDMOD DIV STOP CALLER ","sourceMap":"194:8111:11:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;194:8111:11;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122041ba65f8ba70c77d82b498530370678a78f06240cb94acf62833106e3c7164a364736f6c63430008040033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 COINBASE 0xBA PUSH6 0xF8BA70C77D82 0xB4 SWAP9 MSTORE8 SUB PUSH17 0x678A78F06240CB94ACF62833106E3C7164 LOG3 PUSH5 0x736F6C6343 STOP ADDMOD DIV STOP CALLER ","sourceMap":"194:8111:11:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Collection of functions related to the address type\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Address.sol\":\"Address\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xd6153ce99bcdcce22b124f755e72553295be6abcd63804cfdffceb188b8bef10\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://35c47bece3c03caaa07fab37dd2bb3413bfbca20db7bd9895024390e0a469487\",\"dweb:/ipfs/QmPGWT2x3QHcKxqe6gRmAkdakhbaRgx3DLzcakHz5M4eXG\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"ERC165":{"abi":[{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC165} interface. Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check for the additional interface id that will be supported. For example: ```solidity function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); } ``` Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":\"ERC165\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d\",\"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"IERC165":{"abi":[{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC165 standard, as defined in the https://eips.ethereum.org/EIPS/eip-165[EIP]. Implementers can declare support of contract interfaces, which can then be queried by others ({ERC165Checker}). For an implementation, see {ERC165}.\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":\"IERC165\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/math/SafeMath.sol":{"SafeMath":{"abi":[],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212205c2a9ed102890e2a56bf6ea702e35fc00d4ac543dc446f658e9b53dc3697e42264736f6c63430008040033","opcodes":"PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x5C 0x2A SWAP15 0xD1 MUL DUP10 0xE 0x2A JUMP 0xBF PUSH15 0xA702E35FC00D4AC543DC446F658E9B MSTORE8 0xDC CALLDATASIZE SWAP8 0xE4 0x22 PUSH5 0x736F6C6343 STOP ADDMOD DIV STOP CALLER ","sourceMap":"482:6300:14:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;482:6300:14;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212205c2a9ed102890e2a56bf6ea702e35fc00d4ac543dc446f658e9b53dc3697e42264736f6c63430008040033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x5C 0x2A SWAP15 0xD1 MUL DUP10 0xE 0x2A JUMP 0xBF PUSH15 0xA702E35FC00D4AC543DC446F658E9B MSTORE8 0xDC CALLDATASIZE SWAP8 0xE4 0x22 PUSH5 0x736F6C6343 STOP ADDMOD DIV STOP CALLER ","sourceMap":"482:6300:14:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Wrappers over Solidity's arithmetic operations. NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler now has built in overflow checking.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/SafeMath.sol\":\"SafeMath\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeMath.sol\":{\"keccak256\":\"0x0f633a0223d9a1dcccfcf38a64c9de0874dfcbfac0c6941ccf074d63a2ce0e1e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://864a40efcffdf408044c332a5aa38ec5618ed7b4eecb8f65faf45671bd6cdc65\",\"dweb:/ipfs/QmQJquTMtc6fgm5JQzGdsGpA2fqBe3MHWEdt2qzaLySMdN\"]}},\"version\":1}"}},"@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol":{"IUniswapV3Factory":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint24","name":"fee","type":"uint24"},{"indexed":true,"internalType":"int24","name":"tickSpacing","type":"int24"}],"name":"FeeAmountEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token0","type":"address"},{"indexed":true,"internalType":"address","name":"token1","type":"address"},{"indexed":true,"internalType":"uint24","name":"fee","type":"uint24"},{"indexed":false,"internalType":"int24","name":"tickSpacing","type":"int24"},{"indexed":false,"internalType":"address","name":"pool","type":"address"}],"name":"PoolCreated","type":"event"},{"inputs":[{"internalType":"address","name":"tokenA","type":"address"},{"internalType":"address","name":"tokenB","type":"address"},{"internalType":"uint24","name":"fee","type":"uint24"}],"name":"createPool","outputs":[{"internalType":"address","name":"pool","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint24","name":"fee","type":"uint24"},{"internalType":"int24","name":"tickSpacing","type":"int24"}],"name":"enableFeeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint24","name":"fee","type":"uint24"}],"name":"feeAmountTickSpacing","outputs":[{"internalType":"int24","name":"","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenA","type":"address"},{"internalType":"address","name":"tokenB","type":"address"},{"internalType":"uint24","name":"fee","type":"uint24"}],"name":"getPool","outputs":[{"internalType":"address","name":"pool","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"createPool(address,address,uint24)":"a1671295","enableFeeAmount(uint24,int24)":"8a7c195f","feeAmountTickSpacing(uint24)":"22afcccb","getPool(address,address,uint24)":"1698ee82","owner()":"8da5cb5b","setOwner(address)":"13af4035"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint24\",\"name\":\"fee\",\"type\":\"uint24\"},{\"indexed\":true,\"internalType\":\"int24\",\"name\":\"tickSpacing\",\"type\":\"int24\"}],\"name\":\"FeeAmountEnabled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"oldOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnerChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token0\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token1\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint24\",\"name\":\"fee\",\"type\":\"uint24\"},{\"indexed\":false,\"internalType\":\"int24\",\"name\":\"tickSpacing\",\"type\":\"int24\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"pool\",\"type\":\"address\"}],\"name\":\"PoolCreated\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"tokenA\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"tokenB\",\"type\":\"address\"},{\"internalType\":\"uint24\",\"name\":\"fee\",\"type\":\"uint24\"}],\"name\":\"createPool\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"pool\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint24\",\"name\":\"fee\",\"type\":\"uint24\"},{\"internalType\":\"int24\",\"name\":\"tickSpacing\",\"type\":\"int24\"}],\"name\":\"enableFeeAmount\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint24\",\"name\":\"fee\",\"type\":\"uint24\"}],\"name\":\"feeAmountTickSpacing\",\"outputs\":[{\"internalType\":\"int24\",\"name\":\"\",\"type\":\"int24\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"tokenA\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"tokenB\",\"type\":\"address\"},{\"internalType\":\"uint24\",\"name\":\"fee\",\"type\":\"uint24\"}],\"name\":\"getPool\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"pool\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"}],\"name\":\"setOwner\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"FeeAmountEnabled(uint24,int24)\":{\"params\":{\"fee\":\"The enabled fee, denominated in hundredths of a bip\",\"tickSpacing\":\"The minimum number of ticks between initialized ticks for pools created with the given fee\"}},\"OwnerChanged(address,address)\":{\"params\":{\"newOwner\":\"The owner after the owner was changed\",\"oldOwner\":\"The owner before the owner was changed\"}},\"PoolCreated(address,address,uint24,int24,address)\":{\"params\":{\"fee\":\"The fee collected upon every swap in the pool, denominated in hundredths of a bip\",\"pool\":\"The address of the created pool\",\"tickSpacing\":\"The minimum number of ticks between initialized ticks\",\"token0\":\"The first token of the pool by address sort order\",\"token1\":\"The second token of the pool by address sort order\"}}},\"kind\":\"dev\",\"methods\":{\"createPool(address,address,uint24)\":{\"details\":\"tokenA and tokenB may be passed in either order: token0/token1 or token1/token0. tickSpacing is retrieved from the fee. The call will revert if the pool already exists, the fee is invalid, or the token arguments are invalid.\",\"params\":{\"fee\":\"The desired fee for the pool\",\"tokenA\":\"One of the two tokens in the desired pool\",\"tokenB\":\"The other of the two tokens in the desired pool\"},\"returns\":{\"pool\":\"The address of the newly created pool\"}},\"enableFeeAmount(uint24,int24)\":{\"details\":\"Fee amounts may never be removed once enabled\",\"params\":{\"fee\":\"The fee amount to enable, denominated in hundredths of a bip (i.e. 1e-6)\",\"tickSpacing\":\"The spacing between ticks to be enforced for all pools created with the given fee amount\"}},\"feeAmountTickSpacing(uint24)\":{\"details\":\"A fee amount can never be removed, so this value should be hard coded or cached in the calling context\",\"params\":{\"fee\":\"The enabled fee, denominated in hundredths of a bip. Returns 0 in case of unenabled fee\"},\"returns\":{\"_0\":\"The tick spacing\"}},\"getPool(address,address,uint24)\":{\"details\":\"tokenA and tokenB may be passed in either token0/token1 or token1/token0 order\",\"params\":{\"fee\":\"The fee collected upon every swap in the pool, denominated in hundredths of a bip\",\"tokenA\":\"The contract address of either token0 or token1\",\"tokenB\":\"The contract address of the other token\"},\"returns\":{\"pool\":\"The pool address\"}},\"owner()\":{\"details\":\"Can be changed by the current owner via setOwner\",\"returns\":{\"_0\":\"The address of the factory owner\"}},\"setOwner(address)\":{\"details\":\"Must be called by the current owner\",\"params\":{\"_owner\":\"The new owner of the factory\"}}},\"title\":\"The interface for the Uniswap V3 Factory\",\"version\":1},\"userdoc\":{\"events\":{\"FeeAmountEnabled(uint24,int24)\":{\"notice\":\"Emitted when a new fee amount is enabled for pool creation via the factory\"},\"OwnerChanged(address,address)\":{\"notice\":\"Emitted when the owner of the factory is changed\"},\"PoolCreated(address,address,uint24,int24,address)\":{\"notice\":\"Emitted when a pool is created\"}},\"kind\":\"user\",\"methods\":{\"createPool(address,address,uint24)\":{\"notice\":\"Creates a pool for the given two tokens and fee\"},\"enableFeeAmount(uint24,int24)\":{\"notice\":\"Enables a fee amount with the given tickSpacing\"},\"feeAmountTickSpacing(uint24)\":{\"notice\":\"Returns the tick spacing for a given fee amount, if enabled, or 0 if not enabled\"},\"getPool(address,address,uint24)\":{\"notice\":\"Returns the pool address for a given pair of tokens and a fee, or address 0 if it does not exist\"},\"owner()\":{\"notice\":\"Returns the current owner of the factory\"},\"setOwner(address)\":{\"notice\":\"Updates the owner of the factory\"}},\"notice\":\"The Uniswap V3 Factory facilitates creation of Uniswap V3 pools and control over the protocol fees\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol\":\"IUniswapV3Factory\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol\":{\"keccak256\":\"0xcc3d0c93fc9ac0febbe09f941b465b57f750bcf3b48432da0b97dc289cfdc489\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://b9379ad954680c44a0bc523b314ae4c4da735f9fe1d02aa56ea5bdba6f1136f2\",\"dweb:/ipfs/QmZXdgQNXKAckrXWz9R3mc47F1fvDvr28a2ewJrwNAw71B\"]}},\"version\":1}"}},"@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol":{"IUniswapV3Pool":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"int24","name":"tickLower","type":"int24"},{"indexed":true,"internalType":"int24","name":"tickUpper","type":"int24"},{"indexed":false,"internalType":"uint128","name":"amount","type":"uint128"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":true,"internalType":"int24","name":"tickLower","type":"int24"},{"indexed":true,"internalType":"int24","name":"tickUpper","type":"int24"},{"indexed":false,"internalType":"uint128","name":"amount0","type":"uint128"},{"indexed":false,"internalType":"uint128","name":"amount1","type":"uint128"}],"name":"Collect","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint128","name":"amount0","type":"uint128"},{"indexed":false,"internalType":"uint128","name":"amount1","type":"uint128"}],"name":"CollectProtocol","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"paid0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"paid1","type":"uint256"}],"name":"Flash","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"observationCardinalityNextOld","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"observationCardinalityNextNew","type":"uint16"}],"name":"IncreaseObservationCardinalityNext","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint160","name":"sqrtPriceX96","type":"uint160"},{"indexed":false,"internalType":"int24","name":"tick","type":"int24"}],"name":"Initialize","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"int24","name":"tickLower","type":"int24"},{"indexed":true,"internalType":"int24","name":"tickUpper","type":"int24"},{"indexed":false,"internalType":"uint128","name":"amount","type":"uint128"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"feeProtocol0Old","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"feeProtocol1Old","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"feeProtocol0New","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"feeProtocol1New","type":"uint8"}],"name":"SetFeeProtocol","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"int256","name":"amount0","type":"int256"},{"indexed":false,"internalType":"int256","name":"amount1","type":"int256"},{"indexed":false,"internalType":"uint160","name":"sqrtPriceX96","type":"uint160"},{"indexed":false,"internalType":"uint128","name":"liquidity","type":"uint128"},{"indexed":false,"internalType":"int24","name":"tick","type":"int24"}],"name":"Swap","type":"event"},{"inputs":[{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint128","name":"amount","type":"uint128"}],"name":"burn","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint128","name":"amount0Requested","type":"uint128"},{"internalType":"uint128","name":"amount1Requested","type":"uint128"}],"name":"collect","outputs":[{"internalType":"uint128","name":"amount0","type":"uint128"},{"internalType":"uint128","name":"amount1","type":"uint128"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint128","name":"amount0Requested","type":"uint128"},{"internalType":"uint128","name":"amount1Requested","type":"uint128"}],"name":"collectProtocol","outputs":[{"internalType":"uint128","name":"amount0","type":"uint128"},{"internalType":"uint128","name":"amount1","type":"uint128"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint24","name":"","type":"uint24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeGrowthGlobal0X128","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeGrowthGlobal1X128","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"flash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"observationCardinalityNext","type":"uint16"}],"name":"increaseObservationCardinalityNext","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint160","name":"sqrtPriceX96","type":"uint160"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidity","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLiquidityPerTick","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint128","name":"amount","type":"uint128"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"observations","outputs":[{"internalType":"uint32","name":"blockTimestamp","type":"uint32"},{"internalType":"int56","name":"tickCumulative","type":"int56"},{"internalType":"uint160","name":"secondsPerLiquidityCumulativeX128","type":"uint160"},{"internalType":"bool","name":"initialized","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32[]","name":"secondsAgos","type":"uint32[]"}],"name":"observe","outputs":[{"internalType":"int56[]","name":"tickCumulatives","type":"int56[]"},{"internalType":"uint160[]","name":"secondsPerLiquidityCumulativeX128s","type":"uint160[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"key","type":"bytes32"}],"name":"positions","outputs":[{"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":"protocolFees","outputs":[{"internalType":"uint128","name":"token0","type":"uint128"},{"internalType":"uint128","name":"token1","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"feeProtocol0","type":"uint8"},{"internalType":"uint8","name":"feeProtocol1","type":"uint8"}],"name":"setFeeProtocol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"slot0","outputs":[{"internalType":"uint160","name":"sqrtPriceX96","type":"uint160"},{"internalType":"int24","name":"tick","type":"int24"},{"internalType":"uint16","name":"observationIndex","type":"uint16"},{"internalType":"uint16","name":"observationCardinality","type":"uint16"},{"internalType":"uint16","name":"observationCardinalityNext","type":"uint16"},{"internalType":"uint8","name":"feeProtocol","type":"uint8"},{"internalType":"bool","name":"unlocked","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"}],"name":"snapshotCumulativesInside","outputs":[{"internalType":"int56","name":"tickCumulativeInside","type":"int56"},{"internalType":"uint160","name":"secondsPerLiquidityInsideX128","type":"uint160"},{"internalType":"uint32","name":"secondsInside","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bool","name":"zeroForOne","type":"bool"},{"internalType":"int256","name":"amountSpecified","type":"int256"},{"internalType":"uint160","name":"sqrtPriceLimitX96","type":"uint160"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"swap","outputs":[{"internalType":"int256","name":"amount0","type":"int256"},{"internalType":"int256","name":"amount1","type":"int256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int16","name":"wordPosition","type":"int16"}],"name":"tickBitmap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tickSpacing","outputs":[{"internalType":"int24","name":"","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int24","name":"tick","type":"int24"}],"name":"ticks","outputs":[{"internalType":"uint128","name":"liquidityGross","type":"uint128"},{"internalType":"int128","name":"liquidityNet","type":"int128"},{"internalType":"uint256","name":"feeGrowthOutside0X128","type":"uint256"},{"internalType":"uint256","name":"feeGrowthOutside1X128","type":"uint256"},{"internalType":"int56","name":"tickCumulativeOutside","type":"int56"},{"internalType":"uint160","name":"secondsPerLiquidityOutsideX128","type":"uint160"},{"internalType":"uint32","name":"secondsOutside","type":"uint32"},{"internalType":"bool","name":"initialized","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"burn(int24,int24,uint128)":"a34123a7","collect(address,int24,int24,uint128,uint128)":"4f1eb3d8","collectProtocol(address,uint128,uint128)":"85b66729","factory()":"c45a0155","fee()":"ddca3f43","feeGrowthGlobal0X128()":"f3058399","feeGrowthGlobal1X128()":"46141319","flash(address,uint256,uint256,bytes)":"490e6cbc","increaseObservationCardinalityNext(uint16)":"32148f67","initialize(uint160)":"f637731d","liquidity()":"1a686502","maxLiquidityPerTick()":"70cf754a","mint(address,int24,int24,uint128,bytes)":"3c8a7d8d","observations(uint256)":"252c09d7","observe(uint32[])":"883bdbfd","positions(bytes32)":"514ea4bf","protocolFees()":"1ad8b03b","setFeeProtocol(uint8,uint8)":"8206a4d1","slot0()":"3850c7bd","snapshotCumulativesInside(int24,int24)":"a38807f2","swap(address,bool,int256,uint160,bytes)":"128acb08","tickBitmap(int16)":"5339c296","tickSpacing()":"d0c93a7c","ticks(int24)":"f30dba93","token0()":"0dfe1681","token1()":"d21220a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"int24\",\"name\":\"tickLower\",\"type\":\"int24\"},{\"indexed\":true,\"internalType\":\"int24\",\"name\":\"tickUpper\",\"type\":\"int24\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"amount\",\"type\":\"uint128\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount0\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount1\",\"type\":\"uint256\"}],\"name\":\"Burn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"int24\",\"name\":\"tickLower\",\"type\":\"int24\"},{\"indexed\":true,\"internalType\":\"int24\",\"name\":\"tickUpper\",\"type\":\"int24\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"amount0\",\"type\":\"uint128\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"amount1\",\"type\":\"uint128\"}],\"name\":\"Collect\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"amount0\",\"type\":\"uint128\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"amount1\",\"type\":\"uint128\"}],\"name\":\"CollectProtocol\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount0\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount1\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"paid0\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"paid1\",\"type\":\"uint256\"}],\"name\":\"Flash\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint16\",\"name\":\"observationCardinalityNextOld\",\"type\":\"uint16\"},{\"indexed\":false,\"internalType\":\"uint16\",\"name\":\"observationCardinalityNextNew\",\"type\":\"uint16\"}],\"name\":\"IncreaseObservationCardinalityNext\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint160\",\"name\":\"sqrtPriceX96\",\"type\":\"uint160\"},{\"indexed\":false,\"internalType\":\"int24\",\"name\":\"tick\",\"type\":\"int24\"}],\"name\":\"Initialize\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"int24\",\"name\":\"tickLower\",\"type\":\"int24\"},{\"indexed\":true,\"internalType\":\"int24\",\"name\":\"tickUpper\",\"type\":\"int24\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"amount\",\"type\":\"uint128\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount0\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount1\",\"type\":\"uint256\"}],\"name\":\"Mint\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"feeProtocol0Old\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"feeProtocol1Old\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"feeProtocol0New\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"feeProtocol1New\",\"type\":\"uint8\"}],\"name\":\"SetFeeProtocol\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"amount0\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"amount1\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"uint160\",\"name\":\"sqrtPriceX96\",\"type\":\"uint160\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"liquidity\",\"type\":\"uint128\"},{\"indexed\":false,\"internalType\":\"int24\",\"name\":\"tick\",\"type\":\"int24\"}],\"name\":\"Swap\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"int24\",\"name\":\"tickLower\",\"type\":\"int24\"},{\"internalType\":\"int24\",\"name\":\"tickUpper\",\"type\":\"int24\"},{\"internalType\":\"uint128\",\"name\":\"amount\",\"type\":\"uint128\"}],\"name\":\"burn\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amount0\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount1\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"int24\",\"name\":\"tickLower\",\"type\":\"int24\"},{\"internalType\":\"int24\",\"name\":\"tickUpper\",\"type\":\"int24\"},{\"internalType\":\"uint128\",\"name\":\"amount0Requested\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"amount1Requested\",\"type\":\"uint128\"}],\"name\":\"collect\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"amount0\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"amount1\",\"type\":\"uint128\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint128\",\"name\":\"amount0Requested\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"amount1Requested\",\"type\":\"uint128\"}],\"name\":\"collectProtocol\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"amount0\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"amount1\",\"type\":\"uint128\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"factory\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"fee\",\"outputs\":[{\"internalType\":\"uint24\",\"name\":\"\",\"type\":\"uint24\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"feeGrowthGlobal0X128\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"feeGrowthGlobal1X128\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount0\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount1\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"flash\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint16\",\"name\":\"observationCardinalityNext\",\"type\":\"uint16\"}],\"name\":\"increaseObservationCardinalityNext\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint160\",\"name\":\"sqrtPriceX96\",\"type\":\"uint160\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"liquidity\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"\",\"type\":\"uint128\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"maxLiquidityPerTick\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"\",\"type\":\"uint128\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"int24\",\"name\":\"tickLower\",\"type\":\"int24\"},{\"internalType\":\"int24\",\"name\":\"tickUpper\",\"type\":\"int24\"},{\"internalType\":\"uint128\",\"name\":\"amount\",\"type\":\"uint128\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amount0\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount1\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"observations\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"blockTimestamp\",\"type\":\"uint32\"},{\"internalType\":\"int56\",\"name\":\"tickCumulative\",\"type\":\"int56\"},{\"internalType\":\"uint160\",\"name\":\"secondsPerLiquidityCumulativeX128\",\"type\":\"uint160\"},{\"internalType\":\"bool\",\"name\":\"initialized\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32[]\",\"name\":\"secondsAgos\",\"type\":\"uint32[]\"}],\"name\":\"observe\",\"outputs\":[{\"internalType\":\"int56[]\",\"name\":\"tickCumulatives\",\"type\":\"int56[]\"},{\"internalType\":\"uint160[]\",\"name\":\"secondsPerLiquidityCumulativeX128s\",\"type\":\"uint160[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"key\",\"type\":\"bytes32\"}],\"name\":\"positions\",\"outputs\":[{\"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\":\"protocolFees\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"token0\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"token1\",\"type\":\"uint128\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"feeProtocol0\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"feeProtocol1\",\"type\":\"uint8\"}],\"name\":\"setFeeProtocol\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"slot0\",\"outputs\":[{\"internalType\":\"uint160\",\"name\":\"sqrtPriceX96\",\"type\":\"uint160\"},{\"internalType\":\"int24\",\"name\":\"tick\",\"type\":\"int24\"},{\"internalType\":\"uint16\",\"name\":\"observationIndex\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"observationCardinality\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"observationCardinalityNext\",\"type\":\"uint16\"},{\"internalType\":\"uint8\",\"name\":\"feeProtocol\",\"type\":\"uint8\"},{\"internalType\":\"bool\",\"name\":\"unlocked\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"int24\",\"name\":\"tickLower\",\"type\":\"int24\"},{\"internalType\":\"int24\",\"name\":\"tickUpper\",\"type\":\"int24\"}],\"name\":\"snapshotCumulativesInside\",\"outputs\":[{\"internalType\":\"int56\",\"name\":\"tickCumulativeInside\",\"type\":\"int56\"},{\"internalType\":\"uint160\",\"name\":\"secondsPerLiquidityInsideX128\",\"type\":\"uint160\"},{\"internalType\":\"uint32\",\"name\":\"secondsInside\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"zeroForOne\",\"type\":\"bool\"},{\"internalType\":\"int256\",\"name\":\"amountSpecified\",\"type\":\"int256\"},{\"internalType\":\"uint160\",\"name\":\"sqrtPriceLimitX96\",\"type\":\"uint160\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"swap\",\"outputs\":[{\"internalType\":\"int256\",\"name\":\"amount0\",\"type\":\"int256\"},{\"internalType\":\"int256\",\"name\":\"amount1\",\"type\":\"int256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"int16\",\"name\":\"wordPosition\",\"type\":\"int16\"}],\"name\":\"tickBitmap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"tickSpacing\",\"outputs\":[{\"internalType\":\"int24\",\"name\":\"\",\"type\":\"int24\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"int24\",\"name\":\"tick\",\"type\":\"int24\"}],\"name\":\"ticks\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"liquidityGross\",\"type\":\"uint128\"},{\"internalType\":\"int128\",\"name\":\"liquidityNet\",\"type\":\"int128\"},{\"internalType\":\"uint256\",\"name\":\"feeGrowthOutside0X128\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"feeGrowthOutside1X128\",\"type\":\"uint256\"},{\"internalType\":\"int56\",\"name\":\"tickCumulativeOutside\",\"type\":\"int56\"},{\"internalType\":\"uint160\",\"name\":\"secondsPerLiquidityOutsideX128\",\"type\":\"uint160\"},{\"internalType\":\"uint32\",\"name\":\"secondsOutside\",\"type\":\"uint32\"},{\"internalType\":\"bool\",\"name\":\"initialized\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"token0\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"token1\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"The pool interface is broken up into many smaller pieces\",\"kind\":\"dev\",\"methods\":{\"burn(int24,int24,uint128)\":{\"details\":\"Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0Fees must be collected separately via a call to #collect\",\"params\":{\"amount\":\"How much liquidity to burn\",\"tickLower\":\"The lower tick of the position for which to burn liquidity\",\"tickUpper\":\"The upper tick of the position for which to burn liquidity\"},\"returns\":{\"amount0\":\"The amount of token0 sent to the recipient\",\"amount1\":\"The amount of token1 sent to the recipient\"}},\"collect(address,int24,int24,uint128,uint128)\":{\"details\":\"Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity. Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity.\",\"params\":{\"amount0Requested\":\"How much token0 should be withdrawn from the fees owed\",\"amount1Requested\":\"How much token1 should be withdrawn from the fees owed\",\"recipient\":\"The address which should receive the fees collected\",\"tickLower\":\"The lower tick of the position for which to collect fees\",\"tickUpper\":\"The upper tick of the position for which to collect fees\"},\"returns\":{\"amount0\":\"The amount of fees collected in token0\",\"amount1\":\"The amount of fees collected in token1\"}},\"collectProtocol(address,uint128,uint128)\":{\"params\":{\"amount0Requested\":\"The maximum amount of token0 to send, can be 0 to collect fees in only token1\",\"amount1Requested\":\"The maximum amount of token1 to send, can be 0 to collect fees in only token0\",\"recipient\":\"The address to which collected protocol fees should be sent\"},\"returns\":{\"amount0\":\"The protocol fee collected in token0\",\"amount1\":\"The protocol fee collected in token1\"}},\"factory()\":{\"returns\":{\"_0\":\"The contract address\"}},\"fee()\":{\"returns\":{\"_0\":\"The fee\"}},\"feeGrowthGlobal0X128()\":{\"details\":\"This value can overflow the uint256\"},\"feeGrowthGlobal1X128()\":{\"details\":\"This value can overflow the uint256\"},\"flash(address,uint256,uint256,bytes)\":{\"details\":\"The caller of this method receives a callback in the form of IUniswapV3FlashCallback#uniswapV3FlashCallbackCan be used to donate underlying tokens pro-rata to currently in-range liquidity providers by calling with 0 amount{0,1} and sending the donation amount(s) from the callback\",\"params\":{\"amount0\":\"The amount of token0 to send\",\"amount1\":\"The amount of token1 to send\",\"data\":\"Any data to be passed through to the callback\",\"recipient\":\"The address which will receive the token0 and token1 amounts\"}},\"increaseObservationCardinalityNext(uint16)\":{\"details\":\"This method is no-op if the pool already has an observationCardinalityNext greater than or equal to the input observationCardinalityNext.\",\"params\":{\"observationCardinalityNext\":\"The desired minimum number of observations for the pool to store\"}},\"initialize(uint160)\":{\"details\":\"Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value\",\"params\":{\"sqrtPriceX96\":\"the initial sqrt price of the pool as a Q64.96\"}},\"liquidity()\":{\"details\":\"This value has no relationship to the total liquidity across all ticks\"},\"maxLiquidityPerTick()\":{\"details\":\"This parameter is enforced per tick to prevent liquidity from overflowing a uint128 at any point, and also prevents out-of-range liquidity from being used to prevent adding in-range liquidity to a pool\",\"returns\":{\"_0\":\"The max amount of liquidity per tick\"}},\"mint(address,int24,int24,uint128,bytes)\":{\"details\":\"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.\",\"params\":{\"amount\":\"The amount of liquidity to mint\",\"data\":\"Any data that should be passed through to the callback\",\"recipient\":\"The address for which the liquidity will be created\",\"tickLower\":\"The lower tick of the position in which to add liquidity\",\"tickUpper\":\"The upper tick of the position in which to add liquidity\"},\"returns\":{\"amount0\":\"The amount of token0 that was paid to mint the given amount of liquidity. Matches the value in the callback\",\"amount1\":\"The amount of token1 that was paid to mint the given amount of liquidity. Matches the value in the callback\"}},\"observations(uint256)\":{\"details\":\"You most likely want to use #observe() instead of this method to get an observation as of some amount of time ago, rather than at a specific index in the array.\",\"params\":{\"index\":\"The element of the observations array to fetch\"},\"returns\":{\"blockTimestamp\":\"The timestamp of the observation, Returns tickCumulative the tick multiplied by seconds elapsed for the life of the pool as of the observation timestamp, Returns secondsPerLiquidityCumulativeX128 the seconds per in range liquidity for the life of the pool as of the observation timestamp, Returns initialized whether the observation has been initialized and the values are safe to use\"}},\"observe(uint32[])\":{\"details\":\"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].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.\",\"params\":{\"secondsAgos\":\"From how long ago each cumulative tick and liquidity value should be returned\"},\"returns\":{\"secondsPerLiquidityCumulativeX128s\":\"Cumulative seconds per liquidity-in-range value as of each `secondsAgos` from the current block timestamp\",\"tickCumulatives\":\"Cumulative tick values as of each `secondsAgos` from the current block timestamp\"}},\"positions(bytes32)\":{\"params\":{\"key\":\"The position's key is a hash of a preimage composed by the owner, tickLower and tickUpper\"},\"returns\":{\"_liquidity\":\"The amount of liquidity in the position, Returns feeGrowthInside0LastX128 fee growth of token0 inside the tick range as of the last mint/burn/poke, Returns feeGrowthInside1LastX128 fee growth of token1 inside the tick range as of the last mint/burn/poke, Returns tokensOwed0 the computed amount of token0 owed to the position as of the last mint/burn/poke, Returns tokensOwed1 the computed amount of token1 owed to the position as of the last mint/burn/poke\"}},\"protocolFees()\":{\"details\":\"Protocol fees will never exceed uint128 max in either token\"},\"setFeeProtocol(uint8,uint8)\":{\"params\":{\"feeProtocol0\":\"new protocol fee for token0 of the pool\",\"feeProtocol1\":\"new protocol fee for token1 of the pool\"}},\"slot0()\":{\"returns\":{\"sqrtPriceX96\":\"The current price of the pool as a sqrt(token1/token0) Q64.96 value tick The current tick of the pool, i.e. according to the last tick transition that was run. This value may not always be equal to SqrtTickMath.getTickAtSqrtRatio(sqrtPriceX96) if the price is on a tick boundary. observationIndex The index of the last oracle observation that was written, observationCardinality The current maximum number of observations stored in the pool, observationCardinalityNext The next maximum number of observations, to be updated when the observation. feeProtocol The protocol fee for both tokens of the pool. Encoded as two 4 bit values, where the protocol fee of token1 is shifted 4 bits and the protocol fee of token0 is the lower 4 bits. Used as the denominator of a fraction of the swap fee, e.g. 4 means 1/4th of the swap fee. unlocked Whether the pool is currently locked to reentrancy\"}},\"snapshotCumulativesInside(int24,int24)\":{\"details\":\"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.\",\"params\":{\"tickLower\":\"The lower tick of the range\",\"tickUpper\":\"The upper tick of the range\"},\"returns\":{\"secondsInside\":\"The snapshot of seconds per liquidity for the range\",\"secondsPerLiquidityInsideX128\":\"The snapshot of seconds per liquidity for the range\",\"tickCumulativeInside\":\"The snapshot of the tick accumulator for the range\"}},\"swap(address,bool,int256,uint160,bytes)\":{\"details\":\"The caller of this method receives a callback in the form of IUniswapV3SwapCallback#uniswapV3SwapCallback\",\"params\":{\"amountSpecified\":\"The amount of the swap, which implicitly configures the swap as exact input (positive), or exact output (negative)\",\"data\":\"Any data to be passed through to the callback\",\"recipient\":\"The address to receive the output of the swap\",\"sqrtPriceLimitX96\":\"The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this value after the swap. If one for zero, the price cannot be greater than this value after the swap\",\"zeroForOne\":\"The direction of the swap, true for token0 to token1, false for token1 to token0\"},\"returns\":{\"amount0\":\"The delta of the balance of token0 of the pool, exact when negative, minimum when positive\",\"amount1\":\"The delta of the balance of token1 of the pool, exact when negative, minimum when positive\"}},\"tickSpacing()\":{\"details\":\"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.\",\"returns\":{\"_0\":\"The tick spacing\"}},\"ticks(int24)\":{\"params\":{\"tick\":\"The tick to look up\"},\"returns\":{\"liquidityGross\":\"the total amount of position liquidity that uses the pool either as tick lower or tick upper, liquidityNet how much liquidity changes when the pool price crosses the tick, feeGrowthOutside0X128 the fee growth on the other side of the tick from the current tick in token0, feeGrowthOutside1X128 the fee growth on the other side of the tick from the current tick in token1, tickCumulativeOutside the cumulative tick value on the other side of the tick from the current tick secondsPerLiquidityOutsideX128 the seconds spent per liquidity on the other side of the tick from the current tick, secondsOutside the seconds spent on the other side of the tick from the current tick, initialized Set to true if the tick is initialized, i.e. liquidityGross is greater than 0, otherwise equal to false. Outside values can only be used if the tick is initialized, i.e. if liquidityGross is greater than 0. In addition, these values are only relative and must be used only in comparison to previous snapshots for a specific position.\"}},\"token0()\":{\"returns\":{\"_0\":\"The token contract address\"}},\"token1()\":{\"returns\":{\"_0\":\"The token contract address\"}}},\"title\":\"The interface for a Uniswap V3 Pool\",\"version\":1},\"userdoc\":{\"events\":{\"Burn(address,int24,int24,uint128,uint256,uint256)\":{\"notice\":\"Emitted when a position's liquidity is removed\"},\"Collect(address,address,int24,int24,uint128,uint128)\":{\"notice\":\"Emitted when fees are collected by the owner of a position\"},\"CollectProtocol(address,address,uint128,uint128)\":{\"notice\":\"Emitted when the collected protocol fees are withdrawn by the factory owner\"},\"Flash(address,address,uint256,uint256,uint256,uint256)\":{\"notice\":\"Emitted by the pool for any flashes of token0/token1\"},\"IncreaseObservationCardinalityNext(uint16,uint16)\":{\"notice\":\"Emitted by the pool for increases to the number of observations that can be stored\"},\"Initialize(uint160,int24)\":{\"notice\":\"Emitted exactly once by a pool when #initialize is first called on the pool\"},\"Mint(address,address,int24,int24,uint128,uint256,uint256)\":{\"notice\":\"Emitted when liquidity is minted for a given position\"},\"SetFeeProtocol(uint8,uint8,uint8,uint8)\":{\"notice\":\"Emitted when the protocol fee is changed by the pool\"},\"Swap(address,address,int256,int256,uint160,uint128,int24)\":{\"notice\":\"Emitted by the pool for any swaps between token0 and token1\"}},\"kind\":\"user\",\"methods\":{\"burn(int24,int24,uint128)\":{\"notice\":\"Burn liquidity from the sender and account tokens owed for the liquidity to the position\"},\"collect(address,int24,int24,uint128,uint128)\":{\"notice\":\"Collects tokens owed to a position\"},\"collectProtocol(address,uint128,uint128)\":{\"notice\":\"Collect the protocol fee accrued to the pool\"},\"factory()\":{\"notice\":\"The contract that deployed the pool, which must adhere to the IUniswapV3Factory interface\"},\"fee()\":{\"notice\":\"The pool's fee in hundredths of a bip, i.e. 1e-6\"},\"feeGrowthGlobal0X128()\":{\"notice\":\"The fee growth as a Q128.128 fees of token0 collected per unit of liquidity for the entire life of the pool\"},\"feeGrowthGlobal1X128()\":{\"notice\":\"The fee growth as a Q128.128 fees of token1 collected per unit of liquidity for the entire life of the pool\"},\"flash(address,uint256,uint256,bytes)\":{\"notice\":\"Receive token0 and/or token1 and pay it back, plus a fee, in the callback\"},\"increaseObservationCardinalityNext(uint16)\":{\"notice\":\"Increase the maximum number of price and liquidity observations that this pool will store\"},\"initialize(uint160)\":{\"notice\":\"Sets the initial price for the pool\"},\"liquidity()\":{\"notice\":\"The currently in range liquidity available to the pool\"},\"maxLiquidityPerTick()\":{\"notice\":\"The maximum amount of position liquidity that can use any tick in the range\"},\"mint(address,int24,int24,uint128,bytes)\":{\"notice\":\"Adds liquidity for the given recipient/tickLower/tickUpper position\"},\"observations(uint256)\":{\"notice\":\"Returns data about a specific observation index\"},\"observe(uint32[])\":{\"notice\":\"Returns the cumulative tick and liquidity as of each timestamp `secondsAgo` from the current block timestamp\"},\"positions(bytes32)\":{\"notice\":\"Returns the information about a position by the position's key\"},\"protocolFees()\":{\"notice\":\"The amounts of token0 and token1 that are owed to the protocol\"},\"setFeeProtocol(uint8,uint8)\":{\"notice\":\"Set the denominator of the protocol's % share of the fees\"},\"slot0()\":{\"notice\":\"The 0th storage slot in the pool stores many values, and is exposed as a single method to save gas when accessed externally.\"},\"snapshotCumulativesInside(int24,int24)\":{\"notice\":\"Returns a snapshot of the tick cumulative, seconds per liquidity and seconds inside a tick range\"},\"swap(address,bool,int256,uint160,bytes)\":{\"notice\":\"Swap token0 for token1, or token1 for token0\"},\"tickBitmap(int16)\":{\"notice\":\"Returns 256 packed tick initialized boolean values. See TickBitmap for more information\"},\"tickSpacing()\":{\"notice\":\"The pool tick spacing\"},\"ticks(int24)\":{\"notice\":\"Look up information about a specific tick in the pool\"},\"token0()\":{\"notice\":\"The first of the two tokens of the pool, sorted by address\"},\"token1()\":{\"notice\":\"The second of the two tokens of the pool, sorted by address\"}},\"notice\":\"A Uniswap pool facilitates swapping and automated market making between any two assets that strictly conform to the ERC20 specification\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol\":\"IUniswapV3Pool\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol\":{\"keccak256\":\"0xfe6113d518466cd6652c85b111e01f33eb62157f49ae5ed7d5a3947a2044adb1\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://1c42b9e6f5902ac38dd43e25750939baa7e0c1425dc75afd717c4412731065d5\",\"dweb:/ipfs/QmWaoacnzsucTvBME2o7YgZBZMhaHv7fkj83htHMVWJKWh\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolActions.sol\":{\"keccak256\":\"0x9453dd0e7442188667d01d9b65de3f1e14e9511ff3e303179a15f6fc267f7634\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://982f4328f956c3e60e67501e759eb292ac487f76460c774c50e9ae4fcc92aae5\",\"dweb:/ipfs/QmRnzEDsaqtd9PJEVcgQi7p5aV5pMSvRUoGZJAdwFUJxgZ\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolDerivedState.sol\":{\"keccak256\":\"0xe603ac5b17ecdee73ba2b27efdf386c257a19c14206e87eee77e2017b742d9e5\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://8febc9bdb399a4d94bb89f5377732652e2400e4a8dee808201ade6848f9004e7\",\"dweb:/ipfs/QmaKDqYYFU4d2W2iN77aDHptfbFmYZRrMYXHeGpJmM8C1c\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolEvents.sol\":{\"keccak256\":\"0x8071514d0fe5d17d6fbd31c191cdfb703031c24e0ece3621d88ab10e871375cd\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://d0b571930cc7488b1d546a7e9cea7c52d8b3c4e207da657ed0e0db7343b8cd03\",\"dweb:/ipfs/QmaGK6vVwB95QSTR1XMYvrh7ivYAYZxi3fD7v6VMA4jZ39\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolImmutables.sol\":{\"keccak256\":\"0xf6e5d2cd1139c4c276bdbc8e1d2b256e456c866a91f1b868da265c6d2685c3f7\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://b99c8c9ae8e27ee6559e5866bea82cbc9ffc8247f8d15b7422a4deb287d4d047\",\"dweb:/ipfs/QmfL8gaqt3ffAnm6nVj5ksuNpLygXuL3xq5VBqrkwC2JJ3\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolOwnerActions.sol\":{\"keccak256\":\"0x759b78a2918af9e99e246dc3af084f654e48ef32bb4e4cb8a966aa3dcaece235\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://64144fb96e1c7fdba87305acadb98a198d26a3d46c097cb3a666e567f6f29735\",\"dweb:/ipfs/QmUnWVwN9FKB9uV5Pr8YfLpWZnYM2DENnRMaadZ492JS9u\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolState.sol\":{\"keccak256\":\"0x852dc1f5df7dcf7f11e7bb3eed79f0cea72ad4b25f6a9d2c35aafb48925fd49f\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://ed63907c38ff36b0e22bc9ffc53e791ea74f0d4f0e7c257fdfb5aaf8825b1f0f\",\"dweb:/ipfs/QmSQrckghEjs6HVsA5GVgpNpZWvTXMY5eQLF7cN6deFeEg\"]}},\"version\":1}"}},"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolActions.sol":{"IUniswapV3PoolActions":{"abi":[{"inputs":[{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint128","name":"amount","type":"uint128"}],"name":"burn","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint128","name":"amount0Requested","type":"uint128"},{"internalType":"uint128","name":"amount1Requested","type":"uint128"}],"name":"collect","outputs":[{"internalType":"uint128","name":"amount0","type":"uint128"},{"internalType":"uint128","name":"amount1","type":"uint128"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"flash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"observationCardinalityNext","type":"uint16"}],"name":"increaseObservationCardinalityNext","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint160","name":"sqrtPriceX96","type":"uint160"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint128","name":"amount","type":"uint128"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bool","name":"zeroForOne","type":"bool"},{"internalType":"int256","name":"amountSpecified","type":"int256"},{"internalType":"uint160","name":"sqrtPriceLimitX96","type":"uint160"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"swap","outputs":[{"internalType":"int256","name":"amount0","type":"int256"},{"internalType":"int256","name":"amount1","type":"int256"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"burn(int24,int24,uint128)":"a34123a7","collect(address,int24,int24,uint128,uint128)":"4f1eb3d8","flash(address,uint256,uint256,bytes)":"490e6cbc","increaseObservationCardinalityNext(uint16)":"32148f67","initialize(uint160)":"f637731d","mint(address,int24,int24,uint128,bytes)":"3c8a7d8d","swap(address,bool,int256,uint160,bytes)":"128acb08"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"int24\",\"name\":\"tickLower\",\"type\":\"int24\"},{\"internalType\":\"int24\",\"name\":\"tickUpper\",\"type\":\"int24\"},{\"internalType\":\"uint128\",\"name\":\"amount\",\"type\":\"uint128\"}],\"name\":\"burn\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amount0\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount1\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"int24\",\"name\":\"tickLower\",\"type\":\"int24\"},{\"internalType\":\"int24\",\"name\":\"tickUpper\",\"type\":\"int24\"},{\"internalType\":\"uint128\",\"name\":\"amount0Requested\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"amount1Requested\",\"type\":\"uint128\"}],\"name\":\"collect\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"amount0\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"amount1\",\"type\":\"uint128\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount0\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount1\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"flash\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint16\",\"name\":\"observationCardinalityNext\",\"type\":\"uint16\"}],\"name\":\"increaseObservationCardinalityNext\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint160\",\"name\":\"sqrtPriceX96\",\"type\":\"uint160\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"int24\",\"name\":\"tickLower\",\"type\":\"int24\"},{\"internalType\":\"int24\",\"name\":\"tickUpper\",\"type\":\"int24\"},{\"internalType\":\"uint128\",\"name\":\"amount\",\"type\":\"uint128\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amount0\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount1\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"zeroForOne\",\"type\":\"bool\"},{\"internalType\":\"int256\",\"name\":\"amountSpecified\",\"type\":\"int256\"},{\"internalType\":\"uint160\",\"name\":\"sqrtPriceLimitX96\",\"type\":\"uint160\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"swap\",\"outputs\":[{\"internalType\":\"int256\",\"name\":\"amount0\",\"type\":\"int256\"},{\"internalType\":\"int256\",\"name\":\"amount1\",\"type\":\"int256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"burn(int24,int24,uint128)\":{\"details\":\"Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0Fees must be collected separately via a call to #collect\",\"params\":{\"amount\":\"How much liquidity to burn\",\"tickLower\":\"The lower tick of the position for which to burn liquidity\",\"tickUpper\":\"The upper tick of the position for which to burn liquidity\"},\"returns\":{\"amount0\":\"The amount of token0 sent to the recipient\",\"amount1\":\"The amount of token1 sent to the recipient\"}},\"collect(address,int24,int24,uint128,uint128)\":{\"details\":\"Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity. Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity.\",\"params\":{\"amount0Requested\":\"How much token0 should be withdrawn from the fees owed\",\"amount1Requested\":\"How much token1 should be withdrawn from the fees owed\",\"recipient\":\"The address which should receive the fees collected\",\"tickLower\":\"The lower tick of the position for which to collect fees\",\"tickUpper\":\"The upper tick of the position for which to collect fees\"},\"returns\":{\"amount0\":\"The amount of fees collected in token0\",\"amount1\":\"The amount of fees collected in token1\"}},\"flash(address,uint256,uint256,bytes)\":{\"details\":\"The caller of this method receives a callback in the form of IUniswapV3FlashCallback#uniswapV3FlashCallbackCan be used to donate underlying tokens pro-rata to currently in-range liquidity providers by calling with 0 amount{0,1} and sending the donation amount(s) from the callback\",\"params\":{\"amount0\":\"The amount of token0 to send\",\"amount1\":\"The amount of token1 to send\",\"data\":\"Any data to be passed through to the callback\",\"recipient\":\"The address which will receive the token0 and token1 amounts\"}},\"increaseObservationCardinalityNext(uint16)\":{\"details\":\"This method is no-op if the pool already has an observationCardinalityNext greater than or equal to the input observationCardinalityNext.\",\"params\":{\"observationCardinalityNext\":\"The desired minimum number of observations for the pool to store\"}},\"initialize(uint160)\":{\"details\":\"Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value\",\"params\":{\"sqrtPriceX96\":\"the initial sqrt price of the pool as a Q64.96\"}},\"mint(address,int24,int24,uint128,bytes)\":{\"details\":\"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.\",\"params\":{\"amount\":\"The amount of liquidity to mint\",\"data\":\"Any data that should be passed through to the callback\",\"recipient\":\"The address for which the liquidity will be created\",\"tickLower\":\"The lower tick of the position in which to add liquidity\",\"tickUpper\":\"The upper tick of the position in which to add liquidity\"},\"returns\":{\"amount0\":\"The amount of token0 that was paid to mint the given amount of liquidity. Matches the value in the callback\",\"amount1\":\"The amount of token1 that was paid to mint the given amount of liquidity. Matches the value in the callback\"}},\"swap(address,bool,int256,uint160,bytes)\":{\"details\":\"The caller of this method receives a callback in the form of IUniswapV3SwapCallback#uniswapV3SwapCallback\",\"params\":{\"amountSpecified\":\"The amount of the swap, which implicitly configures the swap as exact input (positive), or exact output (negative)\",\"data\":\"Any data to be passed through to the callback\",\"recipient\":\"The address to receive the output of the swap\",\"sqrtPriceLimitX96\":\"The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this value after the swap. If one for zero, the price cannot be greater than this value after the swap\",\"zeroForOne\":\"The direction of the swap, true for token0 to token1, false for token1 to token0\"},\"returns\":{\"amount0\":\"The delta of the balance of token0 of the pool, exact when negative, minimum when positive\",\"amount1\":\"The delta of the balance of token1 of the pool, exact when negative, minimum when positive\"}}},\"title\":\"Permissionless pool actions\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"burn(int24,int24,uint128)\":{\"notice\":\"Burn liquidity from the sender and account tokens owed for the liquidity to the position\"},\"collect(address,int24,int24,uint128,uint128)\":{\"notice\":\"Collects tokens owed to a position\"},\"flash(address,uint256,uint256,bytes)\":{\"notice\":\"Receive token0 and/or token1 and pay it back, plus a fee, in the callback\"},\"increaseObservationCardinalityNext(uint16)\":{\"notice\":\"Increase the maximum number of price and liquidity observations that this pool will store\"},\"initialize(uint160)\":{\"notice\":\"Sets the initial price for the pool\"},\"mint(address,int24,int24,uint128,bytes)\":{\"notice\":\"Adds liquidity for the given recipient/tickLower/tickUpper position\"},\"swap(address,bool,int256,uint160,bytes)\":{\"notice\":\"Swap token0 for token1, or token1 for token0\"}},\"notice\":\"Contains pool methods that can be called by anyone\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolActions.sol\":\"IUniswapV3PoolActions\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolActions.sol\":{\"keccak256\":\"0x9453dd0e7442188667d01d9b65de3f1e14e9511ff3e303179a15f6fc267f7634\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://982f4328f956c3e60e67501e759eb292ac487f76460c774c50e9ae4fcc92aae5\",\"dweb:/ipfs/QmRnzEDsaqtd9PJEVcgQi7p5aV5pMSvRUoGZJAdwFUJxgZ\"]}},\"version\":1}"}},"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolDerivedState.sol":{"IUniswapV3PoolDerivedState":{"abi":[{"inputs":[{"internalType":"uint32[]","name":"secondsAgos","type":"uint32[]"}],"name":"observe","outputs":[{"internalType":"int56[]","name":"tickCumulatives","type":"int56[]"},{"internalType":"uint160[]","name":"secondsPerLiquidityCumulativeX128s","type":"uint160[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"}],"name":"snapshotCumulativesInside","outputs":[{"internalType":"int56","name":"tickCumulativeInside","type":"int56"},{"internalType":"uint160","name":"secondsPerLiquidityInsideX128","type":"uint160"},{"internalType":"uint32","name":"secondsInside","type":"uint32"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"observe(uint32[])":"883bdbfd","snapshotCumulativesInside(int24,int24)":"a38807f2"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint32[]\",\"name\":\"secondsAgos\",\"type\":\"uint32[]\"}],\"name\":\"observe\",\"outputs\":[{\"internalType\":\"int56[]\",\"name\":\"tickCumulatives\",\"type\":\"int56[]\"},{\"internalType\":\"uint160[]\",\"name\":\"secondsPerLiquidityCumulativeX128s\",\"type\":\"uint160[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"int24\",\"name\":\"tickLower\",\"type\":\"int24\"},{\"internalType\":\"int24\",\"name\":\"tickUpper\",\"type\":\"int24\"}],\"name\":\"snapshotCumulativesInside\",\"outputs\":[{\"internalType\":\"int56\",\"name\":\"tickCumulativeInside\",\"type\":\"int56\"},{\"internalType\":\"uint160\",\"name\":\"secondsPerLiquidityInsideX128\",\"type\":\"uint160\"},{\"internalType\":\"uint32\",\"name\":\"secondsInside\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"observe(uint32[])\":{\"details\":\"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].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.\",\"params\":{\"secondsAgos\":\"From how long ago each cumulative tick and liquidity value should be returned\"},\"returns\":{\"secondsPerLiquidityCumulativeX128s\":\"Cumulative seconds per liquidity-in-range value as of each `secondsAgos` from the current block timestamp\",\"tickCumulatives\":\"Cumulative tick values as of each `secondsAgos` from the current block timestamp\"}},\"snapshotCumulativesInside(int24,int24)\":{\"details\":\"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.\",\"params\":{\"tickLower\":\"The lower tick of the range\",\"tickUpper\":\"The upper tick of the range\"},\"returns\":{\"secondsInside\":\"The snapshot of seconds per liquidity for the range\",\"secondsPerLiquidityInsideX128\":\"The snapshot of seconds per liquidity for the range\",\"tickCumulativeInside\":\"The snapshot of the tick accumulator for the range\"}}},\"title\":\"Pool state that is not stored\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"observe(uint32[])\":{\"notice\":\"Returns the cumulative tick and liquidity as of each timestamp `secondsAgo` from the current block timestamp\"},\"snapshotCumulativesInside(int24,int24)\":{\"notice\":\"Returns a snapshot of the tick cumulative, seconds per liquidity and seconds inside a tick range\"}},\"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.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolDerivedState.sol\":\"IUniswapV3PoolDerivedState\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolDerivedState.sol\":{\"keccak256\":\"0xe603ac5b17ecdee73ba2b27efdf386c257a19c14206e87eee77e2017b742d9e5\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://8febc9bdb399a4d94bb89f5377732652e2400e4a8dee808201ade6848f9004e7\",\"dweb:/ipfs/QmaKDqYYFU4d2W2iN77aDHptfbFmYZRrMYXHeGpJmM8C1c\"]}},\"version\":1}"}},"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolEvents.sol":{"IUniswapV3PoolEvents":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"int24","name":"tickLower","type":"int24"},{"indexed":true,"internalType":"int24","name":"tickUpper","type":"int24"},{"indexed":false,"internalType":"uint128","name":"amount","type":"uint128"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":true,"internalType":"int24","name":"tickLower","type":"int24"},{"indexed":true,"internalType":"int24","name":"tickUpper","type":"int24"},{"indexed":false,"internalType":"uint128","name":"amount0","type":"uint128"},{"indexed":false,"internalType":"uint128","name":"amount1","type":"uint128"}],"name":"Collect","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint128","name":"amount0","type":"uint128"},{"indexed":false,"internalType":"uint128","name":"amount1","type":"uint128"}],"name":"CollectProtocol","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"paid0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"paid1","type":"uint256"}],"name":"Flash","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"observationCardinalityNextOld","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"observationCardinalityNextNew","type":"uint16"}],"name":"IncreaseObservationCardinalityNext","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint160","name":"sqrtPriceX96","type":"uint160"},{"indexed":false,"internalType":"int24","name":"tick","type":"int24"}],"name":"Initialize","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"int24","name":"tickLower","type":"int24"},{"indexed":true,"internalType":"int24","name":"tickUpper","type":"int24"},{"indexed":false,"internalType":"uint128","name":"amount","type":"uint128"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"feeProtocol0Old","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"feeProtocol1Old","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"feeProtocol0New","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"feeProtocol1New","type":"uint8"}],"name":"SetFeeProtocol","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"int256","name":"amount0","type":"int256"},{"indexed":false,"internalType":"int256","name":"amount1","type":"int256"},{"indexed":false,"internalType":"uint160","name":"sqrtPriceX96","type":"uint160"},{"indexed":false,"internalType":"uint128","name":"liquidity","type":"uint128"},{"indexed":false,"internalType":"int24","name":"tick","type":"int24"}],"name":"Swap","type":"event"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"int24\",\"name\":\"tickLower\",\"type\":\"int24\"},{\"indexed\":true,\"internalType\":\"int24\",\"name\":\"tickUpper\",\"type\":\"int24\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"amount\",\"type\":\"uint128\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount0\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount1\",\"type\":\"uint256\"}],\"name\":\"Burn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"int24\",\"name\":\"tickLower\",\"type\":\"int24\"},{\"indexed\":true,\"internalType\":\"int24\",\"name\":\"tickUpper\",\"type\":\"int24\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"amount0\",\"type\":\"uint128\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"amount1\",\"type\":\"uint128\"}],\"name\":\"Collect\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"amount0\",\"type\":\"uint128\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"amount1\",\"type\":\"uint128\"}],\"name\":\"CollectProtocol\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount0\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount1\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"paid0\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"paid1\",\"type\":\"uint256\"}],\"name\":\"Flash\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint16\",\"name\":\"observationCardinalityNextOld\",\"type\":\"uint16\"},{\"indexed\":false,\"internalType\":\"uint16\",\"name\":\"observationCardinalityNextNew\",\"type\":\"uint16\"}],\"name\":\"IncreaseObservationCardinalityNext\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint160\",\"name\":\"sqrtPriceX96\",\"type\":\"uint160\"},{\"indexed\":false,\"internalType\":\"int24\",\"name\":\"tick\",\"type\":\"int24\"}],\"name\":\"Initialize\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"int24\",\"name\":\"tickLower\",\"type\":\"int24\"},{\"indexed\":true,\"internalType\":\"int24\",\"name\":\"tickUpper\",\"type\":\"int24\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"amount\",\"type\":\"uint128\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount0\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount1\",\"type\":\"uint256\"}],\"name\":\"Mint\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"feeProtocol0Old\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"feeProtocol1Old\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"feeProtocol0New\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"feeProtocol1New\",\"type\":\"uint8\"}],\"name\":\"SetFeeProtocol\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"amount0\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"amount1\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"uint160\",\"name\":\"sqrtPriceX96\",\"type\":\"uint160\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"liquidity\",\"type\":\"uint128\"},{\"indexed\":false,\"internalType\":\"int24\",\"name\":\"tick\",\"type\":\"int24\"}],\"name\":\"Swap\",\"type\":\"event\"}],\"devdoc\":{\"events\":{\"Burn(address,int24,int24,uint128,uint256,uint256)\":{\"details\":\"Does not withdraw any fees earned by the liquidity position, which must be withdrawn via #collect\",\"params\":{\"amount\":\"The amount of liquidity to remove\",\"amount0\":\"The amount of token0 withdrawn\",\"amount1\":\"The amount of token1 withdrawn\",\"owner\":\"The owner of the position for which liquidity is removed\",\"tickLower\":\"The lower tick of the position\",\"tickUpper\":\"The upper tick of the position\"}},\"Collect(address,address,int24,int24,uint128,uint128)\":{\"details\":\"Collect events may be emitted with zero amount0 and amount1 when the caller chooses not to collect fees\",\"params\":{\"amount0\":\"The amount of token0 fees collected\",\"amount1\":\"The amount of token1 fees collected\",\"owner\":\"The owner of the position for which fees are collected\",\"tickLower\":\"The lower tick of the position\",\"tickUpper\":\"The upper tick of the position\"}},\"CollectProtocol(address,address,uint128,uint128)\":{\"params\":{\"amount0\":\"The amount of token1 protocol fees that is withdrawn\",\"recipient\":\"The address that receives the collected protocol fees\",\"sender\":\"The address that collects the protocol fees\"}},\"Flash(address,address,uint256,uint256,uint256,uint256)\":{\"params\":{\"amount0\":\"The amount of token0 that was flashed\",\"amount1\":\"The amount of token1 that was flashed\",\"paid0\":\"The amount of token0 paid for the flash, which can exceed the amount0 plus the fee\",\"paid1\":\"The amount of token1 paid for the flash, which can exceed the amount1 plus the fee\",\"recipient\":\"The address that received the tokens from flash\",\"sender\":\"The address that initiated the swap call, and that received the callback\"}},\"IncreaseObservationCardinalityNext(uint16,uint16)\":{\"details\":\"observationCardinalityNext is not the observation cardinality until an observation is written at the index just before a mint/swap/burn.\",\"params\":{\"observationCardinalityNextNew\":\"The updated value of the next observation cardinality\",\"observationCardinalityNextOld\":\"The previous value of the next observation cardinality\"}},\"Initialize(uint160,int24)\":{\"details\":\"Mint/Burn/Swap cannot be emitted by the pool before Initialize\",\"params\":{\"sqrtPriceX96\":\"The initial sqrt price of the pool, as a Q64.96\",\"tick\":\"The initial tick of the pool, i.e. log base 1.0001 of the starting price of the pool\"}},\"Mint(address,address,int24,int24,uint128,uint256,uint256)\":{\"params\":{\"amount\":\"The amount of liquidity minted to the position range\",\"amount0\":\"How much token0 was required for the minted liquidity\",\"amount1\":\"How much token1 was required for the minted liquidity\",\"owner\":\"The owner of the position and recipient of any minted liquidity\",\"sender\":\"The address that minted the liquidity\",\"tickLower\":\"The lower tick of the position\",\"tickUpper\":\"The upper tick of the position\"}},\"SetFeeProtocol(uint8,uint8,uint8,uint8)\":{\"params\":{\"feeProtocol0New\":\"The updated value of the token0 protocol fee\",\"feeProtocol0Old\":\"The previous value of the token0 protocol fee\",\"feeProtocol1New\":\"The updated value of the token1 protocol fee\",\"feeProtocol1Old\":\"The previous value of the token1 protocol fee\"}},\"Swap(address,address,int256,int256,uint160,uint128,int24)\":{\"params\":{\"amount0\":\"The delta of the token0 balance of the pool\",\"amount1\":\"The delta of the token1 balance of the pool\",\"liquidity\":\"The liquidity of the pool after the swap\",\"recipient\":\"The address that received the output of the swap\",\"sender\":\"The address that initiated the swap call, and that received the callback\",\"sqrtPriceX96\":\"The sqrt(price) of the pool after the swap, as a Q64.96\",\"tick\":\"The log base 1.0001 of price of the pool after the swap\"}}},\"kind\":\"dev\",\"methods\":{},\"title\":\"Events emitted by a pool\",\"version\":1},\"userdoc\":{\"events\":{\"Burn(address,int24,int24,uint128,uint256,uint256)\":{\"notice\":\"Emitted when a position's liquidity is removed\"},\"Collect(address,address,int24,int24,uint128,uint128)\":{\"notice\":\"Emitted when fees are collected by the owner of a position\"},\"CollectProtocol(address,address,uint128,uint128)\":{\"notice\":\"Emitted when the collected protocol fees are withdrawn by the factory owner\"},\"Flash(address,address,uint256,uint256,uint256,uint256)\":{\"notice\":\"Emitted by the pool for any flashes of token0/token1\"},\"IncreaseObservationCardinalityNext(uint16,uint16)\":{\"notice\":\"Emitted by the pool for increases to the number of observations that can be stored\"},\"Initialize(uint160,int24)\":{\"notice\":\"Emitted exactly once by a pool when #initialize is first called on the pool\"},\"Mint(address,address,int24,int24,uint128,uint256,uint256)\":{\"notice\":\"Emitted when liquidity is minted for a given position\"},\"SetFeeProtocol(uint8,uint8,uint8,uint8)\":{\"notice\":\"Emitted when the protocol fee is changed by the pool\"},\"Swap(address,address,int256,int256,uint160,uint128,int24)\":{\"notice\":\"Emitted by the pool for any swaps between token0 and token1\"}},\"kind\":\"user\",\"methods\":{},\"notice\":\"Contains all events emitted by the pool\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolEvents.sol\":\"IUniswapV3PoolEvents\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolEvents.sol\":{\"keccak256\":\"0x8071514d0fe5d17d6fbd31c191cdfb703031c24e0ece3621d88ab10e871375cd\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://d0b571930cc7488b1d546a7e9cea7c52d8b3c4e207da657ed0e0db7343b8cd03\",\"dweb:/ipfs/QmaGK6vVwB95QSTR1XMYvrh7ivYAYZxi3fD7v6VMA4jZ39\"]}},\"version\":1}"}},"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolImmutables.sol":{"IUniswapV3PoolImmutables":{"abi":[{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint24","name":"","type":"uint24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLiquidityPerTick","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tickSpacing","outputs":[{"internalType":"int24","name":"","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"factory()":"c45a0155","fee()":"ddca3f43","maxLiquidityPerTick()":"70cf754a","tickSpacing()":"d0c93a7c","token0()":"0dfe1681","token1()":"d21220a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"factory\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"fee\",\"outputs\":[{\"internalType\":\"uint24\",\"name\":\"\",\"type\":\"uint24\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"maxLiquidityPerTick\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"\",\"type\":\"uint128\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"tickSpacing\",\"outputs\":[{\"internalType\":\"int24\",\"name\":\"\",\"type\":\"int24\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"token0\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"token1\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"factory()\":{\"returns\":{\"_0\":\"The contract address\"}},\"fee()\":{\"returns\":{\"_0\":\"The fee\"}},\"maxLiquidityPerTick()\":{\"details\":\"This parameter is enforced per tick to prevent liquidity from overflowing a uint128 at any point, and also prevents out-of-range liquidity from being used to prevent adding in-range liquidity to a pool\",\"returns\":{\"_0\":\"The max amount of liquidity per tick\"}},\"tickSpacing()\":{\"details\":\"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.\",\"returns\":{\"_0\":\"The tick spacing\"}},\"token0()\":{\"returns\":{\"_0\":\"The token contract address\"}},\"token1()\":{\"returns\":{\"_0\":\"The token contract address\"}}},\"title\":\"Pool state that never changes\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"factory()\":{\"notice\":\"The contract that deployed the pool, which must adhere to the IUniswapV3Factory interface\"},\"fee()\":{\"notice\":\"The pool's fee in hundredths of a bip, i.e. 1e-6\"},\"maxLiquidityPerTick()\":{\"notice\":\"The maximum amount of position liquidity that can use any tick in the range\"},\"tickSpacing()\":{\"notice\":\"The pool tick spacing\"},\"token0()\":{\"notice\":\"The first of the two tokens of the pool, sorted by address\"},\"token1()\":{\"notice\":\"The second of the two tokens of the pool, sorted by address\"}},\"notice\":\"These parameters are fixed for a pool forever, i.e., the methods will always return the same values\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolImmutables.sol\":\"IUniswapV3PoolImmutables\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolImmutables.sol\":{\"keccak256\":\"0xf6e5d2cd1139c4c276bdbc8e1d2b256e456c866a91f1b868da265c6d2685c3f7\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://b99c8c9ae8e27ee6559e5866bea82cbc9ffc8247f8d15b7422a4deb287d4d047\",\"dweb:/ipfs/QmfL8gaqt3ffAnm6nVj5ksuNpLygXuL3xq5VBqrkwC2JJ3\"]}},\"version\":1}"}},"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolOwnerActions.sol":{"IUniswapV3PoolOwnerActions":{"abi":[{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint128","name":"amount0Requested","type":"uint128"},{"internalType":"uint128","name":"amount1Requested","type":"uint128"}],"name":"collectProtocol","outputs":[{"internalType":"uint128","name":"amount0","type":"uint128"},{"internalType":"uint128","name":"amount1","type":"uint128"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"feeProtocol0","type":"uint8"},{"internalType":"uint8","name":"feeProtocol1","type":"uint8"}],"name":"setFeeProtocol","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"collectProtocol(address,uint128,uint128)":"85b66729","setFeeProtocol(uint8,uint8)":"8206a4d1"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint128\",\"name\":\"amount0Requested\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"amount1Requested\",\"type\":\"uint128\"}],\"name\":\"collectProtocol\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"amount0\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"amount1\",\"type\":\"uint128\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"feeProtocol0\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"feeProtocol1\",\"type\":\"uint8\"}],\"name\":\"setFeeProtocol\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"collectProtocol(address,uint128,uint128)\":{\"params\":{\"amount0Requested\":\"The maximum amount of token0 to send, can be 0 to collect fees in only token1\",\"amount1Requested\":\"The maximum amount of token1 to send, can be 0 to collect fees in only token0\",\"recipient\":\"The address to which collected protocol fees should be sent\"},\"returns\":{\"amount0\":\"The protocol fee collected in token0\",\"amount1\":\"The protocol fee collected in token1\"}},\"setFeeProtocol(uint8,uint8)\":{\"params\":{\"feeProtocol0\":\"new protocol fee for token0 of the pool\",\"feeProtocol1\":\"new protocol fee for token1 of the pool\"}}},\"title\":\"Permissioned pool actions\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"collectProtocol(address,uint128,uint128)\":{\"notice\":\"Collect the protocol fee accrued to the pool\"},\"setFeeProtocol(uint8,uint8)\":{\"notice\":\"Set the denominator of the protocol's % share of the fees\"}},\"notice\":\"Contains pool methods that may only be called by the factory owner\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolOwnerActions.sol\":\"IUniswapV3PoolOwnerActions\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolOwnerActions.sol\":{\"keccak256\":\"0x759b78a2918af9e99e246dc3af084f654e48ef32bb4e4cb8a966aa3dcaece235\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://64144fb96e1c7fdba87305acadb98a198d26a3d46c097cb3a666e567f6f29735\",\"dweb:/ipfs/QmUnWVwN9FKB9uV5Pr8YfLpWZnYM2DENnRMaadZ492JS9u\"]}},\"version\":1}"}},"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolState.sol":{"IUniswapV3PoolState":{"abi":[{"inputs":[],"name":"feeGrowthGlobal0X128","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeGrowthGlobal1X128","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidity","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"observations","outputs":[{"internalType":"uint32","name":"blockTimestamp","type":"uint32"},{"internalType":"int56","name":"tickCumulative","type":"int56"},{"internalType":"uint160","name":"secondsPerLiquidityCumulativeX128","type":"uint160"},{"internalType":"bool","name":"initialized","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"key","type":"bytes32"}],"name":"positions","outputs":[{"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":"protocolFees","outputs":[{"internalType":"uint128","name":"token0","type":"uint128"},{"internalType":"uint128","name":"token1","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"slot0","outputs":[{"internalType":"uint160","name":"sqrtPriceX96","type":"uint160"},{"internalType":"int24","name":"tick","type":"int24"},{"internalType":"uint16","name":"observationIndex","type":"uint16"},{"internalType":"uint16","name":"observationCardinality","type":"uint16"},{"internalType":"uint16","name":"observationCardinalityNext","type":"uint16"},{"internalType":"uint8","name":"feeProtocol","type":"uint8"},{"internalType":"bool","name":"unlocked","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int16","name":"wordPosition","type":"int16"}],"name":"tickBitmap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int24","name":"tick","type":"int24"}],"name":"ticks","outputs":[{"internalType":"uint128","name":"liquidityGross","type":"uint128"},{"internalType":"int128","name":"liquidityNet","type":"int128"},{"internalType":"uint256","name":"feeGrowthOutside0X128","type":"uint256"},{"internalType":"uint256","name":"feeGrowthOutside1X128","type":"uint256"},{"internalType":"int56","name":"tickCumulativeOutside","type":"int56"},{"internalType":"uint160","name":"secondsPerLiquidityOutsideX128","type":"uint160"},{"internalType":"uint32","name":"secondsOutside","type":"uint32"},{"internalType":"bool","name":"initialized","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"feeGrowthGlobal0X128()":"f3058399","feeGrowthGlobal1X128()":"46141319","liquidity()":"1a686502","observations(uint256)":"252c09d7","positions(bytes32)":"514ea4bf","protocolFees()":"1ad8b03b","slot0()":"3850c7bd","tickBitmap(int16)":"5339c296","ticks(int24)":"f30dba93"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"feeGrowthGlobal0X128\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"feeGrowthGlobal1X128\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"liquidity\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"\",\"type\":\"uint128\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"observations\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"blockTimestamp\",\"type\":\"uint32\"},{\"internalType\":\"int56\",\"name\":\"tickCumulative\",\"type\":\"int56\"},{\"internalType\":\"uint160\",\"name\":\"secondsPerLiquidityCumulativeX128\",\"type\":\"uint160\"},{\"internalType\":\"bool\",\"name\":\"initialized\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"key\",\"type\":\"bytes32\"}],\"name\":\"positions\",\"outputs\":[{\"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\":\"protocolFees\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"token0\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"token1\",\"type\":\"uint128\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"slot0\",\"outputs\":[{\"internalType\":\"uint160\",\"name\":\"sqrtPriceX96\",\"type\":\"uint160\"},{\"internalType\":\"int24\",\"name\":\"tick\",\"type\":\"int24\"},{\"internalType\":\"uint16\",\"name\":\"observationIndex\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"observationCardinality\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"observationCardinalityNext\",\"type\":\"uint16\"},{\"internalType\":\"uint8\",\"name\":\"feeProtocol\",\"type\":\"uint8\"},{\"internalType\":\"bool\",\"name\":\"unlocked\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"int16\",\"name\":\"wordPosition\",\"type\":\"int16\"}],\"name\":\"tickBitmap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"int24\",\"name\":\"tick\",\"type\":\"int24\"}],\"name\":\"ticks\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"liquidityGross\",\"type\":\"uint128\"},{\"internalType\":\"int128\",\"name\":\"liquidityNet\",\"type\":\"int128\"},{\"internalType\":\"uint256\",\"name\":\"feeGrowthOutside0X128\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"feeGrowthOutside1X128\",\"type\":\"uint256\"},{\"internalType\":\"int56\",\"name\":\"tickCumulativeOutside\",\"type\":\"int56\"},{\"internalType\":\"uint160\",\"name\":\"secondsPerLiquidityOutsideX128\",\"type\":\"uint160\"},{\"internalType\":\"uint32\",\"name\":\"secondsOutside\",\"type\":\"uint32\"},{\"internalType\":\"bool\",\"name\":\"initialized\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"feeGrowthGlobal0X128()\":{\"details\":\"This value can overflow the uint256\"},\"feeGrowthGlobal1X128()\":{\"details\":\"This value can overflow the uint256\"},\"liquidity()\":{\"details\":\"This value has no relationship to the total liquidity across all ticks\"},\"observations(uint256)\":{\"details\":\"You most likely want to use #observe() instead of this method to get an observation as of some amount of time ago, rather than at a specific index in the array.\",\"params\":{\"index\":\"The element of the observations array to fetch\"},\"returns\":{\"blockTimestamp\":\"The timestamp of the observation, Returns tickCumulative the tick multiplied by seconds elapsed for the life of the pool as of the observation timestamp, Returns secondsPerLiquidityCumulativeX128 the seconds per in range liquidity for the life of the pool as of the observation timestamp, Returns initialized whether the observation has been initialized and the values are safe to use\"}},\"positions(bytes32)\":{\"params\":{\"key\":\"The position's key is a hash of a preimage composed by the owner, tickLower and tickUpper\"},\"returns\":{\"_liquidity\":\"The amount of liquidity in the position, Returns feeGrowthInside0LastX128 fee growth of token0 inside the tick range as of the last mint/burn/poke, Returns feeGrowthInside1LastX128 fee growth of token1 inside the tick range as of the last mint/burn/poke, Returns tokensOwed0 the computed amount of token0 owed to the position as of the last mint/burn/poke, Returns tokensOwed1 the computed amount of token1 owed to the position as of the last mint/burn/poke\"}},\"protocolFees()\":{\"details\":\"Protocol fees will never exceed uint128 max in either token\"},\"slot0()\":{\"returns\":{\"sqrtPriceX96\":\"The current price of the pool as a sqrt(token1/token0) Q64.96 value tick The current tick of the pool, i.e. according to the last tick transition that was run. This value may not always be equal to SqrtTickMath.getTickAtSqrtRatio(sqrtPriceX96) if the price is on a tick boundary. observationIndex The index of the last oracle observation that was written, observationCardinality The current maximum number of observations stored in the pool, observationCardinalityNext The next maximum number of observations, to be updated when the observation. feeProtocol The protocol fee for both tokens of the pool. Encoded as two 4 bit values, where the protocol fee of token1 is shifted 4 bits and the protocol fee of token0 is the lower 4 bits. Used as the denominator of a fraction of the swap fee, e.g. 4 means 1/4th of the swap fee. unlocked Whether the pool is currently locked to reentrancy\"}},\"ticks(int24)\":{\"params\":{\"tick\":\"The tick to look up\"},\"returns\":{\"liquidityGross\":\"the total amount of position liquidity that uses the pool either as tick lower or tick upper, liquidityNet how much liquidity changes when the pool price crosses the tick, feeGrowthOutside0X128 the fee growth on the other side of the tick from the current tick in token0, feeGrowthOutside1X128 the fee growth on the other side of the tick from the current tick in token1, tickCumulativeOutside the cumulative tick value on the other side of the tick from the current tick secondsPerLiquidityOutsideX128 the seconds spent per liquidity on the other side of the tick from the current tick, secondsOutside the seconds spent on the other side of the tick from the current tick, initialized Set to true if the tick is initialized, i.e. liquidityGross is greater than 0, otherwise equal to false. Outside values can only be used if the tick is initialized, i.e. if liquidityGross is greater than 0. In addition, these values are only relative and must be used only in comparison to previous snapshots for a specific position.\"}}},\"title\":\"Pool state that can change\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"feeGrowthGlobal0X128()\":{\"notice\":\"The fee growth as a Q128.128 fees of token0 collected per unit of liquidity for the entire life of the pool\"},\"feeGrowthGlobal1X128()\":{\"notice\":\"The fee growth as a Q128.128 fees of token1 collected per unit of liquidity for the entire life of the pool\"},\"liquidity()\":{\"notice\":\"The currently in range liquidity available to the pool\"},\"observations(uint256)\":{\"notice\":\"Returns data about a specific observation index\"},\"positions(bytes32)\":{\"notice\":\"Returns the information about a position by the position's key\"},\"protocolFees()\":{\"notice\":\"The amounts of token0 and token1 that are owed to the protocol\"},\"slot0()\":{\"notice\":\"The 0th storage slot in the pool stores many values, and is exposed as a single method to save gas when accessed externally.\"},\"tickBitmap(int16)\":{\"notice\":\"Returns 256 packed tick initialized boolean values. See TickBitmap for more information\"},\"ticks(int24)\":{\"notice\":\"Look up information about a specific tick in the pool\"}},\"notice\":\"These methods compose the pool's state, and can change with any frequency including multiple times per transaction\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolState.sol\":\"IUniswapV3PoolState\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolState.sol\":{\"keccak256\":\"0x852dc1f5df7dcf7f11e7bb3eed79f0cea72ad4b25f6a9d2c35aafb48925fd49f\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://ed63907c38ff36b0e22bc9ffc53e791ea74f0d4f0e7c257fdfb5aaf8825b1f0f\",\"dweb:/ipfs/QmSQrckghEjs6HVsA5GVgpNpZWvTXMY5eQLF7cN6deFeEg\"]}},\"version\":1}"}},"@uniswap/v3-periphery/contracts/interfaces/IERC721Permit.sol":{"IERC721Permit":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","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":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"operator","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"DOMAIN_SEPARATOR()":"3644e515","PERMIT_TYPEHASH()":"30adf81f","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","getApproved(uint256)":"081812fc","isApprovedForAll(address,address)":"e985e9c5","ownerOf(uint256)":"6352211e","permit(address,uint256,uint256,uint8,bytes32,bytes32)":"7ac2ff7b","safeTransferFrom(address,address,uint256)":"42842e0e","safeTransferFrom(address,address,uint256,bytes)":"b88d4fde","setApprovalForAll(address,bool)":"a22cb465","supportsInterface(bytes4)":"01ffc9a7","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"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\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PERMIT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"pure\",\"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\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"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\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"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\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"returns\":{\"_0\":\"The domain seperator used in encoding of permit signature\"}},\"PERMIT_TYPEHASH()\":{\"returns\":{\"_0\":\"The typehash for the permit\"}},\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"permit(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"params\":{\"deadline\":\"The deadline timestamp by which the call must be mined for the approve to work\",\"r\":\"Must produce valid secp256k1 signature from the holder along with `v` and `s`\",\"s\":\"Must produce valid secp256k1 signature from the holder along with `r` and `v`\",\"spender\":\"The account that is being approved\",\"tokenId\":\"The ID of the token that is being approved for spending\",\"v\":\"Must produce valid secp256k1 signature from the holder along with `r` and `s`\"}},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the caller. Emits an {ApprovalForAll} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"}},\"title\":\"ERC721 with permit\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"notice\":\"The domain separator used in the permit signature\"},\"PERMIT_TYPEHASH()\":{\"notice\":\"The permit typehash used in the permit signature\"},\"permit(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"notice\":\"Approve of a specific token ID for spending by spender via signature\"}},\"notice\":\"Extension to ERC721 that includes a permit function for signature based approvals\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@uniswap/v3-periphery/contracts/interfaces/IERC721Permit.sol\":\"IERC721Permit\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xed6a749c5373af398105ce6ee3ac4763aa450ea7285d268c85d9eeca809cdb1f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://20a97f891d06f0fe91560ea1a142aaa26fdd22bed1b51606b7d48f670deeb50f\",\"dweb:/ipfs/QmTbCtZKChpaX5H2iRiTDMcSz29GSLCpTCDgJpcMR4wg8x\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]},\"@uniswap/v3-periphery/contracts/interfaces/IERC721Permit.sol\":{\"keccak256\":\"0x9e3c2a4ee65ddf95b2dfcb0815784eea3a295707e6f8b83e4c4f0f8fe2e3a1d4\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://bfd939085b3618101b955f87c7fabf38338ba1aad480295acb8102ebc5d72471\",\"dweb:/ipfs/QmauQD8bGDHTztmTDfaKXjzM7Wacrq2XU7VcTbwn1WrDBL\"]}},\"version\":1}"}},"@uniswap/v3-periphery/contracts/interfaces/IPeripheryImmutableState.sol":{"IPeripheryImmutableState":{"abi":[{"inputs":[],"name":"WETH9","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"WETH9()":"4aa4a4fc","factory()":"c45a0155"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"WETH9\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"factory\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"WETH9()\":{\"returns\":{\"_0\":\"Returns the address of WETH9\"}},\"factory()\":{\"returns\":{\"_0\":\"Returns the address of the Uniswap V3 factory\"}}},\"title\":\"Immutable state\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"Functions that return immutable state of the router\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@uniswap/v3-periphery/contracts/interfaces/IPeripheryImmutableState.sol\":\"IPeripheryImmutableState\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@uniswap/v3-periphery/contracts/interfaces/IPeripheryImmutableState.sol\":{\"keccak256\":\"0x7affcfeb5127c0925a71d6a65345e117c33537523aeca7bc98085ead8452519d\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://e16b291294210e71cb0f20cd0afe62ae2dc6878d627f5ccc19c4dc9cd80aec3f\",\"dweb:/ipfs/QmQGitSyBr26nour81BZmpmDMyJpvZRqHQZvnCD1Acb127\"]}},\"version\":1}"}},"@uniswap/v3-periphery/contracts/interfaces/IPeripheryPayments.sol":{"IPeripheryPayments":{"abi":[{"inputs":[],"name":"refundETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amountMinimum","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"sweepToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountMinimum","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"unwrapWETH9","outputs":[],"stateMutability":"payable","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"refundETH()":"12210e8a","sweepToken(address,uint256,address)":"df2ab5bb","unwrapWETH9(uint256,address)":"49404b7c"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"refundETH\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amountMinimum\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"}],\"name\":\"sweepToken\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amountMinimum\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"}],\"name\":\"unwrapWETH9\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"refundETH()\":{\"details\":\"Useful for bundling with mint or increase liquidity that uses ether, or exact output swaps that use ether for the input amount\"},\"sweepToken(address,uint256,address)\":{\"details\":\"The amountMinimum parameter prevents malicious contracts from stealing the token from users\",\"params\":{\"amountMinimum\":\"The minimum amount of token required for a transfer\",\"recipient\":\"The destination address of the token\",\"token\":\"The contract address of the token which will be transferred to `recipient`\"}},\"unwrapWETH9(uint256,address)\":{\"details\":\"The amountMinimum parameter prevents malicious contracts from stealing WETH9 from users.\",\"params\":{\"amountMinimum\":\"The minimum amount of WETH9 to unwrap\",\"recipient\":\"The address receiving ETH\"}}},\"title\":\"Periphery Payments\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"refundETH()\":{\"notice\":\"Refunds any ETH balance held by this contract to the `msg.sender`\"},\"sweepToken(address,uint256,address)\":{\"notice\":\"Transfers the full amount of a token held by this contract to recipient\"},\"unwrapWETH9(uint256,address)\":{\"notice\":\"Unwraps the contract's WETH9 balance and sends it to recipient as ETH.\"}},\"notice\":\"Functions to ease deposits and withdrawals of ETH\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@uniswap/v3-periphery/contracts/interfaces/IPeripheryPayments.sol\":\"IPeripheryPayments\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@uniswap/v3-periphery/contracts/interfaces/IPeripheryPayments.sol\":{\"keccak256\":\"0xb547e10f1e69bed03621a62b73a503e260643066c6b4054867a4d1fef47eb274\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://f9a90f58f5fd5fb42f7811f4094113b532f307b14a73764c91f977590747f407\",\"dweb:/ipfs/QmSeNH2mfiDMKf3Q6V2sqtNxx1s72JNuA1VVxRM9HoMqYp\"]}},\"version\":1}"}},"@uniswap/v3-periphery/contracts/interfaces/IPoolInitializer.sol":{"IPoolInitializer":{"abi":[{"inputs":[{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"uint24","name":"fee","type":"uint24"},{"internalType":"uint160","name":"sqrtPriceX96","type":"uint160"}],"name":"createAndInitializePoolIfNecessary","outputs":[{"internalType":"address","name":"pool","type":"address"}],"stateMutability":"payable","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"createAndInitializePoolIfNecessary(address,address,uint24,uint160)":"13ead562"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token0\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token1\",\"type\":\"address\"},{\"internalType\":\"uint24\",\"name\":\"fee\",\"type\":\"uint24\"},{\"internalType\":\"uint160\",\"name\":\"sqrtPriceX96\",\"type\":\"uint160\"}],\"name\":\"createAndInitializePoolIfNecessary\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"pool\",\"type\":\"address\"}],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"createAndInitializePoolIfNecessary(address,address,uint24,uint160)\":{\"details\":\"This method can be bundled with others via IMulticall for the first action (e.g. mint) performed against a pool\",\"params\":{\"fee\":\"The fee amount of the v3 pool for the specified token pair\",\"sqrtPriceX96\":\"The initial square root price of the pool as a Q64.96 value\",\"token0\":\"The contract address of token0 of the pool\",\"token1\":\"The contract address of token1 of the pool\"},\"returns\":{\"pool\":\"Returns the pool address based on the pair of tokens and fee, will return the newly created pool address if necessary\"}}},\"title\":\"Creates and initializes V3 Pools\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"createAndInitializePoolIfNecessary(address,address,uint24,uint160)\":{\"notice\":\"Creates a new pool if it does not exist, then initializes if not initialized\"}},\"notice\":\"Provides a method for creating and initializing a pool, if necessary, for bundling with other methods that require the pool to exist.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@uniswap/v3-periphery/contracts/interfaces/IPoolInitializer.sol\":\"IPoolInitializer\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@uniswap/v3-periphery/contracts/interfaces/IPoolInitializer.sol\":{\"keccak256\":\"0x9d7695e8d94c22cc5fcced602017aabb988de89981ea7bee29ea629d5328a862\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://61b50933026ee1017db2a6273af8cedc3238c95dca58880db0918dbdbb2f064f\",\"dweb:/ipfs/QmUebR26pqG25d18aBELKz8aFFKkmHa8PxntzXTA7o9Ldu\"]}},\"version\":1}"}},"contracts/gauges/uniswapv3/BaseGaugeV3UniV3.sol":{"BaseGaugeV3UniV3":{"abi":[{"anonymous":false,"inputs":[],"name":"EmergencyModeEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_old","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_new","type":"uint256"}],"name":"MaxBoostRequirementChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint128","name":"liquidty","type":"uint128"},{"indexed":false,"internalType":"uint128","name":"derivedLiquidity","type":"uint128"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"attached","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"deposits","outputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint128","name":"liquidity","type":"uint128"},{"internalType":"uint128","name":"derivedLiquidity","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"derivedLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint128","name":"_liquidity","type":"uint128"},{"internalType":"address","name":"account","type":"address"}],"name":"derivedLiquidity","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"emergencyCall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableEmergencyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"contract IUniswapV3Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address[]","name":"","type":"address[]"}],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getRewardForDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inEmergency","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_registry","type":"address"},{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"uint24","name":"fee","type":"uint24"},{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"address","name":"_nonfungiblePositionManager","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"left","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"liquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBoostRequirement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonfungiblePositionManager","outputs":[{"internalType":"contract INonfungiblePositionManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"notifyRewardAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pool","outputs":[{"internalType":"contract IUniswapV3Pool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"registry","outputs":[{"internalType":"contract IRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerTokenStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"updateRewardFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"userRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"withdrawViaEmergency","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"60806040526000600455600060055562093a8060065569010f0cf064dd5920000060095534801561002f57600080fd5b5060018055612b37806100436000396000f3fe608060405234801561001057600080fd5b50600436106101f75760003560e01c80638a16a30b11610120578063c4cfbf06116100b8578063d1af0c7d1161007c578063d1af0c7d14610521578063d7e79f0214610534578063df136d6514610547578063ebe2b12b14610550578063f301af421461055957600080fd5b8063c4cfbf06146104b1578063c5b1c7d0146104dc578063c8f1c3af146104e4578063c8f33c9114610510578063cd3daf9d1461051957600080fd5b80638a16a30b146103a957806399bcc052146103bc5780639be54945146103cf578063b02c43d0146103dc578063b44a272214610452578063b66503cf14610465578063b93c9a1d14610478578063c45a01551461048b578063c4bf02201461049e57600080fd5b8063386a952511610193578063386a95251461030d5780634d6ed8c41461031657806369db8b27146103295780636c6f858b1461033257806370a08231146103525780637b0a47ee146103725780637b1039991461037b5780637f8661a11461038e57806380faa57d146103a157600080fd5b806303f3e30e146101fc578063150b7a021461024257806316f0115b1461026e57806318160ddd1461028e5780631c1f78eb146102975780631c4b774b1461029f5780632e1a7d4d146102b457806331279d3d146102c757806336703461146102da575b600080fd5b61022f61020a3660046126b0565b6000908152600c6020526040902060010154600160801b90046001600160801b031690565b6040519081526020015b60405180910390f35b6102556102503660046123a0565b610579565b6040516001600160e01b03199091168152602001610239565b601054610281906001600160a01b031681565b60405161023991906127db565b61022f600b5481565b61022f6105c3565b6102b26102ad3660046126b0565b6105e1565b005b6102b26102c23660046126b0565b610761565b6102b26102d536600461243a565b610a75565b6102fd6102e83660046122e7565b60166020526000908152604090205460ff1681565b6040519015158152602001610239565b61022f60065481565b61022f6103243660046126b0565b610b09565b61022f60095481565b61022f6103403660046126b0565b600a6020526000908152604090205481565b61022f6103603660046122e7565b60116020526000908152604090205481565b61022f60055481565b600254610281906001600160a01b031681565b6102b261039c3660046126b0565b610b86565b61022f610b9b565b6102b26103b73660046126b0565b610bb2565b61022f6103ca3660046122e7565b610d5e565b6017546102fd9060ff1681565b6104236103ea3660046126b0565b600c60205260009081526040902080546001909101546001600160a01b03909116906001600160801b0380821691600160801b90041683565b604080516001600160a01b0390941684526001600160801b039283166020850152911690820152606001610239565b600f54610281906001600160a01b031681565b6102b26104733660046125a5565b610d98565b6102b261048636600461231f565b611010565b600e54610281906001600160a01b031681565b6102b26104ac366004612503565b6112d3565b6104c46104bf3660046125ea565b6114a4565b6040516001600160801b039091168152602001610239565b6102b2611635565b61022f6104f23660046126b0565b6000908152600c60205260409020600101546001600160801b031690565b61022f60075481565b61022f6118eb565b600354610281906001600160a01b031681565b6102b26105423660046126b0565b611937565b61022f60085481565b61022f60045481565b61022f6105673660046126b0565b600d6020526000908152604090205481565b60175460009060ff166105a75760405162461bcd60e51b815260040161059e906128c0565b60405180910390fd5b6105b18585611998565b50630a85bd0160e11b95945050505050565b60006105dc600654600554611da890919063ffffffff16565b905090565b600260015414156106045760405162461bcd60e51b815260040161059e906128ef565b60026001558061061381611db4565b6000828152600c602052604090205482906001600160a01b0316331461064b5760405162461bcd60e51b815260040161059e9061286e565b6000838152600d60205260409020548015610757576000848152600d60209081526040808320839055600354600c9092529182902054915163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905291169063a9059cbb90604401602060405180830381600087803b1580156106ca57600080fd5b505af11580156106de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061070291906125d0565b506000848152600c60209081526040918290205482518781529182018490526001600160a01b0316917fd6f2c8500df5b44f11e9e48b91ff9f1b9d81bc496d55570c2b1b75bf65243f51910160405180910390a25b5050600180555050565b600260015414156107845760405162461bcd60e51b815260040161059e906128ef565b60026001558061079381611db4565b6000828152600c602052604090205482906001600160a01b031633146107cb5760405162461bcd60e51b815260040161059e9061286e565b6000838152600c60205260409020600101546001600160801b03166108265760405162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015260640161059e565b6000838152600c6020526040902060010154600b5461085491600160801b90046001600160801b0316611e03565b600b556000838152600c6020526040812080546001600160a01b0319168155600101556108813384611e0f565b61088a83611eab565b3360009081526011602052604081208054600192906108aa908490612a22565b9091555050600f54604051632142170760e11b81526001600160a01b03909116906342842e0e906108e390309033908890600401612817565b600060405180830381600087803b1580156108fd57600080fd5b505af1158015610911573d6000803e3d6000fd5b50503360009081526011602052604090205415915050801561094257503360009081526016602052604090205460ff165b15610a375733600090815260166020908152604091829020805460ff1916905560025482516381ca29a160e01b815292516001600160a01b03909116926381ca29a1926004808301939192829003018186803b1580156109a157600080fd5b505afa1580156109b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d99190612303565b6001600160a01b031663e32e4e88336040518263ffffffff1660e01b8152600401610a0491906127db565b600060405180830381600087803b158015610a1e57600080fd5b505af1158015610a32573d6000803e3d6000fd5b505050505b60405183815233907f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d59060200160405180910390a250506001805550565b60026001541415610a985760405162461bcd60e51b815260040161059e906128ef565b600260015560005b6001600160a01b038316600090815260116020526040902054811015610b00576001600160a01b0383166000908152601260209081526040808320848452909152902054610aed816105e1565b5080610af881612a69565b915050610aa0565b50506001805550565b6000818152600d6020908152604080832054600a909252822054610b809190610b7a90670de0b6b3a764000090610b7490610b4c90610b466118eb565b90611e03565b6000888152600c6020526040902060010154600160801b90046001600160801b031690611da8565b90611f84565b90611f90565b92915050565b610b8f81610761565b610b98816105e1565b50565b60006004544210610bad575060045490565b504290565b60026001541415610bd55760405162461bcd60e51b815260040161059e906128ef565b60026001556000818152600c602052604090205481906001600160a01b03163314610c125760405162461bcd60e51b815260040161059e9061286e565b60175460ff16610c345760405162461bcd60e51b815260040161059e906128c0565b6000828152600c60205260409020600101546001600160801b0316610c925760405162461bcd60e51b81526020600482015260146024820152731cdd185ad948191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161059e565b6000828152600c602052604080822080546001600160a01b0319168155600101919091555133907f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d590610ce89085815260200190565b60405180910390a2600f54604051632142170760e11b81526001600160a01b03909116906342842e0e90610d2490309033908790600401612817565b600060405180830381600087803b158015610d3e57600080fd5b505af1158015610d52573d6000803e3d6000fd5b50506001805550505050565b60006004544210610d7157506000919050565b600042600454610d819190612a22565b905060055481610d919190612a03565b9392505050565b6000610da381611db4565b600260009054906101000a90046001600160a01b03166001600160a01b03166381ca29a16040518163ffffffff1660e01b815260040160206040518083038186803b158015610df157600080fd5b505afa158015610e05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e299190612303565b6001600160a01b0316336001600160a01b031614610e7b5760405162461bcd60e51b815260206004820152600f60248201526e3737ba1033b0bab3b2903b37ba32b960891b604482015260640161059e565b6004544210610e9a57600654610e92908390611f84565b600555610edd565b600454600090610eaa9042611e03565b90506000610ec360055483611da890919063ffffffff16565b600654909150610ed790610b748684611f90565b60055550505b6003546040516370a0823160e01b81526000916001600160a01b0316906370a0823190610f0e9030906004016127db565b60206040518083038186803b158015610f2657600080fd5b505afa158015610f3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5e91906126c8565b9050610f7560065482611f8490919063ffffffff16565b6005541115610fc15760405162461bcd60e51b81526020600482015260186024820152770a0e4deecd2c8cac840e4caeec2e4c840e8dede40d0d2ced60431b604482015260640161059e565b426007819055600654610fd49190611f90565b6004556040518381527fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9060200160405180910390a150505050565b600054610100900460ff16158080156110305750600054600160ff909116105b8061104a5750303b15801561104a575060005460ff166001145b6110ad5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840161059e565b6000805460ff1916600117905580156110d0576000805461ff0019166101001790555b600f80546001600160a01b038085166001600160a01b0319928316811790935560028054918b16919092161790556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b15801561113457600080fd5b505afa158015611148573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116c9190612303565b600e80546001600160a01b039283166001600160a01b03199182168117909255600380549387169390911692909217909155604051630b4c774160e11b815260009190631698ee82906111c7908a908a908a906004016127ef565b60206040518083038186803b1580156111df57600080fd5b505afa1580156111f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112179190612303565b90506001600160a01b0381166112645760405162461bcd60e51b81526020600482015260126024820152711c1bdbdb08191bd95cdb89dd08195e1a5cdd60721b604482015260640161059e565b601080546001600160a01b0319166001600160a01b039290921691909117905580156112ca576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50505050505050565b600260009054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b815260040160206040518083038186803b15801561132157600080fd5b505afa158015611335573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113599190612303565b6001600160a01b031663d33219b46040518163ffffffff1660e01b815260040160206040518083038186803b15801561139157600080fd5b505afa1580156113a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c99190612303565b6001600160a01b0316336001600160a01b0316146113f95760405162461bcd60e51b815260040161059e9061289a565b60175460ff1661141b5760405162461bcd60e51b815260040161059e906128c0565b600080836001600160a01b03168360405161143691906127bf565b6000604051808303816000865af19150503d8060008114611473576040519150601f19603f3d011682016040523d82523d6000602084013e611478565b606091505b509150915081819061149d5760405162461bcd60e51b815260040161059e919061283b565b5050505050565b60008060646114b48560146129d4565b6114be919061299a565b90506000600260009054906101000a90046001600160a01b03166001600160a01b0316635ebaf1db6040518163ffffffff1660e01b815260040160206040518083038186803b15801561151057600080fd5b505afa158015611524573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115489190612303565b6001600160a01b03166370a08231856040518263ffffffff1660e01b815260040161157391906127db565b60206040518083038186803b15801561158b57600080fd5b505afa15801561159f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115c391906126c8565b90506000606460095483886115d891906129d4565b6115e39060506129d4565b6115ed919061299a565b6115f7919061299a565b90506001600160801b03861661160d8285612957565b6001600160801b031610611621578561162b565b61162b8184612957565b9695505050505050565b600260009054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b815260040160206040518083038186803b15801561168357600080fd5b505afa158015611697573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116bb9190612303565b6001600160a01b031663d33219b46040518163ffffffff1660e01b815260040160206040518083038186803b1580156116f357600080fd5b505afa158015611707573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172b9190612303565b6001600160a01b0316336001600160a01b03161461175b5760405162461bcd60e51b815260040161059e9061289a565b60175460ff16156117aa5760405162461bcd60e51b8152602060048201526019602482015278616c726561647920696e20656d657267656e6379206d6f646560381b604482015260640161059e565b6017805460ff191660011790556003546040516370a0823160e01b81526001600160a01b039091169063a9059cbb90339083906370a08231906117f19030906004016127db565b60206040518083038186803b15801561180957600080fd5b505afa15801561181d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184191906126c8565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561188757600080fd5b505af115801561189b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118bf91906125d0565b506040517f2064d51aa5a8bd67928c7675e267e05c67ad5adf7c9098d0a602d01f36fda9c590600090a1565b6000600b54600014156118ff575060085490565b6105dc61192e600b54610b74670de0b6b3a7640000611928600554611928600754610b46610b9b565b90611da8565b60085490611f90565b6000818152600c60205260409020600101546001600160801b031661198f5760405162461bcd60e51b815260206004820152600e60248201526d06c697175696469747920697320360941b604482015260640161059e565b610b9881611db4565b806119a281611db4565b600f546001600160a01b031633146119fc5760405162461bcd60e51b815260206004820152601b60248201527f6e6f742063616c6c65642066726f6d206e6674206d616e616765720000000000604482015260640161059e565b6000806000611a0a85611f9c565b60105492955090935091506001600160a01b03808516911614611a6f5760405162461bcd60e51b815260206004820181905260248201527f746f6b656e20706f6f6c206973206e6f742074686520726967687420706f6f6c604482015260640161059e565b81611ab45760405162461bcd60e51b81526020600482015260156024820152746c69717569647479206e6f7420696e2072616e676560581b604482015260640161059e565b6000816001600160801b031611611b085760405162461bcd60e51b815260206004820152601860248201527763616e6e6f74207374616b652030206c697175696469747960401b604482015260640161059e565b6000611b1482886114a4565b604080516060810182526001600160a01b03808b1682526001600160801b03808716602080850191825282871685870190815260008e8152600c9092529590209351845493166001600160a01b0319909316929092178355905192518116600160801b029216919091176001909101559050611bce86601480546000838152601560205260408120829055600182018355919091527fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec0155565b6001600160a01b038716600081815260116020818152604080842080546012845282862081875284528286208d90558c865260138452918520919091559383525281546001929190611c21908490612982565b9091555050600b54611c3c906001600160801b038316611f90565b600b556001600160a01b03871660009081526016602052604090205460ff16611d53576001600160a01b03808816600090815260166020908152604091829020805460ff1916600117905560025482516381ca29a160e01b815292519316926381ca29a1926004808201939291829003018186803b158015611cbd57600080fd5b505afa158015611cd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cf59190612303565b6001600160a01b03166397a302f7886040518263ffffffff1660e01b8152600401611d2091906127db565b600060405180830381600087803b158015611d3a57600080fd5b505af1158015611d4e573d6000803e3d6000fd5b505050505b604080518781526001600160801b038481166020830152831681830152905133917fb1a5f058b6335d833f8fd0eaa6562af341d1ad22eebaff5776988d1c6e730879919081900360600190a250505050505050565b6000610d918284612a03565b611dbc6118eb565b600855611dc7610b9b565b6007558015610b9857611dd981610b09565b6000828152600d6020908152604080832093909355600854600a90915291902055610b988161207a565b6000610d918284612a22565b6001600160a01b038216600090815260116020908152604080832054848452601390925290912054808214611e78576001600160a01b03841660009081526012602090815260408083208584528252808320548484528184208190558352601390915290208190555b5060009182526013602090815260408084208490556001600160a01b039094168352601281528383209183525290812055565b601454600090611ebd90600190612a22565b60008381526015602052604081205460148054939450909284908110611ef357634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060148381548110611f2257634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152601590915260408082208490558582528120556014805480611f6857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000610d9182846129c0565b6000610d918284612982565b600e54600f54600091829182918291829182918291611fc8916001600160a01b0391821691168a61215d565b93509350935093506000846001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561200b57600080fd5b505afa15801561201f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120439190612622565b50505050509150508497508060020b8460020b1315801561206a57508260020b8160020b12155b9799979850909695505050505050565b600e54600f5460009161209a916001600160a01b0391821691168461215d565b6000868152600c60205260409020600101549094506001600160801b038086169116141592506120cb915050575050565b6000828152600c60205260408120546001600160a01b0316906120ee83836114a4565b6000858152600c6020526040902060010154600b54919250612129916001600160801b03600160801b909204821691610b4691908516611f90565b600b556000938452600c60205260409093206001600160801b03938416600160801b02939092169290921760019091015550565b6000806000806000806000886001600160a01b03166399fbab88896040518263ffffffff1660e01b815260040161219691815260200190565b6101806040518083038186803b1580156121af57600080fd5b505afa1580156121c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121e791906126e0565b5050604051630b4c774160e11b8152949f50929d50909b509499509297509095506001600160a01b038f169450631698ee82935061222f9250879150869086906004016127ef565b60206040518083038186803b15801561224757600080fd5b505afa15801561225b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061227f9190612303565b965050505093509350935093565b805161229881612ac6565b919050565b8051801515811461229857600080fd5b8051600281900b811461229857600080fd5b805161229881612adb565b805161ffff8116811461229857600080fd5b805161229881612af0565b6000602082840312156122f8578081fd5b8135610d9181612ac6565b600060208284031215612314578081fd5b8151610d9181612ac6565b60008060008060008060c08789031215612337578182fd5b863561234281612ac6565b9550602087013561235281612ac6565b9450604087013561236281612ac6565b9350606087013561237281612af0565b9250608087013561238281612ac6565b915060a087013561239281612ac6565b809150509295509295509295565b6000806000806000608086880312156123b7578081fd5b85356123c281612ac6565b945060208601356123d281612ac6565b935060408601359250606086013567ffffffffffffffff808211156123f5578283fd5b818801915088601f830112612408578283fd5b813581811115612416578384fd5b896020828501011115612427578384fd5b9699959850939650602001949392505050565b6000806040838503121561244c578182fd5b823561245781612ac6565b915060208381013567ffffffffffffffff80821115612474578384fd5b818601915086601f830112612487578384fd5b81358181111561249957612499612ab0565b8060051b91506124aa848301612926565b8181528481019084860184860187018b10156124c4578788fd5b8795505b838610156124f257803594506124dd85612ac6565b848352600195909501949186019186016124c8565b508096505050505050509250929050565b60008060408385031215612515578182fd5b823561252081612ac6565b915060208381013567ffffffffffffffff8082111561253d578384fd5b818601915086601f830112612550578384fd5b81358181111561256257612562612ab0565b612574601f8201601f19168501612926565b91508082528784828501011115612589578485fd5b8084840185840137810190920192909252919491935090915050565b600080604083850312156125b7578182fd5b82356125c281612ac6565b946020939093013593505050565b6000602082840312156125e1578081fd5b610d918261229d565b600080604083850312156125fc578182fd5b823561260781612adb565b9150602083013561261781612ac6565b809150509250929050565b600080600080600080600060e0888a03121561263c578485fd5b875161264781612ac6565b9650612655602089016122ad565b9550612663604089016122ca565b9450612671606089016122ca565b935061267f608089016122ca565b925060a088015160ff81168114612694578182fd5b91506126a260c0890161229d565b905092959891949750929550565b6000602082840312156126c1578081fd5b5035919050565b6000602082840312156126d9578081fd5b5051919050565b6000806000806000806000806000806000806101808d8f031215612702578586fd5b8c516bffffffffffffffffffffffff8116811461271d578687fd5b9b5061272b60208e0161228d565b9a5061273960408e0161228d565b995061274760608e0161228d565b985061275560808e016122dc565b975061276360a08e016122ad565b965061277160c08e016122ad565b955061277f60e08e016122bf565b94506101008d015193506101208d0151925061279e6101408e016122bf565b91506127ad6101608e016122bf565b90509295989b509295989b509295989b565b600082516127d1818460208701612a39565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b03938416815291909216602082015262ffffff909116604082015260600190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b602081526000825180602084015261285a816040850160208701612a39565b601f01601f19169190910160400192915050565b60208082526012908201527137b7363c903a37b5b2b734b21037bbb732b960711b604082015260600190565b6020808252600c908201526b6e6f742074696d656c6f636b60a01b604082015260600190565b6020808252601590820152746e6f7420696e20656d657267656e6379206d6f646560581b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561294f5761294f612ab0565b604052919050565b60006001600160801b0382811684821680830382111561297957612979612a84565b01949350505050565b6000821982111561299557612995612a84565b500190565b60006001600160801b03838116806129b4576129b4612a9a565b92169190910492915050565b6000826129cf576129cf612a9a565b500490565b60006001600160801b03828116848216811515828404821116156129fa576129fa612a84565b02949350505050565b6000816000190483118215151615612a1d57612a1d612a84565b500290565b600082821015612a3457612a34612a84565b500390565b60005b83811015612a54578181015183820152602001612a3c565b83811115612a63576000848401525b50505050565b6000600019821415612a7d57612a7d612a84565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b9857600080fd5b6001600160801b0381168114610b9857600080fd5b62ffffff81168114610b9857600080fdfea264697066735822122056539627cadea3d54fb855fbcd07fdb67f03dc7d70f5885914c19eaf958ed34364736f6c63430008040033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 PUSH1 0x4 SSTORE PUSH1 0x0 PUSH1 0x5 SSTORE PUSH3 0x93A80 PUSH1 0x6 SSTORE PUSH10 0x10F0CF064DD59200000 PUSH1 0x9 SSTORE CALLVALUE DUP1 ISZERO PUSH2 0x2F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x1 DUP1 SSTORE PUSH2 0x2B37 DUP1 PUSH2 0x43 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1F7 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8A16A30B GT PUSH2 0x120 JUMPI DUP1 PUSH4 0xC4CFBF06 GT PUSH2 0xB8 JUMPI DUP1 PUSH4 0xD1AF0C7D GT PUSH2 0x7C JUMPI DUP1 PUSH4 0xD1AF0C7D EQ PUSH2 0x521 JUMPI DUP1 PUSH4 0xD7E79F02 EQ PUSH2 0x534 JUMPI DUP1 PUSH4 0xDF136D65 EQ PUSH2 0x547 JUMPI DUP1 PUSH4 0xEBE2B12B EQ PUSH2 0x550 JUMPI DUP1 PUSH4 0xF301AF42 EQ PUSH2 0x559 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xC4CFBF06 EQ PUSH2 0x4B1 JUMPI DUP1 PUSH4 0xC5B1C7D0 EQ PUSH2 0x4DC JUMPI DUP1 PUSH4 0xC8F1C3AF EQ PUSH2 0x4E4 JUMPI DUP1 PUSH4 0xC8F33C91 EQ PUSH2 0x510 JUMPI DUP1 PUSH4 0xCD3DAF9D EQ PUSH2 0x519 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8A16A30B EQ PUSH2 0x3A9 JUMPI DUP1 PUSH4 0x99BCC052 EQ PUSH2 0x3BC JUMPI DUP1 PUSH4 0x9BE54945 EQ PUSH2 0x3CF JUMPI DUP1 PUSH4 0xB02C43D0 EQ PUSH2 0x3DC JUMPI DUP1 PUSH4 0xB44A2722 EQ PUSH2 0x452 JUMPI DUP1 PUSH4 0xB66503CF EQ PUSH2 0x465 JUMPI DUP1 PUSH4 0xB93C9A1D EQ PUSH2 0x478 JUMPI DUP1 PUSH4 0xC45A0155 EQ PUSH2 0x48B JUMPI DUP1 PUSH4 0xC4BF0220 EQ PUSH2 0x49E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x386A9525 GT PUSH2 0x193 JUMPI DUP1 PUSH4 0x386A9525 EQ PUSH2 0x30D JUMPI DUP1 PUSH4 0x4D6ED8C4 EQ PUSH2 0x316 JUMPI DUP1 PUSH4 0x69DB8B27 EQ PUSH2 0x329 JUMPI DUP1 PUSH4 0x6C6F858B EQ PUSH2 0x332 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x352 JUMPI DUP1 PUSH4 0x7B0A47EE EQ PUSH2 0x372 JUMPI DUP1 PUSH4 0x7B103999 EQ PUSH2 0x37B JUMPI DUP1 PUSH4 0x7F8661A1 EQ PUSH2 0x38E JUMPI DUP1 PUSH4 0x80FAA57D EQ PUSH2 0x3A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3F3E30E EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x242 JUMPI DUP1 PUSH4 0x16F0115B EQ PUSH2 0x26E JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x28E JUMPI DUP1 PUSH4 0x1C1F78EB EQ PUSH2 0x297 JUMPI DUP1 PUSH4 0x1C4B774B EQ PUSH2 0x29F JUMPI DUP1 PUSH4 0x2E1A7D4D EQ PUSH2 0x2B4 JUMPI DUP1 PUSH4 0x31279D3D EQ PUSH2 0x2C7 JUMPI DUP1 PUSH4 0x36703461 EQ PUSH2 0x2DA JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x22F PUSH2 0x20A CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x255 PUSH2 0x250 CALLDATASIZE PUSH1 0x4 PUSH2 0x23A0 JUMP JUMPDEST PUSH2 0x579 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x239 JUMP JUMPDEST PUSH1 0x10 SLOAD PUSH2 0x281 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x239 SWAP2 SWAP1 PUSH2 0x27DB JUMP JUMPDEST PUSH2 0x22F PUSH1 0xB SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x5C3 JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x2AD CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH2 0x5E1 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2B2 PUSH2 0x2C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH2 0x761 JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x2D5 CALLDATASIZE PUSH1 0x4 PUSH2 0x243A JUMP JUMPDEST PUSH2 0xA75 JUMP JUMPDEST PUSH2 0x2FD PUSH2 0x2E8 CALLDATASIZE PUSH1 0x4 PUSH2 0x22E7 JUMP JUMPDEST PUSH1 0x16 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x239 JUMP JUMPDEST PUSH2 0x22F PUSH1 0x6 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x324 CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH2 0xB09 JUMP JUMPDEST PUSH2 0x22F PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x340 CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH1 0xA PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x360 CALLDATASIZE PUSH1 0x4 PUSH2 0x22E7 JUMP JUMPDEST PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22F PUSH1 0x5 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x281 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x39C CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH2 0xB86 JUMP JUMPDEST PUSH2 0x22F PUSH2 0xB9B JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x3B7 CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH2 0xBB2 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x3CA CALLDATASIZE PUSH1 0x4 PUSH2 0x22E7 JUMP JUMPDEST PUSH2 0xD5E JUMP JUMPDEST PUSH1 0x17 SLOAD PUSH2 0x2FD SWAP1 PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x423 PUSH2 0x3EA CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP3 AND SWAP2 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND DUP4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP5 AND DUP5 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP3 DUP4 AND PUSH1 0x20 DUP6 ADD MSTORE SWAP2 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x239 JUMP JUMPDEST PUSH1 0xF SLOAD PUSH2 0x281 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x473 CALLDATASIZE PUSH1 0x4 PUSH2 0x25A5 JUMP JUMPDEST PUSH2 0xD98 JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x486 CALLDATASIZE PUSH1 0x4 PUSH2 0x231F JUMP JUMPDEST PUSH2 0x1010 JUMP JUMPDEST PUSH1 0xE SLOAD PUSH2 0x281 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x4AC CALLDATASIZE PUSH1 0x4 PUSH2 0x2503 JUMP JUMPDEST PUSH2 0x12D3 JUMP JUMPDEST PUSH2 0x4C4 PUSH2 0x4BF CALLDATASIZE PUSH1 0x4 PUSH2 0x25EA JUMP JUMPDEST PUSH2 0x14A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x239 JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x1635 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x4F2 CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x22F PUSH1 0x7 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x18EB JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH2 0x281 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x542 CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH2 0x1937 JUMP JUMPDEST PUSH2 0x22F PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22F PUSH1 0x4 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x567 CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH1 0xD PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x17 SLOAD PUSH1 0x0 SWAP1 PUSH1 0xFF AND PUSH2 0x5A7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x28C0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5B1 DUP6 DUP6 PUSH2 0x1998 JUMP JUMPDEST POP PUSH4 0xA85BD01 PUSH1 0xE1 SHL SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5DC PUSH1 0x6 SLOAD PUSH1 0x5 SLOAD PUSH2 0x1DA8 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD EQ ISZERO PUSH2 0x604 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x28EF JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SSTORE DUP1 PUSH2 0x613 DUP2 PUSH2 0x1DB4 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x64B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x286E JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0xD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP1 ISZERO PUSH2 0x757 JUMPI PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0xD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP4 SWAP1 SSTORE PUSH1 0x3 SLOAD PUSH1 0xC SWAP1 SWAP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 SLOAD SWAP2 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP5 SWAP1 MSTORE SWAP2 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x6CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x6DE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x702 SWAP2 SWAP1 PUSH2 0x25D0 JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP8 DUP2 MSTORE SWAP2 DUP3 ADD DUP5 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 PUSH32 0xD6F2C8500DF5B44F11E9E48B91FF9F1B9D81BC496D55570C2B1B75BF65243F51 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMPDEST POP POP PUSH1 0x1 DUP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD EQ ISZERO PUSH2 0x784 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x28EF JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SSTORE DUP1 PUSH2 0x793 DUP2 PUSH2 0x1DB4 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x7CB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x286E JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x826 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x43616E6E6F74207769746864726177203 PUSH1 0x7C SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0xB SLOAD PUSH2 0x854 SWAP2 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x1E03 JUMP JUMPDEST PUSH1 0xB SSTORE PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND DUP2 SSTORE PUSH1 0x1 ADD SSTORE PUSH2 0x881 CALLER DUP5 PUSH2 0x1E0F JUMP JUMPDEST PUSH2 0x88A DUP4 PUSH2 0x1EAB JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x8AA SWAP1 DUP5 SWAP1 PUSH2 0x2A22 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0xF SLOAD PUSH1 0x40 MLOAD PUSH4 0x21421707 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x42842E0E SWAP1 PUSH2 0x8E3 SWAP1 ADDRESS SWAP1 CALLER SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x2817 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x8FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x911 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD ISZERO SWAP2 POP POP DUP1 ISZERO PUSH2 0x942 JUMPI POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST ISZERO PUSH2 0xA37 JUMPI CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x16 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE PUSH1 0x2 SLOAD DUP3 MLOAD PUSH4 0x81CA29A1 PUSH1 0xE0 SHL DUP2 MSTORE SWAP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP3 PUSH4 0x81CA29A1 SWAP3 PUSH1 0x4 DUP1 DUP4 ADD SWAP4 SWAP2 SWAP3 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x9A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x9B5 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9D9 SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE32E4E88 CALLER PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA04 SWAP2 SWAP1 PUSH2 0x27DB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xA1E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA32 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x40 MLOAD DUP4 DUP2 MSTORE CALLER SWAP1 PUSH32 0x7084F5476618D8E60B11EF0D7D3F06914655ADB8793E28FF7F018D4C76D505D5 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH1 0x1 DUP1 SSTORE POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD EQ ISZERO PUSH2 0xA98 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x28EF JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SSTORE PUSH1 0x0 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT ISZERO PUSH2 0xB00 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x12 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP5 DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH2 0xAED DUP2 PUSH2 0x5E1 JUMP JUMPDEST POP DUP1 PUSH2 0xAF8 DUP2 PUSH2 0x2A69 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xAA0 JUMP JUMPDEST POP POP PUSH1 0x1 DUP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD PUSH1 0xA SWAP1 SWAP3 MSTORE DUP3 KECCAK256 SLOAD PUSH2 0xB80 SWAP2 SWAP1 PUSH2 0xB7A SWAP1 PUSH8 0xDE0B6B3A7640000 SWAP1 PUSH2 0xB74 SWAP1 PUSH2 0xB4C SWAP1 PUSH2 0xB46 PUSH2 0x18EB JUMP JUMPDEST SWAP1 PUSH2 0x1E03 JUMP JUMPDEST PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 PUSH2 0x1DA8 JUMP JUMPDEST SWAP1 PUSH2 0x1F84 JUMP JUMPDEST SWAP1 PUSH2 0x1F90 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xB8F DUP2 PUSH2 0x761 JUMP JUMPDEST PUSH2 0xB98 DUP2 PUSH2 0x5E1 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 SLOAD TIMESTAMP LT PUSH2 0xBAD JUMPI POP PUSH1 0x4 SLOAD SWAP1 JUMP JUMPDEST POP TIMESTAMP SWAP1 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD EQ ISZERO PUSH2 0xBD5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x28EF JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SSTORE PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xC12 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x286E JUMP JUMPDEST PUSH1 0x17 SLOAD PUSH1 0xFF AND PUSH2 0xC34 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x28C0 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0xC92 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x1CDD185AD948191BD95CC81B9BDD08195E1A5CDD PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND DUP2 SSTORE PUSH1 0x1 ADD SWAP2 SWAP1 SWAP2 SSTORE MLOAD CALLER SWAP1 PUSH32 0x7084F5476618D8E60B11EF0D7D3F06914655ADB8793E28FF7F018D4C76D505D5 SWAP1 PUSH2 0xCE8 SWAP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0xF SLOAD PUSH1 0x40 MLOAD PUSH4 0x21421707 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x42842E0E SWAP1 PUSH2 0xD24 SWAP1 ADDRESS SWAP1 CALLER SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x2817 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xD3E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xD52 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x1 DUP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 SLOAD TIMESTAMP LT PUSH2 0xD71 JUMPI POP PUSH1 0x0 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 TIMESTAMP PUSH1 0x4 SLOAD PUSH2 0xD81 SWAP2 SWAP1 PUSH2 0x2A22 JUMP JUMPDEST SWAP1 POP PUSH1 0x5 SLOAD DUP2 PUSH2 0xD91 SWAP2 SWAP1 PUSH2 0x2A03 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDA3 DUP2 PUSH2 0x1DB4 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x81CA29A1 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xDF1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xE05 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xE29 SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE7B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x3737BA1033B0BAB3B2903B37BA32B9 PUSH1 0x89 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST PUSH1 0x4 SLOAD TIMESTAMP LT PUSH2 0xE9A JUMPI PUSH1 0x6 SLOAD PUSH2 0xE92 SWAP1 DUP4 SWAP1 PUSH2 0x1F84 JUMP JUMPDEST PUSH1 0x5 SSTORE PUSH2 0xEDD JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x0 SWAP1 PUSH2 0xEAA SWAP1 TIMESTAMP PUSH2 0x1E03 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xEC3 PUSH1 0x5 SLOAD DUP4 PUSH2 0x1DA8 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x6 SLOAD SWAP1 SWAP2 POP PUSH2 0xED7 SWAP1 PUSH2 0xB74 DUP7 DUP5 PUSH2 0x1F90 JUMP JUMPDEST PUSH1 0x5 SSTORE POP POP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH2 0xF0E SWAP1 ADDRESS SWAP1 PUSH1 0x4 ADD PUSH2 0x27DB JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xF26 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xF3A JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xF5E SWAP2 SWAP1 PUSH2 0x26C8 JUMP JUMPDEST SWAP1 POP PUSH2 0xF75 PUSH1 0x6 SLOAD DUP3 PUSH2 0x1F84 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x5 SLOAD GT ISZERO PUSH2 0xFC1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH24 0xA0E4DEECD2C8CAC840E4CAEEC2E4C840E8DEDE40D0D2CED PUSH1 0x43 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST TIMESTAMP PUSH1 0x7 DUP2 SWAP1 SSTORE PUSH1 0x6 SLOAD PUSH2 0xFD4 SWAP2 SWAP1 PUSH2 0x1F90 JUMP JUMPDEST PUSH1 0x4 SSTORE PUSH1 0x40 MLOAD DUP4 DUP2 MSTORE PUSH32 0xDE88A922E0D3B88B24E9623EFEB464919C6BF9F66857A65E2BFCF2CE87A9433D SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO DUP1 DUP1 ISZERO PUSH2 0x1030 JUMPI POP PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0xFF SWAP1 SWAP2 AND LT JUMPDEST DUP1 PUSH2 0x104A JUMPI POP ADDRESS EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x104A JUMPI POP PUSH1 0x0 SLOAD PUSH1 0xFF AND PUSH1 0x1 EQ JUMPDEST PUSH2 0x10AD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320616C726561 PUSH1 0x44 DUP3 ADD MSTORE PUSH14 0x191E481A5B9A5D1A585B1A5E9959 PUSH1 0x92 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x59E JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE DUP1 ISZERO PUSH2 0x10D0 JUMPI PUSH1 0x0 DUP1 SLOAD PUSH2 0xFF00 NOT AND PUSH2 0x100 OR SWAP1 SSTORE JUMPDEST PUSH1 0xF DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP3 DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x2 DUP1 SLOAD SWAP2 DUP12 AND SWAP2 SWAP1 SWAP3 AND OR SWAP1 SSTORE PUSH1 0x40 DUP1 MLOAD PUSH4 0xC45A0155 PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 MLOAD PUSH4 0xC45A0155 SWAP2 PUSH1 0x4 DUP1 DUP3 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP1 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1134 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1148 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x116C SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST PUSH1 0xE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP2 DUP3 AND DUP2 OR SWAP1 SWAP3 SSTORE PUSH1 0x3 DUP1 SLOAD SWAP4 DUP8 AND SWAP4 SWAP1 SWAP2 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH4 0xB4C7741 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 SWAP2 SWAP1 PUSH4 0x1698EE82 SWAP1 PUSH2 0x11C7 SWAP1 DUP11 SWAP1 DUP11 SWAP1 DUP11 SWAP1 PUSH1 0x4 ADD PUSH2 0x27EF JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x11DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x11F3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1217 SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1264 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH18 0x1C1BDBDB08191BD95CDB89DD08195E1A5CDD PUSH1 0x72 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST PUSH1 0x10 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE DUP1 ISZERO PUSH2 0x12CA JUMPI PUSH1 0x0 DUP1 SLOAD PUSH2 0xFF00 NOT AND SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC340A24 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1321 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1335 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1359 SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xD33219B4 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1391 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x13A5 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x13C9 SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x13F9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x289A JUMP JUMPDEST PUSH1 0x17 SLOAD PUSH1 0xFF AND PUSH2 0x141B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x28C0 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x40 MLOAD PUSH2 0x1436 SWAP2 SWAP1 PUSH2 0x27BF JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP7 GAS CALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1473 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1478 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 DUP2 SWAP1 PUSH2 0x149D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP2 SWAP1 PUSH2 0x283B JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x64 PUSH2 0x14B4 DUP6 PUSH1 0x14 PUSH2 0x29D4 JUMP JUMPDEST PUSH2 0x14BE SWAP2 SWAP1 PUSH2 0x299A JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x5EBAF1DB PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1510 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1524 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1548 SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x70A08231 DUP6 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1573 SWAP2 SWAP1 PUSH2 0x27DB JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x158B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x159F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x15C3 SWAP2 SWAP1 PUSH2 0x26C8 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x64 PUSH1 0x9 SLOAD DUP4 DUP9 PUSH2 0x15D8 SWAP2 SWAP1 PUSH2 0x29D4 JUMP JUMPDEST PUSH2 0x15E3 SWAP1 PUSH1 0x50 PUSH2 0x29D4 JUMP JUMPDEST PUSH2 0x15ED SWAP2 SWAP1 PUSH2 0x299A JUMP JUMPDEST PUSH2 0x15F7 SWAP2 SWAP1 PUSH2 0x299A JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP7 AND PUSH2 0x160D DUP3 DUP6 PUSH2 0x2957 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND LT PUSH2 0x1621 JUMPI DUP6 PUSH2 0x162B JUMP JUMPDEST PUSH2 0x162B DUP2 DUP5 PUSH2 0x2957 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC340A24 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1683 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1697 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x16BB SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xD33219B4 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x16F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1707 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x172B SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x175B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x289A JUMP JUMPDEST PUSH1 0x17 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0x17AA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH25 0x616C726561647920696E20656D657267656E6379206D6F6465 PUSH1 0x38 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST PUSH1 0x17 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0xA9059CBB SWAP1 CALLER SWAP1 DUP4 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH2 0x17F1 SWAP1 ADDRESS SWAP1 PUSH1 0x4 ADD PUSH2 0x27DB JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1809 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x181D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1841 SWAP2 SWAP1 PUSH2 0x26C8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1887 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x189B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x18BF SWAP2 SWAP1 PUSH2 0x25D0 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0x2064D51AA5A8BD67928C7675E267E05C67AD5ADF7C9098D0A602D01F36FDA9C5 SWAP1 PUSH1 0x0 SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xB SLOAD PUSH1 0x0 EQ ISZERO PUSH2 0x18FF JUMPI POP PUSH1 0x8 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x5DC PUSH2 0x192E PUSH1 0xB SLOAD PUSH2 0xB74 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1928 PUSH1 0x5 SLOAD PUSH2 0x1928 PUSH1 0x7 SLOAD PUSH2 0xB46 PUSH2 0xB9B JUMP JUMPDEST SWAP1 PUSH2 0x1DA8 JUMP JUMPDEST PUSH1 0x8 SLOAD SWAP1 PUSH2 0x1F90 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x198F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x6C6971756964697479206973203 PUSH1 0x94 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST PUSH2 0xB98 DUP2 PUSH2 0x1DB4 JUMP JUMPDEST DUP1 PUSH2 0x19A2 DUP2 PUSH2 0x1DB4 JUMP JUMPDEST PUSH1 0xF SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x19FC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6E6F742063616C6C65642066726F6D206E6674206D616E616765720000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1A0A DUP6 PUSH2 0x1F9C JUMP JUMPDEST PUSH1 0x10 SLOAD SWAP3 SWAP6 POP SWAP1 SWAP4 POP SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND SWAP2 AND EQ PUSH2 0x1A6F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x746F6B656E20706F6F6C206973206E6F742074686520726967687420706F6F6C PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST DUP2 PUSH2 0x1AB4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH21 0x6C69717569647479206E6F7420696E2072616E6765 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND GT PUSH2 0x1B08 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH24 0x63616E6E6F74207374616B652030206C6971756964697479 PUSH1 0x40 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B14 DUP3 DUP9 PUSH2 0x14A4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP12 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP8 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 DUP3 MSTORE DUP3 DUP8 AND DUP6 DUP8 ADD SWAP1 DUP2 MSTORE PUSH1 0x0 DUP15 DUP2 MSTORE PUSH1 0xC SWAP1 SWAP3 MSTORE SWAP6 SWAP1 KECCAK256 SWAP4 MLOAD DUP5 SLOAD SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR DUP4 SSTORE SWAP1 MLOAD SWAP3 MLOAD DUP2 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP3 AND SWAP2 SWAP1 SWAP2 OR PUSH1 0x1 SWAP1 SWAP2 ADD SSTORE SWAP1 POP PUSH2 0x1BCE DUP7 PUSH1 0x14 DUP1 SLOAD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x15 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP3 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD DUP4 SSTORE SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0xCE6D7B5282BD9A3661AE061FEED1DBDA4E52AB073B1F9285BE6E155D9C38D4EC ADD SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP1 SLOAD PUSH1 0x12 DUP5 MSTORE DUP3 DUP7 KECCAK256 DUP2 DUP8 MSTORE DUP5 MSTORE DUP3 DUP7 KECCAK256 DUP14 SWAP1 SSTORE DUP13 DUP7 MSTORE PUSH1 0x13 DUP5 MSTORE SWAP2 DUP6 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE SWAP4 DUP4 MSTORE MSTORE DUP2 SLOAD PUSH1 0x1 SWAP3 SWAP2 SWAP1 PUSH2 0x1C21 SWAP1 DUP5 SWAP1 PUSH2 0x2982 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0xB SLOAD PUSH2 0x1C3C SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP4 AND PUSH2 0x1F90 JUMP JUMPDEST PUSH1 0xB SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x1D53 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x16 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH1 0x2 SLOAD DUP3 MLOAD PUSH4 0x81CA29A1 PUSH1 0xE0 SHL DUP2 MSTORE SWAP3 MLOAD SWAP4 AND SWAP3 PUSH4 0x81CA29A1 SWAP3 PUSH1 0x4 DUP1 DUP3 ADD SWAP4 SWAP3 SWAP2 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1CBD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1CD1 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1CF5 SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x97A302F7 DUP9 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D20 SWAP2 SWAP1 PUSH2 0x27DB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1D3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1D4E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP8 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP5 DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE DUP4 AND DUP2 DUP4 ADD MSTORE SWAP1 MLOAD CALLER SWAP2 PUSH32 0xB1A5F058B6335D833F8FD0EAA6562AF341D1AD22EEBAFF5776988D1C6E730879 SWAP2 SWAP1 DUP2 SWAP1 SUB PUSH1 0x60 ADD SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD91 DUP3 DUP5 PUSH2 0x2A03 JUMP JUMPDEST PUSH2 0x1DBC PUSH2 0x18EB JUMP JUMPDEST PUSH1 0x8 SSTORE PUSH2 0x1DC7 PUSH2 0xB9B JUMP JUMPDEST PUSH1 0x7 SSTORE DUP1 ISZERO PUSH2 0xB98 JUMPI PUSH2 0x1DD9 DUP2 PUSH2 0xB09 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE PUSH1 0x8 SLOAD PUSH1 0xA SWAP1 SWAP2 MSTORE SWAP2 SWAP1 KECCAK256 SSTORE PUSH2 0xB98 DUP2 PUSH2 0x207A JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD91 DUP3 DUP5 PUSH2 0x2A22 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD DUP5 DUP5 MSTORE PUSH1 0x13 SWAP1 SWAP3 MSTORE SWAP1 SWAP2 KECCAK256 SLOAD DUP1 DUP3 EQ PUSH2 0x1E78 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x12 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP6 DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 SLOAD DUP5 DUP5 MSTORE DUP2 DUP5 KECCAK256 DUP2 SWAP1 SSTORE DUP4 MSTORE PUSH1 0x13 SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP2 SWAP1 SSTORE JUMPDEST POP PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x13 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP5 SWAP1 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP5 AND DUP4 MSTORE PUSH1 0x12 DUP2 MSTORE DUP4 DUP4 KECCAK256 SWAP2 DUP4 MSTORE MSTORE SWAP1 DUP2 KECCAK256 SSTORE JUMP JUMPDEST PUSH1 0x14 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x1EBD SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x2A22 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x15 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x14 DUP1 SLOAD SWAP4 SWAP5 POP SWAP1 SWAP3 DUP5 SWAP1 DUP2 LT PUSH2 0x1EF3 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP DUP1 PUSH1 0x14 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x1F22 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD SWAP3 SWAP1 SWAP3 SSTORE DUP3 DUP2 MSTORE PUSH1 0x15 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP5 SWAP1 SSTORE DUP6 DUP3 MSTORE DUP2 KECCAK256 SSTORE PUSH1 0x14 DUP1 SLOAD DUP1 PUSH2 0x1F68 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD91 DUP3 DUP5 PUSH2 0x29C0 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD91 DUP3 DUP5 PUSH2 0x2982 JUMP JUMPDEST PUSH1 0xE SLOAD PUSH1 0xF SLOAD PUSH1 0x0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH2 0x1FC8 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND SWAP2 AND DUP11 PUSH2 0x215D JUMP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 POP SWAP4 POP PUSH1 0x0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3850C7BD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0xE0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x200B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x201F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2043 SWAP2 SWAP1 PUSH2 0x2622 JUMP JUMPDEST POP POP POP POP POP SWAP2 POP POP DUP5 SWAP8 POP DUP1 PUSH1 0x2 SIGNEXTEND DUP5 PUSH1 0x2 SIGNEXTEND SGT ISZERO DUP1 ISZERO PUSH2 0x206A JUMPI POP DUP3 PUSH1 0x2 SIGNEXTEND DUP2 PUSH1 0x2 SIGNEXTEND SLT ISZERO JUMPDEST SWAP8 SWAP10 SWAP8 SWAP9 POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0xE SLOAD PUSH1 0xF SLOAD PUSH1 0x0 SWAP2 PUSH2 0x209A SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND SWAP2 AND DUP5 PUSH2 0x215D JUMP JUMPDEST PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP7 AND SWAP2 AND EQ ISZERO SWAP3 POP PUSH2 0x20CB SWAP2 POP POP JUMPI POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH2 0x20EE DUP4 DUP4 PUSH2 0x14A4 JUMP JUMPDEST PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0xB SLOAD SWAP2 SWAP3 POP PUSH2 0x2129 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB PUSH1 0x1 PUSH1 0x80 SHL SWAP1 SWAP3 DIV DUP3 AND SWAP2 PUSH2 0xB46 SWAP2 SWAP1 DUP6 AND PUSH2 0x1F90 JUMP JUMPDEST PUSH1 0xB SSTORE PUSH1 0x0 SWAP4 DUP5 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 SWAP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP4 DUP5 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP4 SWAP1 SWAP3 AND SWAP3 SWAP1 SWAP3 OR PUSH1 0x1 SWAP1 SWAP2 ADD SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x99FBAB88 DUP10 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2196 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH2 0x180 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x21AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x21C3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x21E7 SWAP2 SWAP1 PUSH2 0x26E0 JUMP JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH4 0xB4C7741 PUSH1 0xE1 SHL DUP2 MSTORE SWAP5 SWAP16 POP SWAP3 SWAP14 POP SWAP1 SWAP12 POP SWAP5 SWAP10 POP SWAP3 SWAP8 POP SWAP1 SWAP6 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP16 AND SWAP5 POP PUSH4 0x1698EE82 SWAP4 POP PUSH2 0x222F SWAP3 POP DUP8 SWAP2 POP DUP7 SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x27EF JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2247 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x225B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x227F SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST SWAP7 POP POP POP POP SWAP4 POP SWAP4 POP SWAP4 POP SWAP4 JUMP JUMPDEST DUP1 MLOAD PUSH2 0x2298 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x2298 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH1 0x2 DUP2 SWAP1 SIGNEXTEND DUP2 EQ PUSH2 0x2298 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x2298 DUP2 PUSH2 0x2ADB JUMP JUMPDEST DUP1 MLOAD PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0x2298 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x2298 DUP2 PUSH2 0x2AF0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22F8 JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xD91 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2314 JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xD91 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x2337 JUMPI DUP2 DUP3 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH2 0x2342 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD PUSH2 0x2352 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH2 0x2362 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP4 POP PUSH1 0x60 DUP8 ADD CALLDATALOAD PUSH2 0x2372 DUP2 PUSH2 0x2AF0 JUMP JUMPDEST SWAP3 POP PUSH1 0x80 DUP8 ADD CALLDATALOAD PUSH2 0x2382 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP2 POP PUSH1 0xA0 DUP8 ADD CALLDATALOAD PUSH2 0x2392 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x23B7 JUMPI DUP1 DUP2 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x23C2 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x23D2 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x23F5 JUMPI DUP3 DUP4 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2408 JUMPI DUP3 DUP4 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x2416 JUMPI DUP4 DUP5 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x2427 JUMPI DUP4 DUP5 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x244C JUMPI DUP2 DUP3 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2457 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 DUP2 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x2474 JUMPI DUP4 DUP5 REVERT JUMPDEST DUP2 DUP7 ADD SWAP2 POP DUP7 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2487 JUMPI DUP4 DUP5 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x2499 JUMPI PUSH2 0x2499 PUSH2 0x2AB0 JUMP JUMPDEST DUP1 PUSH1 0x5 SHL SWAP2 POP PUSH2 0x24AA DUP5 DUP4 ADD PUSH2 0x2926 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP5 DUP2 ADD SWAP1 DUP5 DUP7 ADD DUP5 DUP7 ADD DUP8 ADD DUP12 LT ISZERO PUSH2 0x24C4 JUMPI DUP8 DUP9 REVERT JUMPDEST DUP8 SWAP6 POP JUMPDEST DUP4 DUP7 LT ISZERO PUSH2 0x24F2 JUMPI DUP1 CALLDATALOAD SWAP5 POP PUSH2 0x24DD DUP6 PUSH2 0x2AC6 JUMP JUMPDEST DUP5 DUP4 MSTORE PUSH1 0x1 SWAP6 SWAP1 SWAP6 ADD SWAP5 SWAP2 DUP7 ADD SWAP2 DUP7 ADD PUSH2 0x24C8 JUMP JUMPDEST POP DUP1 SWAP7 POP POP POP POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2515 JUMPI DUP2 DUP3 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2520 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 DUP2 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x253D JUMPI DUP4 DUP5 REVERT JUMPDEST DUP2 DUP7 ADD SWAP2 POP DUP7 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2550 JUMPI DUP4 DUP5 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x2562 JUMPI PUSH2 0x2562 PUSH2 0x2AB0 JUMP JUMPDEST PUSH2 0x2574 PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP6 ADD PUSH2 0x2926 JUMP JUMPDEST SWAP2 POP DUP1 DUP3 MSTORE DUP8 DUP5 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x2589 JUMPI DUP5 DUP6 REVERT JUMPDEST DUP1 DUP5 DUP5 ADD DUP6 DUP5 ADD CALLDATACOPY DUP2 ADD SWAP1 SWAP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP2 SWAP5 SWAP2 SWAP4 POP SWAP1 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x25B7 JUMPI DUP2 DUP3 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x25C2 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x25E1 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xD91 DUP3 PUSH2 0x229D JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x25FC JUMPI DUP2 DUP3 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2607 DUP2 PUSH2 0x2ADB JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2617 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x263C JUMPI DUP5 DUP6 REVERT JUMPDEST DUP8 MLOAD PUSH2 0x2647 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP7 POP PUSH2 0x2655 PUSH1 0x20 DUP10 ADD PUSH2 0x22AD JUMP JUMPDEST SWAP6 POP PUSH2 0x2663 PUSH1 0x40 DUP10 ADD PUSH2 0x22CA JUMP JUMPDEST SWAP5 POP PUSH2 0x2671 PUSH1 0x60 DUP10 ADD PUSH2 0x22CA JUMP JUMPDEST SWAP4 POP PUSH2 0x267F PUSH1 0x80 DUP10 ADD PUSH2 0x22CA JUMP JUMPDEST SWAP3 POP PUSH1 0xA0 DUP9 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x2694 JUMPI DUP2 DUP3 REVERT JUMPDEST SWAP2 POP PUSH2 0x26A2 PUSH1 0xC0 DUP10 ADD PUSH2 0x229D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x26C1 JUMPI DUP1 DUP2 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x26D9 JUMPI DUP1 DUP2 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH2 0x180 DUP14 DUP16 SUB SLT ISZERO PUSH2 0x2702 JUMPI DUP6 DUP7 REVERT JUMPDEST DUP13 MLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x271D JUMPI DUP7 DUP8 REVERT JUMPDEST SWAP12 POP PUSH2 0x272B PUSH1 0x20 DUP15 ADD PUSH2 0x228D JUMP JUMPDEST SWAP11 POP PUSH2 0x2739 PUSH1 0x40 DUP15 ADD PUSH2 0x228D JUMP JUMPDEST SWAP10 POP PUSH2 0x2747 PUSH1 0x60 DUP15 ADD PUSH2 0x228D JUMP JUMPDEST SWAP9 POP PUSH2 0x2755 PUSH1 0x80 DUP15 ADD PUSH2 0x22DC JUMP JUMPDEST SWAP8 POP PUSH2 0x2763 PUSH1 0xA0 DUP15 ADD PUSH2 0x22AD JUMP JUMPDEST SWAP7 POP PUSH2 0x2771 PUSH1 0xC0 DUP15 ADD PUSH2 0x22AD JUMP JUMPDEST SWAP6 POP PUSH2 0x277F PUSH1 0xE0 DUP15 ADD PUSH2 0x22BF JUMP JUMPDEST SWAP5 POP PUSH2 0x100 DUP14 ADD MLOAD SWAP4 POP PUSH2 0x120 DUP14 ADD MLOAD SWAP3 POP PUSH2 0x279E PUSH2 0x140 DUP15 ADD PUSH2 0x22BF JUMP JUMPDEST SWAP2 POP PUSH2 0x27AD PUSH2 0x160 DUP15 ADD PUSH2 0x22BF JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP12 POP SWAP3 SWAP6 SWAP9 SWAP12 POP SWAP3 SWAP6 SWAP9 SWAP12 JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x27D1 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x2A39 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH3 0xFFFFFF SWAP1 SWAP2 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x285A DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x2A39 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x12 SWAP1 DUP3 ADD MSTORE PUSH18 0x37B7363C903A37B5B2B734B21037BBB732B9 PUSH1 0x71 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0xC SWAP1 DUP3 ADD MSTORE PUSH12 0x6E6F742074696D656C6F636B PUSH1 0xA0 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x15 SWAP1 DUP3 ADD MSTORE PUSH21 0x6E6F7420696E20656D657267656E6379206D6F6465 PUSH1 0x58 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x1F SWAP1 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x294F JUMPI PUSH2 0x294F PUSH2 0x2AB0 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 DUP2 AND DUP5 DUP3 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x2979 JUMPI PUSH2 0x2979 PUSH2 0x2A84 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x2995 JUMPI PUSH2 0x2995 PUSH2 0x2A84 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP4 DUP2 AND DUP1 PUSH2 0x29B4 JUMPI PUSH2 0x29B4 PUSH2 0x2A9A JUMP JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x29CF JUMPI PUSH2 0x29CF PUSH2 0x2A9A JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 DUP2 AND DUP5 DUP3 AND DUP2 ISZERO ISZERO DUP3 DUP5 DIV DUP3 GT AND ISZERO PUSH2 0x29FA JUMPI PUSH2 0x29FA PUSH2 0x2A84 JUMP JUMPDEST MUL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x2A1D JUMPI PUSH2 0x2A1D PUSH2 0x2A84 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2A34 JUMPI PUSH2 0x2A34 PUSH2 0x2A84 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2A54 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x2A3C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x2A63 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x2A7D JUMPI PUSH2 0x2A7D PUSH2 0x2A84 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xB98 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xB98 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0xFFFFFF DUP2 AND DUP2 EQ PUSH2 0xB98 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 JUMP MSTORE8 SWAP7 0x27 0xCA 0xDE LOG3 0xD5 0x4F 0xB8 SSTORE 0xFB 0xCD SMOD REVERT 0xB6 PUSH32 0x3DC7D70F5885914C19EAF958ED34364736F6C63430008040033000000000000 ","sourceMap":"327:1817:27:-:0;;;1227:1:29;1197:31;;1262:1;1234:29;;1302:6;1269:39;;1427:7;1390:44;;327:1817:27;;;;;;;;;-1:-1:-1;1701:1:6;1806:22;;327:1817:27;;;;;;"},"deployedBytecode":{"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:22546:37","statements":[{"nodeType":"YulBlock","src":"6:3:37","statements":[]},{"body":{"nodeType":"YulBlock","src":"74:78:37","statements":[{"nodeType":"YulAssignment","src":"84:22:37","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"99:6:37"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"93:5:37"},"nodeType":"YulFunctionCall","src":"93:13:37"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"84:5:37"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"140:5:37"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"115:24:37"},"nodeType":"YulFunctionCall","src":"115:31:37"},"nodeType":"YulExpressionStatement","src":"115:31:37"}]},"name":"abi_decode_address_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"53:6:37","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"64:5:37","type":""}],"src":"14:138:37"},{"body":{"nodeType":"YulBlock","src":"214:107:37","statements":[{"nodeType":"YulAssignment","src":"224:22:37","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"239:6:37"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"233:5:37"},"nodeType":"YulFunctionCall","src":"233:13:37"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"224:5:37"}]},{"body":{"nodeType":"YulBlock","src":"299:16:37","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"308:1:37","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"311:1:37","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"301:6:37"},"nodeType":"YulFunctionCall","src":"301:12:37"},"nodeType":"YulExpressionStatement","src":"301:12:37"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"268:5:37"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"289:5:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"282:6:37"},"nodeType":"YulFunctionCall","src":"282:13:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"275:6:37"},"nodeType":"YulFunctionCall","src":"275:21:37"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"265:2:37"},"nodeType":"YulFunctionCall","src":"265:32:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"258:6:37"},"nodeType":"YulFunctionCall","src":"258:40:37"},"nodeType":"YulIf","src":"255:2:37"}]},"name":"abi_decode_bool_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"193:6:37","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"204:5:37","type":""}],"src":"157:164:37"},{"body":{"nodeType":"YulBlock","src":"384:106:37","statements":[{"nodeType":"YulAssignment","src":"394:22:37","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"409:6:37"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"403:5:37"},"nodeType":"YulFunctionCall","src":"403:13:37"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"394:5:37"}]},{"body":{"nodeType":"YulBlock","src":"468:16:37","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"477:1:37","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"480:1:37","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"470:6:37"},"nodeType":"YulFunctionCall","src":"470:12:37"},"nodeType":"YulExpressionStatement","src":"470:12:37"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"438:5:37"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"456:1:37","type":"","value":"2"},{"name":"value","nodeType":"YulIdentifier","src":"459:5:37"}],"functionName":{"name":"signextend","nodeType":"YulIdentifier","src":"445:10:37"},"nodeType":"YulFunctionCall","src":"445:20:37"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"435:2:37"},"nodeType":"YulFunctionCall","src":"435:31:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"428:6:37"},"nodeType":"YulFunctionCall","src":"428:39:37"},"nodeType":"YulIf","src":"425:2:37"}]},"name":"abi_decode_int24_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"363:6:37","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"374:5:37","type":""}],"src":"326:164:37"},{"body":{"nodeType":"YulBlock","src":"555:78:37","statements":[{"nodeType":"YulAssignment","src":"565:22:37","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"580:6:37"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"574:5:37"},"nodeType":"YulFunctionCall","src":"574:13:37"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"565:5:37"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"621:5:37"}],"functionName":{"name":"validator_revert_uint128","nodeType":"YulIdentifier","src":"596:24:37"},"nodeType":"YulFunctionCall","src":"596:31:37"},"nodeType":"YulExpressionStatement","src":"596:31:37"}]},"name":"abi_decode_uint128_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"534:6:37","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"545:5:37","type":""}],"src":"495:138:37"},{"body":{"nodeType":"YulBlock","src":"697:104:37","statements":[{"nodeType":"YulAssignment","src":"707:22:37","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"722:6:37"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"716:5:37"},"nodeType":"YulFunctionCall","src":"716:13:37"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"707:5:37"}]},{"body":{"nodeType":"YulBlock","src":"779:16:37","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"788:1:37","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"791:1:37","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"781:6:37"},"nodeType":"YulFunctionCall","src":"781:12:37"},"nodeType":"YulExpressionStatement","src":"781:12:37"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"751:5:37"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"762:5:37"},{"kind":"number","nodeType":"YulLiteral","src":"769:6:37","type":"","value":"0xffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"758:3:37"},"nodeType":"YulFunctionCall","src":"758:18:37"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"748:2:37"},"nodeType":"YulFunctionCall","src":"748:29:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"741:6:37"},"nodeType":"YulFunctionCall","src":"741:37:37"},"nodeType":"YulIf","src":"738:2:37"}]},"name":"abi_decode_uint16_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"676:6:37","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"687:5:37","type":""}],"src":"638:163:37"},{"body":{"nodeType":"YulBlock","src":"865:77:37","statements":[{"nodeType":"YulAssignment","src":"875:22:37","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"890:6:37"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"884:5:37"},"nodeType":"YulFunctionCall","src":"884:13:37"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"875:5:37"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"930:5:37"}],"functionName":{"name":"validator_revert_uint24","nodeType":"YulIdentifier","src":"906:23:37"},"nodeType":"YulFunctionCall","src":"906:30:37"},"nodeType":"YulExpressionStatement","src":"906:30:37"}]},"name":"abi_decode_uint24_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"844:6:37","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"855:5:37","type":""}],"src":"806:136:37"},{"body":{"nodeType":"YulBlock","src":"1017:187:37","statements":[{"body":{"nodeType":"YulBlock","src":"1063:26:37","statements":[{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1072:6:37"},{"name":"value0","nodeType":"YulIdentifier","src":"1080:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1065:6:37"},"nodeType":"YulFunctionCall","src":"1065:22:37"},"nodeType":"YulExpressionStatement","src":"1065:22:37"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1038:7:37"},{"name":"headStart","nodeType":"YulIdentifier","src":"1047:9:37"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1034:3:37"},"nodeType":"YulFunctionCall","src":"1034:23:37"},{"kind":"number","nodeType":"YulLiteral","src":"1059:2:37","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1030:3:37"},"nodeType":"YulFunctionCall","src":"1030:32:37"},"nodeType":"YulIf","src":"1027:2:37"},{"nodeType":"YulVariableDeclaration","src":"1098:36:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1124:9:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1111:12:37"},"nodeType":"YulFunctionCall","src":"1111:23:37"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"1102:5:37","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1168:5:37"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"1143:24:37"},"nodeType":"YulFunctionCall","src":"1143:31:37"},"nodeType":"YulExpressionStatement","src":"1143:31:37"},{"nodeType":"YulAssignment","src":"1183:15:37","value":{"name":"value","nodeType":"YulIdentifier","src":"1193:5:37"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1183:6:37"}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"983:9:37","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"994:7:37","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1006:6:37","type":""}],"src":"947:257:37"},{"body":{"nodeType":"YulBlock","src":"1290:180:37","statements":[{"body":{"nodeType":"YulBlock","src":"1336:26:37","statements":[{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1345:6:37"},{"name":"value0","nodeType":"YulIdentifier","src":"1353:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1338:6:37"},"nodeType":"YulFunctionCall","src":"1338:22:37"},"nodeType":"YulExpressionStatement","src":"1338:22:37"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1311:7:37"},{"name":"headStart","nodeType":"YulIdentifier","src":"1320:9:37"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1307:3:37"},"nodeType":"YulFunctionCall","src":"1307:23:37"},{"kind":"number","nodeType":"YulLiteral","src":"1332:2:37","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1303:3:37"},"nodeType":"YulFunctionCall","src":"1303:32:37"},"nodeType":"YulIf","src":"1300:2:37"},{"nodeType":"YulVariableDeclaration","src":"1371:29:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1390:9:37"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1384:5:37"},"nodeType":"YulFunctionCall","src":"1384:16:37"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"1375:5:37","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1434:5:37"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"1409:24:37"},"nodeType":"YulFunctionCall","src":"1409:31:37"},"nodeType":"YulExpressionStatement","src":"1409:31:37"},{"nodeType":"YulAssignment","src":"1449:15:37","value":{"name":"value","nodeType":"YulIdentifier","src":"1459:5:37"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1449:6:37"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1256:9:37","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1267:7:37","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1279:6:37","type":""}],"src":"1209:261:37"},{"body":{"nodeType":"YulBlock","src":"1629:809:37","statements":[{"body":{"nodeType":"YulBlock","src":"1676:26:37","statements":[{"expression":{"arguments":[{"name":"value4","nodeType":"YulIdentifier","src":"1685:6:37"},{"name":"value4","nodeType":"YulIdentifier","src":"1693:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1678:6:37"},"nodeType":"YulFunctionCall","src":"1678:22:37"},"nodeType":"YulExpressionStatement","src":"1678:22:37"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1650:7:37"},{"name":"headStart","nodeType":"YulIdentifier","src":"1659:9:37"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1646:3:37"},"nodeType":"YulFunctionCall","src":"1646:23:37"},{"kind":"number","nodeType":"YulLiteral","src":"1671:3:37","type":"","value":"192"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1642:3:37"},"nodeType":"YulFunctionCall","src":"1642:33:37"},"nodeType":"YulIf","src":"1639:2:37"},{"nodeType":"YulVariableDeclaration","src":"1711:36:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1737:9:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1724:12:37"},"nodeType":"YulFunctionCall","src":"1724:23:37"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"1715:5:37","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1781:5:37"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"1756:24:37"},"nodeType":"YulFunctionCall","src":"1756:31:37"},"nodeType":"YulExpressionStatement","src":"1756:31:37"},{"nodeType":"YulAssignment","src":"1796:15:37","value":{"name":"value","nodeType":"YulIdentifier","src":"1806:5:37"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1796:6:37"}]},{"nodeType":"YulVariableDeclaration","src":"1820:47:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1852:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"1863:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1848:3:37"},"nodeType":"YulFunctionCall","src":"1848:18:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1835:12:37"},"nodeType":"YulFunctionCall","src":"1835:32:37"},"variables":[{"name":"value_1","nodeType":"YulTypedName","src":"1824:7:37","type":""}]},{"expression":{"arguments":[{"name":"value_1","nodeType":"YulIdentifier","src":"1901:7:37"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"1876:24:37"},"nodeType":"YulFunctionCall","src":"1876:33:37"},"nodeType":"YulExpressionStatement","src":"1876:33:37"},{"nodeType":"YulAssignment","src":"1918:17:37","value":{"name":"value_1","nodeType":"YulIdentifier","src":"1928:7:37"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1918:6:37"}]},{"nodeType":"YulVariableDeclaration","src":"1944:47:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1976:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"1987:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1972:3:37"},"nodeType":"YulFunctionCall","src":"1972:18:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1959:12:37"},"nodeType":"YulFunctionCall","src":"1959:32:37"},"variables":[{"name":"value_2","nodeType":"YulTypedName","src":"1948:7:37","type":""}]},{"expression":{"arguments":[{"name":"value_2","nodeType":"YulIdentifier","src":"2025:7:37"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"2000:24:37"},"nodeType":"YulFunctionCall","src":"2000:33:37"},"nodeType":"YulExpressionStatement","src":"2000:33:37"},{"nodeType":"YulAssignment","src":"2042:17:37","value":{"name":"value_2","nodeType":"YulIdentifier","src":"2052:7:37"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"2042:6:37"}]},{"nodeType":"YulVariableDeclaration","src":"2068:47:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2100:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"2111:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2096:3:37"},"nodeType":"YulFunctionCall","src":"2096:18:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2083:12:37"},"nodeType":"YulFunctionCall","src":"2083:32:37"},"variables":[{"name":"value_3","nodeType":"YulTypedName","src":"2072:7:37","type":""}]},{"expression":{"arguments":[{"name":"value_3","nodeType":"YulIdentifier","src":"2148:7:37"}],"functionName":{"name":"validator_revert_uint24","nodeType":"YulIdentifier","src":"2124:23:37"},"nodeType":"YulFunctionCall","src":"2124:32:37"},"nodeType":"YulExpressionStatement","src":"2124:32:37"},{"nodeType":"YulAssignment","src":"2165:17:37","value":{"name":"value_3","nodeType":"YulIdentifier","src":"2175:7:37"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"2165:6:37"}]},{"nodeType":"YulVariableDeclaration","src":"2191:48:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2223:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"2234:3:37","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2219:3:37"},"nodeType":"YulFunctionCall","src":"2219:19:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2206:12:37"},"nodeType":"YulFunctionCall","src":"2206:33:37"},"variables":[{"name":"value_4","nodeType":"YulTypedName","src":"2195:7:37","type":""}]},{"expression":{"arguments":[{"name":"value_4","nodeType":"YulIdentifier","src":"2273:7:37"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"2248:24:37"},"nodeType":"YulFunctionCall","src":"2248:33:37"},"nodeType":"YulExpressionStatement","src":"2248:33:37"},{"nodeType":"YulAssignment","src":"2290:17:37","value":{"name":"value_4","nodeType":"YulIdentifier","src":"2300:7:37"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"2290:6:37"}]},{"nodeType":"YulVariableDeclaration","src":"2316:48:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2348:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"2359:3:37","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2344:3:37"},"nodeType":"YulFunctionCall","src":"2344:19:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2331:12:37"},"nodeType":"YulFunctionCall","src":"2331:33:37"},"variables":[{"name":"value_5","nodeType":"YulTypedName","src":"2320:7:37","type":""}]},{"expression":{"arguments":[{"name":"value_5","nodeType":"YulIdentifier","src":"2398:7:37"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"2373:24:37"},"nodeType":"YulFunctionCall","src":"2373:33:37"},"nodeType":"YulExpressionStatement","src":"2373:33:37"},{"nodeType":"YulAssignment","src":"2415:17:37","value":{"name":"value_5","nodeType":"YulIdentifier","src":"2425:7:37"},"variableNames":[{"name":"value5","nodeType":"YulIdentifier","src":"2415:6:37"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_addresst_uint24t_addresst_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1555:9:37","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1566:7:37","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1578:6:37","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1586:6:37","type":""},{"name":"value2","nodeType":"YulTypedName","src":"1594:6:37","type":""},{"name":"value3","nodeType":"YulTypedName","src":"1602:6:37","type":""},{"name":"value4","nodeType":"YulTypedName","src":"1610:6:37","type":""},{"name":"value5","nodeType":"YulTypedName","src":"1618:6:37","type":""}],"src":"1475:963:37"},{"body":{"nodeType":"YulBlock","src":"2583:846:37","statements":[{"body":{"nodeType":"YulBlock","src":"2630:26:37","statements":[{"expression":{"arguments":[{"name":"value4","nodeType":"YulIdentifier","src":"2639:6:37"},{"name":"value4","nodeType":"YulIdentifier","src":"2647:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2632:6:37"},"nodeType":"YulFunctionCall","src":"2632:22:37"},"nodeType":"YulExpressionStatement","src":"2632:22:37"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2604:7:37"},{"name":"headStart","nodeType":"YulIdentifier","src":"2613:9:37"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2600:3:37"},"nodeType":"YulFunctionCall","src":"2600:23:37"},{"kind":"number","nodeType":"YulLiteral","src":"2625:3:37","type":"","value":"128"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2596:3:37"},"nodeType":"YulFunctionCall","src":"2596:33:37"},"nodeType":"YulIf","src":"2593:2:37"},{"nodeType":"YulVariableDeclaration","src":"2665:36:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2691:9:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2678:12:37"},"nodeType":"YulFunctionCall","src":"2678:23:37"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"2669:5:37","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2735:5:37"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"2710:24:37"},"nodeType":"YulFunctionCall","src":"2710:31:37"},"nodeType":"YulExpressionStatement","src":"2710:31:37"},{"nodeType":"YulAssignment","src":"2750:15:37","value":{"name":"value","nodeType":"YulIdentifier","src":"2760:5:37"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2750:6:37"}]},{"nodeType":"YulVariableDeclaration","src":"2774:47:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2806:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"2817:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2802:3:37"},"nodeType":"YulFunctionCall","src":"2802:18:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2789:12:37"},"nodeType":"YulFunctionCall","src":"2789:32:37"},"variables":[{"name":"value_1","nodeType":"YulTypedName","src":"2778:7:37","type":""}]},{"expression":{"arguments":[{"name":"value_1","nodeType":"YulIdentifier","src":"2855:7:37"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"2830:24:37"},"nodeType":"YulFunctionCall","src":"2830:33:37"},"nodeType":"YulExpressionStatement","src":"2830:33:37"},{"nodeType":"YulAssignment","src":"2872:17:37","value":{"name":"value_1","nodeType":"YulIdentifier","src":"2882:7:37"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2872:6:37"}]},{"nodeType":"YulAssignment","src":"2898:42:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2925:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"2936:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2921:3:37"},"nodeType":"YulFunctionCall","src":"2921:18:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2908:12:37"},"nodeType":"YulFunctionCall","src":"2908:32:37"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"2898:6:37"}]},{"nodeType":"YulVariableDeclaration","src":"2949:46:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2980:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"2991:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2976:3:37"},"nodeType":"YulFunctionCall","src":"2976:18:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2963:12:37"},"nodeType":"YulFunctionCall","src":"2963:32:37"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2953:6:37","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3004:28:37","value":{"kind":"number","nodeType":"YulLiteral","src":"3014:18:37","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"3008:2:37","type":""}]},{"body":{"nodeType":"YulBlock","src":"3059:26:37","statements":[{"expression":{"arguments":[{"name":"value4","nodeType":"YulIdentifier","src":"3068:6:37"},{"name":"value4","nodeType":"YulIdentifier","src":"3076:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3061:6:37"},"nodeType":"YulFunctionCall","src":"3061:22:37"},"nodeType":"YulExpressionStatement","src":"3061:22:37"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3047:6:37"},{"name":"_1","nodeType":"YulIdentifier","src":"3055:2:37"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3044:2:37"},"nodeType":"YulFunctionCall","src":"3044:14:37"},"nodeType":"YulIf","src":"3041:2:37"},{"nodeType":"YulVariableDeclaration","src":"3094:32:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3108:9:37"},{"name":"offset","nodeType":"YulIdentifier","src":"3119:6:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3104:3:37"},"nodeType":"YulFunctionCall","src":"3104:22:37"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"3098:2:37","type":""}]},{"body":{"nodeType":"YulBlock","src":"3174:26:37","statements":[{"expression":{"arguments":[{"name":"value4","nodeType":"YulIdentifier","src":"3183:6:37"},{"name":"value4","nodeType":"YulIdentifier","src":"3191:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3176:6:37"},"nodeType":"YulFunctionCall","src":"3176:22:37"},"nodeType":"YulExpressionStatement","src":"3176:22:37"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"3153:2:37"},{"kind":"number","nodeType":"YulLiteral","src":"3157:4:37","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3149:3:37"},"nodeType":"YulFunctionCall","src":"3149:13:37"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"3164:7:37"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3145:3:37"},"nodeType":"YulFunctionCall","src":"3145:27:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3138:6:37"},"nodeType":"YulFunctionCall","src":"3138:35:37"},"nodeType":"YulIf","src":"3135:2:37"},{"nodeType":"YulVariableDeclaration","src":"3209:30:37","value":{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"3236:2:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3223:12:37"},"nodeType":"YulFunctionCall","src":"3223:16:37"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"3213:6:37","type":""}]},{"body":{"nodeType":"YulBlock","src":"3266:26:37","statements":[{"expression":{"arguments":[{"name":"value4","nodeType":"YulIdentifier","src":"3275:6:37"},{"name":"value4","nodeType":"YulIdentifier","src":"3283:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3268:6:37"},"nodeType":"YulFunctionCall","src":"3268:22:37"},"nodeType":"YulExpressionStatement","src":"3268:22:37"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"3254:6:37"},{"name":"_1","nodeType":"YulIdentifier","src":"3262:2:37"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3251:2:37"},"nodeType":"YulFunctionCall","src":"3251:14:37"},"nodeType":"YulIf","src":"3248:2:37"},{"body":{"nodeType":"YulBlock","src":"3342:26:37","statements":[{"expression":{"arguments":[{"name":"value4","nodeType":"YulIdentifier","src":"3351:6:37"},{"name":"value4","nodeType":"YulIdentifier","src":"3359:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3344:6:37"},"nodeType":"YulFunctionCall","src":"3344:22:37"},"nodeType":"YulExpressionStatement","src":"3344:22:37"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"3315:2:37"},{"name":"length","nodeType":"YulIdentifier","src":"3319:6:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3311:3:37"},"nodeType":"YulFunctionCall","src":"3311:15:37"},{"kind":"number","nodeType":"YulLiteral","src":"3328:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3307:3:37"},"nodeType":"YulFunctionCall","src":"3307:24:37"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"3333:7:37"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3304:2:37"},"nodeType":"YulFunctionCall","src":"3304:37:37"},"nodeType":"YulIf","src":"3301:2:37"},{"nodeType":"YulAssignment","src":"3377:21:37","value":{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"3391:2:37"},{"kind":"number","nodeType":"YulLiteral","src":"3395:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3387:3:37"},"nodeType":"YulFunctionCall","src":"3387:11:37"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"3377:6:37"}]},{"nodeType":"YulAssignment","src":"3407:16:37","value":{"name":"length","nodeType":"YulIdentifier","src":"3417:6:37"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"3407:6:37"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2517:9:37","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2528:7:37","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2540:6:37","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2548:6:37","type":""},{"name":"value2","nodeType":"YulTypedName","src":"2556:6:37","type":""},{"name":"value3","nodeType":"YulTypedName","src":"2564:6:37","type":""},{"name":"value4","nodeType":"YulTypedName","src":"2572:6:37","type":""}],"src":"2443:986:37"},{"body":{"nodeType":"YulBlock","src":"3546:1106:37","statements":[{"body":{"nodeType":"YulBlock","src":"3592:26:37","statements":[{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3601:6:37"},{"name":"value0","nodeType":"YulIdentifier","src":"3609:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3594:6:37"},"nodeType":"YulFunctionCall","src":"3594:22:37"},"nodeType":"YulExpressionStatement","src":"3594:22:37"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"3567:7:37"},{"name":"headStart","nodeType":"YulIdentifier","src":"3576:9:37"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3563:3:37"},"nodeType":"YulFunctionCall","src":"3563:23:37"},{"kind":"number","nodeType":"YulLiteral","src":"3588:2:37","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3559:3:37"},"nodeType":"YulFunctionCall","src":"3559:32:37"},"nodeType":"YulIf","src":"3556:2:37"},{"nodeType":"YulVariableDeclaration","src":"3627:36:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3653:9:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3640:12:37"},"nodeType":"YulFunctionCall","src":"3640:23:37"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"3631:5:37","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3697:5:37"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"3672:24:37"},"nodeType":"YulFunctionCall","src":"3672:31:37"},"nodeType":"YulExpressionStatement","src":"3672:31:37"},{"nodeType":"YulAssignment","src":"3712:15:37","value":{"name":"value","nodeType":"YulIdentifier","src":"3722:5:37"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"3712:6:37"}]},{"nodeType":"YulVariableDeclaration","src":"3736:12:37","value":{"kind":"number","nodeType":"YulLiteral","src":"3746:2:37","type":"","value":"32"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"3740:2:37","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3757:46:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3788:9:37"},{"name":"_1","nodeType":"YulIdentifier","src":"3799:2:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3784:3:37"},"nodeType":"YulFunctionCall","src":"3784:18:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3771:12:37"},"nodeType":"YulFunctionCall","src":"3771:32:37"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"3761:6:37","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3812:28:37","value":{"kind":"number","nodeType":"YulLiteral","src":"3822:18:37","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"3816:2:37","type":""}]},{"body":{"nodeType":"YulBlock","src":"3867:26:37","statements":[{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"3876:6:37"},{"name":"value1","nodeType":"YulIdentifier","src":"3884:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3869:6:37"},"nodeType":"YulFunctionCall","src":"3869:22:37"},"nodeType":"YulExpressionStatement","src":"3869:22:37"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3855:6:37"},{"name":"_2","nodeType":"YulIdentifier","src":"3863:2:37"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3852:2:37"},"nodeType":"YulFunctionCall","src":"3852:14:37"},"nodeType":"YulIf","src":"3849:2:37"},{"nodeType":"YulVariableDeclaration","src":"3902:32:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3916:9:37"},{"name":"offset","nodeType":"YulIdentifier","src":"3927:6:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3912:3:37"},"nodeType":"YulFunctionCall","src":"3912:22:37"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"3906:2:37","type":""}]},{"body":{"nodeType":"YulBlock","src":"3982:26:37","statements":[{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"3991:6:37"},{"name":"value1","nodeType":"YulIdentifier","src":"3999:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3984:6:37"},"nodeType":"YulFunctionCall","src":"3984:22:37"},"nodeType":"YulExpressionStatement","src":"3984:22:37"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"3961:2:37"},{"kind":"number","nodeType":"YulLiteral","src":"3965:4:37","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3957:3:37"},"nodeType":"YulFunctionCall","src":"3957:13:37"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"3972:7:37"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3953:3:37"},"nodeType":"YulFunctionCall","src":"3953:27:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3946:6:37"},"nodeType":"YulFunctionCall","src":"3946:35:37"},"nodeType":"YulIf","src":"3943:2:37"},{"nodeType":"YulVariableDeclaration","src":"4017:26:37","value":{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"4040:2:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4027:12:37"},"nodeType":"YulFunctionCall","src":"4027:16:37"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"4021:2:37","type":""}]},{"body":{"nodeType":"YulBlock","src":"4066:22:37","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"4068:16:37"},"nodeType":"YulFunctionCall","src":"4068:18:37"},"nodeType":"YulExpressionStatement","src":"4068:18:37"}]},"condition":{"arguments":[{"name":"_4","nodeType":"YulIdentifier","src":"4058:2:37"},{"name":"_2","nodeType":"YulIdentifier","src":"4062:2:37"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4055:2:37"},"nodeType":"YulFunctionCall","src":"4055:10:37"},"nodeType":"YulIf","src":"4052:2:37"},{"nodeType":"YulVariableDeclaration","src":"4097:20:37","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4111:1:37","type":"","value":"5"},{"name":"_4","nodeType":"YulIdentifier","src":"4114:2:37"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4107:3:37"},"nodeType":"YulFunctionCall","src":"4107:10:37"},"variables":[{"name":"_5","nodeType":"YulTypedName","src":"4101:2:37","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4126:39:37","value":{"arguments":[{"arguments":[{"name":"_5","nodeType":"YulIdentifier","src":"4157:2:37"},{"name":"_1","nodeType":"YulIdentifier","src":"4161:2:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4153:3:37"},"nodeType":"YulFunctionCall","src":"4153:11:37"}],"functionName":{"name":"allocate_memory","nodeType":"YulIdentifier","src":"4137:15:37"},"nodeType":"YulFunctionCall","src":"4137:28:37"},"variables":[{"name":"dst","nodeType":"YulTypedName","src":"4130:3:37","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4174:16:37","value":{"name":"dst","nodeType":"YulIdentifier","src":"4187:3:37"},"variables":[{"name":"dst_1","nodeType":"YulTypedName","src":"4178:5:37","type":""}]},{"expression":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"4206:3:37"},{"name":"_4","nodeType":"YulIdentifier","src":"4211:2:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4199:6:37"},"nodeType":"YulFunctionCall","src":"4199:15:37"},"nodeType":"YulExpressionStatement","src":"4199:15:37"},{"nodeType":"YulAssignment","src":"4223:19:37","value":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"4234:3:37"},{"name":"_1","nodeType":"YulIdentifier","src":"4239:2:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4230:3:37"},"nodeType":"YulFunctionCall","src":"4230:12:37"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"4223:3:37"}]},{"nodeType":"YulVariableDeclaration","src":"4251:22:37","value":{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"4266:2:37"},{"name":"_1","nodeType":"YulIdentifier","src":"4270:2:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4262:3:37"},"nodeType":"YulFunctionCall","src":"4262:11:37"},"variables":[{"name":"src","nodeType":"YulTypedName","src":"4255:3:37","type":""}]},{"body":{"nodeType":"YulBlock","src":"4319:26:37","statements":[{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"4328:6:37"},{"name":"value1","nodeType":"YulIdentifier","src":"4336:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4321:6:37"},"nodeType":"YulFunctionCall","src":"4321:22:37"},"nodeType":"YulExpressionStatement","src":"4321:22:37"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"4296:2:37"},{"name":"_5","nodeType":"YulIdentifier","src":"4300:2:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4292:3:37"},"nodeType":"YulFunctionCall","src":"4292:11:37"},{"name":"_1","nodeType":"YulIdentifier","src":"4305:2:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4288:3:37"},"nodeType":"YulFunctionCall","src":"4288:20:37"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4310:7:37"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4285:2:37"},"nodeType":"YulFunctionCall","src":"4285:33:37"},"nodeType":"YulIf","src":"4282:2:37"},{"nodeType":"YulVariableDeclaration","src":"4354:15:37","value":{"name":"value1","nodeType":"YulIdentifier","src":"4363:6:37"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"4358:1:37","type":""}]},{"body":{"nodeType":"YulBlock","src":"4423:199:37","statements":[{"nodeType":"YulVariableDeclaration","src":"4437:32:37","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4465:3:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4452:12:37"},"nodeType":"YulFunctionCall","src":"4452:17:37"},"variables":[{"name":"value_1","nodeType":"YulTypedName","src":"4441:7:37","type":""}]},{"expression":{"arguments":[{"name":"value_1","nodeType":"YulIdentifier","src":"4507:7:37"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"4482:24:37"},"nodeType":"YulFunctionCall","src":"4482:33:37"},"nodeType":"YulExpressionStatement","src":"4482:33:37"},{"expression":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"4535:3:37"},{"name":"value_1","nodeType":"YulIdentifier","src":"4540:7:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4528:6:37"},"nodeType":"YulFunctionCall","src":"4528:20:37"},"nodeType":"YulExpressionStatement","src":"4528:20:37"},{"nodeType":"YulAssignment","src":"4561:19:37","value":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"4572:3:37"},{"name":"_1","nodeType":"YulIdentifier","src":"4577:2:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4568:3:37"},"nodeType":"YulFunctionCall","src":"4568:12:37"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"4561:3:37"}]},{"nodeType":"YulAssignment","src":"4593:19:37","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4604:3:37"},{"name":"_1","nodeType":"YulIdentifier","src":"4609:2:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4600:3:37"},"nodeType":"YulFunctionCall","src":"4600:12:37"},"variableNames":[{"name":"src","nodeType":"YulIdentifier","src":"4593:3:37"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"4389:1:37"},{"name":"_4","nodeType":"YulIdentifier","src":"4392:2:37"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"4386:2:37"},"nodeType":"YulFunctionCall","src":"4386:9:37"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"4396:18:37","statements":[{"nodeType":"YulAssignment","src":"4398:14:37","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"4407:1:37"},{"kind":"number","nodeType":"YulLiteral","src":"4410:1:37","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4403:3:37"},"nodeType":"YulFunctionCall","src":"4403:9:37"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"4398:1:37"}]}]},"pre":{"nodeType":"YulBlock","src":"4382:3:37","statements":[]},"src":"4378:244:37"},{"nodeType":"YulAssignment","src":"4631:15:37","value":{"name":"dst_1","nodeType":"YulIdentifier","src":"4641:5:37"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"4631:6:37"}]}]},"name":"abi_decode_tuple_t_addresst_array$_t_address_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3504:9:37","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"3515:7:37","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"3527:6:37","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3535:6:37","type":""}],"src":"3434:1218:37"},{"body":{"nodeType":"YulBlock","src":"4753:847:37","statements":[{"body":{"nodeType":"YulBlock","src":"4799:26:37","statements":[{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4808:6:37"},{"name":"value0","nodeType":"YulIdentifier","src":"4816:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4801:6:37"},"nodeType":"YulFunctionCall","src":"4801:22:37"},"nodeType":"YulExpressionStatement","src":"4801:22:37"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"4774:7:37"},{"name":"headStart","nodeType":"YulIdentifier","src":"4783:9:37"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4770:3:37"},"nodeType":"YulFunctionCall","src":"4770:23:37"},{"kind":"number","nodeType":"YulLiteral","src":"4795:2:37","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"4766:3:37"},"nodeType":"YulFunctionCall","src":"4766:32:37"},"nodeType":"YulIf","src":"4763:2:37"},{"nodeType":"YulVariableDeclaration","src":"4834:36:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4860:9:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4847:12:37"},"nodeType":"YulFunctionCall","src":"4847:23:37"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"4838:5:37","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4904:5:37"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"4879:24:37"},"nodeType":"YulFunctionCall","src":"4879:31:37"},"nodeType":"YulExpressionStatement","src":"4879:31:37"},{"nodeType":"YulAssignment","src":"4919:15:37","value":{"name":"value","nodeType":"YulIdentifier","src":"4929:5:37"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"4919:6:37"}]},{"nodeType":"YulVariableDeclaration","src":"4943:12:37","value":{"kind":"number","nodeType":"YulLiteral","src":"4953:2:37","type":"","value":"32"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"4947:2:37","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4964:46:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4995:9:37"},{"name":"_1","nodeType":"YulIdentifier","src":"5006:2:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4991:3:37"},"nodeType":"YulFunctionCall","src":"4991:18:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4978:12:37"},"nodeType":"YulFunctionCall","src":"4978:32:37"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4968:6:37","type":""}]},{"nodeType":"YulVariableDeclaration","src":"5019:28:37","value":{"kind":"number","nodeType":"YulLiteral","src":"5029:18:37","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"5023:2:37","type":""}]},{"body":{"nodeType":"YulBlock","src":"5074:26:37","statements":[{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"5083:6:37"},{"name":"value1","nodeType":"YulIdentifier","src":"5091:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5076:6:37"},"nodeType":"YulFunctionCall","src":"5076:22:37"},"nodeType":"YulExpressionStatement","src":"5076:22:37"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"5062:6:37"},{"name":"_2","nodeType":"YulIdentifier","src":"5070:2:37"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"5059:2:37"},"nodeType":"YulFunctionCall","src":"5059:14:37"},"nodeType":"YulIf","src":"5056:2:37"},{"nodeType":"YulVariableDeclaration","src":"5109:32:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5123:9:37"},{"name":"offset","nodeType":"YulIdentifier","src":"5134:6:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5119:3:37"},"nodeType":"YulFunctionCall","src":"5119:22:37"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"5113:2:37","type":""}]},{"body":{"nodeType":"YulBlock","src":"5189:26:37","statements":[{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"5198:6:37"},{"name":"value1","nodeType":"YulIdentifier","src":"5206:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5191:6:37"},"nodeType":"YulFunctionCall","src":"5191:22:37"},"nodeType":"YulExpressionStatement","src":"5191:22:37"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"5168:2:37"},{"kind":"number","nodeType":"YulLiteral","src":"5172:4:37","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5164:3:37"},"nodeType":"YulFunctionCall","src":"5164:13:37"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5179:7:37"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5160:3:37"},"nodeType":"YulFunctionCall","src":"5160:27:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"5153:6:37"},"nodeType":"YulFunctionCall","src":"5153:35:37"},"nodeType":"YulIf","src":"5150:2:37"},{"nodeType":"YulVariableDeclaration","src":"5224:26:37","value":{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"5247:2:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5234:12:37"},"nodeType":"YulFunctionCall","src":"5234:16:37"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"5228:2:37","type":""}]},{"body":{"nodeType":"YulBlock","src":"5273:22:37","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"5275:16:37"},"nodeType":"YulFunctionCall","src":"5275:18:37"},"nodeType":"YulExpressionStatement","src":"5275:18:37"}]},"condition":{"arguments":[{"name":"_4","nodeType":"YulIdentifier","src":"5265:2:37"},{"name":"_2","nodeType":"YulIdentifier","src":"5269:2:37"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"5262:2:37"},"nodeType":"YulFunctionCall","src":"5262:10:37"},"nodeType":"YulIf","src":"5259:2:37"},{"nodeType":"YulVariableDeclaration","src":"5304:66:37","value":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_4","nodeType":"YulIdentifier","src":"5345:2:37"},{"kind":"number","nodeType":"YulLiteral","src":"5349:4:37","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5341:3:37"},"nodeType":"YulFunctionCall","src":"5341:13:37"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5360:2:37","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"5356:3:37"},"nodeType":"YulFunctionCall","src":"5356:7:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"5337:3:37"},"nodeType":"YulFunctionCall","src":"5337:27:37"},{"name":"_1","nodeType":"YulIdentifier","src":"5366:2:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5333:3:37"},"nodeType":"YulFunctionCall","src":"5333:36:37"}],"functionName":{"name":"allocate_memory","nodeType":"YulIdentifier","src":"5317:15:37"},"nodeType":"YulFunctionCall","src":"5317:53:37"},"variables":[{"name":"array","nodeType":"YulTypedName","src":"5308:5:37","type":""}]},{"expression":{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"5386:5:37"},{"name":"_4","nodeType":"YulIdentifier","src":"5393:2:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5379:6:37"},"nodeType":"YulFunctionCall","src":"5379:17:37"},"nodeType":"YulExpressionStatement","src":"5379:17:37"},{"body":{"nodeType":"YulBlock","src":"5442:26:37","statements":[{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"5451:6:37"},{"name":"value1","nodeType":"YulIdentifier","src":"5459:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5444:6:37"},"nodeType":"YulFunctionCall","src":"5444:22:37"},"nodeType":"YulExpressionStatement","src":"5444:22:37"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"5419:2:37"},{"name":"_4","nodeType":"YulIdentifier","src":"5423:2:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5415:3:37"},"nodeType":"YulFunctionCall","src":"5415:11:37"},{"name":"_1","nodeType":"YulIdentifier","src":"5428:2:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5411:3:37"},"nodeType":"YulFunctionCall","src":"5411:20:37"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5433:7:37"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"5408:2:37"},"nodeType":"YulFunctionCall","src":"5408:33:37"},"nodeType":"YulIf","src":"5405:2:37"},{"expression":{"arguments":[{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"5494:5:37"},{"name":"_1","nodeType":"YulIdentifier","src":"5501:2:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5490:3:37"},"nodeType":"YulFunctionCall","src":"5490:14:37"},{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"5510:2:37"},{"name":"_1","nodeType":"YulIdentifier","src":"5514:2:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5506:3:37"},"nodeType":"YulFunctionCall","src":"5506:11:37"},{"name":"_4","nodeType":"YulIdentifier","src":"5519:2:37"}],"functionName":{"name":"calldatacopy","nodeType":"YulIdentifier","src":"5477:12:37"},"nodeType":"YulFunctionCall","src":"5477:45:37"},"nodeType":"YulExpressionStatement","src":"5477:45:37"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"5546:5:37"},{"name":"_4","nodeType":"YulIdentifier","src":"5553:2:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5542:3:37"},"nodeType":"YulFunctionCall","src":"5542:14:37"},{"name":"_1","nodeType":"YulIdentifier","src":"5558:2:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5538:3:37"},"nodeType":"YulFunctionCall","src":"5538:23:37"},{"name":"value1","nodeType":"YulIdentifier","src":"5563:6:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5531:6:37"},"nodeType":"YulFunctionCall","src":"5531:39:37"},"nodeType":"YulExpressionStatement","src":"5531:39:37"},{"nodeType":"YulAssignment","src":"5579:15:37","value":{"name":"array","nodeType":"YulIdentifier","src":"5589:5:37"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"5579:6:37"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4711:9:37","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"4722:7:37","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"4734:6:37","type":""},{"name":"value1","nodeType":"YulTypedName","src":"4742:6:37","type":""}],"src":"4657:943:37"},{"body":{"nodeType":"YulBlock","src":"5692:238:37","statements":[{"body":{"nodeType":"YulBlock","src":"5738:26:37","statements":[{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"5747:6:37"},{"name":"value0","nodeType":"YulIdentifier","src":"5755:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5740:6:37"},"nodeType":"YulFunctionCall","src":"5740:22:37"},"nodeType":"YulExpressionStatement","src":"5740:22:37"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5713:7:37"},{"name":"headStart","nodeType":"YulIdentifier","src":"5722:9:37"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5709:3:37"},"nodeType":"YulFunctionCall","src":"5709:23:37"},{"kind":"number","nodeType":"YulLiteral","src":"5734:2:37","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5705:3:37"},"nodeType":"YulFunctionCall","src":"5705:32:37"},"nodeType":"YulIf","src":"5702:2:37"},{"nodeType":"YulVariableDeclaration","src":"5773:36:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5799:9:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5786:12:37"},"nodeType":"YulFunctionCall","src":"5786:23:37"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"5777:5:37","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5843:5:37"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"5818:24:37"},"nodeType":"YulFunctionCall","src":"5818:31:37"},"nodeType":"YulExpressionStatement","src":"5818:31:37"},{"nodeType":"YulAssignment","src":"5858:15:37","value":{"name":"value","nodeType":"YulIdentifier","src":"5868:5:37"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5858:6:37"}]},{"nodeType":"YulAssignment","src":"5882:42:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5909:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"5920:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5905:3:37"},"nodeType":"YulFunctionCall","src":"5905:18:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5892:12:37"},"nodeType":"YulFunctionCall","src":"5892:32:37"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"5882:6:37"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5650:9:37","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5661:7:37","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"5673:6:37","type":""},{"name":"value1","nodeType":"YulTypedName","src":"5681:6:37","type":""}],"src":"5605:325:37"},{"body":{"nodeType":"YulBlock","src":"6013:134:37","statements":[{"body":{"nodeType":"YulBlock","src":"6059:26:37","statements":[{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"6068:6:37"},{"name":"value0","nodeType":"YulIdentifier","src":"6076:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6061:6:37"},"nodeType":"YulFunctionCall","src":"6061:22:37"},"nodeType":"YulExpressionStatement","src":"6061:22:37"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"6034:7:37"},{"name":"headStart","nodeType":"YulIdentifier","src":"6043:9:37"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6030:3:37"},"nodeType":"YulFunctionCall","src":"6030:23:37"},{"kind":"number","nodeType":"YulLiteral","src":"6055:2:37","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"6026:3:37"},"nodeType":"YulFunctionCall","src":"6026:32:37"},"nodeType":"YulIf","src":"6023:2:37"},{"nodeType":"YulAssignment","src":"6094:47:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6131:9:37"}],"functionName":{"name":"abi_decode_bool_fromMemory","nodeType":"YulIdentifier","src":"6104:26:37"},"nodeType":"YulFunctionCall","src":"6104:37:37"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"6094:6:37"}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5979:9:37","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5990:7:37","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"6002:6:37","type":""}],"src":"5935:212:37"},{"body":{"nodeType":"YulBlock","src":"6239:311:37","statements":[{"body":{"nodeType":"YulBlock","src":"6285:26:37","statements":[{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"6294:6:37"},{"name":"value0","nodeType":"YulIdentifier","src":"6302:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6287:6:37"},"nodeType":"YulFunctionCall","src":"6287:22:37"},"nodeType":"YulExpressionStatement","src":"6287:22:37"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"6260:7:37"},{"name":"headStart","nodeType":"YulIdentifier","src":"6269:9:37"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6256:3:37"},"nodeType":"YulFunctionCall","src":"6256:23:37"},{"kind":"number","nodeType":"YulLiteral","src":"6281:2:37","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"6252:3:37"},"nodeType":"YulFunctionCall","src":"6252:32:37"},"nodeType":"YulIf","src":"6249:2:37"},{"nodeType":"YulVariableDeclaration","src":"6320:36:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6346:9:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"6333:12:37"},"nodeType":"YulFunctionCall","src":"6333:23:37"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"6324:5:37","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6390:5:37"}],"functionName":{"name":"validator_revert_uint128","nodeType":"YulIdentifier","src":"6365:24:37"},"nodeType":"YulFunctionCall","src":"6365:31:37"},"nodeType":"YulExpressionStatement","src":"6365:31:37"},{"nodeType":"YulAssignment","src":"6405:15:37","value":{"name":"value","nodeType":"YulIdentifier","src":"6415:5:37"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"6405:6:37"}]},{"nodeType":"YulVariableDeclaration","src":"6429:47:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6461:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"6472:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6457:3:37"},"nodeType":"YulFunctionCall","src":"6457:18:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"6444:12:37"},"nodeType":"YulFunctionCall","src":"6444:32:37"},"variables":[{"name":"value_1","nodeType":"YulTypedName","src":"6433:7:37","type":""}]},{"expression":{"arguments":[{"name":"value_1","nodeType":"YulIdentifier","src":"6510:7:37"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"6485:24:37"},"nodeType":"YulFunctionCall","src":"6485:33:37"},"nodeType":"YulExpressionStatement","src":"6485:33:37"},{"nodeType":"YulAssignment","src":"6527:17:37","value":{"name":"value_1","nodeType":"YulIdentifier","src":"6537:7:37"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"6527:6:37"}]}]},"name":"abi_decode_tuple_t_uint128t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6197:9:37","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"6208:7:37","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"6220:6:37","type":""},{"name":"value1","nodeType":"YulTypedName","src":"6228:6:37","type":""}],"src":"6152:398:37"},{"body":{"nodeType":"YulBlock","src":"6728:669:37","statements":[{"body":{"nodeType":"YulBlock","src":"6775:26:37","statements":[{"expression":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"6784:6:37"},{"name":"value2","nodeType":"YulIdentifier","src":"6792:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6777:6:37"},"nodeType":"YulFunctionCall","src":"6777:22:37"},"nodeType":"YulExpressionStatement","src":"6777:22:37"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"6749:7:37"},{"name":"headStart","nodeType":"YulIdentifier","src":"6758:9:37"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6745:3:37"},"nodeType":"YulFunctionCall","src":"6745:23:37"},{"kind":"number","nodeType":"YulLiteral","src":"6770:3:37","type":"","value":"224"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"6741:3:37"},"nodeType":"YulFunctionCall","src":"6741:33:37"},"nodeType":"YulIf","src":"6738:2:37"},{"nodeType":"YulVariableDeclaration","src":"6810:29:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6829:9:37"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"6823:5:37"},"nodeType":"YulFunctionCall","src":"6823:16:37"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"6814:5:37","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6873:5:37"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"6848:24:37"},"nodeType":"YulFunctionCall","src":"6848:31:37"},"nodeType":"YulExpressionStatement","src":"6848:31:37"},{"nodeType":"YulAssignment","src":"6888:15:37","value":{"name":"value","nodeType":"YulIdentifier","src":"6898:5:37"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"6888:6:37"}]},{"nodeType":"YulAssignment","src":"6912:57:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6954:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"6965:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6950:3:37"},"nodeType":"YulFunctionCall","src":"6950:18:37"}],"functionName":{"name":"abi_decode_int24_fromMemory","nodeType":"YulIdentifier","src":"6922:27:37"},"nodeType":"YulFunctionCall","src":"6922:47:37"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"6912:6:37"}]},{"nodeType":"YulAssignment","src":"6978:58:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7021:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"7032:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7017:3:37"},"nodeType":"YulFunctionCall","src":"7017:18:37"}],"functionName":{"name":"abi_decode_uint16_fromMemory","nodeType":"YulIdentifier","src":"6988:28:37"},"nodeType":"YulFunctionCall","src":"6988:48:37"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"6978:6:37"}]},{"nodeType":"YulAssignment","src":"7045:58:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7088:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"7099:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7084:3:37"},"nodeType":"YulFunctionCall","src":"7084:18:37"}],"functionName":{"name":"abi_decode_uint16_fromMemory","nodeType":"YulIdentifier","src":"7055:28:37"},"nodeType":"YulFunctionCall","src":"7055:48:37"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"7045:6:37"}]},{"nodeType":"YulAssignment","src":"7112:59:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7155:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"7166:3:37","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7151:3:37"},"nodeType":"YulFunctionCall","src":"7151:19:37"}],"functionName":{"name":"abi_decode_uint16_fromMemory","nodeType":"YulIdentifier","src":"7122:28:37"},"nodeType":"YulFunctionCall","src":"7122:49:37"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"7112:6:37"}]},{"nodeType":"YulVariableDeclaration","src":"7180:41:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7205:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"7216:3:37","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7201:3:37"},"nodeType":"YulFunctionCall","src":"7201:19:37"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"7195:5:37"},"nodeType":"YulFunctionCall","src":"7195:26:37"},"variables":[{"name":"value_1","nodeType":"YulTypedName","src":"7184:7:37","type":""}]},{"body":{"nodeType":"YulBlock","src":"7273:26:37","statements":[{"expression":{"arguments":[{"name":"value6","nodeType":"YulIdentifier","src":"7282:6:37"},{"name":"value6","nodeType":"YulIdentifier","src":"7290:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7275:6:37"},"nodeType":"YulFunctionCall","src":"7275:22:37"},"nodeType":"YulExpressionStatement","src":"7275:22:37"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nodeType":"YulIdentifier","src":"7243:7:37"},{"arguments":[{"name":"value_1","nodeType":"YulIdentifier","src":"7256:7:37"},{"kind":"number","nodeType":"YulLiteral","src":"7265:4:37","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"7252:3:37"},"nodeType":"YulFunctionCall","src":"7252:18:37"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"7240:2:37"},"nodeType":"YulFunctionCall","src":"7240:31:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"7233:6:37"},"nodeType":"YulFunctionCall","src":"7233:39:37"},"nodeType":"YulIf","src":"7230:2:37"},{"nodeType":"YulAssignment","src":"7308:17:37","value":{"name":"value_1","nodeType":"YulIdentifier","src":"7318:7:37"},"variableNames":[{"name":"value5","nodeType":"YulIdentifier","src":"7308:6:37"}]},{"nodeType":"YulAssignment","src":"7334:57:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7375:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"7386:3:37","type":"","value":"192"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7371:3:37"},"nodeType":"YulFunctionCall","src":"7371:19:37"}],"functionName":{"name":"abi_decode_bool_fromMemory","nodeType":"YulIdentifier","src":"7344:26:37"},"nodeType":"YulFunctionCall","src":"7344:47:37"},"variableNames":[{"name":"value6","nodeType":"YulIdentifier","src":"7334:6:37"}]}]},"name":"abi_decode_tuple_t_uint160t_int24t_uint16t_uint16t_uint16t_uint8t_bool_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6646:9:37","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"6657:7:37","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"6669:6:37","type":""},{"name":"value1","nodeType":"YulTypedName","src":"6677:6:37","type":""},{"name":"value2","nodeType":"YulTypedName","src":"6685:6:37","type":""},{"name":"value3","nodeType":"YulTypedName","src":"6693:6:37","type":""},{"name":"value4","nodeType":"YulTypedName","src":"6701:6:37","type":""},{"name":"value5","nodeType":"YulTypedName","src":"6709:6:37","type":""},{"name":"value6","nodeType":"YulTypedName","src":"6717:6:37","type":""}],"src":"6555:842:37"},{"body":{"nodeType":"YulBlock","src":"7472:120:37","statements":[{"body":{"nodeType":"YulBlock","src":"7518:26:37","statements":[{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"7527:6:37"},{"name":"value0","nodeType":"YulIdentifier","src":"7535:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7520:6:37"},"nodeType":"YulFunctionCall","src":"7520:22:37"},"nodeType":"YulExpressionStatement","src":"7520:22:37"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"7493:7:37"},{"name":"headStart","nodeType":"YulIdentifier","src":"7502:9:37"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7489:3:37"},"nodeType":"YulFunctionCall","src":"7489:23:37"},{"kind":"number","nodeType":"YulLiteral","src":"7514:2:37","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7485:3:37"},"nodeType":"YulFunctionCall","src":"7485:32:37"},"nodeType":"YulIf","src":"7482:2:37"},{"nodeType":"YulAssignment","src":"7553:33:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7576:9:37"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7563:12:37"},"nodeType":"YulFunctionCall","src":"7563:23:37"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"7553:6:37"}]}]},"name":"abi_decode_tuple_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7438:9:37","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"7449:7:37","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"7461:6:37","type":""}],"src":"7402:190:37"},{"body":{"nodeType":"YulBlock","src":"7678:113:37","statements":[{"body":{"nodeType":"YulBlock","src":"7724:26:37","statements":[{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"7733:6:37"},{"name":"value0","nodeType":"YulIdentifier","src":"7741:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7726:6:37"},"nodeType":"YulFunctionCall","src":"7726:22:37"},"nodeType":"YulExpressionStatement","src":"7726:22:37"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"7699:7:37"},{"name":"headStart","nodeType":"YulIdentifier","src":"7708:9:37"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7695:3:37"},"nodeType":"YulFunctionCall","src":"7695:23:37"},{"kind":"number","nodeType":"YulLiteral","src":"7720:2:37","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7691:3:37"},"nodeType":"YulFunctionCall","src":"7691:32:37"},"nodeType":"YulIf","src":"7688:2:37"},{"nodeType":"YulAssignment","src":"7759:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7775:9:37"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"7769:5:37"},"nodeType":"YulFunctionCall","src":"7769:16:37"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"7759:6:37"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7644:9:37","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"7655:7:37","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"7667:6:37","type":""}],"src":"7597:194:37"},{"body":{"nodeType":"YulBlock","src":"8060:942:37","statements":[{"body":{"nodeType":"YulBlock","src":"8107:26:37","statements":[{"expression":{"arguments":[{"name":"value6","nodeType":"YulIdentifier","src":"8116:6:37"},{"name":"value6","nodeType":"YulIdentifier","src":"8124:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8109:6:37"},"nodeType":"YulFunctionCall","src":"8109:22:37"},"nodeType":"YulExpressionStatement","src":"8109:22:37"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"8081:7:37"},{"name":"headStart","nodeType":"YulIdentifier","src":"8090:9:37"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"8077:3:37"},"nodeType":"YulFunctionCall","src":"8077:23:37"},{"kind":"number","nodeType":"YulLiteral","src":"8102:3:37","type":"","value":"384"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"8073:3:37"},"nodeType":"YulFunctionCall","src":"8073:33:37"},"nodeType":"YulIf","src":"8070:2:37"},{"nodeType":"YulVariableDeclaration","src":"8142:29:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8161:9:37"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8155:5:37"},"nodeType":"YulFunctionCall","src":"8155:16:37"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"8146:5:37","type":""}]},{"body":{"nodeType":"YulBlock","src":"8241:26:37","statements":[{"expression":{"arguments":[{"name":"value6","nodeType":"YulIdentifier","src":"8250:6:37"},{"name":"value6","nodeType":"YulIdentifier","src":"8258:6:37"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8243:6:37"},"nodeType":"YulFunctionCall","src":"8243:22:37"},"nodeType":"YulExpressionStatement","src":"8243:22:37"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"8193:5:37"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"8204:5:37"},{"kind":"number","nodeType":"YulLiteral","src":"8211:26:37","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"8200:3:37"},"nodeType":"YulFunctionCall","src":"8200:38:37"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"8190:2:37"},"nodeType":"YulFunctionCall","src":"8190:49:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"8183:6:37"},"nodeType":"YulFunctionCall","src":"8183:57:37"},"nodeType":"YulIf","src":"8180:2:37"},{"nodeType":"YulAssignment","src":"8276:15:37","value":{"name":"value","nodeType":"YulIdentifier","src":"8286:5:37"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"8276:6:37"}]},{"nodeType":"YulAssignment","src":"8300:59:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8344:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"8355:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8340:3:37"},"nodeType":"YulFunctionCall","src":"8340:18:37"}],"functionName":{"name":"abi_decode_address_fromMemory","nodeType":"YulIdentifier","src":"8310:29:37"},"nodeType":"YulFunctionCall","src":"8310:49:37"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"8300:6:37"}]},{"nodeType":"YulAssignment","src":"8368:59:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8412:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"8423:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8408:3:37"},"nodeType":"YulFunctionCall","src":"8408:18:37"}],"functionName":{"name":"abi_decode_address_fromMemory","nodeType":"YulIdentifier","src":"8378:29:37"},"nodeType":"YulFunctionCall","src":"8378:49:37"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"8368:6:37"}]},{"nodeType":"YulAssignment","src":"8436:59:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8480:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"8491:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8476:3:37"},"nodeType":"YulFunctionCall","src":"8476:18:37"}],"functionName":{"name":"abi_decode_address_fromMemory","nodeType":"YulIdentifier","src":"8446:29:37"},"nodeType":"YulFunctionCall","src":"8446:49:37"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"8436:6:37"}]},{"nodeType":"YulAssignment","src":"8504:59:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8547:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"8558:3:37","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8543:3:37"},"nodeType":"YulFunctionCall","src":"8543:19:37"}],"functionName":{"name":"abi_decode_uint24_fromMemory","nodeType":"YulIdentifier","src":"8514:28:37"},"nodeType":"YulFunctionCall","src":"8514:49:37"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"8504:6:37"}]},{"nodeType":"YulAssignment","src":"8572:58:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8614:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"8625:3:37","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8610:3:37"},"nodeType":"YulFunctionCall","src":"8610:19:37"}],"functionName":{"name":"abi_decode_int24_fromMemory","nodeType":"YulIdentifier","src":"8582:27:37"},"nodeType":"YulFunctionCall","src":"8582:48:37"},"variableNames":[{"name":"value5","nodeType":"YulIdentifier","src":"8572:6:37"}]},{"nodeType":"YulAssignment","src":"8639:58:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8681:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"8692:3:37","type":"","value":"192"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8677:3:37"},"nodeType":"YulFunctionCall","src":"8677:19:37"}],"functionName":{"name":"abi_decode_int24_fromMemory","nodeType":"YulIdentifier","src":"8649:27:37"},"nodeType":"YulFunctionCall","src":"8649:48:37"},"variableNames":[{"name":"value6","nodeType":"YulIdentifier","src":"8639:6:37"}]},{"nodeType":"YulAssignment","src":"8706:60:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8750:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"8761:3:37","type":"","value":"224"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8746:3:37"},"nodeType":"YulFunctionCall","src":"8746:19:37"}],"functionName":{"name":"abi_decode_uint128_fromMemory","nodeType":"YulIdentifier","src":"8716:29:37"},"nodeType":"YulFunctionCall","src":"8716:50:37"},"variableNames":[{"name":"value7","nodeType":"YulIdentifier","src":"8706:6:37"}]},{"nodeType":"YulAssignment","src":"8775:36:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8795:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"8806:3:37","type":"","value":"256"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8791:3:37"},"nodeType":"YulFunctionCall","src":"8791:19:37"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8785:5:37"},"nodeType":"YulFunctionCall","src":"8785:26:37"},"variableNames":[{"name":"value8","nodeType":"YulIdentifier","src":"8775:6:37"}]},{"nodeType":"YulAssignment","src":"8820:36:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8840:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"8851:3:37","type":"","value":"288"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8836:3:37"},"nodeType":"YulFunctionCall","src":"8836:19:37"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8830:5:37"},"nodeType":"YulFunctionCall","src":"8830:26:37"},"variableNames":[{"name":"value9","nodeType":"YulIdentifier","src":"8820:6:37"}]},{"nodeType":"YulAssignment","src":"8865:61:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8910:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"8921:3:37","type":"","value":"320"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8906:3:37"},"nodeType":"YulFunctionCall","src":"8906:19:37"}],"functionName":{"name":"abi_decode_uint128_fromMemory","nodeType":"YulIdentifier","src":"8876:29:37"},"nodeType":"YulFunctionCall","src":"8876:50:37"},"variableNames":[{"name":"value10","nodeType":"YulIdentifier","src":"8865:7:37"}]},{"nodeType":"YulAssignment","src":"8935:61:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8980:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"8991:3:37","type":"","value":"352"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8976:3:37"},"nodeType":"YulFunctionCall","src":"8976:19:37"}],"functionName":{"name":"abi_decode_uint128_fromMemory","nodeType":"YulIdentifier","src":"8946:29:37"},"nodeType":"YulFunctionCall","src":"8946:50:37"},"variableNames":[{"name":"value11","nodeType":"YulIdentifier","src":"8935:7:37"}]}]},"name":"abi_decode_tuple_t_uint96t_addresst_addresst_addresst_uint24t_int24t_int24t_uint128t_uint256t_uint256t_uint128t_uint128_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7936:9:37","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"7947:7:37","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"7959:6:37","type":""},{"name":"value1","nodeType":"YulTypedName","src":"7967:6:37","type":""},{"name":"value2","nodeType":"YulTypedName","src":"7975:6:37","type":""},{"name":"value3","nodeType":"YulTypedName","src":"7983:6:37","type":""},{"name":"value4","nodeType":"YulTypedName","src":"7991:6:37","type":""},{"name":"value5","nodeType":"YulTypedName","src":"7999:6:37","type":""},{"name":"value6","nodeType":"YulTypedName","src":"8007:6:37","type":""},{"name":"value7","nodeType":"YulTypedName","src":"8015:6:37","type":""},{"name":"value8","nodeType":"YulTypedName","src":"8023:6:37","type":""},{"name":"value9","nodeType":"YulTypedName","src":"8031:6:37","type":""},{"name":"value10","nodeType":"YulTypedName","src":"8039:7:37","type":""},{"name":"value11","nodeType":"YulTypedName","src":"8048:7:37","type":""}],"src":"7796:1206:37"},{"body":{"nodeType":"YulBlock","src":"9144:137:37","statements":[{"nodeType":"YulVariableDeclaration","src":"9154:27:37","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"9174:6:37"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9168:5:37"},"nodeType":"YulFunctionCall","src":"9168:13:37"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"9158:6:37","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"9216:6:37"},{"kind":"number","nodeType":"YulLiteral","src":"9224:4:37","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9212:3:37"},"nodeType":"YulFunctionCall","src":"9212:17:37"},{"name":"pos","nodeType":"YulIdentifier","src":"9231:3:37"},{"name":"length","nodeType":"YulIdentifier","src":"9236:6:37"}],"functionName":{"name":"copy_memory_to_memory","nodeType":"YulIdentifier","src":"9190:21:37"},"nodeType":"YulFunctionCall","src":"9190:53:37"},"nodeType":"YulExpressionStatement","src":"9190:53:37"},{"nodeType":"YulAssignment","src":"9252:23:37","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9263:3:37"},{"name":"length","nodeType":"YulIdentifier","src":"9268:6:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9259:3:37"},"nodeType":"YulFunctionCall","src":"9259:16:37"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"9252:3:37"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"9120:3:37","type":""},{"name":"value0","nodeType":"YulTypedName","src":"9125:6:37","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"9136:3:37","type":""}],"src":"9007:274:37"},{"body":{"nodeType":"YulBlock","src":"9387:102:37","statements":[{"nodeType":"YulAssignment","src":"9397:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9409:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"9420:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9405:3:37"},"nodeType":"YulFunctionCall","src":"9405:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9397:4:37"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9439:9:37"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"9454:6:37"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9470:3:37","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"9475:1:37","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"9466:3:37"},"nodeType":"YulFunctionCall","src":"9466:11:37"},{"kind":"number","nodeType":"YulLiteral","src":"9479:1:37","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9462:3:37"},"nodeType":"YulFunctionCall","src":"9462:19:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"9450:3:37"},"nodeType":"YulFunctionCall","src":"9450:32:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9432:6:37"},"nodeType":"YulFunctionCall","src":"9432:51:37"},"nodeType":"YulExpressionStatement","src":"9432:51:37"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9356:9:37","type":""},{"name":"value0","nodeType":"YulTypedName","src":"9367:6:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9378:4:37","type":""}],"src":"9286:203:37"},{"body":{"nodeType":"YulBlock","src":"9649:233:37","statements":[{"nodeType":"YulAssignment","src":"9659:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9671:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"9682:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9667:3:37"},"nodeType":"YulFunctionCall","src":"9667:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9659:4:37"}]},{"nodeType":"YulVariableDeclaration","src":"9694:29:37","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9712:3:37","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"9717:1:37","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"9708:3:37"},"nodeType":"YulFunctionCall","src":"9708:11:37"},{"kind":"number","nodeType":"YulLiteral","src":"9721:1:37","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9704:3:37"},"nodeType":"YulFunctionCall","src":"9704:19:37"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"9698:2:37","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9739:9:37"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"9754:6:37"},{"name":"_1","nodeType":"YulIdentifier","src":"9762:2:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"9750:3:37"},"nodeType":"YulFunctionCall","src":"9750:15:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9732:6:37"},"nodeType":"YulFunctionCall","src":"9732:34:37"},"nodeType":"YulExpressionStatement","src":"9732:34:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9786:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"9797:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9782:3:37"},"nodeType":"YulFunctionCall","src":"9782:18:37"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"9806:6:37"},{"name":"_1","nodeType":"YulIdentifier","src":"9814:2:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"9802:3:37"},"nodeType":"YulFunctionCall","src":"9802:15:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9775:6:37"},"nodeType":"YulFunctionCall","src":"9775:43:37"},"nodeType":"YulExpressionStatement","src":"9775:43:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9838:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"9849:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9834:3:37"},"nodeType":"YulFunctionCall","src":"9834:18:37"},{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"9858:6:37"},{"kind":"number","nodeType":"YulLiteral","src":"9866:8:37","type":"","value":"0xffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"9854:3:37"},"nodeType":"YulFunctionCall","src":"9854:21:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9827:6:37"},"nodeType":"YulFunctionCall","src":"9827:49:37"},"nodeType":"YulExpressionStatement","src":"9827:49:37"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint24__to_t_address_t_address_t_uint24__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9602:9:37","type":""},{"name":"value2","nodeType":"YulTypedName","src":"9613:6:37","type":""},{"name":"value1","nodeType":"YulTypedName","src":"9621:6:37","type":""},{"name":"value0","nodeType":"YulTypedName","src":"9629:6:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9640:4:37","type":""}],"src":"9494:388:37"},{"body":{"nodeType":"YulBlock","src":"10044:218:37","statements":[{"nodeType":"YulAssignment","src":"10054:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10066:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"10077:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10062:3:37"},"nodeType":"YulFunctionCall","src":"10062:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10054:4:37"}]},{"nodeType":"YulVariableDeclaration","src":"10089:29:37","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10107:3:37","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"10112:1:37","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"10103:3:37"},"nodeType":"YulFunctionCall","src":"10103:11:37"},{"kind":"number","nodeType":"YulLiteral","src":"10116:1:37","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"10099:3:37"},"nodeType":"YulFunctionCall","src":"10099:19:37"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"10093:2:37","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10134:9:37"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"10149:6:37"},{"name":"_1","nodeType":"YulIdentifier","src":"10157:2:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"10145:3:37"},"nodeType":"YulFunctionCall","src":"10145:15:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10127:6:37"},"nodeType":"YulFunctionCall","src":"10127:34:37"},"nodeType":"YulExpressionStatement","src":"10127:34:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10181:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"10192:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10177:3:37"},"nodeType":"YulFunctionCall","src":"10177:18:37"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"10201:6:37"},{"name":"_1","nodeType":"YulIdentifier","src":"10209:2:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"10197:3:37"},"nodeType":"YulFunctionCall","src":"10197:15:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10170:6:37"},"nodeType":"YulFunctionCall","src":"10170:43:37"},"nodeType":"YulExpressionStatement","src":"10170:43:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10233:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"10244:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10229:3:37"},"nodeType":"YulFunctionCall","src":"10229:18:37"},{"name":"value2","nodeType":"YulIdentifier","src":"10249:6:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10222:6:37"},"nodeType":"YulFunctionCall","src":"10222:34:37"},"nodeType":"YulExpressionStatement","src":"10222:34:37"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9997:9:37","type":""},{"name":"value2","nodeType":"YulTypedName","src":"10008:6:37","type":""},{"name":"value1","nodeType":"YulTypedName","src":"10016:6:37","type":""},{"name":"value0","nodeType":"YulTypedName","src":"10024:6:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10035:4:37","type":""}],"src":"9887:375:37"},{"body":{"nodeType":"YulBlock","src":"10424:244:37","statements":[{"nodeType":"YulAssignment","src":"10434:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10446:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"10457:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10442:3:37"},"nodeType":"YulFunctionCall","src":"10442:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10434:4:37"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10476:9:37"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"10491:6:37"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10507:3:37","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"10512:1:37","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"10503:3:37"},"nodeType":"YulFunctionCall","src":"10503:11:37"},{"kind":"number","nodeType":"YulLiteral","src":"10516:1:37","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"10499:3:37"},"nodeType":"YulFunctionCall","src":"10499:19:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"10487:3:37"},"nodeType":"YulFunctionCall","src":"10487:32:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10469:6:37"},"nodeType":"YulFunctionCall","src":"10469:51:37"},"nodeType":"YulExpressionStatement","src":"10469:51:37"},{"nodeType":"YulVariableDeclaration","src":"10529:29:37","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10547:3:37","type":"","value":"128"},{"kind":"number","nodeType":"YulLiteral","src":"10552:1:37","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"10543:3:37"},"nodeType":"YulFunctionCall","src":"10543:11:37"},{"kind":"number","nodeType":"YulLiteral","src":"10556:1:37","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"10539:3:37"},"nodeType":"YulFunctionCall","src":"10539:19:37"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"10533:2:37","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10578:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"10589:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10574:3:37"},"nodeType":"YulFunctionCall","src":"10574:18:37"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"10598:6:37"},{"name":"_1","nodeType":"YulIdentifier","src":"10606:2:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"10594:3:37"},"nodeType":"YulFunctionCall","src":"10594:15:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10567:6:37"},"nodeType":"YulFunctionCall","src":"10567:43:37"},"nodeType":"YulExpressionStatement","src":"10567:43:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10630:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"10641:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10626:3:37"},"nodeType":"YulFunctionCall","src":"10626:18:37"},{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"10650:6:37"},{"name":"_1","nodeType":"YulIdentifier","src":"10658:2:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"10646:3:37"},"nodeType":"YulFunctionCall","src":"10646:15:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10619:6:37"},"nodeType":"YulFunctionCall","src":"10619:43:37"},"nodeType":"YulExpressionStatement","src":"10619:43:37"}]},"name":"abi_encode_tuple_t_address_t_uint128_t_uint128__to_t_address_t_uint128_t_uint128__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10377:9:37","type":""},{"name":"value2","nodeType":"YulTypedName","src":"10388:6:37","type":""},{"name":"value1","nodeType":"YulTypedName","src":"10396:6:37","type":""},{"name":"value0","nodeType":"YulTypedName","src":"10404:6:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10415:4:37","type":""}],"src":"10267:401:37"},{"body":{"nodeType":"YulBlock","src":"10802:145:37","statements":[{"nodeType":"YulAssignment","src":"10812:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10824:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"10835:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10820:3:37"},"nodeType":"YulFunctionCall","src":"10820:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10812:4:37"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10854:9:37"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"10869:6:37"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10885:3:37","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"10890:1:37","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"10881:3:37"},"nodeType":"YulFunctionCall","src":"10881:11:37"},{"kind":"number","nodeType":"YulLiteral","src":"10894:1:37","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"10877:3:37"},"nodeType":"YulFunctionCall","src":"10877:19:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"10865:3:37"},"nodeType":"YulFunctionCall","src":"10865:32:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10847:6:37"},"nodeType":"YulFunctionCall","src":"10847:51:37"},"nodeType":"YulExpressionStatement","src":"10847:51:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10918:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"10929:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10914:3:37"},"nodeType":"YulFunctionCall","src":"10914:18:37"},{"name":"value1","nodeType":"YulIdentifier","src":"10934:6:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10907:6:37"},"nodeType":"YulFunctionCall","src":"10907:34:37"},"nodeType":"YulExpressionStatement","src":"10907:34:37"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10763:9:37","type":""},{"name":"value1","nodeType":"YulTypedName","src":"10774:6:37","type":""},{"name":"value0","nodeType":"YulTypedName","src":"10782:6:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10793:4:37","type":""}],"src":"10673:274:37"},{"body":{"nodeType":"YulBlock","src":"11047:92:37","statements":[{"nodeType":"YulAssignment","src":"11057:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11069:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"11080:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11065:3:37"},"nodeType":"YulFunctionCall","src":"11065:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11057:4:37"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11099:9:37"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"11124:6:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"11117:6:37"},"nodeType":"YulFunctionCall","src":"11117:14:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"11110:6:37"},"nodeType":"YulFunctionCall","src":"11110:22:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11092:6:37"},"nodeType":"YulFunctionCall","src":"11092:41:37"},"nodeType":"YulExpressionStatement","src":"11092:41:37"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11016:9:37","type":""},{"name":"value0","nodeType":"YulTypedName","src":"11027:6:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11038:4:37","type":""}],"src":"10952:187:37"},{"body":{"nodeType":"YulBlock","src":"11243:103:37","statements":[{"nodeType":"YulAssignment","src":"11253:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11265:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"11276:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11261:3:37"},"nodeType":"YulFunctionCall","src":"11261:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11253:4:37"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11295:9:37"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"11310:6:37"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"11322:3:37","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"11327:10:37","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"11318:3:37"},"nodeType":"YulFunctionCall","src":"11318:20:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"11306:3:37"},"nodeType":"YulFunctionCall","src":"11306:33:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11288:6:37"},"nodeType":"YulFunctionCall","src":"11288:52:37"},"nodeType":"YulExpressionStatement","src":"11288:52:37"}]},"name":"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11212:9:37","type":""},{"name":"value0","nodeType":"YulTypedName","src":"11223:6:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11234:4:37","type":""}],"src":"11144:202:37"},{"body":{"nodeType":"YulBlock","src":"11466:102:37","statements":[{"nodeType":"YulAssignment","src":"11476:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11488:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"11499:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11484:3:37"},"nodeType":"YulFunctionCall","src":"11484:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11476:4:37"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11518:9:37"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"11533:6:37"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"11549:3:37","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"11554:1:37","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"11545:3:37"},"nodeType":"YulFunctionCall","src":"11545:11:37"},{"kind":"number","nodeType":"YulLiteral","src":"11558:1:37","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"11541:3:37"},"nodeType":"YulFunctionCall","src":"11541:19:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"11529:3:37"},"nodeType":"YulFunctionCall","src":"11529:32:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11511:6:37"},"nodeType":"YulFunctionCall","src":"11511:51:37"},"nodeType":"YulExpressionStatement","src":"11511:51:37"}]},"name":"abi_encode_tuple_t_contract$_IERC20_$760__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11435:9:37","type":""},{"name":"value0","nodeType":"YulTypedName","src":"11446:6:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11457:4:37","type":""}],"src":"11351:217:37"},{"body":{"nodeType":"YulBlock","src":"11710:102:37","statements":[{"nodeType":"YulAssignment","src":"11720:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11732:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"11743:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11728:3:37"},"nodeType":"YulFunctionCall","src":"11728:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11720:4:37"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11762:9:37"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"11777:6:37"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"11793:3:37","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"11798:1:37","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"11789:3:37"},"nodeType":"YulFunctionCall","src":"11789:11:37"},{"kind":"number","nodeType":"YulLiteral","src":"11802:1:37","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"11785:3:37"},"nodeType":"YulFunctionCall","src":"11785:19:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"11773:3:37"},"nodeType":"YulFunctionCall","src":"11773:32:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11755:6:37"},"nodeType":"YulFunctionCall","src":"11755:51:37"},"nodeType":"YulExpressionStatement","src":"11755:51:37"}]},"name":"abi_encode_tuple_t_contract$_INonfungiblePositionManager_$4091__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11679:9:37","type":""},{"name":"value0","nodeType":"YulTypedName","src":"11690:6:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11701:4:37","type":""}],"src":"11573:239:37"},{"body":{"nodeType":"YulBlock","src":"11936:102:37","statements":[{"nodeType":"YulAssignment","src":"11946:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11958:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"11969:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11954:3:37"},"nodeType":"YulFunctionCall","src":"11954:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11946:4:37"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11988:9:37"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"12003:6:37"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"12019:3:37","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"12024:1:37","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"12015:3:37"},"nodeType":"YulFunctionCall","src":"12015:11:37"},{"kind":"number","nodeType":"YulLiteral","src":"12028:1:37","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"12011:3:37"},"nodeType":"YulFunctionCall","src":"12011:19:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"11999:3:37"},"nodeType":"YulFunctionCall","src":"11999:32:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11981:6:37"},"nodeType":"YulFunctionCall","src":"11981:51:37"},"nodeType":"YulExpressionStatement","src":"11981:51:37"}]},"name":"abi_encode_tuple_t_contract$_IRegistry_$4222__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11905:9:37","type":""},{"name":"value0","nodeType":"YulTypedName","src":"11916:6:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11927:4:37","type":""}],"src":"11817:221:37"},{"body":{"nodeType":"YulBlock","src":"12170:102:37","statements":[{"nodeType":"YulAssignment","src":"12180:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12192:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"12203:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12188:3:37"},"nodeType":"YulFunctionCall","src":"12188:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12180:4:37"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12222:9:37"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"12237:6:37"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"12253:3:37","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"12258:1:37","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"12249:3:37"},"nodeType":"YulFunctionCall","src":"12249:11:37"},{"kind":"number","nodeType":"YulLiteral","src":"12262:1:37","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"12245:3:37"},"nodeType":"YulFunctionCall","src":"12245:19:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"12233:3:37"},"nodeType":"YulFunctionCall","src":"12233:32:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12215:6:37"},"nodeType":"YulFunctionCall","src":"12215:51:37"},"nodeType":"YulExpressionStatement","src":"12215:51:37"}]},"name":"abi_encode_tuple_t_contract$_IUniswapV3Factory_$1660__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12139:9:37","type":""},{"name":"value0","nodeType":"YulTypedName","src":"12150:6:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12161:4:37","type":""}],"src":"12043:229:37"},{"body":{"nodeType":"YulBlock","src":"12401:102:37","statements":[{"nodeType":"YulAssignment","src":"12411:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12423:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"12434:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12419:3:37"},"nodeType":"YulFunctionCall","src":"12419:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12411:4:37"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12453:9:37"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"12468:6:37"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"12484:3:37","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"12489:1:37","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"12480:3:37"},"nodeType":"YulFunctionCall","src":"12480:11:37"},{"kind":"number","nodeType":"YulLiteral","src":"12493:1:37","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"12476:3:37"},"nodeType":"YulFunctionCall","src":"12476:19:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"12464:3:37"},"nodeType":"YulFunctionCall","src":"12464:32:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12446:6:37"},"nodeType":"YulFunctionCall","src":"12446:51:37"},"nodeType":"YulExpressionStatement","src":"12446:51:37"}]},"name":"abi_encode_tuple_t_contract$_IUniswapV3Pool_$1682__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12370:9:37","type":""},{"name":"value0","nodeType":"YulTypedName","src":"12381:6:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12392:4:37","type":""}],"src":"12277:226:37"},{"body":{"nodeType":"YulBlock","src":"12615:87:37","statements":[{"nodeType":"YulAssignment","src":"12625:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12637:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"12648:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12633:3:37"},"nodeType":"YulFunctionCall","src":"12633:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12625:4:37"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12667:9:37"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"12682:6:37"},{"kind":"number","nodeType":"YulLiteral","src":"12690:4:37","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"12678:3:37"},"nodeType":"YulFunctionCall","src":"12678:17:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12660:6:37"},"nodeType":"YulFunctionCall","src":"12660:36:37"},"nodeType":"YulExpressionStatement","src":"12660:36:37"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12584:9:37","type":""},{"name":"value0","nodeType":"YulTypedName","src":"12595:6:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12606:4:37","type":""}],"src":"12508:194:37"},{"body":{"nodeType":"YulBlock","src":"12828:262:37","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12845:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"12856:2:37","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12838:6:37"},"nodeType":"YulFunctionCall","src":"12838:21:37"},"nodeType":"YulExpressionStatement","src":"12838:21:37"},{"nodeType":"YulVariableDeclaration","src":"12868:27:37","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"12888:6:37"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"12882:5:37"},"nodeType":"YulFunctionCall","src":"12882:13:37"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"12872:6:37","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12915:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"12926:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12911:3:37"},"nodeType":"YulFunctionCall","src":"12911:18:37"},{"name":"length","nodeType":"YulIdentifier","src":"12931:6:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12904:6:37"},"nodeType":"YulFunctionCall","src":"12904:34:37"},"nodeType":"YulExpressionStatement","src":"12904:34:37"},{"expression":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"12973:6:37"},{"kind":"number","nodeType":"YulLiteral","src":"12981:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12969:3:37"},"nodeType":"YulFunctionCall","src":"12969:15:37"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12990:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"13001:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12986:3:37"},"nodeType":"YulFunctionCall","src":"12986:18:37"},{"name":"length","nodeType":"YulIdentifier","src":"13006:6:37"}],"functionName":{"name":"copy_memory_to_memory","nodeType":"YulIdentifier","src":"12947:21:37"},"nodeType":"YulFunctionCall","src":"12947:66:37"},"nodeType":"YulExpressionStatement","src":"12947:66:37"},{"nodeType":"YulAssignment","src":"13022:62:37","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13038:9:37"},{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"13057:6:37"},{"kind":"number","nodeType":"YulLiteral","src":"13065:2:37","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13053:3:37"},"nodeType":"YulFunctionCall","src":"13053:15:37"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13074:2:37","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"13070:3:37"},"nodeType":"YulFunctionCall","src":"13070:7:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"13049:3:37"},"nodeType":"YulFunctionCall","src":"13049:29:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13034:3:37"},"nodeType":"YulFunctionCall","src":"13034:45:37"},{"kind":"number","nodeType":"YulLiteral","src":"13081:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13030:3:37"},"nodeType":"YulFunctionCall","src":"13030:54:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13022:4:37"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12797:9:37","type":""},{"name":"value0","nodeType":"YulTypedName","src":"12808:6:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12819:4:37","type":""}],"src":"12707:383:37"},{"body":{"nodeType":"YulBlock","src":"13269:175:37","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13286:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"13297:2:37","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13279:6:37"},"nodeType":"YulFunctionCall","src":"13279:21:37"},"nodeType":"YulExpressionStatement","src":"13279:21:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13320:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"13331:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13316:3:37"},"nodeType":"YulFunctionCall","src":"13316:18:37"},{"kind":"number","nodeType":"YulLiteral","src":"13336:2:37","type":"","value":"25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13309:6:37"},"nodeType":"YulFunctionCall","src":"13309:30:37"},"nodeType":"YulExpressionStatement","src":"13309:30:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13359:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"13370:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13355:3:37"},"nodeType":"YulFunctionCall","src":"13355:18:37"},{"kind":"string","nodeType":"YulLiteral","src":"13375:27:37","type":"","value":"already in emergency mode"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13348:6:37"},"nodeType":"YulFunctionCall","src":"13348:55:37"},"nodeType":"YulExpressionStatement","src":"13348:55:37"},{"nodeType":"YulAssignment","src":"13412:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13424:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"13435:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13420:3:37"},"nodeType":"YulFunctionCall","src":"13420:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13412:4:37"}]}]},"name":"abi_encode_tuple_t_stringliteral_001c2f91d7f5b9f826ee8d160ab1223b43e8f4bdecc5987100aba307290ca66d__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13246:9:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"13260:4:37","type":""}],"src":"13095:349:37"},{"body":{"nodeType":"YulBlock","src":"13623:168:37","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13640:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"13651:2:37","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13633:6:37"},"nodeType":"YulFunctionCall","src":"13633:21:37"},"nodeType":"YulExpressionStatement","src":"13633:21:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13674:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"13685:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13670:3:37"},"nodeType":"YulFunctionCall","src":"13670:18:37"},{"kind":"number","nodeType":"YulLiteral","src":"13690:2:37","type":"","value":"18"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13663:6:37"},"nodeType":"YulFunctionCall","src":"13663:30:37"},"nodeType":"YulExpressionStatement","src":"13663:30:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13713:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"13724:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13709:3:37"},"nodeType":"YulFunctionCall","src":"13709:18:37"},{"kind":"string","nodeType":"YulLiteral","src":"13729:20:37","type":"","value":"pool doesn't exist"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13702:6:37"},"nodeType":"YulFunctionCall","src":"13702:48:37"},"nodeType":"YulExpressionStatement","src":"13702:48:37"},{"nodeType":"YulAssignment","src":"13759:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13771:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"13782:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13767:3:37"},"nodeType":"YulFunctionCall","src":"13767:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13759:4:37"}]}]},"name":"abi_encode_tuple_t_stringliteral_0e7bfa41936ea0f14228a1e1d47a40800594bfee7c0cb33646a51576af420e4a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13600:9:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"13614:4:37","type":""}],"src":"13449:342:37"},{"body":{"nodeType":"YulBlock","src":"13970:168:37","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13987:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"13998:2:37","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13980:6:37"},"nodeType":"YulFunctionCall","src":"13980:21:37"},"nodeType":"YulExpressionStatement","src":"13980:21:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14021:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"14032:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14017:3:37"},"nodeType":"YulFunctionCall","src":"14017:18:37"},{"kind":"number","nodeType":"YulLiteral","src":"14037:2:37","type":"","value":"18"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14010:6:37"},"nodeType":"YulFunctionCall","src":"14010:30:37"},"nodeType":"YulExpressionStatement","src":"14010:30:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14060:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"14071:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14056:3:37"},"nodeType":"YulFunctionCall","src":"14056:18:37"},{"kind":"string","nodeType":"YulLiteral","src":"14076:20:37","type":"","value":"only tokenid owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14049:6:37"},"nodeType":"YulFunctionCall","src":"14049:48:37"},"nodeType":"YulExpressionStatement","src":"14049:48:37"},{"nodeType":"YulAssignment","src":"14106:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14118:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"14129:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14114:3:37"},"nodeType":"YulFunctionCall","src":"14114:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14106:4:37"}]}]},"name":"abi_encode_tuple_t_stringliteral_1c4669339db1b9128f87a0e23d1b39c4647e9f6c39f951c47e41f9dced5e33fc__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13947:9:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"13961:4:37","type":""}],"src":"13796:342:37"},{"body":{"nodeType":"YulBlock","src":"14317:165:37","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14334:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"14345:2:37","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14327:6:37"},"nodeType":"YulFunctionCall","src":"14327:21:37"},"nodeType":"YulExpressionStatement","src":"14327:21:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14368:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"14379:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14364:3:37"},"nodeType":"YulFunctionCall","src":"14364:18:37"},{"kind":"number","nodeType":"YulLiteral","src":"14384:2:37","type":"","value":"15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14357:6:37"},"nodeType":"YulFunctionCall","src":"14357:30:37"},"nodeType":"YulExpressionStatement","src":"14357:30:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14407:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"14418:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14403:3:37"},"nodeType":"YulFunctionCall","src":"14403:18:37"},{"kind":"string","nodeType":"YulLiteral","src":"14423:17:37","type":"","value":"not gauge voter"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14396:6:37"},"nodeType":"YulFunctionCall","src":"14396:45:37"},"nodeType":"YulExpressionStatement","src":"14396:45:37"},{"nodeType":"YulAssignment","src":"14450:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14462:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"14473:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14458:3:37"},"nodeType":"YulFunctionCall","src":"14458:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14450:4:37"}]}]},"name":"abi_encode_tuple_t_stringliteral_25d3b055c11d0967ef8bb6b71cf1c4fc04b1e509ce03ce6dc51f45e899291e19__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14294:9:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14308:4:37","type":""}],"src":"14143:339:37"},{"body":{"nodeType":"YulBlock","src":"14661:177:37","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14678:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"14689:2:37","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14671:6:37"},"nodeType":"YulFunctionCall","src":"14671:21:37"},"nodeType":"YulExpressionStatement","src":"14671:21:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14712:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"14723:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14708:3:37"},"nodeType":"YulFunctionCall","src":"14708:18:37"},{"kind":"number","nodeType":"YulLiteral","src":"14728:2:37","type":"","value":"27"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14701:6:37"},"nodeType":"YulFunctionCall","src":"14701:30:37"},"nodeType":"YulExpressionStatement","src":"14701:30:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14751:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"14762:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14747:3:37"},"nodeType":"YulFunctionCall","src":"14747:18:37"},{"kind":"string","nodeType":"YulLiteral","src":"14767:29:37","type":"","value":"not called from nft manager"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14740:6:37"},"nodeType":"YulFunctionCall","src":"14740:57:37"},"nodeType":"YulExpressionStatement","src":"14740:57:37"},{"nodeType":"YulAssignment","src":"14806:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14818:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"14829:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14814:3:37"},"nodeType":"YulFunctionCall","src":"14814:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14806:4:37"}]}]},"name":"abi_encode_tuple_t_stringliteral_3e13bccce6b8496a226c03eda750fa8184bb0407e6d5afc9a4faf8b40fdd2150__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14638:9:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14652:4:37","type":""}],"src":"14487:351:37"},{"body":{"nodeType":"YulBlock","src":"15017:171:37","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15034:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"15045:2:37","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15027:6:37"},"nodeType":"YulFunctionCall","src":"15027:21:37"},"nodeType":"YulExpressionStatement","src":"15027:21:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15068:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"15079:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15064:3:37"},"nodeType":"YulFunctionCall","src":"15064:18:37"},{"kind":"number","nodeType":"YulLiteral","src":"15084:2:37","type":"","value":"21"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15057:6:37"},"nodeType":"YulFunctionCall","src":"15057:30:37"},"nodeType":"YulExpressionStatement","src":"15057:30:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15107:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"15118:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15103:3:37"},"nodeType":"YulFunctionCall","src":"15103:18:37"},{"kind":"string","nodeType":"YulLiteral","src":"15123:23:37","type":"","value":"liquidty not in range"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15096:6:37"},"nodeType":"YulFunctionCall","src":"15096:51:37"},"nodeType":"YulExpressionStatement","src":"15096:51:37"},{"nodeType":"YulAssignment","src":"15156:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15168:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"15179:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15164:3:37"},"nodeType":"YulFunctionCall","src":"15164:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15156:4:37"}]}]},"name":"abi_encode_tuple_t_stringliteral_64a1256a522864251d2b98ba0d8b2204db04a4d66b9d6078787508f543e6e57a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14994:9:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15008:4:37","type":""}],"src":"14843:345:37"},{"body":{"nodeType":"YulBlock","src":"15367:164:37","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15384:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"15395:2:37","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15377:6:37"},"nodeType":"YulFunctionCall","src":"15377:21:37"},"nodeType":"YulExpressionStatement","src":"15377:21:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15418:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"15429:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15414:3:37"},"nodeType":"YulFunctionCall","src":"15414:18:37"},{"kind":"number","nodeType":"YulLiteral","src":"15434:2:37","type":"","value":"14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15407:6:37"},"nodeType":"YulFunctionCall","src":"15407:30:37"},"nodeType":"YulExpressionStatement","src":"15407:30:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15457:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"15468:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15453:3:37"},"nodeType":"YulFunctionCall","src":"15453:18:37"},{"kind":"string","nodeType":"YulLiteral","src":"15473:16:37","type":"","value":"liquidity is 0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15446:6:37"},"nodeType":"YulFunctionCall","src":"15446:44:37"},"nodeType":"YulExpressionStatement","src":"15446:44:37"},{"nodeType":"YulAssignment","src":"15499:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15511:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"15522:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15507:3:37"},"nodeType":"YulFunctionCall","src":"15507:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15499:4:37"}]}]},"name":"abi_encode_tuple_t_stringliteral_696ff4afb8f94b9e0615b62dd4c79972c046448a8e5683291d4d2bbc3e2e7b4a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15344:9:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15358:4:37","type":""}],"src":"15193:338:37"},{"body":{"nodeType":"YulBlock","src":"15710:182:37","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15727:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"15738:2:37","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15720:6:37"},"nodeType":"YulFunctionCall","src":"15720:21:37"},"nodeType":"YulExpressionStatement","src":"15720:21:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15761:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"15772:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15757:3:37"},"nodeType":"YulFunctionCall","src":"15757:18:37"},{"kind":"number","nodeType":"YulLiteral","src":"15777:2:37","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15750:6:37"},"nodeType":"YulFunctionCall","src":"15750:30:37"},"nodeType":"YulExpressionStatement","src":"15750:30:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15800:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"15811:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15796:3:37"},"nodeType":"YulFunctionCall","src":"15796:18:37"},{"kind":"string","nodeType":"YulLiteral","src":"15816:34:37","type":"","value":"token pool is not the right pool"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15789:6:37"},"nodeType":"YulFunctionCall","src":"15789:62:37"},"nodeType":"YulExpressionStatement","src":"15789:62:37"},{"nodeType":"YulAssignment","src":"15860:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15872:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"15883:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15868:3:37"},"nodeType":"YulFunctionCall","src":"15868:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15860:4:37"}]}]},"name":"abi_encode_tuple_t_stringliteral_6c6fdad9528ba94a432ea0119e61556a6886bc009e245446573b9ddd893623b8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15687:9:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15701:4:37","type":""}],"src":"15536:356:37"},{"body":{"nodeType":"YulBlock","src":"16071:174:37","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16088:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"16099:2:37","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16081:6:37"},"nodeType":"YulFunctionCall","src":"16081:21:37"},"nodeType":"YulExpressionStatement","src":"16081:21:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16122:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"16133:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16118:3:37"},"nodeType":"YulFunctionCall","src":"16118:18:37"},{"kind":"number","nodeType":"YulLiteral","src":"16138:2:37","type":"","value":"24"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16111:6:37"},"nodeType":"YulFunctionCall","src":"16111:30:37"},"nodeType":"YulExpressionStatement","src":"16111:30:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16161:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"16172:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16157:3:37"},"nodeType":"YulFunctionCall","src":"16157:18:37"},{"kind":"string","nodeType":"YulLiteral","src":"16177:26:37","type":"","value":"cannot stake 0 liquidity"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16150:6:37"},"nodeType":"YulFunctionCall","src":"16150:54:37"},"nodeType":"YulExpressionStatement","src":"16150:54:37"},{"nodeType":"YulAssignment","src":"16213:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16225:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"16236:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16221:3:37"},"nodeType":"YulFunctionCall","src":"16221:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16213:4:37"}]}]},"name":"abi_encode_tuple_t_stringliteral_7163d19ed0e499d5d9dbc4995b32af0873a5d59f79a456bb47421efa2460860f__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16048:9:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16062:4:37","type":""}],"src":"15897:348:37"},{"body":{"nodeType":"YulBlock","src":"16424:236:37","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16441:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"16452:2:37","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16434:6:37"},"nodeType":"YulFunctionCall","src":"16434:21:37"},"nodeType":"YulExpressionStatement","src":"16434:21:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16475:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"16486:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16471:3:37"},"nodeType":"YulFunctionCall","src":"16471:18:37"},{"kind":"number","nodeType":"YulLiteral","src":"16491:2:37","type":"","value":"46"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16464:6:37"},"nodeType":"YulFunctionCall","src":"16464:30:37"},"nodeType":"YulExpressionStatement","src":"16464:30:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16514:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"16525:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16510:3:37"},"nodeType":"YulFunctionCall","src":"16510:18:37"},{"kind":"string","nodeType":"YulLiteral","src":"16530:34:37","type":"","value":"Initializable: contract is alrea"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16503:6:37"},"nodeType":"YulFunctionCall","src":"16503:62:37"},"nodeType":"YulExpressionStatement","src":"16503:62:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16585:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"16596:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16581:3:37"},"nodeType":"YulFunctionCall","src":"16581:18:37"},{"kind":"string","nodeType":"YulLiteral","src":"16601:16:37","type":"","value":"dy initialized"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16574:6:37"},"nodeType":"YulFunctionCall","src":"16574:44:37"},"nodeType":"YulExpressionStatement","src":"16574:44:37"},{"nodeType":"YulAssignment","src":"16627:27:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16639:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"16650:3:37","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16635:3:37"},"nodeType":"YulFunctionCall","src":"16635:19:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16627:4:37"}]}]},"name":"abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16401:9:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16415:4:37","type":""}],"src":"16250:410:37"},{"body":{"nodeType":"YulBlock","src":"16839:167:37","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16856:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"16867:2:37","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16849:6:37"},"nodeType":"YulFunctionCall","src":"16849:21:37"},"nodeType":"YulExpressionStatement","src":"16849:21:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16890:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"16901:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16886:3:37"},"nodeType":"YulFunctionCall","src":"16886:18:37"},{"kind":"number","nodeType":"YulLiteral","src":"16906:2:37","type":"","value":"17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16879:6:37"},"nodeType":"YulFunctionCall","src":"16879:30:37"},"nodeType":"YulExpressionStatement","src":"16879:30:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16929:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"16940:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16925:3:37"},"nodeType":"YulFunctionCall","src":"16925:18:37"},{"kind":"string","nodeType":"YulLiteral","src":"16945:19:37","type":"","value":"Cannot withdraw 0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16918:6:37"},"nodeType":"YulFunctionCall","src":"16918:47:37"},"nodeType":"YulExpressionStatement","src":"16918:47:37"},{"nodeType":"YulAssignment","src":"16974:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16986:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"16997:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16982:3:37"},"nodeType":"YulFunctionCall","src":"16982:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16974:4:37"}]}]},"name":"abi_encode_tuple_t_stringliteral_8d85b8e7f4404d04d93e8d532ad219ceeba0becfbc18622bad46b31e08b1f0b0__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16816:9:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16830:4:37","type":""}],"src":"16665:341:37"},{"body":{"nodeType":"YulBlock","src":"17185:162:37","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17202:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"17213:2:37","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17195:6:37"},"nodeType":"YulFunctionCall","src":"17195:21:37"},"nodeType":"YulExpressionStatement","src":"17195:21:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17236:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"17247:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17232:3:37"},"nodeType":"YulFunctionCall","src":"17232:18:37"},{"kind":"number","nodeType":"YulLiteral","src":"17252:2:37","type":"","value":"12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17225:6:37"},"nodeType":"YulFunctionCall","src":"17225:30:37"},"nodeType":"YulExpressionStatement","src":"17225:30:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17275:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"17286:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17271:3:37"},"nodeType":"YulFunctionCall","src":"17271:18:37"},{"kind":"string","nodeType":"YulLiteral","src":"17291:14:37","type":"","value":"not timelock"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17264:6:37"},"nodeType":"YulFunctionCall","src":"17264:42:37"},"nodeType":"YulExpressionStatement","src":"17264:42:37"},{"nodeType":"YulAssignment","src":"17315:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17327:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"17338:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17323:3:37"},"nodeType":"YulFunctionCall","src":"17323:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17315:4:37"}]}]},"name":"abi_encode_tuple_t_stringliteral_9cc68d25774760b7dce2e9971365bd17252e55dfa1873462c3da5524c9895468__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17162:9:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17176:4:37","type":""}],"src":"17011:336:37"},{"body":{"nodeType":"YulBlock","src":"17526:174:37","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17543:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"17554:2:37","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17536:6:37"},"nodeType":"YulFunctionCall","src":"17536:21:37"},"nodeType":"YulExpressionStatement","src":"17536:21:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17577:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"17588:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17573:3:37"},"nodeType":"YulFunctionCall","src":"17573:18:37"},{"kind":"number","nodeType":"YulLiteral","src":"17593:2:37","type":"","value":"24"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17566:6:37"},"nodeType":"YulFunctionCall","src":"17566:30:37"},"nodeType":"YulExpressionStatement","src":"17566:30:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17616:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"17627:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17612:3:37"},"nodeType":"YulFunctionCall","src":"17612:18:37"},{"kind":"string","nodeType":"YulLiteral","src":"17632:26:37","type":"","value":"Provided reward too high"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17605:6:37"},"nodeType":"YulFunctionCall","src":"17605:54:37"},"nodeType":"YulExpressionStatement","src":"17605:54:37"},{"nodeType":"YulAssignment","src":"17668:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17680:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"17691:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17676:3:37"},"nodeType":"YulFunctionCall","src":"17676:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17668:4:37"}]}]},"name":"abi_encode_tuple_t_stringliteral_af294828ccb7807394ab9c640e14eb2534ed0e75bb2e1346f1bb81dd84cda810__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17503:9:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17517:4:37","type":""}],"src":"17352:348:37"},{"body":{"nodeType":"YulBlock","src":"17879:170:37","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17896:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"17907:2:37","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17889:6:37"},"nodeType":"YulFunctionCall","src":"17889:21:37"},"nodeType":"YulExpressionStatement","src":"17889:21:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17930:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"17941:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17926:3:37"},"nodeType":"YulFunctionCall","src":"17926:18:37"},{"kind":"number","nodeType":"YulLiteral","src":"17946:2:37","type":"","value":"20"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17919:6:37"},"nodeType":"YulFunctionCall","src":"17919:30:37"},"nodeType":"YulExpressionStatement","src":"17919:30:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17969:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"17980:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17965:3:37"},"nodeType":"YulFunctionCall","src":"17965:18:37"},{"kind":"string","nodeType":"YulLiteral","src":"17985:22:37","type":"","value":"stake does not exist"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17958:6:37"},"nodeType":"YulFunctionCall","src":"17958:50:37"},"nodeType":"YulExpressionStatement","src":"17958:50:37"},{"nodeType":"YulAssignment","src":"18017:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18029:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"18040:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18025:3:37"},"nodeType":"YulFunctionCall","src":"18025:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18017:4:37"}]}]},"name":"abi_encode_tuple_t_stringliteral_b053777096494c68d763d5980fe57eef5a024316a3cb689ed805fab926222805__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17856:9:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17870:4:37","type":""}],"src":"17705:344:37"},{"body":{"nodeType":"YulBlock","src":"18228:171:37","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18245:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"18256:2:37","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18238:6:37"},"nodeType":"YulFunctionCall","src":"18238:21:37"},"nodeType":"YulExpressionStatement","src":"18238:21:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18279:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"18290:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18275:3:37"},"nodeType":"YulFunctionCall","src":"18275:18:37"},{"kind":"number","nodeType":"YulLiteral","src":"18295:2:37","type":"","value":"21"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18268:6:37"},"nodeType":"YulFunctionCall","src":"18268:30:37"},"nodeType":"YulExpressionStatement","src":"18268:30:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18318:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"18329:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18314:3:37"},"nodeType":"YulFunctionCall","src":"18314:18:37"},{"kind":"string","nodeType":"YulLiteral","src":"18334:23:37","type":"","value":"not in emergency mode"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18307:6:37"},"nodeType":"YulFunctionCall","src":"18307:51:37"},"nodeType":"YulExpressionStatement","src":"18307:51:37"},{"nodeType":"YulAssignment","src":"18367:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18379:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"18390:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18375:3:37"},"nodeType":"YulFunctionCall","src":"18375:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18367:4:37"}]}]},"name":"abi_encode_tuple_t_stringliteral_df5ccee6bec62de6a91a7261842116168780a7dde172cbff918d08ca37634eae__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"18205:9:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"18219:4:37","type":""}],"src":"18054:345:37"},{"body":{"nodeType":"YulBlock","src":"18578:181:37","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18595:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"18606:2:37","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18588:6:37"},"nodeType":"YulFunctionCall","src":"18588:21:37"},"nodeType":"YulExpressionStatement","src":"18588:21:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18629:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"18640:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18625:3:37"},"nodeType":"YulFunctionCall","src":"18625:18:37"},{"kind":"number","nodeType":"YulLiteral","src":"18645:2:37","type":"","value":"31"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18618:6:37"},"nodeType":"YulFunctionCall","src":"18618:30:37"},"nodeType":"YulExpressionStatement","src":"18618:30:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18668:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"18679:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18664:3:37"},"nodeType":"YulFunctionCall","src":"18664:18:37"},{"kind":"string","nodeType":"YulLiteral","src":"18684:33:37","type":"","value":"ReentrancyGuard: reentrant call"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18657:6:37"},"nodeType":"YulFunctionCall","src":"18657:61:37"},"nodeType":"YulExpressionStatement","src":"18657:61:37"},{"nodeType":"YulAssignment","src":"18727:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18739:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"18750:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18735:3:37"},"nodeType":"YulFunctionCall","src":"18735:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18727:4:37"}]}]},"name":"abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"18555:9:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"18569:4:37","type":""}],"src":"18404:355:37"},{"body":{"nodeType":"YulBlock","src":"18865:102:37","statements":[{"nodeType":"YulAssignment","src":"18875:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18887:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"18898:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18883:3:37"},"nodeType":"YulFunctionCall","src":"18883:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18875:4:37"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18917:9:37"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"18932:6:37"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18948:3:37","type":"","value":"128"},{"kind":"number","nodeType":"YulLiteral","src":"18953:1:37","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"18944:3:37"},"nodeType":"YulFunctionCall","src":"18944:11:37"},{"kind":"number","nodeType":"YulLiteral","src":"18957:1:37","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"18940:3:37"},"nodeType":"YulFunctionCall","src":"18940:19:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"18928:3:37"},"nodeType":"YulFunctionCall","src":"18928:32:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18910:6:37"},"nodeType":"YulFunctionCall","src":"18910:51:37"},"nodeType":"YulExpressionStatement","src":"18910:51:37"}]},"name":"abi_encode_tuple_t_uint128__to_t_uint128__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"18834:9:37","type":""},{"name":"value0","nodeType":"YulTypedName","src":"18845:6:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"18856:4:37","type":""}],"src":"18764:203:37"},{"body":{"nodeType":"YulBlock","src":"19073:76:37","statements":[{"nodeType":"YulAssignment","src":"19083:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19095:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"19106:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19091:3:37"},"nodeType":"YulFunctionCall","src":"19091:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19083:4:37"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19125:9:37"},{"name":"value0","nodeType":"YulIdentifier","src":"19136:6:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19118:6:37"},"nodeType":"YulFunctionCall","src":"19118:25:37"},"nodeType":"YulExpressionStatement","src":"19118:25:37"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"19042:9:37","type":""},{"name":"value0","nodeType":"YulTypedName","src":"19053:6:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"19064:4:37","type":""}],"src":"18972:177:37"},{"body":{"nodeType":"YulBlock","src":"19311:218:37","statements":[{"nodeType":"YulAssignment","src":"19321:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19333:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"19344:2:37","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19329:3:37"},"nodeType":"YulFunctionCall","src":"19329:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19321:4:37"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19363:9:37"},{"name":"value0","nodeType":"YulIdentifier","src":"19374:6:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19356:6:37"},"nodeType":"YulFunctionCall","src":"19356:25:37"},"nodeType":"YulExpressionStatement","src":"19356:25:37"},{"nodeType":"YulVariableDeclaration","src":"19390:29:37","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19408:3:37","type":"","value":"128"},{"kind":"number","nodeType":"YulLiteral","src":"19413:1:37","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"19404:3:37"},"nodeType":"YulFunctionCall","src":"19404:11:37"},{"kind":"number","nodeType":"YulLiteral","src":"19417:1:37","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"19400:3:37"},"nodeType":"YulFunctionCall","src":"19400:19:37"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"19394:2:37","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19439:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"19450:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19435:3:37"},"nodeType":"YulFunctionCall","src":"19435:18:37"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"19459:6:37"},{"name":"_1","nodeType":"YulIdentifier","src":"19467:2:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"19455:3:37"},"nodeType":"YulFunctionCall","src":"19455:15:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19428:6:37"},"nodeType":"YulFunctionCall","src":"19428:43:37"},"nodeType":"YulExpressionStatement","src":"19428:43:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19491:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"19502:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19487:3:37"},"nodeType":"YulFunctionCall","src":"19487:18:37"},{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"19511:6:37"},{"name":"_1","nodeType":"YulIdentifier","src":"19519:2:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"19507:3:37"},"nodeType":"YulFunctionCall","src":"19507:15:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19480:6:37"},"nodeType":"YulFunctionCall","src":"19480:43:37"},"nodeType":"YulExpressionStatement","src":"19480:43:37"}]},"name":"abi_encode_tuple_t_uint256_t_uint128_t_uint128__to_t_uint256_t_uint128_t_uint128__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"19264:9:37","type":""},{"name":"value2","nodeType":"YulTypedName","src":"19275:6:37","type":""},{"name":"value1","nodeType":"YulTypedName","src":"19283:6:37","type":""},{"name":"value0","nodeType":"YulTypedName","src":"19291:6:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"19302:4:37","type":""}],"src":"19154:375:37"},{"body":{"nodeType":"YulBlock","src":"19663:119:37","statements":[{"nodeType":"YulAssignment","src":"19673:26:37","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19685:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"19696:2:37","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19681:3:37"},"nodeType":"YulFunctionCall","src":"19681:18:37"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19673:4:37"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19715:9:37"},{"name":"value0","nodeType":"YulIdentifier","src":"19726:6:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19708:6:37"},"nodeType":"YulFunctionCall","src":"19708:25:37"},"nodeType":"YulExpressionStatement","src":"19708:25:37"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19753:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"19764:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19749:3:37"},"nodeType":"YulFunctionCall","src":"19749:18:37"},{"name":"value1","nodeType":"YulIdentifier","src":"19769:6:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19742:6:37"},"nodeType":"YulFunctionCall","src":"19742:34:37"},"nodeType":"YulExpressionStatement","src":"19742:34:37"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"19624:9:37","type":""},{"name":"value1","nodeType":"YulTypedName","src":"19635:6:37","type":""},{"name":"value0","nodeType":"YulTypedName","src":"19643:6:37","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"19654:4:37","type":""}],"src":"19534:248:37"},{"body":{"nodeType":"YulBlock","src":"19832:230:37","statements":[{"nodeType":"YulAssignment","src":"19842:19:37","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19858:2:37","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"19852:5:37"},"nodeType":"YulFunctionCall","src":"19852:9:37"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"19842:6:37"}]},{"nodeType":"YulVariableDeclaration","src":"19870:58:37","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"19892:6:37"},{"arguments":[{"arguments":[{"name":"size","nodeType":"YulIdentifier","src":"19908:4:37"},{"kind":"number","nodeType":"YulLiteral","src":"19914:2:37","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19904:3:37"},"nodeType":"YulFunctionCall","src":"19904:13:37"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19923:2:37","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"19919:3:37"},"nodeType":"YulFunctionCall","src":"19919:7:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"19900:3:37"},"nodeType":"YulFunctionCall","src":"19900:27:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19888:3:37"},"nodeType":"YulFunctionCall","src":"19888:40:37"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"19874:10:37","type":""}]},{"body":{"nodeType":"YulBlock","src":"20003:22:37","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"20005:16:37"},"nodeType":"YulFunctionCall","src":"20005:18:37"},"nodeType":"YulExpressionStatement","src":"20005:18:37"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"19946:10:37"},{"kind":"number","nodeType":"YulLiteral","src":"19958:18:37","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"19943:2:37"},"nodeType":"YulFunctionCall","src":"19943:34:37"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"19982:10:37"},{"name":"memPtr","nodeType":"YulIdentifier","src":"19994:6:37"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"19979:2:37"},"nodeType":"YulFunctionCall","src":"19979:22:37"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"19940:2:37"},"nodeType":"YulFunctionCall","src":"19940:62:37"},"nodeType":"YulIf","src":"19937:2:37"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"20041:2:37","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"20045:10:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20034:6:37"},"nodeType":"YulFunctionCall","src":"20034:22:37"},"nodeType":"YulExpressionStatement","src":"20034:22:37"}]},"name":"allocate_memory","nodeType":"YulFunctionDefinition","parameters":[{"name":"size","nodeType":"YulTypedName","src":"19812:4:37","type":""}],"returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"19821:6:37","type":""}],"src":"19787:275:37"},{"body":{"nodeType":"YulBlock","src":"20115:190:37","statements":[{"nodeType":"YulVariableDeclaration","src":"20125:29:37","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"20143:3:37","type":"","value":"128"},{"kind":"number","nodeType":"YulLiteral","src":"20148:1:37","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"20139:3:37"},"nodeType":"YulFunctionCall","src":"20139:11:37"},{"kind":"number","nodeType":"YulLiteral","src":"20152:1:37","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"20135:3:37"},"nodeType":"YulFunctionCall","src":"20135:19:37"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"20129:2:37","type":""}]},{"nodeType":"YulVariableDeclaration","src":"20163:21:37","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"20178:1:37"},{"name":"_1","nodeType":"YulIdentifier","src":"20181:2:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"20174:3:37"},"nodeType":"YulFunctionCall","src":"20174:10:37"},"variables":[{"name":"x_1","nodeType":"YulTypedName","src":"20167:3:37","type":""}]},{"nodeType":"YulVariableDeclaration","src":"20193:21:37","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"20208:1:37"},{"name":"_1","nodeType":"YulIdentifier","src":"20211:2:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"20204:3:37"},"nodeType":"YulFunctionCall","src":"20204:10:37"},"variables":[{"name":"y_1","nodeType":"YulTypedName","src":"20197:3:37","type":""}]},{"body":{"nodeType":"YulBlock","src":"20248:22:37","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"20250:16:37"},"nodeType":"YulFunctionCall","src":"20250:18:37"},"nodeType":"YulExpressionStatement","src":"20250:18:37"}]},"condition":{"arguments":[{"name":"x_1","nodeType":"YulIdentifier","src":"20229:3:37"},{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"20238:2:37"},{"name":"y_1","nodeType":"YulIdentifier","src":"20242:3:37"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"20234:3:37"},"nodeType":"YulFunctionCall","src":"20234:12:37"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"20226:2:37"},"nodeType":"YulFunctionCall","src":"20226:21:37"},"nodeType":"YulIf","src":"20223:2:37"},{"nodeType":"YulAssignment","src":"20279:20:37","value":{"arguments":[{"name":"x_1","nodeType":"YulIdentifier","src":"20290:3:37"},{"name":"y_1","nodeType":"YulIdentifier","src":"20295:3:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20286:3:37"},"nodeType":"YulFunctionCall","src":"20286:13:37"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"20279:3:37"}]}]},"name":"checked_add_t_uint128","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"20098:1:37","type":""},{"name":"y","nodeType":"YulTypedName","src":"20101:1:37","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"20107:3:37","type":""}],"src":"20067:238:37"},{"body":{"nodeType":"YulBlock","src":"20358:80:37","statements":[{"body":{"nodeType":"YulBlock","src":"20385:22:37","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"20387:16:37"},"nodeType":"YulFunctionCall","src":"20387:18:37"},"nodeType":"YulExpressionStatement","src":"20387:18:37"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"20374:1:37"},{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"20381:1:37"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"20377:3:37"},"nodeType":"YulFunctionCall","src":"20377:6:37"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"20371:2:37"},"nodeType":"YulFunctionCall","src":"20371:13:37"},"nodeType":"YulIf","src":"20368:2:37"},{"nodeType":"YulAssignment","src":"20416:16:37","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"20427:1:37"},{"name":"y","nodeType":"YulIdentifier","src":"20430:1:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20423:3:37"},"nodeType":"YulFunctionCall","src":"20423:9:37"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"20416:3:37"}]}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"20341:1:37","type":""},{"name":"y","nodeType":"YulTypedName","src":"20344:1:37","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"20350:3:37","type":""}],"src":"20310:128:37"},{"body":{"nodeType":"YulBlock","src":"20489:155:37","statements":[{"nodeType":"YulVariableDeclaration","src":"20499:29:37","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"20517:3:37","type":"","value":"128"},{"kind":"number","nodeType":"YulLiteral","src":"20522:1:37","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"20513:3:37"},"nodeType":"YulFunctionCall","src":"20513:11:37"},{"kind":"number","nodeType":"YulLiteral","src":"20526:1:37","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"20509:3:37"},"nodeType":"YulFunctionCall","src":"20509:19:37"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"20503:2:37","type":""}]},{"nodeType":"YulVariableDeclaration","src":"20537:21:37","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"20552:1:37"},{"name":"_1","nodeType":"YulIdentifier","src":"20555:2:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"20548:3:37"},"nodeType":"YulFunctionCall","src":"20548:10:37"},"variables":[{"name":"y_1","nodeType":"YulTypedName","src":"20541:3:37","type":""}]},{"body":{"nodeType":"YulBlock","src":"20582:22:37","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nodeType":"YulIdentifier","src":"20584:16:37"},"nodeType":"YulFunctionCall","src":"20584:18:37"},"nodeType":"YulExpressionStatement","src":"20584:18:37"}]},"condition":{"arguments":[{"name":"y_1","nodeType":"YulIdentifier","src":"20577:3:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"20570:6:37"},"nodeType":"YulFunctionCall","src":"20570:11:37"},"nodeType":"YulIf","src":"20567:2:37"},{"nodeType":"YulAssignment","src":"20613:25:37","value":{"arguments":[{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"20626:1:37"},{"name":"_1","nodeType":"YulIdentifier","src":"20629:2:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"20622:3:37"},"nodeType":"YulFunctionCall","src":"20622:10:37"},{"name":"y_1","nodeType":"YulIdentifier","src":"20634:3:37"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"20618:3:37"},"nodeType":"YulFunctionCall","src":"20618:20:37"},"variableNames":[{"name":"r","nodeType":"YulIdentifier","src":"20613:1:37"}]}]},"name":"checked_div_t_uint128","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"20474:1:37","type":""},{"name":"y","nodeType":"YulTypedName","src":"20477:1:37","type":""}],"returnVariables":[{"name":"r","nodeType":"YulTypedName","src":"20483:1:37","type":""}],"src":"20443:201:37"},{"body":{"nodeType":"YulBlock","src":"20695:74:37","statements":[{"body":{"nodeType":"YulBlock","src":"20718:22:37","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nodeType":"YulIdentifier","src":"20720:16:37"},"nodeType":"YulFunctionCall","src":"20720:18:37"},"nodeType":"YulExpressionStatement","src":"20720:18:37"}]},"condition":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"20715:1:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"20708:6:37"},"nodeType":"YulFunctionCall","src":"20708:9:37"},"nodeType":"YulIf","src":"20705:2:37"},{"nodeType":"YulAssignment","src":"20749:14:37","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"20758:1:37"},{"name":"y","nodeType":"YulIdentifier","src":"20761:1:37"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"20754:3:37"},"nodeType":"YulFunctionCall","src":"20754:9:37"},"variableNames":[{"name":"r","nodeType":"YulIdentifier","src":"20749:1:37"}]}]},"name":"checked_div_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"20680:1:37","type":""},{"name":"y","nodeType":"YulTypedName","src":"20683:1:37","type":""}],"returnVariables":[{"name":"r","nodeType":"YulTypedName","src":"20689:1:37","type":""}],"src":"20649:120:37"},{"body":{"nodeType":"YulBlock","src":"20826:220:37","statements":[{"nodeType":"YulVariableDeclaration","src":"20836:29:37","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"20854:3:37","type":"","value":"128"},{"kind":"number","nodeType":"YulLiteral","src":"20859:1:37","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"20850:3:37"},"nodeType":"YulFunctionCall","src":"20850:11:37"},{"kind":"number","nodeType":"YulLiteral","src":"20863:1:37","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"20846:3:37"},"nodeType":"YulFunctionCall","src":"20846:19:37"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"20840:2:37","type":""}]},{"nodeType":"YulVariableDeclaration","src":"20874:21:37","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"20889:1:37"},{"name":"_1","nodeType":"YulIdentifier","src":"20892:2:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"20885:3:37"},"nodeType":"YulFunctionCall","src":"20885:10:37"},"variables":[{"name":"x_1","nodeType":"YulTypedName","src":"20878:3:37","type":""}]},{"nodeType":"YulVariableDeclaration","src":"20904:21:37","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"20919:1:37"},{"name":"_1","nodeType":"YulIdentifier","src":"20922:2:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"20915:3:37"},"nodeType":"YulFunctionCall","src":"20915:10:37"},"variables":[{"name":"y_1","nodeType":"YulTypedName","src":"20908:3:37","type":""}]},{"body":{"nodeType":"YulBlock","src":"20985:22:37","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"20987:16:37"},"nodeType":"YulFunctionCall","src":"20987:18:37"},"nodeType":"YulExpressionStatement","src":"20987:18:37"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x_1","nodeType":"YulIdentifier","src":"20955:3:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"20948:6:37"},"nodeType":"YulFunctionCall","src":"20948:11:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"20941:6:37"},"nodeType":"YulFunctionCall","src":"20941:19:37"},{"arguments":[{"name":"y_1","nodeType":"YulIdentifier","src":"20965:3:37"},{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"20974:2:37"},{"name":"x_1","nodeType":"YulIdentifier","src":"20978:3:37"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"20970:3:37"},"nodeType":"YulFunctionCall","src":"20970:12:37"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"20962:2:37"},"nodeType":"YulFunctionCall","src":"20962:21:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"20937:3:37"},"nodeType":"YulFunctionCall","src":"20937:47:37"},"nodeType":"YulIf","src":"20934:2:37"},{"nodeType":"YulAssignment","src":"21016:24:37","value":{"arguments":[{"name":"x_1","nodeType":"YulIdentifier","src":"21031:3:37"},{"name":"y_1","nodeType":"YulIdentifier","src":"21036:3:37"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"21027:3:37"},"nodeType":"YulFunctionCall","src":"21027:13:37"},"variableNames":[{"name":"product","nodeType":"YulIdentifier","src":"21016:7:37"}]}]},"name":"checked_mul_t_uint128","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"20805:1:37","type":""},{"name":"y","nodeType":"YulTypedName","src":"20808:1:37","type":""}],"returnVariables":[{"name":"product","nodeType":"YulTypedName","src":"20814:7:37","type":""}],"src":"20774:272:37"},{"body":{"nodeType":"YulBlock","src":"21103:116:37","statements":[{"body":{"nodeType":"YulBlock","src":"21162:22:37","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"21164:16:37"},"nodeType":"YulFunctionCall","src":"21164:18:37"},"nodeType":"YulExpressionStatement","src":"21164:18:37"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"21134:1:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"21127:6:37"},"nodeType":"YulFunctionCall","src":"21127:9:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"21120:6:37"},"nodeType":"YulFunctionCall","src":"21120:17:37"},{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"21142:1:37"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21153:1:37","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"21149:3:37"},"nodeType":"YulFunctionCall","src":"21149:6:37"},{"name":"x","nodeType":"YulIdentifier","src":"21157:1:37"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"21145:3:37"},"nodeType":"YulFunctionCall","src":"21145:14:37"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"21139:2:37"},"nodeType":"YulFunctionCall","src":"21139:21:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"21116:3:37"},"nodeType":"YulFunctionCall","src":"21116:45:37"},"nodeType":"YulIf","src":"21113:2:37"},{"nodeType":"YulAssignment","src":"21193:20:37","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"21208:1:37"},{"name":"y","nodeType":"YulIdentifier","src":"21211:1:37"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"21204:3:37"},"nodeType":"YulFunctionCall","src":"21204:9:37"},"variableNames":[{"name":"product","nodeType":"YulIdentifier","src":"21193:7:37"}]}]},"name":"checked_mul_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"21082:1:37","type":""},{"name":"y","nodeType":"YulTypedName","src":"21085:1:37","type":""}],"returnVariables":[{"name":"product","nodeType":"YulTypedName","src":"21091:7:37","type":""}],"src":"21051:168:37"},{"body":{"nodeType":"YulBlock","src":"21273:76:37","statements":[{"body":{"nodeType":"YulBlock","src":"21295:22:37","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"21297:16:37"},"nodeType":"YulFunctionCall","src":"21297:18:37"},"nodeType":"YulExpressionStatement","src":"21297:18:37"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"21289:1:37"},{"name":"y","nodeType":"YulIdentifier","src":"21292:1:37"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"21286:2:37"},"nodeType":"YulFunctionCall","src":"21286:8:37"},"nodeType":"YulIf","src":"21283:2:37"},{"nodeType":"YulAssignment","src":"21326:17:37","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"21338:1:37"},{"name":"y","nodeType":"YulIdentifier","src":"21341:1:37"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"21334:3:37"},"nodeType":"YulFunctionCall","src":"21334:9:37"},"variableNames":[{"name":"diff","nodeType":"YulIdentifier","src":"21326:4:37"}]}]},"name":"checked_sub_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"21255:1:37","type":""},{"name":"y","nodeType":"YulTypedName","src":"21258:1:37","type":""}],"returnVariables":[{"name":"diff","nodeType":"YulTypedName","src":"21264:4:37","type":""}],"src":"21224:125:37"},{"body":{"nodeType":"YulBlock","src":"21407:205:37","statements":[{"nodeType":"YulVariableDeclaration","src":"21417:10:37","value":{"kind":"number","nodeType":"YulLiteral","src":"21426:1:37","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"21421:1:37","type":""}]},{"body":{"nodeType":"YulBlock","src":"21486:63:37","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"21511:3:37"},{"name":"i","nodeType":"YulIdentifier","src":"21516:1:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21507:3:37"},"nodeType":"YulFunctionCall","src":"21507:11:37"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"21530:3:37"},{"name":"i","nodeType":"YulIdentifier","src":"21535:1:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21526:3:37"},"nodeType":"YulFunctionCall","src":"21526:11:37"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"21520:5:37"},"nodeType":"YulFunctionCall","src":"21520:18:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21500:6:37"},"nodeType":"YulFunctionCall","src":"21500:39:37"},"nodeType":"YulExpressionStatement","src":"21500:39:37"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"21447:1:37"},{"name":"length","nodeType":"YulIdentifier","src":"21450:6:37"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"21444:2:37"},"nodeType":"YulFunctionCall","src":"21444:13:37"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"21458:19:37","statements":[{"nodeType":"YulAssignment","src":"21460:15:37","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"21469:1:37"},{"kind":"number","nodeType":"YulLiteral","src":"21472:2:37","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21465:3:37"},"nodeType":"YulFunctionCall","src":"21465:10:37"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"21460:1:37"}]}]},"pre":{"nodeType":"YulBlock","src":"21440:3:37","statements":[]},"src":"21436:113:37"},{"body":{"nodeType":"YulBlock","src":"21575:31:37","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"21588:3:37"},{"name":"length","nodeType":"YulIdentifier","src":"21593:6:37"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21584:3:37"},"nodeType":"YulFunctionCall","src":"21584:16:37"},{"kind":"number","nodeType":"YulLiteral","src":"21602:1:37","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21577:6:37"},"nodeType":"YulFunctionCall","src":"21577:27:37"},"nodeType":"YulExpressionStatement","src":"21577:27:37"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"21564:1:37"},{"name":"length","nodeType":"YulIdentifier","src":"21567:6:37"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"21561:2:37"},"nodeType":"YulFunctionCall","src":"21561:13:37"},"nodeType":"YulIf","src":"21558:2:37"}]},"name":"copy_memory_to_memory","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"21385:3:37","type":""},{"name":"dst","nodeType":"YulTypedName","src":"21390:3:37","type":""},{"name":"length","nodeType":"YulTypedName","src":"21395:6:37","type":""}],"src":"21354:258:37"},{"body":{"nodeType":"YulBlock","src":"21664:88:37","statements":[{"body":{"nodeType":"YulBlock","src":"21695:22:37","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"21697:16:37"},"nodeType":"YulFunctionCall","src":"21697:18:37"},"nodeType":"YulExpressionStatement","src":"21697:18:37"}]},"condition":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"21680:5:37"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21691:1:37","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"21687:3:37"},"nodeType":"YulFunctionCall","src":"21687:6:37"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"21677:2:37"},"nodeType":"YulFunctionCall","src":"21677:17:37"},"nodeType":"YulIf","src":"21674:2:37"},{"nodeType":"YulAssignment","src":"21726:20:37","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"21737:5:37"},{"kind":"number","nodeType":"YulLiteral","src":"21744:1:37","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21733:3:37"},"nodeType":"YulFunctionCall","src":"21733:13:37"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"21726:3:37"}]}]},"name":"increment_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"21646:5:37","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"21656:3:37","type":""}],"src":"21617:135:37"},{"body":{"nodeType":"YulBlock","src":"21789:95:37","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21806:1:37","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21813:3:37","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"21818:10:37","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"21809:3:37"},"nodeType":"YulFunctionCall","src":"21809:20:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21799:6:37"},"nodeType":"YulFunctionCall","src":"21799:31:37"},"nodeType":"YulExpressionStatement","src":"21799:31:37"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21846:1:37","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"21849:4:37","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21839:6:37"},"nodeType":"YulFunctionCall","src":"21839:15:37"},"nodeType":"YulExpressionStatement","src":"21839:15:37"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21870:1:37","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"21873:4:37","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"21863:6:37"},"nodeType":"YulFunctionCall","src":"21863:15:37"},"nodeType":"YulExpressionStatement","src":"21863:15:37"}]},"name":"panic_error_0x11","nodeType":"YulFunctionDefinition","src":"21757:127:37"},{"body":{"nodeType":"YulBlock","src":"21921:95:37","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21938:1:37","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21945:3:37","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"21950:10:37","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"21941:3:37"},"nodeType":"YulFunctionCall","src":"21941:20:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21931:6:37"},"nodeType":"YulFunctionCall","src":"21931:31:37"},"nodeType":"YulExpressionStatement","src":"21931:31:37"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21978:1:37","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"21981:4:37","type":"","value":"0x12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21971:6:37"},"nodeType":"YulFunctionCall","src":"21971:15:37"},"nodeType":"YulExpressionStatement","src":"21971:15:37"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22002:1:37","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"22005:4:37","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"21995:6:37"},"nodeType":"YulFunctionCall","src":"21995:15:37"},"nodeType":"YulExpressionStatement","src":"21995:15:37"}]},"name":"panic_error_0x12","nodeType":"YulFunctionDefinition","src":"21889:127:37"},{"body":{"nodeType":"YulBlock","src":"22053:95:37","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22070:1:37","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22077:3:37","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"22082:10:37","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"22073:3:37"},"nodeType":"YulFunctionCall","src":"22073:20:37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22063:6:37"},"nodeType":"YulFunctionCall","src":"22063:31:37"},"nodeType":"YulExpressionStatement","src":"22063:31:37"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22110:1:37","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"22113:4:37","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22103:6:37"},"nodeType":"YulFunctionCall","src":"22103:15:37"},"nodeType":"YulExpressionStatement","src":"22103:15:37"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22134:1:37","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"22137:4:37","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"22127:6:37"},"nodeType":"YulFunctionCall","src":"22127:15:37"},"nodeType":"YulExpressionStatement","src":"22127:15:37"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"22021:127:37"},{"body":{"nodeType":"YulBlock","src":"22198:86:37","statements":[{"body":{"nodeType":"YulBlock","src":"22262:16:37","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22271:1:37","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"22274:1:37","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"22264:6:37"},"nodeType":"YulFunctionCall","src":"22264:12:37"},"nodeType":"YulExpressionStatement","src":"22264:12:37"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"22221:5:37"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"22232:5:37"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22247:3:37","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"22252:1:37","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"22243:3:37"},"nodeType":"YulFunctionCall","src":"22243:11:37"},{"kind":"number","nodeType":"YulLiteral","src":"22256:1:37","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"22239:3:37"},"nodeType":"YulFunctionCall","src":"22239:19:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"22228:3:37"},"nodeType":"YulFunctionCall","src":"22228:31:37"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"22218:2:37"},"nodeType":"YulFunctionCall","src":"22218:42:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"22211:6:37"},"nodeType":"YulFunctionCall","src":"22211:50:37"},"nodeType":"YulIf","src":"22208:2:37"}]},"name":"validator_revert_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"22187:5:37","type":""}],"src":"22153:131:37"},{"body":{"nodeType":"YulBlock","src":"22334:86:37","statements":[{"body":{"nodeType":"YulBlock","src":"22398:16:37","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22407:1:37","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"22410:1:37","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"22400:6:37"},"nodeType":"YulFunctionCall","src":"22400:12:37"},"nodeType":"YulExpressionStatement","src":"22400:12:37"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"22357:5:37"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"22368:5:37"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22383:3:37","type":"","value":"128"},{"kind":"number","nodeType":"YulLiteral","src":"22388:1:37","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"22379:3:37"},"nodeType":"YulFunctionCall","src":"22379:11:37"},{"kind":"number","nodeType":"YulLiteral","src":"22392:1:37","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"22375:3:37"},"nodeType":"YulFunctionCall","src":"22375:19:37"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"22364:3:37"},"nodeType":"YulFunctionCall","src":"22364:31:37"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"22354:2:37"},"nodeType":"YulFunctionCall","src":"22354:42:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"22347:6:37"},"nodeType":"YulFunctionCall","src":"22347:50:37"},"nodeType":"YulIf","src":"22344:2:37"}]},"name":"validator_revert_uint128","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"22323:5:37","type":""}],"src":"22289:131:37"},{"body":{"nodeType":"YulBlock","src":"22469:75:37","statements":[{"body":{"nodeType":"YulBlock","src":"22522:16:37","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22531:1:37","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"22534:1:37","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"22524:6:37"},"nodeType":"YulFunctionCall","src":"22524:12:37"},"nodeType":"YulExpressionStatement","src":"22524:12:37"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"22492:5:37"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"22503:5:37"},{"kind":"number","nodeType":"YulLiteral","src":"22510:8:37","type":"","value":"0xffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"22499:3:37"},"nodeType":"YulFunctionCall","src":"22499:20:37"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"22489:2:37"},"nodeType":"YulFunctionCall","src":"22489:31:37"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"22482:6:37"},"nodeType":"YulFunctionCall","src":"22482:39:37"},"nodeType":"YulIf","src":"22479:2:37"}]},"name":"validator_revert_uint24","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"22458:5:37","type":""}],"src":"22425:119:37"}]},"contents":"{\n    { }\n    function abi_decode_address_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_address(value)\n    }\n    function abi_decode_bool_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n    }\n    function abi_decode_int24_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, signextend(2, value))) { revert(0, 0) }\n    }\n    function abi_decode_uint128_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_uint128(value)\n    }\n    function abi_decode_uint16_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, and(value, 0xffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint24_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_uint24(value)\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_addresst_addresst_uint24t_addresst_address(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 192) { revert(value4, value4) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n        let value_3 := calldataload(add(headStart, 96))\n        validator_revert_uint24(value_3)\n        value3 := value_3\n        let value_4 := calldataload(add(headStart, 128))\n        validator_revert_address(value_4)\n        value4 := value_4\n        let value_5 := calldataload(add(headStart, 160))\n        validator_revert_address(value_5)\n        value5 := value_5\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(value4, value4) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        value2 := calldataload(add(headStart, 64))\n        let offset := calldataload(add(headStart, 96))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(value4, value4) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(value4, value4) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(value4, value4) }\n        if gt(add(add(_2, length), 32), dataEnd) { revert(value4, value4) }\n        value3 := add(_2, 32)\n        value4 := length\n    }\n    function abi_decode_tuple_t_addresst_array$_t_address_$dyn_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(value0, value0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let _1 := 32\n        let offset := calldataload(add(headStart, _1))\n        let _2 := 0xffffffffffffffff\n        if gt(offset, _2) { revert(value1, value1) }\n        let _3 := add(headStart, offset)\n        if iszero(slt(add(_3, 0x1f), dataEnd)) { revert(value1, value1) }\n        let _4 := calldataload(_3)\n        if gt(_4, _2) { panic_error_0x41() }\n        let _5 := shl(5, _4)\n        let dst := allocate_memory(add(_5, _1))\n        let dst_1 := dst\n        mstore(dst, _4)\n        dst := add(dst, _1)\n        let src := add(_3, _1)\n        if gt(add(add(_3, _5), _1), dataEnd) { revert(value1, value1) }\n        let i := value1\n        for { } lt(i, _4) { i := add(i, 1) }\n        {\n            let value_1 := calldataload(src)\n            validator_revert_address(value_1)\n            mstore(dst, value_1)\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        value1 := dst_1\n    }\n    function abi_decode_tuple_t_addresst_bytes_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(value0, value0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let _1 := 32\n        let offset := calldataload(add(headStart, _1))\n        let _2 := 0xffffffffffffffff\n        if gt(offset, _2) { revert(value1, value1) }\n        let _3 := add(headStart, offset)\n        if iszero(slt(add(_3, 0x1f), dataEnd)) { revert(value1, value1) }\n        let _4 := calldataload(_3)\n        if gt(_4, _2) { panic_error_0x41() }\n        let array := allocate_memory(add(and(add(_4, 0x1f), not(31)), _1))\n        mstore(array, _4)\n        if gt(add(add(_3, _4), _1), dataEnd) { revert(value1, value1) }\n        calldatacopy(add(array, _1), add(_3, _1), _4)\n        mstore(add(add(array, _4), _1), value1)\n        value1 := array\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(value0, value0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n        value0 := abi_decode_bool_fromMemory(headStart)\n    }\n    function abi_decode_tuple_t_uint128t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(value0, value0) }\n        let value := calldataload(headStart)\n        validator_revert_uint128(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_uint160t_int24t_uint16t_uint16t_uint16t_uint8t_bool_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 224) { revert(value2, value2) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := abi_decode_int24_fromMemory(add(headStart, 32))\n        value2 := abi_decode_uint16_fromMemory(add(headStart, 64))\n        value3 := abi_decode_uint16_fromMemory(add(headStart, 96))\n        value4 := abi_decode_uint16_fromMemory(add(headStart, 128))\n        let value_1 := mload(add(headStart, 160))\n        if iszero(eq(value_1, and(value_1, 0xff))) { revert(value6, value6) }\n        value5 := value_1\n        value6 := abi_decode_bool_fromMemory(add(headStart, 192))\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n        value0 := mload(headStart)\n    }\n    function abi_decode_tuple_t_uint96t_addresst_addresst_addresst_uint24t_int24t_int24t_uint128t_uint256t_uint256t_uint128t_uint128_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6, value7, value8, value9, value10, value11\n    {\n        if slt(sub(dataEnd, headStart), 384) { revert(value6, value6) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffff))) { revert(value6, value6) }\n        value0 := value\n        value1 := abi_decode_address_fromMemory(add(headStart, 32))\n        value2 := abi_decode_address_fromMemory(add(headStart, 64))\n        value3 := abi_decode_address_fromMemory(add(headStart, 96))\n        value4 := abi_decode_uint24_fromMemory(add(headStart, 128))\n        value5 := abi_decode_int24_fromMemory(add(headStart, 160))\n        value6 := abi_decode_int24_fromMemory(add(headStart, 192))\n        value7 := abi_decode_uint128_fromMemory(add(headStart, 224))\n        value8 := mload(add(headStart, 256))\n        value9 := mload(add(headStart, 288))\n        value10 := abi_decode_uint128_fromMemory(add(headStart, 320))\n        value11 := abi_decode_uint128_fromMemory(add(headStart, 352))\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory(add(value0, 0x20), pos, length)\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint24__to_t_address_t_address_t_uint24__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        let _1 := sub(shl(160, 1), 1)\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), and(value2, 0xffffff))\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        let _1 := sub(shl(160, 1), 1)\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_address_t_uint128_t_uint128__to_t_address_t_uint128_t_uint128__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        let _1 := sub(shl(128, 1), 1)\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), and(value2, _1))\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, shl(224, 0xffffffff)))\n    }\n    function abi_encode_tuple_t_contract$_IERC20_$760__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_contract$_INonfungiblePositionManager_$4091__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_contract$_IRegistry_$4222__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_contract$_IUniswapV3Factory_$1660__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_contract$_IUniswapV3Pool_$1682__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        copy_memory_to_memory(add(value0, 32), add(headStart, 64), length)\n        tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_001c2f91d7f5b9f826ee8d160ab1223b43e8f4bdecc5987100aba307290ca66d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 25)\n        mstore(add(headStart, 64), \"already in emergency mode\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_0e7bfa41936ea0f14228a1e1d47a40800594bfee7c0cb33646a51576af420e4a__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 18)\n        mstore(add(headStart, 64), \"pool doesn't exist\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_1c4669339db1b9128f87a0e23d1b39c4647e9f6c39f951c47e41f9dced5e33fc__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 18)\n        mstore(add(headStart, 64), \"only tokenid owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_25d3b055c11d0967ef8bb6b71cf1c4fc04b1e509ce03ce6dc51f45e899291e19__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 15)\n        mstore(add(headStart, 64), \"not gauge voter\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3e13bccce6b8496a226c03eda750fa8184bb0407e6d5afc9a4faf8b40fdd2150__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 27)\n        mstore(add(headStart, 64), \"not called from nft manager\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_64a1256a522864251d2b98ba0d8b2204db04a4d66b9d6078787508f543e6e57a__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 21)\n        mstore(add(headStart, 64), \"liquidty not in range\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_696ff4afb8f94b9e0615b62dd4c79972c046448a8e5683291d4d2bbc3e2e7b4a__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 14)\n        mstore(add(headStart, 64), \"liquidity is 0\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_6c6fdad9528ba94a432ea0119e61556a6886bc009e245446573b9ddd893623b8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"token pool is not the right pool\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7163d19ed0e499d5d9dbc4995b32af0873a5d59f79a456bb47421efa2460860f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"cannot stake 0 liquidity\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 46)\n        mstore(add(headStart, 64), \"Initializable: contract is alrea\")\n        mstore(add(headStart, 96), \"dy initialized\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_8d85b8e7f4404d04d93e8d532ad219ceeba0becfbc18622bad46b31e08b1f0b0__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 17)\n        mstore(add(headStart, 64), \"Cannot withdraw 0\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_9cc68d25774760b7dce2e9971365bd17252e55dfa1873462c3da5524c9895468__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 12)\n        mstore(add(headStart, 64), \"not timelock\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_af294828ccb7807394ab9c640e14eb2534ed0e75bb2e1346f1bb81dd84cda810__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Provided reward too high\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_b053777096494c68d763d5980fe57eef5a024316a3cb689ed805fab926222805__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 20)\n        mstore(add(headStart, 64), \"stake does not exist\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_df5ccee6bec62de6a91a7261842116168780a7dde172cbff918d08ca37634eae__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 21)\n        mstore(add(headStart, 64), \"not in emergency mode\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ReentrancyGuard: reentrant call\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint128__to_t_uint128__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(128, 1), 1)))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint256_t_uint128_t_uint128__to_t_uint256_t_uint128_t_uint128__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\n        let _1 := sub(shl(128, 1), 1)\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), and(value2, _1))\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function checked_add_t_uint128(x, y) -> sum\n    {\n        let _1 := sub(shl(128, 1), 1)\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_div_t_uint128(x, y) -> r\n    {\n        let _1 := sub(shl(128, 1), 1)\n        let y_1 := and(y, _1)\n        if iszero(y_1) { panic_error_0x12() }\n        r := div(and(x, _1), y_1)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := div(x, y)\n    }\n    function checked_mul_t_uint128(x, y) -> product\n    {\n        let _1 := sub(shl(128, 1), 1)\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if and(iszero(iszero(x_1)), gt(y_1, div(_1, x_1))) { panic_error_0x11() }\n        product := mul(x_1, y_1)\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        if and(iszero(iszero(x)), gt(y, div(not(0), x))) { panic_error_0x11() }\n        product := mul(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\n        let i := 0\n        for { } lt(i, length) { i := add(i, 32) }\n        {\n            mstore(add(dst, i), mload(add(src, i)))\n        }\n        if gt(i, length) { mstore(add(dst, length), 0) }\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, not(0)) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function validator_revert_uint128(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(128, 1), 1)))) { revert(0, 0) }\n    }\n    function validator_revert_uint24(value)\n    {\n        if iszero(eq(value, and(value, 0xffffff))) { revert(0, 0) }\n    }\n}","id":37,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561001057600080fd5b50600436106101f75760003560e01c80638a16a30b11610120578063c4cfbf06116100b8578063d1af0c7d1161007c578063d1af0c7d14610521578063d7e79f0214610534578063df136d6514610547578063ebe2b12b14610550578063f301af421461055957600080fd5b8063c4cfbf06146104b1578063c5b1c7d0146104dc578063c8f1c3af146104e4578063c8f33c9114610510578063cd3daf9d1461051957600080fd5b80638a16a30b146103a957806399bcc052146103bc5780639be54945146103cf578063b02c43d0146103dc578063b44a272214610452578063b66503cf14610465578063b93c9a1d14610478578063c45a01551461048b578063c4bf02201461049e57600080fd5b8063386a952511610193578063386a95251461030d5780634d6ed8c41461031657806369db8b27146103295780636c6f858b1461033257806370a08231146103525780637b0a47ee146103725780637b1039991461037b5780637f8661a11461038e57806380faa57d146103a157600080fd5b806303f3e30e146101fc578063150b7a021461024257806316f0115b1461026e57806318160ddd1461028e5780631c1f78eb146102975780631c4b774b1461029f5780632e1a7d4d146102b457806331279d3d146102c757806336703461146102da575b600080fd5b61022f61020a3660046126b0565b6000908152600c6020526040902060010154600160801b90046001600160801b031690565b6040519081526020015b60405180910390f35b6102556102503660046123a0565b610579565b6040516001600160e01b03199091168152602001610239565b601054610281906001600160a01b031681565b60405161023991906127db565b61022f600b5481565b61022f6105c3565b6102b26102ad3660046126b0565b6105e1565b005b6102b26102c23660046126b0565b610761565b6102b26102d536600461243a565b610a75565b6102fd6102e83660046122e7565b60166020526000908152604090205460ff1681565b6040519015158152602001610239565b61022f60065481565b61022f6103243660046126b0565b610b09565b61022f60095481565b61022f6103403660046126b0565b600a6020526000908152604090205481565b61022f6103603660046122e7565b60116020526000908152604090205481565b61022f60055481565b600254610281906001600160a01b031681565b6102b261039c3660046126b0565b610b86565b61022f610b9b565b6102b26103b73660046126b0565b610bb2565b61022f6103ca3660046122e7565b610d5e565b6017546102fd9060ff1681565b6104236103ea3660046126b0565b600c60205260009081526040902080546001909101546001600160a01b03909116906001600160801b0380821691600160801b90041683565b604080516001600160a01b0390941684526001600160801b039283166020850152911690820152606001610239565b600f54610281906001600160a01b031681565b6102b26104733660046125a5565b610d98565b6102b261048636600461231f565b611010565b600e54610281906001600160a01b031681565b6102b26104ac366004612503565b6112d3565b6104c46104bf3660046125ea565b6114a4565b6040516001600160801b039091168152602001610239565b6102b2611635565b61022f6104f23660046126b0565b6000908152600c60205260409020600101546001600160801b031690565b61022f60075481565b61022f6118eb565b600354610281906001600160a01b031681565b6102b26105423660046126b0565b611937565b61022f60085481565b61022f60045481565b61022f6105673660046126b0565b600d6020526000908152604090205481565b60175460009060ff166105a75760405162461bcd60e51b815260040161059e906128c0565b60405180910390fd5b6105b18585611998565b50630a85bd0160e11b95945050505050565b60006105dc600654600554611da890919063ffffffff16565b905090565b600260015414156106045760405162461bcd60e51b815260040161059e906128ef565b60026001558061061381611db4565b6000828152600c602052604090205482906001600160a01b0316331461064b5760405162461bcd60e51b815260040161059e9061286e565b6000838152600d60205260409020548015610757576000848152600d60209081526040808320839055600354600c9092529182902054915163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905291169063a9059cbb90604401602060405180830381600087803b1580156106ca57600080fd5b505af11580156106de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061070291906125d0565b506000848152600c60209081526040918290205482518781529182018490526001600160a01b0316917fd6f2c8500df5b44f11e9e48b91ff9f1b9d81bc496d55570c2b1b75bf65243f51910160405180910390a25b5050600180555050565b600260015414156107845760405162461bcd60e51b815260040161059e906128ef565b60026001558061079381611db4565b6000828152600c602052604090205482906001600160a01b031633146107cb5760405162461bcd60e51b815260040161059e9061286e565b6000838152600c60205260409020600101546001600160801b03166108265760405162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015260640161059e565b6000838152600c6020526040902060010154600b5461085491600160801b90046001600160801b0316611e03565b600b556000838152600c6020526040812080546001600160a01b0319168155600101556108813384611e0f565b61088a83611eab565b3360009081526011602052604081208054600192906108aa908490612a22565b9091555050600f54604051632142170760e11b81526001600160a01b03909116906342842e0e906108e390309033908890600401612817565b600060405180830381600087803b1580156108fd57600080fd5b505af1158015610911573d6000803e3d6000fd5b50503360009081526011602052604090205415915050801561094257503360009081526016602052604090205460ff165b15610a375733600090815260166020908152604091829020805460ff1916905560025482516381ca29a160e01b815292516001600160a01b03909116926381ca29a1926004808301939192829003018186803b1580156109a157600080fd5b505afa1580156109b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d99190612303565b6001600160a01b031663e32e4e88336040518263ffffffff1660e01b8152600401610a0491906127db565b600060405180830381600087803b158015610a1e57600080fd5b505af1158015610a32573d6000803e3d6000fd5b505050505b60405183815233907f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d59060200160405180910390a250506001805550565b60026001541415610a985760405162461bcd60e51b815260040161059e906128ef565b600260015560005b6001600160a01b038316600090815260116020526040902054811015610b00576001600160a01b0383166000908152601260209081526040808320848452909152902054610aed816105e1565b5080610af881612a69565b915050610aa0565b50506001805550565b6000818152600d6020908152604080832054600a909252822054610b809190610b7a90670de0b6b3a764000090610b7490610b4c90610b466118eb565b90611e03565b6000888152600c6020526040902060010154600160801b90046001600160801b031690611da8565b90611f84565b90611f90565b92915050565b610b8f81610761565b610b98816105e1565b50565b60006004544210610bad575060045490565b504290565b60026001541415610bd55760405162461bcd60e51b815260040161059e906128ef565b60026001556000818152600c602052604090205481906001600160a01b03163314610c125760405162461bcd60e51b815260040161059e9061286e565b60175460ff16610c345760405162461bcd60e51b815260040161059e906128c0565b6000828152600c60205260409020600101546001600160801b0316610c925760405162461bcd60e51b81526020600482015260146024820152731cdd185ad948191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161059e565b6000828152600c602052604080822080546001600160a01b0319168155600101919091555133907f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d590610ce89085815260200190565b60405180910390a2600f54604051632142170760e11b81526001600160a01b03909116906342842e0e90610d2490309033908790600401612817565b600060405180830381600087803b158015610d3e57600080fd5b505af1158015610d52573d6000803e3d6000fd5b50506001805550505050565b60006004544210610d7157506000919050565b600042600454610d819190612a22565b905060055481610d919190612a03565b9392505050565b6000610da381611db4565b600260009054906101000a90046001600160a01b03166001600160a01b03166381ca29a16040518163ffffffff1660e01b815260040160206040518083038186803b158015610df157600080fd5b505afa158015610e05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e299190612303565b6001600160a01b0316336001600160a01b031614610e7b5760405162461bcd60e51b815260206004820152600f60248201526e3737ba1033b0bab3b2903b37ba32b960891b604482015260640161059e565b6004544210610e9a57600654610e92908390611f84565b600555610edd565b600454600090610eaa9042611e03565b90506000610ec360055483611da890919063ffffffff16565b600654909150610ed790610b748684611f90565b60055550505b6003546040516370a0823160e01b81526000916001600160a01b0316906370a0823190610f0e9030906004016127db565b60206040518083038186803b158015610f2657600080fd5b505afa158015610f3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5e91906126c8565b9050610f7560065482611f8490919063ffffffff16565b6005541115610fc15760405162461bcd60e51b81526020600482015260186024820152770a0e4deecd2c8cac840e4caeec2e4c840e8dede40d0d2ced60431b604482015260640161059e565b426007819055600654610fd49190611f90565b6004556040518381527fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9060200160405180910390a150505050565b600054610100900460ff16158080156110305750600054600160ff909116105b8061104a5750303b15801561104a575060005460ff166001145b6110ad5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840161059e565b6000805460ff1916600117905580156110d0576000805461ff0019166101001790555b600f80546001600160a01b038085166001600160a01b0319928316811790935560028054918b16919092161790556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b15801561113457600080fd5b505afa158015611148573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116c9190612303565b600e80546001600160a01b039283166001600160a01b03199182168117909255600380549387169390911692909217909155604051630b4c774160e11b815260009190631698ee82906111c7908a908a908a906004016127ef565b60206040518083038186803b1580156111df57600080fd5b505afa1580156111f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112179190612303565b90506001600160a01b0381166112645760405162461bcd60e51b81526020600482015260126024820152711c1bdbdb08191bd95cdb89dd08195e1a5cdd60721b604482015260640161059e565b601080546001600160a01b0319166001600160a01b039290921691909117905580156112ca576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50505050505050565b600260009054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b815260040160206040518083038186803b15801561132157600080fd5b505afa158015611335573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113599190612303565b6001600160a01b031663d33219b46040518163ffffffff1660e01b815260040160206040518083038186803b15801561139157600080fd5b505afa1580156113a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c99190612303565b6001600160a01b0316336001600160a01b0316146113f95760405162461bcd60e51b815260040161059e9061289a565b60175460ff1661141b5760405162461bcd60e51b815260040161059e906128c0565b600080836001600160a01b03168360405161143691906127bf565b6000604051808303816000865af19150503d8060008114611473576040519150601f19603f3d011682016040523d82523d6000602084013e611478565b606091505b509150915081819061149d5760405162461bcd60e51b815260040161059e919061283b565b5050505050565b60008060646114b48560146129d4565b6114be919061299a565b90506000600260009054906101000a90046001600160a01b03166001600160a01b0316635ebaf1db6040518163ffffffff1660e01b815260040160206040518083038186803b15801561151057600080fd5b505afa158015611524573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115489190612303565b6001600160a01b03166370a08231856040518263ffffffff1660e01b815260040161157391906127db565b60206040518083038186803b15801561158b57600080fd5b505afa15801561159f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115c391906126c8565b90506000606460095483886115d891906129d4565b6115e39060506129d4565b6115ed919061299a565b6115f7919061299a565b90506001600160801b03861661160d8285612957565b6001600160801b031610611621578561162b565b61162b8184612957565b9695505050505050565b600260009054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b815260040160206040518083038186803b15801561168357600080fd5b505afa158015611697573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116bb9190612303565b6001600160a01b031663d33219b46040518163ffffffff1660e01b815260040160206040518083038186803b1580156116f357600080fd5b505afa158015611707573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172b9190612303565b6001600160a01b0316336001600160a01b03161461175b5760405162461bcd60e51b815260040161059e9061289a565b60175460ff16156117aa5760405162461bcd60e51b8152602060048201526019602482015278616c726561647920696e20656d657267656e6379206d6f646560381b604482015260640161059e565b6017805460ff191660011790556003546040516370a0823160e01b81526001600160a01b039091169063a9059cbb90339083906370a08231906117f19030906004016127db565b60206040518083038186803b15801561180957600080fd5b505afa15801561181d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184191906126c8565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561188757600080fd5b505af115801561189b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118bf91906125d0565b506040517f2064d51aa5a8bd67928c7675e267e05c67ad5adf7c9098d0a602d01f36fda9c590600090a1565b6000600b54600014156118ff575060085490565b6105dc61192e600b54610b74670de0b6b3a7640000611928600554611928600754610b46610b9b565b90611da8565b60085490611f90565b6000818152600c60205260409020600101546001600160801b031661198f5760405162461bcd60e51b815260206004820152600e60248201526d06c697175696469747920697320360941b604482015260640161059e565b610b9881611db4565b806119a281611db4565b600f546001600160a01b031633146119fc5760405162461bcd60e51b815260206004820152601b60248201527f6e6f742063616c6c65642066726f6d206e6674206d616e616765720000000000604482015260640161059e565b6000806000611a0a85611f9c565b60105492955090935091506001600160a01b03808516911614611a6f5760405162461bcd60e51b815260206004820181905260248201527f746f6b656e20706f6f6c206973206e6f742074686520726967687420706f6f6c604482015260640161059e565b81611ab45760405162461bcd60e51b81526020600482015260156024820152746c69717569647479206e6f7420696e2072616e676560581b604482015260640161059e565b6000816001600160801b031611611b085760405162461bcd60e51b815260206004820152601860248201527763616e6e6f74207374616b652030206c697175696469747960401b604482015260640161059e565b6000611b1482886114a4565b604080516060810182526001600160a01b03808b1682526001600160801b03808716602080850191825282871685870190815260008e8152600c9092529590209351845493166001600160a01b0319909316929092178355905192518116600160801b029216919091176001909101559050611bce86601480546000838152601560205260408120829055600182018355919091527fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec0155565b6001600160a01b038716600081815260116020818152604080842080546012845282862081875284528286208d90558c865260138452918520919091559383525281546001929190611c21908490612982565b9091555050600b54611c3c906001600160801b038316611f90565b600b556001600160a01b03871660009081526016602052604090205460ff16611d53576001600160a01b03808816600090815260166020908152604091829020805460ff1916600117905560025482516381ca29a160e01b815292519316926381ca29a1926004808201939291829003018186803b158015611cbd57600080fd5b505afa158015611cd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cf59190612303565b6001600160a01b03166397a302f7886040518263ffffffff1660e01b8152600401611d2091906127db565b600060405180830381600087803b158015611d3a57600080fd5b505af1158015611d4e573d6000803e3d6000fd5b505050505b604080518781526001600160801b038481166020830152831681830152905133917fb1a5f058b6335d833f8fd0eaa6562af341d1ad22eebaff5776988d1c6e730879919081900360600190a250505050505050565b6000610d918284612a03565b611dbc6118eb565b600855611dc7610b9b565b6007558015610b9857611dd981610b09565b6000828152600d6020908152604080832093909355600854600a90915291902055610b988161207a565b6000610d918284612a22565b6001600160a01b038216600090815260116020908152604080832054848452601390925290912054808214611e78576001600160a01b03841660009081526012602090815260408083208584528252808320548484528184208190558352601390915290208190555b5060009182526013602090815260408084208490556001600160a01b039094168352601281528383209183525290812055565b601454600090611ebd90600190612a22565b60008381526015602052604081205460148054939450909284908110611ef357634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060148381548110611f2257634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152601590915260408082208490558582528120556014805480611f6857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000610d9182846129c0565b6000610d918284612982565b600e54600f54600091829182918291829182918291611fc8916001600160a01b0391821691168a61215d565b93509350935093506000846001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561200b57600080fd5b505afa15801561201f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120439190612622565b50505050509150508497508060020b8460020b1315801561206a57508260020b8160020b12155b9799979850909695505050505050565b600e54600f5460009161209a916001600160a01b0391821691168461215d565b6000868152600c60205260409020600101549094506001600160801b038086169116141592506120cb915050575050565b6000828152600c60205260408120546001600160a01b0316906120ee83836114a4565b6000858152600c6020526040902060010154600b54919250612129916001600160801b03600160801b909204821691610b4691908516611f90565b600b556000938452600c60205260409093206001600160801b03938416600160801b02939092169290921760019091015550565b6000806000806000806000886001600160a01b03166399fbab88896040518263ffffffff1660e01b815260040161219691815260200190565b6101806040518083038186803b1580156121af57600080fd5b505afa1580156121c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121e791906126e0565b5050604051630b4c774160e11b8152949f50929d50909b509499509297509095506001600160a01b038f169450631698ee82935061222f9250879150869086906004016127ef565b60206040518083038186803b15801561224757600080fd5b505afa15801561225b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061227f9190612303565b965050505093509350935093565b805161229881612ac6565b919050565b8051801515811461229857600080fd5b8051600281900b811461229857600080fd5b805161229881612adb565b805161ffff8116811461229857600080fd5b805161229881612af0565b6000602082840312156122f8578081fd5b8135610d9181612ac6565b600060208284031215612314578081fd5b8151610d9181612ac6565b60008060008060008060c08789031215612337578182fd5b863561234281612ac6565b9550602087013561235281612ac6565b9450604087013561236281612ac6565b9350606087013561237281612af0565b9250608087013561238281612ac6565b915060a087013561239281612ac6565b809150509295509295509295565b6000806000806000608086880312156123b7578081fd5b85356123c281612ac6565b945060208601356123d281612ac6565b935060408601359250606086013567ffffffffffffffff808211156123f5578283fd5b818801915088601f830112612408578283fd5b813581811115612416578384fd5b896020828501011115612427578384fd5b9699959850939650602001949392505050565b6000806040838503121561244c578182fd5b823561245781612ac6565b915060208381013567ffffffffffffffff80821115612474578384fd5b818601915086601f830112612487578384fd5b81358181111561249957612499612ab0565b8060051b91506124aa848301612926565b8181528481019084860184860187018b10156124c4578788fd5b8795505b838610156124f257803594506124dd85612ac6565b848352600195909501949186019186016124c8565b508096505050505050509250929050565b60008060408385031215612515578182fd5b823561252081612ac6565b915060208381013567ffffffffffffffff8082111561253d578384fd5b818601915086601f830112612550578384fd5b81358181111561256257612562612ab0565b612574601f8201601f19168501612926565b91508082528784828501011115612589578485fd5b8084840185840137810190920192909252919491935090915050565b600080604083850312156125b7578182fd5b82356125c281612ac6565b946020939093013593505050565b6000602082840312156125e1578081fd5b610d918261229d565b600080604083850312156125fc578182fd5b823561260781612adb565b9150602083013561261781612ac6565b809150509250929050565b600080600080600080600060e0888a03121561263c578485fd5b875161264781612ac6565b9650612655602089016122ad565b9550612663604089016122ca565b9450612671606089016122ca565b935061267f608089016122ca565b925060a088015160ff81168114612694578182fd5b91506126a260c0890161229d565b905092959891949750929550565b6000602082840312156126c1578081fd5b5035919050565b6000602082840312156126d9578081fd5b5051919050565b6000806000806000806000806000806000806101808d8f031215612702578586fd5b8c516bffffffffffffffffffffffff8116811461271d578687fd5b9b5061272b60208e0161228d565b9a5061273960408e0161228d565b995061274760608e0161228d565b985061275560808e016122dc565b975061276360a08e016122ad565b965061277160c08e016122ad565b955061277f60e08e016122bf565b94506101008d015193506101208d0151925061279e6101408e016122bf565b91506127ad6101608e016122bf565b90509295989b509295989b509295989b565b600082516127d1818460208701612a39565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b03938416815291909216602082015262ffffff909116604082015260600190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b602081526000825180602084015261285a816040850160208701612a39565b601f01601f19169190910160400192915050565b60208082526012908201527137b7363c903a37b5b2b734b21037bbb732b960711b604082015260600190565b6020808252600c908201526b6e6f742074696d656c6f636b60a01b604082015260600190565b6020808252601590820152746e6f7420696e20656d657267656e6379206d6f646560581b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561294f5761294f612ab0565b604052919050565b60006001600160801b0382811684821680830382111561297957612979612a84565b01949350505050565b6000821982111561299557612995612a84565b500190565b60006001600160801b03838116806129b4576129b4612a9a565b92169190910492915050565b6000826129cf576129cf612a9a565b500490565b60006001600160801b03828116848216811515828404821116156129fa576129fa612a84565b02949350505050565b6000816000190483118215151615612a1d57612a1d612a84565b500290565b600082821015612a3457612a34612a84565b500390565b60005b83811015612a54578181015183820152602001612a3c565b83811115612a63576000848401525b50505050565b6000600019821415612a7d57612a7d612a84565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b9857600080fd5b6001600160801b0381168114610b9857600080fd5b62ffffff81168114610b9857600080fdfea264697066735822122056539627cadea3d54fb855fbcd07fdb67f03dc7d70f5885914c19eaf958ed34364736f6c63430008040033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1F7 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8A16A30B GT PUSH2 0x120 JUMPI DUP1 PUSH4 0xC4CFBF06 GT PUSH2 0xB8 JUMPI DUP1 PUSH4 0xD1AF0C7D GT PUSH2 0x7C JUMPI DUP1 PUSH4 0xD1AF0C7D EQ PUSH2 0x521 JUMPI DUP1 PUSH4 0xD7E79F02 EQ PUSH2 0x534 JUMPI DUP1 PUSH4 0xDF136D65 EQ PUSH2 0x547 JUMPI DUP1 PUSH4 0xEBE2B12B EQ PUSH2 0x550 JUMPI DUP1 PUSH4 0xF301AF42 EQ PUSH2 0x559 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xC4CFBF06 EQ PUSH2 0x4B1 JUMPI DUP1 PUSH4 0xC5B1C7D0 EQ PUSH2 0x4DC JUMPI DUP1 PUSH4 0xC8F1C3AF EQ PUSH2 0x4E4 JUMPI DUP1 PUSH4 0xC8F33C91 EQ PUSH2 0x510 JUMPI DUP1 PUSH4 0xCD3DAF9D EQ PUSH2 0x519 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8A16A30B EQ PUSH2 0x3A9 JUMPI DUP1 PUSH4 0x99BCC052 EQ PUSH2 0x3BC JUMPI DUP1 PUSH4 0x9BE54945 EQ PUSH2 0x3CF JUMPI DUP1 PUSH4 0xB02C43D0 EQ PUSH2 0x3DC JUMPI DUP1 PUSH4 0xB44A2722 EQ PUSH2 0x452 JUMPI DUP1 PUSH4 0xB66503CF EQ PUSH2 0x465 JUMPI DUP1 PUSH4 0xB93C9A1D EQ PUSH2 0x478 JUMPI DUP1 PUSH4 0xC45A0155 EQ PUSH2 0x48B JUMPI DUP1 PUSH4 0xC4BF0220 EQ PUSH2 0x49E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x386A9525 GT PUSH2 0x193 JUMPI DUP1 PUSH4 0x386A9525 EQ PUSH2 0x30D JUMPI DUP1 PUSH4 0x4D6ED8C4 EQ PUSH2 0x316 JUMPI DUP1 PUSH4 0x69DB8B27 EQ PUSH2 0x329 JUMPI DUP1 PUSH4 0x6C6F858B EQ PUSH2 0x332 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x352 JUMPI DUP1 PUSH4 0x7B0A47EE EQ PUSH2 0x372 JUMPI DUP1 PUSH4 0x7B103999 EQ PUSH2 0x37B JUMPI DUP1 PUSH4 0x7F8661A1 EQ PUSH2 0x38E JUMPI DUP1 PUSH4 0x80FAA57D EQ PUSH2 0x3A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3F3E30E EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x242 JUMPI DUP1 PUSH4 0x16F0115B EQ PUSH2 0x26E JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x28E JUMPI DUP1 PUSH4 0x1C1F78EB EQ PUSH2 0x297 JUMPI DUP1 PUSH4 0x1C4B774B EQ PUSH2 0x29F JUMPI DUP1 PUSH4 0x2E1A7D4D EQ PUSH2 0x2B4 JUMPI DUP1 PUSH4 0x31279D3D EQ PUSH2 0x2C7 JUMPI DUP1 PUSH4 0x36703461 EQ PUSH2 0x2DA JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x22F PUSH2 0x20A CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x255 PUSH2 0x250 CALLDATASIZE PUSH1 0x4 PUSH2 0x23A0 JUMP JUMPDEST PUSH2 0x579 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x239 JUMP JUMPDEST PUSH1 0x10 SLOAD PUSH2 0x281 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x239 SWAP2 SWAP1 PUSH2 0x27DB JUMP JUMPDEST PUSH2 0x22F PUSH1 0xB SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x5C3 JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x2AD CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH2 0x5E1 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2B2 PUSH2 0x2C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH2 0x761 JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x2D5 CALLDATASIZE PUSH1 0x4 PUSH2 0x243A JUMP JUMPDEST PUSH2 0xA75 JUMP JUMPDEST PUSH2 0x2FD PUSH2 0x2E8 CALLDATASIZE PUSH1 0x4 PUSH2 0x22E7 JUMP JUMPDEST PUSH1 0x16 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x239 JUMP JUMPDEST PUSH2 0x22F PUSH1 0x6 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x324 CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH2 0xB09 JUMP JUMPDEST PUSH2 0x22F PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x340 CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH1 0xA PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x360 CALLDATASIZE PUSH1 0x4 PUSH2 0x22E7 JUMP JUMPDEST PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22F PUSH1 0x5 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x281 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x39C CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH2 0xB86 JUMP JUMPDEST PUSH2 0x22F PUSH2 0xB9B JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x3B7 CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH2 0xBB2 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x3CA CALLDATASIZE PUSH1 0x4 PUSH2 0x22E7 JUMP JUMPDEST PUSH2 0xD5E JUMP JUMPDEST PUSH1 0x17 SLOAD PUSH2 0x2FD SWAP1 PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x423 PUSH2 0x3EA CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP3 AND SWAP2 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND DUP4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP5 AND DUP5 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP3 DUP4 AND PUSH1 0x20 DUP6 ADD MSTORE SWAP2 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x239 JUMP JUMPDEST PUSH1 0xF SLOAD PUSH2 0x281 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x473 CALLDATASIZE PUSH1 0x4 PUSH2 0x25A5 JUMP JUMPDEST PUSH2 0xD98 JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x486 CALLDATASIZE PUSH1 0x4 PUSH2 0x231F JUMP JUMPDEST PUSH2 0x1010 JUMP JUMPDEST PUSH1 0xE SLOAD PUSH2 0x281 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x4AC CALLDATASIZE PUSH1 0x4 PUSH2 0x2503 JUMP JUMPDEST PUSH2 0x12D3 JUMP JUMPDEST PUSH2 0x4C4 PUSH2 0x4BF CALLDATASIZE PUSH1 0x4 PUSH2 0x25EA JUMP JUMPDEST PUSH2 0x14A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x239 JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x1635 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x4F2 CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x22F PUSH1 0x7 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x18EB JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH2 0x281 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x542 CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH2 0x1937 JUMP JUMPDEST PUSH2 0x22F PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22F PUSH1 0x4 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x567 CALLDATASIZE PUSH1 0x4 PUSH2 0x26B0 JUMP JUMPDEST PUSH1 0xD PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x17 SLOAD PUSH1 0x0 SWAP1 PUSH1 0xFF AND PUSH2 0x5A7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x28C0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5B1 DUP6 DUP6 PUSH2 0x1998 JUMP JUMPDEST POP PUSH4 0xA85BD01 PUSH1 0xE1 SHL SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5DC PUSH1 0x6 SLOAD PUSH1 0x5 SLOAD PUSH2 0x1DA8 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD EQ ISZERO PUSH2 0x604 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x28EF JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SSTORE DUP1 PUSH2 0x613 DUP2 PUSH2 0x1DB4 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x64B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x286E JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0xD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP1 ISZERO PUSH2 0x757 JUMPI PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0xD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP4 SWAP1 SSTORE PUSH1 0x3 SLOAD PUSH1 0xC SWAP1 SWAP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 SLOAD SWAP2 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP5 SWAP1 MSTORE SWAP2 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x6CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x6DE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x702 SWAP2 SWAP1 PUSH2 0x25D0 JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP8 DUP2 MSTORE SWAP2 DUP3 ADD DUP5 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 PUSH32 0xD6F2C8500DF5B44F11E9E48B91FF9F1B9D81BC496D55570C2B1B75BF65243F51 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMPDEST POP POP PUSH1 0x1 DUP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD EQ ISZERO PUSH2 0x784 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x28EF JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SSTORE DUP1 PUSH2 0x793 DUP2 PUSH2 0x1DB4 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x7CB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x286E JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x826 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x43616E6E6F74207769746864726177203 PUSH1 0x7C SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0xB SLOAD PUSH2 0x854 SWAP2 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x1E03 JUMP JUMPDEST PUSH1 0xB SSTORE PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND DUP2 SSTORE PUSH1 0x1 ADD SSTORE PUSH2 0x881 CALLER DUP5 PUSH2 0x1E0F JUMP JUMPDEST PUSH2 0x88A DUP4 PUSH2 0x1EAB JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x8AA SWAP1 DUP5 SWAP1 PUSH2 0x2A22 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0xF SLOAD PUSH1 0x40 MLOAD PUSH4 0x21421707 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x42842E0E SWAP1 PUSH2 0x8E3 SWAP1 ADDRESS SWAP1 CALLER SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x2817 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x8FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x911 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD ISZERO SWAP2 POP POP DUP1 ISZERO PUSH2 0x942 JUMPI POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST ISZERO PUSH2 0xA37 JUMPI CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x16 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE PUSH1 0x2 SLOAD DUP3 MLOAD PUSH4 0x81CA29A1 PUSH1 0xE0 SHL DUP2 MSTORE SWAP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP3 PUSH4 0x81CA29A1 SWAP3 PUSH1 0x4 DUP1 DUP4 ADD SWAP4 SWAP2 SWAP3 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x9A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x9B5 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9D9 SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE32E4E88 CALLER PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA04 SWAP2 SWAP1 PUSH2 0x27DB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xA1E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA32 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x40 MLOAD DUP4 DUP2 MSTORE CALLER SWAP1 PUSH32 0x7084F5476618D8E60B11EF0D7D3F06914655ADB8793E28FF7F018D4C76D505D5 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH1 0x1 DUP1 SSTORE POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD EQ ISZERO PUSH2 0xA98 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x28EF JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SSTORE PUSH1 0x0 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT ISZERO PUSH2 0xB00 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x12 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP5 DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH2 0xAED DUP2 PUSH2 0x5E1 JUMP JUMPDEST POP DUP1 PUSH2 0xAF8 DUP2 PUSH2 0x2A69 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xAA0 JUMP JUMPDEST POP POP PUSH1 0x1 DUP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD PUSH1 0xA SWAP1 SWAP3 MSTORE DUP3 KECCAK256 SLOAD PUSH2 0xB80 SWAP2 SWAP1 PUSH2 0xB7A SWAP1 PUSH8 0xDE0B6B3A7640000 SWAP1 PUSH2 0xB74 SWAP1 PUSH2 0xB4C SWAP1 PUSH2 0xB46 PUSH2 0x18EB JUMP JUMPDEST SWAP1 PUSH2 0x1E03 JUMP JUMPDEST PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 PUSH2 0x1DA8 JUMP JUMPDEST SWAP1 PUSH2 0x1F84 JUMP JUMPDEST SWAP1 PUSH2 0x1F90 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xB8F DUP2 PUSH2 0x761 JUMP JUMPDEST PUSH2 0xB98 DUP2 PUSH2 0x5E1 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 SLOAD TIMESTAMP LT PUSH2 0xBAD JUMPI POP PUSH1 0x4 SLOAD SWAP1 JUMP JUMPDEST POP TIMESTAMP SWAP1 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD EQ ISZERO PUSH2 0xBD5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x28EF JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SSTORE PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xC12 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x286E JUMP JUMPDEST PUSH1 0x17 SLOAD PUSH1 0xFF AND PUSH2 0xC34 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x28C0 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0xC92 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x1CDD185AD948191BD95CC81B9BDD08195E1A5CDD PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND DUP2 SSTORE PUSH1 0x1 ADD SWAP2 SWAP1 SWAP2 SSTORE MLOAD CALLER SWAP1 PUSH32 0x7084F5476618D8E60B11EF0D7D3F06914655ADB8793E28FF7F018D4C76D505D5 SWAP1 PUSH2 0xCE8 SWAP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0xF SLOAD PUSH1 0x40 MLOAD PUSH4 0x21421707 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x42842E0E SWAP1 PUSH2 0xD24 SWAP1 ADDRESS SWAP1 CALLER SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x2817 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xD3E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xD52 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x1 DUP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 SLOAD TIMESTAMP LT PUSH2 0xD71 JUMPI POP PUSH1 0x0 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 TIMESTAMP PUSH1 0x4 SLOAD PUSH2 0xD81 SWAP2 SWAP1 PUSH2 0x2A22 JUMP JUMPDEST SWAP1 POP PUSH1 0x5 SLOAD DUP2 PUSH2 0xD91 SWAP2 SWAP1 PUSH2 0x2A03 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDA3 DUP2 PUSH2 0x1DB4 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x81CA29A1 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xDF1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xE05 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xE29 SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE7B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x3737BA1033B0BAB3B2903B37BA32B9 PUSH1 0x89 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST PUSH1 0x4 SLOAD TIMESTAMP LT PUSH2 0xE9A JUMPI PUSH1 0x6 SLOAD PUSH2 0xE92 SWAP1 DUP4 SWAP1 PUSH2 0x1F84 JUMP JUMPDEST PUSH1 0x5 SSTORE PUSH2 0xEDD JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x0 SWAP1 PUSH2 0xEAA SWAP1 TIMESTAMP PUSH2 0x1E03 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xEC3 PUSH1 0x5 SLOAD DUP4 PUSH2 0x1DA8 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x6 SLOAD SWAP1 SWAP2 POP PUSH2 0xED7 SWAP1 PUSH2 0xB74 DUP7 DUP5 PUSH2 0x1F90 JUMP JUMPDEST PUSH1 0x5 SSTORE POP POP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH2 0xF0E SWAP1 ADDRESS SWAP1 PUSH1 0x4 ADD PUSH2 0x27DB JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xF26 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xF3A JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xF5E SWAP2 SWAP1 PUSH2 0x26C8 JUMP JUMPDEST SWAP1 POP PUSH2 0xF75 PUSH1 0x6 SLOAD DUP3 PUSH2 0x1F84 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x5 SLOAD GT ISZERO PUSH2 0xFC1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH24 0xA0E4DEECD2C8CAC840E4CAEEC2E4C840E8DEDE40D0D2CED PUSH1 0x43 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST TIMESTAMP PUSH1 0x7 DUP2 SWAP1 SSTORE PUSH1 0x6 SLOAD PUSH2 0xFD4 SWAP2 SWAP1 PUSH2 0x1F90 JUMP JUMPDEST PUSH1 0x4 SSTORE PUSH1 0x40 MLOAD DUP4 DUP2 MSTORE PUSH32 0xDE88A922E0D3B88B24E9623EFEB464919C6BF9F66857A65E2BFCF2CE87A9433D SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO DUP1 DUP1 ISZERO PUSH2 0x1030 JUMPI POP PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0xFF SWAP1 SWAP2 AND LT JUMPDEST DUP1 PUSH2 0x104A JUMPI POP ADDRESS EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x104A JUMPI POP PUSH1 0x0 SLOAD PUSH1 0xFF AND PUSH1 0x1 EQ JUMPDEST PUSH2 0x10AD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320616C726561 PUSH1 0x44 DUP3 ADD MSTORE PUSH14 0x191E481A5B9A5D1A585B1A5E9959 PUSH1 0x92 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x59E JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE DUP1 ISZERO PUSH2 0x10D0 JUMPI PUSH1 0x0 DUP1 SLOAD PUSH2 0xFF00 NOT AND PUSH2 0x100 OR SWAP1 SSTORE JUMPDEST PUSH1 0xF DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP3 DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x2 DUP1 SLOAD SWAP2 DUP12 AND SWAP2 SWAP1 SWAP3 AND OR SWAP1 SSTORE PUSH1 0x40 DUP1 MLOAD PUSH4 0xC45A0155 PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 MLOAD PUSH4 0xC45A0155 SWAP2 PUSH1 0x4 DUP1 DUP3 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP1 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1134 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1148 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x116C SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST PUSH1 0xE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP2 DUP3 AND DUP2 OR SWAP1 SWAP3 SSTORE PUSH1 0x3 DUP1 SLOAD SWAP4 DUP8 AND SWAP4 SWAP1 SWAP2 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH4 0xB4C7741 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 SWAP2 SWAP1 PUSH4 0x1698EE82 SWAP1 PUSH2 0x11C7 SWAP1 DUP11 SWAP1 DUP11 SWAP1 DUP11 SWAP1 PUSH1 0x4 ADD PUSH2 0x27EF JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x11DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x11F3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1217 SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1264 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH18 0x1C1BDBDB08191BD95CDB89DD08195E1A5CDD PUSH1 0x72 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST PUSH1 0x10 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE DUP1 ISZERO PUSH2 0x12CA JUMPI PUSH1 0x0 DUP1 SLOAD PUSH2 0xFF00 NOT AND SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC340A24 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1321 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1335 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1359 SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xD33219B4 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1391 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x13A5 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x13C9 SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x13F9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x289A JUMP JUMPDEST PUSH1 0x17 SLOAD PUSH1 0xFF AND PUSH2 0x141B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x28C0 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x40 MLOAD PUSH2 0x1436 SWAP2 SWAP1 PUSH2 0x27BF JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP7 GAS CALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1473 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1478 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 DUP2 SWAP1 PUSH2 0x149D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP2 SWAP1 PUSH2 0x283B JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x64 PUSH2 0x14B4 DUP6 PUSH1 0x14 PUSH2 0x29D4 JUMP JUMPDEST PUSH2 0x14BE SWAP2 SWAP1 PUSH2 0x299A JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x5EBAF1DB PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1510 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1524 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1548 SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x70A08231 DUP6 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1573 SWAP2 SWAP1 PUSH2 0x27DB JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x158B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x159F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x15C3 SWAP2 SWAP1 PUSH2 0x26C8 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x64 PUSH1 0x9 SLOAD DUP4 DUP9 PUSH2 0x15D8 SWAP2 SWAP1 PUSH2 0x29D4 JUMP JUMPDEST PUSH2 0x15E3 SWAP1 PUSH1 0x50 PUSH2 0x29D4 JUMP JUMPDEST PUSH2 0x15ED SWAP2 SWAP1 PUSH2 0x299A JUMP JUMPDEST PUSH2 0x15F7 SWAP2 SWAP1 PUSH2 0x299A JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP7 AND PUSH2 0x160D DUP3 DUP6 PUSH2 0x2957 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND LT PUSH2 0x1621 JUMPI DUP6 PUSH2 0x162B JUMP JUMPDEST PUSH2 0x162B DUP2 DUP5 PUSH2 0x2957 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC340A24 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1683 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1697 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x16BB SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xD33219B4 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x16F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1707 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x172B SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x175B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x59E SWAP1 PUSH2 0x289A JUMP JUMPDEST PUSH1 0x17 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0x17AA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH25 0x616C726561647920696E20656D657267656E6379206D6F6465 PUSH1 0x38 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST PUSH1 0x17 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0xA9059CBB SWAP1 CALLER SWAP1 DUP4 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH2 0x17F1 SWAP1 ADDRESS SWAP1 PUSH1 0x4 ADD PUSH2 0x27DB JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1809 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x181D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1841 SWAP2 SWAP1 PUSH2 0x26C8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1887 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x189B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x18BF SWAP2 SWAP1 PUSH2 0x25D0 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0x2064D51AA5A8BD67928C7675E267E05C67AD5ADF7C9098D0A602D01F36FDA9C5 SWAP1 PUSH1 0x0 SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xB SLOAD PUSH1 0x0 EQ ISZERO PUSH2 0x18FF JUMPI POP PUSH1 0x8 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x5DC PUSH2 0x192E PUSH1 0xB SLOAD PUSH2 0xB74 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1928 PUSH1 0x5 SLOAD PUSH2 0x1928 PUSH1 0x7 SLOAD PUSH2 0xB46 PUSH2 0xB9B JUMP JUMPDEST SWAP1 PUSH2 0x1DA8 JUMP JUMPDEST PUSH1 0x8 SLOAD SWAP1 PUSH2 0x1F90 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x198F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x6C6971756964697479206973203 PUSH1 0x94 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST PUSH2 0xB98 DUP2 PUSH2 0x1DB4 JUMP JUMPDEST DUP1 PUSH2 0x19A2 DUP2 PUSH2 0x1DB4 JUMP JUMPDEST PUSH1 0xF SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x19FC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6E6F742063616C6C65642066726F6D206E6674206D616E616765720000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1A0A DUP6 PUSH2 0x1F9C JUMP JUMPDEST PUSH1 0x10 SLOAD SWAP3 SWAP6 POP SWAP1 SWAP4 POP SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND SWAP2 AND EQ PUSH2 0x1A6F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x746F6B656E20706F6F6C206973206E6F742074686520726967687420706F6F6C PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST DUP2 PUSH2 0x1AB4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH21 0x6C69717569647479206E6F7420696E2072616E6765 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND GT PUSH2 0x1B08 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH24 0x63616E6E6F74207374616B652030206C6971756964697479 PUSH1 0x40 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x59E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B14 DUP3 DUP9 PUSH2 0x14A4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP12 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP8 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 DUP3 MSTORE DUP3 DUP8 AND DUP6 DUP8 ADD SWAP1 DUP2 MSTORE PUSH1 0x0 DUP15 DUP2 MSTORE PUSH1 0xC SWAP1 SWAP3 MSTORE SWAP6 SWAP1 KECCAK256 SWAP4 MLOAD DUP5 SLOAD SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR DUP4 SSTORE SWAP1 MLOAD SWAP3 MLOAD DUP2 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP3 AND SWAP2 SWAP1 SWAP2 OR PUSH1 0x1 SWAP1 SWAP2 ADD SSTORE SWAP1 POP PUSH2 0x1BCE DUP7 PUSH1 0x14 DUP1 SLOAD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x15 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP3 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD DUP4 SSTORE SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0xCE6D7B5282BD9A3661AE061FEED1DBDA4E52AB073B1F9285BE6E155D9C38D4EC ADD SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP1 SLOAD PUSH1 0x12 DUP5 MSTORE DUP3 DUP7 KECCAK256 DUP2 DUP8 MSTORE DUP5 MSTORE DUP3 DUP7 KECCAK256 DUP14 SWAP1 SSTORE DUP13 DUP7 MSTORE PUSH1 0x13 DUP5 MSTORE SWAP2 DUP6 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE SWAP4 DUP4 MSTORE MSTORE DUP2 SLOAD PUSH1 0x1 SWAP3 SWAP2 SWAP1 PUSH2 0x1C21 SWAP1 DUP5 SWAP1 PUSH2 0x2982 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0xB SLOAD PUSH2 0x1C3C SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP4 AND PUSH2 0x1F90 JUMP JUMPDEST PUSH1 0xB SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x16 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x1D53 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x16 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH1 0x2 SLOAD DUP3 MLOAD PUSH4 0x81CA29A1 PUSH1 0xE0 SHL DUP2 MSTORE SWAP3 MLOAD SWAP4 AND SWAP3 PUSH4 0x81CA29A1 SWAP3 PUSH1 0x4 DUP1 DUP3 ADD SWAP4 SWAP3 SWAP2 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1CBD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1CD1 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1CF5 SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x97A302F7 DUP9 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D20 SWAP2 SWAP1 PUSH2 0x27DB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1D3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1D4E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP8 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP5 DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE DUP4 AND DUP2 DUP4 ADD MSTORE SWAP1 MLOAD CALLER SWAP2 PUSH32 0xB1A5F058B6335D833F8FD0EAA6562AF341D1AD22EEBAFF5776988D1C6E730879 SWAP2 SWAP1 DUP2 SWAP1 SUB PUSH1 0x60 ADD SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD91 DUP3 DUP5 PUSH2 0x2A03 JUMP JUMPDEST PUSH2 0x1DBC PUSH2 0x18EB JUMP JUMPDEST PUSH1 0x8 SSTORE PUSH2 0x1DC7 PUSH2 0xB9B JUMP JUMPDEST PUSH1 0x7 SSTORE DUP1 ISZERO PUSH2 0xB98 JUMPI PUSH2 0x1DD9 DUP2 PUSH2 0xB09 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE PUSH1 0x8 SLOAD PUSH1 0xA SWAP1 SWAP2 MSTORE SWAP2 SWAP1 KECCAK256 SSTORE PUSH2 0xB98 DUP2 PUSH2 0x207A JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD91 DUP3 DUP5 PUSH2 0x2A22 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD DUP5 DUP5 MSTORE PUSH1 0x13 SWAP1 SWAP3 MSTORE SWAP1 SWAP2 KECCAK256 SLOAD DUP1 DUP3 EQ PUSH2 0x1E78 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x12 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP6 DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 SLOAD DUP5 DUP5 MSTORE DUP2 DUP5 KECCAK256 DUP2 SWAP1 SSTORE DUP4 MSTORE PUSH1 0x13 SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP2 SWAP1 SSTORE JUMPDEST POP PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x13 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP5 SWAP1 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP5 AND DUP4 MSTORE PUSH1 0x12 DUP2 MSTORE DUP4 DUP4 KECCAK256 SWAP2 DUP4 MSTORE MSTORE SWAP1 DUP2 KECCAK256 SSTORE JUMP JUMPDEST PUSH1 0x14 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x1EBD SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x2A22 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x15 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x14 DUP1 SLOAD SWAP4 SWAP5 POP SWAP1 SWAP3 DUP5 SWAP1 DUP2 LT PUSH2 0x1EF3 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP DUP1 PUSH1 0x14 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x1F22 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD SWAP3 SWAP1 SWAP3 SSTORE DUP3 DUP2 MSTORE PUSH1 0x15 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP5 SWAP1 SSTORE DUP6 DUP3 MSTORE DUP2 KECCAK256 SSTORE PUSH1 0x14 DUP1 SLOAD DUP1 PUSH2 0x1F68 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD91 DUP3 DUP5 PUSH2 0x29C0 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD91 DUP3 DUP5 PUSH2 0x2982 JUMP JUMPDEST PUSH1 0xE SLOAD PUSH1 0xF SLOAD PUSH1 0x0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH2 0x1FC8 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND SWAP2 AND DUP11 PUSH2 0x215D JUMP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 POP SWAP4 POP PUSH1 0x0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3850C7BD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0xE0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x200B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x201F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2043 SWAP2 SWAP1 PUSH2 0x2622 JUMP JUMPDEST POP POP POP POP POP SWAP2 POP POP DUP5 SWAP8 POP DUP1 PUSH1 0x2 SIGNEXTEND DUP5 PUSH1 0x2 SIGNEXTEND SGT ISZERO DUP1 ISZERO PUSH2 0x206A JUMPI POP DUP3 PUSH1 0x2 SIGNEXTEND DUP2 PUSH1 0x2 SIGNEXTEND SLT ISZERO JUMPDEST SWAP8 SWAP10 SWAP8 SWAP9 POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0xE SLOAD PUSH1 0xF SLOAD PUSH1 0x0 SWAP2 PUSH2 0x209A SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND SWAP2 AND DUP5 PUSH2 0x215D JUMP JUMPDEST PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP7 AND SWAP2 AND EQ ISZERO SWAP3 POP PUSH2 0x20CB SWAP2 POP POP JUMPI POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH2 0x20EE DUP4 DUP4 PUSH2 0x14A4 JUMP JUMPDEST PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0xB SLOAD SWAP2 SWAP3 POP PUSH2 0x2129 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB PUSH1 0x1 PUSH1 0x80 SHL SWAP1 SWAP3 DIV DUP3 AND SWAP2 PUSH2 0xB46 SWAP2 SWAP1 DUP6 AND PUSH2 0x1F90 JUMP JUMPDEST PUSH1 0xB SSTORE PUSH1 0x0 SWAP4 DUP5 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 SWAP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP4 DUP5 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP4 SWAP1 SWAP3 AND SWAP3 SWAP1 SWAP3 OR PUSH1 0x1 SWAP1 SWAP2 ADD SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x99FBAB88 DUP10 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2196 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH2 0x180 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x21AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x21C3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x21E7 SWAP2 SWAP1 PUSH2 0x26E0 JUMP JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH4 0xB4C7741 PUSH1 0xE1 SHL DUP2 MSTORE SWAP5 SWAP16 POP SWAP3 SWAP14 POP SWAP1 SWAP12 POP SWAP5 SWAP10 POP SWAP3 SWAP8 POP SWAP1 SWAP6 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP16 AND SWAP5 POP PUSH4 0x1698EE82 SWAP4 POP PUSH2 0x222F SWAP3 POP DUP8 SWAP2 POP DUP7 SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x27EF JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2247 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x225B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x227F SWAP2 SWAP1 PUSH2 0x2303 JUMP JUMPDEST SWAP7 POP POP POP POP SWAP4 POP SWAP4 POP SWAP4 POP SWAP4 JUMP JUMPDEST DUP1 MLOAD PUSH2 0x2298 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x2298 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH1 0x2 DUP2 SWAP1 SIGNEXTEND DUP2 EQ PUSH2 0x2298 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x2298 DUP2 PUSH2 0x2ADB JUMP JUMPDEST DUP1 MLOAD PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0x2298 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x2298 DUP2 PUSH2 0x2AF0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22F8 JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xD91 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2314 JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xD91 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x2337 JUMPI DUP2 DUP3 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH2 0x2342 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD PUSH2 0x2352 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH2 0x2362 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP4 POP PUSH1 0x60 DUP8 ADD CALLDATALOAD PUSH2 0x2372 DUP2 PUSH2 0x2AF0 JUMP JUMPDEST SWAP3 POP PUSH1 0x80 DUP8 ADD CALLDATALOAD PUSH2 0x2382 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP2 POP PUSH1 0xA0 DUP8 ADD CALLDATALOAD PUSH2 0x2392 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x23B7 JUMPI DUP1 DUP2 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x23C2 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x23D2 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x23F5 JUMPI DUP3 DUP4 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2408 JUMPI DUP3 DUP4 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x2416 JUMPI DUP4 DUP5 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x2427 JUMPI DUP4 DUP5 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x244C JUMPI DUP2 DUP3 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2457 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 DUP2 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x2474 JUMPI DUP4 DUP5 REVERT JUMPDEST DUP2 DUP7 ADD SWAP2 POP DUP7 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2487 JUMPI DUP4 DUP5 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x2499 JUMPI PUSH2 0x2499 PUSH2 0x2AB0 JUMP JUMPDEST DUP1 PUSH1 0x5 SHL SWAP2 POP PUSH2 0x24AA DUP5 DUP4 ADD PUSH2 0x2926 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP5 DUP2 ADD SWAP1 DUP5 DUP7 ADD DUP5 DUP7 ADD DUP8 ADD DUP12 LT ISZERO PUSH2 0x24C4 JUMPI DUP8 DUP9 REVERT JUMPDEST DUP8 SWAP6 POP JUMPDEST DUP4 DUP7 LT ISZERO PUSH2 0x24F2 JUMPI DUP1 CALLDATALOAD SWAP5 POP PUSH2 0x24DD DUP6 PUSH2 0x2AC6 JUMP JUMPDEST DUP5 DUP4 MSTORE PUSH1 0x1 SWAP6 SWAP1 SWAP6 ADD SWAP5 SWAP2 DUP7 ADD SWAP2 DUP7 ADD PUSH2 0x24C8 JUMP JUMPDEST POP DUP1 SWAP7 POP POP POP POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2515 JUMPI DUP2 DUP3 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2520 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 DUP2 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x253D JUMPI DUP4 DUP5 REVERT JUMPDEST DUP2 DUP7 ADD SWAP2 POP DUP7 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2550 JUMPI DUP4 DUP5 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x2562 JUMPI PUSH2 0x2562 PUSH2 0x2AB0 JUMP JUMPDEST PUSH2 0x2574 PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP6 ADD PUSH2 0x2926 JUMP JUMPDEST SWAP2 POP DUP1 DUP3 MSTORE DUP8 DUP5 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x2589 JUMPI DUP5 DUP6 REVERT JUMPDEST DUP1 DUP5 DUP5 ADD DUP6 DUP5 ADD CALLDATACOPY DUP2 ADD SWAP1 SWAP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP2 SWAP5 SWAP2 SWAP4 POP SWAP1 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x25B7 JUMPI DUP2 DUP3 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x25C2 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x25E1 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xD91 DUP3 PUSH2 0x229D JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x25FC JUMPI DUP2 DUP3 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2607 DUP2 PUSH2 0x2ADB JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2617 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x263C JUMPI DUP5 DUP6 REVERT JUMPDEST DUP8 MLOAD PUSH2 0x2647 DUP2 PUSH2 0x2AC6 JUMP JUMPDEST SWAP7 POP PUSH2 0x2655 PUSH1 0x20 DUP10 ADD PUSH2 0x22AD JUMP JUMPDEST SWAP6 POP PUSH2 0x2663 PUSH1 0x40 DUP10 ADD PUSH2 0x22CA JUMP JUMPDEST SWAP5 POP PUSH2 0x2671 PUSH1 0x60 DUP10 ADD PUSH2 0x22CA JUMP JUMPDEST SWAP4 POP PUSH2 0x267F PUSH1 0x80 DUP10 ADD PUSH2 0x22CA JUMP JUMPDEST SWAP3 POP PUSH1 0xA0 DUP9 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x2694 JUMPI DUP2 DUP3 REVERT JUMPDEST SWAP2 POP PUSH2 0x26A2 PUSH1 0xC0 DUP10 ADD PUSH2 0x229D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x26C1 JUMPI DUP1 DUP2 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x26D9 JUMPI DUP1 DUP2 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH2 0x180 DUP14 DUP16 SUB SLT ISZERO PUSH2 0x2702 JUMPI DUP6 DUP7 REVERT JUMPDEST DUP13 MLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x271D JUMPI DUP7 DUP8 REVERT JUMPDEST SWAP12 POP PUSH2 0x272B PUSH1 0x20 DUP15 ADD PUSH2 0x228D JUMP JUMPDEST SWAP11 POP PUSH2 0x2739 PUSH1 0x40 DUP15 ADD PUSH2 0x228D JUMP JUMPDEST SWAP10 POP PUSH2 0x2747 PUSH1 0x60 DUP15 ADD PUSH2 0x228D JUMP JUMPDEST SWAP9 POP PUSH2 0x2755 PUSH1 0x80 DUP15 ADD PUSH2 0x22DC JUMP JUMPDEST SWAP8 POP PUSH2 0x2763 PUSH1 0xA0 DUP15 ADD PUSH2 0x22AD JUMP JUMPDEST SWAP7 POP PUSH2 0x2771 PUSH1 0xC0 DUP15 ADD PUSH2 0x22AD JUMP JUMPDEST SWAP6 POP PUSH2 0x277F PUSH1 0xE0 DUP15 ADD PUSH2 0x22BF JUMP JUMPDEST SWAP5 POP PUSH2 0x100 DUP14 ADD MLOAD SWAP4 POP PUSH2 0x120 DUP14 ADD MLOAD SWAP3 POP PUSH2 0x279E PUSH2 0x140 DUP15 ADD PUSH2 0x22BF JUMP JUMPDEST SWAP2 POP PUSH2 0x27AD PUSH2 0x160 DUP15 ADD PUSH2 0x22BF JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP12 POP SWAP3 SWAP6 SWAP9 SWAP12 POP SWAP3 SWAP6 SWAP9 SWAP12 JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x27D1 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x2A39 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH3 0xFFFFFF SWAP1 SWAP2 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x285A DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x2A39 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x12 SWAP1 DUP3 ADD MSTORE PUSH18 0x37B7363C903A37B5B2B734B21037BBB732B9 PUSH1 0x71 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0xC SWAP1 DUP3 ADD MSTORE PUSH12 0x6E6F742074696D656C6F636B PUSH1 0xA0 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x15 SWAP1 DUP3 ADD MSTORE PUSH21 0x6E6F7420696E20656D657267656E6379206D6F6465 PUSH1 0x58 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x1F SWAP1 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x294F JUMPI PUSH2 0x294F PUSH2 0x2AB0 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 DUP2 AND DUP5 DUP3 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x2979 JUMPI PUSH2 0x2979 PUSH2 0x2A84 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x2995 JUMPI PUSH2 0x2995 PUSH2 0x2A84 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP4 DUP2 AND DUP1 PUSH2 0x29B4 JUMPI PUSH2 0x29B4 PUSH2 0x2A9A JUMP JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x29CF JUMPI PUSH2 0x29CF PUSH2 0x2A9A JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 DUP2 AND DUP5 DUP3 AND DUP2 ISZERO ISZERO DUP3 DUP5 DIV DUP3 GT AND ISZERO PUSH2 0x29FA JUMPI PUSH2 0x29FA PUSH2 0x2A84 JUMP JUMPDEST MUL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x2A1D JUMPI PUSH2 0x2A1D PUSH2 0x2A84 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2A34 JUMPI PUSH2 0x2A34 PUSH2 0x2A84 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2A54 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x2A3C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x2A63 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x2A7D JUMPI PUSH2 0x2A7D PUSH2 0x2A84 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xB98 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xB98 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0xFFFFFF DUP2 AND DUP2 EQ PUSH2 0xB98 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 JUMP MSTORE8 SWAP7 0x27 0xCA 0xDE LOG3 0xD5 0x4F 0xB8 SSTORE 0xFB 0xCD SMOD REVERT 0xB6 PUSH32 0x3DC7D70F5885914C19EAF958ED34364736F6C63430008040033000000000000 ","sourceMap":"327:1817:27:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3814:163:29;;;;;;:::i;:::-;3905:7;3935:18;;;:8;:18;;;;;:35;;;-1:-1:-1;;;3935:35:29;;-1:-1:-1;;;;;3935:35:29;;3814:163;;;;19118:25:37;;;19106:2;19091:18;3814:163:29;;;;;;;;520:301:27;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;11306:33:37;;;11288:52;;11276:2;11261:18;520:301:27;11243:103:37;1973:26:29;;;;;-1:-1:-1;;;;;1973:26:29;;;;;;;;;;:::i;1504:::-;;;;;;4830:119;;;:::i;2292:405:28:-;;;;;;:::i;:::-;;:::i;:::-;;1350:936;;;;;;:::i;:::-;;:::i;2703:293::-;;;;;;:::i;:::-;;:::i;2653:40:29:-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11117:14:37;;11110:22;11092:41;;11080:2;11065:18;2653:40:29;11047:92:37;1269:39:29;;;;;;4528:296;;;;;;:::i;:::-;;:::i;1390:44::-;;;;;;1440:57;;;;;;:::i;:::-;;;;;;;;;;;;;;2064:44;;;;;;:::i;:::-;;;;;;;;;;;;;;1234:29;;;;;;1125:34;;;;;-1:-1:-1;;;;;1125:34:29;;;3002:105:28;;;;;;:::i;:::-;;:::i;3983:153:29:-;;;:::i;827:474:27:-;;;;;;:::i;:::-;;:::i;3454:227:29:-;;;;;;:::i;:::-;;:::i;490:23:27:-;;;;;;;;;1571:43:29;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1571:43:29;;;;-1:-1:-1;;;;;1571:43:29;;;;-1:-1:-1;;;1571:43:29;;;;;;;;;-1:-1:-1;;;;;10487:32:37;;;10469:51;;-1:-1:-1;;;;;10594:15:37;;;10589:2;10574:18;;10567:43;10646:15;;10626:18;;;10619:43;10457:2;10442:18;1571:43:29;10424:244:37;1846:61:29;;;;;-1:-1:-1;;;;;1846:61:29;;;4665:1184:28;;;;;;:::i;:::-;;:::i;2745:664:29:-;;;;;;:::i;:::-;;:::i;1758:32::-;;;;;-1:-1:-1;;;;;1758:32:29;;;1679:283:27;;;;;;:::i;:::-;;:::i;725:567:28:-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;18928:32:37;;;18910:51;;18898:2;18883:18;725:567:28;18865:102:37;1307:302:27;;;:::i;3687:121:29:-;;;;;;:::i;:::-;3747:7;3773:18;;;:8;:18;;;;;:28;;;-1:-1:-1;;;;;3773:28:29;;3687:121;1314:29;;;;;;4142:380;;;:::i;1165:26::-;;;;;-1:-1:-1;;;;;1165:26:29;;;7729:161:28;;;;;;:::i;:::-;;:::i;1349:35:29:-;;;;;;1197:31;;;;;;1673:42;;;;;;:::i;:::-;;;;;;;;;;;;;;520:301:27;686:11;;660:6;;686:11;;678:45;;;;-1:-1:-1;;;678:45:27;;;;;;;:::i;:::-;;;;;;;;;733:34;751:5;758:8;733:17;:34::i;:::-;-1:-1:-1;;;;520:301:27;;;;;;;:::o;4830:119:29:-;4885:7;4911:31;4926:15;;4911:10;;:14;;:31;;;;:::i;:::-;4904:38;;4830:119;:::o;2292:405:28:-;1744:1:6;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:6;;;;;;;:::i;:::-;1744:1;2455:7;:18;2386:8:28;7682:23:::1;2386:8:::0;7682:13:::1;:23::i;:::-;8816:18:29::2;::::0;;;:8:::2;:18;::::0;;;;:24;2419:8:28;;-1:-1:-1;;;;;8816:24:29::2;8844:10;8816:38;8808:69;;;;-1:-1:-1::0;;;8808:69:29::2;;;;;;;:::i;:::-;2443:14:28::3;2460:17:::0;;;:7:::3;:17;::::0;;;;;2491:10;;2487:204:::3;;2537:1;2517:17:::0;;;:7:::3;:17;::::0;;;;;;;:21;;;2552:12:::3;::::0;2574:8:::3;:18:::0;;;;;;;:24;2552:55;;-1:-1:-1;;;2552:55:28;;-1:-1:-1;;;;;2574:24:28;;::::3;2552:55;::::0;::::3;10847:51:37::0;10914:18;;;10907:34;;;2552:12:28;::::3;::::0;:21:::3;::::0;10820:18:37;;2552:55:28::3;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;2637:18:28::3;::::0;;;:8:::3;:18;::::0;;;;;;;;:24;2626:54;;19708:25:37;;;19749:18;;;19742:34;;;-1:-1:-1;;;;;2637:24:28::3;::::0;2626:54:::3;::::0;19681:18:37;2626:54:28::3;;;;;;;2487:204;-1:-1:-1::0;;1701:1:6;2628:22;;-1:-1:-1;;2292:405:28:o;1350:936::-;1744:1:6;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:6;;;;;;;:::i;:::-;1744:1;2455:7;:18;1442:7:28;7682:23:::1;1442:7:::0;7682:13:::1;:23::i;:::-;8816:18:29::2;::::0;;;:8:::2;:18;::::0;;;;:24;1474:7:28;;-1:-1:-1;;;;;8816:24:29::2;8844:10;8816:38;8808:69;;;;-1:-1:-1::0;;;8808:69:29::2;;;;;;;:::i;:::-;1535:1:28::3;1505:17:::0;;;:8:::3;:17;::::0;;;;:27:::3;;::::0;-1:-1:-1;;;;;1505:27:28::3;1497:61;;;::::0;-1:-1:-1;;;1497:61:28;;16867:2:37;1497:61:28::3;::::0;::::3;16849:21:37::0;16906:2;16886:18;;;16879:30;-1:-1:-1;;;16925:18:37;;;16918:47;16982:18;;1497:61:28::3;16839:167:37::0;1497:61:28::3;1599:17;::::0;;;:8:::3;:17;::::0;;;;:34:::3;;::::0;1583:11:::3;::::0;:51:::3;::::0;-1:-1:-1;;;1599:34:28;::::3;-1:-1:-1::0;;;;;1599:34:28::3;1583:15;:51::i;:::-;1569:11;:65:::0;1651:17:::3;::::0;;;:8:::3;:17;::::0;;;;1644:24;;-1:-1:-1;;;;;;1644:24:28::3;::::0;;;::::3;::::0;1720:53:::3;1753:10;1660:7:::0;1720:32:::3;:53::i;:::-;1783:45;1820:7;1783:36;:45::i;:::-;1848:10;1838:21;::::0;;;:9:::3;:21;::::0;;;;:26;;1863:1:::3;::::0;1838:21;:26:::3;::::0;1863:1;;1838:26:::3;:::i;:::-;::::0;;;-1:-1:-1;;1875:26:28::3;::::0;:125:::3;::::0;-1:-1:-1;;;1875:125:28;;-1:-1:-1;;;;;1875:26:28;;::::3;::::0;:43:::3;::::0;:125:::3;::::0;1940:4:::3;::::0;1959:10:::3;::::0;1983:7;;1875:125:::3;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;-1:-1:-1::0;;2025:10:28::3;2015:21;::::0;;;:9:::3;:21;::::0;;;;;:26;;-1:-1:-1;;2015:50:28;::::3;;;-1:-1:-1::0;2054:10:28::3;2045:20;::::0;;;:8:::3;:20;::::0;;;;;::::3;;2015:50;2011:223;;;2090:10;2104:5;2081:20:::0;;;:8:::3;:20;::::0;;;;;;;;:28;;-1:-1:-1;;2081:28:28::3;::::0;;2137:8:::3;::::0;:21;;-1:-1:-1;;;2137:21:28;;;;-1:-1:-1;;;;;2137:8:28;;::::3;::::0;:19:::3;::::0;:21:::3;::::0;;::::3;::::0;2081:20;;2137:21;;;;;:8;:21;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2123:58:28::3;;2199:10;2123:100;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;2011:223;2249:30;::::0;19118:25:37;;;2259:10:28::3;::::0;2249:30:::3;::::0;19106:2:37;19091:18;2249:30:28::3;;;;;;;-1:-1:-1::0;;1701:1:6;2628:22;;-1:-1:-1;1350:936:28:o;2703:293::-;1744:1:6;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:6;;;;;;;:::i;:::-;1744:1;2455:7;:18;2831:13:28::1;2826:164;-1:-1:-1::0;;;;;2858:18:28;::::1;;::::0;;;:9:::1;:18;::::0;;;;;2850:26;::::1;2826:164;;;-1:-1:-1::0;;;;;2919:21:28;::::1;2901:15;2919:21:::0;;;:12:::1;:21;::::0;;;;;;;:28;;;;;;;;;2961:18:::1;2919:28:::0;2961:9:::1;:18::i;:::-;-1:-1:-1::0;2878:7:28;::::1;::::0;::::1;:::i;:::-;;;;2826:164;;;-1:-1:-1::0;;1701:1:6;2628:22;;-1:-1:-1;2703:293:28:o;4528:296:29:-;4583:7;4799:17;;;:7;:17;;;;;;;;;4716:22;:32;;;;;;4621:196;;4799:17;4621:156;;4772:4;;4621:129;;4695:54;;:16;:14;:16::i;:::-;:20;;:54::i;:::-;4621:18;;;;:8;:18;;;;;:52;;;-1:-1:-1;;;4621:52:29;;-1:-1:-1;;;;;4621:52:29;;:73;:129::i;:::-;:150;;:156::i;:::-;:177;;:196::i;:::-;4602:215;4528:296;-1:-1:-1;;4528:296:29:o;3002:105:28:-;3053:18;3062:8;3053;:18::i;:::-;3081:19;3091:8;3081:9;:19::i;:::-;3002:105;:::o;3983:153:29:-;4040:7;4084:12;;4066:15;:30;:63;;-1:-1:-1;4117:12:29;;;4830:119::o;4066:63::-;-1:-1:-1;4099:15:29;;3983:153::o;827:474:27:-;1744:1:6;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:6;;;;;;;:::i;:::-;1744:1;2455:7;:18;8816::29::1;::::0;;;:8:::1;:18;::::0;;;;:24;935:7:27;;-1:-1:-1;;;;;8816:24:29::1;8844:10;8816:38;8808:69;;;;-1:-1:-1::0;;;8808:69:29::1;;;;;;;:::i;:::-;966:11:27::2;::::0;::::2;;958:45;;;;-1:-1:-1::0;;;958:45:27::2;;;;;;;:::i;:::-;1021:17;::::0;;;:8:::2;:17;::::0;;;;:27:::2;;::::0;-1:-1:-1;;;;;1021:27:27::2;1013:65;;;::::0;-1:-1:-1;;;1013:65:27;;17907:2:37;1013:65:27::2;::::0;::::2;17889:21:37::0;17946:2;17926:18;;;17919:30;-1:-1:-1;;;17965:18:37;;;17958:50;18025:18;;1013:65:27::2;17879:170:37::0;1013:65:27::2;1096:17;::::0;;;:8:::2;:17;::::0;;;;;1089:24;;-1:-1:-1;;;;;;1089:24:27::2;::::0;;;::::2;::::0;;;;1128:30;1138:10:::2;::::0;1128:30:::2;::::0;::::2;::::0;1105:7;19118:25:37;;19106:2;19091:18;;19073:76;1128:30:27::2;;;;;;;;1169:26;::::0;:125:::2;::::0;-1:-1:-1;;;1169:125:27;;-1:-1:-1;;;;;1169:26:27;;::::2;::::0;:43:::2;::::0;:125:::2;::::0;1234:4:::2;::::0;1253:10:::2;::::0;1277:7;;1169:125:::2;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;1701:1:6;2628:22;;-1:-1:-1;;;;827:474:27:o;3454:227:29:-;3509:7;3551:12;;3532:15;:31;3528:45;;-1:-1:-1;3572:1:29;;3454:227;-1:-1:-1;3454:227:29:o;3528:45::-;3583:18;3619:15;3604:12;;:30;;;;:::i;:::-;3583:51;;3664:10;;3651;:23;;;;:::i;:::-;3644:30;3454:227;-1:-1:-1;;;3454:227:29:o;4665:1184:28:-;4773:1;7682:23;7696:8;7682:13;:23::i;:::-;4812:8:::1;;;;;;;;;-1:-1:-1::0;;;;;4812:8:28::1;-1:-1:-1::0;;;;;4812:19:28::1;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4798:35:28::1;:10;-1:-1:-1::0;;;;;4798:35:28::1;;4790:63;;;::::0;-1:-1:-1;;;4790:63:28;;14345:2:37;4790:63:28::1;::::0;::::1;14327:21:37::0;14384:2;14364:18;;;14357:30;-1:-1:-1;;;14403:18:37;;;14396:45;14458:18;;4790:63:28::1;14317:165:37::0;4790:63:28::1;4887:12;;4868:15;:31;4864:308;;4937:15;::::0;4926:27:::1;::::0;:6;;:10:::1;:27::i;:::-;4913:10;:40:::0;4864:308:::1;;;5002:12;::::0;4982:17:::1;::::0;5002:33:::1;::::0;5019:15:::1;5002:16;:33::i;:::-;4982:53;;5049:16;5068:25;5082:10;;5068:9;:13;;:25;;;;:::i;:::-;5145:15;::::0;5049:44;;-1:-1:-1;5120:41:28::1;::::0;:20:::1;:6:::0;5049:44;5120:10:::1;:20::i;:41::-;5107:10;:54:::0;-1:-1:-1;;4864:308:28::1;5544:12;::::0;:37:::1;::::0;-1:-1:-1;;;5544:37:28;;5526:15:::1;::::0;-1:-1:-1;;;;;5544:12:28::1;::::0;:22:::1;::::0;:37:::1;::::0;5575:4:::1;::::0;5544:37:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5526:55;;5626:28;5638:15;;5626:7;:11;;:28;;;;:::i;:::-;5612:10;;:42;;5591:113;;;::::0;-1:-1:-1;;;5591:113:28;;17554:2:37;5591:113:28::1;::::0;::::1;17536:21:37::0;17593:2;17573:18;;;17566:30;-1:-1:-1;;;17612:18:37;;;17605:54;17676:18;;5591:113:28::1;17526:174:37::0;5591:113:28::1;5732:15;5715:14;:32:::0;;;5792:15:::1;::::0;5772:36:::1;::::0;5732:15;5772:19:::1;:36::i;:::-;5757:12;:51:::0;5823:19:::1;::::0;19118:25:37;;;5823:19:28::1;::::0;19106:2:37;19091:18;5823:19:28::1;;;;;;;7715:1;4665:1184:::0;;;:::o;2745:664:29:-;3100:19:5;3123:13;;;;;;3122:14;;3168:34;;;;-1:-1:-1;3186:12:5;;3201:1;3186:12;;;;:16;3168:34;3167:97;;;-1:-1:-1;3236:4:5;1465:19:11;:23;;;3208:55:5;;-1:-1:-1;3246:12:5;;;;;:17;3208:55;3146:190;;;;-1:-1:-1;;;3146:190:5;;16452:2:37;3146:190:5;;;16434:21:37;16491:2;16471:18;;;16464:30;16530:34;16510:18;;;16503:62;-1:-1:-1;;;16581:18:37;;;16574:44;16635:19;;3146:190:5;16424:236:37;3146:190:5;3346:12;:16;;-1:-1:-1;;3346:16:5;3361:1;3346:16;;;3372:65;;;;3406:13;:20;;-1:-1:-1;;3406:20:5;;;;;3372:65;2971:26:29::1;:107:::0;;-1:-1:-1;;;;;2971:107:29;;::::1;-1:-1:-1::0;;;;;;2971:107:29;;::::1;::::0;::::1;::::0;;;3089:8:::1;:31:::0;;;;::::1;::::0;;;::::1;;::::0;;3158:36:::1;::::0;;-1:-1:-1;;;3158:36:29;;;;:34:::1;::::0;:36:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;2971:107;3158:36;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3130:7;:65:::0;;-1:-1:-1;;;;;3130:65:29;;::::1;-1:-1:-1::0;;;;;;3130:65:29;;::::1;::::0;::::1;::::0;;;3205:12:::1;:36:::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;3268::::1;::::0;-1:-1:-1;;;3268:36:29;;3130:7:::1;::::0;:65;3268:15:::1;::::0;:36:::1;::::0;3284:6;;3292;;3300:3;;3268:36:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3252:52:::0;-1:-1:-1;;;;;;3322:19:29;::::1;3314:50;;;::::0;-1:-1:-1;;;3314:50:29;;13651:2:37;3314:50:29::1;::::0;::::1;13633:21:37::0;13690:2;13670:18;;;13663:30;-1:-1:-1;;;13709:18:37;;;13702:48;13767:18;;3314:50:29::1;13623:168:37::0;3314:50:29::1;3374:4;:28:::0;;-1:-1:-1;;;;;;3374:28:29::1;-1:-1:-1::0;;;;;3374:28:29;;;::::1;::::0;;;::::1;::::0;;3457:99:5;;;;3507:5;3491:21;;-1:-1:-1;;3491:21:5;;;3531:14;;-1:-1:-1;12660:36:37;;3531:14:5;;12648:2:37;12633:18;3531:14:5;;;;;;;3457:99;2745:664:29;;;;;;;:::o;1679:283:27:-;2055:8;;;;;;;;;-1:-1:-1;;;;;2055:8:27;-1:-1:-1;;;;;2055:17:27;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2037:47:27;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2023:63:27;:10;-1:-1:-1;;;;;2023:63:27;;2002:122;;;;-1:-1:-1;;;2002:122:27;;;;;;;:::i;:::-;1802:11:::1;::::0;::::1;;1794:45;;;;-1:-1:-1::0;;;1794:45:27::1;;;;;;;:::i;:::-;1850:12;1864:21:::0;1889:6:::1;-1:-1:-1::0;;;;;1889:11:27::1;1901:9;1889:22;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1849:62;;;;1929:7;1945:8;1921:34;;;;;-1:-1:-1::0;;;1921:34:27::1;;;;;;;;:::i;:::-;;2134:1;;1679:283:::0;;:::o;725:567:28:-;833:7;;895:3;876:15;:10;889:2;876:15;:::i;:::-;875:23;;;;:::i;:::-;856:42;;908:13;935:8;;;;;;;;;-1:-1:-1;;;;;935:8:28;-1:-1:-1;;;;;935:15:28;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;924:39:28;;964:7;924:48;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;908:64;;983:17;1085:3;1061:19;;1026:5;1005:10;:27;;;;:::i;:::-;:32;;1035:2;1005:32;:::i;:::-;1004:77;;;;:::i;:::-;1003:85;;;;:::i;:::-;983:105;-1:-1:-1;;;;;;1184:33:28;;:20;983:105;1184:8;:20;:::i;:::-;-1:-1:-1;;;;;1184:33:28;;:101;;1275:10;1184:101;;;1236:20;1247:9;1236:8;:20;:::i;:::-;1165:120;725:567;-1:-1:-1;;;;;;725:567:28:o;1307:302:27:-;2055:8;;;;;;;;;-1:-1:-1;;;;;2055:8:27;-1:-1:-1;;;;;2055:17:27;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2037:47:27;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2023:63:27;:10;-1:-1:-1;;;;;2023:63:27;;2002:122;;;;-1:-1:-1;;;2002:122:27;;;;;;;:::i;:::-;1379:11:::1;::::0;::::1;;1378:12;1370:50;;;::::0;-1:-1:-1;;;1370:50:27;;13297:2:37;1370:50:27::1;::::0;::::1;13279:21:37::0;13336:2;13316:18;;;13309:30;-1:-1:-1;;;13355:18:37;;;13348:55;13420:18;;1370:50:27::1;13269:175:37::0;1370:50:27::1;1430:11;:18:::0;;-1:-1:-1;;1430:18:27::1;1444:4;1430:18;::::0;;1458:12:::1;::::0;1517:37:::1;::::0;-1:-1:-1;;;1517:37:27;;-1:-1:-1;;;;;1458:12:27;;::::1;::::0;:21:::1;::::0;1493:10:::1;::::0;1458:12;;1517:22:::1;::::0;:37:::1;::::0;1548:4:::1;::::0;1517:37:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1458:106;::::0;-1:-1:-1;;;;;;1458:106:27::1;::::0;;;;;;-1:-1:-1;;;;;10865:32:37;;;1458:106:27::1;::::0;::::1;10847:51:37::0;10914:18;;;10907:34;10820:18;;1458:106:27::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;1580:22:27::1;::::0;::::1;::::0;;;::::1;1307:302::o:0;4142:380:29:-;4189:7;4212:11;;4227:1;4212:16;4208:49;;;-1:-1:-1;4237:20:29;;;4142:380::o;4208:49::-;4286:229;4328:173;4489:11;;4328:135;4458:4;4328:104;4421:10;;4328:67;4380:14;;4328:26;:24;:26::i;:67::-;:92;;:104::i;:173::-;4286:20;;;:24;:229::i;7729:161:28:-;7830:1;7799:18;;;:8;:18;;;;;:28;;;-1:-1:-1;;;;;7799:28:28;7791:59;;;;-1:-1:-1;;;7791:59:28;;15395:2:37;7791:59:28;;;15377:21:37;15434:2;15414:18;;;15407:30;-1:-1:-1;;;15453:18:37;;;15446:44;15507:18;;7791:59:28;15367:164:37;7791:59:28;7860:23;7874:8;7860:13;:23::i;3315:1290::-;3413:8;7682:23;7696:8;7682:13;:23::i;:::-;3480:26:::1;::::0;-1:-1:-1;;;;;3480:26:28::1;3458:10;:49;3437:123;;;::::0;-1:-1:-1;;;3437:123:28;;14689:2:37;3437:123:28::1;::::0;::::1;14671:21:37::0;14728:2;14708:18;;;14701:30;14767:29;14747:18;;;14740:57;14814:18;;3437:123:28::1;14661:177:37::0;3437:123:28::1;3584:20;3618:12:::0;3644:17:::1;3674:33;3698:8;3674:23;:33::i;:::-;3765:4;::::0;3570:137;;-1:-1:-1;3570:137:28;;-1:-1:-1;3570:137:28;-1:-1:-1;;;;;;3739:31:28;;::::1;3765:4:::0;::::1;3739:31;3718:110;;;::::0;-1:-1:-1;;;3718:110:28;;15738:2:37;3718:110:28::1;::::0;::::1;15720:21:37::0;;;15757:18;;;15750:30;15816:34;15796:18;;;15789:62;15868:18;;3718:110:28::1;15710:182:37::0;3718:110:28::1;3846:7;3838:41;;;::::0;-1:-1:-1;;;3838:41:28;;15045:2:37;3838:41:28::1;::::0;::::1;15027:21:37::0;15084:2;15064:18;;;15057:30;-1:-1:-1;;;15103:18:37;;;15096:51;15164:18;;3838:41:28::1;15017:171:37::0;3838:41:28::1;3909:1;3897:9;-1:-1:-1::0;;;;;3897:13:28::1;;3889:50;;;::::0;-1:-1:-1;;;3889:50:28;;16099:2:37;3889:50:28::1;::::0;::::1;16081:21:37::0;16138:2;16118:18;;;16111:30;-1:-1:-1;;;16157:18:37;;;16150:54;16221:18;;3889:50:28::1;16071:174:37::0;3889:50:28::1;3950:25;3978:34;3995:9;4006:5;3978:16;:34::i;:::-;4044:128;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;4044:128:28;;::::1;::::0;;-1:-1:-1;;;;;4044:128:28;;::::1;;::::0;;::::1;::::0;;;;;::::1;::::0;;;;;;-1:-1:-1;4023:18:28;;;:8:::1;:18:::0;;;;;;:149;;;;;::::1;-1:-1:-1::0;;;;;;4023:149:28;;::::1;::::0;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;;4023:149:28::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;3950:62;-1:-1:-1;4183:41:28::1;4032:8:::0;5753:10:29;:17;;5726:24;;;;:15;:24;;;;;:44;;;5780:24;;;;;;;;;;;;5649:162;4183:41:28::1;-1:-1:-1::0;;;;;5345:13:29;;5328:14;5345:13;;;:9;:13;;;;;;;;;;5368:12;:16;;;;;:24;;;;;;;;:34;;;5412:26;;;:17;:26;;;;;:35;;;;4289:16:28;;;;:21;;4309:1:::1;::::0;5345:13:29;5328:14;4289:21:28::1;::::0;4309:1;;4289:21:::1;:::i;:::-;::::0;;;-1:-1:-1;;4334:11:28::1;::::0;:34:::1;::::0;-1:-1:-1;;;;;4334:34:28;::::1;:15;:34::i;:::-;4320:11;:48:::0;-1:-1:-1;;;;;4384:15:28;::::1;;::::0;;;:8:::1;:15;::::0;;;;;::::1;;4379:146;;-1:-1:-1::0;;;;;4415:15:28;;::::1;;::::0;;;:8:::1;:15;::::0;;;;;;;;:22;;-1:-1:-1;;4415:22:28::1;4433:4;4415:22;::::0;;4465:8:::1;::::0;:21;;-1:-1:-1;;;4465:21:28;;;;:8;::::1;::::0;:19:::1;::::0;:21:::1;::::0;;::::1;::::0;4415:15;4465:21;;;;;;:8;:21;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4451:56:28::1;;4508:5;4451:63;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;4379:146;4540:58;::::0;;19356:25:37;;;-1:-1:-1;;;;;19455:15:37;;;19450:2;19435:18;;19428:43;19507:15;;19487:18;;;19480:43;4540:58:28;;4547:10:::1;::::0;4540:58:::1;::::0;;;;;19344:2:37;4540:58:28;;::::1;7715:1;;;;3315:1290:::0;;;:::o;3465:96:14:-;3523:7;3549:5;3553:1;3549;:5;:::i;7270:356:28:-;7352:16;:14;:16::i;:::-;7329:20;:39;7395:26;:24;:26::i;:::-;7378:14;:43;7435:13;;7431:189;;7484:16;7491:8;7484:6;:16::i;:::-;7464:17;;;;:7;:17;;;;;;;;:36;;;;7549:20;;7514:22;:32;;;;;;:55;7583:26;7472:8;7583:16;:26::i;3122:96:14:-;3180:7;3206:5;3210:1;3206;:5;:::i;6428:972:29:-;-1:-1:-1;;;;;6728:15:29;;6703:22;6728:15;;;:9;:15;;;;;;;;;6774:26;;;:17;:26;;;;;;;6904:28;;;6900:323;;-1:-1:-1;;;;;6970:18:29;;6948:19;6970:18;;;:12;:18;;;;;;;;:34;;;;;;;;;7019:30;;;;;;:44;;;7135:30;;:17;:30;;;;;:43;;;6900:323;-1:-1:-1;7316:26:29;;;;:17;:26;;;;;;;;7309:33;;;-1:-1:-1;;;;;7359:18:29;;;;;:12;:18;;;;;:34;;;;;;;7352:41;6428:972::o;7688:1062::-;7963:10;:17;7938:22;;7963:21;;7983:1;;7963:21;:::i;:::-;7994:18;8015:24;;;:15;:24;;;;;;8383:10;:26;;7938:46;;-1:-1:-1;8015:24:29;;7938:46;;8383:26;;;;-1:-1:-1;;;8383:26:29;;;;;;;;;;;;;;;;;8361:48;;8445:11;8420:10;8431;8420:22;;;;;;-1:-1:-1;;;8420:22:29;;;;;;;;;;;;;;;;;;;;:36;;;;8524:28;;;:15;:28;;;;;;;:41;;;8693:24;;;;;8686:31;8727:10;:16;;;;;-1:-1:-1;;;8727:16:29;;;;;;;;;;;;;;;;;;;;;;;;;;7688:1062;;;;:::o;3850:96:14:-;3908:7;3934:5;3938:1;3934;:5;:::i;2755:96::-;2813:7;2839:5;2843:1;2839;:5;:::i;6558:663:28:-;6957:7;;6982:26;;6668:19;;;;;;;;;;;;;;6908:140;;-1:-1:-1;;;;;6957:7:28;;;;6982:26;7026:8;6908:31;:140::i;:::-;6769:279;;;;;;;;7062:10;7086:5;-1:-1:-1;;;;;7086:11:28;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7059:40;;;;;;;;7117:5;7110:12;;7156:4;7142:18;;:10;:18;;;;:40;;;;;7172:10;7164:18;;:4;:18;;;;7142:40;6558:663;;7132:50;;-1:-1:-1;7204:10:28;;6558:663;-1:-1:-1;;;;;;6558:663:28:o;5855:697::-;5991:7;;6012:26;;5924:18;;5946:124;;-1:-1:-1;;;;;5991:7:28;;;;6012:26;6052:8;5946:31;:124::i;:::-;6099:18;;;;:8;:18;;;;;:28;;;5917:153;;-1:-1:-1;;;;;;6085:42:28;;;6099:28;;6085:42;6081:55;;-1:-1:-1;6081:55:28;;-1:-1:-1;;6081:55:28;6129:7;5855:697;:::o;6081:55::-;6146:12;6161:18;;;:8;:18;;;;;:24;-1:-1:-1;;;;;6161:24:28;;6223:34;6240:10;6161:24;6223:16;:34::i;:::-;6383:18;;;;:8;:18;;;;;:35;;;6331:11;;6195:62;;-1:-1:-1;6331:97:28;;-1:-1:-1;;;;;;;;6383:35:28;;;;;;6331:34;;:11;:34;;:15;:34::i;:97::-;6317:11;:111;6439:18;;;;:8;:18;;;;;;-1:-1:-1;;;;;6490:55:28;;;-1:-1:-1;;;6490:55:28;6439:41;;;;6490:55;;;;6439:28;;;;6490:55;-1:-1:-1;5855:697:28:o;964:749:35:-;1179:19;1212:15;1241;1270:17;1312:14;1336;1360:10;1591:26;-1:-1:-1;;;;;1591:36:35;;1628:7;1591:45;;;;;;;;;;;;;19118:25:37;;19106:2;19091:18;;19073:76;1591:45:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;1669:36:35;;-1:-1:-1;;;1669:36:35;;1380:256;;-1:-1:-1;1380:256:35;;-1:-1:-1;1380:256:35;;-1:-1:-1;1380:256:35;;-1:-1:-1;1380:256:35;;-1:-1:-1;1380:256:35;;-1:-1:-1;;;;;;1669:15:35;;;-1:-1:-1;1669:15:35;;-1:-1:-1;1669:36:35;;-1:-1:-1;1380:256:35;;-1:-1:-1;1380:256:35;;;;1669:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1647:59;;964:749;;;;;;;;;;:::o;14:138:37:-;93:13;;115:31;93:13;115:31;:::i;:::-;74:78;;;:::o;157:164::-;233:13;;282;;275:21;265:32;;255:2;;311:1;308;301:12;326:164;403:13;;456:1;445:20;;;435:31;;425:2;;480:1;477;470:12;495:138;574:13;;596:31;574:13;596:31;:::i;638:163::-;716:13;;769:6;758:18;;748:29;;738:2;;791:1;788;781:12;806:136;884:13;;906:30;884:13;906:30;:::i;947:257::-;1006:6;1059:2;1047:9;1038:7;1034:23;1030:32;1027:2;;;1080:6;1072;1065:22;1027:2;1124:9;1111:23;1143:31;1168:5;1143:31;:::i;1209:261::-;1279:6;1332:2;1320:9;1311:7;1307:23;1303:32;1300:2;;;1353:6;1345;1338:22;1300:2;1390:9;1384:16;1409:31;1434:5;1409:31;:::i;1475:963::-;1578:6;1586;1594;1602;1610;1618;1671:3;1659:9;1650:7;1646:23;1642:33;1639:2;;;1693:6;1685;1678:22;1639:2;1737:9;1724:23;1756:31;1781:5;1756:31;:::i;:::-;1806:5;-1:-1:-1;1863:2:37;1848:18;;1835:32;1876:33;1835:32;1876:33;:::i;:::-;1928:7;-1:-1:-1;1987:2:37;1972:18;;1959:32;2000:33;1959:32;2000:33;:::i;:::-;2052:7;-1:-1:-1;2111:2:37;2096:18;;2083:32;2124;2083;2124;:::i;:::-;2175:7;-1:-1:-1;2234:3:37;2219:19;;2206:33;2248;2206;2248;:::i;:::-;2300:7;-1:-1:-1;2359:3:37;2344:19;;2331:33;2373;2331;2373;:::i;:::-;2425:7;2415:17;;;1629:809;;;;;;;;:::o;2443:986::-;2540:6;2548;2556;2564;2572;2625:3;2613:9;2604:7;2600:23;2596:33;2593:2;;;2647:6;2639;2632:22;2593:2;2691:9;2678:23;2710:31;2735:5;2710:31;:::i;:::-;2760:5;-1:-1:-1;2817:2:37;2802:18;;2789:32;2830:33;2789:32;2830:33;:::i;:::-;2882:7;-1:-1:-1;2936:2:37;2921:18;;2908:32;;-1:-1:-1;2991:2:37;2976:18;;2963:32;3014:18;3044:14;;;3041:2;;;3076:6;3068;3061:22;3041:2;3119:6;3108:9;3104:22;3094:32;;3164:7;3157:4;3153:2;3149:13;3145:27;3135:2;;3191:6;3183;3176:22;3135:2;3236;3223:16;3262:2;3254:6;3251:14;3248:2;;;3283:6;3275;3268:22;3248:2;3333:7;3328:2;3319:6;3315:2;3311:15;3307:24;3304:37;3301:2;;;3359:6;3351;3344:22;3301:2;2583:846;;;;-1:-1:-1;2583:846:37;;-1:-1:-1;3395:2:37;3387:11;;3417:6;2583:846;-1:-1:-1;;;2583:846:37:o;3434:1218::-;3527:6;3535;3588:2;3576:9;3567:7;3563:23;3559:32;3556:2;;;3609:6;3601;3594:22;3556:2;3653:9;3640:23;3672:31;3697:5;3672:31;:::i;:::-;3722:5;-1:-1:-1;3746:2:37;3784:18;;;3771:32;3822:18;3852:14;;;3849:2;;;3884:6;3876;3869:22;3849:2;3927:6;3916:9;3912:22;3902:32;;3972:7;3965:4;3961:2;3957:13;3953:27;3943:2;;3999:6;3991;3984:22;3943:2;4040;4027:16;4062:2;4058;4055:10;4052:2;;;4068:18;;:::i;:::-;4114:2;4111:1;4107:10;4097:20;;4137:28;4161:2;4157;4153:11;4137:28;:::i;:::-;4199:15;;;4230:12;;;;4262:11;;;4292;;;4288:20;;4285:33;-1:-1:-1;4282:2:37;;;4336:6;4328;4321:22;4282:2;4363:6;4354:15;;4378:244;4392:2;4389:1;4386:9;4378:244;;;4465:3;4452:17;4437:32;;4482:33;4507:7;4482:33;:::i;:::-;4528:20;;;4410:1;4403:9;;;;;4568:12;;;;4600;;4378:244;;;4382:3;4641:5;4631:15;;;;;;;;3546:1106;;;;;:::o;4657:943::-;4734:6;4742;4795:2;4783:9;4774:7;4770:23;4766:32;4763:2;;;4816:6;4808;4801:22;4763:2;4860:9;4847:23;4879:31;4904:5;4879:31;:::i;:::-;4929:5;-1:-1:-1;4953:2:37;4991:18;;;4978:32;5029:18;5059:14;;;5056:2;;;5091:6;5083;5076:22;5056:2;5134:6;5123:9;5119:22;5109:32;;5179:7;5172:4;5168:2;5164:13;5160:27;5150:2;;5206:6;5198;5191:22;5150:2;5247;5234:16;5269:2;5265;5262:10;5259:2;;;5275:18;;:::i;:::-;5317:53;5360:2;5341:13;;-1:-1:-1;;5337:27:37;5333:36;;5317:53;:::i;:::-;5304:66;;5393:2;5386:5;5379:17;5433:7;5428:2;5423;5419;5415:11;5411:20;5408:33;5405:2;;;5459:6;5451;5444:22;5405:2;5519;5514;5510;5506:11;5501:2;5494:5;5490:14;5477:45;5542:14;;5538:23;;;5531:39;;;;4753:847;;5546:5;;-1:-1:-1;4753:847:37;;-1:-1:-1;;4753:847:37:o;5605:325::-;5673:6;5681;5734:2;5722:9;5713:7;5709:23;5705:32;5702:2;;;5755:6;5747;5740:22;5702:2;5799:9;5786:23;5818:31;5843:5;5818:31;:::i;:::-;5868:5;5920:2;5905:18;;;;5892:32;;-1:-1:-1;;;5692:238:37:o;5935:212::-;6002:6;6055:2;6043:9;6034:7;6030:23;6026:32;6023:2;;;6076:6;6068;6061:22;6023:2;6104:37;6131:9;6104:37;:::i;6152:398::-;6220:6;6228;6281:2;6269:9;6260:7;6256:23;6252:32;6249:2;;;6302:6;6294;6287:22;6249:2;6346:9;6333:23;6365:31;6390:5;6365:31;:::i;:::-;6415:5;-1:-1:-1;6472:2:37;6457:18;;6444:32;6485:33;6444:32;6485:33;:::i;:::-;6537:7;6527:17;;;6239:311;;;;;:::o;6555:842::-;6669:6;6677;6685;6693;6701;6709;6717;6770:3;6758:9;6749:7;6745:23;6741:33;6738:2;;;6792:6;6784;6777:22;6738:2;6829:9;6823:16;6848:31;6873:5;6848:31;:::i;:::-;6898:5;-1:-1:-1;6922:47:37;6965:2;6950:18;;6922:47;:::i;:::-;6912:57;;6988:48;7032:2;7021:9;7017:18;6988:48;:::i;:::-;6978:58;;7055:48;7099:2;7088:9;7084:18;7055:48;:::i;:::-;7045:58;;7122:49;7166:3;7155:9;7151:19;7122:49;:::i;:::-;7112:59;;7216:3;7205:9;7201:19;7195:26;7265:4;7256:7;7252:18;7243:7;7240:31;7230:2;;7290:6;7282;7275:22;7230:2;7318:7;-1:-1:-1;7344:47:37;7386:3;7371:19;;7344:47;:::i;:::-;7334:57;;6728:669;;;;;;;;;;:::o;7402:190::-;7461:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:2;;;7535:6;7527;7520:22;7482:2;-1:-1:-1;7563:23:37;;7472:120;-1:-1:-1;7472:120:37:o;7597:194::-;7667:6;7720:2;7708:9;7699:7;7695:23;7691:32;7688:2;;;7741:6;7733;7726:22;7688:2;-1:-1:-1;7769:16:37;;7678:113;-1:-1:-1;7678:113:37:o;7796:1206::-;7959:6;7967;7975;7983;7991;7999;8007;8015;8023;8031;8039:7;8048;8102:3;8090:9;8081:7;8077:23;8073:33;8070:2;;;8124:6;8116;8109:22;8070:2;8161:9;8155:16;8211:26;8204:5;8200:38;8193:5;8190:49;8180:2;;8258:6;8250;8243:22;8180:2;8286:5;-1:-1:-1;8310:49:37;8355:2;8340:18;;8310:49;:::i;:::-;8300:59;;8378:49;8423:2;8412:9;8408:18;8378:49;:::i;:::-;8368:59;;8446:49;8491:2;8480:9;8476:18;8446:49;:::i;:::-;8436:59;;8514:49;8558:3;8547:9;8543:19;8514:49;:::i;:::-;8504:59;;8582:48;8625:3;8614:9;8610:19;8582:48;:::i;:::-;8572:58;;8649:48;8692:3;8681:9;8677:19;8649:48;:::i;:::-;8639:58;;8716:50;8761:3;8750:9;8746:19;8716:50;:::i;:::-;8706:60;;8806:3;8795:9;8791:19;8785:26;8775:36;;8851:3;8840:9;8836:19;8830:26;8820:36;;8876:50;8921:3;8910:9;8906:19;8876:50;:::i;:::-;8865:61;;8946:50;8991:3;8980:9;8976:19;8946:50;:::i;:::-;8935:61;;8060:942;;;;;;;;;;;;;;:::o;9007:274::-;9136:3;9174:6;9168:13;9190:53;9236:6;9231:3;9224:4;9216:6;9212:17;9190:53;:::i;:::-;9259:16;;;;;9144:137;-1:-1:-1;;9144:137:37:o;9286:203::-;-1:-1:-1;;;;;9450:32:37;;;;9432:51;;9420:2;9405:18;;9387:102::o;9494:388::-;-1:-1:-1;;;;;9750:15:37;;;9732:34;;9802:15;;;;9797:2;9782:18;;9775:43;9866:8;9854:21;;;9849:2;9834:18;;9827:49;9682:2;9667:18;;9649:233::o;9887:375::-;-1:-1:-1;;;;;10145:15:37;;;10127:34;;10197:15;;;;10192:2;10177:18;;10170:43;10244:2;10229:18;;10222:34;;;;10077:2;10062:18;;10044:218::o;12707:383::-;12856:2;12845:9;12838:21;12819:4;12888:6;12882:13;12931:6;12926:2;12915:9;12911:18;12904:34;12947:66;13006:6;13001:2;12990:9;12986:18;12981:2;12973:6;12969:15;12947:66;:::i;:::-;13074:2;13053:15;-1:-1:-1;;13049:29:37;13034:45;;;;13081:2;13030:54;;12828:262;-1:-1:-1;;12828:262:37:o;13796:342::-;13998:2;13980:21;;;14037:2;14017:18;;;14010:30;-1:-1:-1;;;14071:2:37;14056:18;;14049:48;14129:2;14114:18;;13970:168::o;17011:336::-;17213:2;17195:21;;;17252:2;17232:18;;;17225:30;-1:-1:-1;;;17286:2:37;17271:18;;17264:42;17338:2;17323:18;;17185:162::o;18054:345::-;18256:2;18238:21;;;18295:2;18275:18;;;18268:30;-1:-1:-1;;;18329:2:37;18314:18;;18307:51;18390:2;18375:18;;18228:171::o;18404:355::-;18606:2;18588:21;;;18645:2;18625:18;;;18618:30;18684:33;18679:2;18664:18;;18657:61;18750:2;18735:18;;18578:181::o;19787:275::-;19858:2;19852:9;19923:2;19904:13;;-1:-1:-1;;19900:27:37;19888:40;;19958:18;19943:34;;19979:22;;;19940:62;19937:2;;;20005:18;;:::i;:::-;20041:2;20034:22;19832:230;;-1:-1:-1;19832:230:37:o;20067:238::-;20107:3;-1:-1:-1;;;;;20174:10:37;;;20204;;;20234:12;;;20226:21;;20223:2;;;20250:18;;:::i;:::-;20286:13;;20115:190;-1:-1:-1;;;;20115:190:37:o;20310:128::-;20350:3;20381:1;20377:6;20374:1;20371:13;20368:2;;;20387:18;;:::i;:::-;-1:-1:-1;20423:9:37;;20358:80::o;20443:201::-;20483:1;-1:-1:-1;;;;;20548:10:37;;;;20567:2;;20584:18;;:::i;:::-;20622:10;;20618:20;;;;;20489:155;-1:-1:-1;;20489:155:37:o;20649:120::-;20689:1;20715;20705:2;;20720:18;;:::i;:::-;-1:-1:-1;20754:9:37;;20695:74::o;20774:272::-;20814:7;-1:-1:-1;;;;;20885:10:37;;;20915;;;20948:11;;20941:19;20970:12;;;20962:21;;20937:47;20934:2;;;20987:18;;:::i;:::-;21027:13;;20826:220;-1:-1:-1;;;;20826:220:37:o;21051:168::-;21091:7;21157:1;21153;21149:6;21145:14;21142:1;21139:21;21134:1;21127:9;21120:17;21116:45;21113:2;;;21164:18;;:::i;:::-;-1:-1:-1;21204:9:37;;21103:116::o;21224:125::-;21264:4;21292:1;21289;21286:8;21283:2;;;21297:18;;:::i;:::-;-1:-1:-1;21334:9:37;;21273:76::o;21354:258::-;21426:1;21436:113;21450:6;21447:1;21444:13;21436:113;;;21526:11;;;21520:18;21507:11;;;21500:39;21472:2;21465:10;21436:113;;;21567:6;21564:1;21561:13;21558:2;;;21602:1;21593:6;21588:3;21584:16;21577:27;21558:2;;21407:205;;;:::o;21617:135::-;21656:3;-1:-1:-1;;21677:17:37;;21674:2;;;21697:18;;:::i;:::-;-1:-1:-1;21744:1:37;21733:13;;21664:88::o;21757:127::-;21818:10;21813:3;21809:20;21806:1;21799:31;21849:4;21846:1;21839:15;21873:4;21870:1;21863:15;21889:127;21950:10;21945:3;21941:20;21938:1;21931:31;21981:4;21978:1;21971:15;22005:4;22002:1;21995:15;22021:127;22082:10;22077:3;22073:20;22070:1;22063:31;22113:4;22110:1;22103:15;22137:4;22134:1;22127:15;22153:131;-1:-1:-1;;;;;22228:31:37;;22218:42;;22208:2;;22274:1;22271;22264:12;22289:131;-1:-1:-1;;;;;22364:31:37;;22354:42;;22344:2;;22410:1;22407;22400:12;22425:119;22510:8;22503:5;22499:20;22492:5;22489:31;22479:2;;22534:1;22531;22524:12"},"methodIdentifiers":{"attached(address)":"36703461","balanceOf(address)":"70a08231","deposits(uint256)":"b02c43d0","derivedLiquidity(uint128,address)":"c4cfbf06","derivedLiquidity(uint256)":"03f3e30e","earned(uint256)":"4d6ed8c4","emergencyCall(address,bytes)":"c4bf0220","enableEmergencyMode()":"c5b1c7d0","exit(uint256)":"7f8661a1","factory()":"c45a0155","getReward(address,address[])":"31279d3d","getReward(uint256)":"1c4b774b","getRewardForDuration()":"1c1f78eb","inEmergency()":"9be54945","initialize(address,address,address,uint24,address,address)":"b93c9a1d","lastTimeRewardApplicable()":"80faa57d","lastUpdateTime()":"c8f33c91","left(address)":"99bcc052","liquidity(uint256)":"c8f1c3af","maxBoostRequirement()":"69db8b27","nonfungiblePositionManager()":"b44a2722","notifyRewardAmount(address,uint256)":"b66503cf","onERC721Received(address,address,uint256,bytes)":"150b7a02","periodFinish()":"ebe2b12b","pool()":"16f0115b","registry()":"7b103999","rewardPerToken()":"cd3daf9d","rewardPerTokenStored()":"df136d65","rewardRate()":"7b0a47ee","rewards(uint256)":"f301af42","rewardsDuration()":"386a9525","rewardsToken()":"d1af0c7d","totalSupply()":"18160ddd","updateRewardFor(uint256)":"d7e79f02","userRewardPerTokenPaid(uint256)":"6c6f858b","withdraw(uint256)":"2e1a7d4d","withdrawViaEmergency(uint256)":"8a16a30b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[],\"name\":\"EmergencyModeEnabled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"_old\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"_new\",\"type\":\"uint256\"}],\"name\":\"MaxBoostRequirementChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"reward\",\"type\":\"uint256\"}],\"name\":\"RewardAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"reward\",\"type\":\"uint256\"}],\"name\":\"RewardPaid\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"liquidty\",\"type\":\"uint128\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"derivedLiquidity\",\"type\":\"uint128\"}],\"name\":\"Staked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Withdrawn\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"attached\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"deposits\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint128\",\"name\":\"liquidity\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"derivedLiquidity\",\"type\":\"uint128\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"derivedLiquidity\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint128\",\"name\":\"_liquidity\",\"type\":\"uint128\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"derivedLiquidity\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"\",\"type\":\"uint128\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"earned\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"emergencyCall\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"enableEmergencyMode\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"exit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"factory\",\"outputs\":[{\"internalType\":\"contract IUniswapV3Factory\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"getReward\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"address[]\",\"name\":\"\",\"type\":\"address[]\"}],\"name\":\"getReward\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getRewardForDuration\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"inEmergency\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_registry\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token0\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token1\",\"type\":\"address\"},{\"internalType\":\"uint24\",\"name\":\"fee\",\"type\":\"uint24\"},{\"internalType\":\"address\",\"name\":\"_rewardsToken\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_nonfungiblePositionManager\",\"type\":\"address\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"lastTimeRewardApplicable\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"lastUpdateTime\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"left\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"liquidity\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"maxBoostRequirement\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"nonfungiblePositionManager\",\"outputs\":[{\"internalType\":\"contract INonfungiblePositionManager\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"reward\",\"type\":\"uint256\"}],\"name\":\"notifyRewardAmount\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"periodFinish\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pool\",\"outputs\":[{\"internalType\":\"contract IUniswapV3Pool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"registry\",\"outputs\":[{\"internalType\":\"contract IRegistry\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"rewardPerToken\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"rewardPerTokenStored\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"rewardRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"rewards\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"rewardsDuration\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"rewardsToken\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"updateRewardFor\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"userRewardPerTokenPaid\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"withdraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"withdrawViaEmergency\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"emergencyCall(address,bytes)\":{\"details\":\"in case admin needs to execute some calls directly\"}},\"stateVariables\":{\"inEmergency\":{\"details\":\"is the contract in emergency mode? if so then allow for NFTs to be withdrawn without much checks.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/gauges/uniswapv3/BaseGaugeV3UniV3.sol\":\"BaseGaugeV3UniV3\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0x59ce320a585d7e1f163cd70390a0ef2ff9cec832e2aa544293a00692465a7a57\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bb2c137c343ef0c4c7ce7b18c1d108afdc9d315a04e48307288d2d05adcbde3a\",\"dweb:/ipfs/QmUxhrAQM3MM3FF5j7AtcXLXguWCJBHJ14BRdVtuoQc8Fh\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0xe1d0cd92e6827b0ca89925a59ec0eadc2b444aa3dd430fecb752a93c36436991\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cf6b448bf512c72350a4aaeeb0053e7f112c278cd9bdd7eb04c2f7b40b24f4dc\",\"dweb:/ipfs/Qmd1o6mVH7xLRg6yQ7Hza51bjARb2UA38LXsbTNRG9tvRu\"]},\"@openzeppelin/contracts/governance/extensions/IGovernorTimelock.sol\":{\"keccak256\":\"0xe6234ac4ba0508a3371a46543cdf4bf3a1a404d2d3c3470006741a0da294f974\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f65e0806425afa3946ba400879444d73b0b9320534eaecb2c64dc3689cff0614\",\"dweb:/ipfs/QmbpjBrErEMrx9qbS529XXbfooHfkihCj9iBz2QWiw4Xe4\"]},\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0xf5324a55ee9c0b4a840ea57c055ac9d046f88986ceef567e1cf68113e46a79c0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f41fe2bddc33c17ccccfc25379b1869354e9ee62d8b28d2acc95229eeba37a86\",\"dweb:/ipfs/Qmb6SF2XL2uSvH6k5JSjtx4Xoqz41ACkhdAhtbW1Yh3RiY\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x6ebf1944ab804b8660eb6fc52f9fe84588cee01c2566a69023e59497e7d27f45\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2900536cdadec954ced8789a9d1ed4b5e640029e1424e91fd5b88026486f4d45\",\"dweb:/ipfs/QmUMUX7CuYoiHvFkhifqtXGaciw2wnm4t9sAoPzETZ3Gbq\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x2a21b14ff90012878752f230d3ffd5c3405e5938d06c97a7d89c0a64561d0d66\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3313a8f9bb1f9476857c9050067b31982bf2140b83d84f3bc0cec1f62bbe947f\",\"dweb:/ipfs/Qma17Pk8NRe7aB4UD3jjVxk7nSFaov3eQyv86hcyqkwJRV\"]},\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"keccak256\":\"0x0e9621f60b2faabe65549f7ed0f24e8853a45c1b7990d47e8160e523683f3935\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://287a2f8d5814dd0f05f22b740f18ca8321acc21c9bd03a6cb2203ea626e2f3f2\",\"dweb:/ipfs/QmZRQv9iuwU817VuqkA2WweiaibKii69x9QxYBBEfbNEud\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x9750c6b834f7b43000631af5cc30001c5f547b3ceb3635488f140f60e897ea6b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5a7d5b1ef5d8d5889ad2ed89d8619c09383b80b72ab226e0fe7bde1636481e34\",\"dweb:/ipfs/QmebXWgtEfumQGBdVeM6c71McLixYXQP5Bk6kKXuoY4Bmr\"]},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xed6a749c5373af398105ce6ee3ac4763aa450ea7285d268c85d9eeca809cdb1f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://20a97f891d06f0fe91560ea1a142aaa26fdd22bed1b51606b7d48f670deeb50f\",\"dweb:/ipfs/QmTbCtZKChpaX5H2iRiTDMcSz29GSLCpTCDgJpcMR4wg8x\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol\":{\"keccak256\":\"0xd1556954440b31c97a142c6ba07d5cade45f96fafd52091d33a14ebe365aecbf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://26fef835622b46a5ba08b3ef6b46a22e94b5f285d0f0fb66b703bd30217d2c34\",\"dweb:/ipfs/QmZ548qdwfL1qF7aXz3xh1GCdTiST81kGGuKRqVUfYmPZR\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146\",\"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xd6153ce99bcdcce22b124f755e72553295be6abcd63804cfdffceb188b8bef10\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://35c47bece3c03caaa07fab37dd2bb3413bfbca20db7bd9895024390e0a469487\",\"dweb:/ipfs/QmPGWT2x3QHcKxqe6gRmAkdakhbaRgx3DLzcakHz5M4eXG\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d\",\"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]},\"@openzeppelin/contracts/utils/math/SafeMath.sol\":{\"keccak256\":\"0x0f633a0223d9a1dcccfcf38a64c9de0874dfcbfac0c6941ccf074d63a2ce0e1e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://864a40efcffdf408044c332a5aa38ec5618ed7b4eecb8f65faf45671bd6cdc65\",\"dweb:/ipfs/QmQJquTMtc6fgm5JQzGdsGpA2fqBe3MHWEdt2qzaLySMdN\"]},\"@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol\":{\"keccak256\":\"0xcc3d0c93fc9ac0febbe09f941b465b57f750bcf3b48432da0b97dc289cfdc489\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://b9379ad954680c44a0bc523b314ae4c4da735f9fe1d02aa56ea5bdba6f1136f2\",\"dweb:/ipfs/QmZXdgQNXKAckrXWz9R3mc47F1fvDvr28a2ewJrwNAw71B\"]},\"@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol\":{\"keccak256\":\"0xfe6113d518466cd6652c85b111e01f33eb62157f49ae5ed7d5a3947a2044adb1\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://1c42b9e6f5902ac38dd43e25750939baa7e0c1425dc75afd717c4412731065d5\",\"dweb:/ipfs/QmWaoacnzsucTvBME2o7YgZBZMhaHv7fkj83htHMVWJKWh\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolActions.sol\":{\"keccak256\":\"0x9453dd0e7442188667d01d9b65de3f1e14e9511ff3e303179a15f6fc267f7634\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://982f4328f956c3e60e67501e759eb292ac487f76460c774c50e9ae4fcc92aae5\",\"dweb:/ipfs/QmRnzEDsaqtd9PJEVcgQi7p5aV5pMSvRUoGZJAdwFUJxgZ\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolDerivedState.sol\":{\"keccak256\":\"0xe603ac5b17ecdee73ba2b27efdf386c257a19c14206e87eee77e2017b742d9e5\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://8febc9bdb399a4d94bb89f5377732652e2400e4a8dee808201ade6848f9004e7\",\"dweb:/ipfs/QmaKDqYYFU4d2W2iN77aDHptfbFmYZRrMYXHeGpJmM8C1c\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolEvents.sol\":{\"keccak256\":\"0x8071514d0fe5d17d6fbd31c191cdfb703031c24e0ece3621d88ab10e871375cd\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://d0b571930cc7488b1d546a7e9cea7c52d8b3c4e207da657ed0e0db7343b8cd03\",\"dweb:/ipfs/QmaGK6vVwB95QSTR1XMYvrh7ivYAYZxi3fD7v6VMA4jZ39\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolImmutables.sol\":{\"keccak256\":\"0xf6e5d2cd1139c4c276bdbc8e1d2b256e456c866a91f1b868da265c6d2685c3f7\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://b99c8c9ae8e27ee6559e5866bea82cbc9ffc8247f8d15b7422a4deb287d4d047\",\"dweb:/ipfs/QmfL8gaqt3ffAnm6nVj5ksuNpLygXuL3xq5VBqrkwC2JJ3\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolOwnerActions.sol\":{\"keccak256\":\"0x759b78a2918af9e99e246dc3af084f654e48ef32bb4e4cb8a966aa3dcaece235\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://64144fb96e1c7fdba87305acadb98a198d26a3d46c097cb3a666e567f6f29735\",\"dweb:/ipfs/QmUnWVwN9FKB9uV5Pr8YfLpWZnYM2DENnRMaadZ492JS9u\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolState.sol\":{\"keccak256\":\"0x852dc1f5df7dcf7f11e7bb3eed79f0cea72ad4b25f6a9d2c35aafb48925fd49f\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://ed63907c38ff36b0e22bc9ffc53e791ea74f0d4f0e7c257fdfb5aaf8825b1f0f\",\"dweb:/ipfs/QmSQrckghEjs6HVsA5GVgpNpZWvTXMY5eQLF7cN6deFeEg\"]},\"@uniswap/v3-periphery/contracts/interfaces/IERC721Permit.sol\":{\"keccak256\":\"0x9e3c2a4ee65ddf95b2dfcb0815784eea3a295707e6f8b83e4c4f0f8fe2e3a1d4\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://bfd939085b3618101b955f87c7fabf38338ba1aad480295acb8102ebc5d72471\",\"dweb:/ipfs/QmauQD8bGDHTztmTDfaKXjzM7Wacrq2XU7VcTbwn1WrDBL\"]},\"@uniswap/v3-periphery/contracts/interfaces/IPeripheryImmutableState.sol\":{\"keccak256\":\"0x7affcfeb5127c0925a71d6a65345e117c33537523aeca7bc98085ead8452519d\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://e16b291294210e71cb0f20cd0afe62ae2dc6878d627f5ccc19c4dc9cd80aec3f\",\"dweb:/ipfs/QmQGitSyBr26nour81BZmpmDMyJpvZRqHQZvnCD1Acb127\"]},\"@uniswap/v3-periphery/contracts/interfaces/IPeripheryPayments.sol\":{\"keccak256\":\"0xb547e10f1e69bed03621a62b73a503e260643066c6b4054867a4d1fef47eb274\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://f9a90f58f5fd5fb42f7811f4094113b532f307b14a73764c91f977590747f407\",\"dweb:/ipfs/QmSeNH2mfiDMKf3Q6V2sqtNxx1s72JNuA1VVxRM9HoMqYp\"]},\"@uniswap/v3-periphery/contracts/interfaces/IPoolInitializer.sol\":{\"keccak256\":\"0x9d7695e8d94c22cc5fcced602017aabb988de89981ea7bee29ea629d5328a862\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://61b50933026ee1017db2a6273af8cedc3238c95dca58880db0918dbdbb2f064f\",\"dweb:/ipfs/QmUebR26pqG25d18aBELKz8aFFKkmHa8PxntzXTA7o9Ldu\"]},\"contracts/gauges/uniswapv3/BaseGaugeV3UniV3.sol\":{\"keccak256\":\"0xea805515dbbc18102c00822ffed04674349604fd6ffcadef00639cfc3913b4f1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5a2e6c686fd3ad187a75cc3b0543262134f401788a040b409551538c3be09a5\",\"dweb:/ipfs/QmamTrWdHH4MKYDmuouU3K3sH8SCYFYo5M9dR4MR7vvGUX\"]},\"contracts/gauges/uniswapv3/StakingRewardsV3.sol\":{\"keccak256\":\"0xb561b1ee69cdff4fdafd14a6dc83e28de43028002b3ae36d77cb54b493706d69\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a4f12783112b0f125e924ac38eb08962f5d5a7af8e75c0a5064940ca2a6a80ff\",\"dweb:/ipfs/QmV4U37GAauuyWDYWFcrjAE9ksWQMcWr38cUhaZipEKE6F\"]},\"contracts/gauges/uniswapv3/UniswapV3Base.sol\":{\"keccak256\":\"0x28d968c78255413c7d6646e26b626cf9e3728c3151d943a3cc5a522a6459a492\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://aa5f17efd4ba4c9d9687350812392991ba0058c11e7d74846d310d283e5856ea\",\"dweb:/ipfs/QmPBRFwg8qmqpnhDrBYDs6xmMsc7NhCPKP9RhMBHnpr1op\"]},\"contracts/interfaces/IGauge.sol\":{\"keccak256\":\"0xdaa97894648d646bd592cc113510dc5900d22b1ac9a58713d8be03dae9b96a3b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://276d19c98e7792386abed79c98a7ea33d8347edf32d91b679f412dd78382a43a\",\"dweb:/ipfs/QmUS6TwFKn7kcwPoU1JEzzVanNLBfrFkUr2L9p7x9pR5Hc\"]},\"contracts/interfaces/IGaugeVoterV2.sol\":{\"keccak256\":\"0x2920d264daa8497cc6363ca5de80fe889734c71ef26b874219fbe7f33d2905d8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cd933e05b285122e229ef09e72ecd5300d0bb542d29956ac4e0beb1a105d9733\",\"dweb:/ipfs/QmXGRNccNQGG1r9ry9fJRW9AHCAetLMJKWQ7HQZRMXMuZT\"]},\"contracts/interfaces/INFTStaker.sol\":{\"keccak256\":\"0x7d304fc4fc8b906d547b9457a2a41e079faf1a2c3960c80edea3e24bf202e821\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4b19eeaafa1e4e33c8f113fcae2248dfe33c4f6a5c5702a9b4d2253c0cd45c59\",\"dweb:/ipfs/QmPer1f9LqnpMt8kEA5AR381GAm82aui6jbWJwPFKD9WwD\"]},\"contracts/interfaces/INonfungiblePositionManager.sol\":{\"keccak256\":\"0x7a127df9c56dbe2cd36494b119b533ff121f02fda5d6b480ea9796c694196747\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5271d1bba67d5481e68833b440c6b206f270ec8cf59a0032d1028feaa664213\",\"dweb:/ipfs/QmVEDdfCt41AcTgewmc4wdW9A9NogKZjQ6WcMCQUAbK3yG\"]},\"contracts/interfaces/IRegistry.sol\":{\"keccak256\":\"0x89b7f5558b6b862cb67d11ce6615aa27beb8ea3961e94ae30b35c2aea0d19124\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://41abe49d627f36748d6fd4f7172866d26c320e415903fe698a50910e9c15a63c\",\"dweb:/ipfs/QmRWNdZ7xj82jmNUyMD5vUKQiLmCasnRc4koz4tGAiruqF\"]},\"contracts/utils/NFTPositionInfo.sol\":{\"keccak256\":\"0x58e7a461b1f190ea9dd1480b1a9a031e50304c80f14e40908936c45f20981b48\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://c705d809320056979d767e7bb8036356f93b4e008b12746f6b57f01d914a3962\",\"dweb:/ipfs/QmUkVwEg1wPJRWuttC7eLiNqAPbLfiNQ3UsTQBgcoWXEfr\"]},\"contracts/utils/PoolAddress.sol\":{\"keccak256\":\"0x4d9d291f243513408eda08cd7adb3f396a87afeb81ad6bcacc343414ff3a2af9\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://2c462d2e8cd0b51acc9cb37bcd5c0047c444801144eabb5b3839025a77d03464\",\"dweb:/ipfs/QmWYHM9eedm1KqqBDdm7WvEnPuy3iUDPUwwTY5ZN4w8y1a\"]}},\"version\":1}"}},"contracts/gauges/uniswapv3/StakingRewardsV3.sol":{"StakingRewardsV3":{"abi":[{"anonymous":false,"inputs":[],"name":"EmergencyModeEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_old","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_new","type":"uint256"}],"name":"MaxBoostRequirementChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint128","name":"liquidty","type":"uint128"},{"indexed":false,"internalType":"uint128","name":"derivedLiquidity","type":"uint128"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"attached","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"deposits","outputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint128","name":"liquidity","type":"uint128"},{"internalType":"uint128","name":"derivedLiquidity","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"derivedLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint128","name":"_liquidity","type":"uint128"},{"internalType":"address","name":"account","type":"address"}],"name":"derivedLiquidity","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"contract IUniswapV3Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address[]","name":"","type":"address[]"}],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getRewardForDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_registry","type":"address"},{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"uint24","name":"fee","type":"uint24"},{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"address","name":"_nonfungiblePositionManager","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"left","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"liquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBoostRequirement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonfungiblePositionManager","outputs":[{"internalType":"contract INonfungiblePositionManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"notifyRewardAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pool","outputs":[{"internalType":"contract IUniswapV3Pool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"registry","outputs":[{"internalType":"contract IRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerTokenStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"updateRewardFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"userRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"attached(address)":"36703461","balanceOf(address)":"70a08231","deposits(uint256)":"b02c43d0","derivedLiquidity(uint128,address)":"c4cfbf06","derivedLiquidity(uint256)":"03f3e30e","earned(uint256)":"4d6ed8c4","exit(uint256)":"7f8661a1","factory()":"c45a0155","getReward(address,address[])":"31279d3d","getReward(uint256)":"1c4b774b","getRewardForDuration()":"1c1f78eb","initialize(address,address,address,uint24,address,address)":"b93c9a1d","lastTimeRewardApplicable()":"80faa57d","lastUpdateTime()":"c8f33c91","left(address)":"99bcc052","liquidity(uint256)":"c8f1c3af","maxBoostRequirement()":"69db8b27","nonfungiblePositionManager()":"b44a2722","notifyRewardAmount(address,uint256)":"b66503cf","periodFinish()":"ebe2b12b","pool()":"16f0115b","registry()":"7b103999","rewardPerToken()":"cd3daf9d","rewardPerTokenStored()":"df136d65","rewardRate()":"7b0a47ee","rewards(uint256)":"f301af42","rewardsDuration()":"386a9525","rewardsToken()":"d1af0c7d","totalSupply()":"18160ddd","updateRewardFor(uint256)":"d7e79f02","userRewardPerTokenPaid(uint256)":"6c6f858b","withdraw(uint256)":"2e1a7d4d"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[],\"name\":\"EmergencyModeEnabled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"_old\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"_new\",\"type\":\"uint256\"}],\"name\":\"MaxBoostRequirementChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"reward\",\"type\":\"uint256\"}],\"name\":\"RewardAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"reward\",\"type\":\"uint256\"}],\"name\":\"RewardPaid\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"liquidty\",\"type\":\"uint128\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"derivedLiquidity\",\"type\":\"uint128\"}],\"name\":\"Staked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Withdrawn\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"attached\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"deposits\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint128\",\"name\":\"liquidity\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"derivedLiquidity\",\"type\":\"uint128\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"derivedLiquidity\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint128\",\"name\":\"_liquidity\",\"type\":\"uint128\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"derivedLiquidity\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"\",\"type\":\"uint128\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"earned\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"exit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"factory\",\"outputs\":[{\"internalType\":\"contract IUniswapV3Factory\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"getReward\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"address[]\",\"name\":\"\",\"type\":\"address[]\"}],\"name\":\"getReward\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getRewardForDuration\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_registry\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token0\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token1\",\"type\":\"address\"},{\"internalType\":\"uint24\",\"name\":\"fee\",\"type\":\"uint24\"},{\"internalType\":\"address\",\"name\":\"_rewardsToken\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_nonfungiblePositionManager\",\"type\":\"address\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"lastTimeRewardApplicable\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"lastUpdateTime\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"left\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"liquidity\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"maxBoostRequirement\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"nonfungiblePositionManager\",\"outputs\":[{\"internalType\":\"contract INonfungiblePositionManager\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"reward\",\"type\":\"uint256\"}],\"name\":\"notifyRewardAmount\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"periodFinish\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pool\",\"outputs\":[{\"internalType\":\"contract IUniswapV3Pool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"registry\",\"outputs\":[{\"internalType\":\"contract IRegistry\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"rewardPerToken\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"rewardPerTokenStored\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"rewardRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"rewards\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"rewardsDuration\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"rewardsToken\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"updateRewardFor\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"userRewardPerTokenPaid\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"withdraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/gauges/uniswapv3/StakingRewardsV3.sol\":\"StakingRewardsV3\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0x59ce320a585d7e1f163cd70390a0ef2ff9cec832e2aa544293a00692465a7a57\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bb2c137c343ef0c4c7ce7b18c1d108afdc9d315a04e48307288d2d05adcbde3a\",\"dweb:/ipfs/QmUxhrAQM3MM3FF5j7AtcXLXguWCJBHJ14BRdVtuoQc8Fh\"]},\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0xf5324a55ee9c0b4a840ea57c055ac9d046f88986ceef567e1cf68113e46a79c0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f41fe2bddc33c17ccccfc25379b1869354e9ee62d8b28d2acc95229eeba37a86\",\"dweb:/ipfs/Qmb6SF2XL2uSvH6k5JSjtx4Xoqz41ACkhdAhtbW1Yh3RiY\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x6ebf1944ab804b8660eb6fc52f9fe84588cee01c2566a69023e59497e7d27f45\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2900536cdadec954ced8789a9d1ed4b5e640029e1424e91fd5b88026486f4d45\",\"dweb:/ipfs/QmUMUX7CuYoiHvFkhifqtXGaciw2wnm4t9sAoPzETZ3Gbq\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x2a21b14ff90012878752f230d3ffd5c3405e5938d06c97a7d89c0a64561d0d66\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3313a8f9bb1f9476857c9050067b31982bf2140b83d84f3bc0cec1f62bbe947f\",\"dweb:/ipfs/Qma17Pk8NRe7aB4UD3jjVxk7nSFaov3eQyv86hcyqkwJRV\"]},\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"keccak256\":\"0x0e9621f60b2faabe65549f7ed0f24e8853a45c1b7990d47e8160e523683f3935\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://287a2f8d5814dd0f05f22b740f18ca8321acc21c9bd03a6cb2203ea626e2f3f2\",\"dweb:/ipfs/QmZRQv9iuwU817VuqkA2WweiaibKii69x9QxYBBEfbNEud\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x9750c6b834f7b43000631af5cc30001c5f547b3ceb3635488f140f60e897ea6b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5a7d5b1ef5d8d5889ad2ed89d8619c09383b80b72ab226e0fe7bde1636481e34\",\"dweb:/ipfs/QmebXWgtEfumQGBdVeM6c71McLixYXQP5Bk6kKXuoY4Bmr\"]},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xed6a749c5373af398105ce6ee3ac4763aa450ea7285d268c85d9eeca809cdb1f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://20a97f891d06f0fe91560ea1a142aaa26fdd22bed1b51606b7d48f670deeb50f\",\"dweb:/ipfs/QmTbCtZKChpaX5H2iRiTDMcSz29GSLCpTCDgJpcMR4wg8x\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol\":{\"keccak256\":\"0xd1556954440b31c97a142c6ba07d5cade45f96fafd52091d33a14ebe365aecbf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://26fef835622b46a5ba08b3ef6b46a22e94b5f285d0f0fb66b703bd30217d2c34\",\"dweb:/ipfs/QmZ548qdwfL1qF7aXz3xh1GCdTiST81kGGuKRqVUfYmPZR\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146\",\"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xd6153ce99bcdcce22b124f755e72553295be6abcd63804cfdffceb188b8bef10\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://35c47bece3c03caaa07fab37dd2bb3413bfbca20db7bd9895024390e0a469487\",\"dweb:/ipfs/QmPGWT2x3QHcKxqe6gRmAkdakhbaRgx3DLzcakHz5M4eXG\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]},\"@openzeppelin/contracts/utils/math/SafeMath.sol\":{\"keccak256\":\"0x0f633a0223d9a1dcccfcf38a64c9de0874dfcbfac0c6941ccf074d63a2ce0e1e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://864a40efcffdf408044c332a5aa38ec5618ed7b4eecb8f65faf45671bd6cdc65\",\"dweb:/ipfs/QmQJquTMtc6fgm5JQzGdsGpA2fqBe3MHWEdt2qzaLySMdN\"]},\"@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol\":{\"keccak256\":\"0xcc3d0c93fc9ac0febbe09f941b465b57f750bcf3b48432da0b97dc289cfdc489\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://b9379ad954680c44a0bc523b314ae4c4da735f9fe1d02aa56ea5bdba6f1136f2\",\"dweb:/ipfs/QmZXdgQNXKAckrXWz9R3mc47F1fvDvr28a2ewJrwNAw71B\"]},\"@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol\":{\"keccak256\":\"0xfe6113d518466cd6652c85b111e01f33eb62157f49ae5ed7d5a3947a2044adb1\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://1c42b9e6f5902ac38dd43e25750939baa7e0c1425dc75afd717c4412731065d5\",\"dweb:/ipfs/QmWaoacnzsucTvBME2o7YgZBZMhaHv7fkj83htHMVWJKWh\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolActions.sol\":{\"keccak256\":\"0x9453dd0e7442188667d01d9b65de3f1e14e9511ff3e303179a15f6fc267f7634\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://982f4328f956c3e60e67501e759eb292ac487f76460c774c50e9ae4fcc92aae5\",\"dweb:/ipfs/QmRnzEDsaqtd9PJEVcgQi7p5aV5pMSvRUoGZJAdwFUJxgZ\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolDerivedState.sol\":{\"keccak256\":\"0xe603ac5b17ecdee73ba2b27efdf386c257a19c14206e87eee77e2017b742d9e5\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://8febc9bdb399a4d94bb89f5377732652e2400e4a8dee808201ade6848f9004e7\",\"dweb:/ipfs/QmaKDqYYFU4d2W2iN77aDHptfbFmYZRrMYXHeGpJmM8C1c\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolEvents.sol\":{\"keccak256\":\"0x8071514d0fe5d17d6fbd31c191cdfb703031c24e0ece3621d88ab10e871375cd\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://d0b571930cc7488b1d546a7e9cea7c52d8b3c4e207da657ed0e0db7343b8cd03\",\"dweb:/ipfs/QmaGK6vVwB95QSTR1XMYvrh7ivYAYZxi3fD7v6VMA4jZ39\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolImmutables.sol\":{\"keccak256\":\"0xf6e5d2cd1139c4c276bdbc8e1d2b256e456c866a91f1b868da265c6d2685c3f7\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://b99c8c9ae8e27ee6559e5866bea82cbc9ffc8247f8d15b7422a4deb287d4d047\",\"dweb:/ipfs/QmfL8gaqt3ffAnm6nVj5ksuNpLygXuL3xq5VBqrkwC2JJ3\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolOwnerActions.sol\":{\"keccak256\":\"0x759b78a2918af9e99e246dc3af084f654e48ef32bb4e4cb8a966aa3dcaece235\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://64144fb96e1c7fdba87305acadb98a198d26a3d46c097cb3a666e567f6f29735\",\"dweb:/ipfs/QmUnWVwN9FKB9uV5Pr8YfLpWZnYM2DENnRMaadZ492JS9u\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolState.sol\":{\"keccak256\":\"0x852dc1f5df7dcf7f11e7bb3eed79f0cea72ad4b25f6a9d2c35aafb48925fd49f\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://ed63907c38ff36b0e22bc9ffc53e791ea74f0d4f0e7c257fdfb5aaf8825b1f0f\",\"dweb:/ipfs/QmSQrckghEjs6HVsA5GVgpNpZWvTXMY5eQLF7cN6deFeEg\"]},\"@uniswap/v3-periphery/contracts/interfaces/IERC721Permit.sol\":{\"keccak256\":\"0x9e3c2a4ee65ddf95b2dfcb0815784eea3a295707e6f8b83e4c4f0f8fe2e3a1d4\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://bfd939085b3618101b955f87c7fabf38338ba1aad480295acb8102ebc5d72471\",\"dweb:/ipfs/QmauQD8bGDHTztmTDfaKXjzM7Wacrq2XU7VcTbwn1WrDBL\"]},\"@uniswap/v3-periphery/contracts/interfaces/IPeripheryImmutableState.sol\":{\"keccak256\":\"0x7affcfeb5127c0925a71d6a65345e117c33537523aeca7bc98085ead8452519d\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://e16b291294210e71cb0f20cd0afe62ae2dc6878d627f5ccc19c4dc9cd80aec3f\",\"dweb:/ipfs/QmQGitSyBr26nour81BZmpmDMyJpvZRqHQZvnCD1Acb127\"]},\"@uniswap/v3-periphery/contracts/interfaces/IPeripheryPayments.sol\":{\"keccak256\":\"0xb547e10f1e69bed03621a62b73a503e260643066c6b4054867a4d1fef47eb274\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://f9a90f58f5fd5fb42f7811f4094113b532f307b14a73764c91f977590747f407\",\"dweb:/ipfs/QmSeNH2mfiDMKf3Q6V2sqtNxx1s72JNuA1VVxRM9HoMqYp\"]},\"@uniswap/v3-periphery/contracts/interfaces/IPoolInitializer.sol\":{\"keccak256\":\"0x9d7695e8d94c22cc5fcced602017aabb988de89981ea7bee29ea629d5328a862\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://61b50933026ee1017db2a6273af8cedc3238c95dca58880db0918dbdbb2f064f\",\"dweb:/ipfs/QmUebR26pqG25d18aBELKz8aFFKkmHa8PxntzXTA7o9Ldu\"]},\"contracts/gauges/uniswapv3/StakingRewardsV3.sol\":{\"keccak256\":\"0xb561b1ee69cdff4fdafd14a6dc83e28de43028002b3ae36d77cb54b493706d69\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a4f12783112b0f125e924ac38eb08962f5d5a7af8e75c0a5064940ca2a6a80ff\",\"dweb:/ipfs/QmV4U37GAauuyWDYWFcrjAE9ksWQMcWr38cUhaZipEKE6F\"]},\"contracts/gauges/uniswapv3/UniswapV3Base.sol\":{\"keccak256\":\"0x28d968c78255413c7d6646e26b626cf9e3728c3151d943a3cc5a522a6459a492\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://aa5f17efd4ba4c9d9687350812392991ba0058c11e7d74846d310d283e5856ea\",\"dweb:/ipfs/QmPBRFwg8qmqpnhDrBYDs6xmMsc7NhCPKP9RhMBHnpr1op\"]},\"contracts/interfaces/IGauge.sol\":{\"keccak256\":\"0xdaa97894648d646bd592cc113510dc5900d22b1ac9a58713d8be03dae9b96a3b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://276d19c98e7792386abed79c98a7ea33d8347edf32d91b679f412dd78382a43a\",\"dweb:/ipfs/QmUS6TwFKn7kcwPoU1JEzzVanNLBfrFkUr2L9p7x9pR5Hc\"]},\"contracts/interfaces/IGaugeVoterV2.sol\":{\"keccak256\":\"0x2920d264daa8497cc6363ca5de80fe889734c71ef26b874219fbe7f33d2905d8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cd933e05b285122e229ef09e72ecd5300d0bb542d29956ac4e0beb1a105d9733\",\"dweb:/ipfs/QmXGRNccNQGG1r9ry9fJRW9AHCAetLMJKWQ7HQZRMXMuZT\"]},\"contracts/interfaces/INFTStaker.sol\":{\"keccak256\":\"0x7d304fc4fc8b906d547b9457a2a41e079faf1a2c3960c80edea3e24bf202e821\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4b19eeaafa1e4e33c8f113fcae2248dfe33c4f6a5c5702a9b4d2253c0cd45c59\",\"dweb:/ipfs/QmPer1f9LqnpMt8kEA5AR381GAm82aui6jbWJwPFKD9WwD\"]},\"contracts/interfaces/INonfungiblePositionManager.sol\":{\"keccak256\":\"0x7a127df9c56dbe2cd36494b119b533ff121f02fda5d6b480ea9796c694196747\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5271d1bba67d5481e68833b440c6b206f270ec8cf59a0032d1028feaa664213\",\"dweb:/ipfs/QmVEDdfCt41AcTgewmc4wdW9A9NogKZjQ6WcMCQUAbK3yG\"]},\"contracts/interfaces/IRegistry.sol\":{\"keccak256\":\"0x89b7f5558b6b862cb67d11ce6615aa27beb8ea3961e94ae30b35c2aea0d19124\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://41abe49d627f36748d6fd4f7172866d26c320e415903fe698a50910e9c15a63c\",\"dweb:/ipfs/QmRWNdZ7xj82jmNUyMD5vUKQiLmCasnRc4koz4tGAiruqF\"]},\"contracts/utils/NFTPositionInfo.sol\":{\"keccak256\":\"0x58e7a461b1f190ea9dd1480b1a9a031e50304c80f14e40908936c45f20981b48\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://c705d809320056979d767e7bb8036356f93b4e008b12746f6b57f01d914a3962\",\"dweb:/ipfs/QmUkVwEg1wPJRWuttC7eLiNqAPbLfiNQ3UsTQBgcoWXEfr\"]},\"contracts/utils/PoolAddress.sol\":{\"keccak256\":\"0x4d9d291f243513408eda08cd7adb3f396a87afeb81ad6bcacc343414ff3a2af9\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://2c462d2e8cd0b51acc9cb37bcd5c0047c444801144eabb5b3839025a77d03464\",\"dweb:/ipfs/QmWYHM9eedm1KqqBDdm7WvEnPuy3iUDPUwwTY5ZN4w8y1a\"]}},\"version\":1}"}},"contracts/gauges/uniswapv3/UniswapV3Base.sol":{"UniswapV3Base":{"abi":[{"anonymous":false,"inputs":[],"name":"EmergencyModeEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_old","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_new","type":"uint256"}],"name":"MaxBoostRequirementChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint128","name":"liquidty","type":"uint128"},{"indexed":false,"internalType":"uint128","name":"derivedLiquidity","type":"uint128"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"attached","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"deposits","outputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint128","name":"liquidity","type":"uint128"},{"internalType":"uint128","name":"derivedLiquidity","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"derivedLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"contract IUniswapV3Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address[]","name":"tokens","type":"address[]"}],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getRewardForDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_registry","type":"address"},{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"uint24","name":"fee","type":"uint24"},{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"address","name":"_nonfungiblePositionManager","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"left","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"liquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBoostRequirement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonfungiblePositionManager","outputs":[{"internalType":"contract INonfungiblePositionManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"notifyRewardAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pool","outputs":[{"internalType":"contract IUniswapV3Pool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"registry","outputs":[{"internalType":"contract IRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerTokenStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"userRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"attached(address)":"36703461","balanceOf(address)":"70a08231","deposits(uint256)":"b02c43d0","derivedLiquidity(uint256)":"03f3e30e","earned(uint256)":"4d6ed8c4","factory()":"c45a0155","getReward(address,address[])":"31279d3d","getRewardForDuration()":"1c1f78eb","initialize(address,address,address,uint24,address,address)":"b93c9a1d","lastTimeRewardApplicable()":"80faa57d","lastUpdateTime()":"c8f33c91","left(address)":"99bcc052","liquidity(uint256)":"c8f1c3af","maxBoostRequirement()":"69db8b27","nonfungiblePositionManager()":"b44a2722","notifyRewardAmount(address,uint256)":"b66503cf","periodFinish()":"ebe2b12b","pool()":"16f0115b","registry()":"7b103999","rewardPerToken()":"cd3daf9d","rewardPerTokenStored()":"df136d65","rewardRate()":"7b0a47ee","rewards(uint256)":"f301af42","rewardsDuration()":"386a9525","rewardsToken()":"d1af0c7d","totalSupply()":"18160ddd","userRewardPerTokenPaid(uint256)":"6c6f858b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[],\"name\":\"EmergencyModeEnabled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"_old\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"_new\",\"type\":\"uint256\"}],\"name\":\"MaxBoostRequirementChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"reward\",\"type\":\"uint256\"}],\"name\":\"RewardAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"reward\",\"type\":\"uint256\"}],\"name\":\"RewardPaid\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"liquidty\",\"type\":\"uint128\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"derivedLiquidity\",\"type\":\"uint128\"}],\"name\":\"Staked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Withdrawn\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"attached\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"deposits\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint128\",\"name\":\"liquidity\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"derivedLiquidity\",\"type\":\"uint128\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"derivedLiquidity\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"earned\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"factory\",\"outputs\":[{\"internalType\":\"contract IUniswapV3Factory\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"address[]\",\"name\":\"tokens\",\"type\":\"address[]\"}],\"name\":\"getReward\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getRewardForDuration\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_registry\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token0\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token1\",\"type\":\"address\"},{\"internalType\":\"uint24\",\"name\":\"fee\",\"type\":\"uint24\"},{\"internalType\":\"address\",\"name\":\"_rewardsToken\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_nonfungiblePositionManager\",\"type\":\"address\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"lastTimeRewardApplicable\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"lastUpdateTime\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"left\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"liquidity\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"maxBoostRequirement\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"nonfungiblePositionManager\",\"outputs\":[{\"internalType\":\"contract INonfungiblePositionManager\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"notifyRewardAmount\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"periodFinish\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pool\",\"outputs\":[{\"internalType\":\"contract IUniswapV3Pool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"registry\",\"outputs\":[{\"internalType\":\"contract IRegistry\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"rewardPerToken\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"rewardPerTokenStored\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"rewardRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"rewards\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"rewardsDuration\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"rewardsToken\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"userRewardPerTokenPaid\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"_allTokens\":{\"details\":\"Array with all token ids, used for enumeration\"},\"_allTokensIndex\":{\"details\":\"Mapping from token id to position in the allTokens array\"},\"_ownedTokens\":{\"details\":\"Mapping from owner to list of owned token IDs\"},\"_ownedTokensIndex\":{\"details\":\"Mapping from token ID to index of the owner tokens list\"},\"attached\":{\"details\":\"is the user attached to this gauge\"},\"balanceOf\":{\"details\":\"the number of NFTs staked by the given user.\"},\"deposits\":{\"details\":\"all the NFT deposits\"},\"factory\":{\"details\":\"the uniswap v3 factory\"},\"nonfungiblePositionManager\":{\"details\":\"the uniswap v3 nft position manager\"},\"pool\":{\"details\":\"the pool for which we are staking the rewards\"},\"rewards\":{\"details\":\"[nft token id => reward count] rewards\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/gauges/uniswapv3/UniswapV3Base.sol\":\"UniswapV3Base\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0x59ce320a585d7e1f163cd70390a0ef2ff9cec832e2aa544293a00692465a7a57\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bb2c137c343ef0c4c7ce7b18c1d108afdc9d315a04e48307288d2d05adcbde3a\",\"dweb:/ipfs/QmUxhrAQM3MM3FF5j7AtcXLXguWCJBHJ14BRdVtuoQc8Fh\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x6ebf1944ab804b8660eb6fc52f9fe84588cee01c2566a69023e59497e7d27f45\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2900536cdadec954ced8789a9d1ed4b5e640029e1424e91fd5b88026486f4d45\",\"dweb:/ipfs/QmUMUX7CuYoiHvFkhifqtXGaciw2wnm4t9sAoPzETZ3Gbq\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x2a21b14ff90012878752f230d3ffd5c3405e5938d06c97a7d89c0a64561d0d66\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3313a8f9bb1f9476857c9050067b31982bf2140b83d84f3bc0cec1f62bbe947f\",\"dweb:/ipfs/Qma17Pk8NRe7aB4UD3jjVxk7nSFaov3eQyv86hcyqkwJRV\"]},\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"keccak256\":\"0x0e9621f60b2faabe65549f7ed0f24e8853a45c1b7990d47e8160e523683f3935\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://287a2f8d5814dd0f05f22b740f18ca8321acc21c9bd03a6cb2203ea626e2f3f2\",\"dweb:/ipfs/QmZRQv9iuwU817VuqkA2WweiaibKii69x9QxYBBEfbNEud\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x9750c6b834f7b43000631af5cc30001c5f547b3ceb3635488f140f60e897ea6b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5a7d5b1ef5d8d5889ad2ed89d8619c09383b80b72ab226e0fe7bde1636481e34\",\"dweb:/ipfs/QmebXWgtEfumQGBdVeM6c71McLixYXQP5Bk6kKXuoY4Bmr\"]},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xed6a749c5373af398105ce6ee3ac4763aa450ea7285d268c85d9eeca809cdb1f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://20a97f891d06f0fe91560ea1a142aaa26fdd22bed1b51606b7d48f670deeb50f\",\"dweb:/ipfs/QmTbCtZKChpaX5H2iRiTDMcSz29GSLCpTCDgJpcMR4wg8x\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol\":{\"keccak256\":\"0xd1556954440b31c97a142c6ba07d5cade45f96fafd52091d33a14ebe365aecbf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://26fef835622b46a5ba08b3ef6b46a22e94b5f285d0f0fb66b703bd30217d2c34\",\"dweb:/ipfs/QmZ548qdwfL1qF7aXz3xh1GCdTiST81kGGuKRqVUfYmPZR\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146\",\"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xd6153ce99bcdcce22b124f755e72553295be6abcd63804cfdffceb188b8bef10\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://35c47bece3c03caaa07fab37dd2bb3413bfbca20db7bd9895024390e0a469487\",\"dweb:/ipfs/QmPGWT2x3QHcKxqe6gRmAkdakhbaRgx3DLzcakHz5M4eXG\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]},\"@openzeppelin/contracts/utils/math/SafeMath.sol\":{\"keccak256\":\"0x0f633a0223d9a1dcccfcf38a64c9de0874dfcbfac0c6941ccf074d63a2ce0e1e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://864a40efcffdf408044c332a5aa38ec5618ed7b4eecb8f65faf45671bd6cdc65\",\"dweb:/ipfs/QmQJquTMtc6fgm5JQzGdsGpA2fqBe3MHWEdt2qzaLySMdN\"]},\"@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol\":{\"keccak256\":\"0xcc3d0c93fc9ac0febbe09f941b465b57f750bcf3b48432da0b97dc289cfdc489\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://b9379ad954680c44a0bc523b314ae4c4da735f9fe1d02aa56ea5bdba6f1136f2\",\"dweb:/ipfs/QmZXdgQNXKAckrXWz9R3mc47F1fvDvr28a2ewJrwNAw71B\"]},\"@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol\":{\"keccak256\":\"0xfe6113d518466cd6652c85b111e01f33eb62157f49ae5ed7d5a3947a2044adb1\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://1c42b9e6f5902ac38dd43e25750939baa7e0c1425dc75afd717c4412731065d5\",\"dweb:/ipfs/QmWaoacnzsucTvBME2o7YgZBZMhaHv7fkj83htHMVWJKWh\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolActions.sol\":{\"keccak256\":\"0x9453dd0e7442188667d01d9b65de3f1e14e9511ff3e303179a15f6fc267f7634\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://982f4328f956c3e60e67501e759eb292ac487f76460c774c50e9ae4fcc92aae5\",\"dweb:/ipfs/QmRnzEDsaqtd9PJEVcgQi7p5aV5pMSvRUoGZJAdwFUJxgZ\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolDerivedState.sol\":{\"keccak256\":\"0xe603ac5b17ecdee73ba2b27efdf386c257a19c14206e87eee77e2017b742d9e5\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://8febc9bdb399a4d94bb89f5377732652e2400e4a8dee808201ade6848f9004e7\",\"dweb:/ipfs/QmaKDqYYFU4d2W2iN77aDHptfbFmYZRrMYXHeGpJmM8C1c\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolEvents.sol\":{\"keccak256\":\"0x8071514d0fe5d17d6fbd31c191cdfb703031c24e0ece3621d88ab10e871375cd\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://d0b571930cc7488b1d546a7e9cea7c52d8b3c4e207da657ed0e0db7343b8cd03\",\"dweb:/ipfs/QmaGK6vVwB95QSTR1XMYvrh7ivYAYZxi3fD7v6VMA4jZ39\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolImmutables.sol\":{\"keccak256\":\"0xf6e5d2cd1139c4c276bdbc8e1d2b256e456c866a91f1b868da265c6d2685c3f7\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://b99c8c9ae8e27ee6559e5866bea82cbc9ffc8247f8d15b7422a4deb287d4d047\",\"dweb:/ipfs/QmfL8gaqt3ffAnm6nVj5ksuNpLygXuL3xq5VBqrkwC2JJ3\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolOwnerActions.sol\":{\"keccak256\":\"0x759b78a2918af9e99e246dc3af084f654e48ef32bb4e4cb8a966aa3dcaece235\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://64144fb96e1c7fdba87305acadb98a198d26a3d46c097cb3a666e567f6f29735\",\"dweb:/ipfs/QmUnWVwN9FKB9uV5Pr8YfLpWZnYM2DENnRMaadZ492JS9u\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolState.sol\":{\"keccak256\":\"0x852dc1f5df7dcf7f11e7bb3eed79f0cea72ad4b25f6a9d2c35aafb48925fd49f\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://ed63907c38ff36b0e22bc9ffc53e791ea74f0d4f0e7c257fdfb5aaf8825b1f0f\",\"dweb:/ipfs/QmSQrckghEjs6HVsA5GVgpNpZWvTXMY5eQLF7cN6deFeEg\"]},\"@uniswap/v3-periphery/contracts/interfaces/IERC721Permit.sol\":{\"keccak256\":\"0x9e3c2a4ee65ddf95b2dfcb0815784eea3a295707e6f8b83e4c4f0f8fe2e3a1d4\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://bfd939085b3618101b955f87c7fabf38338ba1aad480295acb8102ebc5d72471\",\"dweb:/ipfs/QmauQD8bGDHTztmTDfaKXjzM7Wacrq2XU7VcTbwn1WrDBL\"]},\"@uniswap/v3-periphery/contracts/interfaces/IPeripheryImmutableState.sol\":{\"keccak256\":\"0x7affcfeb5127c0925a71d6a65345e117c33537523aeca7bc98085ead8452519d\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://e16b291294210e71cb0f20cd0afe62ae2dc6878d627f5ccc19c4dc9cd80aec3f\",\"dweb:/ipfs/QmQGitSyBr26nour81BZmpmDMyJpvZRqHQZvnCD1Acb127\"]},\"@uniswap/v3-periphery/contracts/interfaces/IPeripheryPayments.sol\":{\"keccak256\":\"0xb547e10f1e69bed03621a62b73a503e260643066c6b4054867a4d1fef47eb274\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://f9a90f58f5fd5fb42f7811f4094113b532f307b14a73764c91f977590747f407\",\"dweb:/ipfs/QmSeNH2mfiDMKf3Q6V2sqtNxx1s72JNuA1VVxRM9HoMqYp\"]},\"@uniswap/v3-periphery/contracts/interfaces/IPoolInitializer.sol\":{\"keccak256\":\"0x9d7695e8d94c22cc5fcced602017aabb988de89981ea7bee29ea629d5328a862\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://61b50933026ee1017db2a6273af8cedc3238c95dca58880db0918dbdbb2f064f\",\"dweb:/ipfs/QmUebR26pqG25d18aBELKz8aFFKkmHa8PxntzXTA7o9Ldu\"]},\"contracts/gauges/uniswapv3/UniswapV3Base.sol\":{\"keccak256\":\"0x28d968c78255413c7d6646e26b626cf9e3728c3151d943a3cc5a522a6459a492\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://aa5f17efd4ba4c9d9687350812392991ba0058c11e7d74846d310d283e5856ea\",\"dweb:/ipfs/QmPBRFwg8qmqpnhDrBYDs6xmMsc7NhCPKP9RhMBHnpr1op\"]},\"contracts/interfaces/IGauge.sol\":{\"keccak256\":\"0xdaa97894648d646bd592cc113510dc5900d22b1ac9a58713d8be03dae9b96a3b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://276d19c98e7792386abed79c98a7ea33d8347edf32d91b679f412dd78382a43a\",\"dweb:/ipfs/QmUS6TwFKn7kcwPoU1JEzzVanNLBfrFkUr2L9p7x9pR5Hc\"]},\"contracts/interfaces/INonfungiblePositionManager.sol\":{\"keccak256\":\"0x7a127df9c56dbe2cd36494b119b533ff121f02fda5d6b480ea9796c694196747\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5271d1bba67d5481e68833b440c6b206f270ec8cf59a0032d1028feaa664213\",\"dweb:/ipfs/QmVEDdfCt41AcTgewmc4wdW9A9NogKZjQ6WcMCQUAbK3yG\"]},\"contracts/interfaces/IRegistry.sol\":{\"keccak256\":\"0x89b7f5558b6b862cb67d11ce6615aa27beb8ea3961e94ae30b35c2aea0d19124\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://41abe49d627f36748d6fd4f7172866d26c320e415903fe698a50910e9c15a63c\",\"dweb:/ipfs/QmRWNdZ7xj82jmNUyMD5vUKQiLmCasnRc4koz4tGAiruqF\"]},\"contracts/utils/PoolAddress.sol\":{\"keccak256\":\"0x4d9d291f243513408eda08cd7adb3f396a87afeb81ad6bcacc343414ff3a2af9\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://2c462d2e8cd0b51acc9cb37bcd5c0047c444801144eabb5b3839025a77d03464\",\"dweb:/ipfs/QmWYHM9eedm1KqqBDdm7WvEnPuy3iUDPUwwTY5ZN4w8y1a\"]}},\"version\":1}"}},"contracts/interfaces/IGauge.sol":{"IGauge":{"abi":[{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address[]","name":"tokens","type":"address[]"}],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"left","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"notifyRewardAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"registry","outputs":[{"internalType":"contract IRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"getReward(address,address[])":"31279d3d","left(address)":"99bcc052","notifyRewardAmount(address,uint256)":"b66503cf","registry()":"7b103999"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"address[]\",\"name\":\"tokens\",\"type\":\"address[]\"}],\"name\":\"getReward\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"left\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"notifyRewardAmount\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"registry\",\"outputs\":[{\"internalType\":\"contract IRegistry\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IGauge.sol\":\"IGauge\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0x59ce320a585d7e1f163cd70390a0ef2ff9cec832e2aa544293a00692465a7a57\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bb2c137c343ef0c4c7ce7b18c1d108afdc9d315a04e48307288d2d05adcbde3a\",\"dweb:/ipfs/QmUxhrAQM3MM3FF5j7AtcXLXguWCJBHJ14BRdVtuoQc8Fh\"]},\"contracts/interfaces/IGauge.sol\":{\"keccak256\":\"0xdaa97894648d646bd592cc113510dc5900d22b1ac9a58713d8be03dae9b96a3b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://276d19c98e7792386abed79c98a7ea33d8347edf32d91b679f412dd78382a43a\",\"dweb:/ipfs/QmUS6TwFKn7kcwPoU1JEzzVanNLBfrFkUr2L9p7x9pR5Hc\"]},\"contracts/interfaces/IRegistry.sol\":{\"keccak256\":\"0x89b7f5558b6b862cb67d11ce6615aa27beb8ea3961e94ae30b35c2aea0d19124\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://41abe49d627f36748d6fd4f7172866d26c320e415903fe698a50910e9c15a63c\",\"dweb:/ipfs/QmRWNdZ7xj82jmNUyMD5vUKQiLmCasnRc4koz4tGAiruqF\"]}},\"version\":1}"}},"contracts/interfaces/IGaugeVoterV2.sol":{"IGaugeVoterV2":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tokenId","type":"address"},{"indexed":false,"internalType":"int256","name":"weight","type":"int256"}],"name":"Abstained","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"gauge","type":"address"}],"name":"Attach","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"lp","type":"address"},{"indexed":true,"internalType":"address","name":"gauge","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"gauge","type":"address"}],"name":"Detach","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"gauge","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DistributeReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"gauge","type":"address"},{"indexed":false,"internalType":"address","name":"creator","type":"address"},{"indexed":true,"internalType":"address","name":"bribe","type":"address"},{"indexed":true,"internalType":"address","name":"pool","type":"address"}],"name":"GaugeCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"gauge","type":"address"},{"indexed":false,"internalType":"address","name":"creator","type":"address"},{"indexed":true,"internalType":"address","name":"bribe","type":"address"},{"indexed":true,"internalType":"address","name":"pool","type":"address"}],"name":"GaugeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"reward","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"NotifyReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"address","name":"tokenId","type":"address"},{"indexed":false,"internalType":"int256","name":"weight","type":"int256"}],"name":"Voted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"whitelister","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"Whitelisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"lp","type":"address"},{"indexed":true,"internalType":"address","name":"gauge","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"attachStakerToGauge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"attachments","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"detachStakerFromGauge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_gauges","type":"address[]"}],"name":"distribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_gauge","type":"address"}],"name":"distribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"notifyRewardAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"registry","outputs":[{"internalType":"contract IRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_who","type":"address"}],"name":"resetFor","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"attachStakerToGauge(address)":"97a302f7","attachments(address)":"6405eacd","detachStakerFromGauge(address)":"e32e4e88","distribute()":"e4fc6b6d","distribute(address)":"63453ae1","distribute(address[])":"6138889b","notifyRewardAmount(uint256)":"3c6b16ab","registry()":"7b103999","reset()":"d826f88f","resetFor(address)":"20217176"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"tokenId\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"weight\",\"type\":\"int256\"}],\"name\":\"Abstained\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"gauge\",\"type\":\"address\"}],\"name\":\"Attach\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"lp\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"gauge\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Deposit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"gauge\",\"type\":\"address\"}],\"name\":\"Detach\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"gauge\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"DistributeReward\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"gauge\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"creator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"bribe\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pool\",\"type\":\"address\"}],\"name\":\"GaugeCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"gauge\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"creator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"bribe\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pool\",\"type\":\"address\"}],\"name\":\"GaugeUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"reward\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"NotifyReward\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"tokenId\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"weight\",\"type\":\"int256\"}],\"name\":\"Voted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"whitelister\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"value\",\"type\":\"bool\"}],\"name\":\"Whitelisted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"lp\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"gauge\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Withdraw\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"attachStakerToGauge\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"who\",\"type\":\"address\"}],\"name\":\"attachments\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"detachStakerFromGauge\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"_gauges\",\"type\":\"address[]\"}],\"name\":\"distribute\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_gauge\",\"type\":\"address\"}],\"name\":\"distribute\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"distribute\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"notifyRewardAmount\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"registry\",\"outputs\":[{\"internalType\":\"contract IRegistry\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"reset\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_who\",\"type\":\"address\"}],\"name\":\"resetFor\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IGaugeVoterV2.sol\":\"IGaugeVoterV2\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0x59ce320a585d7e1f163cd70390a0ef2ff9cec832e2aa544293a00692465a7a57\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bb2c137c343ef0c4c7ce7b18c1d108afdc9d315a04e48307288d2d05adcbde3a\",\"dweb:/ipfs/QmUxhrAQM3MM3FF5j7AtcXLXguWCJBHJ14BRdVtuoQc8Fh\"]},\"contracts/interfaces/IGaugeVoterV2.sol\":{\"keccak256\":\"0x2920d264daa8497cc6363ca5de80fe889734c71ef26b874219fbe7f33d2905d8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cd933e05b285122e229ef09e72ecd5300d0bb542d29956ac4e0beb1a105d9733\",\"dweb:/ipfs/QmXGRNccNQGG1r9ry9fJRW9AHCAetLMJKWQ7HQZRMXMuZT\"]},\"contracts/interfaces/IRegistry.sol\":{\"keccak256\":\"0x89b7f5558b6b862cb67d11ce6615aa27beb8ea3961e94ae30b35c2aea0d19124\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://41abe49d627f36748d6fd4f7172866d26c320e415903fe698a50910e9c15a63c\",\"dweb:/ipfs/QmRWNdZ7xj82jmNUyMD5vUKQiLmCasnRc4koz4tGAiruqF\"]}},\"version\":1}"}},"contracts/interfaces/INFTStaker.sol":{"INFTStaker":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"who","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"StakeNFT","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"who","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UnstakeNFT","type":"event"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"_stakeFromLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"getStakedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isStaked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"registry","outputs":[{"internalType":"contract IRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"_stakeFromLock(uint256)":"630b4b90","balanceOf(address)":"70a08231","decimals()":"313ce567","delegate(address)":"5c19a95c","delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)":"c3cda520","delegates(address)":"587cde1e","getPastTotalSupply(uint256)":"8e539e8c","getPastVotes(address,uint256)":"3a46b1a8","getStakedBalance(address)":"3a02a42d","getVotes(address)":"9ab24eb0","isStaked(uint256)":"baa51f86","name()":"06fdde03","registry()":"7b103999","stake(uint256)":"a694fc3a","symbol()":"95d89b41","totalSupply()":"18160ddd","unstake(uint256)":"2e17de78"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"fromDelegate\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"toDelegate\",\"type\":\"address\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"previousBalance\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newBalance\",\"type\":\"uint256\"}],\"name\":\"DelegateVotesChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"who\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"StakeNFT\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"who\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"UnstakeNFT\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"_stakeFromLock\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"delegates\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"}],\"name\":\"getPastTotalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"}],\"name\":\"getPastVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"who\",\"type\":\"address\"}],\"name\":\"getStakedBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"isStaked\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"registry\",\"outputs\":[{\"internalType\":\"contract IRegistry\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"stake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"unstake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"delegate(address)\":{\"details\":\"Delegates votes from the sender to `delegatee`.\"},\"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Delegates votes from signer to `delegatee`.\"},\"delegates(address)\":{\"details\":\"Returns the delegate that `account` has chosen.\"},\"getPastTotalSupply(uint256)\":{\"details\":\"Returns the total supply of votes available at the end of a past block (`blockNumber`). NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. Votes that have not been delegated are still part of total supply, even though they would not participate in a vote.\"},\"getPastVotes(address,uint256)\":{\"details\":\"Returns the amount of votes that `account` had at the end of a past block (`blockNumber`).\"},\"getVotes(address)\":{\"details\":\"Returns the current amount of votes that `account` has.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/INFTStaker.sol\":\"INFTStaker\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0x59ce320a585d7e1f163cd70390a0ef2ff9cec832e2aa544293a00692465a7a57\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bb2c137c343ef0c4c7ce7b18c1d108afdc9d315a04e48307288d2d05adcbde3a\",\"dweb:/ipfs/QmUxhrAQM3MM3FF5j7AtcXLXguWCJBHJ14BRdVtuoQc8Fh\"]},\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0xf5324a55ee9c0b4a840ea57c055ac9d046f88986ceef567e1cf68113e46a79c0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f41fe2bddc33c17ccccfc25379b1869354e9ee62d8b28d2acc95229eeba37a86\",\"dweb:/ipfs/Qmb6SF2XL2uSvH6k5JSjtx4Xoqz41ACkhdAhtbW1Yh3RiY\"]},\"contracts/interfaces/INFTStaker.sol\":{\"keccak256\":\"0x7d304fc4fc8b906d547b9457a2a41e079faf1a2c3960c80edea3e24bf202e821\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4b19eeaafa1e4e33c8f113fcae2248dfe33c4f6a5c5702a9b4d2253c0cd45c59\",\"dweb:/ipfs/QmPer1f9LqnpMt8kEA5AR381GAm82aui6jbWJwPFKD9WwD\"]},\"contracts/interfaces/IRegistry.sol\":{\"keccak256\":\"0x89b7f5558b6b862cb67d11ce6615aa27beb8ea3961e94ae30b35c2aea0d19124\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://41abe49d627f36748d6fd4f7172866d26c320e415903fe698a50910e9c15a63c\",\"dweb:/ipfs/QmRWNdZ7xj82jmNUyMD5vUKQiLmCasnRc4koz4tGAiruqF\"]}},\"version\":1}"}},"contracts/interfaces/INonfungiblePositionManager.sol":{"INonfungiblePositionManager":{"abi":[{"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":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"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":"balance","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":"uint24","name":"fee","type":"uint24"},{"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":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"operator","type":"address"}],"stateMutability":"view","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":"uint24","name":"fee","type":"uint24"},{"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":[],"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":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"positions","outputs":[{"internalType":"uint96","name":"nonce","type":"uint96"},{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"uint24","name":"fee","type":"uint24"},{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"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":"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":"amountMinimum","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"unwrapWETH9","outputs":[],"stateMutability":"payable","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"DOMAIN_SEPARATOR()":"3644e515","PERMIT_TYPEHASH()":"30adf81f","WETH9()":"4aa4a4fc","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","burn(uint256)":"42966c68","collect((uint256,address,uint128,uint128))":"fc6f7865","createAndInitializePoolIfNecessary(address,address,uint24,uint160)":"13ead562","decreaseLiquidity((uint256,uint128,uint256,uint256,uint256))":"0c49ccbe","factory()":"c45a0155","getApproved(uint256)":"081812fc","increaseLiquidity((uint256,uint256,uint256,uint256,uint256,uint256))":"219f5d17","isApprovedForAll(address,address)":"e985e9c5","mint((address,address,uint24,int24,int24,uint256,uint256,uint256,uint256,address,uint256))":"88316456","name()":"06fdde03","ownerOf(uint256)":"6352211e","permit(address,uint256,uint256,uint8,bytes32,bytes32)":"7ac2ff7b","positions(uint256)":"99fbab88","refundETH()":"12210e8a","safeTransferFrom(address,address,uint256)":"42842e0e","safeTransferFrom(address,address,uint256,bytes)":"b88d4fde","setApprovalForAll(address,bool)":"a22cb465","supportsInterface(bytes4)":"01ffc9a7","sweepToken(address,uint256,address)":"df2ab5bb","symbol()":"95d89b41","tokenByIndex(uint256)":"4f6ccce7","tokenOfOwnerByIndex(address,uint256)":"2f745c59","tokenURI(uint256)":"c87b56dd","totalSupply()":"18160ddd","transferFrom(address,address,uint256)":"23b872dd","unwrapWETH9(uint256,address)":"49404b7c"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"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\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PERMIT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"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\":\"balance\",\"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\":\"uint24\",\"name\":\"fee\",\"type\":\"uint24\"},{\"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\":\"factory\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"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\":\"uint24\",\"name\":\"fee\",\"type\":\"uint24\"},{\"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\":[],\"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\":\"owner\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"positions\",\"outputs\":[{\"internalType\":\"uint96\",\"name\":\"nonce\",\"type\":\"uint96\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token0\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token1\",\"type\":\"address\"},{\"internalType\":\"uint24\",\"name\":\"fee\",\"type\":\"uint24\"},{\"internalType\":\"int24\",\"name\":\"tickLower\",\"type\":\"int24\"},{\"internalType\":\"int24\",\"name\":\"tickUpper\",\"type\":\"int24\"},{\"internalType\":\"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\":\"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\":\"amountMinimum\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"}],\"name\":\"unwrapWETH9\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"Collect(uint256,address,uint256,uint256)\":{\"details\":\"The amounts reported may not be exactly equivalent to the amounts transferred, due to rounding behavior\",\"params\":{\"amount0\":\"The amount of token0 owed to the position that was collected\",\"amount1\":\"The amount of token1 owed to the position that was collected\",\"recipient\":\"The address of the account that received the collected tokens\",\"tokenId\":\"The ID of the token for which underlying tokens were collected\"}},\"DecreaseLiquidity(uint256,uint128,uint256,uint256)\":{\"params\":{\"amount0\":\"The amount of token0 that was accounted for the decrease in liquidity\",\"amount1\":\"The amount of token1 that was accounted for the decrease in liquidity\",\"liquidity\":\"The amount by which liquidity for the NFT position was decreased\",\"tokenId\":\"The ID of the token for which liquidity was decreased\"}},\"IncreaseLiquidity(uint256,uint128,uint256,uint256)\":{\"details\":\"Also emitted when a token is minted\",\"params\":{\"amount0\":\"The amount of token0 that was paid for the increase in liquidity\",\"amount1\":\"The amount of token1 that was paid for the increase in liquidity\",\"liquidity\":\"The amount by which liquidity for the NFT position was increased\",\"tokenId\":\"The ID of the token for which liquidity was increased\"}}},\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"returns\":{\"_0\":\"The domain seperator used in encoding of permit signature\"}},\"PERMIT_TYPEHASH()\":{\"returns\":{\"_0\":\"The typehash for the permit\"}},\"WETH9()\":{\"returns\":{\"_0\":\"Returns the address of WETH9\"}},\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"burn(uint256)\":{\"params\":{\"tokenId\":\"The ID of the token that is being burned\"}},\"collect((uint256,address,uint128,uint128))\":{\"params\":{\"params\":\"tokenId The ID of the NFT for which tokens are being collected, recipient The account that should receive the tokens, amount0Max The maximum amount of token0 to collect, amount1Max The maximum amount of token1 to collect\"},\"returns\":{\"amount0\":\"The amount of fees collected in token0\",\"amount1\":\"The amount of fees collected in token1\"}},\"createAndInitializePoolIfNecessary(address,address,uint24,uint160)\":{\"details\":\"This method can be bundled with others via IMulticall for the first action (e.g. mint) performed against a pool\",\"params\":{\"fee\":\"The fee amount of the v3 pool for the specified token pair\",\"sqrtPriceX96\":\"The initial square root price of the pool as a Q64.96 value\",\"token0\":\"The contract address of token0 of the pool\",\"token1\":\"The contract address of token1 of the pool\"},\"returns\":{\"pool\":\"Returns the pool address based on the pair of tokens and fee, will return the newly created pool address if necessary\"}},\"decreaseLiquidity((uint256,uint128,uint256,uint256,uint256))\":{\"params\":{\"params\":\"tokenId The ID of the token for which liquidity is being decreased, amount The amount by which liquidity will be decreased, amount0Min The minimum amount of token0 that should be accounted for the burned liquidity, amount1Min The minimum amount of token1 that should be accounted for the burned liquidity, deadline The time by which the transaction must be included to effect the change\"},\"returns\":{\"amount0\":\"The amount of token0 accounted to the position's tokens owed\",\"amount1\":\"The amount of token1 accounted to the position's tokens owed\"}},\"factory()\":{\"returns\":{\"_0\":\"Returns the address of the Uniswap V3 factory\"}},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"increaseLiquidity((uint256,uint256,uint256,uint256,uint256,uint256))\":{\"params\":{\"params\":\"tokenId The ID of the token for which liquidity is being increased, amount0Desired The desired amount of token0 to be spent, amount1Desired The desired amount of token1 to be spent, amount0Min The minimum amount of token0 to spend, which serves as a slippage check, amount1Min The minimum amount of token1 to spend, which serves as a slippage check, deadline The time by which the transaction must be included to effect the change\"},\"returns\":{\"amount0\":\"The amount of token0 to acheive resulting liquidity\",\"amount1\":\"The amount of token1 to acheive resulting liquidity\",\"liquidity\":\"The new liquidity amount as a result of the increase\"}},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"mint((address,address,uint24,int24,int24,uint256,uint256,uint256,uint256,address,uint256))\":{\"details\":\"Call this when the pool does exist and is initialized. Note that if the pool is created but not initialized a method does not exist, i.e. the pool is assumed to be initialized.\",\"params\":{\"params\":\"The params necessary to mint a position, encoded as `MintParams` in calldata\"},\"returns\":{\"amount0\":\"The amount of token0\",\"amount1\":\"The amount of token1\",\"liquidity\":\"The amount of liquidity for this position\",\"tokenId\":\"The ID of the token that represents the minted position\"}},\"name()\":{\"details\":\"Returns the token collection name.\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"permit(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"params\":{\"deadline\":\"The deadline timestamp by which the call must be mined for the approve to work\",\"r\":\"Must produce valid secp256k1 signature from the holder along with `v` and `s`\",\"s\":\"Must produce valid secp256k1 signature from the holder along with `r` and `v`\",\"spender\":\"The account that is being approved\",\"tokenId\":\"The ID of the token that is being approved for spending\",\"v\":\"Must produce valid secp256k1 signature from the holder along with `r` and `s`\"}},\"positions(uint256)\":{\"details\":\"Throws if the token ID is not valid.\",\"params\":{\"tokenId\":\"The ID of the token that represents the position\"},\"returns\":{\"fee\":\"The fee associated with the pool\",\"feeGrowthInside0LastX128\":\"The fee growth of token0 as of the last action on the individual position\",\"feeGrowthInside1LastX128\":\"The fee growth of token1 as of the last action on the individual position\",\"liquidity\":\"The liquidity of the position\",\"nonce\":\"The nonce for permits\",\"operator\":\"The address that is approved for spending\",\"tickLower\":\"The lower end of the tick range for the position\",\"tickUpper\":\"The higher end of the tick range for the position\",\"token0\":\"The address of the token0 for a specific pool\",\"token1\":\"The address of the token1 for a specific pool\",\"tokensOwed0\":\"The uncollected amount of token0 owed to the position as of the last computation\",\"tokensOwed1\":\"The uncollected amount of token1 owed to the position as of the last computation\"}},\"refundETH()\":{\"details\":\"Useful for bundling with mint or increase liquidity that uses ether, or exact output swaps that use ether for the input amount\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the caller. Emits an {ApprovalForAll} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"sweepToken(address,uint256,address)\":{\"details\":\"The amountMinimum parameter prevents malicious contracts from stealing the token from users\",\"params\":{\"amountMinimum\":\"The minimum amount of token required for a transfer\",\"recipient\":\"The destination address of the token\",\"token\":\"The contract address of the token which will be transferred to `recipient`\"}},\"symbol()\":{\"details\":\"Returns the token collection symbol.\"},\"tokenByIndex(uint256)\":{\"details\":\"Returns a token ID at a given `index` of all the tokens stored by the contract. Use along with {totalSupply} to enumerate all tokens.\"},\"tokenOfOwnerByIndex(address,uint256)\":{\"details\":\"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.\"},\"tokenURI(uint256)\":{\"details\":\"Returns the Uniform Resource Identifier (URI) for `tokenId` token.\"},\"totalSupply()\":{\"details\":\"Returns the total amount of tokens stored by the contract.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"},\"unwrapWETH9(uint256,address)\":{\"details\":\"The amountMinimum parameter prevents malicious contracts from stealing WETH9 from users.\",\"params\":{\"amountMinimum\":\"The minimum amount of WETH9 to unwrap\",\"recipient\":\"The address receiving ETH\"}}},\"title\":\"Non-fungible token for positions\",\"version\":1},\"userdoc\":{\"events\":{\"Collect(uint256,address,uint256,uint256)\":{\"notice\":\"Emitted when tokens are collected for a position NFT\"},\"DecreaseLiquidity(uint256,uint128,uint256,uint256)\":{\"notice\":\"Emitted when liquidity is decreased for a position NFT\"},\"IncreaseLiquidity(uint256,uint128,uint256,uint256)\":{\"notice\":\"Emitted when liquidity is increased for a position NFT\"}},\"kind\":\"user\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"notice\":\"The domain separator used in the permit signature\"},\"PERMIT_TYPEHASH()\":{\"notice\":\"The permit typehash used in the permit signature\"},\"burn(uint256)\":{\"notice\":\"Burns a token ID, which deletes it from the NFT contract. The token must have 0 liquidity and all tokens must be collected first.\"},\"collect((uint256,address,uint128,uint128))\":{\"notice\":\"Collects up to a maximum amount of fees owed to a specific position to the recipient\"},\"createAndInitializePoolIfNecessary(address,address,uint24,uint160)\":{\"notice\":\"Creates a new pool if it does not exist, then initializes if not initialized\"},\"decreaseLiquidity((uint256,uint128,uint256,uint256,uint256))\":{\"notice\":\"Decreases the amount of liquidity in a position and accounts it to the position\"},\"increaseLiquidity((uint256,uint256,uint256,uint256,uint256,uint256))\":{\"notice\":\"Increases the amount of liquidity in a position, with tokens paid by the `msg.sender`\"},\"mint((address,address,uint24,int24,int24,uint256,uint256,uint256,uint256,address,uint256))\":{\"notice\":\"Creates a new position wrapped in a NFT\"},\"permit(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"notice\":\"Approve of a specific token ID for spending by spender via signature\"},\"positions(uint256)\":{\"notice\":\"Returns the position information associated with a given token ID.\"},\"refundETH()\":{\"notice\":\"Refunds any ETH balance held by this contract to the `msg.sender`\"},\"sweepToken(address,uint256,address)\":{\"notice\":\"Transfers the full amount of a token held by this contract to recipient\"},\"unwrapWETH9(uint256,address)\":{\"notice\":\"Unwraps the contract's WETH9 balance and sends it to recipient as ETH.\"}},\"notice\":\"Wraps Uniswap V3 positions in a non-fungible token interface which allows for them to be transferred and authorized.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/INonfungiblePositionManager.sol\":\"INonfungiblePositionManager\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xed6a749c5373af398105ce6ee3ac4763aa450ea7285d268c85d9eeca809cdb1f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://20a97f891d06f0fe91560ea1a142aaa26fdd22bed1b51606b7d48f670deeb50f\",\"dweb:/ipfs/QmTbCtZKChpaX5H2iRiTDMcSz29GSLCpTCDgJpcMR4wg8x\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol\":{\"keccak256\":\"0xd1556954440b31c97a142c6ba07d5cade45f96fafd52091d33a14ebe365aecbf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://26fef835622b46a5ba08b3ef6b46a22e94b5f285d0f0fb66b703bd30217d2c34\",\"dweb:/ipfs/QmZ548qdwfL1qF7aXz3xh1GCdTiST81kGGuKRqVUfYmPZR\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146\",\"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]},\"@uniswap/v3-periphery/contracts/interfaces/IERC721Permit.sol\":{\"keccak256\":\"0x9e3c2a4ee65ddf95b2dfcb0815784eea3a295707e6f8b83e4c4f0f8fe2e3a1d4\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://bfd939085b3618101b955f87c7fabf38338ba1aad480295acb8102ebc5d72471\",\"dweb:/ipfs/QmauQD8bGDHTztmTDfaKXjzM7Wacrq2XU7VcTbwn1WrDBL\"]},\"@uniswap/v3-periphery/contracts/interfaces/IPeripheryImmutableState.sol\":{\"keccak256\":\"0x7affcfeb5127c0925a71d6a65345e117c33537523aeca7bc98085ead8452519d\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://e16b291294210e71cb0f20cd0afe62ae2dc6878d627f5ccc19c4dc9cd80aec3f\",\"dweb:/ipfs/QmQGitSyBr26nour81BZmpmDMyJpvZRqHQZvnCD1Acb127\"]},\"@uniswap/v3-periphery/contracts/interfaces/IPeripheryPayments.sol\":{\"keccak256\":\"0xb547e10f1e69bed03621a62b73a503e260643066c6b4054867a4d1fef47eb274\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://f9a90f58f5fd5fb42f7811f4094113b532f307b14a73764c91f977590747f407\",\"dweb:/ipfs/QmSeNH2mfiDMKf3Q6V2sqtNxx1s72JNuA1VVxRM9HoMqYp\"]},\"@uniswap/v3-periphery/contracts/interfaces/IPoolInitializer.sol\":{\"keccak256\":\"0x9d7695e8d94c22cc5fcced602017aabb988de89981ea7bee29ea629d5328a862\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://61b50933026ee1017db2a6273af8cedc3238c95dca58880db0918dbdbb2f064f\",\"dweb:/ipfs/QmUebR26pqG25d18aBELKz8aFFKkmHa8PxntzXTA7o9Ldu\"]},\"contracts/interfaces/INonfungiblePositionManager.sol\":{\"keccak256\":\"0x7a127df9c56dbe2cd36494b119b533ff121f02fda5d6b480ea9796c694196747\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5271d1bba67d5481e68833b440c6b206f270ec8cf59a0032d1028feaa664213\",\"dweb:/ipfs/QmVEDdfCt41AcTgewmc4wdW9A9NogKZjQ6WcMCQUAbK3yG\"]},\"contracts/utils/PoolAddress.sol\":{\"keccak256\":\"0x4d9d291f243513408eda08cd7adb3f396a87afeb81ad6bcacc343414ff3a2af9\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://2c462d2e8cd0b51acc9cb37bcd5c0047c444801144eabb5b3839025a77d03464\",\"dweb:/ipfs/QmWYHM9eedm1KqqBDdm7WvEnPuy3iUDPUwwTY5ZN4w8y1a\"]}},\"version\":1}"}},"contracts/interfaces/IRegistry.sol":{"IRegistry":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"whom","type":"address"},{"indexed":false,"internalType":"address","name":"_old","type":"address"},{"indexed":false,"internalType":"address","name":"_new","type":"address"}],"name":"EmissionControllerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"whom","type":"address"},{"indexed":false,"internalType":"address","name":"_old","type":"address"},{"indexed":false,"internalType":"address","name":"_new","type":"address"}],"name":"GovernorChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"whom","type":"address"},{"indexed":false,"internalType":"address","name":"_old","type":"address"},{"indexed":false,"internalType":"address","name":"_new","type":"address"}],"name":"LockerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"whom","type":"address"},{"indexed":false,"internalType":"address","name":"_old","type":"address"},{"indexed":false,"internalType":"address","name":"_new","type":"address"}],"name":"MahaChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"whom","type":"address"},{"indexed":false,"internalType":"address","name":"_old","type":"address"},{"indexed":false,"internalType":"address","name":"_new","type":"address"}],"name":"StakerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"whom","type":"address"},{"indexed":false,"internalType":"address","name":"_old","type":"address"},{"indexed":false,"internalType":"address","name":"_new","type":"address"}],"name":"VoterChanged","type":"event"},{"inputs":[],"name":"emissionController","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ensureNotPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gaugeVoter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllAddresses","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"locker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maha","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_new","type":"address"}],"name":"setEmissionController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_new","type":"address"}],"name":"setGovernor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_new","type":"address"}],"name":"setLocker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_new","type":"address"}],"name":"setMAHA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_new","type":"address"}],"name":"setStaker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_new","type":"address"}],"name":"setVoter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"staker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"emissionController()":"6dee2012","ensureNotPaused()":"f9fa2123","gaugeVoter()":"81ca29a1","getAllAddresses()":"9516a104","getRoleAdmin(bytes32)":"248a9ca3","governor()":"0c340a24","grantRole(bytes32,address)":"2f2ff15d","hasRole(bytes32,address)":"91d14854","locker()":"d7b96d4e","maha()":"3de00c36","renounceRole(bytes32,address)":"36568abe","revokeRole(bytes32,address)":"d547741f","setEmissionController(address)":"b641522e","setGovernor(address)":"c42cf535","setLocker(address)":"171060ec","setMAHA(address)":"be21c026","setStaker(address)":"a29a43bb","setVoter(address)":"4bc2a657","staker()":"5ebaf1db"}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"whom\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"_old\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"_new\",\"type\":\"address\"}],\"name\":\"EmissionControllerChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"whom\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"_old\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"_new\",\"type\":\"address\"}],\"name\":\"GovernorChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"whom\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"_old\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"_new\",\"type\":\"address\"}],\"name\":\"LockerChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"whom\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"_old\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"_new\",\"type\":\"address\"}],\"name\":\"MahaChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"previousAdminRole\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"newAdminRole\",\"type\":\"bytes32\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"whom\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"_old\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"_new\",\"type\":\"address\"}],\"name\":\"StakerChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"whom\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"_old\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"_new\",\"type\":\"address\"}],\"name\":\"VoterChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"emissionController\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"ensureNotPaused\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"gaugeVoter\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getAllAddresses\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"governor\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"locker\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"maha\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_new\",\"type\":\"address\"}],\"name\":\"setEmissionController\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_new\",\"type\":\"address\"}],\"name\":\"setGovernor\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_new\",\"type\":\"address\"}],\"name\":\"setLocker\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_new\",\"type\":\"address\"}],\"name\":\"setMAHA\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_new\",\"type\":\"address\"}],\"name\":\"setStaker\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_new\",\"type\":\"address\"}],\"name\":\"setVoter\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"staker\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {AccessControl-_setRoleAdmin}.\"},\"grantRole(bytes32,address)\":{\"details\":\"Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"renounceRole(bytes32,address)\":{\"details\":\"Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `account`.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IRegistry.sol\":\"IRegistry\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0x59ce320a585d7e1f163cd70390a0ef2ff9cec832e2aa544293a00692465a7a57\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bb2c137c343ef0c4c7ce7b18c1d108afdc9d315a04e48307288d2d05adcbde3a\",\"dweb:/ipfs/QmUxhrAQM3MM3FF5j7AtcXLXguWCJBHJ14BRdVtuoQc8Fh\"]},\"contracts/interfaces/IRegistry.sol\":{\"keccak256\":\"0x89b7f5558b6b862cb67d11ce6615aa27beb8ea3961e94ae30b35c2aea0d19124\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://41abe49d627f36748d6fd4f7172866d26c320e415903fe698a50910e9c15a63c\",\"dweb:/ipfs/QmRWNdZ7xj82jmNUyMD5vUKQiLmCasnRc4koz4tGAiruqF\"]}},\"version\":1}"}},"contracts/utils/NFTPositionInfo.sol":{"NFTPositionInfo":{"abi":[],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220ca29d612f9bee663ec53654550ce4880f046d90715fd0636c3289c87d63e390764736f6c63430008040033","opcodes":"PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCA 0x29 0xD6 SLT 0xF9 0xBE 0xE6 PUSH4 0xEC536545 POP 0xCE 0x48 DUP1 CREATE CHAINID 0xD9 SMOD ISZERO REVERT MOD CALLDATASIZE 0xC3 0x28 SWAP13 DUP8 0xD6 RETURNDATACOPY CODECOPY SMOD PUSH5 0x736F6C6343 STOP ADDMOD DIV STOP CALLER ","sourceMap":"419:1296:35:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;419:1296:35;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220ca29d612f9bee663ec53654550ce4880f046d90715fd0636c3289c87d63e390764736f6c63430008040033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCA 0x29 0xD6 SLT 0xF9 0xBE 0xE6 PUSH4 0xEC536545 POP 0xCE 0x48 DUP1 CREATE CHAINID 0xD9 SMOD ISZERO REVERT MOD CALLDATASIZE 0xC3 0x28 SWAP13 DUP8 0xD6 RETURNDATACOPY CODECOPY SMOD PUSH5 0x736F6C6343 STOP ADDMOD DIV STOP CALLER ","sourceMap":"419:1296:35:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"Encapsulates the logic for getting info about a NFT token ID\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/utils/NFTPositionInfo.sol\":\"NFTPositionInfo\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xed6a749c5373af398105ce6ee3ac4763aa450ea7285d268c85d9eeca809cdb1f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://20a97f891d06f0fe91560ea1a142aaa26fdd22bed1b51606b7d48f670deeb50f\",\"dweb:/ipfs/QmTbCtZKChpaX5H2iRiTDMcSz29GSLCpTCDgJpcMR4wg8x\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol\":{\"keccak256\":\"0xd1556954440b31c97a142c6ba07d5cade45f96fafd52091d33a14ebe365aecbf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://26fef835622b46a5ba08b3ef6b46a22e94b5f285d0f0fb66b703bd30217d2c34\",\"dweb:/ipfs/QmZ548qdwfL1qF7aXz3xh1GCdTiST81kGGuKRqVUfYmPZR\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146\",\"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]},\"@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol\":{\"keccak256\":\"0xcc3d0c93fc9ac0febbe09f941b465b57f750bcf3b48432da0b97dc289cfdc489\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://b9379ad954680c44a0bc523b314ae4c4da735f9fe1d02aa56ea5bdba6f1136f2\",\"dweb:/ipfs/QmZXdgQNXKAckrXWz9R3mc47F1fvDvr28a2ewJrwNAw71B\"]},\"@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol\":{\"keccak256\":\"0xfe6113d518466cd6652c85b111e01f33eb62157f49ae5ed7d5a3947a2044adb1\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://1c42b9e6f5902ac38dd43e25750939baa7e0c1425dc75afd717c4412731065d5\",\"dweb:/ipfs/QmWaoacnzsucTvBME2o7YgZBZMhaHv7fkj83htHMVWJKWh\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolActions.sol\":{\"keccak256\":\"0x9453dd0e7442188667d01d9b65de3f1e14e9511ff3e303179a15f6fc267f7634\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://982f4328f956c3e60e67501e759eb292ac487f76460c774c50e9ae4fcc92aae5\",\"dweb:/ipfs/QmRnzEDsaqtd9PJEVcgQi7p5aV5pMSvRUoGZJAdwFUJxgZ\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolDerivedState.sol\":{\"keccak256\":\"0xe603ac5b17ecdee73ba2b27efdf386c257a19c14206e87eee77e2017b742d9e5\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://8febc9bdb399a4d94bb89f5377732652e2400e4a8dee808201ade6848f9004e7\",\"dweb:/ipfs/QmaKDqYYFU4d2W2iN77aDHptfbFmYZRrMYXHeGpJmM8C1c\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolEvents.sol\":{\"keccak256\":\"0x8071514d0fe5d17d6fbd31c191cdfb703031c24e0ece3621d88ab10e871375cd\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://d0b571930cc7488b1d546a7e9cea7c52d8b3c4e207da657ed0e0db7343b8cd03\",\"dweb:/ipfs/QmaGK6vVwB95QSTR1XMYvrh7ivYAYZxi3fD7v6VMA4jZ39\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolImmutables.sol\":{\"keccak256\":\"0xf6e5d2cd1139c4c276bdbc8e1d2b256e456c866a91f1b868da265c6d2685c3f7\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://b99c8c9ae8e27ee6559e5866bea82cbc9ffc8247f8d15b7422a4deb287d4d047\",\"dweb:/ipfs/QmfL8gaqt3ffAnm6nVj5ksuNpLygXuL3xq5VBqrkwC2JJ3\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolOwnerActions.sol\":{\"keccak256\":\"0x759b78a2918af9e99e246dc3af084f654e48ef32bb4e4cb8a966aa3dcaece235\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://64144fb96e1c7fdba87305acadb98a198d26a3d46c097cb3a666e567f6f29735\",\"dweb:/ipfs/QmUnWVwN9FKB9uV5Pr8YfLpWZnYM2DENnRMaadZ492JS9u\"]},\"@uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolState.sol\":{\"keccak256\":\"0x852dc1f5df7dcf7f11e7bb3eed79f0cea72ad4b25f6a9d2c35aafb48925fd49f\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://ed63907c38ff36b0e22bc9ffc53e791ea74f0d4f0e7c257fdfb5aaf8825b1f0f\",\"dweb:/ipfs/QmSQrckghEjs6HVsA5GVgpNpZWvTXMY5eQLF7cN6deFeEg\"]},\"@uniswap/v3-periphery/contracts/interfaces/IERC721Permit.sol\":{\"keccak256\":\"0x9e3c2a4ee65ddf95b2dfcb0815784eea3a295707e6f8b83e4c4f0f8fe2e3a1d4\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://bfd939085b3618101b955f87c7fabf38338ba1aad480295acb8102ebc5d72471\",\"dweb:/ipfs/QmauQD8bGDHTztmTDfaKXjzM7Wacrq2XU7VcTbwn1WrDBL\"]},\"@uniswap/v3-periphery/contracts/interfaces/IPeripheryImmutableState.sol\":{\"keccak256\":\"0x7affcfeb5127c0925a71d6a65345e117c33537523aeca7bc98085ead8452519d\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://e16b291294210e71cb0f20cd0afe62ae2dc6878d627f5ccc19c4dc9cd80aec3f\",\"dweb:/ipfs/QmQGitSyBr26nour81BZmpmDMyJpvZRqHQZvnCD1Acb127\"]},\"@uniswap/v3-periphery/contracts/interfaces/IPeripheryPayments.sol\":{\"keccak256\":\"0xb547e10f1e69bed03621a62b73a503e260643066c6b4054867a4d1fef47eb274\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://f9a90f58f5fd5fb42f7811f4094113b532f307b14a73764c91f977590747f407\",\"dweb:/ipfs/QmSeNH2mfiDMKf3Q6V2sqtNxx1s72JNuA1VVxRM9HoMqYp\"]},\"@uniswap/v3-periphery/contracts/interfaces/IPoolInitializer.sol\":{\"keccak256\":\"0x9d7695e8d94c22cc5fcced602017aabb988de89981ea7bee29ea629d5328a862\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://61b50933026ee1017db2a6273af8cedc3238c95dca58880db0918dbdbb2f064f\",\"dweb:/ipfs/QmUebR26pqG25d18aBELKz8aFFKkmHa8PxntzXTA7o9Ldu\"]},\"contracts/interfaces/INonfungiblePositionManager.sol\":{\"keccak256\":\"0x7a127df9c56dbe2cd36494b119b533ff121f02fda5d6b480ea9796c694196747\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5271d1bba67d5481e68833b440c6b206f270ec8cf59a0032d1028feaa664213\",\"dweb:/ipfs/QmVEDdfCt41AcTgewmc4wdW9A9NogKZjQ6WcMCQUAbK3yG\"]},\"contracts/utils/NFTPositionInfo.sol\":{\"keccak256\":\"0x58e7a461b1f190ea9dd1480b1a9a031e50304c80f14e40908936c45f20981b48\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://c705d809320056979d767e7bb8036356f93b4e008b12746f6b57f01d914a3962\",\"dweb:/ipfs/QmUkVwEg1wPJRWuttC7eLiNqAPbLfiNQ3UsTQBgcoWXEfr\"]},\"contracts/utils/PoolAddress.sol\":{\"keccak256\":\"0x4d9d291f243513408eda08cd7adb3f396a87afeb81ad6bcacc343414ff3a2af9\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://2c462d2e8cd0b51acc9cb37bcd5c0047c444801144eabb5b3839025a77d03464\",\"dweb:/ipfs/QmWYHM9eedm1KqqBDdm7WvEnPuy3iUDPUwwTY5ZN4w8y1a\"]}},\"version\":1}"}},"contracts/utils/PoolAddress.sol":{"PoolAddress":{"abi":[],"evm":{"bytecode":{"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122030519e583aa72a760003839cac06fc1b914209455a4129fd7b4ec4cadddbdf5f64736f6c63430008040033","opcodes":"PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ADDRESS MLOAD SWAP15 PC GASPRICE 0xA7 0x2A PUSH23 0x3839CAC06FC1B914209455A4129FD7B4EC4CADDDBDF 0x5F PUSH5 0x736F6C6343 STOP ADDMOD DIV STOP CALLER ","sourceMap":"167:1652:36:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;167:1652:36;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122030519e583aa72a760003839cac06fc1b914209455a4129fd7b4ec4cadddbdf5f64736f6c63430008040033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ADDRESS MLOAD SWAP15 PC GASPRICE 0xA7 0x2A PUSH23 0x3839CAC06FC1B914209455A4129FD7B4EC4CADDDBDF 0x5F PUSH5 0x736F6C6343 STOP ADDMOD DIV STOP CALLER ","sourceMap":"167:1652:36:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"title\":\"Provides functions for deriving a pool address from the factory, tokens, and the fee\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/utils/PoolAddress.sol\":\"PoolAddress\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"contracts/utils/PoolAddress.sol\":{\"keccak256\":\"0x4d9d291f243513408eda08cd7adb3f396a87afeb81ad6bcacc343414ff3a2af9\",\"license\":\"GPL-2.0-or-later\",\"urls\":[\"bzz-raw://2c462d2e8cd0b51acc9cb37bcd5c0047c444801144eabb5b3839025a77d03464\",\"dweb:/ipfs/QmWYHM9eedm1KqqBDdm7WvEnPuy3iUDPUwwTY5ZN4w8y1a\"]}},\"version\":1}"}}}}}