Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers. Name tag integration is not available in advanced view.
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | ||||
---|---|---|---|---|---|---|---|
21249521 | 3 hrs ago | 0 ETH | |||||
21249521 | 3 hrs ago | 0 ETH | |||||
21249281 | 3 hrs ago | 0 ETH | |||||
21249281 | 3 hrs ago | 0 ETH | |||||
21249172 | 4 hrs ago | 0 ETH | |||||
21248978 | 4 hrs ago | 0 ETH | |||||
21248978 | 4 hrs ago | 0 ETH | |||||
21248657 | 5 hrs ago | 0 ETH | |||||
21248657 | 5 hrs ago | 0 ETH | |||||
21248371 | 6 hrs ago | 0 ETH | |||||
21248371 | 6 hrs ago | 0 ETH | |||||
21248103 | 7 hrs ago | 0 ETH | |||||
21248103 | 7 hrs ago | 0 ETH | |||||
21247821 | 8 hrs ago | 0 ETH | |||||
21247821 | 8 hrs ago | 0 ETH | |||||
21247548 | 9 hrs ago | 0 ETH | |||||
21247548 | 9 hrs ago | 0 ETH | |||||
21247234 | 10 hrs ago | 0 ETH | |||||
21247234 | 10 hrs ago | 0 ETH | |||||
21246999 | 11 hrs ago | 0 ETH | |||||
21246999 | 11 hrs ago | 0 ETH | |||||
21246753 | 12 hrs ago | 0 ETH | |||||
21246753 | 12 hrs ago | 0 ETH | |||||
21246554 | 12 hrs ago | 0 ETH | |||||
21246554 | 12 hrs ago | 0 ETH |
Loading...
Loading
Contract Name:
AAmplToken
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 200 runs
Other Settings:
istanbul EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol'; import {SafeERC20} from '../../../dependencies/openzeppelin/contracts/SafeERC20.sol'; import {ILendingPool} from '../../../interfaces/ILendingPool.sol'; import {IAToken} from '../../../interfaces/IAToken.sol'; import {WadRayMath} from '../../libraries/math/WadRayMath.sol'; import {Errors} from '../../libraries/helpers/Errors.sol'; import {VersionedInitializable} from '../../libraries/aave-upgradeability/VersionedInitializable.sol'; import {IncentivizedERC20} from '../IncentivizedERC20.sol'; import {DataTypes} from '../../libraries/types/DataTypes.sol'; import {SignedSafeMath} from '../../../dependencies/openzeppelin/contracts/SignedSafeMath.sol'; import {UInt256Lib} from '../../../dependencies/uFragments/UInt256Lib.sol'; import {DataTypes} from '../../libraries/types/DataTypes.sol'; interface IAMPLDebtToken { function getAMPLBorrowData() external view returns (uint256, int256); } /** @title Aave-AMPL ERC20 AToken @dev Implementation of the interest bearing AMPL token for the Aave protocol @author AmpleforthOrg The AMPL AToken externally behaves similar to every other aTOKEN. It always maintains a 1:1 peg with the underlying AMPL. The following should always be true. 1) At any time, user can deposit x AMPLs to mint x aAMPLs. Total aAMPL supply increases by exactly x. 2) At any time, user can burn x aAMPLs for x AMPLs. Total aAMPL supply decreases by exactly x. 3) At any time, userA can transfer x aAMPLs to userB. userA's aAMPL balance reduces by X. userB's aAMPL balance increases by X. Total aAMPL supply exactly remains same. 4) When AMPL's supply rebases, only the 'unborrowed' aAMPL should rebase. * Say there are 1000 aAMPL, and 200 AMPL is lent out. AMPL expands by 10%. Thew new aAMPL supply should be 1080 aAMPL. * Say there are 1000 aAMPL, and 200 AMPL is lent out. AMPL contracts by 10%. Thew new aAMPL supply should be 920 aAMPL. 5) When AMPL's supply rebases, only the part of the balance of a user proportional to the available liquidity ('unborrowed') should rebase. * Say a user has deposited 1000 AMPL and receives 1000 aAMPL, and 20% of the total underlying AMPL is lent out. AMPL expands by 10%. The new aAMPL user balance should be 1080 aAMPL. * Say a user has deposited 1000 AMPL and receives 1000 aAMPL, and 20% of the total underlying AMPL is lent out. AMPL contracts by 10%. The new aAMPL supply should be 920 aAMPL. 6) The totalSupply of aAMPL should always be equal to (total AMPL held in the system) + (total principal borrowed denominated in AMPL) + (interest) Generic aToken: ATokens have a private balance and public balance. ``` # _balances[u] and _totalSupply from contract storage. Balance(u) = _balances[u] . I TotalSupply(supply) = _totalSupply . I ``` The internal (fixed-supply) balance and totalSupply are referred to as balanceScaled and scaledTotalSupply and correspond to the principal deposited. The external (elastic-supply) balance and totalSupply correspond to the principal + interest. AAMPL: AAMPL tokens have an additional scaling factor (multiplier) on top of the existing AToken structure. Thus they have 2 private balances and 1 public balance. * The internal (fixed-supply) balance and totalSupply are referred to as balanceInternal and totalSupplyInternal, used for book-keeping. * The internal (elastic-supply) balance and totalSupply are referred to as balanceScaled and scaledTotalSupply and correspond to the principal deposited. * The external (elastic-supply) balance and totalSupply correspond to the principal + interest. ``` # _balances[u] and _totalSupply from contract storage. Balance(u) = ( _balances[u] . λ ) . I where, * _balances[u] is called userBalanceInternal, raw value in contract's storage * (_balances[u] . λ) is called userBalanceScaled, aka principal deposited * (_balances[u] . λ) . I is the public userBalance, aka user's principal + interest * I is AAVE's interest rate factor * λ is the AAMPL scaling factor AND TotalSupply(u) = ( _totalSupply[u] . λ ) . I * _totalSupply[u] is called totalSupplyInternal, raw value in contract's storage * (_totalSupply[u] . λ) is called scaledTotalSupply, aka principal deposited * (_totalSupply[u] . λ) . I is the public totalSupply, aka principal + interest * I is AAVE's interest rate factor * λ is the AAMPL scaling factor ``` The AAMPL scaling factor λ is calculated as follows: ``` * Λ - Ampleforth co-efficient of expansion (retrieved from the AMPL contract) scaledTotalSupply = (totalGonsDeposited - totalGonsBorrowed) / Λ + totalPrincipalBorrowed λ = scaledTotalSupply / totalSupplyInternal ``` Additions: * The AAMPLToken stores references to the STABLE_DEBT_TOKEN, and the VARIABLE_DEBT_TOKEN contracts to calculate the total Principal borrowed (getAMPLBorrowData()), at any time. * On mint and burn a private variable `_totalGonsDeposited` keeps track of the scaled AMPL principal deposited. */ contract AAmplToken is VersionedInitializable, IncentivizedERC20, IAToken { using WadRayMath for uint256; using SafeERC20 for IERC20; using UInt256Lib for uint256; using SignedSafeMath for int256; bytes public constant EIP712_REVISION = bytes('1'); bytes32 internal constant EIP712_DOMAIN = keccak256('EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'); bytes32 public constant PERMIT_TYPEHASH = keccak256('Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)'); uint256 public constant ATOKEN_REVISION = 0x2; address public immutable UNDERLYING_ASSET_ADDRESS; address public immutable RESERVE_TREASURY_ADDRESS; ILendingPool public immutable POOL; /// @dev owner => next valid nonce to submit with permit() mapping(address => uint256) public _nonces; bytes32 public DOMAIN_SEPARATOR; // --------------------------------------------------------------------------- // aAMPL additions address public STABLE_DEBT_TOKEN_ADDRESS; address public VARIABLE_DEBT_TOKEN_ADDRESS; // This is a constant on the AMPL contract, which is used to calculate the scalar // which controls the AMPL expansion/contraction. // TOTAL_GONS/ampl.scaledTotalSupply, saving an external call to the AMPL contract // and setting it as a local contract constant. // NOTE: This should line up EXACTLY with the value on the AMPL contract uint256 private constant GONS_TOTAL_SUPPLY = uint256(type(int128).max); // Keeps track of the 'gons' deposited into the aave system int256 private _totalGonsDeposited; struct ExtData { uint256 totalAMPLSupply; uint256 totalPrincipalBorrowed; int256 totalGonsBorrowed; } // --------------------------------------------------------------------------- modifier onlyLendingPool { require(_msgSender() == address(POOL), Errors.CT_CALLER_MUST_BE_LENDING_POOL); _; } constructor( ILendingPool pool, address underlyingAssetAddress, address reserveTreasuryAddress, string memory tokenName, string memory tokenSymbol, address incentivesController ) public IncentivizedERC20(tokenName, tokenSymbol, 18, incentivesController) { POOL = pool; UNDERLYING_ASSET_ADDRESS = underlyingAssetAddress; RESERVE_TREASURY_ADDRESS = reserveTreasuryAddress; } function getRevision() internal pure virtual override returns (uint256) { return ATOKEN_REVISION; } function initialize( uint8 underlyingAssetDecimals, string calldata tokenName, string calldata tokenSymbol ) external virtual initializer { uint256 chainId; //solium-disable-next-line assembly { chainId := chainid() } DOMAIN_SEPARATOR = keccak256( abi.encode( EIP712_DOMAIN, keccak256(bytes(tokenName)), keccak256(EIP712_REVISION), chainId, address(this) ) ); _setName(tokenName); _setSymbol(tokenSymbol); _setDecimals(underlyingAssetDecimals); } function initializeDebtTokens () external { require(STABLE_DEBT_TOKEN_ADDRESS == address(0) && VARIABLE_DEBT_TOKEN_ADDRESS == address(0)); DataTypes.ReserveData memory reserveData = ILendingPool(POOL).getReserveData(UNDERLYING_ASSET_ADDRESS); STABLE_DEBT_TOKEN_ADDRESS = reserveData.stableDebtTokenAddress; VARIABLE_DEBT_TOKEN_ADDRESS = reserveData.variableDebtTokenAddress; } /** * @dev Burns aTokens from `user` and sends the equivalent amount of underlying to `receiverOfUnderlying` * - Only callable by the LendingPool, as extra state updates there need to be managed * @param user The owner of the aTokens, getting them burned * @param receiverOfUnderlying The address that will receive the underlying * @param amount The amount being burned * @param index The new liquidity index of the reserve **/ function burn( address user, address receiverOfUnderlying, uint256 amount, uint256 index ) external override onlyLendingPool { require(false, 'BURNING_IS_DISABLED'); uint256 amountScaled = amount.rayDiv(index); require(amountScaled != 0, Errors.CT_INVALID_BURN_AMOUNT); ExtData memory e = _fetchExtData(); _burnScaled(user, amountScaled, e); _totalGonsDeposited = _totalGonsDeposited.sub( _amplToGons(e.totalAMPLSupply, amountScaled).toInt256Safe() ); IERC20(UNDERLYING_ASSET_ADDRESS).safeTransfer(receiverOfUnderlying, amount); emit Transfer(user, address(0), amount); emit Burn(user, receiverOfUnderlying, amount, index); } /** * @dev Mints `amount` aTokens to `user` * - Only callable by the LendingPool, as extra state updates there need to be managed * @param user The address receiving the minted tokens * @param amount The amount of tokens getting minted * @param index The new liquidity index of the reserve * @return `true` if the the previous balance of the user was 0 */ function mint( address user, uint256 amount, uint256 index ) external override onlyLendingPool returns (bool) { require(false, 'MINTING_IS_DISABLED'); uint256 previousBalanceInternal = super.balanceOf(user); uint256 amountScaled = amount.rayDiv(index); require(amountScaled != 0, Errors.CT_INVALID_MINT_AMOUNT); ExtData memory e = _fetchExtData(); _mintScaled(user, amountScaled, e); _totalGonsDeposited = _totalGonsDeposited.add( _amplToGons(e.totalAMPLSupply, amountScaled).toInt256Safe() ); emit Transfer(address(0), user, amount); emit Mint(user, amount, index); return previousBalanceInternal == 0; } /** * @dev Mints aTokens to the reserve treasury * - Only callable by the LendingPool * @param amount The amount of tokens getting minted * @param index The new liquidity index of the reserve */ function mintToTreasury(uint256 amount, uint256 index) external override onlyLendingPool { if (amount == 0) { return; } // Compared to the normal mint, we don't check for rounding errors. // The amount to mint can easily be very small since it is a fraction of the interest accrued. // In that case, the treasury will experience a (very small) loss, but it // wont cause potentially valid transactions to fail. uint256 amountScaled = amount.rayDiv(index); // require(amountScaled != 0, Errors.CT_INVALID_MINT_AMOUNT); ExtData memory e = _fetchExtData(); _mintScaled(RESERVE_TREASURY_ADDRESS, amountScaled, e); _totalGonsDeposited = _totalGonsDeposited.add( _amplToGons(e.totalAMPLSupply, amountScaled).toInt256Safe() ); emit Transfer(address(0), RESERVE_TREASURY_ADDRESS, amount); emit Mint(RESERVE_TREASURY_ADDRESS, amount, index); } /** * @dev Transfers aTokens in the event of a borrow being liquidated, in case the liquidators reclaims the aToken * - Only callable by the LendingPool * @param from The address getting liquidated, current owner of the aTokens * @param to The recipient * @param value The amount of tokens getting transferred **/ function transferOnLiquidation( address from, address to, uint256 value ) external override onlyLendingPool { // Being a normal transfer, the Transfer() and BalanceTransfer() are emitted // so no need to emit a specific event here _transfer(from, to, value, false); emit Transfer(from, to, value); } /** * @dev Transfers the underlying asset to `target`. Used by the LendingPool to transfer * assets in borrow(), withdraw() and flashLoan() * @param target The recipient of the aTokens * @param amount The amount getting transferred * @return The amount transferred **/ function transferUnderlyingTo(address target, uint256 amount) external override onlyLendingPool returns (uint256) { require(false, 'FLASHLOANING_IS_DISABLED'); IERC20(UNDERLYING_ASSET_ADDRESS).safeTransfer(target, amount); return amount; } /** * @dev implements the permit function as for * https://github.com/ethereum/EIPs/blob/8a34d644aacf0f9f8f00815307fd7dd5da07655f/EIPS/eip-2612.md * @param owner The owner of the funds * @param spender The spender * @param value The amount * @param deadline The deadline timestamp, type(uint256).max for max deadline * @param v Signature param * @param s Signature param * @param r Signature param */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external { require(owner != address(0), 'INVALID_OWNER'); //solium-disable-next-line require(block.timestamp <= deadline, 'INVALID_EXPIRATION'); uint256 currentValidNonce = _nonces[owner]; bytes32 digest = keccak256( abi.encodePacked( '\x19\x01', DOMAIN_SEPARATOR, keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, currentValidNonce, deadline)) ) ); require(owner == ecrecover(digest, v, r, s), 'INVALID_SIGNATURE'); _nonces[owner] = currentValidNonce.add(1); _approve(owner, spender, value); } /** * @dev Transfers the aTokens between two users. Validates the transfer * (ie checks for valid HF after the transfer) if required * @param from The source address * @param to The destination address * @param amount The amount getting transferred * @param validate `true` if the transfer needs to be validated **/ function _transfer( address from, address to, uint256 amount, bool validate ) internal { require(false, 'TRANSFER_IS_DISABLED'); uint256 index = POOL.getReserveNormalizedIncome(UNDERLYING_ASSET_ADDRESS); uint256 amountScaled = amount.rayDiv(index); ExtData memory e = _fetchExtData(); uint256 totalSupplyInternal = super.totalSupply(); uint256 scaledTotalSupply = _scaledTotalSupply(e, _totalGonsDeposited); uint256 fromBalanceScaled = _scaledBalanceOf(super.balanceOf(from), totalSupplyInternal, scaledTotalSupply); uint256 toBalanceScaled = _scaledBalanceOf(super.balanceOf(to), totalSupplyInternal, scaledTotalSupply); uint256 fromBalanceBefore = fromBalanceScaled.rayMul(index); uint256 toBalanceBefore = toBalanceScaled.rayMul(index); _transferScaled(from, to, amountScaled, e); if (validate) { POOL.finalizeTransfer( UNDERLYING_ASSET_ADDRESS, from, to, amount, fromBalanceBefore, toBalanceBefore ); } emit BalanceTransfer(from, to, amount, index); } function _transfer( address from, address to, uint256 amount ) internal override { _transfer(from, to, amount, true); } // --------------------------------------------------------------------------- // View methods /** * @dev Returns the scaled total supply of the variable debt token. Represents sum(debt/index) * aka, scaledTotalSupply = (totalGonsDeposited - totalGonsBorrowed) / Λ + totalPrincipalBorrowed * @return the scaled total supply **/ function scaledTotalSupply() public view virtual override returns (uint256) { return _scaledTotalSupply(_fetchExtData(), _totalGonsDeposited); } /** * @dev Returns the scaled balance of the user. The scaled balance is the sum of all the * updated stored balance divided by the reserve's liquidity index at the moment of the update. * aka, userBalanceScaled = userBalanceInternal/totalSupplyInternal * scaledTotalSupply * @param user The user whose balance is calculated * @return The scaled balance of the user **/ function scaledBalanceOf(address user) external view override returns (uint256) { return _scaledBalanceOf( super.balanceOf(user), super.totalSupply(), _scaledTotalSupply(_fetchExtData(), _totalGonsDeposited) ); } /** * @dev Returns the scaled balance of the user and the scaled total supply. * @param user The address of the user * @return The scaled balance of the user * @return The scaled balance and the scaled total supply **/ function getScaledUserBalanceAndSupply(address user) external view override returns (uint256, uint256) { uint256 scaledTotalSupply = _scaledTotalSupply(_fetchExtData(), _totalGonsDeposited); return ( _scaledBalanceOf(super.balanceOf(user), super.totalSupply(), scaledTotalSupply), scaledTotalSupply ); } /** * @dev calculates the total supply of the specific aToken * since the balance of every single user increases over time, the total supply * does that too. * @return the current total supply **/ function totalSupply() public view override(IncentivizedERC20, IERC20) returns (uint256) { uint256 currentSupplyScaled = _scaledTotalSupply(_fetchExtData(), _totalGonsDeposited); if (currentSupplyScaled == 0) { // currentSupplyInternal should also be zero in this case (super.totalSupply()) return 0; } return currentSupplyScaled.rayMul(POOL.getReserveNormalizedIncome(UNDERLYING_ASSET_ADDRESS)); } /** * @dev Calculates the balance of the user: principal balance + interest generated by the principal * @param user The user whose balance is calculated * @return The balance of the user **/ function balanceOf(address user) public view override(IncentivizedERC20, IERC20) returns (uint256) { uint256 userBalanceScaled = _scaledBalanceOf( super.balanceOf(user), super.totalSupply(), _scaledTotalSupply(_fetchExtData(), _totalGonsDeposited) ); return userBalanceScaled.rayMul(POOL.getReserveNormalizedIncome(UNDERLYING_ASSET_ADDRESS)); } // --------------------------------------------------------------------------- // AAMPL custom methods /** * @dev transferAmountInternal = (transferAmountScaled * totalSupplyInternal) / scaledTotalSupply **/ function _transferScaled(address from, address to, uint256 transferAmountScaled, ExtData memory e) private returns (uint256) { uint256 totalSupplyInternal = super.totalSupply(); uint256 scaledTotalSupply = _scaledTotalSupply(e, _totalGonsDeposited); uint256 transferAmountInternal = transferAmountScaled.mul(totalSupplyInternal).div(scaledTotalSupply); super._transfer(from, to, transferAmountInternal); } /** * @dev mintAmountInternal is mint such that the following holds true * * (userBalanceInternalBefore+mintAmountInternal)/(totalSupplyInternalBefore+mintAmountInternal) * = (userBalanceScaledBefore+mintAmountScaled)/(scaledTotalSupplyBefore+mintAmountScaled) * * scaledTotalSupplyAfter = scaledTotalSupplyBefore+mintAmountScaled * userBalanceScaledAfter = userBalanceScaledBefore+mintAmountScaled * otherBalanceScaledBefore = scaledTotalSupplyBefore-userBalanceScaledBefore * * mintAmountInternal = (totalSupplyInternalBefore*userBalanceScaledAfter - scaledTotalSupplyAfter*userBalanceInternalBefore)/otherBalanceScaledBefore **/ function _mintScaled(address user, uint256 mintAmountScaled, ExtData memory e) private { uint256 totalSupplyInternalBefore = super.totalSupply(); uint256 userBalanceInternalBefore = super.balanceOf(user); // First mint if(totalSupplyInternalBefore == 0) { uint256 mintAmountInternal = _amplToGons(e.totalAMPLSupply, mintAmountScaled); _mint(user, mintAmountInternal); return; } uint256 scaledTotalSupplyBefore = _scaledTotalSupply(e, _totalGonsDeposited); uint256 userBalanceScaledBefore = _scaledBalanceOf(userBalanceInternalBefore, totalSupplyInternalBefore, scaledTotalSupplyBefore); uint256 otherBalanceScaledBefore = scaledTotalSupplyBefore.sub(userBalanceScaledBefore); uint256 scaledTotalSupplyAfter = scaledTotalSupplyBefore.add(mintAmountScaled); uint256 userBalanceScaledAfter = userBalanceScaledBefore.add(mintAmountScaled); uint256 mintAmountInternal = 0; // Lone user if(otherBalanceScaledBefore == 0) { uint256 mintAmountInternal = mintAmountScaled.mul(totalSupplyInternalBefore).div(scaledTotalSupplyBefore); _mint(user, mintAmountInternal); return; } mintAmountInternal = totalSupplyInternalBefore .mul(userBalanceScaledAfter) .sub(scaledTotalSupplyAfter.mul(userBalanceInternalBefore)) .div(otherBalanceScaledBefore); _mint(user, mintAmountInternal); } /** * @dev burnAmountInternal is burnt such that the following holds true * * (userBalanceInternalBefore-burnAmountInternal)/(totalSupplyInternalBefore-burnAmountInternal) * = (userBalanceScaledBefore-burnAmountScaled)/(scaledTotalSupplyBefore-burnAmountScaled) * * scaledTotalSupplyAfter = scaledTotalSupplyBefore-burnAmountScaled * userBalanceScaledAfter = userBalanceScaledBefore-burnAmountScaled * otherBalanceScaledBefore = scaledTotalSupplyBefore-userBalanceScaledBefore * * burnAmountInternal = (scaledTotalSupplyAfter*userBalanceInternalBefore - totalSupplyInternalBefore*userBalanceScaledAfter)/otherBalanceScaledBefore **/ function _burnScaled(address user, uint256 burnAmountScaled, ExtData memory e) private { uint256 totalSupplyInternalBefore = super.totalSupply(); uint256 userBalanceInternalBefore = super.balanceOf(user); uint256 scaledTotalSupplyBefore = _scaledTotalSupply(e, _totalGonsDeposited); uint256 userBalanceScaledBefore = _scaledBalanceOf(userBalanceInternalBefore, totalSupplyInternalBefore, scaledTotalSupplyBefore); uint256 otherBalanceScaledBefore = scaledTotalSupplyBefore.sub(userBalanceScaledBefore); uint256 scaledTotalSupplyAfter = scaledTotalSupplyBefore.sub(burnAmountScaled); uint256 userBalanceScaledAfter = userBalanceScaledBefore.sub(burnAmountScaled); uint256 burnAmountInternal = 0; // Lone user if(otherBalanceScaledBefore == 0) { uint256 burnAmountInternal = burnAmountScaled.mul(totalSupplyInternalBefore).div(scaledTotalSupplyBefore); _burn(user, burnAmountInternal); return; } burnAmountInternal = scaledTotalSupplyAfter .mul(userBalanceInternalBefore) .sub(totalSupplyInternalBefore.mul(userBalanceScaledAfter)) .div(otherBalanceScaledBefore); _burn(user, burnAmountInternal); } /** * @dev balanceOfScaled = balanceInternal / totalSupplyInternal * scaledTotalSupply * = λ . balanceInternal **/ function _scaledBalanceOf(uint256 balanceInternal, uint256 totalSupplyInternal, uint256 scaledTotalSupply) private pure returns (uint256) { if (balanceInternal == 0 || scaledTotalSupply == 0) { return 0; } return balanceInternal.wayMul(scaledTotalSupply).wayDiv(totalSupplyInternal); } /** * @dev scaledTotalSupply = (totalGonsDeposited - totalGonsBorrowed) / Λ + totalPrincipalBorrowed * = λ . totalSupplyInternal **/ function _scaledTotalSupply(ExtData memory e, int256 totalGonsDeposited) private pure returns (uint256) { // require(totalGonsDeposited>=e.totalGonsBorrowed); return _gonsToAMPL(e.totalAMPLSupply, uint256(totalGonsDeposited.sub(e.totalGonsBorrowed))) .add(e.totalPrincipalBorrowed); } /** * @dev Helper method to convert gons to AMPL **/ function _gonsToAMPL(uint256 totalAMPLSupply, uint256 gonValue) private pure returns (uint256) { return gonValue.wayMul(totalAMPLSupply).wayDiv(GONS_TOTAL_SUPPLY); } /** * @dev Helper method to convert AMPL to gons **/ function _amplToGons(uint256 totalAMPLSupply, uint256 amplValue) private pure returns (uint256) { return amplValue.mul(GONS_TOTAL_SUPPLY).div(totalAMPLSupply); } /** * @dev Queries external contracts and fetches data used for aTokenMath * - AMPL scalar form Ampleforth ERC-20 (Λ) * - principal borrowed and Gons borrowed from the debt contracts **/ function _fetchExtData() internal view returns (ExtData memory) { ExtData memory _extContractData; _extContractData.totalAMPLSupply = IERC20(UNDERLYING_ASSET_ADDRESS).totalSupply(); uint256 stablePrincipal; int256 stablePrincipalScaled; (stablePrincipal, stablePrincipalScaled) = IAMPLDebtToken(STABLE_DEBT_TOKEN_ADDRESS).getAMPLBorrowData(); uint256 variablePrincipal; int256 variablePrincipalScaled; (variablePrincipal, variablePrincipalScaled) = IAMPLDebtToken(VARIABLE_DEBT_TOKEN_ADDRESS).getAMPLBorrowData(); _extContractData.totalPrincipalBorrowed = stablePrincipal.add(variablePrincipal); _extContractData.totalGonsBorrowed = stablePrincipalScaled.add(variablePrincipalScaled); return _extContractData; } }
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import {IERC20} from './IERC20.sol'; import {SafeMath} from './SafeMath.sol'; import {Address} from './Address.sol'; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } function safeApprove( IERC20 token, address spender, uint256 value ) internal { 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 callOptionalReturn(IERC20 token, bytes memory data) private { require(address(token).isContract(), 'SafeERC20: call to non-contract'); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, 'SafeERC20: low-level call failed'); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), 'SafeERC20: ERC20 operation did not succeed'); } } }
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import {ILendingPoolAddressesProvider} from './ILendingPoolAddressesProvider.sol'; import {DataTypes} from '../protocol/libraries/types/DataTypes.sol'; interface ILendingPool { /** * @dev Emitted on deposit() * @param reserve The address of the underlying asset of the reserve * @param user The address initiating the deposit * @param onBehalfOf The beneficiary of the deposit, receiving the aTokens * @param amount The amount deposited * @param referral The referral code used **/ event Deposit( address indexed reserve, address user, address indexed onBehalfOf, uint256 amount, uint16 indexed referral ); /** * @dev Emitted on withdraw() * @param reserve The address of the underlyng asset being withdrawn * @param user The address initiating the withdrawal, owner of aTokens * @param to Address that will receive the underlying * @param amount The amount to be withdrawn **/ event Withdraw(address indexed reserve, address indexed user, address indexed to, uint256 amount); /** * @dev Emitted on borrow() and flashLoan() when debt needs to be opened * @param reserve The address of the underlying asset being borrowed * @param user The address of the user initiating the borrow(), receiving the funds on borrow() or just * initiator of the transaction on flashLoan() * @param onBehalfOf The address that will be getting the debt * @param amount The amount borrowed out * @param borrowRateMode The rate mode: 1 for Stable, 2 for Variable * @param borrowRate The numeric rate at which the user has borrowed * @param referral The referral code used **/ event Borrow( address indexed reserve, address user, address indexed onBehalfOf, uint256 amount, uint256 borrowRateMode, uint256 borrowRate, uint16 indexed referral ); /** * @dev Emitted on repay() * @param reserve The address of the underlying asset of the reserve * @param user The beneficiary of the repayment, getting his debt reduced * @param repayer The address of the user initiating the repay(), providing the funds * @param amount The amount repaid **/ event Repay( address indexed reserve, address indexed user, address indexed repayer, uint256 amount ); /** * @dev Emitted on swapBorrowRateMode() * @param reserve The address of the underlying asset of the reserve * @param user The address of the user swapping his rate mode * @param rateMode The rate mode that the user wants to swap to **/ event Swap(address indexed reserve, address indexed user, uint256 rateMode); /** * @dev Emitted on setUserUseReserveAsCollateral() * @param reserve The address of the underlying asset of the reserve * @param user The address of the user enabling the usage as collateral **/ event ReserveUsedAsCollateralEnabled(address indexed reserve, address indexed user); /** * @dev Emitted on setUserUseReserveAsCollateral() * @param reserve The address of the underlying asset of the reserve * @param user The address of the user enabling the usage as collateral **/ event ReserveUsedAsCollateralDisabled(address indexed reserve, address indexed user); /** * @dev Emitted on rebalanceStableBorrowRate() * @param reserve The address of the underlying asset of the reserve * @param user The address of the user for which the rebalance has been executed **/ event RebalanceStableBorrowRate(address indexed reserve, address indexed user); /** * @dev Emitted on flashLoan() * @param target The address of the flash loan receiver contract * @param initiator The address initiating the flash loan * @param asset The address of the asset being flash borrowed * @param amount The amount flash borrowed * @param premium The fee flash borrowed * @param referralCode The referral code used **/ event FlashLoan( address indexed target, address indexed initiator, address indexed asset, uint256 amount, uint256 premium, uint16 referralCode ); /** * @dev Emitted when the pause is triggered. */ event Paused(); /** * @dev Emitted when the pause is lifted. */ event Unpaused(); /** * @dev Emitted when a borrower is liquidated. This event is emitted by the LendingPool via * LendingPoolCollateral manager using a DELEGATECALL * This allows to have the events in the generated ABI for LendingPool. * @param collateralAsset The address of the underlying asset used as collateral, to receive as result of the liquidation * @param debtAsset The address of the underlying borrowed asset to be repaid with the liquidation * @param user The address of the borrower getting liquidated * @param debtToCover The debt amount of borrowed `asset` the liquidator wants to cover * @param liquidatedCollateralAmount The amount of collateral received by the liiquidator * @param liquidator The address of the liquidator * @param receiveAToken `true` if the liquidators wants to receive the collateral aTokens, `false` if he wants * to receive the underlying collateral asset directly **/ event LiquidationCall( address indexed collateralAsset, address indexed debtAsset, address indexed user, uint256 debtToCover, uint256 liquidatedCollateralAmount, address liquidator, bool receiveAToken ); /** * @dev Emitted when the state of a reserve is updated. NOTE: This event is actually declared * in the ReserveLogic library and emitted in the updateInterestRates() function. Since the function is internal, * the event will actually be fired by the LendingPool contract. The event is therefore replicated here so it * gets added to the LendingPool ABI * @param reserve The address of the underlying asset of the reserve * @param liquidityRate The new liquidity rate * @param stableBorrowRate The new stable borrow rate * @param variableBorrowRate The new variable borrow rate * @param liquidityIndex The new liquidity index * @param variableBorrowIndex The new variable borrow index **/ event ReserveDataUpdated( address indexed reserve, uint256 liquidityRate, uint256 stableBorrowRate, uint256 variableBorrowRate, uint256 liquidityIndex, uint256 variableBorrowIndex ); /** * @dev Deposits an `amount` of underlying asset into the reserve, receiving in return overlying aTokens. * - E.g. User deposits 100 USDC and gets in return 100 aUSDC * @param asset The address of the underlying asset to deposit * @param amount The amount to be deposited * @param onBehalfOf The address that will receive the aTokens, same as msg.sender if the user * wants to receive them on his own wallet, or a different address if the beneficiary of aTokens * is a different wallet * @param referralCode Code used to register the integrator originating the operation, for potential rewards. * 0 if the action is executed directly by the user, without any middle-man **/ function deposit( address asset, uint256 amount, address onBehalfOf, uint16 referralCode ) external; /** * @dev Withdraws an `amount` of underlying asset from the reserve, burning the equivalent aTokens owned * E.g. User has 100 aUSDC, calls withdraw() and receives 100 USDC, burning the 100 aUSDC * @param asset The address of the underlying asset to withdraw * @param amount The underlying amount to be withdrawn * - Send the value type(uint256).max in order to withdraw the whole aToken balance * @param to Address that will receive the underlying, same as msg.sender if the user * wants to receive it on his own wallet, or a different address if the beneficiary is a * different wallet * @return The final amount withdrawn **/ function withdraw( address asset, uint256 amount, address to ) external returns (uint256); /** * @dev Allows users to borrow a specific `amount` of the reserve underlying asset, provided that the borrower * already deposited enough collateral, or he was given enough allowance by a credit delegator on the * corresponding debt token (StableDebtToken or VariableDebtToken) * - E.g. User borrows 100 USDC passing as `onBehalfOf` his own address, receiving the 100 USDC in his wallet * and 100 stable/variable debt tokens, depending on the `interestRateMode` * @param asset The address of the underlying asset to borrow * @param amount The amount to be borrowed * @param interestRateMode The interest rate mode at which the user wants to borrow: 1 for Stable, 2 for Variable * @param referralCode Code used to register the integrator originating the operation, for potential rewards. * 0 if the action is executed directly by the user, without any middle-man * @param onBehalfOf Address of the user who will receive the debt. Should be the address of the borrower itself * calling the function if he wants to borrow against his own collateral, or the address of the credit delegator * if he has been given credit delegation allowance **/ function borrow( address asset, uint256 amount, uint256 interestRateMode, uint16 referralCode, address onBehalfOf ) external; /** * @notice Repays a borrowed `amount` on a specific reserve, burning the equivalent debt tokens owned * - E.g. User repays 100 USDC, burning 100 variable/stable debt tokens of the `onBehalfOf` address * @param asset The address of the borrowed underlying asset previously borrowed * @param amount The amount to repay * - Send the value type(uint256).max in order to repay the whole debt for `asset` on the specific `debtMode` * @param rateMode The interest rate mode at of the debt the user wants to repay: 1 for Stable, 2 for Variable * @param onBehalfOf Address of the user who will get his debt reduced/removed. Should be the address of the * user calling the function if he wants to reduce/remove his own debt, or the address of any other * other borrower whose debt should be removed * @return The final amount repaid **/ function repay( address asset, uint256 amount, uint256 rateMode, address onBehalfOf ) external returns (uint256); /** * @dev Allows a borrower to swap his debt between stable and variable mode, or viceversa * @param asset The address of the underlying asset borrowed * @param rateMode The rate mode that the user wants to swap to **/ function swapBorrowRateMode(address asset, uint256 rateMode) external; /** * @dev Rebalances the stable interest rate of a user to the current stable rate defined on the reserve. * - Users can be rebalanced if the following conditions are satisfied: * 1. Usage ratio is above 95% * 2. the current deposit APY is below REBALANCE_UP_THRESHOLD * maxVariableBorrowRate, which means that too much has been * borrowed at a stable rate and depositors are not earning enough * @param asset The address of the underlying asset borrowed * @param user The address of the user to be rebalanced **/ function rebalanceStableBorrowRate(address asset, address user) external; /** * @dev Allows depositors to enable/disable a specific deposited asset as collateral * @param asset The address of the underlying asset deposited * @param useAsCollateral `true` if the user wants to use the deposit as collateral, `false` otherwise **/ function setUserUseReserveAsCollateral(address asset, bool useAsCollateral) external; /** * @dev Function to liquidate a non-healthy position collateral-wise, with Health Factor below 1 * - The caller (liquidator) covers `debtToCover` amount of debt of the user getting liquidated, and receives * a proportionally amount of the `collateralAsset` plus a bonus to cover market risk * @param collateralAsset The address of the underlying asset used as collateral, to receive as result of the liquidation * @param debtAsset The address of the underlying borrowed asset to be repaid with the liquidation * @param user The address of the borrower getting liquidated * @param debtToCover The debt amount of borrowed `asset` the liquidator wants to cover * @param receiveAToken `true` if the liquidators wants to receive the collateral aTokens, `false` if he wants * to receive the underlying collateral asset directly **/ function liquidationCall( address collateralAsset, address debtAsset, address user, uint256 debtToCover, bool receiveAToken ) external; /** * @dev Allows smartcontracts to access the liquidity of the pool within one transaction, * as long as the amount taken plus a fee is returned. * IMPORTANT There are security concerns for developers of flashloan receiver contracts that must be kept into consideration. * For further details please visit https://developers.aave.com * @param receiverAddress The address of the contract receiving the funds, implementing the IFlashLoanReceiver interface * @param assets The addresses of the assets being flash-borrowed * @param amounts The amounts amounts being flash-borrowed * @param modes Types of the debt to open if the flash loan is not returned: * 0 -> Don't open any debt, just revert if funds can't be transferred from the receiver * 1 -> Open debt at stable rate for the value of the amount flash-borrowed to the `onBehalfOf` address * 2 -> Open debt at variable rate for the value of the amount flash-borrowed to the `onBehalfOf` address * @param onBehalfOf The address that will receive the debt in the case of using on `modes` 1 or 2 * @param params Variadic packed params to pass to the receiver as extra information * @param referralCode Code used to register the integrator originating the operation, for potential rewards. * 0 if the action is executed directly by the user, without any middle-man **/ function flashLoan( address receiverAddress, address[] calldata assets, uint256[] calldata amounts, uint256[] calldata modes, address onBehalfOf, bytes calldata params, uint16 referralCode ) external; /** * @dev Returns the user account data across all the reserves * @param user The address of the user * @return totalCollateralETH the total collateral in ETH of the user * @return totalDebtETH the total debt in ETH of the user * @return availableBorrowsETH the borrowing power left of the user * @return currentLiquidationThreshold the liquidation threshold of the user * @return ltv the loan to value of the user * @return healthFactor the current health factor of the user **/ function getUserAccountData(address user) external view returns ( uint256 totalCollateralETH, uint256 totalDebtETH, uint256 availableBorrowsETH, uint256 currentLiquidationThreshold, uint256 ltv, uint256 healthFactor ); function initReserve( address reserve, address aTokenAddress, address stableDebtAddress, address variableDebtAddress, address interestRateStrategyAddress ) external; function setReserveInterestRateStrategyAddress(address reserve, address rateStrategyAddress) external; function setConfiguration(address reserve, uint256 configuration) external; /** * @dev Returns the configuration of the reserve * @param asset The address of the underlying asset of the reserve * @return The configuration of the reserve **/ function getConfiguration(address asset) external view returns (DataTypes.ReserveConfigurationMap memory); /** * @dev Returns the configuration of the user across all the reserves * @param user The user address * @return The configuration of the user **/ function getUserConfiguration(address user) external view returns (DataTypes.UserConfigurationMap memory); /** * @dev Returns the normalized income normalized income of the reserve * @param asset The address of the underlying asset of the reserve * @return The reserve's normalized income */ function getReserveNormalizedIncome(address asset) external view returns (uint256); /** * @dev Returns the normalized variable debt per unit of asset * @param asset The address of the underlying asset of the reserve * @return The reserve normalized variable debt */ function getReserveNormalizedVariableDebt(address asset) external view returns (uint256); /** * @dev Returns the state and configuration of the reserve * @param asset The address of the underlying asset of the reserve * @return The state of the reserve **/ function getReserveData(address asset) external view returns (DataTypes.ReserveData memory); function finalizeTransfer( address asset, address from, address to, uint256 amount, uint256 balanceFromAfter, uint256 balanceToBefore ) external; function getReservesList() external view returns (address[] memory); function getAddressesProvider() external view returns (ILendingPoolAddressesProvider); function setPause(bool val) external; function paused() external view returns (bool); }
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; import {IERC20} from '../dependencies/openzeppelin/contracts/IERC20.sol'; import {IScaledBalanceToken} from './IScaledBalanceToken.sol'; interface IAToken is IERC20, IScaledBalanceToken { /** * @dev Emitted after the mint action * @param from The address performing the mint * @param value The amount being * @param index The new liquidity index of the reserve **/ event Mint(address indexed from, uint256 value, uint256 index); /** * @dev Mints `amount` aTokens to `user` * @param user The address receiving the minted tokens * @param amount The amount of tokens getting minted * @param index The new liquidity index of the reserve * @return `true` if the the previous balance of the user was 0 */ function mint( address user, uint256 amount, uint256 index ) external returns (bool); /** * @dev Emitted after aTokens are burned * @param from The owner of the aTokens, getting them burned * @param target The address that will receive the underlying * @param value The amount being burned * @param index The new liquidity index of the reserve **/ event Burn(address indexed from, address indexed target, uint256 value, uint256 index); /** * @dev Emitted during the transfer action * @param from The user whose tokens are being transferred * @param to The recipient * @param value The amount being transferred * @param index The new liquidity index of the reserve **/ event BalanceTransfer(address indexed from, address indexed to, uint256 value, uint256 index); /** * @dev Burns aTokens from `user` and sends the equivalent amount of underlying to `receiverOfUnderlying` * @param user The owner of the aTokens, getting them burned * @param receiverOfUnderlying The address that will receive the underlying * @param amount The amount being burned * @param index The new liquidity index of the reserve **/ function burn( address user, address receiverOfUnderlying, uint256 amount, uint256 index ) external; /** * @dev Mints aTokens to the reserve treasury * @param amount The amount of tokens getting minted * @param index The new liquidity index of the reserve */ function mintToTreasury(uint256 amount, uint256 index) external; /** * @dev Transfers aTokens in the event of a borrow being liquidated, in case the liquidators reclaims the aToken * @param from The address getting liquidated, current owner of the aTokens * @param to The recipient * @param value The amount of tokens getting transferred **/ function transferOnLiquidation( address from, address to, uint256 value ) external; /** * @dev Transfers the underlying asset to `target`. Used by the LendingPool to transfer * assets in borrow(), withdraw() and flashLoan() * @param user The recipient of the aTokens * @param amount The amount getting transferred * @return The amount transferred **/ function transferUnderlyingTo(address user, uint256 amount) external returns (uint256); }
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; import {Errors} from '../helpers/Errors.sol'; /** * @title WadRayMath library * @author Aave * @dev Provides mul and div function for wads (decimal numbers with 18 digits precision) and rays (decimals with 27 digits) **/ library WadRayMath { uint256 internal constant WAY = 1e9; uint256 internal constant halfWAY = WAY / 2; uint256 internal constant WAD = 1e18; uint256 internal constant halfWAD = WAD / 2; uint256 internal constant RAY = 1e27; uint256 internal constant halfRAY = RAY / 2; uint256 internal constant WAD_RAY_RATIO = 1e9; uint256 internal constant WAY_WAD_RATIO = 1e9; uint256 internal constant WAY_RAY_RATIO = 1e18; /** * @return One ray, 1e27 **/ function ray() internal pure returns (uint256) { return RAY; } /** * @return One wad, 1e18 **/ function wad() internal pure returns (uint256) { return WAD; } /** * @return One way, 1e9 **/ function way() internal pure returns (uint256) { return WAD; } /** * @return Half ray, 1e27/2 **/ function halfRay() internal pure returns (uint256) { return halfRAY; } /** * @return Half wad, 1e18/2 **/ function halfWad() internal pure returns (uint256) { return halfWAD; } /** * @return Half way, 1e9/2 **/ function halfWay() internal pure returns (uint256) { return halfWAY; } /** * @dev Multiplies two way, rounding half up to the nearest way * @param a Way * @param b Way * @return The result of a*b, in way **/ function wayMul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0 || b == 0) { return 0; } require(a <= (type(uint256).max - halfWAY) / b, Errors.MATH_MULTIPLICATION_OVERFLOW); return (a * b + halfWAY) / WAY; } /** * @dev Divides two way, rounding half up to the nearest way * @param a Way * @param b Way * @return The result of a/b, in way **/ function wayDiv(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, Errors.MATH_DIVISION_BY_ZERO); uint256 halfB = b / 2; require(a <= (type(uint256).max - halfB) / WAY, Errors.MATH_MULTIPLICATION_OVERFLOW); return (a * WAY + halfB) / b; } /** * @dev Multiplies two wad, rounding half up to the nearest wad * @param a Wad * @param b Wad * @return The result of a*b, in wad **/ function wadMul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0 || b == 0) { return 0; } require(a <= (type(uint256).max - halfWAD) / b, Errors.MATH_MULTIPLICATION_OVERFLOW); return (a * b + halfWAD) / WAD; } /** * @dev Divides two wad, rounding half up to the nearest wad * @param a Wad * @param b Wad * @return The result of a/b, in wad **/ function wadDiv(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, Errors.MATH_DIVISION_BY_ZERO); uint256 halfB = b / 2; require(a <= (type(uint256).max - halfB) / WAD, Errors.MATH_MULTIPLICATION_OVERFLOW); return (a * WAD + halfB) / b; } /** * @dev Multiplies two ray, rounding half up to the nearest ray * @param a Ray * @param b Ray * @return The result of a*b, in ray **/ function rayMul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0 || b == 0) { return 0; } require(a <= (type(uint256).max - halfRAY) / b, Errors.MATH_MULTIPLICATION_OVERFLOW); return (a * b + halfRAY) / RAY; } /** * @dev Divides two ray, rounding half up to the nearest ray * @param a Ray * @param b Ray * @return The result of a/b, in ray **/ function rayDiv(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, Errors.MATH_DIVISION_BY_ZERO); uint256 halfB = b / 2; require(a <= (type(uint256).max - halfB) / RAY, Errors.MATH_MULTIPLICATION_OVERFLOW); return (a * RAY + halfB) / b; } /** * @dev Casts ray down to wad * @param a Ray * @return a casted to wad, rounded half up to the nearest wad **/ function rayToWad(uint256 a) internal pure returns (uint256) { uint256 halfRatio = WAD_RAY_RATIO / 2; uint256 result = halfRatio + a; require(result >= halfRatio, Errors.MATH_ADDITION_OVERFLOW); return result / WAD_RAY_RATIO; } /** * @dev Converts wad up to ray * @param a Wad * @return a converted in ray **/ function wadToRay(uint256 a) internal pure returns (uint256) { uint256 result = a * WAD_RAY_RATIO; require(result / WAD_RAY_RATIO == a, Errors.MATH_MULTIPLICATION_OVERFLOW); return result; } function rayToWay(uint256 a) internal pure returns (uint256) { uint256 halfRatio = WAY_RAY_RATIO / 2; uint256 result = halfRatio + a; require(result >= halfRatio, Errors.MATH_ADDITION_OVERFLOW); return result / WAY_RAY_RATIO; } /** * @dev Converts way up to ray * @param a Way * @return a converted in ray **/ function wayToRay(uint256 a) internal pure returns (uint256) { uint256 result = a * WAY_RAY_RATIO; require(result / WAY_RAY_RATIO == a, Errors.MATH_MULTIPLICATION_OVERFLOW); return result; } /** * @dev Casts wad down to way * @param a Wad * @return a casted to way, rounded half up to the nearest way **/ function wadToWay(uint256 a) internal pure returns (uint256) { uint256 halfRatio = WAY_WAD_RATIO / 2; uint256 result = halfRatio + a; require(result >= halfRatio, Errors.MATH_ADDITION_OVERFLOW); return result / WAY_WAD_RATIO; } /** * @dev Converts way up to wad * @param a Way * @return a converted in wad **/ function wayToWad(uint256 a) internal pure returns (uint256) { uint256 result = a * WAY_WAD_RATIO; require(result / WAY_WAD_RATIO == a, Errors.MATH_MULTIPLICATION_OVERFLOW); return result; } }
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; /** * @title Errors library * @author Aave * @notice Defines the error messages emitted by the different contracts of the Aave protocol * @dev Error messages prefix glossary: * - VL = ValidationLogic * - MATH = Math libraries * - CT = Common errors between tokens (AToken, VariableDebtToken and StableDebtToken) * - AT = AToken * - SDT = StableDebtToken * - VDT = VariableDebtToken * - LP = LendingPool * - LPAPR = LendingPoolAddressesProviderRegistry * - LPC = LendingPoolConfiguration * - RL = ReserveLogic * - LPCM = LendingPoolCollateralManager * - P = Pausable */ library Errors { //common errors string public constant CALLER_NOT_POOL_ADMIN = '33'; // 'The caller must be the pool admin' string public constant BORROW_ALLOWANCE_NOT_ENOUGH = '59'; // User borrows on behalf, but allowance are too small //contract specific errors string public constant VL_INVALID_AMOUNT = '1'; // 'Amount must be greater than 0' string public constant VL_NO_ACTIVE_RESERVE = '2'; // 'Action requires an active reserve' string public constant VL_RESERVE_FROZEN = '3'; // 'Action cannot be performed because the reserve is frozen' string public constant VL_CURRENT_AVAILABLE_LIQUIDITY_NOT_ENOUGH = '4'; // 'The current liquidity is not enough' string public constant VL_NOT_ENOUGH_AVAILABLE_USER_BALANCE = '5'; // 'User cannot withdraw more than the available balance' string public constant VL_TRANSFER_NOT_ALLOWED = '6'; // 'Transfer cannot be allowed.' string public constant VL_BORROWING_NOT_ENABLED = '7'; // 'Borrowing is not enabled' string public constant VL_INVALID_INTEREST_RATE_MODE_SELECTED = '8'; // 'Invalid interest rate mode selected' string public constant VL_COLLATERAL_BALANCE_IS_0 = '9'; // 'The collateral balance is 0' string public constant VL_HEALTH_FACTOR_LOWER_THAN_LIQUIDATION_THRESHOLD = '10'; // 'Health factor is lesser than the liquidation threshold' string public constant VL_COLLATERAL_CANNOT_COVER_NEW_BORROW = '11'; // 'There is not enough collateral to cover a new borrow' string public constant VL_STABLE_BORROWING_NOT_ENABLED = '12'; // stable borrowing not enabled string public constant VL_COLLATERAL_SAME_AS_BORROWING_CURRENCY = '13'; // collateral is (mostly) the same currency that is being borrowed string public constant VL_AMOUNT_BIGGER_THAN_MAX_LOAN_SIZE_STABLE = '14'; // 'The requested amount is greater than the max loan size in stable rate mode string public constant VL_NO_DEBT_OF_SELECTED_TYPE = '15'; // 'for repayment of stable debt, the user needs to have stable debt, otherwise, he needs to have variable debt' string public constant VL_NO_EXPLICIT_AMOUNT_TO_REPAY_ON_BEHALF = '16'; // 'To repay on behalf of an user an explicit amount to repay is needed' string public constant VL_NO_STABLE_RATE_LOAN_IN_RESERVE = '17'; // 'User does not have a stable rate loan in progress on this reserve' string public constant VL_NO_VARIABLE_RATE_LOAN_IN_RESERVE = '18'; // 'User does not have a variable rate loan in progress on this reserve' string public constant VL_UNDERLYING_BALANCE_NOT_GREATER_THAN_0 = '19'; // 'The underlying balance needs to be greater than 0' string public constant VL_DEPOSIT_ALREADY_IN_USE = '20'; // 'User deposit is already being used as collateral' string public constant LP_NOT_ENOUGH_STABLE_BORROW_BALANCE = '21'; // 'User does not have any stable rate loan for this reserve' string public constant LP_INTEREST_RATE_REBALANCE_CONDITIONS_NOT_MET = '22'; // 'Interest rate rebalance conditions were not met' string public constant LP_LIQUIDATION_CALL_FAILED = '23'; // 'Liquidation call failed' string public constant LP_NOT_ENOUGH_LIQUIDITY_TO_BORROW = '24'; // 'There is not enough liquidity available to borrow' string public constant LP_REQUESTED_AMOUNT_TOO_SMALL = '25'; // 'The requested amount is too small for a FlashLoan.' string public constant LP_INCONSISTENT_PROTOCOL_ACTUAL_BALANCE = '26'; // 'The actual balance of the protocol is inconsistent' string public constant LP_CALLER_NOT_LENDING_POOL_CONFIGURATOR = '27'; // 'The caller of the function is not the lending pool configurator' string public constant LP_INCONSISTENT_FLASHLOAN_PARAMS = '28'; string public constant CT_CALLER_MUST_BE_LENDING_POOL = '29'; // 'The caller of this function must be a lending pool' string public constant CT_CANNOT_GIVE_ALLOWANCE_TO_HIMSELF = '30'; // 'User cannot give allowance to himself' string public constant CT_TRANSFER_AMOUNT_NOT_GT_0 = '31'; // 'Transferred amount needs to be greater than zero' string public constant RL_RESERVE_ALREADY_INITIALIZED = '32'; // 'Reserve has already been initialized' string public constant LPC_RESERVE_LIQUIDITY_NOT_0 = '34'; // 'The liquidity of the reserve needs to be 0' string public constant LPC_INVALID_ATOKEN_POOL_ADDRESS = '35'; // 'The liquidity of the reserve needs to be 0' string public constant LPC_INVALID_STABLE_DEBT_TOKEN_POOL_ADDRESS = '36'; // 'The liquidity of the reserve needs to be 0' string public constant LPC_INVALID_VARIABLE_DEBT_TOKEN_POOL_ADDRESS = '37'; // 'The liquidity of the reserve needs to be 0' string public constant LPC_INVALID_STABLE_DEBT_TOKEN_UNDERLYING_ADDRESS = '38'; // 'The liquidity of the reserve needs to be 0' string public constant LPC_INVALID_VARIABLE_DEBT_TOKEN_UNDERLYING_ADDRESS = '39'; // 'The liquidity of the reserve needs to be 0' string public constant LPC_INVALID_ADDRESSES_PROVIDER_ID = '40'; // 'The liquidity of the reserve needs to be 0' string public constant LPC_INVALID_CONFIGURATION = '75'; // 'Invalid risk parameters for the reserve' string public constant LPC_CALLER_NOT_EMERGENCY_ADMIN = '76'; // 'The caller must be the emergency admin' string public constant LPAPR_PROVIDER_NOT_REGISTERED = '41'; // 'Provider is not registered' string public constant LPCM_HEALTH_FACTOR_NOT_BELOW_THRESHOLD = '42'; // 'Health factor is not below the threshold' string public constant LPCM_COLLATERAL_CANNOT_BE_LIQUIDATED = '43'; // 'The collateral chosen cannot be liquidated' string public constant LPCM_SPECIFIED_CURRENCY_NOT_BORROWED_BY_USER = '44'; // 'User did not borrow the specified currency' string public constant LPCM_NOT_ENOUGH_LIQUIDITY_TO_LIQUIDATE = '45'; // "There isn't enough liquidity available to liquidate" string public constant LPCM_NO_ERRORS = '46'; // 'No errors' string public constant LP_INVALID_FLASHLOAN_MODE = '47'; //Invalid flashloan mode selected string public constant MATH_MULTIPLICATION_OVERFLOW = '48'; string public constant MATH_ADDITION_OVERFLOW = '49'; string public constant MATH_DIVISION_BY_ZERO = '50'; string public constant RL_LIQUIDITY_INDEX_OVERFLOW = '51'; // Liquidity index overflows uint128 string public constant RL_VARIABLE_BORROW_INDEX_OVERFLOW = '52'; // Variable borrow index overflows uint128 string public constant RL_LIQUIDITY_RATE_OVERFLOW = '53'; // Liquidity rate overflows uint128 string public constant RL_VARIABLE_BORROW_RATE_OVERFLOW = '54'; // Variable borrow rate overflows uint128 string public constant RL_STABLE_BORROW_RATE_OVERFLOW = '55'; // Stable borrow rate overflows uint128 string public constant CT_INVALID_MINT_AMOUNT = '56'; //invalid amount to mint string public constant LP_FAILED_REPAY_WITH_COLLATERAL = '57'; string public constant CT_INVALID_BURN_AMOUNT = '58'; //invalid amount to burn string public constant LP_FAILED_COLLATERAL_SWAP = '60'; string public constant LP_INVALID_EQUAL_ASSETS_TO_SWAP = '61'; string public constant LP_REENTRANCY_NOT_ALLOWED = '62'; string public constant LP_CALLER_MUST_BE_AN_ATOKEN = '63'; string public constant LP_IS_PAUSED = '64'; // 'Pool is paused' string public constant LP_NO_MORE_RESERVES_ALLOWED = '65'; string public constant LP_INVALID_FLASH_LOAN_EXECUTOR_RETURN = '66'; string public constant RC_INVALID_LTV = '67'; string public constant RC_INVALID_LIQ_THRESHOLD = '68'; string public constant RC_INVALID_LIQ_BONUS = '69'; string public constant RC_INVALID_DECIMALS = '70'; string public constant RC_INVALID_RESERVE_FACTOR = '71'; string public constant LPAPR_INVALID_ADDRESSES_PROVIDER_ID = '72'; string public constant VL_INCONSISTENT_FLASHLOAN_PARAMS = '73'; string public constant LP_INCONSISTENT_PARAMS_LENGTH = '74'; string public constant UL_INVALID_INDEX = '77'; string public constant LP_NOT_CONTRACT = '78'; string public constant SDT_STABLE_DEBT_OVERFLOW = '79'; string public constant SDT_BURN_EXCEEDS_BALANCE = '80'; enum CollateralManagerErrors { NO_ERROR, NO_COLLATERAL_AVAILABLE, COLLATERAL_CANNOT_BE_LIQUIDATED, CURRRENCY_NOT_BORROWED, HEALTH_FACTOR_ABOVE_THRESHOLD, NOT_ENOUGH_LIQUIDITY, NO_ACTIVE_RESERVE, HEALTH_FACTOR_LOWER_THAN_LIQUIDATION_THRESHOLD, INVALID_EQUAL_ASSETS_TO_SWAP, FROZEN_RESERVE } }
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; /** * @title VersionedInitializable * * @dev Helper contract to implement initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initializer functions must be manually * invoked. This applies both to deploying an Initializable contract, as well * as extending an Initializable contract via inheritance. * WARNING: When used with inheritance, manual care must be taken to not invoke * a parent initializer twice, or ensure that all initializers are idempotent, * because this is not dealt with automatically as with constructors. * * @author Aave, inspired by the OpenZeppelin Initializable contract */ abstract contract VersionedInitializable { /** * @dev Indicates that the contract has been initialized. */ uint256 private lastInitializedRevision = 0; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private initializing; /** * @dev Modifier to use in the initializer function of a contract. */ modifier initializer() { uint256 revision = getRevision(); require( initializing || isConstructor() || revision > lastInitializedRevision, 'Contract instance has already been initialized' ); bool isTopLevelCall = !initializing; if (isTopLevelCall) { initializing = true; lastInitializedRevision = revision; } _; if (isTopLevelCall) { initializing = false; } } /** * @dev returns the revision number of the contract * Needs to be defined in the inherited class as a constant. **/ function getRevision() internal pure virtual returns (uint256); /** * @dev Returns true if and only if the function is running in the constructor **/ function isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. uint256 cs; //solium-disable-next-line assembly { cs := extcodesize(address()) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; }
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; import {Context} from '../../dependencies/openzeppelin/contracts/Context.sol'; import {IERC20} from '../../dependencies/openzeppelin/contracts/IERC20.sol'; import {IERC20Detailed} from '../../dependencies/openzeppelin/contracts/IERC20Detailed.sol'; import {SafeMath} from '../../dependencies/openzeppelin/contracts/SafeMath.sol'; import {IAaveIncentivesController} from '../../interfaces/IAaveIncentivesController.sol'; /** * @title ERC20 * @notice Basic ERC20 implementation * @author Aave, inspired by the Openzeppelin ERC20 implementation **/ contract IncentivizedERC20 is Context, IERC20, IERC20Detailed { using SafeMath for uint256; IAaveIncentivesController internal immutable _incentivesController; mapping(address => uint256) internal _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 internal _totalSupply; string private _name; string private _symbol; uint8 private _decimals; constructor( string memory name, string memory symbol, uint8 decimals, address incentivesController ) public { _name = name; _symbol = symbol; _decimals = decimals; _incentivesController = IAaveIncentivesController(incentivesController); } /** * @return The name of the token **/ function name() public view override returns (string memory) { return _name; } /** * @return The symbol of the token **/ function symbol() public view override returns (string memory) { return _symbol; } /** * @return The decimals of the token **/ function decimals() public view override returns (uint8) { return _decimals; } /** * @return The total supply of the token **/ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @return The balance of the token **/ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev Executes a transfer of tokens from _msgSender() to recipient * @param recipient The recipient of the tokens * @param amount The amount of tokens being transferred * @return `true` if the transfer succeeds, `false` otherwise **/ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); emit Transfer(_msgSender(), recipient, amount); return true; } /** * @dev Returns the allowance of spender on the tokens owned by owner * @param owner The owner of the tokens * @param spender The user allowed to spend the owner's tokens * @return The amount of owner's tokens spender is allowed to spend **/ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev Allows `spender` to spend the tokens owned by _msgSender() * @param spender The user allowed to spend _msgSender() tokens * @return `true` **/ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev Executes a transfer of token from sender to recipient, if _msgSender() is allowed to do so * @param sender The owner of the tokens * @param recipient The recipient of the tokens * @param amount The amount of tokens being transferred * @return `true` if the transfer succeeds, `false` otherwise **/ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, 'ERC20: transfer amount exceeds allowance') ); emit Transfer(sender, recipient, amount); return true; } /** * @dev Increases the allowance of spender to spend _msgSender() tokens * @param spender The user allowed to spend on behalf of _msgSender() * @param addedValue The amount being added to the allowance * @return `true` **/ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Decreases the allowance of spender to spend _msgSender() tokens * @param spender The user allowed to spend on behalf of _msgSender() * @param subtractedValue The amount being subtracted to the allowance * @return `true` **/ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, 'ERC20: decreased allowance below zero' ) ); return true; } function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), 'ERC20: transfer from the zero address'); require(recipient != address(0), 'ERC20: transfer to the zero address'); _beforeTokenTransfer(sender, recipient, amount); uint256 oldSenderBalance = _balances[sender]; _balances[sender] = oldSenderBalance.sub(amount, 'ERC20: transfer amount exceeds balance'); uint256 oldRecipientBalance = _balances[recipient]; _balances[recipient] = _balances[recipient].add(amount); if (address(_incentivesController) != address(0)) { uint256 currentTotalSupply = _totalSupply; _incentivesController.handleAction(sender, currentTotalSupply, oldSenderBalance); if (sender != recipient) { _incentivesController.handleAction(recipient, currentTotalSupply, oldRecipientBalance); } } } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), 'ERC20: mint to the zero address'); _beforeTokenTransfer(address(0), account, amount); uint256 oldTotalSupply = _totalSupply; _totalSupply = oldTotalSupply.add(amount); uint256 oldAccountBalance = _balances[account]; _balances[account] = oldAccountBalance.add(amount); if (address(_incentivesController) != address(0)) { _incentivesController.handleAction(account, oldTotalSupply, oldAccountBalance); } } function _burn(address account, uint256 amount) internal virtual { require(account != address(0), 'ERC20: burn from the zero address'); _beforeTokenTransfer(account, address(0), amount); uint256 oldTotalSupply = _totalSupply; _totalSupply = oldTotalSupply.sub(amount); uint256 oldAccountBalance = _balances[account]; _balances[account] = oldAccountBalance.sub(amount, 'ERC20: burn amount exceeds balance'); if (address(_incentivesController) != address(0)) { _incentivesController.handleAction(account, oldTotalSupply, oldAccountBalance); } } 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); } function _setName(string memory newName) internal { _name = newName; } function _setSymbol(string memory newSymbol) internal { _symbol = newSymbol; } function _setDecimals(uint8 newDecimals) internal { _decimals = newDecimals; } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; library DataTypes { // refer to the whitepaper, section 1.1 basic concepts for a formal description of these properties. struct ReserveData { //stores the reserve configuration ReserveConfigurationMap configuration; //the liquidity index. Expressed in ray uint128 liquidityIndex; //variable borrow index. Expressed in ray uint128 variableBorrowIndex; //the current supply rate. Expressed in ray uint128 currentLiquidityRate; //the current variable borrow rate. Expressed in ray uint128 currentVariableBorrowRate; //the current stable borrow rate. Expressed in ray uint128 currentStableBorrowRate; uint40 lastUpdateTimestamp; //tokens addresses address aTokenAddress; address stableDebtTokenAddress; address variableDebtTokenAddress; //address of the interest rate strategy address interestRateStrategyAddress; //the id of the reserve. Represents the position in the list of the active reserves uint8 id; } struct ReserveConfigurationMap { //bit 0-15: LTV //bit 16-31: Liq. threshold //bit 32-47: Liq. bonus //bit 48-55: Decimals //bit 56: Reserve is active //bit 57: reserve is frozen //bit 58: borrowing is enabled //bit 59: stable rate borrowing enabled //bit 60-63: reserved //bit 64-79: reserve factor uint256 data; } struct UserConfigurationMap { uint256 data; } enum InterestRateMode {NONE, STABLE, VARIABLE} }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @title SignedSafeMath * @dev Signed math operations with safety checks that revert on error. */ library SignedSafeMath { int256 constant private _INT256_MIN = -2**255; /** * @dev Returns the multiplication of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } require(!(a == -1 && b == _INT256_MIN), "SignedSafeMath: multiplication overflow"); int256 c = a * b; require(c / a == b, "SignedSafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two signed integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(int256 a, int256 b) internal pure returns (int256) { require(b != 0, "SignedSafeMath: division by zero"); require(!(b == -1 && a == _INT256_MIN), "SignedSafeMath: division overflow"); int256 c = a / b; return c; } /** * @dev Returns the subtraction of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a), "SignedSafeMath: subtraction overflow"); return c; } /** * @dev Returns the addition of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a), "SignedSafeMath: addition overflow"); return c; } }
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; /** * @title Various utilities useful for uint256. */ library UInt256Lib { uint256 private constant MAX_INT256 = ~(uint256(1) << 255); /** * @dev Safely converts a uint256 to an int256. */ function toInt256Safe(uint256 a) internal pure returns (int256) { require(a <= MAX_INT256); return int256(a); } }
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, 'SafeMath: addition overflow'); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, 'SafeMath: subtraction overflow'); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, 'SafeMath: multiplication overflow'); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, 'SafeMath: division by zero'); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, 'SafeMath: modulo by zero'); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @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'); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(''); require(success, 'Address: unable to send value, recipient may have reverted'); } }
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; /** * @title LendingPoolAddressesProvider contract * @dev Main registry of addresses part of or connected to the protocol, including permissioned roles * - Acting also as factory of proxies and admin of those, so with right to change its implementations * - Owned by the Aave Governance * @author Aave **/ interface ILendingPoolAddressesProvider { event MarketIdSet(string newMarketId); event LendingPoolUpdated(address indexed newAddress); event ConfigurationAdminUpdated(address indexed newAddress); event EmergencyAdminUpdated(address indexed newAddress); event LendingPoolConfiguratorUpdated(address indexed newAddress); event LendingPoolCollateralManagerUpdated(address indexed newAddress); event PriceOracleUpdated(address indexed newAddress); event LendingRateOracleUpdated(address indexed newAddress); event ProxyCreated(bytes32 id, address indexed newAddress); event AddressSet(bytes32 id, address indexed newAddress, bool hasProxy); function getMarketId() external view returns (string memory); function setMarketId(string calldata marketId) external; function setAddress(bytes32 id, address newAddress) external; function setAddressAsProxy(bytes32 id, address impl) external; function getAddress(bytes32 id) external view returns (address); function getLendingPool() external view returns (address); function setLendingPoolImpl(address pool) external; function getLendingPoolConfigurator() external view returns (address); function setLendingPoolConfiguratorImpl(address configurator) external; function getLendingPoolCollateralManager() external view returns (address); function setLendingPoolCollateralManager(address manager) external; function getPoolAdmin() external view returns (address); function setPoolAdmin(address admin) external; function getEmergencyAdmin() external view returns (address); function setEmergencyAdmin(address admin) external; function getPriceOracle() external view returns (address); function setPriceOracle(address priceOracle) external; function getLendingRateOracle() external view returns (address); function setLendingRateOracle(address lendingRateOracle) external; }
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; interface IScaledBalanceToken { /** * @dev Returns the scaled balance of the user. The scaled balance is the sum of all the * updated stored balance divided by the reserve's liquidity index at the moment of the update * @param user The user whose balance is calculated * @return The scaled balance of the user **/ function scaledBalanceOf(address user) external view returns (uint256); /** * @dev Returns the scaled balance of the user and the scaled total supply. * @param user The address of the user * @return The scaled balance of the user * @return The scaled balance and the scaled total supply **/ function getScaledUserBalanceAndSupply(address user) external view returns (uint256, uint256); /** * @dev Returns the scaled total supply of the variable debt token. Represents sum(debt/index) * @return The scaled total supply **/ function scaledTotalSupply() external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; import {IERC20} from './IERC20.sol'; interface IERC20Detailed is IERC20 { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); }
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; pragma experimental ABIEncoderV2; interface IAaveIncentivesController { function handleAction( address user, uint256 userBalance, uint256 totalSupply ) external; }
{ "remappings": [ "@aave/core-v3/=lib/aave-address-book/lib/aave-v3-core/", "@aave/periphery-v3/=lib/aave-address-book/lib/aave-v3-periphery/", "aave-address-book/=lib/aave-address-book/src/", "aave-v3-core/=lib/aave-address-book/lib/aave-v3-core/", "aave-v3-periphery/=lib/aave-address-book/lib/aave-v3-periphery/", "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "solidity-utils/=lib/solidity-utils/src/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs" }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "istanbul", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract ILendingPool","name":"pool","type":"address"},{"internalType":"address","name":"underlyingAssetAddress","type":"address"},{"internalType":"address","name":"reserveTreasuryAddress","type":"address"},{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"address","name":"incentivesController","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"BalanceTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ATOKEN_REVISION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EIP712_REVISION","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"POOL","outputs":[{"internalType":"contract ILendingPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE_TREASURY_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STABLE_DEBT_TOKEN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNDERLYING_ASSET_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VARIABLE_DEBT_TOKEN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","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"}],"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":"user","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"address","name":"receiverOfUnderlying","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getScaledUserBalanceAndSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"underlyingAssetDecimals","type":"uint8"},{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initializeDebtTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"mintToTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"user","type":"address"}],"name":"scaledBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"scaledTotalSupply","outputs":[{"internalType":"uint256","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferOnLiquidation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferUnderlyingTo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
610100604052600080553480156200001657600080fd5b5060405162002aee38038062002aee8339810160408190526200003991620001fa565b8282601283836037908051906020019062000056929190620000b7565b5082516200006c906038906020860190620000b7565b506039805460ff90931660ff19909316929092179091556001600160601b0319606091821b811660805298811b891660e05296871b881660a0525050505050901b1660c052620002d0565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620000fa57805160ff19168380011785556200012a565b828001600101855582156200012a579182015b828111156200012a5782518255916020019190600101906200010d565b50620001389291506200013c565b5090565b5b808211156200013857600081556001016200013d565b600082601f83011262000164578081fd5b81516001600160401b03808211156200017b578283fd5b6040516020601f8401601f19168201810183811183821017156200019d578586fd5b80604052508194508382528681858801011115620001ba57600080fd5b600092505b83831015620001de5785830181015182840182015291820191620001bf565b83831115620001f05760008185840101525b5050505092915050565b60008060008060008060c0878903121562000213578182fd5b86516200022081620002b7565b60208801519096506200023381620002b7565b60408801519095506200024681620002b7565b60608801519094506001600160401b038082111562000263578384fd5b620002718a838b0162000153565b9450608089015191508082111562000287578384fd5b506200029689828a0162000153565b92505060a0870151620002a981620002b7565b809150509295509295509295565b6001600160a01b0381168114620002cd57600080fd5b50565b60805160601c60a05160601c60c05160601c60e05160601c61278c620003626000398061050552806105e952806109a95280610a5a5280610ac65280610b075280610e8152806110fc52806111c4525080610baa5280610bf45280610c3d5280610dcd5250806106165280610a895280610df15280610eae5280611340525080611adb5280611b17525061278c6000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80637535d2461161010f578063b1bf962d116100a2578063d7020d0a11610071578063d7020d0a146103c9578063dd62ed3e146103dc578063e041419a146103ef578063f866c319146103f7576101f0565b8063b1bf962d14610393578063b9844d8d1461039b578063d11cb970146103ae578063d505accf146103b6576101f0565b8063a457c2d7116100de578063a457c2d71461035d578063a9059cbb14610370578063ae16733514610383578063b16a19de1461038b576101f0565b80637535d24614610332578063781603761461033a5780637df5bd3b1461034257806395d89b4114610355576101f0565b806330adf81f11610187578063395093511161015657806339509351146102e45780634efecaa5146102f7578063598eb60b1461030a57806370a082311461031f576101f0565b806330adf81f146102aa5780633118724e146102b2578063313ce567146102c75780633644e515146102dc576101f0565b8063156e29f6116101c3578063156e29f61461026957806318160ddd1461027c5780631da24f3e1461028457806323b872dd14610297576101f0565b806306fdde03146101f5578063095ea7b3146102135780630afbcdc9146102335780630bd7ad3b14610254575b600080fd5b6101fd61040a565b60405161020a91906122fb565b60405180910390f35b610226610221366004611fa7565b6104a1565b60405161020a9190612269565b610246610241366004611e5e565b6104bf565b60405161020a929190612653565b61025c6104fc565b60405161020a9190612274565b610226610277366004611fd2565b610501565b61025c6105af565b61025c610292366004611e5e565b61069b565b6102266102a5366004611eb2565b6106c1565b61025c610781565b6102c56102c036600461215d565b6107a5565b005b6102cf610948565b60405161020a9190612661565b61025c610951565b6102266102f2366004611fa7565b610957565b61025c610305366004611fa7565b6109a5565b610312610a35565b60405161020a9190612234565b61025c61032d366004611e5e565b610a44565b610312610ac4565b6101fd610ae8565b6102c561035036600461213c565b610b05565b6101fd610ca5565b61022661036b366004611fa7565b610d06565b61022661037e366004611fa7565b610d6e565b610312610dcb565b610312610def565b61025c610e13565b61025c6103a9366004611e5e565b610e25565b6102c5610e37565b6102c56103c4366004611f37565b610f62565b6102c56103d7366004611ef2565b6110fa565b61025c6103ea366004611e7a565b611188565b6103126111b3565b6102c5610405366004611eb2565b6111c2565b60378054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104965780601f1061046b57610100808354040283529160200191610496565b820191906000526020600020905b81548152906001019060200180831161047957829003601f168201915b505050505090505b90565b60006104b56104ae611283565b8484611287565b5060015b92915050565b60008060006104d76104cf61132e565b603e546114ff565b90506104f36104e585611533565b6104ed61154e565b83611554565b92509050915091565b600281565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316610535611283565b6001600160a01b03161460405180604001604052806002815260200161323960f01b815250906105815760405162461bcd60e51b815260040161057891906122fb565b60405180910390fd5b5060405162461bcd60e51b815260040161057890612498565b611749565b603e5490611763565b9392505050565b6000806105bd6104cf61132e565b9050806105ce57600091505061049e565b60405163d15e005360e01b8152610695906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d15e00539061063e907f000000000000000000000000000000000000000000000000000000000000000090600401612234565b60206040518083038186803b15801561065657600080fd5b505afa15801561066a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068e9190612101565b82906117a9565b91505090565b60006104b96106a983611533565b6106b161154e565b6106bc6104cf61132e565b611554565b60006106ce84848461183c565b61073e846106da611283565b610739856040518060600160405280602881526020016126ea602891396001600160a01b038a16600090815260356020526040812090610718611283565b6001600160a01b031681526020810191909152604001600020549190611849565b611287565b826001600160a01b0316846001600160a01b03166000805160206127128339815191528460405161076f9190612274565b60405180910390a35060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60006107af611875565b60015490915060ff16806107c657506107c661187a565b806107d2575060005481115b6107ee5760405162461bcd60e51b8152600401610578906124c5565b60015460ff1615801561080d576001805460ff19168117905560008290555b60405146907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f906108419089908990612209565b60408051918290038220828201825260018352603160f81b602093840152905161089293927fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc69186913091016122b1565b60408051601f198184030181528282528051602091820120603b55601f89018190048102830181019091528782526108e59190899089908190840183828082843760009201919091525061188092505050565b61092485858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061189392505050565b61092d886118a6565b50801561093f576001805460ff191690555b50505050505050565b60395460ff1690565b603b5481565b60006104b5610964611283565b846107398560356000610975611283565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906118bc565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166109d9611283565b6001600160a01b03161460405180604001604052806002815260200161323960f01b81525090610a1c5760405162461bcd60e51b815260040161057891906122fb565b5060405162461bcd60e51b815260040161057890612420565b603c546001600160a01b031681565b600080610a536106a984611533565b90506105a87f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d15e00537f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161063e9190612234565b7f000000000000000000000000000000000000000000000000000000000000000081565b604051806040016040528060018152602001603160f81b81525081565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316610b37611283565b6001600160a01b03161460405180604001604052806002815260200161323960f01b81525090610b7a5760405162461bcd60e51b815260040161057891906122fb565b5081610b8557610ca1565b6000610b91838361158a565b9050610b9b611c79565b610ba361132e565b9050610bd07f00000000000000000000000000000000000000000000000000000000000000008383611635565b610be461059f61059a836000015185611732565b603e556040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169060009060008051602061271283398151915290610c33908890612274565b60405180910390a37f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03167f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f8585604051610c96929190612653565b60405180910390a250505b5050565b60388054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104965780601f1061046b57610100808354040283529160200191610496565b60006104b5610d13611283565b84610739856040518060600160405280602581526020016127326025913960356000610d3d611283565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611849565b6000610d82610d7b611283565b848461183c565b826001600160a01b0316610d94611283565b6001600160a01b031660008051602061271283398151915284604051610dba9190612274565b60405180910390a350600192915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610e206104cf61132e565b905090565b603a6020526000908152604090205481565b603c546001600160a01b0316158015610e595750603d546001600160a01b0316155b610e6257600080fd5b610e6a611c9a565b6040516335ea6a7560e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906335ea6a7590610ed6907f000000000000000000000000000000000000000000000000000000000000000090600401612234565b6101806040518083038186803b158015610eef57600080fd5b505afa158015610f03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f279190612006565b610100810151603c80546001600160a01b03199081166001600160a01b039384161790915561012090920151603d8054909316911617905550565b6001600160a01b038716610f885760405162461bcd60e51b81526004016105789061253f565b83421115610fa85760405162461bcd60e51b815260040161057890612513565b6001600160a01b0387166000908152603a6020908152604080832054603b549151909392611002917f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918d918d918d9189918e910161227d565b60405160208183030381529060405280519060200120604051602001611029929190612219565b6040516020818303038152906040528051906020012090506001818686866040516000815260200160405260405161106494939291906122dd565b6020604051602081039080840390855afa158015611086573d6000803e3d6000fd5b505050602060405103516001600160a01b0316896001600160a01b0316146110c05760405162461bcd60e51b8152600401610578906123c8565b6110cb8260016118bc565b6001600160a01b038a166000908152603a60205260409020556110ef898989611287565b505050505050505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661112c611283565b6001600160a01b03161460405180604001604052806002815260200161323960f01b8152509061116f5760405162461bcd60e51b815260040161057891906122fb565b5060405162461bcd60e51b8152600401610578906123f3565b6001600160a01b03918216600090815260356020908152604080832093909416825291909152205490565b603d546001600160a01b031681565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166111f4611283565b6001600160a01b03161460405180604001604052806002815260200161323960f01b815250906112375760405162461bcd60e51b815260040161057891906122fb565b506112458383836000611927565b816001600160a01b0316836001600160a01b0316600080516020612712833981519152836040516112769190612274565b60405180910390a3505050565b3390565b6001600160a01b0383166112ad5760405162461bcd60e51b815260040161057890612566565b6001600160a01b0382166112d35760405162461bcd60e51b81526004016105789061230e565b6001600160a01b0380841660008181526035602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611276908590612274565b611336611c79565b61133e611c79565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561139757600080fd5b505afa1580156113ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113cf9190612101565b8152603c5460408051632a960fb160e01b8152815160009384936001600160a01b0390911692632a960fb19260048083019392829003018186803b15801561141657600080fd5b505afa15801561142a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144e9190612119565b603d5460408051632a960fb160e01b8152815194965092945060009384936001600160a01b0390931692632a960fb1926004808301939192829003018186803b15801561149a57600080fd5b505afa1580156114ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d29190612119565b90925090506114e184836118bc565b60208601526114f08382611763565b60408601525092935050505090565b60006105a8836020015161152d85600001516115288760400151876118e190919063ffffffff16565b61193f565b906118bc565b6001600160a01b031660009081526034602052604090205490565b60365490565b6000831580611561575081155b1561156e575060006105a8565b6115828361157c8685611952565b906119c5565b949350505050565b604080518082019091526002815261035360f41b6020820152600090826115c45760405162461bcd60e51b815260040161057891906122fb565b5060408051808201909152600280825261068760f31b60208301528304906b033b2e3c9fd0803ce80000008219048511156116125760405162461bcd60e51b815260040161057891906122fb565b5082816b033b2e3c9fd0803ce80000008602018161162c57fe5b04949350505050565b600061163f61154e565b9050600061164c85611533565b905081611677576000611663846000015186611732565b905061166f8682611a57565b50505061172d565b600061168584603e546114ff565b90506000611694838584611554565b905060006116a28383611b89565b905060006116b084896118bc565b905060006116be848a6118bc565b90506000836116f75760006116dd876116d78d8c611bcb565b90611c05565b90506116e98c82611a57565b50505050505050505061172d565b611718846116d7611708868b611bcb565b6117128c87611bcb565b90611b89565b90506117248b82611a57565b50505050505050505b505050565b60006105a8836116d78460016001607f1b03611bcb565b60006001600160ff1b0382111561175f57600080fd5b5090565b60008282018183128015906117785750838112155b8061178d575060008312801561178d57508381125b6105a85760405162461bcd60e51b815260040161057890612387565b60008215806117b6575081155b156117c3575060006104b9565b816b019d971e4fe8401e7400000019816117d957fe5b0483111560405180604001604052806002815260200161068760f31b815250906118165760405162461bcd60e51b815260040161057891906122fb565b506b033b2e3c9fd0803ce80000006002815b04838502018161183457fe5b049392505050565b61172d8383836001611927565b6000818484111561186d5760405162461bcd60e51b815260040161057891906122fb565b505050900390565b600290565b303b1590565b8051610ca1906037906020840190611d05565b8051610ca1906038906020840190611d05565b6039805460ff191660ff92909216919091179055565b6000828201838110156105a85760405162461bcd60e51b815260040161057890612350565b60008183038183128015906118f65750838113155b8061190b575060008312801561190b57508381135b6105a85760405162461bcd60e51b8152600401610578906125aa565b60405162461bcd60e51b8152600401610578906125ee565b60006105a860016001607f1b0361157c84865b600082158061195f575081155b1561196c575060006104b9565b81631dcd6500198161197a57fe5b0483111560405180604001604052806002815260200161068760f31b815250906119b75760405162461bcd60e51b815260040161057891906122fb565b50633b9aca00600281611828565b604080518082019091526002815261035360f41b6020820152600090826119ff5760405162461bcd60e51b815260040161057891906122fb565b5060408051808201909152600280825261068760f31b6020830152830490633b9aca00821904851115611a455760405162461bcd60e51b815260040161057891906122fb565b508281633b9aca008602018161162c57fe5b6001600160a01b038216611a7d5760405162461bcd60e51b81526004016105789061261c565b611a896000838361172d565b603654611a9681836118bc565b6036556001600160a01b038316600090815260346020526040902054611abc81846118bc565b6001600160a01b038086166000908152603460205260409020919091557f00000000000000000000000000000000000000000000000000000000000000001615611b83576040516318c39f1760e11b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906331873e2e90611b5090879086908690600401612248565b600060405180830381600087803b158015611b6a57600080fd5b505af1158015611b7e573d6000803e3d6000fd5b505050505b50505050565b60006105a883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611849565b600082611bda575060006104b9565b82820282848281611be757fe5b04146105a85760405162461bcd60e51b815260040161057890612457565b60006105a883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060008183611c635760405162461bcd60e51b815260040161057891906122fb565b506000838581611c6f57fe5b0495945050505050565b60405180606001604052806000815260200160008152602001600081525090565b604051806101800160405280611cae611d7f565b815260006020820181905260408201819052606082018190526080820181905260a0820181905260c0820181905260e082018190526101008201819052610120820181905261014082018190526101609091015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611d4657805160ff1916838001178555611d73565b82800160010185558215611d73579182015b82811115611d73578251825591602001919060010190611d58565b5061175f929150611d92565b6040518060200160405280600081525090565b5b8082111561175f5760008155600101611d93565b80516104b9816126c2565b60008083601f840112611dc3578182fd5b50813567ffffffffffffffff811115611dda578182fd5b602083019150836020828501011115611df257600080fd5b9250929050565b600060208284031215611e0a578081fd5b611e14602061266f565b9151825250919050565b80516fffffffffffffffffffffffffffffffff811681146104b957600080fd5b805164ffffffffff811681146104b957600080fd5b80516104b9816126da565b600060208284031215611e6f578081fd5b81356105a8816126c2565b60008060408385031215611e8c578081fd5b8235611e97816126c2565b91506020830135611ea7816126c2565b809150509250929050565b600080600060608486031215611ec6578081fd5b8335611ed1816126c2565b92506020840135611ee1816126c2565b929592945050506040919091013590565b60008060008060808587031215611f07578081fd5b8435611f12816126c2565b93506020850135611f22816126c2565b93969395505050506040820135916060013590565b600080600080600080600060e0888a031215611f51578283fd5b8735611f5c816126c2565b96506020880135611f6c816126c2565b955060408801359450606088013593506080880135611f8a816126da565b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215611fb9578182fd5b8235611fc4816126c2565b946020939093013593505050565b600080600060608486031215611fe6578283fd5b8335611ff1816126c2565b95602085013595506040909401359392505050565b6000610180808385031215612019578182fd5b6120228161266f565b905061202e8484611df9565b815261203d8460208501611e1e565b602082015261204f8460408501611e1e565b60408201526120618460608501611e1e565b60608201526120738460808501611e1e565b60808201526120858460a08501611e1e565b60a08201526120978460c08501611e3e565b60c08201526120a98460e08501611da7565b60e08201526101006120bd85828601611da7565b908201526101206120d085858301611da7565b908201526101406120e385858301611da7565b908201526101606120f685858301611e53565b908201529392505050565b600060208284031215612112578081fd5b5051919050565b6000806040838503121561212b578182fd5b505080516020909101519092909150565b6000806040838503121561214e578182fd5b50508035926020909101359150565b600080600080600060608688031215612174578283fd5b853561217f816126da565b9450602086013567ffffffffffffffff8082111561219b578485fd5b6121a789838a01611db2565b909650945060408801359150808211156121bf578283fd5b506121cc88828901611db2565b969995985093965092949392505050565b600081518084526121f5816020860160208601612696565b601f01601f19169290920160200192915050565b6000828483379101908152919050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b039390931683526020830191909152604082015260600190565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b93845260ff9290921660208401526040830152606082015260800190565b6000602082526105a860208301846121dd565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526021908201527f5369676e6564536166654d6174683a206164646974696f6e206f766572666c6f6040820152607760f81b606082015260800190565b602080825260119082015270494e56414c49445f5349474e415455524560781b604082015260600190565b60208082526013908201527210955493925391d7d254d7d11254d050931151606a1b604082015260600190565b60208082526018908201527f464c4153484c4f414e494e475f49535f44495341424c45440000000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526013908201527213525395125391d7d254d7d11254d050931151606a1b604082015260600190565b6020808252602e908201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560408201526d195b881a5b9a5d1a585b1a5e995960921b606082015260800190565b60208082526012908201527124a72b20a624a22fa2ac2824a920aa24a7a760711b604082015260600190565b6020808252600d908201526c24a72b20a624a22fa7aba722a960991b604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526024908201527f5369676e6564536166654d6174683a207375627472616374696f6e206f766572604082015263666c6f7760e01b606082015260800190565b6020808252601490820152731514905394d1915497d254d7d11254d05093115160621b604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b918252602082015260400190565b60ff91909116815260200190565b60405181810167ffffffffffffffff8111828210171561268e57600080fd5b604052919050565b60005b838110156126b1578181015183820152602001612699565b83811115611b835750506000910152565b6001600160a01b03811681146126d757600080fd5b50565b60ff811681146126d757600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203062298f64d3cf3eda7dac39981a0c0b79dfd7ae46d36a589e6b8ddbaa2acb8e64736f6c634300060c00330000000000000000000000007d2768de32b0b80b7a3454c06bdac94a69ddc7a9000000000000000000000000d46ba6d942050d489dbd938a2c909a5d5039a161000000000000000000000000464c71f6c2f760dda6093dcb91c24c39e5d6e18c00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000d784927ff2f95ba542bfc824c8a8a98f3495f6b5000000000000000000000000000000000000000000000000000000000000001a4161766520696e7465726573742062656172696e6720414d504c000000000000000000000000000000000000000000000000000000000000000000000000000561414d504c000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101f05760003560e01c80637535d2461161010f578063b1bf962d116100a2578063d7020d0a11610071578063d7020d0a146103c9578063dd62ed3e146103dc578063e041419a146103ef578063f866c319146103f7576101f0565b8063b1bf962d14610393578063b9844d8d1461039b578063d11cb970146103ae578063d505accf146103b6576101f0565b8063a457c2d7116100de578063a457c2d71461035d578063a9059cbb14610370578063ae16733514610383578063b16a19de1461038b576101f0565b80637535d24614610332578063781603761461033a5780637df5bd3b1461034257806395d89b4114610355576101f0565b806330adf81f11610187578063395093511161015657806339509351146102e45780634efecaa5146102f7578063598eb60b1461030a57806370a082311461031f576101f0565b806330adf81f146102aa5780633118724e146102b2578063313ce567146102c75780633644e515146102dc576101f0565b8063156e29f6116101c3578063156e29f61461026957806318160ddd1461027c5780631da24f3e1461028457806323b872dd14610297576101f0565b806306fdde03146101f5578063095ea7b3146102135780630afbcdc9146102335780630bd7ad3b14610254575b600080fd5b6101fd61040a565b60405161020a91906122fb565b60405180910390f35b610226610221366004611fa7565b6104a1565b60405161020a9190612269565b610246610241366004611e5e565b6104bf565b60405161020a929190612653565b61025c6104fc565b60405161020a9190612274565b610226610277366004611fd2565b610501565b61025c6105af565b61025c610292366004611e5e565b61069b565b6102266102a5366004611eb2565b6106c1565b61025c610781565b6102c56102c036600461215d565b6107a5565b005b6102cf610948565b60405161020a9190612661565b61025c610951565b6102266102f2366004611fa7565b610957565b61025c610305366004611fa7565b6109a5565b610312610a35565b60405161020a9190612234565b61025c61032d366004611e5e565b610a44565b610312610ac4565b6101fd610ae8565b6102c561035036600461213c565b610b05565b6101fd610ca5565b61022661036b366004611fa7565b610d06565b61022661037e366004611fa7565b610d6e565b610312610dcb565b610312610def565b61025c610e13565b61025c6103a9366004611e5e565b610e25565b6102c5610e37565b6102c56103c4366004611f37565b610f62565b6102c56103d7366004611ef2565b6110fa565b61025c6103ea366004611e7a565b611188565b6103126111b3565b6102c5610405366004611eb2565b6111c2565b60378054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104965780601f1061046b57610100808354040283529160200191610496565b820191906000526020600020905b81548152906001019060200180831161047957829003601f168201915b505050505090505b90565b60006104b56104ae611283565b8484611287565b5060015b92915050565b60008060006104d76104cf61132e565b603e546114ff565b90506104f36104e585611533565b6104ed61154e565b83611554565b92509050915091565b600281565b60007f0000000000000000000000007d2768de32b0b80b7a3454c06bdac94a69ddc7a96001600160a01b0316610535611283565b6001600160a01b03161460405180604001604052806002815260200161323960f01b815250906105815760405162461bcd60e51b815260040161057891906122fb565b60405180910390fd5b5060405162461bcd60e51b815260040161057890612498565b611749565b603e5490611763565b9392505050565b6000806105bd6104cf61132e565b9050806105ce57600091505061049e565b60405163d15e005360e01b8152610695906001600160a01b037f0000000000000000000000007d2768de32b0b80b7a3454c06bdac94a69ddc7a9169063d15e00539061063e907f000000000000000000000000d46ba6d942050d489dbd938a2c909a5d5039a16190600401612234565b60206040518083038186803b15801561065657600080fd5b505afa15801561066a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068e9190612101565b82906117a9565b91505090565b60006104b96106a983611533565b6106b161154e565b6106bc6104cf61132e565b611554565b60006106ce84848461183c565b61073e846106da611283565b610739856040518060600160405280602881526020016126ea602891396001600160a01b038a16600090815260356020526040812090610718611283565b6001600160a01b031681526020810191909152604001600020549190611849565b611287565b826001600160a01b0316846001600160a01b03166000805160206127128339815191528460405161076f9190612274565b60405180910390a35060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60006107af611875565b60015490915060ff16806107c657506107c661187a565b806107d2575060005481115b6107ee5760405162461bcd60e51b8152600401610578906124c5565b60015460ff1615801561080d576001805460ff19168117905560008290555b60405146907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f906108419089908990612209565b60408051918290038220828201825260018352603160f81b602093840152905161089293927fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc69186913091016122b1565b60408051601f198184030181528282528051602091820120603b55601f89018190048102830181019091528782526108e59190899089908190840183828082843760009201919091525061188092505050565b61092485858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061189392505050565b61092d886118a6565b50801561093f576001805460ff191690555b50505050505050565b60395460ff1690565b603b5481565b60006104b5610964611283565b846107398560356000610975611283565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906118bc565b60007f0000000000000000000000007d2768de32b0b80b7a3454c06bdac94a69ddc7a96001600160a01b03166109d9611283565b6001600160a01b03161460405180604001604052806002815260200161323960f01b81525090610a1c5760405162461bcd60e51b815260040161057891906122fb565b5060405162461bcd60e51b815260040161057890612420565b603c546001600160a01b031681565b600080610a536106a984611533565b90506105a87f0000000000000000000000007d2768de32b0b80b7a3454c06bdac94a69ddc7a96001600160a01b031663d15e00537f000000000000000000000000d46ba6d942050d489dbd938a2c909a5d5039a1616040518263ffffffff1660e01b815260040161063e9190612234565b7f0000000000000000000000007d2768de32b0b80b7a3454c06bdac94a69ddc7a981565b604051806040016040528060018152602001603160f81b81525081565b7f0000000000000000000000007d2768de32b0b80b7a3454c06bdac94a69ddc7a96001600160a01b0316610b37611283565b6001600160a01b03161460405180604001604052806002815260200161323960f01b81525090610b7a5760405162461bcd60e51b815260040161057891906122fb565b5081610b8557610ca1565b6000610b91838361158a565b9050610b9b611c79565b610ba361132e565b9050610bd07f000000000000000000000000464c71f6c2f760dda6093dcb91c24c39e5d6e18c8383611635565b610be461059f61059a836000015185611732565b603e556040516001600160a01b037f000000000000000000000000464c71f6c2f760dda6093dcb91c24c39e5d6e18c169060009060008051602061271283398151915290610c33908890612274565b60405180910390a37f000000000000000000000000464c71f6c2f760dda6093dcb91c24c39e5d6e18c6001600160a01b03167f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f8585604051610c96929190612653565b60405180910390a250505b5050565b60388054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104965780601f1061046b57610100808354040283529160200191610496565b60006104b5610d13611283565b84610739856040518060600160405280602581526020016127326025913960356000610d3d611283565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611849565b6000610d82610d7b611283565b848461183c565b826001600160a01b0316610d94611283565b6001600160a01b031660008051602061271283398151915284604051610dba9190612274565b60405180910390a350600192915050565b7f000000000000000000000000464c71f6c2f760dda6093dcb91c24c39e5d6e18c81565b7f000000000000000000000000d46ba6d942050d489dbd938a2c909a5d5039a16181565b6000610e206104cf61132e565b905090565b603a6020526000908152604090205481565b603c546001600160a01b0316158015610e595750603d546001600160a01b0316155b610e6257600080fd5b610e6a611c9a565b6040516335ea6a7560e01b81526001600160a01b037f0000000000000000000000007d2768de32b0b80b7a3454c06bdac94a69ddc7a916906335ea6a7590610ed6907f000000000000000000000000d46ba6d942050d489dbd938a2c909a5d5039a16190600401612234565b6101806040518083038186803b158015610eef57600080fd5b505afa158015610f03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f279190612006565b610100810151603c80546001600160a01b03199081166001600160a01b039384161790915561012090920151603d8054909316911617905550565b6001600160a01b038716610f885760405162461bcd60e51b81526004016105789061253f565b83421115610fa85760405162461bcd60e51b815260040161057890612513565b6001600160a01b0387166000908152603a6020908152604080832054603b549151909392611002917f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918d918d918d9189918e910161227d565b60405160208183030381529060405280519060200120604051602001611029929190612219565b6040516020818303038152906040528051906020012090506001818686866040516000815260200160405260405161106494939291906122dd565b6020604051602081039080840390855afa158015611086573d6000803e3d6000fd5b505050602060405103516001600160a01b0316896001600160a01b0316146110c05760405162461bcd60e51b8152600401610578906123c8565b6110cb8260016118bc565b6001600160a01b038a166000908152603a60205260409020556110ef898989611287565b505050505050505050565b7f0000000000000000000000007d2768de32b0b80b7a3454c06bdac94a69ddc7a96001600160a01b031661112c611283565b6001600160a01b03161460405180604001604052806002815260200161323960f01b8152509061116f5760405162461bcd60e51b815260040161057891906122fb565b5060405162461bcd60e51b8152600401610578906123f3565b6001600160a01b03918216600090815260356020908152604080832093909416825291909152205490565b603d546001600160a01b031681565b7f0000000000000000000000007d2768de32b0b80b7a3454c06bdac94a69ddc7a96001600160a01b03166111f4611283565b6001600160a01b03161460405180604001604052806002815260200161323960f01b815250906112375760405162461bcd60e51b815260040161057891906122fb565b506112458383836000611927565b816001600160a01b0316836001600160a01b0316600080516020612712833981519152836040516112769190612274565b60405180910390a3505050565b3390565b6001600160a01b0383166112ad5760405162461bcd60e51b815260040161057890612566565b6001600160a01b0382166112d35760405162461bcd60e51b81526004016105789061230e565b6001600160a01b0380841660008181526035602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611276908590612274565b611336611c79565b61133e611c79565b7f000000000000000000000000d46ba6d942050d489dbd938a2c909a5d5039a1616001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561139757600080fd5b505afa1580156113ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113cf9190612101565b8152603c5460408051632a960fb160e01b8152815160009384936001600160a01b0390911692632a960fb19260048083019392829003018186803b15801561141657600080fd5b505afa15801561142a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144e9190612119565b603d5460408051632a960fb160e01b8152815194965092945060009384936001600160a01b0390931692632a960fb1926004808301939192829003018186803b15801561149a57600080fd5b505afa1580156114ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d29190612119565b90925090506114e184836118bc565b60208601526114f08382611763565b60408601525092935050505090565b60006105a8836020015161152d85600001516115288760400151876118e190919063ffffffff16565b61193f565b906118bc565b6001600160a01b031660009081526034602052604090205490565b60365490565b6000831580611561575081155b1561156e575060006105a8565b6115828361157c8685611952565b906119c5565b949350505050565b604080518082019091526002815261035360f41b6020820152600090826115c45760405162461bcd60e51b815260040161057891906122fb565b5060408051808201909152600280825261068760f31b60208301528304906b033b2e3c9fd0803ce80000008219048511156116125760405162461bcd60e51b815260040161057891906122fb565b5082816b033b2e3c9fd0803ce80000008602018161162c57fe5b04949350505050565b600061163f61154e565b9050600061164c85611533565b905081611677576000611663846000015186611732565b905061166f8682611a57565b50505061172d565b600061168584603e546114ff565b90506000611694838584611554565b905060006116a28383611b89565b905060006116b084896118bc565b905060006116be848a6118bc565b90506000836116f75760006116dd876116d78d8c611bcb565b90611c05565b90506116e98c82611a57565b50505050505050505061172d565b611718846116d7611708868b611bcb565b6117128c87611bcb565b90611b89565b90506117248b82611a57565b50505050505050505b505050565b60006105a8836116d78460016001607f1b03611bcb565b60006001600160ff1b0382111561175f57600080fd5b5090565b60008282018183128015906117785750838112155b8061178d575060008312801561178d57508381125b6105a85760405162461bcd60e51b815260040161057890612387565b60008215806117b6575081155b156117c3575060006104b9565b816b019d971e4fe8401e7400000019816117d957fe5b0483111560405180604001604052806002815260200161068760f31b815250906118165760405162461bcd60e51b815260040161057891906122fb565b506b033b2e3c9fd0803ce80000006002815b04838502018161183457fe5b049392505050565b61172d8383836001611927565b6000818484111561186d5760405162461bcd60e51b815260040161057891906122fb565b505050900390565b600290565b303b1590565b8051610ca1906037906020840190611d05565b8051610ca1906038906020840190611d05565b6039805460ff191660ff92909216919091179055565b6000828201838110156105a85760405162461bcd60e51b815260040161057890612350565b60008183038183128015906118f65750838113155b8061190b575060008312801561190b57508381135b6105a85760405162461bcd60e51b8152600401610578906125aa565b60405162461bcd60e51b8152600401610578906125ee565b60006105a860016001607f1b0361157c84865b600082158061195f575081155b1561196c575060006104b9565b81631dcd6500198161197a57fe5b0483111560405180604001604052806002815260200161068760f31b815250906119b75760405162461bcd60e51b815260040161057891906122fb565b50633b9aca00600281611828565b604080518082019091526002815261035360f41b6020820152600090826119ff5760405162461bcd60e51b815260040161057891906122fb565b5060408051808201909152600280825261068760f31b6020830152830490633b9aca00821904851115611a455760405162461bcd60e51b815260040161057891906122fb565b508281633b9aca008602018161162c57fe5b6001600160a01b038216611a7d5760405162461bcd60e51b81526004016105789061261c565b611a896000838361172d565b603654611a9681836118bc565b6036556001600160a01b038316600090815260346020526040902054611abc81846118bc565b6001600160a01b038086166000908152603460205260409020919091557f000000000000000000000000d784927ff2f95ba542bfc824c8a8a98f3495f6b51615611b83576040516318c39f1760e11b81526001600160a01b037f000000000000000000000000d784927ff2f95ba542bfc824c8a8a98f3495f6b516906331873e2e90611b5090879086908690600401612248565b600060405180830381600087803b158015611b6a57600080fd5b505af1158015611b7e573d6000803e3d6000fd5b505050505b50505050565b60006105a883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611849565b600082611bda575060006104b9565b82820282848281611be757fe5b04146105a85760405162461bcd60e51b815260040161057890612457565b60006105a883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060008183611c635760405162461bcd60e51b815260040161057891906122fb565b506000838581611c6f57fe5b0495945050505050565b60405180606001604052806000815260200160008152602001600081525090565b604051806101800160405280611cae611d7f565b815260006020820181905260408201819052606082018190526080820181905260a0820181905260c0820181905260e082018190526101008201819052610120820181905261014082018190526101609091015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611d4657805160ff1916838001178555611d73565b82800160010185558215611d73579182015b82811115611d73578251825591602001919060010190611d58565b5061175f929150611d92565b6040518060200160405280600081525090565b5b8082111561175f5760008155600101611d93565b80516104b9816126c2565b60008083601f840112611dc3578182fd5b50813567ffffffffffffffff811115611dda578182fd5b602083019150836020828501011115611df257600080fd5b9250929050565b600060208284031215611e0a578081fd5b611e14602061266f565b9151825250919050565b80516fffffffffffffffffffffffffffffffff811681146104b957600080fd5b805164ffffffffff811681146104b957600080fd5b80516104b9816126da565b600060208284031215611e6f578081fd5b81356105a8816126c2565b60008060408385031215611e8c578081fd5b8235611e97816126c2565b91506020830135611ea7816126c2565b809150509250929050565b600080600060608486031215611ec6578081fd5b8335611ed1816126c2565b92506020840135611ee1816126c2565b929592945050506040919091013590565b60008060008060808587031215611f07578081fd5b8435611f12816126c2565b93506020850135611f22816126c2565b93969395505050506040820135916060013590565b600080600080600080600060e0888a031215611f51578283fd5b8735611f5c816126c2565b96506020880135611f6c816126c2565b955060408801359450606088013593506080880135611f8a816126da565b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215611fb9578182fd5b8235611fc4816126c2565b946020939093013593505050565b600080600060608486031215611fe6578283fd5b8335611ff1816126c2565b95602085013595506040909401359392505050565b6000610180808385031215612019578182fd5b6120228161266f565b905061202e8484611df9565b815261203d8460208501611e1e565b602082015261204f8460408501611e1e565b60408201526120618460608501611e1e565b60608201526120738460808501611e1e565b60808201526120858460a08501611e1e565b60a08201526120978460c08501611e3e565b60c08201526120a98460e08501611da7565b60e08201526101006120bd85828601611da7565b908201526101206120d085858301611da7565b908201526101406120e385858301611da7565b908201526101606120f685858301611e53565b908201529392505050565b600060208284031215612112578081fd5b5051919050565b6000806040838503121561212b578182fd5b505080516020909101519092909150565b6000806040838503121561214e578182fd5b50508035926020909101359150565b600080600080600060608688031215612174578283fd5b853561217f816126da565b9450602086013567ffffffffffffffff8082111561219b578485fd5b6121a789838a01611db2565b909650945060408801359150808211156121bf578283fd5b506121cc88828901611db2565b969995985093965092949392505050565b600081518084526121f5816020860160208601612696565b601f01601f19169290920160200192915050565b6000828483379101908152919050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b039390931683526020830191909152604082015260600190565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b93845260ff9290921660208401526040830152606082015260800190565b6000602082526105a860208301846121dd565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526021908201527f5369676e6564536166654d6174683a206164646974696f6e206f766572666c6f6040820152607760f81b606082015260800190565b602080825260119082015270494e56414c49445f5349474e415455524560781b604082015260600190565b60208082526013908201527210955493925391d7d254d7d11254d050931151606a1b604082015260600190565b60208082526018908201527f464c4153484c4f414e494e475f49535f44495341424c45440000000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526013908201527213525395125391d7d254d7d11254d050931151606a1b604082015260600190565b6020808252602e908201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560408201526d195b881a5b9a5d1a585b1a5e995960921b606082015260800190565b60208082526012908201527124a72b20a624a22fa2ac2824a920aa24a7a760711b604082015260600190565b6020808252600d908201526c24a72b20a624a22fa7aba722a960991b604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526024908201527f5369676e6564536166654d6174683a207375627472616374696f6e206f766572604082015263666c6f7760e01b606082015260800190565b6020808252601490820152731514905394d1915497d254d7d11254d05093115160621b604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b918252602082015260400190565b60ff91909116815260200190565b60405181810167ffffffffffffffff8111828210171561268e57600080fd5b604052919050565b60005b838110156126b1578181015183820152602001612699565b83811115611b835750506000910152565b6001600160a01b03811681146126d757600080fd5b50565b60ff811681146126d757600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203062298f64d3cf3eda7dac39981a0c0b79dfd7ae46d36a589e6b8ddbaa2acb8e64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007d2768de32b0b80b7a3454c06bdac94a69ddc7a9000000000000000000000000d46ba6d942050d489dbd938a2c909a5d5039a161000000000000000000000000464c71f6c2f760dda6093dcb91c24c39e5d6e18c00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000d784927ff2f95ba542bfc824c8a8a98f3495f6b5000000000000000000000000000000000000000000000000000000000000001a4161766520696e7465726573742062656172696e6720414d504c000000000000000000000000000000000000000000000000000000000000000000000000000561414d504c000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : pool (address): 0x7d2768dE32b0b80b7a3454c06BdAc94A69DDc7A9
Arg [1] : underlyingAssetAddress (address): 0xD46bA6D942050d489DBd938a2C909A5d5039A161
Arg [2] : reserveTreasuryAddress (address): 0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c
Arg [3] : tokenName (string): Aave interest bearing AMPL
Arg [4] : tokenSymbol (string): aAMPL
Arg [5] : incentivesController (address): 0xd784927Ff2f95ba542BfC824c8a8a98F3495f6b5
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000007d2768de32b0b80b7a3454c06bdac94a69ddc7a9
Arg [1] : 000000000000000000000000d46ba6d942050d489dbd938a2c909a5d5039a161
Arg [2] : 000000000000000000000000464c71f6c2f760dda6093dcb91c24c39e5d6e18c
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [5] : 000000000000000000000000d784927ff2f95ba542bfc824c8a8a98f3495f6b5
Arg [6] : 000000000000000000000000000000000000000000000000000000000000001a
Arg [7] : 4161766520696e7465726573742062656172696e6720414d504c000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 61414d504c000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.