Overview
POL Balance
0 POL
POL Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 882 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 61507871 | 7 days ago | IN | 0 POL | 0.02112328 | ||||
Withdraw | 61503938 | 7 days ago | IN | 0 POL | 0.0080202 | ||||
Withdraw | 61444249 | 9 days ago | IN | 0 POL | 0.00777981 | ||||
Withdraw | 61411238 | 9 days ago | IN | 0 POL | 0.02966347 | ||||
Withdraw | 61410992 | 9 days ago | IN | 0 POL | 0.03055817 | ||||
Withdraw | 61410945 | 9 days ago | IN | 0 POL | 0.03012055 | ||||
Withdraw | 61397179 | 10 days ago | IN | 0 POL | 0.01100926 | ||||
Withdraw | 61397163 | 10 days ago | IN | 0 POL | 0.01072251 | ||||
Withdraw | 61292070 | 13 days ago | IN | 0 POL | 0.00879094 | ||||
Withdraw | 61292024 | 13 days ago | IN | 0 POL | 0.0080202 | ||||
Mint | 61009056 | 20 days ago | IN | 0 POL | 0.01028928 | ||||
Mint | 60987141 | 20 days ago | IN | 0 POL | 0.01028928 | ||||
Mint | 60961553 | 21 days ago | IN | 0 POL | 0.01028889 | ||||
Mint | 60961520 | 21 days ago | IN | 0 POL | 0.01028928 | ||||
Mint | 60872089 | 23 days ago | IN | 0 POL | 0.01028928 | ||||
Mint | 60872070 | 23 days ago | IN | 0 POL | 0.01028889 | ||||
Mint | 60872048 | 23 days ago | IN | 0 POL | 0.01028928 | ||||
Mint | 60872030 | 23 days ago | IN | 0 POL | 0.01028928 | ||||
Mint | 60872012 | 23 days ago | IN | 0 POL | 0.01021383 | ||||
Withdraw | 60220041 | 39 days ago | IN | 0 POL | 0.02534984 | ||||
Withdraw | 60210394 | 40 days ago | IN | 0 POL | 0.0111179 | ||||
Withdraw | 60210364 | 40 days ago | IN | 0 POL | 0.01193991 | ||||
Withdraw | 60210326 | 40 days ago | IN | 0 POL | 0.0134826 | ||||
Withdraw | 60210274 | 40 days ago | IN | 0 POL | 0.01802296 | ||||
Withdraw | 60210233 | 40 days ago | IN | 0 POL | 0.01657076 |
Loading...
Loading
Contract Name:
Peronio
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 2000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; // OpenZeppelin imports import {AccessControl} from "@openzeppelin/contracts_latest/access/AccessControl.sol"; import {ReentrancyGuard} from "@openzeppelin/contracts_latest/security/ReentrancyGuard.sol"; import {ERC20} from "@openzeppelin/contracts_latest/token/ERC20/ERC20.sol"; import {IERC20} from "@openzeppelin/contracts_latest/token/ERC20/IERC20.sol"; import {ERC20Permit} from "@openzeppelin/contracts_latest/token/ERC20/extensions/draft-ERC20Permit.sol"; import {ERC20Burnable} from "@openzeppelin/contracts_latest/token/ERC20/extensions/ERC20Burnable.sol"; import {SafeERC20} from "@openzeppelin/contracts_latest/token/ERC20/utils/SafeERC20.sol"; import {ERC165} from "@openzeppelin/contracts/utils/introspection/ERC165.sol"; // QiDao import {IFarm} from "./qidao/IFarm.sol"; // UniSwap import {IERC20Uniswap} from "./uniswap/interfaces/IERC20Uniswap.sol"; import {IUniswapV2Pair} from "./uniswap/interfaces/IUniswapV2Pair.sol"; import {IUniswapV2Router02} from "./uniswap/interfaces/IUniswapV2Router02.sol"; // Interface & support import "./PeronioSupport.sol"; string constant NAME = "Peronio"; string constant SYMBOL = "P"; contract Peronio is IPeronio, ERC20, ERC20Burnable, ERC20Permit, ERC165, AccessControl, ReentrancyGuard { using SafeERC20 for IERC20; // Roles RoleId public constant override MARKUP_ROLE = RoleId.wrap(keccak256("MARKUP_ROLE")); RoleId public constant override REWARDS_ROLE = RoleId.wrap(keccak256("REWARDS_ROLE")); RoleId public constant override MIGRATOR_ROLE = RoleId.wrap(keccak256("MIGRATOR_ROLE")); // USDC Token Address address public immutable override usdcAddress; // MAI Token Address address public immutable override maiAddress; // LP USDC/MAI Address from QuickSwap address public immutable override lpAddress; // QI Token Address address public immutable override qiAddress; // QuickSwap Router Address address public immutable override quickSwapRouterAddress; // QiDao Farm Address address public immutable override qiDaoFarmAddress; // QiDao Pool ID uint256 public immutable override qiDaoPoolId; // Constant number of significant decimals uint8 private constant DECIMALS = 6; // One-hour constant uint256 private constant ONE_HOUR = 60 * 60; /* 60 minutes * 60 seconds */ // Rational constant one RatioWith6Decimals private constant ONE = RatioWith6Decimals.wrap(10**DECIMALS); // Fees RatioWith6Decimals public override markupFee = RatioWith6Decimals.wrap(50000); // 5.00% RatioWith6Decimals public override swapFee = RatioWith6Decimals.wrap(1500); // 0.15% // Initialization can only be run once bool public override initialized; /** * Allow execution by the default admin only * */ modifier onlyAdminRole() { _checkRole(DEFAULT_ADMIN_ROLE); _; } /** * Allow execution by the markup-setter only * */ modifier onlyMarkupRole() { _checkRole(RoleId.unwrap(MARKUP_ROLE)); _; } /** * Allow execution by the rewards-reaper only * */ modifier onlyRewardsRole() { _checkRole(RoleId.unwrap(REWARDS_ROLE)); _; } /** * Allow execution by the migrator only * */ modifier onlyMigratorRole() { _checkRole(RoleId.unwrap(MIGRATOR_ROLE)); _; } // -------------------------------------------------------------------------------------------------------------------------------------------------------- // --- Public Interface ----------------------------------------------------------------------------------------------------------------------------------- // -------------------------------------------------------------------------------------------------------------------------------------------------------- /** * Construct a new Peronio contract * * @param _usdcAddress Address used for the USDC tokens in vault * @param _maiAddress Address used for the MAI tokens in vault * @param _lpAddress LP Address for MAI/USDC * @param _qiAddress Address used for the QI tokens in vault * @param _quickSwapRouterAddress Address of the QuickSwap Router to talk to * @param _qiDaoFarmAddress Address of the QiDao Farm to use * @param _qiDaoPoolId Pool ID within the QiDao Farm */ constructor( address _usdcAddress, address _maiAddress, address _lpAddress, address _qiAddress, address _quickSwapRouterAddress, address _qiDaoFarmAddress, uint256 _qiDaoPoolId ) ERC20(NAME, SYMBOL) ERC20Permit(NAME) { // --- Gas Saving ------------------------------------------------------------------------- address sender = _msgSender(); // Stablecoin Addresses usdcAddress = _usdcAddress; maiAddress = _maiAddress; // LP USDC/MAI Address lpAddress = _lpAddress; // Router Address quickSwapRouterAddress = _quickSwapRouterAddress; // QiDao Data qiDaoFarmAddress = _qiDaoFarmAddress; qiDaoPoolId = _qiDaoPoolId; qiAddress = _qiAddress; // Grant roles _setupRole(DEFAULT_ADMIN_ROLE, sender); _setupRole(RoleId.unwrap(MARKUP_ROLE), sender); _setupRole(RoleId.unwrap(REWARDS_ROLE), sender); _setupRole(RoleId.unwrap(MIGRATOR_ROLE), sender); } /** * Implementation of the IERC165 interface * * @param interfaceId Interface ID to check against * @return Whether the provided interface ID is supported */ function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControl, ERC165) returns (bool) { return interfaceId == type(IPeronio).interfaceId || super.supportsInterface(interfaceId); } // --- Decimals ------------------------------------------------------------------------------------------------------------------------------------------- /** * Return the number of decimals the PE token will work with * * @return decimals_ This will always be 6 */ function decimals() public view virtual override(ERC20, IPeronio) returns (uint8 decimals_) { decimals_ = DECIMALS; } // --- Markup fee change ---------------------------------------------------------------------------------------------------------------------------------- /** * Set the markup fee to the given value (take into account that this will use `DECIMALS` decimals implicitly) * * @param newMarkupFee New markup fee value * @return prevMarkupFee Previous markup fee value * @custom:emit MarkupFeeUpdated */ function setMarkupFee(RatioWith6Decimals newMarkupFee) external override onlyMarkupRole returns (RatioWith6Decimals prevMarkupFee) { (prevMarkupFee, markupFee) = (markupFee, newMarkupFee); emit MarkupFeeUpdated(_msgSender(), newMarkupFee); } // --- Initialization ------------------------------------------------------------------------------------------------------------------------------------- /** * Initialize the PE token by providing collateral USDC tokens - initial conversion rate will be set at the given starting ratio * * @param usdcAmount Number of collateral USDC tokens * @param startingRatio Initial minting ratio in PE tokens per USDC tokens minted (including DECIMALS) * @custom:emit Initialized */ function initialize(UsdcQuantity usdcAmount, PePerUsdcQuantity startingRatio) external override onlyAdminRole { // Prevent double initialization require(!initialized, "Contract already initialized"); initialized = true; // --- Gas Saving ------------------------------------------------------------------------- IERC20 maiERC20 = IERC20(maiAddress); IERC20 usdcERC20 = IERC20(usdcAddress); IERC20 lpERC20 = IERC20(lpAddress); IERC20 qiERC20 = IERC20(qiAddress); address sender = _msgSender(); address _quickSwapRouterAddress = quickSwapRouterAddress; uint256 maxVal = type(uint256).max; // Transfer initial USDC amount from user to current contract usdcERC20.safeTransferFrom(sender, address(this), UsdcQuantity.unwrap(usdcAmount)); // Unlimited ERC20 approval for Router maiERC20.approve(_quickSwapRouterAddress, maxVal); usdcERC20.approve(_quickSwapRouterAddress, maxVal); lpERC20.approve(_quickSwapRouterAddress, maxVal); qiERC20.approve(_quickSwapRouterAddress, maxVal); // Commit the complete initial USDC amount _zapIn(usdcAmount); usdcAmount = _stakedValue(); // Mints exactly startingRatio for each collateral USDC token _mint(sender, PeQuantity.unwrap(mulDiv(usdcAmount, startingRatio, ONE))); emit Initialized(sender, usdcAmount, startingRatio); } // --- State views ---------------------------------------------------------------------------------------------------------------------------------------- /** * Return the USDC and MAI token reserves present in QuickSwap * * @return usdcReserves Number of USDC tokens in reserve * @return maiReserves Number of MAI tokens in reserve */ function getLpReserves() external view override returns (UsdcQuantity usdcReserves, MaiQuantity maiReserves) { (usdcReserves, maiReserves) = _getLpReserves(); } /** * Return the number of LP USDC/MAI tokens on stake at QiDao's Farm * * @return lpAmount Number of LP USDC/MAI token on stake */ function stakedBalance() external view override returns (LpQuantity lpAmount) { lpAmount = _stakedBalance(); } /** * Return the number of USDC and MAI tokens on stake at QiDao's Farm * * @return usdcAmount Number of USDC tokens on stake * @return maiAmount Number of MAI tokens on stake */ function stakedTokens() external view override returns (UsdcQuantity usdcAmount, MaiQuantity maiAmount) { (usdcAmount, maiAmount) = _stakedTokens(); } /** * Return the equivalent number of USDC tokens on stake at QiDao's Farm * * @return usdcAmount Total equivalent number of USDC token on stake */ function stakedValue() external view override returns (UsdcQuantity usdcAmount) { usdcAmount = _stakedValue(); } /** * Return the _collateralized_ price in USDC tokens per PE token * * @return price Collateralized price in USDC tokens per PE token */ function usdcPrice() external view override returns (PePerUsdcQuantity price) { price = mulDiv(ONE, _totalSupply(), _stakedValue()); } /** * Return the effective _minting_ price in USDC tokens per PE token * * @return price Minting price in USDC tokens per PE token */ function buyingPrice() external view override returns (UsdcPerPeQuantity price) { price = mulDiv(_collateralRatio(), add(ONE, markupFee), ONE); } /** * Return the ratio of total number of USDC tokens per PE token * * @return ratio Ratio of USDC tokens per PE token, with `_decimal` decimals */ function collateralRatio() external view override returns (UsdcPerPeQuantity ratio) { ratio = _collateralRatio(); } // --- State changers ------------------------------------------------------------------------------------------------------------------------------------- /** * Mint PE tokens using the provided USDC tokens as collateral * * @param to The address to transfer the minted PE tokens to * @param usdcAmount Number of USDC tokens to use as collateral * @param minReceive The minimum number of PE tokens to mint * @return peAmount The number of PE tokens actually minted * @custom:emit Minted */ function mint( address to, UsdcQuantity usdcAmount, PeQuantity minReceive ) external override nonReentrant returns (PeQuantity peAmount) { peAmount = _mintPe(to, usdcAmount, minReceive, markupFee); } /** * Mint PE tokens using the provided USDC tokens as collateral --- used by the migrators in order not to incur normal fees * * @param to The address to transfer the minted PE tokens to * @param usdcAmount Number of USDC tokens to use as collateral * @param minReceive The minimum number of PE tokens to mint * @return peAmount The number of PE tokens actually minted * @custom:emit Minted */ function mintForMigration( address to, UsdcQuantity usdcAmount, PeQuantity minReceive ) external override nonReentrant onlyMigratorRole returns (PeQuantity peAmount) { peAmount = _mintPe(to, usdcAmount, minReceive, RatioWith6Decimals.wrap(0)); } /** * Extract the given number of PE tokens as USDC tokens * * @param to Address to deposit extracted USDC tokens into * @param peAmount Number of PE tokens to withdraw * @return usdcTotal Number of USDC tokens extracted * @custom:emit Withdrawal */ function withdraw(address to, PeQuantity peAmount) external override nonReentrant returns (UsdcQuantity usdcTotal) { // --- Gas Saving ------------------------------------------------------------------------- address sender = _msgSender(); // Calculate equivalent number of LP USDC/MAI tokens for the given burnt PE tokens LpQuantity lpAmount = mulDiv(peAmount, _stakedBalance(), _totalSupply()); // Extract the given number of LP USDC/MAI tokens as USDC tokens usdcTotal = _zapOut(lpAmount); // Transfer USDC tokens the the given address IERC20(usdcAddress).safeTransfer(to, UsdcQuantity.unwrap(usdcTotal)); // Burn the given number of PE tokens _burn(sender, PeQuantity.unwrap(peAmount)); emit Withdrawal(sender, usdcTotal, peAmount); } /** * Extract the given number of PE tokens as LP USDC/MAI tokens * * @param to Address to deposit extracted LP USDC/MAI tokens into * @param peAmount Number of PE tokens to withdraw liquidity for * @return lpAmount Number of LP USDC/MAI tokens extracted * @custom:emit LiquidityWithdrawal */ function withdrawLiquidity(address to, PeQuantity peAmount) external override nonReentrant returns (LpQuantity lpAmount) { // --- Gas Saving ------------------------------------------------------------------------- address sender = _msgSender(); // Calculate equivalent number of LP USDC/MAI tokens for the given burnt PE tokens lpAmount = mulDiv(peAmount, _stakedBalance(), _totalSupply()); // Get LP USDC/MAI tokens out of QiDao's Farm _unstakeLP(lpAmount); // Transfer LP USDC/MAI tokens to the given address IERC20(lpAddress).safeTransfer(to, LpQuantity.unwrap(lpAmount)); // Burn the given number of PE tokens _burn(sender, PeQuantity.unwrap(peAmount)); emit LiquidityWithdrawal(sender, lpAmount, peAmount); } // --- Rewards -------------------------------------------------------------------------------------------------------------------------------------------- /** * Return the rewards accrued by staking LP USDC/MAI tokens in QiDao's Farm (in QI tokens) * * @return qiAmount Number of QI tokens accrued */ function getPendingRewardsAmount() external view override returns (QiQuantity qiAmount) { qiAmount = _getPendingRewardsAmount(); } /** * Claim QiDao's QI token rewards, and re-invest them in the QuickSwap liquidity pool and QiDao's Farm * * @return usdcAmount The number of USDC tokens being re-invested * @return lpAmount The number of LP USDC/MAI tokens being put on stake * @custom:emit CompoundRewards */ function compoundRewards() external override onlyRewardsRole returns (UsdcQuantity usdcAmount, LpQuantity lpAmount) { // Claim rewards from QiDao's Farm IFarm(qiDaoFarmAddress).deposit(qiDaoPoolId, 0); // Retrieve the number of QI tokens rewarded and swap them to USDC tokens QiQuantity amount = QiQuantity.wrap(IERC20(qiAddress).balanceOf(address(this))); _swapTokens(amount); // Commit all USDC tokens so converted to the QuickSwap liquidity pool usdcAmount = UsdcQuantity.wrap(IERC20(usdcAddress).balanceOf(address(this))); lpAmount = _zapIn(usdcAmount); emit CompoundRewards(amount, usdcAmount, lpAmount); } // --- Quotes --------------------------------------------------------------------------------------------------------------------------------------------- // // Quotes are created by inlining the calls to mint (for quoteIn) and withdraw (for quoteOut), and discarding state-changing statements // /** * Retrieve the expected number of PE tokens corresponding to the given number of USDC tokens for minting. * * @dev This method was obtained by _inlining_ the call to mint() across contracts, and cleaning up the result. * * @param usdc Number of USDC tokens to quote for * @return pe Number of PE tokens quoted for the given number of USDC tokens */ function quoteIn(UsdcQuantity usdc) external view override returns (PeQuantity pe) { // --- Gas Saving ------------------------------------------------------------------------- address _lpAddress = lpAddress; // retrieve LP state (simulations will modify these) (UsdcQuantity usdcReserves, MaiQuantity maiReserves) = _getLpReserves(); LpQuantity lpTotalSupply = LpQuantity.wrap(IERC20(_lpAddress).totalSupply()); // -- SPLIT ------------------------------------------------------------------------------- UsdcQuantity usdcAmount = _calculateSwapInAmount(usdcReserves, usdc); MaiQuantity maiAmount = _getAmountOut(usdcAmount, usdcReserves, maiReserves); // simulate LP state update usdcReserves = add(usdcReserves, usdcAmount); maiReserves = sub(maiReserves, maiAmount); // -- SWAP -------------------------------------------------------------------------------- // calculate actual values swapped { MaiQuantity amountMaiOptimal = mulDiv(sub(usdc, usdcAmount), maiReserves, usdcReserves); if (lte(amountMaiOptimal, maiAmount)) { (usdcAmount, maiAmount) = (sub(usdc, usdcAmount), amountMaiOptimal); } else { UsdcQuantity amountUsdcOptimal = mulDiv(maiAmount, usdcReserves, maiReserves); (usdcAmount, maiAmount) = (amountUsdcOptimal, maiAmount); } } // deal with LP minting when changing its K { UniSwapRootKQuantity rootK = sqrt(mul(usdcReserves, maiReserves)); UniSwapRootKQuantity rootKLast = sqrt(UniSwapKQuantity.wrap(IUniswapV2Pair(_lpAddress).kLast())); if (lt(rootKLast, rootK)) { lpTotalSupply = add(lpTotalSupply, mulDiv(lpTotalSupply, sub(rootK, rootKLast), add(mul(rootK, 5), rootKLast))); } } // calculate LP values actually provided LpQuantity zapInLps; { LpQuantity maiCandidate = mulDiv(maiAmount, lpTotalSupply, maiReserves); LpQuantity usdcCandidate = mulDiv(usdcAmount, lpTotalSupply, usdcReserves); zapInLps = min(maiCandidate, usdcCandidate); } // -- PERONIO ----------------------------------------------------------------------------- LpQuantity lpAmount = mulDiv(zapInLps, sub(ONE, _totalMintFee(markupFee)), ONE); pe = mulDiv(lpAmount, _totalSupply(), _stakedBalance()); } /** * Retrieve the expected number of USDC tokens corresponding to the given number of PE tokens for withdrawal. * * @dev This method was obtained by _inlining_ the call to withdraw() across contracts, and cleaning up the result. * * @param pe Number of PE tokens to quote for * @return usdc Number of USDC tokens quoted for the given number of PE tokens */ function quoteOut(PeQuantity pe) external view override returns (UsdcQuantity usdc) { // --- Gas Saving ------------------------------------------------------------------------- address _lpAddress = lpAddress; (UsdcQuantity usdcReserves, MaiQuantity maiReserves) = _getLpReserves(); LpQuantity lpTotalSupply = LpQuantity.wrap(IERC20(_lpAddress).totalSupply()); // deal with LP minting when changing its K { UniSwapRootKQuantity rootK = sqrt(mul(usdcReserves, maiReserves)); UniSwapRootKQuantity rootKLast = sqrt(UniSwapKQuantity.wrap(IUniswapV2Pair(_lpAddress).kLast())); if (lt(rootKLast, rootK)) { lpTotalSupply = add(lpTotalSupply, mulDiv(lpTotalSupply, sub(rootK, rootKLast), add(mul(rootK, 5), rootKLast))); } } // calculate LP values actually withdrawn LpQuantity lpAmount = add(LpQuantity.wrap(IERC20Uniswap(_lpAddress).balanceOf(_lpAddress)), mulDiv(pe, _stakedBalance(), _totalSupply())); UsdcQuantity usdcAmount = mulDiv(usdcReserves, lpAmount, lpTotalSupply); MaiQuantity maiAmount = mulDiv(maiReserves, lpAmount, lpTotalSupply); usdc = add(usdcAmount, _getAmountOut(maiAmount, sub(maiReserves, maiAmount), sub(usdcReserves, usdcAmount))); } // -------------------------------------------------------------------------------------------------------------------------------------------------------- // --- Private Interface ---------------------------------------------------------------------------------------------------------------------------------- // -------------------------------------------------------------------------------------------------------------------------------------------------------- /** * Return the number of PE tokens in existence * * @return peAmount Number of PE tokens in existence */ function _totalSupply() internal view returns (PeQuantity peAmount) { peAmount = PeQuantity.wrap(totalSupply()); } /** * Return the USDC and MAI token reserves present in QuickSwap * * @return usdcReserves Number of USDC tokens in reserve * @return maiReserves Number of MAI tokens in reserve */ function _getLpReserves() internal view returns (UsdcQuantity usdcReserves, MaiQuantity maiReserves) { (uint112 reserve0, uint112 reserve1, ) = IUniswapV2Pair(lpAddress).getReserves(); (usdcReserves, maiReserves) = usdcAddress < maiAddress ? (UsdcQuantity.wrap(reserve0), MaiQuantity.wrap(reserve1)) : (UsdcQuantity.wrap(reserve1), MaiQuantity.wrap(reserve0)); } /** * Return the number of LP USDC/MAI tokens on stake at QiDao's Farm * * @return lpAmount Number of LP USDC/MAI token on stake */ function _stakedBalance() internal view returns (LpQuantity lpAmount) { lpAmount = LpQuantity.wrap(IFarm(qiDaoFarmAddress).deposited(qiDaoPoolId, address(this))); } /** * Return the number of USDC and MAI tokens on stake at QiDao's Farm * * @return usdcAmount Number of USDC tokens on stake * @return maiAmount Number of MAI tokens on stake */ function _stakedTokens() internal view returns (UsdcQuantity usdcAmount, MaiQuantity maiAmount) { LpQuantity lpAmount = _stakedBalance(); LpQuantity lpTotalSupply = LpQuantity.wrap(IERC20(lpAddress).totalSupply()); (UsdcQuantity usdcReserves, MaiQuantity maiReserves) = _getLpReserves(); usdcAmount = mulDiv(lpAmount, usdcReserves, lpTotalSupply); maiAmount = mulDiv(lpAmount, maiReserves, lpTotalSupply); } /** * Return the equivalent number of USDC tokens on stake at QiDao's Farm * * This method will return the equivalent number of USDC tokens for the number of USDC and MAI tokens on stake. * * @return totalUSDC Total equivalent number of USDC token on stake */ function _stakedValue() internal view returns (UsdcQuantity totalUSDC) { (UsdcQuantity usdcReserves, MaiQuantity maiReserves) = _getLpReserves(); (UsdcQuantity usdcAmount, MaiQuantity maiAmount) = _stakedTokens(); // Simulate Swap totalUSDC = add(usdcAmount, _getAmountOut(maiAmount, maiReserves, usdcReserves)); } /** * Return the ratio of total number of USDC tokens per PE token * * @return ratio Ratio of USDC tokens per PE token, with `_decimal` decimals */ function _collateralRatio() internal view returns (UsdcPerPeQuantity ratio) { ratio = mulDiv(ONE, _stakedValue(), _totalSupply()); } /** * Return the total minting fee to apply * * @return totalFee The total fee to apply on minting */ function _totalMintFee(RatioWith6Decimals _markupFee) internal view returns (RatioWith6Decimals totalFee) { // Retrieve the deposit fee from QiDao's Farm (this is always expressed with 4 decimals, as "basic points") // Convert these "basic points" to `DECIMALS` precision (, , , , uint16 depositFeeBP) = IFarm(qiDaoFarmAddress).poolInfo(qiDaoPoolId); RatioWith6Decimals depositFee = ratio4to6(RatioWith4Decimals.wrap(depositFeeBP)); // Calculate total fee to apply // (ie. the swapFee and the depositFee are included in the total markup fee, thus, we don't double charge for both the markup fee itself // and the swap and deposit fees) totalFee = max(_markupFee, add(swapFee, depositFee)); } /** * Actually mint PE tokens using the provided USDC tokens as collateral, applying the given markup fee * * @param to The address to transfer the minted PE tokens to * @param usdcAmount Number of USDC tokens to use as collateral * @param minReceive The minimum number of PE tokens to mint * @param _markupFee The markup fee to apply * @return peAmount The number of PE tokens actually minted * @custom:emit Minted */ function _mintPe( address to, UsdcQuantity usdcAmount, PeQuantity minReceive, RatioWith6Decimals _markupFee ) internal returns (PeQuantity peAmount) { // --- Gas Saving ------------------------------------------------------------------------- address sender = _msgSender(); // Transfer USDC tokens as collateral to this contract IERC20(usdcAddress).safeTransferFrom(sender, address(this), UsdcQuantity.unwrap(usdcAmount)); // Remember the previously staked balance LpQuantity stakedAmount = _stakedBalance(); // Commit USDC tokens, and discount fees totalling the markup fee LpQuantity lpAmount = mulDiv(_zapIn(usdcAmount), sub(ONE, _totalMintFee(_markupFee)), ONE); // Calculate the number of PE tokens as the proportion of liquidity provided peAmount = mulDiv(lpAmount, _totalSupply(), stakedAmount); require(lte(minReceive, peAmount), "Minimum required not met"); // Actually mint the PE tokens _mint(to, PeQuantity.unwrap(peAmount)); emit Minted(sender, usdcAmount, peAmount); } /** * Commit the given number of USDC tokens * * This method will: * 1. split the given USDC amount into USDC/MAI amounts so as to provide balanced liquidity, * 2. add the given amounts of USDC and MAI tokens to the liquidity pool, and obtain LP USDC/MAI tokens in return, and * 3. stake the given LP USDC/MAI tokens in QiDao's Farm so as to accrue rewards therein. * * @param usdcAmount Number of USDC tokens to commit * @return lpAmount Number of LP USDC/MAI tokens committed */ function _zapIn(UsdcQuantity usdcAmount) internal returns (LpQuantity lpAmount) { MaiQuantity maiAmount; (usdcAmount, maiAmount) = _splitUSDC(usdcAmount); lpAmount = _addLiquidity(usdcAmount, maiAmount); _stakeLP(lpAmount); } /** * Extract the given number of LP USDC/MAI tokens * * This method will: * 1. unstake the given number of LP USDC/MAI tokens from QuiDao's Farm, * 2. remove the liquidity provided by the given number of LP USDC/MAI tokens from the liquidity pool, and * 3. convert the MAI tokens back into USDC tokens. * * @param lpAmount Number of LP USDC/MAI tokens to extract * @return usdcAmount Number of extracted USDC tokens */ function _zapOut(LpQuantity lpAmount) internal returns (UsdcQuantity usdcAmount) { MaiQuantity maiAmount; _unstakeLP(lpAmount); (usdcAmount, maiAmount) = _removeLiquidity(lpAmount); usdcAmount = _unsplitUSDC(usdcAmount, maiAmount); } /** * Given a USDC token amount, split a portion of it into MAI tokens so as to provide balanced liquidity * * @param amount Number of USDC tokens to split * @return usdcAmount Number of resulting USDC tokens * @return maiAmount Number of resulting MAI tokens */ function _splitUSDC(UsdcQuantity amount) internal returns (UsdcQuantity usdcAmount, MaiQuantity maiAmount) { (UsdcQuantity usdcReserves, ) = _getLpReserves(); UsdcQuantity amountToSwap = _calculateSwapInAmount(usdcReserves, amount); require(lt(UsdcQuantity.wrap(0), amountToSwap), "Nothing to swap"); maiAmount = _swapTokens(amountToSwap); usdcAmount = sub(amount, amountToSwap); } /** * Given a USDC token amount and a MAI token amount, swap MAIs into USDCs and consolidate * * @param amount Number of USDC tokens to consolidate with * @param maiAmount Number of MAI tokens to consolidate in * @return usdcAmount Consolidated USDC amount */ function _unsplitUSDC(UsdcQuantity amount, MaiQuantity maiAmount) internal returns (UsdcQuantity usdcAmount) { usdcAmount = add(amount, _swapTokens(maiAmount)); } /** * Add liquidity to the QuickSwap Liquidity Pool, as much as indicated by the given pair od USDC/MAI amounts * * @param usdcAmount Number of USDC tokens to add * @param maiAmount Number of MAI tokens to add * @return lpAmount Number of LP USDC/MAI tokens obtained */ function _addLiquidity(UsdcQuantity usdcAmount, MaiQuantity maiAmount) internal returns (LpQuantity lpAmount) { (, , uint256 _lpAmount) = IUniswapV2Router02(quickSwapRouterAddress).addLiquidity( usdcAddress, maiAddress, UsdcQuantity.unwrap(usdcAmount), MaiQuantity.unwrap(maiAmount), 1, 1, address(this), block.timestamp + ONE_HOUR ); lpAmount = LpQuantity.wrap(_lpAmount); } /** * Remove liquidity from the QuickSwap Liquidity Pool, as much as indicated by the given amount of LP tokens * * @param lpAmount Number of LP USDC/MAI tokens to withdraw * @return usdcAmount Number of USDC tokens withdrawn * @return maiAmount Number of MAI tokens withdrawn */ function _removeLiquidity(LpQuantity lpAmount) internal returns (UsdcQuantity usdcAmount, MaiQuantity maiAmount) { (uint256 _usdcAmount, uint256 _maiAmount) = IUniswapV2Router02(quickSwapRouterAddress).removeLiquidity( usdcAddress, maiAddress, LpQuantity.unwrap(lpAmount), 1, 1, address(this), block.timestamp + ONE_HOUR ); (usdcAmount, maiAmount) = (UsdcQuantity.wrap(_usdcAmount), MaiQuantity.wrap(_maiAmount)); } /** * Deposit the given number of LP tokens into QiDao's Farm * * @param lpAmount Number of LP USDC/MAI tokens to deposit into QiDao's Farm */ function _stakeLP(LpQuantity lpAmount) internal { // --- Gas Saving ------------------------------------------------------------------------- address _qiDaoFarmAddress = qiDaoFarmAddress; IERC20(lpAddress).approve(_qiDaoFarmAddress, LpQuantity.unwrap(lpAmount)); IFarm(_qiDaoFarmAddress).deposit(qiDaoPoolId, LpQuantity.unwrap(lpAmount)); } /** * Remove the given number of LP tokens from QiDao's Farm * * @param lpAmount Number of LP USDC/MAI tokens to remove from QiDao's Farm */ function _unstakeLP(LpQuantity lpAmount) internal { IFarm(qiDaoFarmAddress).withdraw(qiDaoPoolId, LpQuantity.unwrap(lpAmount)); } /** * Return the rewards accrued by staking LP USDC/MAI tokens in QiDao's Farm (in QI tokens) * * @return qiAmount Number of QI tokens accrued */ function _getPendingRewardsAmount() internal view returns (QiQuantity qiAmount) { // Get rewards on Farm qiAmount = QiQuantity.wrap(IFarm(qiDaoFarmAddress).pending(qiDaoPoolId, address(this))); } /** * Swap the given number of MAI tokens to USDC * * @param maiAmount Number of MAI tokens to swap * @return usdcAmount Number of USDC tokens obtained */ function _swapTokens(MaiQuantity maiAmount) internal returns (UsdcQuantity usdcAmount) { usdcAmount = UsdcQuantity.wrap(_swapTokens(maiAddress, usdcAddress, MaiQuantity.unwrap(maiAmount))); } /** * Swap the given number of USDC tokens to MAI * * @param usdcAmount Number of USDC tokens to swap * @return maiAmount Number of MAI tokens obtained */ function _swapTokens(UsdcQuantity usdcAmount) internal returns (MaiQuantity maiAmount) { maiAmount = MaiQuantity.wrap(_swapTokens(usdcAddress, maiAddress, UsdcQuantity.unwrap(usdcAmount))); } /** * Swap the given number of QI tokens to USDC * * @param qiAmount Number of QI tokens to swap * @return usdcAmount Number of USDC tokens obtained */ function _swapTokens(QiQuantity qiAmount) internal returns (UsdcQuantity usdcAmount) { usdcAmount = UsdcQuantity.wrap(_swapTokens(qiAddress, usdcAddress, QiQuantity.unwrap(qiAmount))); } /** * Swap the given amount of tokens from the given "from" address to the given "to" address via QuickSwap, and return the amount of "to" tokens swapped * * @param fromAddress Address to get swap tokens from * @param toAddress Address to get swap tokens to * @param amount Amount of tokens to swap (from) * @return swappedAmount Amount of tokens deposited in addressTo */ function _swapTokens( address fromAddress, address toAddress, uint256 amount ) internal returns (uint256 swappedAmount) { address[] memory path = new address[](2); (path[0], path[1]) = (fromAddress, toAddress); swappedAmount = IUniswapV2Router02(quickSwapRouterAddress).swapExactTokensForTokens(amount, 1, path, address(this), block.timestamp + ONE_HOUR)[1]; } // -------------------------------------------------------------------------------------------------------------------------------------------------------- // --- UniSwap Simulation --------------------------------------------------------------------------------------------------------------------------------- // -------------------------------------------------------------------------------------------------------------------------------------------------------- function _calculateSwapInAmount(UsdcQuantity reserveIn, UsdcQuantity userIn) internal pure returns (UsdcQuantity amount) { amount = sub(sqrt(mulDiv(add(mul(3988009, reserveIn), mul(3988000, userIn)), reserveIn, 3976036)), mulDiv(reserveIn, 1997, 1994)); } function _getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) internal pure returns (uint256 amountOut) { uint256 amountInWithFee = amountIn * 997; amountOut = Math.mulDiv(amountInWithFee, reserveOut, reserveIn * 1000 + amountInWithFee); } function _getAmountOut( MaiQuantity amountIn, MaiQuantity reserveIn, UsdcQuantity reserveOut ) internal pure returns (UsdcQuantity) { return UsdcQuantity.wrap(_getAmountOut(MaiQuantity.unwrap(amountIn), MaiQuantity.unwrap(reserveIn), UsdcQuantity.unwrap(reserveOut))); } function _getAmountOut( UsdcQuantity amountIn, UsdcQuantity reserveIn, MaiQuantity reserveOut ) internal pure returns (MaiQuantity amountOut) { return MaiQuantity.wrap(_getAmountOut(UsdcQuantity.unwrap(amountIn), UsdcQuantity.unwrap(reserveIn), MaiQuantity.unwrap(reserveOut))); } }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT import "./IPeronioSupport.sol"; // ------------------------------------------------------------------------------------------------------------------------------------------------------------ // --- Implementation-side user defined value types ----------------------------------------------------------------------------------------------------------- // ------------------------------------------------------------------------------------------------------------------------------------------------------------ type UniSwapKQuantity is uint256; type UniSwapRootKQuantity is uint256; type UsdcSqQuantity is uint256; type RatioWith4Decimals is uint256; // ------------------------------------------------------------------------------------------------------------------------------------------------------------ // --- Standard Numeric Types --------------------------------------------------------------------------------------------------------------------------------- // ------------------------------------------------------------------------------------------------------------------------------------------------------------ // // Standard Numeric Types (SNTs) can be operated with in the same manner as "normal" numeric types can. // This means that SNTs can: // - be added together, // - be subtracted from each other, // - be multiplied by a scalar value (only uint256 in this implementation) - both on the left and on the right, // - the minimum be calculated among them, // - the maximum be calculated among them, // - the "==", "!=", "<=", "<", ">", and ">=" relations established between them, and // The mulDiv() interactions will be taken care of later. // // --- UniSwap K ---------------------------------------------------------------------------------------------------------------------------------------------- function add(UniSwapKQuantity left, UniSwapKQuantity right) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(UniSwapKQuantity.unwrap(left) + UniSwapKQuantity.unwrap(right)); } function sub(UniSwapKQuantity left, UniSwapKQuantity right) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(UniSwapKQuantity.unwrap(left) - UniSwapKQuantity.unwrap(right)); } function mul(UniSwapKQuantity val, uint256 x) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(UniSwapKQuantity.unwrap(val) * x); } function mul(uint256 x, UniSwapKQuantity val) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(x * UniSwapKQuantity.unwrap(val)); } function min(UniSwapKQuantity left, UniSwapKQuantity right) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.min(UniSwapKQuantity.unwrap(left), UniSwapKQuantity.unwrap(right))); } function max(UniSwapKQuantity left, UniSwapKQuantity right) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.max(UniSwapKQuantity.unwrap(left), UniSwapKQuantity.unwrap(right))); } function eq(UniSwapKQuantity left, UniSwapKQuantity right) pure returns (bool) { return UniSwapKQuantity.unwrap(left) == UniSwapKQuantity.unwrap(right); } function neq(UniSwapKQuantity left, UniSwapKQuantity right) pure returns (bool) { return UniSwapKQuantity.unwrap(left) != UniSwapKQuantity.unwrap(right); } function lt(UniSwapKQuantity left, UniSwapKQuantity right) pure returns (bool) { return UniSwapKQuantity.unwrap(left) < UniSwapKQuantity.unwrap(right); } function gt(UniSwapKQuantity left, UniSwapKQuantity right) pure returns (bool) { return UniSwapKQuantity.unwrap(left) > UniSwapKQuantity.unwrap(right); } function lte(UniSwapKQuantity left, UniSwapKQuantity right) pure returns (bool) { return UniSwapKQuantity.unwrap(left) <= UniSwapKQuantity.unwrap(right); } function gte(UniSwapKQuantity left, UniSwapKQuantity right) pure returns (bool) { return UniSwapKQuantity.unwrap(left) >= UniSwapKQuantity.unwrap(right); } // --- UniSwap rootK ------------------------------------------------------------------------------------------------------------------------------------------ function add(UniSwapRootKQuantity left, UniSwapRootKQuantity right) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(UniSwapRootKQuantity.unwrap(left) + UniSwapRootKQuantity.unwrap(right)); } function sub(UniSwapRootKQuantity left, UniSwapRootKQuantity right) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(UniSwapRootKQuantity.unwrap(left) - UniSwapRootKQuantity.unwrap(right)); } function mul(UniSwapRootKQuantity val, uint256 x) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(UniSwapRootKQuantity.unwrap(val) * x); } function mul(uint256 x, UniSwapRootKQuantity val) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(x * UniSwapRootKQuantity.unwrap(val)); } function min(UniSwapRootKQuantity left, UniSwapRootKQuantity right) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.min(UniSwapRootKQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right))); } function max(UniSwapRootKQuantity left, UniSwapRootKQuantity right) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.max(UniSwapRootKQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right))); } function eq(UniSwapRootKQuantity left, UniSwapRootKQuantity right) pure returns (bool) { return UniSwapRootKQuantity.unwrap(left) == UniSwapRootKQuantity.unwrap(right); } function neq(UniSwapRootKQuantity left, UniSwapRootKQuantity right) pure returns (bool) { return UniSwapRootKQuantity.unwrap(left) != UniSwapRootKQuantity.unwrap(right); } function lt(UniSwapRootKQuantity left, UniSwapRootKQuantity right) pure returns (bool) { return UniSwapRootKQuantity.unwrap(left) < UniSwapRootKQuantity.unwrap(right); } function gt(UniSwapRootKQuantity left, UniSwapRootKQuantity right) pure returns (bool) { return UniSwapRootKQuantity.unwrap(left) > UniSwapRootKQuantity.unwrap(right); } function lte(UniSwapRootKQuantity left, UniSwapRootKQuantity right) pure returns (bool) { return UniSwapRootKQuantity.unwrap(left) <= UniSwapRootKQuantity.unwrap(right); } function gte(UniSwapRootKQuantity left, UniSwapRootKQuantity right) pure returns (bool) { return UniSwapRootKQuantity.unwrap(left) >= UniSwapRootKQuantity.unwrap(right); } // --- USDC-squared ------------------------------------------------------------------------------------------------------------------------------------------- function add(UsdcSqQuantity left, UsdcSqQuantity right) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(UsdcSqQuantity.unwrap(left) + UsdcSqQuantity.unwrap(right)); } function sub(UsdcSqQuantity left, UsdcSqQuantity right) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(UsdcSqQuantity.unwrap(left) - UsdcSqQuantity.unwrap(right)); } function mul(UsdcSqQuantity val, uint256 x) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(UsdcSqQuantity.unwrap(val) * x); } function mul(uint256 x, UsdcSqQuantity val) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(x * UsdcSqQuantity.unwrap(val)); } function min(UsdcSqQuantity left, UsdcSqQuantity right) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.min(UsdcSqQuantity.unwrap(left), UsdcSqQuantity.unwrap(right))); } function max(UsdcSqQuantity left, UsdcSqQuantity right) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.max(UsdcSqQuantity.unwrap(left), UsdcSqQuantity.unwrap(right))); } function eq(UsdcSqQuantity left, UsdcSqQuantity right) pure returns (bool) { return UsdcSqQuantity.unwrap(left) == UsdcSqQuantity.unwrap(right); } function neq(UsdcSqQuantity left, UsdcSqQuantity right) pure returns (bool) { return UsdcSqQuantity.unwrap(left) != UsdcSqQuantity.unwrap(right); } function lt(UsdcSqQuantity left, UsdcSqQuantity right) pure returns (bool) { return UsdcSqQuantity.unwrap(left) < UsdcSqQuantity.unwrap(right); } function gt(UsdcSqQuantity left, UsdcSqQuantity right) pure returns (bool) { return UsdcSqQuantity.unwrap(left) > UsdcSqQuantity.unwrap(right); } function lte(UsdcSqQuantity left, UsdcSqQuantity right) pure returns (bool) { return UsdcSqQuantity.unwrap(left) <= UsdcSqQuantity.unwrap(right); } function gte(UsdcSqQuantity left, UsdcSqQuantity right) pure returns (bool) { return UsdcSqQuantity.unwrap(left) >= UsdcSqQuantity.unwrap(right); } // ------------------------------------------------------------------------------------------------------------------------------------------------------------ // --- USDC-squared quantities -------------------------------------------------------------------------------------------------------------------------------- // ------------------------------------------------------------------------------------------------------------------------------------------------------------ function sqrt(UsdcSqQuantity x) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.sqrt(UsdcSqQuantity.unwrap(x))); } // ------------------------------------------------------------------------------------------------------------------------------------------------------------ // --- UniSwap K-values --------------------------------------------------------------------------------------------------------------------------------------- // ------------------------------------------------------------------------------------------------------------------------------------------------------------ function mul(UsdcQuantity left, MaiQuantity right) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(UsdcQuantity.unwrap(left) * MaiQuantity.unwrap(right)); } function sqrt(UniSwapKQuantity x) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.sqrt(UniSwapKQuantity.unwrap(x))); } // ------------------------------------------------------------------------------------------------------------------------------------------------------------ // --- Ratio conversion --------------------------------------------------------------------------------------------------------------------------------------- // ------------------------------------------------------------------------------------------------------------------------------------------------------------ function ratio4to6(RatioWith4Decimals x) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(RatioWith4Decimals.unwrap(x) * 10**2); } // ------------------------------------------------------------------------------------------------------------------------------------------------------------ // --- MulDiv Interactions ------------------------------------------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------------------------------------------------------------------ function mulDiv( LpQuantity left, RatioWith4Decimals right, LpQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(LpQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( LpQuantity left, RatioWith4Decimals right, RatioWith4Decimals div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( LpQuantity left, UniSwapKQuantity right, LpQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( LpQuantity left, UniSwapKQuantity right, UniSwapKQuantity div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( LpQuantity left, UniSwapRootKQuantity right, LpQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( LpQuantity left, UniSwapRootKQuantity right, UniSwapRootKQuantity div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( LpQuantity left, UsdcSqQuantity right, LpQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( LpQuantity left, UsdcSqQuantity right, UsdcSqQuantity div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, RatioWith4Decimals right, MaiQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(MaiQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, RatioWith4Decimals right, RatioWith4Decimals div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( MaiQuantity left, UniSwapKQuantity right, MaiQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, UniSwapKQuantity right, UniSwapKQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, UniSwapRootKQuantity right, MaiQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, UniSwapRootKQuantity right, UniSwapRootKQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, UsdcQuantity right, UniSwapKQuantity div ) pure returns (uint256) { return Math.mulDiv(MaiQuantity.unwrap(left), UsdcQuantity.unwrap(right), UniSwapKQuantity.unwrap(div)); } function mulDiv( MaiQuantity left, UsdcQuantity right, UniSwapRootKQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), UsdcQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, UsdcQuantity right, uint256 div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), UsdcQuantity.unwrap(right), div)); } function mulDiv( MaiQuantity left, UsdcSqQuantity right, MaiQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, UsdcSqQuantity right, UniSwapKQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, UsdcSqQuantity right, UsdcQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, UsdcSqQuantity right, UsdcSqQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, RatioWith4Decimals right, PePerUsdcQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, RatioWith4Decimals right, RatioWith4Decimals div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, UniSwapKQuantity right, PePerUsdcQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, UniSwapKQuantity right, UniSwapKQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, UniSwapRootKQuantity right, PePerUsdcQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, UniSwapRootKQuantity right, UniSwapRootKQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, UsdcSqQuantity right, PePerUsdcQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, UsdcSqQuantity right, UsdcSqQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( PeQuantity left, RatioWith4Decimals right, PeQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(PeQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( PeQuantity left, RatioWith4Decimals right, RatioWith4Decimals div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( PeQuantity left, UniSwapKQuantity right, PeQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( PeQuantity left, UniSwapKQuantity right, UniSwapKQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( PeQuantity left, UniSwapRootKQuantity right, PeQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( PeQuantity left, UniSwapRootKQuantity right, UniSwapRootKQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( PeQuantity left, UsdcSqQuantity right, PeQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( PeQuantity left, UsdcSqQuantity right, UsdcSqQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( QiQuantity left, RatioWith4Decimals right, QiQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(QiQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( QiQuantity left, RatioWith4Decimals right, RatioWith4Decimals div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( QiQuantity left, UniSwapKQuantity right, QiQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( QiQuantity left, UniSwapKQuantity right, UniSwapKQuantity div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( QiQuantity left, UniSwapRootKQuantity right, QiQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( QiQuantity left, UniSwapRootKQuantity right, UniSwapRootKQuantity div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( QiQuantity left, UsdcSqQuantity right, QiQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( QiQuantity left, UsdcSqQuantity right, UsdcSqQuantity div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( RatioWith4Decimals left, LpQuantity right, LpQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), LpQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( RatioWith4Decimals left, LpQuantity right, RatioWith4Decimals div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), LpQuantity.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( RatioWith4Decimals left, MaiQuantity right, MaiQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), MaiQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( RatioWith4Decimals left, MaiQuantity right, RatioWith4Decimals div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), MaiQuantity.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( RatioWith4Decimals left, PePerUsdcQuantity right, PePerUsdcQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), PePerUsdcQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( RatioWith4Decimals left, PePerUsdcQuantity right, RatioWith4Decimals div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), PePerUsdcQuantity.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( RatioWith4Decimals left, PeQuantity right, PeQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), PeQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( RatioWith4Decimals left, PeQuantity right, RatioWith4Decimals div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), PeQuantity.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( RatioWith4Decimals left, QiQuantity right, QiQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), QiQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( RatioWith4Decimals left, QiQuantity right, RatioWith4Decimals div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), QiQuantity.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( RatioWith4Decimals left, RatioWith4Decimals right, RatioWith4Decimals div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), RatioWith4Decimals.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( RatioWith4Decimals left, RatioWith6Decimals right, RatioWith4Decimals div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), RatioWith6Decimals.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( RatioWith4Decimals left, RatioWith6Decimals right, RatioWith6Decimals div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), RatioWith6Decimals.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( RatioWith4Decimals left, UniSwapKQuantity right, RatioWith4Decimals div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), UniSwapKQuantity.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( RatioWith4Decimals left, UniSwapKQuantity right, UniSwapKQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), UniSwapKQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( RatioWith4Decimals left, UniSwapRootKQuantity right, RatioWith4Decimals div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), UniSwapRootKQuantity.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( RatioWith4Decimals left, UniSwapRootKQuantity right, UniSwapRootKQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), UniSwapRootKQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( RatioWith4Decimals left, UsdcPerPeQuantity right, RatioWith4Decimals div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), UsdcPerPeQuantity.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( RatioWith4Decimals left, UsdcPerPeQuantity right, UsdcPerPeQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), UsdcPerPeQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( RatioWith4Decimals left, UsdcQuantity right, RatioWith4Decimals div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), UsdcQuantity.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( RatioWith4Decimals left, UsdcQuantity right, UsdcQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), UsdcQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( RatioWith4Decimals left, UsdcSqQuantity right, RatioWith4Decimals div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), UsdcSqQuantity.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( RatioWith4Decimals left, UsdcSqQuantity right, UsdcSqQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), UsdcSqQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( RatioWith4Decimals left, uint256 right, RatioWith4Decimals div ) pure returns (uint256) { return Math.mulDiv(RatioWith4Decimals.unwrap(left), right, RatioWith4Decimals.unwrap(div)); } function mulDiv( RatioWith4Decimals left, uint256 right, uint256 div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(RatioWith4Decimals.unwrap(left), right, div)); } function mulDiv( RatioWith6Decimals left, RatioWith4Decimals right, RatioWith4Decimals div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), RatioWith4Decimals.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( RatioWith6Decimals left, RatioWith4Decimals right, RatioWith6Decimals div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), RatioWith4Decimals.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( RatioWith6Decimals left, UniSwapKQuantity right, RatioWith6Decimals div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), UniSwapKQuantity.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( RatioWith6Decimals left, UniSwapKQuantity right, UniSwapKQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), UniSwapKQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( RatioWith6Decimals left, UniSwapRootKQuantity right, RatioWith6Decimals div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), UniSwapRootKQuantity.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( RatioWith6Decimals left, UniSwapRootKQuantity right, UniSwapRootKQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), UniSwapRootKQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( RatioWith6Decimals left, UsdcSqQuantity right, RatioWith6Decimals div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), UsdcSqQuantity.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( RatioWith6Decimals left, UsdcSqQuantity right, UsdcSqQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), UsdcSqQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, LpQuantity right, LpQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), LpQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, LpQuantity right, UniSwapKQuantity div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), LpQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, MaiQuantity right, MaiQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), MaiQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, MaiQuantity right, UniSwapKQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), MaiQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, PePerUsdcQuantity right, PePerUsdcQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, PePerUsdcQuantity right, UniSwapKQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, PeQuantity right, PeQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), PeQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, PeQuantity right, UniSwapKQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), PeQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, QiQuantity right, QiQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), QiQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, QiQuantity right, UniSwapKQuantity div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), QiQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, RatioWith4Decimals right, RatioWith4Decimals div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( UniSwapKQuantity left, RatioWith4Decimals right, UniSwapKQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, RatioWith6Decimals right, RatioWith6Decimals div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( UniSwapKQuantity left, RatioWith6Decimals right, UniSwapKQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, UniSwapKQuantity right, UniSwapKQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, UniSwapRootKQuantity right, UniSwapKQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, UniSwapRootKQuantity right, UniSwapRootKQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, UsdcPerPeQuantity right, UniSwapKQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, UsdcPerPeQuantity right, UsdcPerPeQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, UsdcQuantity right, MaiQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), UsdcQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, UsdcQuantity right, UniSwapKQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), UsdcQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, UsdcQuantity right, UsdcQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), UsdcQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, UsdcQuantity right, UsdcSqQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), UsdcQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, UsdcSqQuantity right, UniSwapKQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, UsdcSqQuantity right, UsdcSqQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, uint256 right, MaiQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), right, MaiQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, uint256 right, UniSwapKQuantity div ) pure returns (uint256) { return Math.mulDiv(UniSwapKQuantity.unwrap(left), right, UniSwapKQuantity.unwrap(div)); } function mulDiv( UniSwapKQuantity left, uint256 right, UniSwapRootKQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), right, UniSwapRootKQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, uint256 right, UsdcQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), right, UsdcQuantity.unwrap(div))); } function mulDiv( UniSwapKQuantity left, uint256 right, uint256 div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UniSwapKQuantity.unwrap(left), right, div)); } function mulDiv( UniSwapRootKQuantity left, LpQuantity right, LpQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), LpQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, LpQuantity right, UniSwapRootKQuantity div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), LpQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, MaiQuantity right, MaiQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), MaiQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, MaiQuantity right, UniSwapRootKQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), MaiQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, PePerUsdcQuantity right, PePerUsdcQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, PePerUsdcQuantity right, UniSwapRootKQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, PeQuantity right, PeQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), PeQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, PeQuantity right, UniSwapRootKQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), PeQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, QiQuantity right, QiQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), QiQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, QiQuantity right, UniSwapRootKQuantity div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), QiQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, RatioWith4Decimals right, RatioWith4Decimals div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, RatioWith4Decimals right, UniSwapRootKQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, RatioWith6Decimals right, RatioWith6Decimals div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, RatioWith6Decimals right, UniSwapRootKQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, UniSwapKQuantity right, UniSwapKQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, UniSwapKQuantity right, UniSwapRootKQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, UniSwapRootKQuantity right, MaiQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, UniSwapRootKQuantity right, UniSwapKQuantity div ) pure returns (uint256) { return Math.mulDiv(UniSwapRootKQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), UniSwapKQuantity.unwrap(div)); } function mulDiv( UniSwapRootKQuantity left, UniSwapRootKQuantity right, UniSwapRootKQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, UniSwapRootKQuantity right, UsdcQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, UniSwapRootKQuantity right, uint256 div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), div)); } function mulDiv( UniSwapRootKQuantity left, UsdcPerPeQuantity right, UniSwapRootKQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, UsdcPerPeQuantity right, UsdcPerPeQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, UsdcQuantity right, UniSwapRootKQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), UsdcQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, UsdcQuantity right, UsdcQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), UsdcQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, UsdcSqQuantity right, UniSwapRootKQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, UsdcSqQuantity right, UsdcSqQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( UniSwapRootKQuantity left, uint256 right, UniSwapRootKQuantity div ) pure returns (uint256) { return Math.mulDiv(UniSwapRootKQuantity.unwrap(left), right, UniSwapRootKQuantity.unwrap(div)); } function mulDiv( UniSwapRootKQuantity left, uint256 right, uint256 div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(UniSwapRootKQuantity.unwrap(left), right, div)); } function mulDiv( UsdcPerPeQuantity left, RatioWith4Decimals right, RatioWith4Decimals div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, RatioWith4Decimals right, UsdcPerPeQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, UniSwapKQuantity right, UniSwapKQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, UniSwapKQuantity right, UsdcPerPeQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, UniSwapRootKQuantity right, UniSwapRootKQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, UniSwapRootKQuantity right, UsdcPerPeQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, UsdcSqQuantity right, UsdcPerPeQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, UsdcSqQuantity right, UsdcSqQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, MaiQuantity right, UniSwapKQuantity div ) pure returns (uint256) { return Math.mulDiv(UsdcQuantity.unwrap(left), MaiQuantity.unwrap(right), UniSwapKQuantity.unwrap(div)); } function mulDiv( UsdcQuantity left, MaiQuantity right, UniSwapRootKQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), MaiQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, MaiQuantity right, uint256 div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), MaiQuantity.unwrap(right), div)); } function mulDiv( UsdcQuantity left, RatioWith4Decimals right, RatioWith4Decimals div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( UsdcQuantity left, RatioWith4Decimals right, UsdcQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, UniSwapKQuantity right, MaiQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, UniSwapKQuantity right, UniSwapKQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, UniSwapKQuantity right, UsdcQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, UniSwapKQuantity right, UsdcSqQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, UniSwapRootKQuantity right, UniSwapRootKQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, UniSwapRootKQuantity right, UsdcQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, UsdcQuantity right, UsdcSqQuantity div ) pure returns (uint256) { return Math.mulDiv(UsdcQuantity.unwrap(left), UsdcQuantity.unwrap(right), UsdcSqQuantity.unwrap(div)); } function mulDiv( UsdcQuantity left, UsdcQuantity right, uint256 div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), UsdcQuantity.unwrap(right), div)); } function mulDiv( UsdcQuantity left, UsdcSqQuantity right, UsdcQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, UsdcSqQuantity right, UsdcSqQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, LpQuantity right, LpQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), LpQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, LpQuantity right, UsdcSqQuantity div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), LpQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, MaiQuantity right, MaiQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), MaiQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, MaiQuantity right, UniSwapKQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), MaiQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, MaiQuantity right, UsdcQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), MaiQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, MaiQuantity right, UsdcSqQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), MaiQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, PePerUsdcQuantity right, PePerUsdcQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, PePerUsdcQuantity right, UsdcSqQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, PeQuantity right, PeQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), PeQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, PeQuantity right, UsdcSqQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), PeQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, QiQuantity right, QiQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), QiQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, QiQuantity right, UsdcSqQuantity div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), QiQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, RatioWith4Decimals right, RatioWith4Decimals div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), RatioWith4Decimals.unwrap(div))); } function mulDiv( UsdcSqQuantity left, RatioWith4Decimals right, UsdcSqQuantity div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), RatioWith4Decimals.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, RatioWith6Decimals right, RatioWith6Decimals div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( UsdcSqQuantity left, RatioWith6Decimals right, UsdcSqQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, UniSwapKQuantity right, UniSwapKQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), UniSwapKQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, UniSwapKQuantity right, UsdcSqQuantity div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), UniSwapKQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, UniSwapRootKQuantity right, UniSwapRootKQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, UniSwapRootKQuantity right, UsdcSqQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), UniSwapRootKQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, UsdcPerPeQuantity right, UsdcPerPeQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, UsdcPerPeQuantity right, UsdcSqQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, UsdcQuantity right, UsdcQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), UsdcQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, UsdcQuantity right, UsdcSqQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), UsdcQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, UsdcSqQuantity right, UsdcSqQuantity div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), UsdcSqQuantity.unwrap(right), UsdcSqQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, uint256 right, UsdcQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), right, UsdcQuantity.unwrap(div))); } function mulDiv( UsdcSqQuantity left, uint256 right, UsdcSqQuantity div ) pure returns (uint256) { return Math.mulDiv(UsdcSqQuantity.unwrap(left), right, UsdcSqQuantity.unwrap(div)); } function mulDiv( UsdcSqQuantity left, uint256 right, uint256 div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(UsdcSqQuantity.unwrap(left), right, div)); } function mulDiv( uint256 left, RatioWith4Decimals right, RatioWith4Decimals div ) pure returns (uint256) { return Math.mulDiv(left, RatioWith4Decimals.unwrap(right), RatioWith4Decimals.unwrap(div)); } function mulDiv( uint256 left, RatioWith4Decimals right, uint256 div ) pure returns (RatioWith4Decimals) { return RatioWith4Decimals.wrap(Math.mulDiv(left, RatioWith4Decimals.unwrap(right), div)); } function mulDiv( uint256 left, UniSwapKQuantity right, MaiQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(left, UniSwapKQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( uint256 left, UniSwapKQuantity right, UniSwapKQuantity div ) pure returns (uint256) { return Math.mulDiv(left, UniSwapKQuantity.unwrap(right), UniSwapKQuantity.unwrap(div)); } function mulDiv( uint256 left, UniSwapKQuantity right, UniSwapRootKQuantity div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(left, UniSwapKQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div))); } function mulDiv( uint256 left, UniSwapKQuantity right, UsdcQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(left, UniSwapKQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( uint256 left, UniSwapKQuantity right, uint256 div ) pure returns (UniSwapKQuantity) { return UniSwapKQuantity.wrap(Math.mulDiv(left, UniSwapKQuantity.unwrap(right), div)); } function mulDiv( uint256 left, UniSwapRootKQuantity right, UniSwapRootKQuantity div ) pure returns (uint256) { return Math.mulDiv(left, UniSwapRootKQuantity.unwrap(right), UniSwapRootKQuantity.unwrap(div)); } function mulDiv( uint256 left, UniSwapRootKQuantity right, uint256 div ) pure returns (UniSwapRootKQuantity) { return UniSwapRootKQuantity.wrap(Math.mulDiv(left, UniSwapRootKQuantity.unwrap(right), div)); } function mulDiv( uint256 left, UsdcSqQuantity right, UsdcQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(left, UsdcSqQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( uint256 left, UsdcSqQuantity right, UsdcSqQuantity div ) pure returns (uint256) { return Math.mulDiv(left, UsdcSqQuantity.unwrap(right), UsdcSqQuantity.unwrap(div)); } function mulDiv( uint256 left, UsdcSqQuantity right, uint256 div ) pure returns (UsdcSqQuantity) { return UsdcSqQuantity.wrap(Math.mulDiv(left, UsdcSqQuantity.unwrap(right), div)); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; interface IFarm { function add( uint256 _allocPoint, address _lpToken, bool _withUpdate, uint16 _depositFeeBP ) external; function deposit(uint256 _pid, uint256 _amount) external; function deposited(uint256 _pid, address _user) external view returns (uint256); function emergencyWithdraw(uint256 _pid) external; function endBlock() external view returns (uint256); function erc20() external view returns (address); function feeAddress() external view returns (address); function fund(uint256 _amount) external; function massUpdatePools() external; function owner() external view returns (address); function paidOut() external view returns (uint256); function pending(uint256 _pid, address _user) external view returns (uint256); function poolInfo(uint256) external view returns ( address lpToken, uint256 allocPoint, uint256 lastRewardBlock, uint256 accERC20PerShare, uint16 depositFeeBP ); function poolLength() external view returns (uint256); function renounceOwnership() external; function rewardPerBlock() external view returns (uint256); function set( uint256 _pid, uint256 _allocPoint, bool _withUpdate ) external; function setFeeAddress(address _feeAddress) external; function startBlock() external view returns (uint256); function totalAllocPoint() external view returns (uint256); function totalPending() external view returns (uint256); function transferOwnership(address newOwner) external; function updatePool(uint256 _pid) external; function userInfo(uint256, address) external view returns (uint256 amount, uint256 rewardDebt); function withdraw(uint256 _pid, uint256 _amount) external; }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.17; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint256 value); event Transfer(address indexed from, address indexed to, uint256 value); function NAME() external pure returns (string memory); function SYMBOL() external pure returns (string memory); function DECIMALS() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn(address indexed sender, uint256 amount0, uint256 amount1, address indexed to); event Swap(address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.17; interface IERC20Uniswap { event Approval(address indexed owner, address indexed spender, uint256 value); event Transfer(address indexed from, address indexed to, uint256 value); function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.17; import "./IUniswapV2Router01.sol"; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev 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. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev 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 revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `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. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev 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. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/extensions/draft-ERC20Permit.sol) pragma solidity ^0.8.0; import "./draft-IERC20Permit.sol"; import "../ERC20.sol"; import "../../../utils/cryptography/draft-EIP712.sol"; import "../../../utils/cryptography/ECDSA.sol"; import "../../../utils/Counters.sol"; /** * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * _Available since v3.4._ */ abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 { using Counters for Counters.Counter; mapping(address => Counters.Counter) private _nonces; // solhint-disable-next-line var-name-mixedcase bytes32 private constant _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /** * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`. * However, to ensure consistency with the upgradeable transpiler, we will continue * to reserve a slot. * @custom:oz-renamed-from _PERMIT_TYPEHASH */ // solhint-disable-next-line var-name-mixedcase bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT; /** * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`. * * It's a good idea to use the same `name` that is defined as the ERC20 token name. */ constructor(string memory name) EIP712(name, "1") {} /** * @dev See {IERC20Permit-permit}. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual override { require(block.timestamp <= deadline, "ERC20Permit: expired deadline"); bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline)); bytes32 hash = _hashTypedDataV4(structHash); address signer = ECDSA.recover(hash, v, r, s); require(signer == owner, "ERC20Permit: invalid signature"); _approve(owner, spender, value); } /** * @dev See {IERC20Permit-nonces}. */ function nonces(address owner) public view virtual override returns (uint256) { return _nonces[owner].current(); } /** * @dev See {IERC20Permit-DOMAIN_SEPARATOR}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view override returns (bytes32) { return _domainSeparatorV4(); } /** * @dev "Consume a nonce": return the current value and increment. * * _Available since v4.1._ */ function _useNonce(address owner) internal virtual returns (uint256 current) { Counters.Counter storage nonce = _nonces[owner]; current = nonce.current(); nonce.increment(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT import "./IPeronio.sol"; import {Math} from "@openzeppelin/contracts_latest/utils/math/Math.sol"; // ------------------------------------------------------------------------------------------------------------------------------------------------------------ // --- Standard Numeric Types --------------------------------------------------------------------------------------------------------------------------------- // ------------------------------------------------------------------------------------------------------------------------------------------------------------ // // Standard Numeric Types (SNTs) can be operated with in the same manner as "normal" numeric types can. // This means that SNTs can: // - be added together, // - be subtracted from each other, // - be multiplied by a scalar value (only uint256 in this implementation) - both on the left and on the right, // - the minimum be calculated among them, // - the maximum be calculated among them, // - the "==", "!=", "<=", "<", ">", and ">=" relations established between them, and // The mulDiv() interactions will be taken care of later. // // --- USDC --------------------------------------------------------------------------------------------------------------------------------------------------- function add(UsdcQuantity left, UsdcQuantity right) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(UsdcQuantity.unwrap(left) + UsdcQuantity.unwrap(right)); } function sub(UsdcQuantity left, UsdcQuantity right) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(UsdcQuantity.unwrap(left) - UsdcQuantity.unwrap(right)); } function mul(UsdcQuantity val, uint256 x) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(UsdcQuantity.unwrap(val) * x); } function mul(uint256 x, UsdcQuantity val) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(x * UsdcQuantity.unwrap(val)); } function min(UsdcQuantity left, UsdcQuantity right) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.min(UsdcQuantity.unwrap(left), UsdcQuantity.unwrap(right))); } function max(UsdcQuantity left, UsdcQuantity right) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.max(UsdcQuantity.unwrap(left), UsdcQuantity.unwrap(right))); } function eq(UsdcQuantity left, UsdcQuantity right) pure returns (bool) { return UsdcQuantity.unwrap(left) == UsdcQuantity.unwrap(right); } function neq(UsdcQuantity left, UsdcQuantity right) pure returns (bool) { return UsdcQuantity.unwrap(left) != UsdcQuantity.unwrap(right); } function lt(UsdcQuantity left, UsdcQuantity right) pure returns (bool) { return UsdcQuantity.unwrap(left) < UsdcQuantity.unwrap(right); } function gt(UsdcQuantity left, UsdcQuantity right) pure returns (bool) { return UsdcQuantity.unwrap(left) > UsdcQuantity.unwrap(right); } function lte(UsdcQuantity left, UsdcQuantity right) pure returns (bool) { return UsdcQuantity.unwrap(left) <= UsdcQuantity.unwrap(right); } function gte(UsdcQuantity left, UsdcQuantity right) pure returns (bool) { return UsdcQuantity.unwrap(left) >= UsdcQuantity.unwrap(right); } // --- MAI ---------------------------------------------------------------------------------------------------------------------------------------------------- function add(MaiQuantity left, MaiQuantity right) pure returns (MaiQuantity) { return MaiQuantity.wrap(MaiQuantity.unwrap(left) + MaiQuantity.unwrap(right)); } function sub(MaiQuantity left, MaiQuantity right) pure returns (MaiQuantity) { return MaiQuantity.wrap(MaiQuantity.unwrap(left) - MaiQuantity.unwrap(right)); } function mul(MaiQuantity val, uint256 x) pure returns (MaiQuantity) { return MaiQuantity.wrap(MaiQuantity.unwrap(val) * x); } function mul(uint256 x, MaiQuantity val) pure returns (MaiQuantity) { return MaiQuantity.wrap(x * MaiQuantity.unwrap(val)); } function min(MaiQuantity left, MaiQuantity right) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.min(MaiQuantity.unwrap(left), MaiQuantity.unwrap(right))); } function max(MaiQuantity left, MaiQuantity right) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.max(MaiQuantity.unwrap(left), MaiQuantity.unwrap(right))); } function eq(MaiQuantity left, MaiQuantity right) pure returns (bool) { return MaiQuantity.unwrap(left) == MaiQuantity.unwrap(right); } function neq(MaiQuantity left, MaiQuantity right) pure returns (bool) { return MaiQuantity.unwrap(left) != MaiQuantity.unwrap(right); } function lt(MaiQuantity left, MaiQuantity right) pure returns (bool) { return MaiQuantity.unwrap(left) < MaiQuantity.unwrap(right); } function gt(MaiQuantity left, MaiQuantity right) pure returns (bool) { return MaiQuantity.unwrap(left) > MaiQuantity.unwrap(right); } function lte(MaiQuantity left, MaiQuantity right) pure returns (bool) { return MaiQuantity.unwrap(left) <= MaiQuantity.unwrap(right); } function gte(MaiQuantity left, MaiQuantity right) pure returns (bool) { return MaiQuantity.unwrap(left) >= MaiQuantity.unwrap(right); } // --- LP USDC/MAI -------------------------------------------------------------------------------------------------------------------------------------------- function add(LpQuantity left, LpQuantity right) pure returns (LpQuantity) { return LpQuantity.wrap(LpQuantity.unwrap(left) + LpQuantity.unwrap(right)); } function sub(LpQuantity left, LpQuantity right) pure returns (LpQuantity) { return LpQuantity.wrap(LpQuantity.unwrap(left) - LpQuantity.unwrap(right)); } function mul(LpQuantity val, uint256 x) pure returns (LpQuantity) { return LpQuantity.wrap(LpQuantity.unwrap(val) * x); } function mul(uint256 x, LpQuantity val) pure returns (LpQuantity) { return LpQuantity.wrap(x * LpQuantity.unwrap(val)); } function min(LpQuantity left, LpQuantity right) pure returns (LpQuantity) { return LpQuantity.wrap(Math.min(LpQuantity.unwrap(left), LpQuantity.unwrap(right))); } function max(LpQuantity left, LpQuantity right) pure returns (LpQuantity) { return LpQuantity.wrap(Math.max(LpQuantity.unwrap(left), LpQuantity.unwrap(right))); } function eq(LpQuantity left, LpQuantity right) pure returns (bool) { return LpQuantity.unwrap(left) == LpQuantity.unwrap(right); } function neq(LpQuantity left, LpQuantity right) pure returns (bool) { return LpQuantity.unwrap(left) != LpQuantity.unwrap(right); } function lt(LpQuantity left, LpQuantity right) pure returns (bool) { return LpQuantity.unwrap(left) < LpQuantity.unwrap(right); } function gt(LpQuantity left, LpQuantity right) pure returns (bool) { return LpQuantity.unwrap(left) > LpQuantity.unwrap(right); } function lte(LpQuantity left, LpQuantity right) pure returns (bool) { return LpQuantity.unwrap(left) <= LpQuantity.unwrap(right); } function gte(LpQuantity left, LpQuantity right) pure returns (bool) { return LpQuantity.unwrap(left) >= LpQuantity.unwrap(right); } // --- PE ----------------------------------------------------------------------------------------------------------------------------------------------------- function add(PeQuantity left, PeQuantity right) pure returns (PeQuantity) { return PeQuantity.wrap(PeQuantity.unwrap(left) + PeQuantity.unwrap(right)); } function sub(PeQuantity left, PeQuantity right) pure returns (PeQuantity) { return PeQuantity.wrap(PeQuantity.unwrap(left) - PeQuantity.unwrap(right)); } function mul(PeQuantity val, uint256 x) pure returns (PeQuantity) { return PeQuantity.wrap(PeQuantity.unwrap(val) * x); } function mul(uint256 x, PeQuantity val) pure returns (PeQuantity) { return PeQuantity.wrap(x * PeQuantity.unwrap(val)); } function min(PeQuantity left, PeQuantity right) pure returns (PeQuantity) { return PeQuantity.wrap(Math.min(PeQuantity.unwrap(left), PeQuantity.unwrap(right))); } function max(PeQuantity left, PeQuantity right) pure returns (PeQuantity) { return PeQuantity.wrap(Math.max(PeQuantity.unwrap(left), PeQuantity.unwrap(right))); } function eq(PeQuantity left, PeQuantity right) pure returns (bool) { return PeQuantity.unwrap(left) == PeQuantity.unwrap(right); } function neq(PeQuantity left, PeQuantity right) pure returns (bool) { return PeQuantity.unwrap(left) != PeQuantity.unwrap(right); } function lt(PeQuantity left, PeQuantity right) pure returns (bool) { return PeQuantity.unwrap(left) < PeQuantity.unwrap(right); } function gt(PeQuantity left, PeQuantity right) pure returns (bool) { return PeQuantity.unwrap(left) > PeQuantity.unwrap(right); } function lte(PeQuantity left, PeQuantity right) pure returns (bool) { return PeQuantity.unwrap(left) <= PeQuantity.unwrap(right); } function gte(PeQuantity left, PeQuantity right) pure returns (bool) { return PeQuantity.unwrap(left) >= PeQuantity.unwrap(right); } // --- QI ----------------------------------------------------------------------------------------------------------------------------------------------------- function add(QiQuantity left, QiQuantity right) pure returns (QiQuantity) { return QiQuantity.wrap(QiQuantity.unwrap(left) + QiQuantity.unwrap(right)); } function sub(QiQuantity left, QiQuantity right) pure returns (QiQuantity) { return QiQuantity.wrap(QiQuantity.unwrap(left) - QiQuantity.unwrap(right)); } function mul(QiQuantity val, uint256 x) pure returns (QiQuantity) { return QiQuantity.wrap(QiQuantity.unwrap(val) * x); } function mul(uint256 x, QiQuantity val) pure returns (QiQuantity) { return QiQuantity.wrap(x * QiQuantity.unwrap(val)); } function min(QiQuantity left, QiQuantity right) pure returns (QiQuantity) { return QiQuantity.wrap(Math.min(QiQuantity.unwrap(left), QiQuantity.unwrap(right))); } function max(QiQuantity left, QiQuantity right) pure returns (QiQuantity) { return QiQuantity.wrap(Math.max(QiQuantity.unwrap(left), QiQuantity.unwrap(right))); } function eq(QiQuantity left, QiQuantity right) pure returns (bool) { return QiQuantity.unwrap(left) == QiQuantity.unwrap(right); } function neq(QiQuantity left, QiQuantity right) pure returns (bool) { return QiQuantity.unwrap(left) != QiQuantity.unwrap(right); } function lt(QiQuantity left, QiQuantity right) pure returns (bool) { return QiQuantity.unwrap(left) < QiQuantity.unwrap(right); } function gt(QiQuantity left, QiQuantity right) pure returns (bool) { return QiQuantity.unwrap(left) > QiQuantity.unwrap(right); } function lte(QiQuantity left, QiQuantity right) pure returns (bool) { return QiQuantity.unwrap(left) <= QiQuantity.unwrap(right); } function gte(QiQuantity left, QiQuantity right) pure returns (bool) { return QiQuantity.unwrap(left) >= QiQuantity.unwrap(right); } // --- PE/USDC ------------------------------------------------------------------------------------------------------------------------------------------------ function add(PePerUsdcQuantity left, PePerUsdcQuantity right) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(PePerUsdcQuantity.unwrap(left) + PePerUsdcQuantity.unwrap(right)); } function sub(PePerUsdcQuantity left, PePerUsdcQuantity right) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(PePerUsdcQuantity.unwrap(left) - PePerUsdcQuantity.unwrap(right)); } function mul(PePerUsdcQuantity val, uint256 x) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(PePerUsdcQuantity.unwrap(val) * x); } function mul(uint256 x, PePerUsdcQuantity val) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(x * PePerUsdcQuantity.unwrap(val)); } function min(PePerUsdcQuantity left, PePerUsdcQuantity right) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.min(PePerUsdcQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right))); } function max(PePerUsdcQuantity left, PePerUsdcQuantity right) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.max(PePerUsdcQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right))); } function eq(PePerUsdcQuantity left, PePerUsdcQuantity right) pure returns (bool) { return PePerUsdcQuantity.unwrap(left) == PePerUsdcQuantity.unwrap(right); } function neq(PePerUsdcQuantity left, PePerUsdcQuantity right) pure returns (bool) { return PePerUsdcQuantity.unwrap(left) != PePerUsdcQuantity.unwrap(right); } function lt(PePerUsdcQuantity left, PePerUsdcQuantity right) pure returns (bool) { return PePerUsdcQuantity.unwrap(left) < PePerUsdcQuantity.unwrap(right); } function gt(PePerUsdcQuantity left, PePerUsdcQuantity right) pure returns (bool) { return PePerUsdcQuantity.unwrap(left) > PePerUsdcQuantity.unwrap(right); } function lte(PePerUsdcQuantity left, PePerUsdcQuantity right) pure returns (bool) { return PePerUsdcQuantity.unwrap(left) <= PePerUsdcQuantity.unwrap(right); } function gte(PePerUsdcQuantity left, PePerUsdcQuantity right) pure returns (bool) { return PePerUsdcQuantity.unwrap(left) >= PePerUsdcQuantity.unwrap(right); } // --- USDC/PE ------------------------------------------------------------------------------------------------------------------------------------------------ function add(UsdcPerPeQuantity left, UsdcPerPeQuantity right) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(UsdcPerPeQuantity.unwrap(left) + UsdcPerPeQuantity.unwrap(right)); } function sub(UsdcPerPeQuantity left, UsdcPerPeQuantity right) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(UsdcPerPeQuantity.unwrap(left) - UsdcPerPeQuantity.unwrap(right)); } function mul(UsdcPerPeQuantity val, uint256 x) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(UsdcPerPeQuantity.unwrap(val) * x); } function mul(uint256 x, UsdcPerPeQuantity val) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(x * UsdcPerPeQuantity.unwrap(val)); } function min(UsdcPerPeQuantity left, UsdcPerPeQuantity right) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.min(UsdcPerPeQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right))); } function max(UsdcPerPeQuantity left, UsdcPerPeQuantity right) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.max(UsdcPerPeQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right))); } function eq(UsdcPerPeQuantity left, UsdcPerPeQuantity right) pure returns (bool) { return UsdcPerPeQuantity.unwrap(left) == UsdcPerPeQuantity.unwrap(right); } function neq(UsdcPerPeQuantity left, UsdcPerPeQuantity right) pure returns (bool) { return UsdcPerPeQuantity.unwrap(left) != UsdcPerPeQuantity.unwrap(right); } function lt(UsdcPerPeQuantity left, UsdcPerPeQuantity right) pure returns (bool) { return UsdcPerPeQuantity.unwrap(left) < UsdcPerPeQuantity.unwrap(right); } function gt(UsdcPerPeQuantity left, UsdcPerPeQuantity right) pure returns (bool) { return UsdcPerPeQuantity.unwrap(left) > UsdcPerPeQuantity.unwrap(right); } function lte(UsdcPerPeQuantity left, UsdcPerPeQuantity right) pure returns (bool) { return UsdcPerPeQuantity.unwrap(left) <= UsdcPerPeQuantity.unwrap(right); } function gte(UsdcPerPeQuantity left, UsdcPerPeQuantity right) pure returns (bool) { return UsdcPerPeQuantity.unwrap(left) >= UsdcPerPeQuantity.unwrap(right); } // --- 6-decimals ratio --------------------------------------------------------------------------------------------------------------------------------------- function add(RatioWith6Decimals left, RatioWith6Decimals right) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(RatioWith6Decimals.unwrap(left) + RatioWith6Decimals.unwrap(right)); } function sub(RatioWith6Decimals left, RatioWith6Decimals right) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(RatioWith6Decimals.unwrap(left) - RatioWith6Decimals.unwrap(right)); } function mul(RatioWith6Decimals val, uint256 x) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(RatioWith6Decimals.unwrap(val) * x); } function mul(uint256 x, RatioWith6Decimals val) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(x * RatioWith6Decimals.unwrap(val)); } function min(RatioWith6Decimals left, RatioWith6Decimals right) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.min(RatioWith6Decimals.unwrap(left), RatioWith6Decimals.unwrap(right))); } function max(RatioWith6Decimals left, RatioWith6Decimals right) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.max(RatioWith6Decimals.unwrap(left), RatioWith6Decimals.unwrap(right))); } function eq(RatioWith6Decimals left, RatioWith6Decimals right) pure returns (bool) { return RatioWith6Decimals.unwrap(left) == RatioWith6Decimals.unwrap(right); } function neq(RatioWith6Decimals left, RatioWith6Decimals right) pure returns (bool) { return RatioWith6Decimals.unwrap(left) != RatioWith6Decimals.unwrap(right); } function lt(RatioWith6Decimals left, RatioWith6Decimals right) pure returns (bool) { return RatioWith6Decimals.unwrap(left) < RatioWith6Decimals.unwrap(right); } function gt(RatioWith6Decimals left, RatioWith6Decimals right) pure returns (bool) { return RatioWith6Decimals.unwrap(left) > RatioWith6Decimals.unwrap(right); } function lte(RatioWith6Decimals left, RatioWith6Decimals right) pure returns (bool) { return RatioWith6Decimals.unwrap(left) <= RatioWith6Decimals.unwrap(right); } function gte(RatioWith6Decimals left, RatioWith6Decimals right) pure returns (bool) { return RatioWith6Decimals.unwrap(left) >= RatioWith6Decimals.unwrap(right); } // ------------------------------------------------------------------------------------------------------------------------------------------------------------ // --- MulDiv Interactions ------------------------------------------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------------------------------------------------------------------ function mulDiv( LpQuantity left, LpQuantity right, LpQuantity div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), LpQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( LpQuantity left, MaiQuantity right, LpQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), MaiQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( LpQuantity left, MaiQuantity right, MaiQuantity div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), MaiQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( LpQuantity left, PePerUsdcQuantity right, LpQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( LpQuantity left, PePerUsdcQuantity right, PePerUsdcQuantity div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( LpQuantity left, PeQuantity right, LpQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), PeQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( LpQuantity left, PeQuantity right, PeQuantity div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), PeQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( LpQuantity left, QiQuantity right, LpQuantity div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), QiQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( LpQuantity left, QiQuantity right, QiQuantity div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), QiQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( LpQuantity left, RatioWith6Decimals right, LpQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(LpQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( LpQuantity left, RatioWith6Decimals right, RatioWith6Decimals div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( LpQuantity left, UsdcPerPeQuantity right, LpQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( LpQuantity left, UsdcPerPeQuantity right, UsdcPerPeQuantity div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( LpQuantity left, UsdcQuantity right, LpQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), UsdcQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( LpQuantity left, UsdcQuantity right, UsdcQuantity div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), UsdcQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( LpQuantity left, uint256 right, LpQuantity div ) pure returns (uint256) { return Math.mulDiv(LpQuantity.unwrap(left), right, LpQuantity.unwrap(div)); } function mulDiv( LpQuantity left, uint256 right, uint256 div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(LpQuantity.unwrap(left), right, div)); } function mulDiv( MaiQuantity left, LpQuantity right, LpQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), LpQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, LpQuantity right, MaiQuantity div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), LpQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, MaiQuantity right, MaiQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), MaiQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, PePerUsdcQuantity right, MaiQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, PePerUsdcQuantity right, PePerUsdcQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, PeQuantity right, MaiQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), PeQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, PeQuantity right, PeQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), PeQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, QiQuantity right, MaiQuantity div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), QiQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, QiQuantity right, QiQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), QiQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, RatioWith6Decimals right, MaiQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(MaiQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, RatioWith6Decimals right, RatioWith6Decimals div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( MaiQuantity left, UsdcPerPeQuantity right, MaiQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, UsdcPerPeQuantity right, UsdcPerPeQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, UsdcQuantity right, MaiQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), UsdcQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, UsdcQuantity right, UsdcQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), UsdcQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( MaiQuantity left, uint256 right, MaiQuantity div ) pure returns (uint256) { return Math.mulDiv(MaiQuantity.unwrap(left), right, MaiQuantity.unwrap(div)); } function mulDiv( MaiQuantity left, uint256 right, uint256 div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(MaiQuantity.unwrap(left), right, div)); } function mulDiv( PePerUsdcQuantity left, LpQuantity right, LpQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), LpQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, LpQuantity right, PePerUsdcQuantity div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), LpQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, MaiQuantity right, MaiQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), MaiQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, MaiQuantity right, PePerUsdcQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), MaiQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, PePerUsdcQuantity right, PePerUsdcQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, PeQuantity right, PePerUsdcQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), PeQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, PeQuantity right, PeQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), PeQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, QiQuantity right, PePerUsdcQuantity div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), QiQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, QiQuantity right, QiQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), QiQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, RatioWith6Decimals right, PePerUsdcQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, RatioWith6Decimals right, RatioWith6Decimals div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, UsdcPerPeQuantity right, PePerUsdcQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, UsdcPerPeQuantity right, RatioWith6Decimals div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, UsdcPerPeQuantity right, UsdcPerPeQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, UsdcQuantity right, PePerUsdcQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), UsdcQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, UsdcQuantity right, PeQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), UsdcQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, UsdcQuantity right, RatioWith6Decimals div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), UsdcQuantity.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, UsdcQuantity right, UsdcQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), UsdcQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( PePerUsdcQuantity left, uint256 right, PePerUsdcQuantity div ) pure returns (uint256) { return Math.mulDiv(PePerUsdcQuantity.unwrap(left), right, PePerUsdcQuantity.unwrap(div)); } function mulDiv( PePerUsdcQuantity left, uint256 right, uint256 div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(PePerUsdcQuantity.unwrap(left), right, div)); } function mulDiv( PeQuantity left, LpQuantity right, LpQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), LpQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( PeQuantity left, LpQuantity right, PeQuantity div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), LpQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( PeQuantity left, MaiQuantity right, MaiQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), MaiQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( PeQuantity left, MaiQuantity right, PeQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), MaiQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( PeQuantity left, PePerUsdcQuantity right, PePerUsdcQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( PeQuantity left, PePerUsdcQuantity right, PeQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( PeQuantity left, PeQuantity right, PeQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), PeQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( PeQuantity left, QiQuantity right, PeQuantity div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), QiQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( PeQuantity left, QiQuantity right, QiQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), QiQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( PeQuantity left, RatioWith6Decimals right, PePerUsdcQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( PeQuantity left, RatioWith6Decimals right, PeQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(PeQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( PeQuantity left, RatioWith6Decimals right, RatioWith6Decimals div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( PeQuantity left, RatioWith6Decimals right, UsdcQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( PeQuantity left, UsdcPerPeQuantity right, PeQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( PeQuantity left, UsdcPerPeQuantity right, RatioWith6Decimals div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( PeQuantity left, UsdcPerPeQuantity right, UsdcPerPeQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( PeQuantity left, UsdcPerPeQuantity right, UsdcQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(PeQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( PeQuantity left, UsdcQuantity right, PeQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), UsdcQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( PeQuantity left, UsdcQuantity right, UsdcQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), UsdcQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( PeQuantity left, uint256 right, PeQuantity div ) pure returns (uint256) { return Math.mulDiv(PeQuantity.unwrap(left), right, PeQuantity.unwrap(div)); } function mulDiv( PeQuantity left, uint256 right, uint256 div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(PeQuantity.unwrap(left), right, div)); } function mulDiv( QiQuantity left, LpQuantity right, LpQuantity div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), LpQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( QiQuantity left, LpQuantity right, QiQuantity div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), LpQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( QiQuantity left, MaiQuantity right, MaiQuantity div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), MaiQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( QiQuantity left, MaiQuantity right, QiQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), MaiQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( QiQuantity left, PePerUsdcQuantity right, PePerUsdcQuantity div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( QiQuantity left, PePerUsdcQuantity right, QiQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( QiQuantity left, PeQuantity right, PeQuantity div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), PeQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( QiQuantity left, PeQuantity right, QiQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), PeQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( QiQuantity left, QiQuantity right, QiQuantity div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), QiQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( QiQuantity left, RatioWith6Decimals right, QiQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(QiQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( QiQuantity left, RatioWith6Decimals right, RatioWith6Decimals div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( QiQuantity left, UsdcPerPeQuantity right, QiQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( QiQuantity left, UsdcPerPeQuantity right, UsdcPerPeQuantity div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( QiQuantity left, UsdcQuantity right, QiQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), UsdcQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( QiQuantity left, UsdcQuantity right, UsdcQuantity div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), UsdcQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( QiQuantity left, uint256 right, QiQuantity div ) pure returns (uint256) { return Math.mulDiv(QiQuantity.unwrap(left), right, QiQuantity.unwrap(div)); } function mulDiv( QiQuantity left, uint256 right, uint256 div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(QiQuantity.unwrap(left), right, div)); } function mulDiv( RatioWith6Decimals left, LpQuantity right, LpQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), LpQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( RatioWith6Decimals left, LpQuantity right, RatioWith6Decimals div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), LpQuantity.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( RatioWith6Decimals left, MaiQuantity right, MaiQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), MaiQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( RatioWith6Decimals left, MaiQuantity right, RatioWith6Decimals div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), MaiQuantity.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( RatioWith6Decimals left, PePerUsdcQuantity right, PePerUsdcQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), PePerUsdcQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( RatioWith6Decimals left, PePerUsdcQuantity right, RatioWith6Decimals div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), PePerUsdcQuantity.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( RatioWith6Decimals left, PeQuantity right, PePerUsdcQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), PeQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( RatioWith6Decimals left, PeQuantity right, PeQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), PeQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( RatioWith6Decimals left, PeQuantity right, RatioWith6Decimals div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), PeQuantity.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( RatioWith6Decimals left, PeQuantity right, UsdcQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), PeQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( RatioWith6Decimals left, QiQuantity right, QiQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), QiQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( RatioWith6Decimals left, QiQuantity right, RatioWith6Decimals div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), QiQuantity.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( RatioWith6Decimals left, RatioWith6Decimals right, PePerUsdcQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), RatioWith6Decimals.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( RatioWith6Decimals left, RatioWith6Decimals right, RatioWith6Decimals div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), RatioWith6Decimals.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( RatioWith6Decimals left, RatioWith6Decimals right, UsdcPerPeQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), RatioWith6Decimals.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( RatioWith6Decimals left, UsdcPerPeQuantity right, RatioWith6Decimals div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), UsdcPerPeQuantity.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( RatioWith6Decimals left, UsdcPerPeQuantity right, UsdcPerPeQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), UsdcPerPeQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( RatioWith6Decimals left, UsdcQuantity right, PeQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), UsdcQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( RatioWith6Decimals left, UsdcQuantity right, RatioWith6Decimals div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), UsdcQuantity.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( RatioWith6Decimals left, UsdcQuantity right, UsdcPerPeQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), UsdcQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( RatioWith6Decimals left, UsdcQuantity right, UsdcQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), UsdcQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( RatioWith6Decimals left, uint256 right, RatioWith6Decimals div ) pure returns (uint256) { return Math.mulDiv(RatioWith6Decimals.unwrap(left), right, RatioWith6Decimals.unwrap(div)); } function mulDiv( RatioWith6Decimals left, uint256 right, uint256 div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(RatioWith6Decimals.unwrap(left), right, div)); } function mulDiv( UsdcPerPeQuantity left, LpQuantity right, LpQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), LpQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, LpQuantity right, UsdcPerPeQuantity div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), LpQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, MaiQuantity right, MaiQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), MaiQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, MaiQuantity right, UsdcPerPeQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), MaiQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, PePerUsdcQuantity right, PePerUsdcQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, PePerUsdcQuantity right, RatioWith6Decimals div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, PePerUsdcQuantity right, UsdcPerPeQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, PeQuantity right, PeQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), PeQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, PeQuantity right, RatioWith6Decimals div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), PeQuantity.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, PeQuantity right, UsdcPerPeQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), PeQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, PeQuantity right, UsdcQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), PeQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, QiQuantity right, QiQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), QiQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, QiQuantity right, UsdcPerPeQuantity div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), QiQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, RatioWith6Decimals right, RatioWith6Decimals div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, RatioWith6Decimals right, UsdcPerPeQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, UsdcPerPeQuantity right, UsdcPerPeQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, UsdcQuantity right, UsdcPerPeQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), UsdcQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, UsdcQuantity right, UsdcQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), UsdcQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( UsdcPerPeQuantity left, uint256 right, UsdcPerPeQuantity div ) pure returns (uint256) { return Math.mulDiv(UsdcPerPeQuantity.unwrap(left), right, UsdcPerPeQuantity.unwrap(div)); } function mulDiv( UsdcPerPeQuantity left, uint256 right, uint256 div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(UsdcPerPeQuantity.unwrap(left), right, div)); } function mulDiv( UsdcQuantity left, LpQuantity right, LpQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), LpQuantity.unwrap(right), LpQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, LpQuantity right, UsdcQuantity div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), LpQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, MaiQuantity right, MaiQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), MaiQuantity.unwrap(right), MaiQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, MaiQuantity right, UsdcQuantity div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), MaiQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, PePerUsdcQuantity right, PePerUsdcQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, PePerUsdcQuantity right, PeQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, PePerUsdcQuantity right, RatioWith6Decimals div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( UsdcQuantity left, PePerUsdcQuantity right, UsdcQuantity div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), PePerUsdcQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, PeQuantity right, PeQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), PeQuantity.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, PeQuantity right, UsdcQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), PeQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, QiQuantity right, QiQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), QiQuantity.unwrap(right), QiQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, QiQuantity right, UsdcQuantity div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), QiQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, RatioWith6Decimals right, PeQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), PeQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, RatioWith6Decimals right, RatioWith6Decimals div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), RatioWith6Decimals.unwrap(div))); } function mulDiv( UsdcQuantity left, RatioWith6Decimals right, UsdcPerPeQuantity div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, RatioWith6Decimals right, UsdcQuantity div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), RatioWith6Decimals.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, UsdcPerPeQuantity right, UsdcPerPeQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, UsdcPerPeQuantity right, UsdcQuantity div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), UsdcPerPeQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, UsdcQuantity right, UsdcQuantity div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), UsdcQuantity.unwrap(right), UsdcQuantity.unwrap(div))); } function mulDiv( UsdcQuantity left, uint256 right, UsdcQuantity div ) pure returns (uint256) { return Math.mulDiv(UsdcQuantity.unwrap(left), right, UsdcQuantity.unwrap(div)); } function mulDiv( UsdcQuantity left, uint256 right, uint256 div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(UsdcQuantity.unwrap(left), right, div)); } function mulDiv( uint256 left, LpQuantity right, LpQuantity div ) pure returns (uint256) { return Math.mulDiv(left, LpQuantity.unwrap(right), LpQuantity.unwrap(div)); } function mulDiv( uint256 left, LpQuantity right, uint256 div ) pure returns (LpQuantity) { return LpQuantity.wrap(Math.mulDiv(left, LpQuantity.unwrap(right), div)); } function mulDiv( uint256 left, MaiQuantity right, MaiQuantity div ) pure returns (uint256) { return Math.mulDiv(left, MaiQuantity.unwrap(right), MaiQuantity.unwrap(div)); } function mulDiv( uint256 left, MaiQuantity right, uint256 div ) pure returns (MaiQuantity) { return MaiQuantity.wrap(Math.mulDiv(left, MaiQuantity.unwrap(right), div)); } function mulDiv( uint256 left, PePerUsdcQuantity right, PePerUsdcQuantity div ) pure returns (uint256) { return Math.mulDiv(left, PePerUsdcQuantity.unwrap(right), PePerUsdcQuantity.unwrap(div)); } function mulDiv( uint256 left, PePerUsdcQuantity right, uint256 div ) pure returns (PePerUsdcQuantity) { return PePerUsdcQuantity.wrap(Math.mulDiv(left, PePerUsdcQuantity.unwrap(right), div)); } function mulDiv( uint256 left, PeQuantity right, PeQuantity div ) pure returns (uint256) { return Math.mulDiv(left, PeQuantity.unwrap(right), PeQuantity.unwrap(div)); } function mulDiv( uint256 left, PeQuantity right, uint256 div ) pure returns (PeQuantity) { return PeQuantity.wrap(Math.mulDiv(left, PeQuantity.unwrap(right), div)); } function mulDiv( uint256 left, QiQuantity right, QiQuantity div ) pure returns (uint256) { return Math.mulDiv(left, QiQuantity.unwrap(right), QiQuantity.unwrap(div)); } function mulDiv( uint256 left, QiQuantity right, uint256 div ) pure returns (QiQuantity) { return QiQuantity.wrap(Math.mulDiv(left, QiQuantity.unwrap(right), div)); } function mulDiv( uint256 left, RatioWith6Decimals right, RatioWith6Decimals div ) pure returns (uint256) { return Math.mulDiv(left, RatioWith6Decimals.unwrap(right), RatioWith6Decimals.unwrap(div)); } function mulDiv( uint256 left, RatioWith6Decimals right, uint256 div ) pure returns (RatioWith6Decimals) { return RatioWith6Decimals.wrap(Math.mulDiv(left, RatioWith6Decimals.unwrap(right), div)); } function mulDiv( uint256 left, UsdcPerPeQuantity right, UsdcPerPeQuantity div ) pure returns (uint256) { return Math.mulDiv(left, UsdcPerPeQuantity.unwrap(right), UsdcPerPeQuantity.unwrap(div)); } function mulDiv( uint256 left, UsdcPerPeQuantity right, uint256 div ) pure returns (UsdcPerPeQuantity) { return UsdcPerPeQuantity.wrap(Math.mulDiv(left, UsdcPerPeQuantity.unwrap(right), div)); } function mulDiv( uint256 left, UsdcQuantity right, UsdcQuantity div ) pure returns (uint256) { return Math.mulDiv(left, UsdcQuantity.unwrap(right), UsdcQuantity.unwrap(div)); } function mulDiv( uint256 left, UsdcQuantity right, uint256 div ) pure returns (UsdcQuantity) { return UsdcQuantity.wrap(Math.mulDiv(left, UsdcQuantity.unwrap(right), div)); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /** * Type representing an USDC token quantity * */ type UsdcQuantity is uint256; /** * Type representing a MAI token quantity * */ type MaiQuantity is uint256; /** * Type representing an LP USDC/MAI token quantity * */ type LpQuantity is uint256; /** * Type representing a PE token quantity * */ type PeQuantity is uint256; /** * Type representing a QI token quantity * */ type QiQuantity is uint256; /** * Type representing a ratio of PE/USD tokens (always represented using `DECIMALS` decimals) * */ type PePerUsdcQuantity is uint256; /** * Type representing a ratio of USD/PE tokens (always represented using `DECIMALS` decimals) * */ type UsdcPerPeQuantity is uint256; /** * Type representing an adimensional ratio, expressed with 6 decimals * */ type RatioWith6Decimals is uint256; /** * Type representing a role ID * */ type RoleId is bytes32; interface IPeronio { // --- Events --------------------------------------------------------------------------------------------------------------------------------------------- /** * Emitted upon initialization of the Peronio contract * * @param owner The address initializing the contract * @param collateral The number of USDC tokens used as collateral * @param startingRatio The number of PE tokens per USDC token the vault is initialized with */ event Initialized(address owner, UsdcQuantity collateral, PePerUsdcQuantity startingRatio); /** * Emitted upon minting PE tokens * * @param to The address where minted PE tokens get transferred to * @param collateralAmount The number of USDC tokens used as collateral in this minting * @param tokenAmount Amount of PE tokens minted */ event Minted(address indexed to, UsdcQuantity collateralAmount, PeQuantity tokenAmount); /** * Emitted upon collateral withdrawal * * @param to Address where the USDC token withdrawal is directed * @param collateralAmount The number of USDC tokens withdrawn * @param tokenAmount The number of PE tokens burnt */ event Withdrawal(address indexed to, UsdcQuantity collateralAmount, PeQuantity tokenAmount); /** * Emitted upon liquidity withdrawal * * @param to Address where the USDC token withdrawal is directed * @param lpAmount The number of LP USDC/MAI tokens withdrawn * @param tokenAmount The number of PE tokens burnt */ event LiquidityWithdrawal(address indexed to, LpQuantity lpAmount, PeQuantity tokenAmount); /** * Emitted upon the markup fee being updated * * @param operator Address of the one updating the markup fee * @param markupFee New markup fee */ event MarkupFeeUpdated(address operator, RatioWith6Decimals markupFee); /** * Emitted upon compounding rewards from QiDao's Farm back into the vault * * @param qi Number of awarded QI tokens * @param usdc Equivalent number of USDC tokens * @param lp Number of LP USDC/MAI tokens re-invested */ event CompoundRewards(QiQuantity qi, UsdcQuantity usdc, LpQuantity lp); // --- Roles - Automatic ---------------------------------------------------------------------------------------------------------------------------------- /** * Return the hash identifying the role responsible for updating the markup fee * * @return roleId The role hash in question */ function MARKUP_ROLE() external view returns (RoleId roleId); // solhint-disable-line func-name-mixedcase /** * Return the hash identifying the role responsible for compounding rewards * * @return roleId The role hash in question */ function REWARDS_ROLE() external view returns (RoleId roleId); // solhint-disable-line func-name-mixedcase /** * Return the hash identifying the role responsible for migrating between versions * * @return roleId The role hash in question */ function MIGRATOR_ROLE() external view returns (RoleId roleId); // solhint-disable-line func-name-mixedcase // --- Addresses - Automatic ------------------------------------------------------------------------------------------------------------------------------ /** * Return the address used for the USDC tokens in vault * * @return The address in question */ function usdcAddress() external view returns (address); /** * Return the address used for the MAI tokens in vault * * @return The address in question */ function maiAddress() external view returns (address); /** * Return the address used for the LP USDC/MAI tokens in vault * * @return The address in question */ function lpAddress() external view returns (address); /** * Return the address used for the QI tokens in vault * * @return The address in question */ function qiAddress() external view returns (address); /** * Return the address of the QuickSwap Router to talk to * * @return The address in question */ function quickSwapRouterAddress() external view returns (address); /** * Return the address of the QiDao Farm to use * * @return The address in question */ function qiDaoFarmAddress() external view returns (address); /** * Return the pool ID within the QiDao Farm * * @return The pool ID in question */ function qiDaoPoolId() external view returns (uint256); // --- Fees - Automatic ----------------------------------------------------------------------------------------------------------------------------------- /** * Return the markup fee the use, using `_decimals()` decimals implicitly * * @return The markup fee to use */ function markupFee() external view returns (RatioWith6Decimals); /** * Return the swap fee the use, using `_decimals()` decimals implicitly * * @return The swap fee to use */ function swapFee() external view returns (RatioWith6Decimals); // --- Status - Automatic --------------------------------------------------------------------------------------------------------------------------------- /** * Return wether the Peronio contract has been initialized yet * * @return True whenever the contract has already been initialized, false otherwise */ function initialized() external view returns (bool); // --- Decimals ------------------------------------------------------------------------------------------------------------------------------------------- /** * Return the number of decimals the PE token will work with * * @return decimals_ This will always be 6 */ function decimals() external view returns (uint8); // --- Markup fee change ---------------------------------------------------------------------------------------------------------------------------------- /** * Set the markup fee to the given value (take into account that this will use `_decimals` decimals implicitly) * * @param newMarkupFee New markup fee value * @return prevMarkupFee Previous markup fee value * @custom:emit MarkupFeeUpdated */ function setMarkupFee(RatioWith6Decimals newMarkupFee) external returns (RatioWith6Decimals prevMarkupFee); // --- Initialization ------------------------------------------------------------------------------------------------------------------------------------- /** * Initialize the PE token by providing collateral USDC tokens - initial conversion rate will be set at the given starting ratio * * @param usdcAmount Number of collateral USDC tokens * @param startingRatio Initial minting ratio in PE tokens per USDC tokens minted * @custom:emit Initialized */ function initialize(UsdcQuantity usdcAmount, PePerUsdcQuantity startingRatio) external; // --- State views ---------------------------------------------------------------------------------------------------------------------------------------- /** * Return the USDC and MAI token reserves present in QuickSwap * * @return usdcReserves Number of USDC tokens in reserve * @return maiReserves Number of MAI tokens in reserve */ function getLpReserves() external view returns (UsdcQuantity usdcReserves, MaiQuantity maiReserves); /** * Return the number of LP USDC/MAI tokens on stake at QiDao's Farm * * @return lpAmount Number of LP USDC/MAI token on stake */ function stakedBalance() external view returns (LpQuantity lpAmount); /** * Return the number of USDC and MAI tokens on stake at QiDao's Farm * * @return usdcAmount Number of USDC tokens on stake * @return maiAmount Number of MAI tokens on stake */ function stakedTokens() external view returns (UsdcQuantity usdcAmount, MaiQuantity maiAmount); /** * Return the equivalent number of USDC tokens on stake at QiDao's Farm * * @return usdcAmount Total equivalent number of USDC token on stake */ function stakedValue() external view returns (UsdcQuantity usdcAmount); /** * Return the _collateralized_ price in USDC tokens per PE token * * @return price Collateralized price in USDC tokens per PE token */ function usdcPrice() external view returns (PePerUsdcQuantity price); /** * Return the effective _minting_ price in USDC tokens per PE token * * @return price Minting price in USDC tokens per PE token */ function buyingPrice() external view returns (UsdcPerPeQuantity price); /** * Return the ratio of total number of USDC tokens per PE token * * @return ratio Ratio of USDC tokens per PE token, with `_decimal` decimals */ function collateralRatio() external view returns (UsdcPerPeQuantity ratio); // --- State changers ------------------------------------------------------------------------------------------------------------------------------------- /** * Mint PE tokens using the provided USDC tokens as collateral --- used by the migrators in order not to incur normal fees * * @param to The address to transfer the minted PE tokens to * @param usdcAmount Number of USDC tokens to use as collateral * @param minReceive The minimum number of PE tokens to mint * @return peAmount The number of PE tokens actually minted * @custom:emit Minted */ function mintForMigration( address to, UsdcQuantity usdcAmount, PeQuantity minReceive ) external returns (PeQuantity peAmount); /** * Mint PE tokens using the provided USDC tokens as collateral * * @param to The address to transfer the minted PE tokens to * @param usdcAmount Number of USDC tokens to use as collateral * @param minReceive The minimum number of PE tokens to mint * @return peAmount The number of PE tokens actually minted * @custom:emit Minted */ function mint( address to, UsdcQuantity usdcAmount, PeQuantity minReceive ) external returns (PeQuantity peAmount); /** * Extract the given number of PE tokens as USDC tokens * * @param to Address to deposit extracted USDC tokens into * @param peAmount Number of PE tokens to withdraw * @return usdcTotal Number of USDC tokens extracted * @custom:emit Withdrawal */ function withdraw(address to, PeQuantity peAmount) external returns (UsdcQuantity usdcTotal); /** * Extract the given number of PE tokens as LP USDC/MAI tokens * * @param to Address to deposit extracted LP USDC/MAI tokens into * @param peAmount Number of PE tokens to withdraw liquidity for * @return lpAmount Number of LP USDC/MAI tokens extracted * @custom:emit LiquidityWithdrawal */ function withdrawLiquidity(address to, PeQuantity peAmount) external returns (LpQuantity lpAmount); // --- Rewards -------------------------------------------------------------------------------------------------------------------------------------------- /** * Return the rewards accrued by staking LP USDC/MAI tokens in QiDao's Farm (in QI tokens) * * @return qiAmount Number of QI tokens accrued */ function getPendingRewardsAmount() external view returns (QiQuantity qiAmount); /** * Claim QiDao's QI token rewards, and re-invest them in the QuickSwap liquidity pool and QiDao's Farm * * @return usdcAmount The number of USDC tokens being re-invested * @return lpAmount The number of LP USDC/MAI tokens being put on stake * @custom:emit CompoundRewards */ function compoundRewards() external returns (UsdcQuantity usdcAmount, LpQuantity lpAmount); // --- Quotes --------------------------------------------------------------------------------------------------------------------------------------------- /** * Retrieve the expected number of PE tokens corresponding to the given number of USDC tokens for minting. * * @param usdc Number of USDC tokens to quote for * @return pe Number of PE tokens quoted for the given number of USDC tokens */ function quoteIn(UsdcQuantity usdc) external view returns (PeQuantity pe); /** * Retrieve the expected number of USDC tokens corresponding to the given number of PE tokens for withdrawal. * * @param pe Number of PE tokens to quote for * @return usdc Number of USDC tokens quoted for the given number of PE tokens */ function quoteOut(PeQuantity pe) external view returns (UsdcQuantity usdc); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. It the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. // We also know that `k`, the position of the most significant bit, is such that `msb(a) = 2**k`. // This gives `2**k < a <= 2**(k+1)` → `2**(k/2) <= sqrt(a) < 2 ** (k/2+1)`. // Using an algorithm similar to the msb conmputation, we are able to compute `result = 2**(k/2)` which is a // good first aproximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1; uint256 x = a; if (x >> 128 > 0) { x >>= 128; result <<= 64; } if (x >> 64 > 0) { x >>= 64; result <<= 32; } if (x >> 32 > 0) { x >>= 32; result <<= 16; } if (x >> 16 > 0) { x >>= 16; result <<= 8; } if (x >> 8 > 0) { x >>= 8; result <<= 4; } if (x >> 4 > 0) { x >>= 4; result <<= 2; } if (x >> 2 > 0) { result <<= 1; } // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { uint256 result = sqrt(a); if (rounding == Rounding.Up && result * result < a) { result += 1; } return result; } }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.17; interface IUniswapV2Router01 { function factory() external view returns (address); function WETH() external view returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev 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._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev 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`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev 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. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev 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`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev 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. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol) pragma solidity ^0.8.0; import "./ECDSA.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "optimizer": { "enabled": true, "runs": 2000, "details": { "peephole": true, "inliner": true, "jumpdestRemover": true, "orderLiterals": true, "deduplicate": true, "cse": true, "constantOptimizer": true, "yul": true, "yulDetails": { "stackAllocation": true } } }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_usdcAddress","type":"address"},{"internalType":"address","name":"_maiAddress","type":"address"},{"internalType":"address","name":"_lpAddress","type":"address"},{"internalType":"address","name":"_qiAddress","type":"address"},{"internalType":"address","name":"_quickSwapRouterAddress","type":"address"},{"internalType":"address","name":"_qiDaoFarmAddress","type":"address"},{"internalType":"uint256","name":"_qiDaoPoolId","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"QiQuantity","name":"qi","type":"uint256"},{"indexed":false,"internalType":"UsdcQuantity","name":"usdc","type":"uint256"},{"indexed":false,"internalType":"LpQuantity","name":"lp","type":"uint256"}],"name":"CompoundRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"UsdcQuantity","name":"collateral","type":"uint256"},{"indexed":false,"internalType":"PePerUsdcQuantity","name":"startingRatio","type":"uint256"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"LpQuantity","name":"lpAmount","type":"uint256"},{"indexed":false,"internalType":"PeQuantity","name":"tokenAmount","type":"uint256"}],"name":"LiquidityWithdrawal","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"RatioWith6Decimals","name":"markupFee","type":"uint256"}],"name":"MarkupFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"UsdcQuantity","name":"collateralAmount","type":"uint256"},{"indexed":false,"internalType":"PeQuantity","name":"tokenAmount","type":"uint256"}],"name":"Minted","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":"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":"to","type":"address"},{"indexed":false,"internalType":"UsdcQuantity","name":"collateralAmount","type":"uint256"},{"indexed":false,"internalType":"PeQuantity","name":"tokenAmount","type":"uint256"}],"name":"Withdrawal","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MARKUP_ROLE","outputs":[{"internalType":"RoleId","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIGRATOR_ROLE","outputs":[{"internalType":"RoleId","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REWARDS_ROLE","outputs":[{"internalType":"RoleId","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyingPrice","outputs":[{"internalType":"UsdcPerPeQuantity","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collateralRatio","outputs":[{"internalType":"UsdcPerPeQuantity","name":"ratio","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"compoundRewards","outputs":[{"internalType":"UsdcQuantity","name":"usdcAmount","type":"uint256"},{"internalType":"LpQuantity","name":"lpAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"decimals_","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getLpReserves","outputs":[{"internalType":"UsdcQuantity","name":"usdcReserves","type":"uint256"},{"internalType":"MaiQuantity","name":"maiReserves","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPendingRewardsAmount","outputs":[{"internalType":"QiQuantity","name":"qiAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"UsdcQuantity","name":"usdcAmount","type":"uint256"},{"internalType":"PePerUsdcQuantity","name":"startingRatio","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maiAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"markupFee","outputs":[{"internalType":"RatioWith6Decimals","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"UsdcQuantity","name":"usdcAmount","type":"uint256"},{"internalType":"PeQuantity","name":"minReceive","type":"uint256"}],"name":"mint","outputs":[{"internalType":"PeQuantity","name":"peAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"UsdcQuantity","name":"usdcAmount","type":"uint256"},{"internalType":"PeQuantity","name":"minReceive","type":"uint256"}],"name":"mintForMigration","outputs":[{"internalType":"PeQuantity","name":"peAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"qiAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"qiDaoFarmAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"qiDaoPoolId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"quickSwapRouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"UsdcQuantity","name":"usdc","type":"uint256"}],"name":"quoteIn","outputs":[{"internalType":"PeQuantity","name":"pe","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"PeQuantity","name":"pe","type":"uint256"}],"name":"quoteOut","outputs":[{"internalType":"UsdcQuantity","name":"usdc","type":"uint256"}],"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":"RatioWith6Decimals","name":"newMarkupFee","type":"uint256"}],"name":"setMarkupFee","outputs":[{"internalType":"RatioWith6Decimals","name":"prevMarkupFee","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakedBalance","outputs":[{"internalType":"LpQuantity","name":"lpAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakedTokens","outputs":[{"internalType":"UsdcQuantity","name":"usdcAmount","type":"uint256"},{"internalType":"MaiQuantity","name":"maiAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakedValue","outputs":[{"internalType":"UsdcQuantity","name":"usdcAmount","type":"uint256"}],"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":"swapFee","outputs":[{"internalType":"RatioWith6Decimals","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"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"},{"inputs":[],"name":"usdcAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usdcPrice","outputs":[{"internalType":"PePerUsdcQuantity","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"PeQuantity","name":"peAmount","type":"uint256"}],"name":"withdraw","outputs":[{"internalType":"UsdcQuantity","name":"usdcTotal","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"PeQuantity","name":"peAmount","type":"uint256"}],"name":"withdrawLiquidity","outputs":[{"internalType":"LpQuantity","name":"lpAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
61022060405261c3506009556105dc600a553480156200001e57600080fd5b5060405162004ca338038062004ca3833981016040819052620000419162000318565b604051806040016040528060078152602001665065726f6e696f60c81b81525080604051806040016040528060018152602001603160f81b815250604051806040016040528060078152602001665065726f6e696f60c81b815250604051806040016040528060018152602001600560fc1b8152508160039081620000c7919062000449565b506004620000d6828262000449565b5050825160208085019190912083518483012060e08290526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81880181905281830187905260608201869052608082019490945230818401528151808203909301835260c0019052805194019390932091935091906080523060c05261012052505060016008555050506001600160a01b038781166101405286811661016052858116610180528381166101c0528281166101e05261020082905284166101a05233620001b560008262000247565b620001e17f74a064b2dec4aeb0b53e2d06f8e76ce531a17302a866fe51bc86d9a90b4e85e38262000247565b6200020d7f5407862f04286ebe607684514c14b7fffc750b6bf52ba44ea49569174845a5bd8262000247565b620002397f600e5f1c60beb469a3fa6dd3814a4ae211cc6259a6d033bae218a742f2af01d38262000247565b505050505050505062000515565b62000253828262000257565b5050565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff16620002535760008281526007602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620002b73390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b80516001600160a01b03811681146200031357600080fd5b919050565b600080600080600080600060e0888a0312156200033457600080fd5b6200033f88620002fb565b96506200034f60208901620002fb565b95506200035f60408901620002fb565b94506200036f60608901620002fb565b93506200037f60808901620002fb565b92506200038f60a08901620002fb565b915060c0880151905092959891949750929550565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003cf57607f821691505b602082108103620003f057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200044457600081815260208120601f850160051c810160208610156200041f5750805b601f850160051c820191505b8181101562000440578281556001016200042b565b5050505b505050565b81516001600160401b03811115620004655762000465620003a4565b6200047d81620004768454620003ba565b84620003f6565b602080601f831160018114620004b557600084156200049c5750858301515b600019600386901b1c1916600185901b17855562000440565b600085815260208120601f198616915b82811015620004e657888601518255948401946001909101908401620004c5565b5085821015620005055787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c05160e05161010051610120516101405161016051610180516101a0516101c0516101e051610200516145cb620006d8600039600081816105ae015281816110c001528181611b8f01528181611c7a0152818161252201528181612aae0152613504015260008181610411015281816110ed01528181611bbe01528181611ca70152818161255101528181612ae1015261343b0152600081816105d501528181611772015281816131aa015281816133010152613890015260008181610496015281816111680152818161174601526129010152600081816106c40152818161090001528181610cce015281816112d3015281816117250152818161279701528181612986015261346c015260008181610635015281816116e30152818161281e01528181613349015281816138d801528181613c190152613c55015260008181610389015281816111fd0152818161170401528181611a7e01528181612084015281816128480152818161292201528181613328015281816138b701528181613bf80152613c7601526000612612015260006126610152600061263c01526000612595015260006125bf015260006125e901526145cb6000f3fe608060405234801561001057600080fd5b50600436106103575760003560e01c806373956bc3116101c8578063a524c99c11610104578063cedb9410116100a2578063dacee3471161007c578063dacee347146107c5578063dd62ed3e146107cd578063e4a3011614610806578063f3fef3a31461081957600080fd5b8063cedb94101461078c578063d505accf1461079f578063d547741f146107b257600080fd5b8063b4eae1cb116100de578063b4eae1cb1461074d578063c00c9f7f14610755578063ca4fb87c1461075d578063cb6290091461078457600080fd5b8063a524c99c1461070a578063a9059cbb1461071d578063b282e0f91461073057600080fd5b80638f839603116101715780639b4dc8cc1161014b5780639b4dc8cc146106bf5780639d938db0146106e6578063a217fddf146106ef578063a457c2d7146106f757600080fd5b80638f8396031461065757806391d148541461067e57806395d89b41146106b757600080fd5b80637a9b71f9116101a25780637a9b71f91461060a5780637ecebe001461061d578063804bbdc61461063057600080fd5b806373956bc3146105a9578063776429e7146105d057806379cc6790146105f757600080fd5b8063313ce5671161029757806342966c68116102405780635b9f00161161021a5780635b9f0016146105495780635da0d90a146105515780636fae2e151461055957806370a082311461058057600080fd5b806342966c681461051a5780635204363e1461052d57806354cf2aeb1461054057600080fd5b806336568abe1161027157806336568abe146104ec57806339509351146104ff578063399c04251461051257600080fd5b8063313ce567146104cd57806335092dad146104dc5780633644e515146104e457600080fd5b8063156e29f61161030457806323b872dd116102de57806323b872dd1461045b578063248a9ca31461046e57806326d71f1e146104915780632f2ff15d146104b857600080fd5b8063156e29f614610433578063158ef93e1461044657806318160ddd1461045357600080fd5b806306fdde031161033557806306fdde03146103e4578063095ea7b3146103f95780630c7c6f011461040c57600080fd5b806301ffc9a71461035c57806302d454571461038457806306d47de9146103c3575b600080fd5b61036f61036a366004613e1c565b61082c565b60405190151581526020015b60405180910390f35b6103ab7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161037b565b6103d66103d1366004613e5b565b610870565b60405190815260200161037b565b6103ec610980565b60405161037b9190613eab565b61036f610407366004613e5b565b610a12565b6103ab7f000000000000000000000000000000000000000000000000000000000000000081565b6103d6610441366004613ede565b610a2a565b600b5461036f9060ff1681565b6002546103d6565b61036f610469366004613f13565b610aa1565b6103d661047c366004613f54565b60009081526007602052604090206001015490565b6103ab7f000000000000000000000000000000000000000000000000000000000000000081565b6104cb6104c6366004613f6d565b610ac7565b005b6040516006815260200161037b565b6103d6610af1565b6103d6610b00565b6104cb6104fa366004613f6d565b610b0a565b61036f61050d366004613e5b565b610b96565b6103d6610bd5565b6104cb610528366004613f54565b610c05565b6103d661053b366004613ede565b610c12565b6103d6600a5481565b6103d6610ca1565b6103d6610cab565b6103d67f600e5f1c60beb469a3fa6dd3814a4ae211cc6259a6d033bae218a742f2af01d381565b6103d661058e366004613f9d565b6001600160a01b031660009081526020819052604090205490565b6103d67f000000000000000000000000000000000000000000000000000000000000000081565b6103ab7f000000000000000000000000000000000000000000000000000000000000000081565b6104cb610605366004613e5b565b610cb5565b6103d6610618366004613f54565b610cca565b6103d661062b366004613f9d565b610ee2565b6103ab7f000000000000000000000000000000000000000000000000000000000000000081565b6103d67f74a064b2dec4aeb0b53e2d06f8e76ce531a17302a866fe51bc86d9a90b4e85e381565b61036f61068c366004613f6d565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6103ec610f00565b6103ab7f000000000000000000000000000000000000000000000000000000000000000081565b6103d660095481565b6103d6600081565b61036f610705366004613e5b565b610f0f565b6103d6610718366004613f54565b610fc4565b61036f61072b366004613e5b565b611040565b61073861104e565b6040805192835260208301919091520161037b565b6103d6611062565b61073861106c565b6103d67f5407862f04286ebe607684514c14b7fffc750b6bf52ba44ea49569174845a5bd81565b6107386112c4565b6103d661079a366004613f54565b6112cf565b6104cb6107ad366004613fba565b6114cd565b6104cb6107c0366004613f6d565b611631565b6103d6611656565b6103d66107db366004614031565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104cb61081436600461405f565b611677565b6103d6610827366004613e5b565b6119fc565b60006001600160e01b031982167f6ae1097800000000000000000000000000000000000000000000000000000000148061086a575061086a82611b00565b92915050565b60006002600854036108c95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600855336108e8836108db611b67565b6108e3611c32565b611c3d565b91506108f382611c52565b6109276001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168584611d0e565b6109318184611d9f565b60408051838152602081018590526001600160a01b038316917e3acf01fc7fd0a8bbdc96cfc96b5ddb8fabb57027141a47a3f8ff8c06120517910160405180910390a250600160085592915050565b60606003805461098f90614081565b80601f01602080910402602001604051908101604052809291908181526020018280546109bb90614081565b8015610a085780601f106109dd57610100808354040283529160200191610a08565b820191906000526020600020905b8154815290600101906020018083116109eb57829003601f168201915b5050505050905090565b600033610a20818585611f24565b5060019392505050565b6000600260085403610a7e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c0565b6002600881905550610a9484848460095461207c565b6001600855949350505050565b600033610aaf8582856121a5565b610aba858585612237565b60019150505b9392505050565b600082815260076020526040902060010154610ae28161244e565b610aec8383612458565b505050565b6000610afb6124fa565b905090565b6000610afb612588565b6001600160a01b0381163314610b885760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016108c0565b610b9282826126af565b5050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610a209082908690610bd09087906140cb565b611f24565b6000610afb610be2612732565b610bf9610bf16006600a6141c2565b60095461274b565b6108e36006600a6141c2565b610c0f3382611d9f565b50565b6000600260085403610c665760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c0565b6002600855610c947f600e5f1c60beb469a3fa6dd3814a4ae211cc6259a6d033bae218a742f2af01d361244e565b610a94848484600061207c565b6000610afb611b67565b6000610afb612757565b610cc08233836121a5565b610b928282611d9f565b60007f00000000000000000000000000000000000000000000000000000000000000008180610cf761278f565b915091506000836001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5f91906141d1565b90506000610d75610d7085856128ca565b6128d6565b90506000610dde866001600160a01b0316637464fc3d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7091906141d1565b905080821115610e1657610e1383610e0e85610dfa86866128e1565b6108e3610e088860056128ca565b8761274b565b61274b565b92505b50506040516370a0823160e01b81526001600160a01b03851660048201819052600091610e9491906370a0823190602401602060405180830381865afa158015610e64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8891906141d1565b610e0e896108db611b67565b90506000610ea3858385611c3d565b90506000610eb2858486611c3d565b9050610ed582610e0e83610ec689866128e1565b610ed08b886128e1565b6128ed565b9998505050505050505050565b6001600160a01b03811660009081526005602052604081205461086a565b60606004805461098f90614081565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610fac5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016108c0565b610fb98286868403611f24565b506001949350505050565b6000610fef7f74a064b2dec4aeb0b53e2d06f8e76ce531a17302a866fe51bc86d9a90b4e85e361244e565b5060098054908290557f6f51444e6a490d4270634e3b854e9959ace1fc9b287af8677dfd06d4071f77be33604080516001600160a01b039092168252602082018590520160405180910390a1919050565b600033610a20818585612237565b60008061105961278f565b90939092509050565b6000610afb612732565b6000806110987f5407862f04286ebe607684514c14b7fffc750b6bf52ba44ea49569174845a5bd61244e565b6040517fe2bbb1580000000000000000000000000000000000000000000000000000000081527f00000000000000000000000000000000000000000000000000000000000000006004820152600060248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063e2bbb15890604401600060405180830381600087803b15801561113957600080fd5b505af115801561114d573d6000803e3d6000fd5b50506040516370a0823160e01b8152306004820152600092507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031691506370a0823190602401602060405180830381865afa1580156111b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111dc91906141d1565b90506111e7816128fa565b506040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa15801561124c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127091906141d1565b925061127b83612947565b60408051838152602081018690529081018290529092507fc35d86b8f236816fab54de6cb4b564fc7abbe78e7fa53fc10a3e5ff4b28da8219060600160405180910390a1509091565b600080611059612973565b60007f000000000000000000000000000000000000000000000000000000000000000081806112fc61278f565b915091506000836001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611340573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136491906141d1565b905060006113728488612a39565b905060006113818286866128ed565b905061138d858361274b565b945061139984826128e1565b935060006113b16113aa8a856128e1565b8688611c3d565b90508082106113ce576113c489846128e1565b92509050806113df565b60006113db838888611c3d565b9350505b5060006113ef610d7087876128ca565b90506000611434886001600160a01b0316637464fc3d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dba573d6000803e3d6000fd5b9050808211156114535761145085610e0e87610dfa86866128e1565b94505b5050600080611463838688611c3d565b9050600061147285878a611c3d565b905061147e8282612a7a565b9250505060006114a982610bf96006600a61149991906141c2565b6114a4600954612a86565b6128e1565b90506114bf816114b7611c32565b6108e3611b67565b9a9950505050505050505050565b8342111561151d5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016108c0565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c988888861154c8c612b78565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060006115a782612b9e565b905060006115b782878787612c07565b9050896001600160a01b0316816001600160a01b03161461161a5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016108c0565b6116258a8a8a611f24565b50505050505050505050565b60008281526007602052604090206001015461164c8161244e565b610aec83836126af565b6000610afb6116676006600a6141c2565b61166f611c32565b6108e3612757565b611681600061244e565b600b5460ff16156116d45760405162461bcd60e51b815260206004820152601c60248201527f436f6e747261637420616c726561647920696e697469616c697a65640000000060448201526064016108c0565b600b805460ff191660011790557f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000600061176e3390565b90507f00000000000000000000000000000000000000000000000000000000000000006000196117a96001600160a01b03871684308c612c2f565b60405163095ea7b360e01b81526001600160a01b0383811660048301526024820183905288169063095ea7b3906044016020604051808303816000875af11580156117f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181c91906141ea565b5060405163095ea7b360e01b81526001600160a01b0383811660048301526024820183905287169063095ea7b3906044016020604051808303816000875af115801561186c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189091906141ea565b5060405163095ea7b360e01b81526001600160a01b0383811660048301526024820183905286169063095ea7b3906044016020604051808303816000875af11580156118e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061190491906141ea565b5060405163095ea7b360e01b81526001600160a01b0383811660048301526024820183905285169063095ea7b3906044016020604051808303816000875af1158015611954573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061197891906141ea565b5061198289612947565b5061198b612757565b98506119a7836119a28b8b6108e36006600a6141c2565b612c80565b604080516001600160a01b0385168152602081018b90529081018990527f0f91882b50d9330af0b1d4998e6af7f2eaee90ce7e77ea54fea089af166d021d9060600160405180910390a1505050505050505050565b6000600260085403611a505760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c0565b6002600855336000611a64846108db611b67565b9050611a6f81612d5f565b9250611aa56001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168685611d0e565b611aaf8285611d9f565b60408051848152602081018690526001600160a01b038416917fdf273cb619d95419a9cd0ec88123a0538c85064229baa6363788f743fff90deb910160405180910390a25050600160085592915050565b60006001600160e01b031982167f7965db0b00000000000000000000000000000000000000000000000000000000148061086a57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161461086a565b6040517fa23831060000000000000000000000000000000000000000000000000000000081527f000000000000000000000000000000000000000000000000000000000000000060048201523060248201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a2383106906044015b602060405180830381865afa158015611c0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afb91906141d1565b6000610afb60025490565b6000611c4a848484612d83565b949350505050565b6040517f441a3e700000000000000000000000000000000000000000000000000000000081527f00000000000000000000000000000000000000000000000000000000000000006004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063441a3e7090604401600060405180830381600087803b158015611cf357600080fd5b505af1158015611d07573d6000803e3d6000fd5b5050505050565b6040516001600160a01b038316602482015260448101829052610aec9084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990931692909217909152612e32565b6001600160a01b038216611e1b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016108c0565b6001600160a01b03821660009081526020819052604090205481811015611eaa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016108c0565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611ed990849061420c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b038316611f9f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108c0565b6001600160a01b03821661201b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016108c0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000336120b47f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316823088612c2f565b60006120be611b67565b905060006120e66120ce88612947565b610bf96120dd6006600a6141c2565b6114a489612a86565b90506120fa816120f4611c32565b84611c3d565b93508584101561214c5760405162461bcd60e51b815260206004820152601860248201527f4d696e696d756d207265717569726564206e6f74206d6574000000000000000060448201526064016108c0565b6121568885612c80565b60408051888152602081018690526001600160a01b038516917f25b428dfde728ccfaddad7e29e4ac23c24ed7fd1a6e3e3f91894a9a073f5dfff910160405180910390a2505050949350505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461223157818110156122245760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108c0565b6122318484848403611f24565b50505050565b6001600160a01b0383166122b35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016108c0565b6001600160a01b03821661232f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016108c0565b6001600160a01b038316600090815260208190526040902054818110156123be5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016108c0565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906123f59084906140cb565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161244191815260200190565b60405180910390a3612231565b610c0f8133612f17565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff16610b925760008281526007602090815260408083206001600160a01b03851684529091529020805460ff191660011790556124b63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6040517fe4c75c270000000000000000000000000000000000000000000000000000000081527f000000000000000000000000000000000000000000000000000000000000000060048201523060248201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063e4c75c2790604401611bf1565b6000306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480156125e157507f000000000000000000000000000000000000000000000000000000000000000046145b1561260b57507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff1615610b925760008281526007602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000610afb6127436006600a6141c2565b6108db612757565b6000610ac082846140cb565b600080600061276461278f565b91509150600080612773612973565b9150915061278682610e0e8386886128ed565b94505050505090565b6000806000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156127f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128179190614242565b50915091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161061289c57806dffffffffffffffffffffffffffff16826dffffffffffffffffffffffffffff166128bf565b816dffffffffffffffffffffffffffff16816dffffffffffffffffffffffffffff165b909590945092505050565b6000610ac08284614292565b600061086a82612f97565b6000610ac0828461420c565b6000611c4a8484846130fd565b600061086a7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000084613138565b6000806129538361326b565b909350905061296283826132f4565b915061296d82613424565b50919050565b6000806000612980611b67565b905060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156129e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a0691906141d1565b9050600080612a1361278f565b91509150612a22848385611c3d565b9550612a2f848285611c3d565b9450505050509091565b6000610ac0612a6b610d70612a61612a54623cda29886128ca565b610e0e623cda20886128ca565b86623cab64611c3d565b6114a4856107cd6107ca611c3d565b6000610ac08383613579565b6040517f1526fe270000000000000000000000000000000000000000000000000000000081527f0000000000000000000000000000000000000000000000000000000000000000600482015260009081906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690631526fe279060240160a060405180830381865afa158015612b28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b4c91906142a9565b9450505050506000612b618261ffff1661358f565b9050611c4a84612b73600a548461274b565b61359c565b6001600160a01b038116600090815260056020526040902080546001810182559061296d565b600061086a612bab612588565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000612c18878787876135a8565b91509150612c2581613695565b5095945050505050565b6040516001600160a01b03808516602483015283166044820152606481018290526122319085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401611d53565b6001600160a01b038216612cd65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016108c0565b8060026000828254612ce891906140cb565b90915550506001600160a01b03821660009081526020819052604081208054839290612d159084906140cb565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600080612d6b83611c52565b612d7483613881565b9092509050610ac082826139aa565b6000808060001985870985870292508281108382030391505080600003612dbd57838281612db357612db3614308565b0492505050610ac0565b808411612dc957600080fd5b60008486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091026000889003889004909101858311909403939093029303949094049190911702949350505050565b6000612e87826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166139b99092919063ffffffff16565b805190915015610aec5780806020019051810190612ea591906141ea565b610aec5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016108c0565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff16610b9257612f55816001600160a01b031660146139c8565b612f608360206139c8565b604051602001612f7192919061431e565b60408051601f198184030181529082905262461bcd60e51b82526108c091600401613eab565b600081600003612fa957506000919050565b600182608081901c15612fc15760409190911b9060801c5b604081901c15612fd65760209190911b9060401c5b602081901c15612feb5760109190911b9060201c5b601081901c156130005760089190911b9060101c5b600881901c156130155760049190911b9060081c5b600481901c1561302a5760029190911b9060041c5b600281901c1561303c57600182901b91505b600182858161304d5761304d614308565b048301901c9150600182858161306557613065614308565b048301901c9150600182858161307d5761307d614308565b048301901c9150600182858161309557613095614308565b048301901c915060018285816130ad576130ad614308565b048301901c915060018285816130c5576130c5614308565b048301901c915060018285816130dd576130dd614308565b048301901c9150611c4a828386816130f7576130f7614308565b04613579565b60008061310c856103e5614292565b905061312f818481613120886103e8614292565b61312a91906140cb565b612d83565b95945050505050565b60408051600280825260608201835260009283929190602083019080368337019050509050848482600081518110613172576131726143b5565b602002602001018360018151811061318c5761318c6143b5565b6001600160a01b0393841660209182029290920101529181169091527f0000000000000000000000000000000000000000000000000000000000000000166338ed173984600184306131e0610e10426140cb565b6040518663ffffffff1660e01b81526004016132009594939291906143cb565b6000604051808303816000875af115801561321f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052613247919081019061443c565b600181518110613259576132596143b5565b60200260200101519150509392505050565b600080600061327861278f565b50905060006132878286612a39565b9050806132d65760405162461bcd60e51b815260206004820152600f60248201527f4e6f7468696e6720746f2073776170000000000000000000000000000000000060448201526064016108c0565b6132df81613bf1565b92506132eb85826128e1565b93505050915091565b6000806001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663e8e337007f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000087876001803061337a610e10426140cb565b60405160e08a901b6001600160e01b03191681526001600160a01b039889166004820152968816602488015260448701959095526064860193909352608485019190915260a484015290921660c482015260e4810191909152610104016060604051808303816000875af11580156133f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061341a91906144fa565b9695505050505050565b60405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000818116600484015260248301849052917f00000000000000000000000000000000000000000000000000000000000000009091169063095ea7b3906044016020604051808303816000875af11580156134b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134db91906141ea565b506040517fe2bbb1580000000000000000000000000000000000000000000000000000000081527f00000000000000000000000000000000000000000000000000000000000000006004820152602481018390526001600160a01b0382169063e2bbb15890604401600060405180830381600087803b15801561355d57600080fd5b505af1158015613571573d6000803e3d6000fd5b505050505050565b60008183106135885781610ac0565b5090919050565b600061086a826064614292565b6000610ac08383613c3e565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156135df575060009050600361368c565b8460ff16601b141580156135f757508460ff16601c14155b15613608575060009050600461368c565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561365c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166136855760006001925092505061368c565b9150600090505b94509492505050565b60008160048111156136a9576136a9614528565b036136b15750565b60018160048111156136c5576136c5614528565b036137125760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016108c0565b600281600481111561372657613726614528565b036137735760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016108c0565b600381600481111561378757613787614528565b036137fa5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016108c0565b600481600481111561380e5761380e614528565b03610c0f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016108c0565b60008080806001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663baa2abde7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000008860018030613908610e10426140cb565b60405160e089901b6001600160e01b03191681526001600160a01b039788166004820152958716602487015260448601949094526064850192909252608484015290921660a482015260c481019190915260e40160408051808303816000875af115801561397a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061399e919061453e565b90969095509350505050565b6000610ac083610e0e84613c4e565b6060611c4a8484600085613c9b565b606060006139d7836002614292565b6139e29060026140cb565b67ffffffffffffffff8111156139fa576139fa61439f565b6040519080825280601f01601f191660200182016040528015613a24576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613a5b57613a5b6143b5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613abe57613abe6143b5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000613afa846002614292565b613b059060016140cb565b90505b6001811115613ba2577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110613b4657613b466143b5565b1a60f81b828281518110613b5c57613b5c6143b5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93613b9b81614562565b9050613b08565b508315610ac05760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016108c0565b600061086a7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000084613138565b6000818310156135885781610ac0565b600061086a7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000084613138565b606082471015613d135760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016108c0565b6001600160a01b0385163b613d6a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016108c0565b600080866001600160a01b03168587604051613d869190614579565b60006040518083038185875af1925050503d8060008114613dc3576040519150601f19603f3d011682016040523d82523d6000602084013e613dc8565b606091505b5091509150613dd8828286613de3565b979650505050505050565b60608315613df2575081610ac0565b825115613e025782518084602001fd5b8160405162461bcd60e51b81526004016108c09190613eab565b600060208284031215613e2e57600080fd5b81356001600160e01b031981168114610ac057600080fd5b6001600160a01b0381168114610c0f57600080fd5b60008060408385031215613e6e57600080fd5b8235613e7981613e46565b946020939093013593505050565b60005b83811015613ea2578181015183820152602001613e8a565b50506000910152565b6020815260008251806020840152613eca816040850160208701613e87565b601f01601f19169190910160400192915050565b600080600060608486031215613ef357600080fd5b8335613efe81613e46565b95602085013595506040909401359392505050565b600080600060608486031215613f2857600080fd5b8335613f3381613e46565b92506020840135613f4381613e46565b929592945050506040919091013590565b600060208284031215613f6657600080fd5b5035919050565b60008060408385031215613f8057600080fd5b823591506020830135613f9281613e46565b809150509250929050565b600060208284031215613faf57600080fd5b8135610ac081613e46565b600080600080600080600060e0888a031215613fd557600080fd5b8735613fe081613e46565b96506020880135613ff081613e46565b95506040880135945060608801359350608088013560ff8116811461401457600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561404457600080fd5b823561404f81613e46565b91506020830135613f9281613e46565b6000806040838503121561407257600080fd5b50508035926020909101359150565b600181811c9082168061409557607f821691505b60208210810361296d57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561086a5761086a6140b5565b600181815b808511156141195781600019048211156140ff576140ff6140b5565b8085161561410c57918102915b93841c93908002906140e3565b509250929050565b6000826141305750600161086a565b8161413d5750600061086a565b8160018114614153576002811461415d57614179565b600191505061086a565b60ff84111561416e5761416e6140b5565b50506001821b61086a565b5060208310610133831016604e8410600b841016171561419c575081810a61086a565b6141a683836140de565b80600019048211156141ba576141ba6140b5565b029392505050565b6000610ac060ff841683614121565b6000602082840312156141e357600080fd5b5051919050565b6000602082840312156141fc57600080fd5b81518015158114610ac057600080fd5b8181038181111561086a5761086a6140b5565b80516dffffffffffffffffffffffffffff8116811461423d57600080fd5b919050565b60008060006060848603121561425757600080fd5b6142608461421f565b925061426e6020850161421f565b9150604084015163ffffffff8116811461428757600080fd5b809150509250925092565b808202811582820484141761086a5761086a6140b5565b600080600080600060a086880312156142c157600080fd5b85516142cc81613e46565b80955050602086015193506040860151925060608601519150608086015161ffff811681146142fa57600080fd5b809150509295509295909350565b634e487b7160e01b600052601260045260246000fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351614356816017850160208801613e87565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351614393816028840160208801613e87565b01602801949350505050565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561441b5784516001600160a01b0316835293830193918301916001016143f6565b50506001600160a01b03969096166060850152505050608001529392505050565b6000602080838503121561444f57600080fd5b825167ffffffffffffffff8082111561446757600080fd5b818501915085601f83011261447b57600080fd5b81518181111561448d5761448d61439f565b8060051b604051601f19603f830116810181811085821117156144b2576144b261439f565b6040529182528482019250838101850191888311156144d057600080fd5b938501935b828510156144ee578451845293850193928501926144d5565b98975050505050505050565b60008060006060848603121561450f57600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052602160045260246000fd5b6000806040838503121561455157600080fd5b505080516020909101519092909150565b600081614571576145716140b5565b506000190190565b6000825161458b818460208701613e87565b919091019291505056fea2646970667358221220529da5378077e1021c658f6431f6dbd55271c7f2a6cfd1f7aebade2d2cb265fb64736f6c634300081100330000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000a3fa99a148fa48d14ed51d610c367c61876997f1000000000000000000000000160532d2536175d65c03b97b0630a9802c274dad000000000000000000000000580a84c73811e1839f75d86d75d88cca0c241ff4000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff000000000000000000000000ffd2aa58cca3a44120aaa42cea2852348a9c2ea60000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103575760003560e01c806373956bc3116101c8578063a524c99c11610104578063cedb9410116100a2578063dacee3471161007c578063dacee347146107c5578063dd62ed3e146107cd578063e4a3011614610806578063f3fef3a31461081957600080fd5b8063cedb94101461078c578063d505accf1461079f578063d547741f146107b257600080fd5b8063b4eae1cb116100de578063b4eae1cb1461074d578063c00c9f7f14610755578063ca4fb87c1461075d578063cb6290091461078457600080fd5b8063a524c99c1461070a578063a9059cbb1461071d578063b282e0f91461073057600080fd5b80638f839603116101715780639b4dc8cc1161014b5780639b4dc8cc146106bf5780639d938db0146106e6578063a217fddf146106ef578063a457c2d7146106f757600080fd5b80638f8396031461065757806391d148541461067e57806395d89b41146106b757600080fd5b80637a9b71f9116101a25780637a9b71f91461060a5780637ecebe001461061d578063804bbdc61461063057600080fd5b806373956bc3146105a9578063776429e7146105d057806379cc6790146105f757600080fd5b8063313ce5671161029757806342966c68116102405780635b9f00161161021a5780635b9f0016146105495780635da0d90a146105515780636fae2e151461055957806370a082311461058057600080fd5b806342966c681461051a5780635204363e1461052d57806354cf2aeb1461054057600080fd5b806336568abe1161027157806336568abe146104ec57806339509351146104ff578063399c04251461051257600080fd5b8063313ce567146104cd57806335092dad146104dc5780633644e515146104e457600080fd5b8063156e29f61161030457806323b872dd116102de57806323b872dd1461045b578063248a9ca31461046e57806326d71f1e146104915780632f2ff15d146104b857600080fd5b8063156e29f614610433578063158ef93e1461044657806318160ddd1461045357600080fd5b806306fdde031161033557806306fdde03146103e4578063095ea7b3146103f95780630c7c6f011461040c57600080fd5b806301ffc9a71461035c57806302d454571461038457806306d47de9146103c3575b600080fd5b61036f61036a366004613e1c565b61082c565b60405190151581526020015b60405180910390f35b6103ab7f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417481565b6040516001600160a01b03909116815260200161037b565b6103d66103d1366004613e5b565b610870565b60405190815260200161037b565b6103ec610980565b60405161037b9190613eab565b61036f610407366004613e5b565b610a12565b6103ab7f000000000000000000000000ffd2aa58cca3a44120aaa42cea2852348a9c2ea681565b6103d6610441366004613ede565b610a2a565b600b5461036f9060ff1681565b6002546103d6565b61036f610469366004613f13565b610aa1565b6103d661047c366004613f54565b60009081526007602052604090206001015490565b6103ab7f000000000000000000000000580a84c73811e1839f75d86d75d88cca0c241ff481565b6104cb6104c6366004613f6d565b610ac7565b005b6040516006815260200161037b565b6103d6610af1565b6103d6610b00565b6104cb6104fa366004613f6d565b610b0a565b61036f61050d366004613e5b565b610b96565b6103d6610bd5565b6104cb610528366004613f54565b610c05565b6103d661053b366004613ede565b610c12565b6103d6600a5481565b6103d6610ca1565b6103d6610cab565b6103d67f600e5f1c60beb469a3fa6dd3814a4ae211cc6259a6d033bae218a742f2af01d381565b6103d661058e366004613f9d565b6001600160a01b031660009081526020819052604090205490565b6103d67f000000000000000000000000000000000000000000000000000000000000000081565b6103ab7f000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff81565b6104cb610605366004613e5b565b610cb5565b6103d6610618366004613f54565b610cca565b6103d661062b366004613f9d565b610ee2565b6103ab7f000000000000000000000000a3fa99a148fa48d14ed51d610c367c61876997f181565b6103d67f74a064b2dec4aeb0b53e2d06f8e76ce531a17302a866fe51bc86d9a90b4e85e381565b61036f61068c366004613f6d565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6103ec610f00565b6103ab7f000000000000000000000000160532d2536175d65c03b97b0630a9802c274dad81565b6103d660095481565b6103d6600081565b61036f610705366004613e5b565b610f0f565b6103d6610718366004613f54565b610fc4565b61036f61072b366004613e5b565b611040565b61073861104e565b6040805192835260208301919091520161037b565b6103d6611062565b61073861106c565b6103d67f5407862f04286ebe607684514c14b7fffc750b6bf52ba44ea49569174845a5bd81565b6107386112c4565b6103d661079a366004613f54565b6112cf565b6104cb6107ad366004613fba565b6114cd565b6104cb6107c0366004613f6d565b611631565b6103d6611656565b6103d66107db366004614031565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104cb61081436600461405f565b611677565b6103d6610827366004613e5b565b6119fc565b60006001600160e01b031982167f6ae1097800000000000000000000000000000000000000000000000000000000148061086a575061086a82611b00565b92915050565b60006002600854036108c95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600855336108e8836108db611b67565b6108e3611c32565b611c3d565b91506108f382611c52565b6109276001600160a01b037f000000000000000000000000160532d2536175d65c03b97b0630a9802c274dad168584611d0e565b6109318184611d9f565b60408051838152602081018590526001600160a01b038316917e3acf01fc7fd0a8bbdc96cfc96b5ddb8fabb57027141a47a3f8ff8c06120517910160405180910390a250600160085592915050565b60606003805461098f90614081565b80601f01602080910402602001604051908101604052809291908181526020018280546109bb90614081565b8015610a085780601f106109dd57610100808354040283529160200191610a08565b820191906000526020600020905b8154815290600101906020018083116109eb57829003601f168201915b5050505050905090565b600033610a20818585611f24565b5060019392505050565b6000600260085403610a7e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c0565b6002600881905550610a9484848460095461207c565b6001600855949350505050565b600033610aaf8582856121a5565b610aba858585612237565b60019150505b9392505050565b600082815260076020526040902060010154610ae28161244e565b610aec8383612458565b505050565b6000610afb6124fa565b905090565b6000610afb612588565b6001600160a01b0381163314610b885760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016108c0565b610b9282826126af565b5050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610a209082908690610bd09087906140cb565b611f24565b6000610afb610be2612732565b610bf9610bf16006600a6141c2565b60095461274b565b6108e36006600a6141c2565b610c0f3382611d9f565b50565b6000600260085403610c665760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c0565b6002600855610c947f600e5f1c60beb469a3fa6dd3814a4ae211cc6259a6d033bae218a742f2af01d361244e565b610a94848484600061207c565b6000610afb611b67565b6000610afb612757565b610cc08233836121a5565b610b928282611d9f565b60007f000000000000000000000000160532d2536175d65c03b97b0630a9802c274dad8180610cf761278f565b915091506000836001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5f91906141d1565b90506000610d75610d7085856128ca565b6128d6565b90506000610dde866001600160a01b0316637464fc3d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7091906141d1565b905080821115610e1657610e1383610e0e85610dfa86866128e1565b6108e3610e088860056128ca565b8761274b565b61274b565b92505b50506040516370a0823160e01b81526001600160a01b03851660048201819052600091610e9491906370a0823190602401602060405180830381865afa158015610e64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8891906141d1565b610e0e896108db611b67565b90506000610ea3858385611c3d565b90506000610eb2858486611c3d565b9050610ed582610e0e83610ec689866128e1565b610ed08b886128e1565b6128ed565b9998505050505050505050565b6001600160a01b03811660009081526005602052604081205461086a565b60606004805461098f90614081565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610fac5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016108c0565b610fb98286868403611f24565b506001949350505050565b6000610fef7f74a064b2dec4aeb0b53e2d06f8e76ce531a17302a866fe51bc86d9a90b4e85e361244e565b5060098054908290557f6f51444e6a490d4270634e3b854e9959ace1fc9b287af8677dfd06d4071f77be33604080516001600160a01b039092168252602082018590520160405180910390a1919050565b600033610a20818585612237565b60008061105961278f565b90939092509050565b6000610afb612732565b6000806110987f5407862f04286ebe607684514c14b7fffc750b6bf52ba44ea49569174845a5bd61244e565b6040517fe2bbb1580000000000000000000000000000000000000000000000000000000081527f00000000000000000000000000000000000000000000000000000000000000006004820152600060248201527f000000000000000000000000ffd2aa58cca3a44120aaa42cea2852348a9c2ea66001600160a01b03169063e2bbb15890604401600060405180830381600087803b15801561113957600080fd5b505af115801561114d573d6000803e3d6000fd5b50506040516370a0823160e01b8152306004820152600092507f000000000000000000000000580a84c73811e1839f75d86d75d88cca0c241ff46001600160a01b031691506370a0823190602401602060405180830381865afa1580156111b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111dc91906141d1565b90506111e7816128fa565b506040516370a0823160e01b81523060048201527f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841746001600160a01b0316906370a0823190602401602060405180830381865afa15801561124c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127091906141d1565b925061127b83612947565b60408051838152602081018690529081018290529092507fc35d86b8f236816fab54de6cb4b564fc7abbe78e7fa53fc10a3e5ff4b28da8219060600160405180910390a1509091565b600080611059612973565b60007f000000000000000000000000160532d2536175d65c03b97b0630a9802c274dad81806112fc61278f565b915091506000836001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611340573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136491906141d1565b905060006113728488612a39565b905060006113818286866128ed565b905061138d858361274b565b945061139984826128e1565b935060006113b16113aa8a856128e1565b8688611c3d565b90508082106113ce576113c489846128e1565b92509050806113df565b60006113db838888611c3d565b9350505b5060006113ef610d7087876128ca565b90506000611434886001600160a01b0316637464fc3d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dba573d6000803e3d6000fd5b9050808211156114535761145085610e0e87610dfa86866128e1565b94505b5050600080611463838688611c3d565b9050600061147285878a611c3d565b905061147e8282612a7a565b9250505060006114a982610bf96006600a61149991906141c2565b6114a4600954612a86565b6128e1565b90506114bf816114b7611c32565b6108e3611b67565b9a9950505050505050505050565b8342111561151d5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016108c0565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c988888861154c8c612b78565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060006115a782612b9e565b905060006115b782878787612c07565b9050896001600160a01b0316816001600160a01b03161461161a5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016108c0565b6116258a8a8a611f24565b50505050505050505050565b60008281526007602052604090206001015461164c8161244e565b610aec83836126af565b6000610afb6116676006600a6141c2565b61166f611c32565b6108e3612757565b611681600061244e565b600b5460ff16156116d45760405162461bcd60e51b815260206004820152601c60248201527f436f6e747261637420616c726561647920696e697469616c697a65640000000060448201526064016108c0565b600b805460ff191660011790557f000000000000000000000000a3fa99a148fa48d14ed51d610c367c61876997f17f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841747f000000000000000000000000160532d2536175d65c03b97b0630a9802c274dad7f000000000000000000000000580a84c73811e1839f75d86d75d88cca0c241ff4600061176e3390565b90507f000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff6000196117a96001600160a01b03871684308c612c2f565b60405163095ea7b360e01b81526001600160a01b0383811660048301526024820183905288169063095ea7b3906044016020604051808303816000875af11580156117f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181c91906141ea565b5060405163095ea7b360e01b81526001600160a01b0383811660048301526024820183905287169063095ea7b3906044016020604051808303816000875af115801561186c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189091906141ea565b5060405163095ea7b360e01b81526001600160a01b0383811660048301526024820183905286169063095ea7b3906044016020604051808303816000875af11580156118e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061190491906141ea565b5060405163095ea7b360e01b81526001600160a01b0383811660048301526024820183905285169063095ea7b3906044016020604051808303816000875af1158015611954573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061197891906141ea565b5061198289612947565b5061198b612757565b98506119a7836119a28b8b6108e36006600a6141c2565b612c80565b604080516001600160a01b0385168152602081018b90529081018990527f0f91882b50d9330af0b1d4998e6af7f2eaee90ce7e77ea54fea089af166d021d9060600160405180910390a1505050505050505050565b6000600260085403611a505760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c0565b6002600855336000611a64846108db611b67565b9050611a6f81612d5f565b9250611aa56001600160a01b037f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174168685611d0e565b611aaf8285611d9f565b60408051848152602081018690526001600160a01b038416917fdf273cb619d95419a9cd0ec88123a0538c85064229baa6363788f743fff90deb910160405180910390a25050600160085592915050565b60006001600160e01b031982167f7965db0b00000000000000000000000000000000000000000000000000000000148061086a57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161461086a565b6040517fa23831060000000000000000000000000000000000000000000000000000000081527f000000000000000000000000000000000000000000000000000000000000000060048201523060248201526000907f000000000000000000000000ffd2aa58cca3a44120aaa42cea2852348a9c2ea66001600160a01b03169063a2383106906044015b602060405180830381865afa158015611c0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afb91906141d1565b6000610afb60025490565b6000611c4a848484612d83565b949350505050565b6040517f441a3e700000000000000000000000000000000000000000000000000000000081527f00000000000000000000000000000000000000000000000000000000000000006004820152602481018290527f000000000000000000000000ffd2aa58cca3a44120aaa42cea2852348a9c2ea66001600160a01b03169063441a3e7090604401600060405180830381600087803b158015611cf357600080fd5b505af1158015611d07573d6000803e3d6000fd5b5050505050565b6040516001600160a01b038316602482015260448101829052610aec9084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990931692909217909152612e32565b6001600160a01b038216611e1b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016108c0565b6001600160a01b03821660009081526020819052604090205481811015611eaa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016108c0565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611ed990849061420c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b038316611f9f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108c0565b6001600160a01b03821661201b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016108c0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000336120b47f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841746001600160a01b0316823088612c2f565b60006120be611b67565b905060006120e66120ce88612947565b610bf96120dd6006600a6141c2565b6114a489612a86565b90506120fa816120f4611c32565b84611c3d565b93508584101561214c5760405162461bcd60e51b815260206004820152601860248201527f4d696e696d756d207265717569726564206e6f74206d6574000000000000000060448201526064016108c0565b6121568885612c80565b60408051888152602081018690526001600160a01b038516917f25b428dfde728ccfaddad7e29e4ac23c24ed7fd1a6e3e3f91894a9a073f5dfff910160405180910390a2505050949350505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461223157818110156122245760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108c0565b6122318484848403611f24565b50505050565b6001600160a01b0383166122b35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016108c0565b6001600160a01b03821661232f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016108c0565b6001600160a01b038316600090815260208190526040902054818110156123be5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016108c0565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906123f59084906140cb565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161244191815260200190565b60405180910390a3612231565b610c0f8133612f17565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff16610b925760008281526007602090815260408083206001600160a01b03851684529091529020805460ff191660011790556124b63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6040517fe4c75c270000000000000000000000000000000000000000000000000000000081527f000000000000000000000000000000000000000000000000000000000000000060048201523060248201526000907f000000000000000000000000ffd2aa58cca3a44120aaa42cea2852348a9c2ea66001600160a01b03169063e4c75c2790604401611bf1565b6000306001600160a01b037f00000000000000000000000078a486306d15e7111cca541f2f1307a1cfcaf5c4161480156125e157507f000000000000000000000000000000000000000000000000000000000000008946145b1561260b57507fad2b134d696799780e281f1901cd342ad022786cc6bad939c6003152f373fa5890565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f0c78d20ad09570c5a4106910b96a1b52296d1d9feeda62e20f73764e63c16bc3828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff1615610b925760008281526007602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000610afb6127436006600a6141c2565b6108db612757565b6000610ac082846140cb565b600080600061276461278f565b91509150600080612773612973565b9150915061278682610e0e8386886128ed565b94505050505090565b6000806000807f000000000000000000000000160532d2536175d65c03b97b0630a9802c274dad6001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156127f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128179190614242565b50915091507f000000000000000000000000a3fa99a148fa48d14ed51d610c367c61876997f16001600160a01b03167f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841746001600160a01b03161061289c57806dffffffffffffffffffffffffffff16826dffffffffffffffffffffffffffff166128bf565b816dffffffffffffffffffffffffffff16816dffffffffffffffffffffffffffff165b909590945092505050565b6000610ac08284614292565b600061086a82612f97565b6000610ac0828461420c565b6000611c4a8484846130fd565b600061086a7f000000000000000000000000580a84c73811e1839f75d86d75d88cca0c241ff47f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417484613138565b6000806129538361326b565b909350905061296283826132f4565b915061296d82613424565b50919050565b6000806000612980611b67565b905060007f000000000000000000000000160532d2536175d65c03b97b0630a9802c274dad6001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156129e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a0691906141d1565b9050600080612a1361278f565b91509150612a22848385611c3d565b9550612a2f848285611c3d565b9450505050509091565b6000610ac0612a6b610d70612a61612a54623cda29886128ca565b610e0e623cda20886128ca565b86623cab64611c3d565b6114a4856107cd6107ca611c3d565b6000610ac08383613579565b6040517f1526fe270000000000000000000000000000000000000000000000000000000081527f0000000000000000000000000000000000000000000000000000000000000000600482015260009081906001600160a01b037f000000000000000000000000ffd2aa58cca3a44120aaa42cea2852348a9c2ea61690631526fe279060240160a060405180830381865afa158015612b28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b4c91906142a9565b9450505050506000612b618261ffff1661358f565b9050611c4a84612b73600a548461274b565b61359c565b6001600160a01b038116600090815260056020526040902080546001810182559061296d565b600061086a612bab612588565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000612c18878787876135a8565b91509150612c2581613695565b5095945050505050565b6040516001600160a01b03808516602483015283166044820152606481018290526122319085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401611d53565b6001600160a01b038216612cd65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016108c0565b8060026000828254612ce891906140cb565b90915550506001600160a01b03821660009081526020819052604081208054839290612d159084906140cb565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600080612d6b83611c52565b612d7483613881565b9092509050610ac082826139aa565b6000808060001985870985870292508281108382030391505080600003612dbd57838281612db357612db3614308565b0492505050610ac0565b808411612dc957600080fd5b60008486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091026000889003889004909101858311909403939093029303949094049190911702949350505050565b6000612e87826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166139b99092919063ffffffff16565b805190915015610aec5780806020019051810190612ea591906141ea565b610aec5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016108c0565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff16610b9257612f55816001600160a01b031660146139c8565b612f608360206139c8565b604051602001612f7192919061431e565b60408051601f198184030181529082905262461bcd60e51b82526108c091600401613eab565b600081600003612fa957506000919050565b600182608081901c15612fc15760409190911b9060801c5b604081901c15612fd65760209190911b9060401c5b602081901c15612feb5760109190911b9060201c5b601081901c156130005760089190911b9060101c5b600881901c156130155760049190911b9060081c5b600481901c1561302a5760029190911b9060041c5b600281901c1561303c57600182901b91505b600182858161304d5761304d614308565b048301901c9150600182858161306557613065614308565b048301901c9150600182858161307d5761307d614308565b048301901c9150600182858161309557613095614308565b048301901c915060018285816130ad576130ad614308565b048301901c915060018285816130c5576130c5614308565b048301901c915060018285816130dd576130dd614308565b048301901c9150611c4a828386816130f7576130f7614308565b04613579565b60008061310c856103e5614292565b905061312f818481613120886103e8614292565b61312a91906140cb565b612d83565b95945050505050565b60408051600280825260608201835260009283929190602083019080368337019050509050848482600081518110613172576131726143b5565b602002602001018360018151811061318c5761318c6143b5565b6001600160a01b0393841660209182029290920101529181169091527f000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff166338ed173984600184306131e0610e10426140cb565b6040518663ffffffff1660e01b81526004016132009594939291906143cb565b6000604051808303816000875af115801561321f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052613247919081019061443c565b600181518110613259576132596143b5565b60200260200101519150509392505050565b600080600061327861278f565b50905060006132878286612a39565b9050806132d65760405162461bcd60e51b815260206004820152600f60248201527f4e6f7468696e6720746f2073776170000000000000000000000000000000000060448201526064016108c0565b6132df81613bf1565b92506132eb85826128e1565b93505050915091565b6000806001600160a01b037f000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff1663e8e337007f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841747f000000000000000000000000a3fa99a148fa48d14ed51d610c367c61876997f187876001803061337a610e10426140cb565b60405160e08a901b6001600160e01b03191681526001600160a01b039889166004820152968816602488015260448701959095526064860193909352608485019190915260a484015290921660c482015260e4810191909152610104016060604051808303816000875af11580156133f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061341a91906144fa565b9695505050505050565b60405163095ea7b360e01b81526001600160a01b037f000000000000000000000000ffd2aa58cca3a44120aaa42cea2852348a9c2ea6818116600484015260248301849052917f000000000000000000000000160532d2536175d65c03b97b0630a9802c274dad9091169063095ea7b3906044016020604051808303816000875af11580156134b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134db91906141ea565b506040517fe2bbb1580000000000000000000000000000000000000000000000000000000081527f00000000000000000000000000000000000000000000000000000000000000006004820152602481018390526001600160a01b0382169063e2bbb15890604401600060405180830381600087803b15801561355d57600080fd5b505af1158015613571573d6000803e3d6000fd5b505050505050565b60008183106135885781610ac0565b5090919050565b600061086a826064614292565b6000610ac08383613c3e565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156135df575060009050600361368c565b8460ff16601b141580156135f757508460ff16601c14155b15613608575060009050600461368c565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561365c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166136855760006001925092505061368c565b9150600090505b94509492505050565b60008160048111156136a9576136a9614528565b036136b15750565b60018160048111156136c5576136c5614528565b036137125760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016108c0565b600281600481111561372657613726614528565b036137735760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016108c0565b600381600481111561378757613787614528565b036137fa5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016108c0565b600481600481111561380e5761380e614528565b03610c0f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016108c0565b60008080806001600160a01b037f000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff1663baa2abde7f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841747f000000000000000000000000a3fa99a148fa48d14ed51d610c367c61876997f18860018030613908610e10426140cb565b60405160e089901b6001600160e01b03191681526001600160a01b039788166004820152958716602487015260448601949094526064850192909252608484015290921660a482015260c481019190915260e40160408051808303816000875af115801561397a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061399e919061453e565b90969095509350505050565b6000610ac083610e0e84613c4e565b6060611c4a8484600085613c9b565b606060006139d7836002614292565b6139e29060026140cb565b67ffffffffffffffff8111156139fa576139fa61439f565b6040519080825280601f01601f191660200182016040528015613a24576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613a5b57613a5b6143b5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613abe57613abe6143b5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000613afa846002614292565b613b059060016140cb565b90505b6001811115613ba2577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110613b4657613b466143b5565b1a60f81b828281518110613b5c57613b5c6143b5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93613b9b81614562565b9050613b08565b508315610ac05760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016108c0565b600061086a7f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841747f000000000000000000000000a3fa99a148fa48d14ed51d610c367c61876997f184613138565b6000818310156135885781610ac0565b600061086a7f000000000000000000000000a3fa99a148fa48d14ed51d610c367c61876997f17f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417484613138565b606082471015613d135760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016108c0565b6001600160a01b0385163b613d6a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016108c0565b600080866001600160a01b03168587604051613d869190614579565b60006040518083038185875af1925050503d8060008114613dc3576040519150601f19603f3d011682016040523d82523d6000602084013e613dc8565b606091505b5091509150613dd8828286613de3565b979650505050505050565b60608315613df2575081610ac0565b825115613e025782518084602001fd5b8160405162461bcd60e51b81526004016108c09190613eab565b600060208284031215613e2e57600080fd5b81356001600160e01b031981168114610ac057600080fd5b6001600160a01b0381168114610c0f57600080fd5b60008060408385031215613e6e57600080fd5b8235613e7981613e46565b946020939093013593505050565b60005b83811015613ea2578181015183820152602001613e8a565b50506000910152565b6020815260008251806020840152613eca816040850160208701613e87565b601f01601f19169190910160400192915050565b600080600060608486031215613ef357600080fd5b8335613efe81613e46565b95602085013595506040909401359392505050565b600080600060608486031215613f2857600080fd5b8335613f3381613e46565b92506020840135613f4381613e46565b929592945050506040919091013590565b600060208284031215613f6657600080fd5b5035919050565b60008060408385031215613f8057600080fd5b823591506020830135613f9281613e46565b809150509250929050565b600060208284031215613faf57600080fd5b8135610ac081613e46565b600080600080600080600060e0888a031215613fd557600080fd5b8735613fe081613e46565b96506020880135613ff081613e46565b95506040880135945060608801359350608088013560ff8116811461401457600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561404457600080fd5b823561404f81613e46565b91506020830135613f9281613e46565b6000806040838503121561407257600080fd5b50508035926020909101359150565b600181811c9082168061409557607f821691505b60208210810361296d57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561086a5761086a6140b5565b600181815b808511156141195781600019048211156140ff576140ff6140b5565b8085161561410c57918102915b93841c93908002906140e3565b509250929050565b6000826141305750600161086a565b8161413d5750600061086a565b8160018114614153576002811461415d57614179565b600191505061086a565b60ff84111561416e5761416e6140b5565b50506001821b61086a565b5060208310610133831016604e8410600b841016171561419c575081810a61086a565b6141a683836140de565b80600019048211156141ba576141ba6140b5565b029392505050565b6000610ac060ff841683614121565b6000602082840312156141e357600080fd5b5051919050565b6000602082840312156141fc57600080fd5b81518015158114610ac057600080fd5b8181038181111561086a5761086a6140b5565b80516dffffffffffffffffffffffffffff8116811461423d57600080fd5b919050565b60008060006060848603121561425757600080fd5b6142608461421f565b925061426e6020850161421f565b9150604084015163ffffffff8116811461428757600080fd5b809150509250925092565b808202811582820484141761086a5761086a6140b5565b600080600080600060a086880312156142c157600080fd5b85516142cc81613e46565b80955050602086015193506040860151925060608601519150608086015161ffff811681146142fa57600080fd5b809150509295509295909350565b634e487b7160e01b600052601260045260246000fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351614356816017850160208801613e87565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351614393816028840160208801613e87565b01602801949350505050565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561441b5784516001600160a01b0316835293830193918301916001016143f6565b50506001600160a01b03969096166060850152505050608001529392505050565b6000602080838503121561444f57600080fd5b825167ffffffffffffffff8082111561446757600080fd5b818501915085601f83011261447b57600080fd5b81518181111561448d5761448d61439f565b8060051b604051601f19603f830116810181811085821117156144b2576144b261439f565b6040529182528482019250838101850191888311156144d057600080fd5b938501935b828510156144ee578451845293850193928501926144d5565b98975050505050505050565b60008060006060848603121561450f57600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052602160045260246000fd5b6000806040838503121561455157600080fd5b505080516020909101519092909150565b600081614571576145716140b5565b506000190190565b6000825161458b818460208701613e87565b919091019291505056fea2646970667358221220529da5378077e1021c658f6431f6dbd55271c7f2a6cfd1f7aebade2d2cb265fb64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000a3fa99a148fa48d14ed51d610c367c61876997f1000000000000000000000000160532d2536175d65c03b97b0630a9802c274dad000000000000000000000000580a84c73811e1839f75d86d75d88cca0c241ff4000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff000000000000000000000000ffd2aa58cca3a44120aaa42cea2852348a9c2ea60000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _usdcAddress (address): 0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174
Arg [1] : _maiAddress (address): 0xa3Fa99A148fA48D14Ed51d610c367C61876997F1
Arg [2] : _lpAddress (address): 0x160532D2536175d65C03B97b0630A9802c274daD
Arg [3] : _qiAddress (address): 0x580A84C73811E1839F75d86d75d88cCa0c241fF4
Arg [4] : _quickSwapRouterAddress (address): 0xa5E0829CaCEd8fFDD4De3c43696c57F7D7A678ff
Arg [5] : _qiDaoFarmAddress (address): 0xFFD2AA58Cca3A44120aaA42CEA2852348A9c2eA6
Arg [6] : _qiDaoPoolId (uint256): 0
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174
Arg [1] : 000000000000000000000000a3fa99a148fa48d14ed51d610c367c61876997f1
Arg [2] : 000000000000000000000000160532d2536175d65c03b97b0630a9802c274dad
Arg [3] : 000000000000000000000000580a84c73811e1839f75d86d75d88cca0c241ff4
Arg [4] : 000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff
Arg [5] : 000000000000000000000000ffd2aa58cca3a44120aaa42cea2852348a9c2ea6
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.