Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
TranchedPool
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/drafts/IERC20Permit.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/math/Math.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/math/SafeMath.sol"; import "../../interfaces/ITranchedPool.sol"; import "../../interfaces/IRequiresUID.sol"; import "../../interfaces/IERC20withDec.sol"; import "../../interfaces/IV2CreditLine.sol"; import "../../interfaces/IPoolTokens.sol"; import "./GoldfinchConfig.sol"; import "./BaseUpgradeablePausable.sol"; import "./ConfigHelper.sol"; import "../../library/SafeERC20Transfer.sol"; import "./TranchingLogic.sol"; contract TranchedPool is BaseUpgradeablePausable, ITranchedPool, SafeERC20Transfer, IRequiresUID { GoldfinchConfig public config; using ConfigHelper for GoldfinchConfig; using TranchingLogic for PoolSlice; using TranchingLogic for TrancheInfo; bytes32 public constant LOCKER_ROLE = keccak256("LOCKER_ROLE"); bytes32 public constant SENIOR_ROLE = keccak256("SENIOR_ROLE"); uint256 public constant FP_SCALING_FACTOR = 1e18; uint256 public constant SECONDS_PER_DAY = 60 * 60 * 24; uint256 public constant ONE_HUNDRED = 100; // Need this because we cannot call .div on a literal 100 uint256 public constant NUM_TRANCHES_PER_SLICE = 2; uint256 public juniorFeePercent; bool public drawdownsPaused; uint256[] public allowedUIDTypes; uint256 public totalDeployed; uint256 public fundableAt; PoolSlice[] public poolSlices; event DepositMade(address indexed owner, uint256 indexed tranche, uint256 indexed tokenId, uint256 amount); event WithdrawalMade( address indexed owner, uint256 indexed tranche, uint256 indexed tokenId, uint256 interestWithdrawn, uint256 principalWithdrawn ); event TranchedPoolAssessed(address indexed pool); event PaymentApplied( address indexed payer, address indexed pool, uint256 interestAmount, uint256 principalAmount, uint256 remainingAmount, uint256 reserveAmount ); // Note: This has to exactly match the even in the TranchingLogic library for events to be emitted // correctly event SharePriceUpdated( address indexed pool, uint256 indexed tranche, uint256 principalSharePrice, int256 principalDelta, uint256 interestSharePrice, int256 interestDelta ); event ReserveFundsCollected(address indexed from, uint256 amount); event CreditLineMigrated(address indexed oldCreditLine, address indexed newCreditLine); event DrawdownMade(address indexed borrower, uint256 amount); event DrawdownsPaused(address indexed pool); event DrawdownsUnpaused(address indexed pool); event EmergencyShutdown(address indexed pool); event TrancheLocked(address indexed pool, uint256 trancheId, uint256 lockedUntil); event SliceCreated(address indexed pool, uint256 sliceId); function initialize( address _config, address _borrower, uint256 _juniorFeePercent, uint256 _limit, uint256 _interestApr, uint256 _paymentPeriodInDays, uint256 _termInDays, uint256 _lateFeeApr, uint256 _principalGracePeriodInDays, uint256 _fundableAt, uint256[] calldata _allowedUIDTypes ) public override initializer { require(address(_config) != address(0) && address(_borrower) != address(0), "Config/borrower invalid"); config = GoldfinchConfig(_config); address owner = config.protocolAdminAddress(); require(owner != address(0), "Owner invalid"); __BaseUpgradeablePausable__init(owner); _initializeNextSlice(_fundableAt); createAndSetCreditLine( _borrower, _limit, _interestApr, _paymentPeriodInDays, _termInDays, _lateFeeApr, _principalGracePeriodInDays ); createdAt = block.timestamp; juniorFeePercent = _juniorFeePercent; if (_allowedUIDTypes.length == 0) { uint256[1] memory defaultAllowedUIDTypes = [config.getGo().ID_TYPE_0()]; allowedUIDTypes = defaultAllowedUIDTypes; } else { allowedUIDTypes = _allowedUIDTypes; } _setupRole(LOCKER_ROLE, _borrower); _setupRole(LOCKER_ROLE, owner); _setRoleAdmin(LOCKER_ROLE, OWNER_ROLE); _setRoleAdmin(SENIOR_ROLE, OWNER_ROLE); // Give the senior pool the ability to deposit into the senior pool _setupRole(SENIOR_ROLE, address(config.getSeniorPool())); // Unlock self for infinite amount bool success = config.getUSDC().approve(address(this), uint256(-1)); require(success, "Failed to approve USDC"); } function setAllowedUIDTypes(uint256[] calldata ids) public onlyLocker { require( poolSlices[0].juniorTranche.principalDeposited == 0 && poolSlices[0].seniorTranche.principalDeposited == 0, "Must not have balance" ); allowedUIDTypes = ids; } function getAllowedUIDTypes() public view returns (uint256[] memory) { return allowedUIDTypes; } /** * @notice Deposit a USDC amount into the pool for a tranche. Mints an NFT to the caller representing the position * @param tranche The number representing the tranche to deposit into * @param amount The USDC amount to tranfer from the caller to the pool * @return tokenId The tokenId of the NFT */ function deposit(uint256 tranche, uint256 amount) public override nonReentrant whenNotPaused returns (uint256 tokenId) { TrancheInfo storage trancheInfo = _getTrancheInfo(tranche); require(trancheInfo.lockedUntil == 0, "Tranche locked"); require(amount > 0, "Must deposit > zero"); require(hasAllowedUID(msg.sender), "Address not go-listed"); require(block.timestamp > fundableAt, "Not open for funding"); // senior tranche ids are always odd numbered if (_isSeniorTrancheId(trancheInfo.id)) { require(hasRole(SENIOR_ROLE, _msgSender()), "Req SENIOR_ROLE"); } trancheInfo.principalDeposited = trancheInfo.principalDeposited.add(amount); IPoolTokens.MintParams memory params = IPoolTokens.MintParams({tranche: tranche, principalAmount: amount}); tokenId = config.getPoolTokens().mint(params, msg.sender); safeERC20TransferFrom(config.getUSDC(), msg.sender, address(this), amount); emit DepositMade(msg.sender, tranche, tokenId, amount); return tokenId; } function depositWithPermit( uint256 tranche, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public override returns (uint256 tokenId) { IERC20Permit(config.usdcAddress()).permit(msg.sender, address(this), amount, deadline, v, r, s); return deposit(tranche, amount); } /** * @notice Withdraw an already deposited amount if the funds are available * @param tokenId The NFT representing the position * @param amount The amount to withdraw (must be <= interest+principal currently available to withdraw) * @return interestWithdrawn The interest amount that was withdrawn * @return principalWithdrawn The principal amount that was withdrawn */ function withdraw(uint256 tokenId, uint256 amount) public override nonReentrant whenNotPaused returns (uint256 interestWithdrawn, uint256 principalWithdrawn) { IPoolTokens.TokenInfo memory tokenInfo = config.getPoolTokens().getTokenInfo(tokenId); TrancheInfo storage trancheInfo = _getTrancheInfo(tokenInfo.tranche); return _withdraw(trancheInfo, tokenInfo, tokenId, amount); } /** * @notice Withdraw from many tokens (that the sender owns) in a single transaction * @param tokenIds An array of tokens ids representing the position * @param amounts An array of amounts to withdraw from the corresponding tokenIds */ function withdrawMultiple(uint256[] calldata tokenIds, uint256[] calldata amounts) public override { require(tokenIds.length == amounts.length, "TokensIds and Amounts mismatch"); for (uint256 i = 0; i < amounts.length; i++) { withdraw(tokenIds[i], amounts[i]); } } /** * @notice Similar to withdraw but will withdraw all available funds * @param tokenId The NFT representing the position * @return interestWithdrawn The interest amount that was withdrawn * @return principalWithdrawn The principal amount that was withdrawn */ function withdrawMax(uint256 tokenId) external override nonReentrant whenNotPaused returns (uint256 interestWithdrawn, uint256 principalWithdrawn) { IPoolTokens.TokenInfo memory tokenInfo = config.getPoolTokens().getTokenInfo(tokenId); TrancheInfo storage trancheInfo = _getTrancheInfo(tokenInfo.tranche); (uint256 interestRedeemable, uint256 principalRedeemable) = redeemableInterestAndPrincipal(trancheInfo, tokenInfo); uint256 amount = interestRedeemable.add(principalRedeemable); return _withdraw(trancheInfo, tokenInfo, tokenId, amount); } /** * @notice Draws down the funds (and locks the pool) to the borrower address. Can only be called by the borrower * @param amount The amount to drawdown from the creditline (must be < limit) */ function drawdown(uint256 amount) external override onlyLocker whenNotPaused { require(!drawdownsPaused, "Drawdowns are paused"); if (!locked()) { // Assumes the senior pool has invested already (saves the borrower a separate transaction to lock the pool) _lockPool(); } // Drawdown only draws down from the current slice for simplicity. It's harder to account for how much // money is available from previous slices since depositors can redeem after unlock. PoolSlice storage currentSlice = poolSlices[poolSlices.length.sub(1)]; uint256 amountAvailable = sharePriceToUsdc( currentSlice.juniorTranche.principalSharePrice, currentSlice.juniorTranche.principalDeposited ); amountAvailable = amountAvailable.add( sharePriceToUsdc(currentSlice.seniorTranche.principalSharePrice, currentSlice.seniorTranche.principalDeposited) ); require(amount <= amountAvailable, "Insufficient funds in slice"); creditLine.drawdown(amount); // Update the share price to reflect the amount remaining in the pool uint256 amountRemaining = amountAvailable.sub(amount); uint256 oldJuniorPrincipalSharePrice = currentSlice.juniorTranche.principalSharePrice; uint256 oldSeniorPrincipalSharePrice = currentSlice.seniorTranche.principalSharePrice; currentSlice.juniorTranche.principalSharePrice = currentSlice.juniorTranche.calculateExpectedSharePrice( amountRemaining, currentSlice ); currentSlice.seniorTranche.principalSharePrice = currentSlice.seniorTranche.calculateExpectedSharePrice( amountRemaining, currentSlice ); currentSlice.principalDeployed = currentSlice.principalDeployed.add(amount); totalDeployed = totalDeployed.add(amount); address borrower = creditLine.borrower(); IBackerRewards backerRewards = IBackerRewards(config.backerRewardsAddress()); uint256 sliceIndex = poolSlices.length.sub(1); backerRewards.onTranchedPoolDrawdown(sliceIndex); safeERC20TransferFrom(config.getUSDC(), address(this), borrower, amount); emit DrawdownMade(borrower, amount); emit SharePriceUpdated( address(this), currentSlice.juniorTranche.id, currentSlice.juniorTranche.principalSharePrice, int256(oldJuniorPrincipalSharePrice.sub(currentSlice.juniorTranche.principalSharePrice)) * -1, currentSlice.juniorTranche.interestSharePrice, 0 ); emit SharePriceUpdated( address(this), currentSlice.seniorTranche.id, currentSlice.seniorTranche.principalSharePrice, int256(oldSeniorPrincipalSharePrice.sub(currentSlice.seniorTranche.principalSharePrice)) * -1, currentSlice.seniorTranche.interestSharePrice, 0 ); } /** * @notice Locks the junior tranche, preventing more junior deposits. Gives time for the senior to determine how * much to invest (ensure leverage ratio cannot change for the period) */ function lockJuniorCapital() external override onlyLocker whenNotPaused { _lockJuniorCapital(poolSlices.length.sub(1)); } /** * @notice Locks the pool (locks both senior and junior tranches and starts the drawdown period). Beyond the drawdown * period, any unused capital is available to withdraw by all depositors */ function lockPool() external override onlyLocker whenNotPaused { _lockPool(); } function setFundableAt(uint256 newFundableAt) external override onlyLocker { fundableAt = newFundableAt; } function initializeNextSlice(uint256 _fundableAt) external override onlyLocker whenNotPaused { require(locked(), "Current slice still active"); require(!creditLine.isLate(), "Creditline is late"); require(creditLine.withinPrincipalGracePeriod(), "Beyond principal grace period"); _initializeNextSlice(_fundableAt); emit SliceCreated(address(this), poolSlices.length.sub(1)); } /** * @notice Triggers an assessment of the creditline and the applies the payments according the tranche waterfall */ function assess() external override whenNotPaused { _assess(); } /** * @notice Allows repaying the creditline. Collects the USDC amount from the sender and triggers an assess * @param amount The amount to repay */ function pay(uint256 amount) external override whenNotPaused { require(amount > 0, "Must pay more than zero"); _collectPayment(amount); _assess(); } /** * @notice Pauses the pool and sweeps any remaining funds to the treasury reserve. */ function emergencyShutdown() public onlyAdmin { if (!paused()) { pause(); } IERC20withDec usdc = config.getUSDC(); address reserveAddress = config.reserveAddress(); // Sweep any funds to community reserve uint256 poolBalance = usdc.balanceOf(address(this)); if (poolBalance > 0) { safeERC20Transfer(usdc, reserveAddress, poolBalance); } uint256 clBalance = usdc.balanceOf(address(creditLine)); if (clBalance > 0) { safeERC20TransferFrom(usdc, address(creditLine), reserveAddress, clBalance); } emit EmergencyShutdown(address(this)); } /** * @notice Pauses all drawdowns (but not deposits/withdraws) */ function pauseDrawdowns() public onlyAdmin { drawdownsPaused = true; emit DrawdownsPaused(address(this)); } /** * @notice Unpause drawdowns */ function unpauseDrawdowns() public onlyAdmin { drawdownsPaused = false; emit DrawdownsUnpaused(address(this)); } /** * @notice Migrates the accounting variables from the current creditline to a brand new one * @param _borrower The borrower address * @param _maxLimit The new max limit * @param _interestApr The new interest APR * @param _paymentPeriodInDays The new payment period in days * @param _termInDays The new term in days * @param _lateFeeApr The new late fee APR */ function migrateCreditLine( address _borrower, uint256 _maxLimit, uint256 _interestApr, uint256 _paymentPeriodInDays, uint256 _termInDays, uint256 _lateFeeApr, uint256 _principalGracePeriodInDays ) public onlyAdmin { require(_borrower != address(0), "Borrower must not be empty"); require(_paymentPeriodInDays != 0, "Payment period invalid"); require(_termInDays != 0, "Term must not be empty"); address originalClAddr = address(creditLine); createAndSetCreditLine( _borrower, _maxLimit, _interestApr, _paymentPeriodInDays, _termInDays, _lateFeeApr, _principalGracePeriodInDays ); address newClAddr = address(creditLine); TranchingLogic.migrateAccountingVariables(originalClAddr, newClAddr); TranchingLogic.closeCreditLine(originalClAddr); address originalBorrower = IV2CreditLine(originalClAddr).borrower(); address newBorrower = IV2CreditLine(newClAddr).borrower(); // Ensure Roles if (originalBorrower != newBorrower) { revokeRole(LOCKER_ROLE, originalBorrower); grantRole(LOCKER_ROLE, newBorrower); } // Transfer any funds to new CL uint256 clBalance = config.getUSDC().balanceOf(originalClAddr); if (clBalance > 0) { safeERC20TransferFrom(config.getUSDC(), originalClAddr, newClAddr, clBalance); } emit CreditLineMigrated(originalClAddr, newClAddr); } /** * @notice Migrates to a new creditline without copying the accounting variables */ function migrateAndSetNewCreditLine(address newCl) public onlyAdmin { require(newCl != address(0), "Creditline cannot be empty"); address originalClAddr = address(creditLine); // Transfer any funds to new CL uint256 clBalance = config.getUSDC().balanceOf(originalClAddr); if (clBalance > 0) { safeERC20TransferFrom(config.getUSDC(), originalClAddr, newCl, clBalance); } TranchingLogic.closeCreditLine(originalClAddr); // set new CL creditLine = IV2CreditLine(newCl); // sanity check that the new address is in fact a creditline creditLine.limit(); emit CreditLineMigrated(originalClAddr, address(creditLine)); } // CreditLine proxy method function setLimit(uint256 newAmount) external onlyAdmin { return creditLine.setLimit(newAmount); } function setMaxLimit(uint256 newAmount) external onlyAdmin { return creditLine.setMaxLimit(newAmount); } function getTranche(uint256 tranche) public view override returns (TrancheInfo memory) { return _getTrancheInfo(tranche); } function numSlices() public view override returns (uint256) { return poolSlices.length; } /** * @notice Converts USDC amounts to share price * @param amount The USDC amount to convert * @param totalShares The total shares outstanding * @return The share price of the input amount */ function usdcToSharePrice(uint256 amount, uint256 totalShares) public pure returns (uint256) { return TranchingLogic.usdcToSharePrice(amount, totalShares); } /** * @notice Converts share price to USDC amounts * @param sharePrice The share price to convert * @param totalShares The total shares outstanding * @return The USDC amount of the input share price */ function sharePriceToUsdc(uint256 sharePrice, uint256 totalShares) public pure returns (uint256) { return TranchingLogic.sharePriceToUsdc(sharePrice, totalShares); } /** * @notice Returns the total junior capital deposited * @return The total USDC amount deposited into all junior tranches */ function totalJuniorDeposits() external view override returns (uint256) { uint256 total; for (uint256 i = 0; i < poolSlices.length; i++) { total = total.add(poolSlices[i].juniorTranche.principalDeposited); } return total; } /** * @notice Determines the amount of interest and principal redeemable by a particular tokenId * @param tokenId The token representing the position * @return interestRedeemable The interest available to redeem * @return principalRedeemable The principal available to redeem */ function availableToWithdraw(uint256 tokenId) public view override returns (uint256 interestRedeemable, uint256 principalRedeemable) { IPoolTokens.TokenInfo memory tokenInfo = config.getPoolTokens().getTokenInfo(tokenId); TrancheInfo storage trancheInfo = _getTrancheInfo(tokenInfo.tranche); if (currentTime() > trancheInfo.lockedUntil) { return redeemableInterestAndPrincipal(trancheInfo, tokenInfo); } else { return (0, 0); } } /* Internal functions */ function _withdraw( TrancheInfo storage trancheInfo, IPoolTokens.TokenInfo memory tokenInfo, uint256 tokenId, uint256 amount ) internal returns (uint256 interestWithdrawn, uint256 principalWithdrawn) { require(config.getPoolTokens().isApprovedOrOwner(msg.sender, tokenId), "Not token owner"); require(hasAllowedUID(msg.sender), "Address not go-listed"); require(amount > 0, "Must withdraw more than zero"); (uint256 interestRedeemable, uint256 principalRedeemable) = redeemableInterestAndPrincipal(trancheInfo, tokenInfo); uint256 netRedeemable = interestRedeemable.add(principalRedeemable); require(amount <= netRedeemable, "Invalid redeem amount"); require(currentTime() > trancheInfo.lockedUntil, "Tranche is locked"); uint256 interestToRedeem = 0; uint256 principalToRedeem = 0; // If the tranche has not been locked, ensure the deposited amount is correct if (trancheInfo.lockedUntil == 0) { trancheInfo.principalDeposited = trancheInfo.principalDeposited.sub(amount); principalToRedeem = amount; config.getPoolTokens().withdrawPrincipal(tokenId, principalToRedeem); } else { interestToRedeem = Math.min(interestRedeemable, amount); principalToRedeem = Math.min(principalRedeemable, amount.sub(interestToRedeem)); config.getPoolTokens().redeem(tokenId, principalToRedeem, interestToRedeem); } safeERC20TransferFrom(config.getUSDC(), address(this), msg.sender, principalToRedeem.add(interestToRedeem)); emit WithdrawalMade(msg.sender, tokenInfo.tranche, tokenId, interestToRedeem, principalToRedeem); return (interestToRedeem, principalToRedeem); } function _isSeniorTrancheId(uint256 trancheId) internal pure returns (bool) { return trancheId.mod(NUM_TRANCHES_PER_SLICE) == 1; } function redeemableInterestAndPrincipal(TrancheInfo storage trancheInfo, IPoolTokens.TokenInfo memory tokenInfo) internal view returns (uint256 interestRedeemable, uint256 principalRedeemable) { // This supports withdrawing before or after locking because principal share price starts at 1 // and is set to 0 on lock. Interest share price is always 0 until interest payments come back, when it increases uint256 maxPrincipalRedeemable = sharePriceToUsdc(trancheInfo.principalSharePrice, tokenInfo.principalAmount); // The principalAmount is used as the totalShares because we want the interestSharePrice to be expressed as a // percent of total loan value e.g. if the interest is 10% APR, the interestSharePrice should approach a max of 0.1. uint256 maxInterestRedeemable = sharePriceToUsdc(trancheInfo.interestSharePrice, tokenInfo.principalAmount); interestRedeemable = maxInterestRedeemable.sub(tokenInfo.interestRedeemed); principalRedeemable = maxPrincipalRedeemable.sub(tokenInfo.principalRedeemed); return (interestRedeemable, principalRedeemable); } function _lockJuniorCapital(uint256 sliceId) internal { require(!locked(), "Pool already locked"); require(poolSlices[sliceId].juniorTranche.lockedUntil == 0, "Junior tranche already locked"); uint256 lockedUntil = currentTime().add(config.getDrawdownPeriodInSeconds()); poolSlices[sliceId].juniorTranche.lockedUntil = lockedUntil; emit TrancheLocked(address(this), poolSlices[sliceId].juniorTranche.id, lockedUntil); } function _lockPool() internal { uint256 sliceId = poolSlices.length.sub(1); require(poolSlices[sliceId].juniorTranche.lockedUntil > 0, "Junior tranche must be locked"); // Allow locking the pool only once; do not allow extending the lock of an // already-locked pool. Otherwise the locker could keep the pool locked // indefinitely, preventing withdrawals. require(poolSlices[sliceId].seniorTranche.lockedUntil == 0, "Lock cannot be extended"); uint256 currentTotal = poolSlices[sliceId].juniorTranche.principalDeposited.add( poolSlices[sliceId].seniorTranche.principalDeposited ); creditLine.setLimit(Math.min(creditLine.limit().add(currentTotal), creditLine.maxLimit())); // We start the drawdown period, so backers can withdraw unused capital after borrower draws down uint256 lockPeriod = config.getDrawdownPeriodInSeconds(); poolSlices[sliceId].seniorTranche.lockedUntil = currentTime().add(lockPeriod); poolSlices[sliceId].juniorTranche.lockedUntil = currentTime().add(lockPeriod); emit TrancheLocked( address(this), poolSlices[sliceId].seniorTranche.id, poolSlices[sliceId].seniorTranche.lockedUntil ); emit TrancheLocked( address(this), poolSlices[sliceId].juniorTranche.id, poolSlices[sliceId].juniorTranche.lockedUntil ); } function _initializeNextSlice(uint256 newFundableAt) internal { uint256 _numSlices = poolSlices.length; require(_numSlices < 5, "Cannot exceed 5 slices"); poolSlices.push( PoolSlice({ seniorTranche: TrancheInfo({ id: _numSlices.mul(NUM_TRANCHES_PER_SLICE).add(1), principalSharePrice: usdcToSharePrice(1, 1), interestSharePrice: 0, principalDeposited: 0, lockedUntil: 0 }), juniorTranche: TrancheInfo({ id: _numSlices.mul(NUM_TRANCHES_PER_SLICE).add(2), principalSharePrice: usdcToSharePrice(1, 1), interestSharePrice: 0, principalDeposited: 0, lockedUntil: 0 }), totalInterestAccrued: 0, principalDeployed: 0 }) ); fundableAt = newFundableAt; } function collectInterestAndPrincipal( address from, uint256 interest, uint256 principal ) internal returns (uint256 totalReserveAmount) { safeERC20TransferFrom(config.getUSDC(), from, address(this), principal.add(interest), "Failed to collect payment"); uint256 reserveFeePercent = ONE_HUNDRED.div(config.getReserveDenominator()); // Convert the denonminator to percent ApplyResult memory result = TranchingLogic.applyToAllSeniorTranches( poolSlices, interest, principal, reserveFeePercent, totalDeployed, creditLine, juniorFeePercent ); totalReserveAmount = result.reserveDeduction.add( TranchingLogic.applyToAllJuniorTranches( poolSlices, result.interestRemaining, result.principalRemaining, reserveFeePercent, totalDeployed, creditLine ) ); _sendToReserve(totalReserveAmount); return totalReserveAmount; } // If the senior tranche of the current slice is locked, then the pool is not open to any more deposits // (could throw off leverage ratio) function locked() internal view returns (bool) { return poolSlices[poolSlices.length.sub(1)].seniorTranche.lockedUntil > 0; } function createAndSetCreditLine( address _borrower, uint256 _maxLimit, uint256 _interestApr, uint256 _paymentPeriodInDays, uint256 _termInDays, uint256 _lateFeeApr, uint256 _principalGracePeriodInDays ) internal { address _creditLine = config.getGoldfinchFactory().createCreditLine(); creditLine = IV2CreditLine(_creditLine); creditLine.initialize( address(config), address(this), // Set self as the owner _borrower, _maxLimit, _interestApr, _paymentPeriodInDays, _termInDays, _lateFeeApr, _principalGracePeriodInDays ); } function _getTrancheInfo(uint256 trancheId) internal view returns (TrancheInfo storage) { require(trancheId > 0 && trancheId <= poolSlices.length.mul(NUM_TRANCHES_PER_SLICE), "Unsupported tranche"); uint256 sliceId = ((trancheId.add(trancheId.mod(NUM_TRANCHES_PER_SLICE))).div(NUM_TRANCHES_PER_SLICE)).sub(1); PoolSlice storage slice = poolSlices[sliceId]; TrancheInfo storage trancheInfo = trancheId.mod(NUM_TRANCHES_PER_SLICE) == 1 ? slice.seniorTranche : slice.juniorTranche; return trancheInfo; } function currentTime() internal view virtual returns (uint256) { return block.timestamp; } function _sendToReserve(uint256 amount) internal { emit ReserveFundsCollected(address(this), amount); safeERC20TransferFrom( config.getUSDC(), address(this), config.reserveAddress(), amount, "Failed to send to reserve" ); } function _collectPayment(uint256 amount) internal { safeERC20TransferFrom(config.getUSDC(), msg.sender, address(creditLine), amount, "Failed to collect payment"); } function _assess() internal { // We need to make sure the pool is locked before we allocate rewards to ensure it's not // possible to game rewards by sandwiching an interest payment to an unlocked pool // It also causes issues trying to allocate payments to an empty slice (divide by zero) require(locked(), "Pool is not locked"); uint256 interestAccrued = creditLine.totalInterestAccrued(); (uint256 paymentRemaining, uint256 interestPayment, uint256 principalPayment) = creditLine.assess(); interestAccrued = creditLine.totalInterestAccrued().sub(interestAccrued); // Split the interest accrued proportionally across slices so we know how much interest goes to each slice // We need this because the slice start at different times, so we cannot retroactively allocate the interest // linearly uint256[] memory principalPaymentsPerSlice = new uint256[](poolSlices.length); for (uint256 i = 0; i < poolSlices.length; i++) { uint256 interestForSlice = TranchingLogic.scaleByFraction( interestAccrued, poolSlices[i].principalDeployed, totalDeployed ); principalPaymentsPerSlice[i] = TranchingLogic.scaleByFraction( principalPayment, poolSlices[i].principalDeployed, totalDeployed ); poolSlices[i].totalInterestAccrued = poolSlices[i].totalInterestAccrued.add(interestForSlice); } if (interestPayment > 0 || principalPayment > 0) { uint256 reserveAmount = collectInterestAndPrincipal( address(creditLine), interestPayment, principalPayment.add(paymentRemaining) ); for (uint256 i = 0; i < poolSlices.length; i++) { poolSlices[i].principalDeployed = poolSlices[i].principalDeployed.sub(principalPaymentsPerSlice[i]); totalDeployed = totalDeployed.sub(principalPaymentsPerSlice[i]); } config.getBackerRewards().allocateRewards(interestPayment); emit PaymentApplied( creditLine.borrower(), address(this), interestPayment, principalPayment, paymentRemaining, reserveAmount ); } emit TranchedPoolAssessed(address(this)); } function hasAllowedUID(address sender) public view override returns (bool) { return config.getGo().goOnlyIdTypes(sender, allowedUIDTypes); } modifier onlyLocker() { require(hasRole(LOCKER_ROLE, msg.sender), "Must have locker role"); _; } }
pragma solidity ^0.6.0; import "../Initializable.sol"; /* * @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. */ contract ContextUpgradeSafe is Initializable { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } 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; } uint256[50] private __gap; }
pragma solidity >=0.4.24 <0.7.0; /** * @title Initializable * * @dev Helper contract to support 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. */ contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private initialized; /** * @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() { require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized"); bool isTopLevelCall = !initializing; if (isTopLevelCall) { initializing = true; initialized = true; } _; if (isTopLevelCall) { initializing = false; } } /// @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. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; }
pragma solidity ^0.6.0; import "../utils/EnumerableSet.sol"; import "../utils/Address.sol"; import "../GSN/Context.sol"; import "../Initializable.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, _msgSender())); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. */ abstract contract AccessControlUpgradeSafe is Initializable, ContextUpgradeSafe { function __AccessControl_init() internal initializer { __Context_init_unchained(); __AccessControl_init_unchained(); } function __AccessControl_init_unchained() internal initializer { } using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } uint256[49] private __gap; }
pragma solidity ^0.6.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
pragma solidity ^0.6.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } }
pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // 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; } }
pragma solidity ^0.6.0; /** * @title SignedSafeMath * @dev Signed math operations with safety checks that revert on error. */ library SignedSafeMath { int256 constant private _INT256_MIN = -2**255; /** * @dev Multiplies two signed integers, reverts on 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 Integer division of two signed integers truncating the quotient, reverts on division by 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 Subtracts two signed integers, reverts on 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 Adds two signed integers, reverts on 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; } }
pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
pragma solidity ^0.6.2; import "../../introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of NFTs in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the NFT specified by `tokenId`. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * * * Requirements: * - `from`, `to` cannot be zero. * - `tokenId` must be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this * NFT by either {approve} or {setApprovalForAll}. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * Requirements: * - If the caller is not `from`, it must be approved to move this NFT by * either {approve} or {setApprovalForAll}. */ function transferFrom(address from, address to, uint256 tokenId) external; function approve(address to, uint256 tokenId) external; function getApproved(uint256 tokenId) external view returns (address operator); function setApprovalForAll(address operator, bool _approved) external; function isApprovedForAll(address owner, address operator) external view returns (bool); function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; }
pragma solidity ^0.6.2; /** * @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"); } }
pragma solidity ^0.6.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256` * (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } }
pragma solidity ^0.6.0; import "../GSN/Context.sol"; import "../Initializable.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract PausableUpgradeSafe is Initializable, ContextUpgradeSafe { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal initializer { __Context_init_unchained(); __Pausable_init_unchained(); } function __Pausable_init_unchained() internal initializer { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Triggers stopped state. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } uint256[49] private __gap; }
pragma solidity ^0.6.0; import "../Initializable.sol"; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ contract ReentrancyGuardUpgradeSafe is Initializable { bool private _notEntered; function __ReentrancyGuard_init() internal initializer { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal initializer { // Storing an initial non-zero value makes deployment a bit more // expensive, but in exchange the refund on every call to nonReentrant // will be lower in amount. Since refunds are capped to a percetange of // the total transaction's gas, it is best to keep them low in cases // like this one, to increase the likelihood of the full refund coming // into effect. _notEntered = true; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_notEntered, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _notEntered = false; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _notEntered = true; } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over `owner`'s tokens, * given `owner`'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for `permit`, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: AGPL-3.0-only // solhint-disable // Imported from https://github.com/UMAprotocol/protocol/blob/4d1c8cc47a4df5e79f978cb05647a7432e111a3d/packages/core/contracts/common/implementation/FixedPoint.sol pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts-ethereum-package/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/math/SignedSafeMath.sol"; /** * @title Library for fixed point arithmetic on uints */ library FixedPoint { using SafeMath for uint256; using SignedSafeMath for int256; // Supports 18 decimals. E.g., 1e18 represents "1", 5e17 represents "0.5". // For unsigned values: // This can represent a value up to (2^256 - 1)/10^18 = ~10^59. 10^59 will be stored internally as uint256 10^77. uint256 private constant FP_SCALING_FACTOR = 10**18; // --------------------------------------- UNSIGNED ----------------------------------------------------------------------------- struct Unsigned { uint256 rawValue; } /** * @notice Constructs an `Unsigned` from an unscaled uint, e.g., `b=5` gets stored internally as `5**18`. * @param a uint to convert into a FixedPoint. * @return the converted FixedPoint. */ function fromUnscaledUint(uint256 a) internal pure returns (Unsigned memory) { return Unsigned(a.mul(FP_SCALING_FACTOR)); } /** * @notice Whether `a` is equal to `b`. * @param a a FixedPoint. * @param b a uint256. * @return True if equal, or False. */ function isEqual(Unsigned memory a, uint256 b) internal pure returns (bool) { return a.rawValue == fromUnscaledUint(b).rawValue; } /** * @notice Whether `a` is equal to `b`. * @param a a FixedPoint. * @param b a FixedPoint. * @return True if equal, or False. */ function isEqual(Unsigned memory a, Unsigned memory b) internal pure returns (bool) { return a.rawValue == b.rawValue; } /** * @notice Whether `a` is greater than `b`. * @param a a FixedPoint. * @param b a FixedPoint. * @return True if `a > b`, or False. */ function isGreaterThan(Unsigned memory a, Unsigned memory b) internal pure returns (bool) { return a.rawValue > b.rawValue; } /** * @notice Whether `a` is greater than `b`. * @param a a FixedPoint. * @param b a uint256. * @return True if `a > b`, or False. */ function isGreaterThan(Unsigned memory a, uint256 b) internal pure returns (bool) { return a.rawValue > fromUnscaledUint(b).rawValue; } /** * @notice Whether `a` is greater than `b`. * @param a a uint256. * @param b a FixedPoint. * @return True if `a > b`, or False. */ function isGreaterThan(uint256 a, Unsigned memory b) internal pure returns (bool) { return fromUnscaledUint(a).rawValue > b.rawValue; } /** * @notice Whether `a` is greater than or equal to `b`. * @param a a FixedPoint. * @param b a FixedPoint. * @return True if `a >= b`, or False. */ function isGreaterThanOrEqual(Unsigned memory a, Unsigned memory b) internal pure returns (bool) { return a.rawValue >= b.rawValue; } /** * @notice Whether `a` is greater than or equal to `b`. * @param a a FixedPoint. * @param b a uint256. * @return True if `a >= b`, or False. */ function isGreaterThanOrEqual(Unsigned memory a, uint256 b) internal pure returns (bool) { return a.rawValue >= fromUnscaledUint(b).rawValue; } /** * @notice Whether `a` is greater than or equal to `b`. * @param a a uint256. * @param b a FixedPoint. * @return True if `a >= b`, or False. */ function isGreaterThanOrEqual(uint256 a, Unsigned memory b) internal pure returns (bool) { return fromUnscaledUint(a).rawValue >= b.rawValue; } /** * @notice Whether `a` is less than `b`. * @param a a FixedPoint. * @param b a FixedPoint. * @return True if `a < b`, or False. */ function isLessThan(Unsigned memory a, Unsigned memory b) internal pure returns (bool) { return a.rawValue < b.rawValue; } /** * @notice Whether `a` is less than `b`. * @param a a FixedPoint. * @param b a uint256. * @return True if `a < b`, or False. */ function isLessThan(Unsigned memory a, uint256 b) internal pure returns (bool) { return a.rawValue < fromUnscaledUint(b).rawValue; } /** * @notice Whether `a` is less than `b`. * @param a a uint256. * @param b a FixedPoint. * @return True if `a < b`, or False. */ function isLessThan(uint256 a, Unsigned memory b) internal pure returns (bool) { return fromUnscaledUint(a).rawValue < b.rawValue; } /** * @notice Whether `a` is less than or equal to `b`. * @param a a FixedPoint. * @param b a FixedPoint. * @return True if `a <= b`, or False. */ function isLessThanOrEqual(Unsigned memory a, Unsigned memory b) internal pure returns (bool) { return a.rawValue <= b.rawValue; } /** * @notice Whether `a` is less than or equal to `b`. * @param a a FixedPoint. * @param b a uint256. * @return True if `a <= b`, or False. */ function isLessThanOrEqual(Unsigned memory a, uint256 b) internal pure returns (bool) { return a.rawValue <= fromUnscaledUint(b).rawValue; } /** * @notice Whether `a` is less than or equal to `b`. * @param a a uint256. * @param b a FixedPoint. * @return True if `a <= b`, or False. */ function isLessThanOrEqual(uint256 a, Unsigned memory b) internal pure returns (bool) { return fromUnscaledUint(a).rawValue <= b.rawValue; } /** * @notice The minimum of `a` and `b`. * @param a a FixedPoint. * @param b a FixedPoint. * @return the minimum of `a` and `b`. */ function min(Unsigned memory a, Unsigned memory b) internal pure returns (Unsigned memory) { return a.rawValue < b.rawValue ? a : b; } /** * @notice The maximum of `a` and `b`. * @param a a FixedPoint. * @param b a FixedPoint. * @return the maximum of `a` and `b`. */ function max(Unsigned memory a, Unsigned memory b) internal pure returns (Unsigned memory) { return a.rawValue > b.rawValue ? a : b; } /** * @notice Adds two `Unsigned`s, reverting on overflow. * @param a a FixedPoint. * @param b a FixedPoint. * @return the sum of `a` and `b`. */ function add(Unsigned memory a, Unsigned memory b) internal pure returns (Unsigned memory) { return Unsigned(a.rawValue.add(b.rawValue)); } /** * @notice Adds an `Unsigned` to an unscaled uint, reverting on overflow. * @param a a FixedPoint. * @param b a uint256. * @return the sum of `a` and `b`. */ function add(Unsigned memory a, uint256 b) internal pure returns (Unsigned memory) { return add(a, fromUnscaledUint(b)); } /** * @notice Subtracts two `Unsigned`s, reverting on overflow. * @param a a FixedPoint. * @param b a FixedPoint. * @return the difference of `a` and `b`. */ function sub(Unsigned memory a, Unsigned memory b) internal pure returns (Unsigned memory) { return Unsigned(a.rawValue.sub(b.rawValue)); } /** * @notice Subtracts an unscaled uint256 from an `Unsigned`, reverting on overflow. * @param a a FixedPoint. * @param b a uint256. * @return the difference of `a` and `b`. */ function sub(Unsigned memory a, uint256 b) internal pure returns (Unsigned memory) { return sub(a, fromUnscaledUint(b)); } /** * @notice Subtracts an `Unsigned` from an unscaled uint256, reverting on overflow. * @param a a uint256. * @param b a FixedPoint. * @return the difference of `a` and `b`. */ function sub(uint256 a, Unsigned memory b) internal pure returns (Unsigned memory) { return sub(fromUnscaledUint(a), b); } /** * @notice Multiplies two `Unsigned`s, reverting on overflow. * @dev This will "floor" the product. * @param a a FixedPoint. * @param b a FixedPoint. * @return the product of `a` and `b`. */ function mul(Unsigned memory a, Unsigned memory b) internal pure returns (Unsigned memory) { // There are two caveats with this computation: // 1. Max output for the represented number is ~10^41, otherwise an intermediate value overflows. 10^41 is // stored internally as a uint256 ~10^59. // 2. Results that can't be represented exactly are truncated not rounded. E.g., 1.4 * 2e-18 = 2.8e-18, which // would round to 3, but this computation produces the result 2. // No need to use SafeMath because FP_SCALING_FACTOR != 0. return Unsigned(a.rawValue.mul(b.rawValue) / FP_SCALING_FACTOR); } /** * @notice Multiplies an `Unsigned` and an unscaled uint256, reverting on overflow. * @dev This will "floor" the product. * @param a a FixedPoint. * @param b a uint256. * @return the product of `a` and `b`. */ function mul(Unsigned memory a, uint256 b) internal pure returns (Unsigned memory) { return Unsigned(a.rawValue.mul(b)); } /** * @notice Multiplies two `Unsigned`s and "ceil's" the product, reverting on overflow. * @param a a FixedPoint. * @param b a FixedPoint. * @return the product of `a` and `b`. */ function mulCeil(Unsigned memory a, Unsigned memory b) internal pure returns (Unsigned memory) { uint256 mulRaw = a.rawValue.mul(b.rawValue); uint256 mulFloor = mulRaw / FP_SCALING_FACTOR; uint256 mod = mulRaw.mod(FP_SCALING_FACTOR); if (mod != 0) { return Unsigned(mulFloor.add(1)); } else { return Unsigned(mulFloor); } } /** * @notice Multiplies an `Unsigned` and an unscaled uint256 and "ceil's" the product, reverting on overflow. * @param a a FixedPoint. * @param b a FixedPoint. * @return the product of `a` and `b`. */ function mulCeil(Unsigned memory a, uint256 b) internal pure returns (Unsigned memory) { // Since b is an int, there is no risk of truncation and we can just mul it normally return Unsigned(a.rawValue.mul(b)); } /** * @notice Divides one `Unsigned` by an `Unsigned`, reverting on overflow or division by 0. * @dev This will "floor" the quotient. * @param a a FixedPoint numerator. * @param b a FixedPoint denominator. * @return the quotient of `a` divided by `b`. */ function div(Unsigned memory a, Unsigned memory b) internal pure returns (Unsigned memory) { // There are two caveats with this computation: // 1. Max value for the number dividend `a` represents is ~10^41, otherwise an intermediate value overflows. // 10^41 is stored internally as a uint256 10^59. // 2. Results that can't be represented exactly are truncated not rounded. E.g., 2 / 3 = 0.6 repeating, which // would round to 0.666666666666666667, but this computation produces the result 0.666666666666666666. return Unsigned(a.rawValue.mul(FP_SCALING_FACTOR).div(b.rawValue)); } /** * @notice Divides one `Unsigned` by an unscaled uint256, reverting on overflow or division by 0. * @dev This will "floor" the quotient. * @param a a FixedPoint numerator. * @param b a uint256 denominator. * @return the quotient of `a` divided by `b`. */ function div(Unsigned memory a, uint256 b) internal pure returns (Unsigned memory) { return Unsigned(a.rawValue.div(b)); } /** * @notice Divides one unscaled uint256 by an `Unsigned`, reverting on overflow or division by 0. * @dev This will "floor" the quotient. * @param a a uint256 numerator. * @param b a FixedPoint denominator. * @return the quotient of `a` divided by `b`. */ function div(uint256 a, Unsigned memory b) internal pure returns (Unsigned memory) { return div(fromUnscaledUint(a), b); } /** * @notice Divides one `Unsigned` by an `Unsigned` and "ceil's" the quotient, reverting on overflow or division by 0. * @param a a FixedPoint numerator. * @param b a FixedPoint denominator. * @return the quotient of `a` divided by `b`. */ function divCeil(Unsigned memory a, Unsigned memory b) internal pure returns (Unsigned memory) { uint256 aScaled = a.rawValue.mul(FP_SCALING_FACTOR); uint256 divFloor = aScaled.div(b.rawValue); uint256 mod = aScaled.mod(b.rawValue); if (mod != 0) { return Unsigned(divFloor.add(1)); } else { return Unsigned(divFloor); } } /** * @notice Divides one `Unsigned` by an unscaled uint256 and "ceil's" the quotient, reverting on overflow or division by 0. * @param a a FixedPoint numerator. * @param b a uint256 denominator. * @return the quotient of `a` divided by `b`. */ function divCeil(Unsigned memory a, uint256 b) internal pure returns (Unsigned memory) { // Because it is possible that a quotient gets truncated, we can't just call "Unsigned(a.rawValue.div(b))" // similarly to mulCeil with a uint256 as the second parameter. Therefore we need to convert b into an Unsigned. // This creates the possibility of overflow if b is very large. return divCeil(a, fromUnscaledUint(b)); } /** * @notice Raises an `Unsigned` to the power of an unscaled uint256, reverting on overflow. E.g., `b=2` squares `a`. * @dev This will "floor" the result. * @param a a FixedPoint numerator. * @param b a uint256 denominator. * @return output is `a` to the power of `b`. */ function pow(Unsigned memory a, uint256 b) internal pure returns (Unsigned memory output) { output = fromUnscaledUint(1); for (uint256 i = 0; i < b; i = i.add(1)) { output = mul(output, a); } } // ------------------------------------------------- SIGNED ------------------------------------------------------------- // Supports 18 decimals. E.g., 1e18 represents "1", 5e17 represents "0.5". // For signed values: // This can represent a value up (or down) to +-(2^255 - 1)/10^18 = ~10^58. 10^58 will be stored internally as int256 10^76. int256 private constant SFP_SCALING_FACTOR = 10**18; struct Signed { int256 rawValue; } function fromSigned(Signed memory a) internal pure returns (Unsigned memory) { require(a.rawValue >= 0, "Negative value provided"); return Unsigned(uint256(a.rawValue)); } function fromUnsigned(Unsigned memory a) internal pure returns (Signed memory) { require(a.rawValue <= uint256(type(int256).max), "Unsigned too large"); return Signed(int256(a.rawValue)); } /** * @notice Constructs a `Signed` from an unscaled int, e.g., `b=5` gets stored internally as `5**18`. * @param a int to convert into a FixedPoint.Signed. * @return the converted FixedPoint.Signed. */ function fromUnscaledInt(int256 a) internal pure returns (Signed memory) { return Signed(a.mul(SFP_SCALING_FACTOR)); } /** * @notice Whether `a` is equal to `b`. * @param a a FixedPoint.Signed. * @param b a int256. * @return True if equal, or False. */ function isEqual(Signed memory a, int256 b) internal pure returns (bool) { return a.rawValue == fromUnscaledInt(b).rawValue; } /** * @notice Whether `a` is equal to `b`. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return True if equal, or False. */ function isEqual(Signed memory a, Signed memory b) internal pure returns (bool) { return a.rawValue == b.rawValue; } /** * @notice Whether `a` is greater than `b`. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return True if `a > b`, or False. */ function isGreaterThan(Signed memory a, Signed memory b) internal pure returns (bool) { return a.rawValue > b.rawValue; } /** * @notice Whether `a` is greater than `b`. * @param a a FixedPoint.Signed. * @param b an int256. * @return True if `a > b`, or False. */ function isGreaterThan(Signed memory a, int256 b) internal pure returns (bool) { return a.rawValue > fromUnscaledInt(b).rawValue; } /** * @notice Whether `a` is greater than `b`. * @param a an int256. * @param b a FixedPoint.Signed. * @return True if `a > b`, or False. */ function isGreaterThan(int256 a, Signed memory b) internal pure returns (bool) { return fromUnscaledInt(a).rawValue > b.rawValue; } /** * @notice Whether `a` is greater than or equal to `b`. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return True if `a >= b`, or False. */ function isGreaterThanOrEqual(Signed memory a, Signed memory b) internal pure returns (bool) { return a.rawValue >= b.rawValue; } /** * @notice Whether `a` is greater than or equal to `b`. * @param a a FixedPoint.Signed. * @param b an int256. * @return True if `a >= b`, or False. */ function isGreaterThanOrEqual(Signed memory a, int256 b) internal pure returns (bool) { return a.rawValue >= fromUnscaledInt(b).rawValue; } /** * @notice Whether `a` is greater than or equal to `b`. * @param a an int256. * @param b a FixedPoint.Signed. * @return True if `a >= b`, or False. */ function isGreaterThanOrEqual(int256 a, Signed memory b) internal pure returns (bool) { return fromUnscaledInt(a).rawValue >= b.rawValue; } /** * @notice Whether `a` is less than `b`. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return True if `a < b`, or False. */ function isLessThan(Signed memory a, Signed memory b) internal pure returns (bool) { return a.rawValue < b.rawValue; } /** * @notice Whether `a` is less than `b`. * @param a a FixedPoint.Signed. * @param b an int256. * @return True if `a < b`, or False. */ function isLessThan(Signed memory a, int256 b) internal pure returns (bool) { return a.rawValue < fromUnscaledInt(b).rawValue; } /** * @notice Whether `a` is less than `b`. * @param a an int256. * @param b a FixedPoint.Signed. * @return True if `a < b`, or False. */ function isLessThan(int256 a, Signed memory b) internal pure returns (bool) { return fromUnscaledInt(a).rawValue < b.rawValue; } /** * @notice Whether `a` is less than or equal to `b`. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return True if `a <= b`, or False. */ function isLessThanOrEqual(Signed memory a, Signed memory b) internal pure returns (bool) { return a.rawValue <= b.rawValue; } /** * @notice Whether `a` is less than or equal to `b`. * @param a a FixedPoint.Signed. * @param b an int256. * @return True if `a <= b`, or False. */ function isLessThanOrEqual(Signed memory a, int256 b) internal pure returns (bool) { return a.rawValue <= fromUnscaledInt(b).rawValue; } /** * @notice Whether `a` is less than or equal to `b`. * @param a an int256. * @param b a FixedPoint.Signed. * @return True if `a <= b`, or False. */ function isLessThanOrEqual(int256 a, Signed memory b) internal pure returns (bool) { return fromUnscaledInt(a).rawValue <= b.rawValue; } /** * @notice The minimum of `a` and `b`. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return the minimum of `a` and `b`. */ function min(Signed memory a, Signed memory b) internal pure returns (Signed memory) { return a.rawValue < b.rawValue ? a : b; } /** * @notice The maximum of `a` and `b`. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return the maximum of `a` and `b`. */ function max(Signed memory a, Signed memory b) internal pure returns (Signed memory) { return a.rawValue > b.rawValue ? a : b; } /** * @notice Adds two `Signed`s, reverting on overflow. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return the sum of `a` and `b`. */ function add(Signed memory a, Signed memory b) internal pure returns (Signed memory) { return Signed(a.rawValue.add(b.rawValue)); } /** * @notice Adds an `Signed` to an unscaled int, reverting on overflow. * @param a a FixedPoint.Signed. * @param b an int256. * @return the sum of `a` and `b`. */ function add(Signed memory a, int256 b) internal pure returns (Signed memory) { return add(a, fromUnscaledInt(b)); } /** * @notice Subtracts two `Signed`s, reverting on overflow. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return the difference of `a` and `b`. */ function sub(Signed memory a, Signed memory b) internal pure returns (Signed memory) { return Signed(a.rawValue.sub(b.rawValue)); } /** * @notice Subtracts an unscaled int256 from an `Signed`, reverting on overflow. * @param a a FixedPoint.Signed. * @param b an int256. * @return the difference of `a` and `b`. */ function sub(Signed memory a, int256 b) internal pure returns (Signed memory) { return sub(a, fromUnscaledInt(b)); } /** * @notice Subtracts an `Signed` from an unscaled int256, reverting on overflow. * @param a an int256. * @param b a FixedPoint.Signed. * @return the difference of `a` and `b`. */ function sub(int256 a, Signed memory b) internal pure returns (Signed memory) { return sub(fromUnscaledInt(a), b); } /** * @notice Multiplies two `Signed`s, reverting on overflow. * @dev This will "floor" the product. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return the product of `a` and `b`. */ function mul(Signed memory a, Signed memory b) internal pure returns (Signed memory) { // There are two caveats with this computation: // 1. Max output for the represented number is ~10^41, otherwise an intermediate value overflows. 10^41 is // stored internally as an int256 ~10^59. // 2. Results that can't be represented exactly are truncated not rounded. E.g., 1.4 * 2e-18 = 2.8e-18, which // would round to 3, but this computation produces the result 2. // No need to use SafeMath because SFP_SCALING_FACTOR != 0. return Signed(a.rawValue.mul(b.rawValue) / SFP_SCALING_FACTOR); } /** * @notice Multiplies an `Signed` and an unscaled int256, reverting on overflow. * @dev This will "floor" the product. * @param a a FixedPoint.Signed. * @param b an int256. * @return the product of `a` and `b`. */ function mul(Signed memory a, int256 b) internal pure returns (Signed memory) { return Signed(a.rawValue.mul(b)); } /** * @notice Multiplies two `Signed`s and "ceil's" the product, reverting on overflow. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return the product of `a` and `b`. */ function mulAwayFromZero(Signed memory a, Signed memory b) internal pure returns (Signed memory) { int256 mulRaw = a.rawValue.mul(b.rawValue); int256 mulTowardsZero = mulRaw / SFP_SCALING_FACTOR; // Manual mod because SignedSafeMath doesn't support it. int256 mod = mulRaw % SFP_SCALING_FACTOR; if (mod != 0) { bool isResultPositive = isLessThan(a, 0) == isLessThan(b, 0); int256 valueToAdd = isResultPositive ? int256(1) : int256(-1); return Signed(mulTowardsZero.add(valueToAdd)); } else { return Signed(mulTowardsZero); } } /** * @notice Multiplies an `Signed` and an unscaled int256 and "ceil's" the product, reverting on overflow. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return the product of `a` and `b`. */ function mulAwayFromZero(Signed memory a, int256 b) internal pure returns (Signed memory) { // Since b is an int, there is no risk of truncation and we can just mul it normally return Signed(a.rawValue.mul(b)); } /** * @notice Divides one `Signed` by an `Signed`, reverting on overflow or division by 0. * @dev This will "floor" the quotient. * @param a a FixedPoint numerator. * @param b a FixedPoint denominator. * @return the quotient of `a` divided by `b`. */ function div(Signed memory a, Signed memory b) internal pure returns (Signed memory) { // There are two caveats with this computation: // 1. Max value for the number dividend `a` represents is ~10^41, otherwise an intermediate value overflows. // 10^41 is stored internally as an int256 10^59. // 2. Results that can't be represented exactly are truncated not rounded. E.g., 2 / 3 = 0.6 repeating, which // would round to 0.666666666666666667, but this computation produces the result 0.666666666666666666. return Signed(a.rawValue.mul(SFP_SCALING_FACTOR).div(b.rawValue)); } /** * @notice Divides one `Signed` by an unscaled int256, reverting on overflow or division by 0. * @dev This will "floor" the quotient. * @param a a FixedPoint numerator. * @param b an int256 denominator. * @return the quotient of `a` divided by `b`. */ function div(Signed memory a, int256 b) internal pure returns (Signed memory) { return Signed(a.rawValue.div(b)); } /** * @notice Divides one unscaled int256 by an `Signed`, reverting on overflow or division by 0. * @dev This will "floor" the quotient. * @param a an int256 numerator. * @param b a FixedPoint denominator. * @return the quotient of `a` divided by `b`. */ function div(int256 a, Signed memory b) internal pure returns (Signed memory) { return div(fromUnscaledInt(a), b); } /** * @notice Divides one `Signed` by an `Signed` and "ceil's" the quotient, reverting on overflow or division by 0. * @param a a FixedPoint numerator. * @param b a FixedPoint denominator. * @return the quotient of `a` divided by `b`. */ function divAwayFromZero(Signed memory a, Signed memory b) internal pure returns (Signed memory) { int256 aScaled = a.rawValue.mul(SFP_SCALING_FACTOR); int256 divTowardsZero = aScaled.div(b.rawValue); // Manual mod because SignedSafeMath doesn't support it. int256 mod = aScaled % b.rawValue; if (mod != 0) { bool isResultPositive = isLessThan(a, 0) == isLessThan(b, 0); int256 valueToAdd = isResultPositive ? int256(1) : int256(-1); return Signed(divTowardsZero.add(valueToAdd)); } else { return Signed(divTowardsZero); } } /** * @notice Divides one `Signed` by an unscaled int256 and "ceil's" the quotient, reverting on overflow or division by 0. * @param a a FixedPoint numerator. * @param b an int256 denominator. * @return the quotient of `a` divided by `b`. */ function divAwayFromZero(Signed memory a, int256 b) internal pure returns (Signed memory) { // Because it is possible that a quotient gets truncated, we can't just call "Signed(a.rawValue.div(b))" // similarly to mulCeil with an int256 as the second parameter. Therefore we need to convert b into an Signed. // This creates the possibility of overflow if b is very large. return divAwayFromZero(a, fromUnscaledInt(b)); } /** * @notice Raises an `Signed` to the power of an unscaled uint256, reverting on overflow. E.g., `b=2` squares `a`. * @dev This will "floor" the result. * @param a a FixedPoint.Signed. * @param b a uint256 (negative exponents are not allowed). * @return output is `a` to the power of `b`. */ function pow(Signed memory a, uint256 b) internal pure returns (Signed memory output) { output = fromUnscaledInt(1); for (uint256 i = 0; i < b; i = i.add(1)) { output = mul(output, a); } } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; interface IBackerRewards { function allocateRewards(uint256 _interestPaymentAmount) external; function onTranchedPoolDrawdown(uint256 sliceIndex) external; function setPoolTokenAccRewardsPerPrincipalDollarAtMint(address poolAddress, uint256 tokenId) external; }
// SPDX-License-Identifier: MIT // Taken from https://github.com/compound-finance/compound-protocol/blob/master/contracts/CTokenInterfaces.sol pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "./IERC20withDec.sol"; interface ICUSDCContract is IERC20withDec { /*** User Interface ***/ function mint(uint256 mintAmount) external returns (uint256); function redeem(uint256 redeemTokens) external returns (uint256); function redeemUnderlying(uint256 redeemAmount) external returns (uint256); function borrow(uint256 borrowAmount) external returns (uint256); function repayBorrow(uint256 repayAmount) external returns (uint256); function repayBorrowBehalf(address borrower, uint256 repayAmount) external returns (uint256); function liquidateBorrow( address borrower, uint256 repayAmount, address cTokenCollateral ) external returns (uint256); function getAccountSnapshot(address account) external view returns ( uint256, uint256, uint256, uint256 ); function balanceOfUnderlying(address owner) external returns (uint256); function exchangeRateCurrent() external returns (uint256); /*** Admin Functions ***/ function _addReserves(uint256 addAmount) external returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; abstract contract ICreditDesk { uint256 public totalWritedowns; uint256 public totalLoansOutstanding; function setUnderwriterGovernanceLimit(address underwriterAddress, uint256 limit) external virtual; function drawdown(address creditLineAddress, uint256 amount) external virtual; function pay(address creditLineAddress, uint256 amount) external virtual; function assessCreditLine(address creditLineAddress) external virtual; function applyPayment(address creditLineAddress, uint256 amount) external virtual; function getNextPaymentAmount(address creditLineAddress, uint256 asOfBLock) external view virtual returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; interface ICreditLine { function borrower() external view returns (address); function limit() external view returns (uint256); function maxLimit() external view returns (uint256); function interestApr() external view returns (uint256); function paymentPeriodInDays() external view returns (uint256); function principalGracePeriodInDays() external view returns (uint256); function termInDays() external view returns (uint256); function lateFeeApr() external view returns (uint256); function isLate() external view returns (bool); function withinPrincipalGracePeriod() external view returns (bool); // Accounting variables function balance() external view returns (uint256); function interestOwed() external view returns (uint256); function principalOwed() external view returns (uint256); function termEndTime() external view returns (uint256); function nextDueTime() external view returns (uint256); function interestAccruedAsOf() external view returns (uint256); function lastFullPaymentTime() external view returns (uint256); }
// SPDX-License-Identifier: MIT // Taken from https://github.com/compound-finance/compound-protocol/blob/master/contracts/CTokenInterfaces.sol pragma solidity 0.6.12; pragma experimental ABIEncoderV2; interface ICurveLP { function token() external view returns (address); function get_virtual_price() external view returns (uint256); function calc_token_amount(uint256[2] calldata amounts) external view returns (uint256); function add_liquidity( uint256[2] calldata amounts, uint256 min_mint_amount, bool use_eth, address receiver ) external returns (uint256); function balances(uint256 arg0) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/IERC20.sol"; /* Only addition is the `decimals` function, which we need, and which both our Fidu and USDC use, along with most ERC20's. */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20withDec is IERC20 { /** * @dev Returns the number of decimals used for the token */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "./IERC20withDec.sol"; interface IFidu is IERC20withDec { function mintTo(address to, uint256 amount) external; function burnFrom(address to, uint256 amount) external; function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; abstract contract IGo { uint256 public constant ID_TYPE_0 = 0; uint256 public constant ID_TYPE_1 = 1; uint256 public constant ID_TYPE_2 = 2; uint256 public constant ID_TYPE_3 = 3; uint256 public constant ID_TYPE_4 = 4; uint256 public constant ID_TYPE_5 = 5; uint256 public constant ID_TYPE_6 = 6; uint256 public constant ID_TYPE_7 = 7; uint256 public constant ID_TYPE_8 = 8; uint256 public constant ID_TYPE_9 = 9; uint256 public constant ID_TYPE_10 = 10; /// @notice Returns the address of the UniqueIdentity contract. function uniqueIdentity() external virtual returns (address); function go(address account) public view virtual returns (bool); function goOnlyIdTypes(address account, uint256[] calldata onlyIdTypes) public view virtual returns (bool); function goSeniorPool(address account) public view virtual returns (bool); function updateGoldfinchConfig() external virtual; }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; interface IGoldfinchConfig { function getNumber(uint256 index) external returns (uint256); function getAddress(uint256 index) external returns (address); function setAddress(uint256 index, address newAddress) external returns (address); function setNumber(uint256 index, uint256 newNumber) external returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; interface IGoldfinchFactory { function createCreditLine() external returns (address); function createBorrower(address owner) external returns (address); function createPool( address _borrower, uint256 _juniorFeePercent, uint256 _limit, uint256 _interestApr, uint256 _paymentPeriodInDays, uint256 _termInDays, uint256 _lateFeeApr, uint256[] calldata _allowedUIDTypes ) external returns (address); function createMigratedPool( address _borrower, uint256 _juniorFeePercent, uint256 _limit, uint256 _interestApr, uint256 _paymentPeriodInDays, uint256 _termInDays, uint256 _lateFeeApr, uint256[] calldata _allowedUIDTypes ) external returns (address); function updateGoldfinchConfig() external; }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; abstract contract IPool { uint256 public sharePrice; function deposit(uint256 amount) external virtual; function withdraw(uint256 usdcAmount) external virtual; function withdrawInFidu(uint256 fiduAmount) external virtual; function collectInterestAndPrincipal( address from, uint256 interest, uint256 principal ) public virtual; function transferFrom( address from, address to, uint256 amount ) public virtual returns (bool); function drawdown(address to, uint256 amount) public virtual returns (bool); function sweepToCompound() public virtual; function sweepFromCompound() public virtual; function distributeLosses(address creditlineAddress, int256 writedownDelta) external virtual; function assets() public view virtual returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC721/IERC721.sol"; interface IPoolTokens is IERC721 { event TokenMinted( address indexed owner, address indexed pool, uint256 indexed tokenId, uint256 amount, uint256 tranche ); event TokenRedeemed( address indexed owner, address indexed pool, uint256 indexed tokenId, uint256 principalRedeemed, uint256 interestRedeemed, uint256 tranche ); event TokenBurned(address indexed owner, address indexed pool, uint256 indexed tokenId); struct TokenInfo { address pool; uint256 tranche; uint256 principalAmount; uint256 principalRedeemed; uint256 interestRedeemed; } struct MintParams { uint256 principalAmount; uint256 tranche; } function mint(MintParams calldata params, address to) external returns (uint256); function redeem( uint256 tokenId, uint256 principalRedeemed, uint256 interestRedeemed ) external; function withdrawPrincipal(uint256 tokenId, uint256 principalAmount) external; function burn(uint256 tokenId) external; function onPoolCreated(address newPool) external; function getTokenInfo(uint256 tokenId) external view returns (TokenInfo memory); function validPool(address sender) external view returns (bool); function isApprovedOrOwner(address spender, uint256 tokenId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; interface IRequiresUID { function hasAllowedUID(address sender) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "./ITranchedPool.sol"; abstract contract ISeniorPool { uint256 public sharePrice; uint256 public totalLoansOutstanding; uint256 public totalWritedowns; function deposit(uint256 amount) external virtual returns (uint256 depositShares); function depositWithPermit( uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external virtual returns (uint256 depositShares); function withdraw(uint256 usdcAmount) external virtual returns (uint256 amount); function withdrawInFidu(uint256 fiduAmount) external virtual returns (uint256 amount); function sweepToCompound() public virtual; function sweepFromCompound() public virtual; function invest(ITranchedPool pool) public virtual; function estimateInvestment(ITranchedPool pool) public view virtual returns (uint256); function redeem(uint256 tokenId) public virtual; function writedown(uint256 tokenId) public virtual; function calculateWritedown(uint256 tokenId) public view virtual returns (uint256 writedownAmount); function assets() public view virtual returns (uint256); function getNumShares(uint256 amount) public view virtual returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "./ISeniorPool.sol"; import "./ITranchedPool.sol"; abstract contract ISeniorPoolStrategy { function getLeverageRatio(ITranchedPool pool) public view virtual returns (uint256); function invest(ISeniorPool seniorPool, ITranchedPool pool) public view virtual returns (uint256 amount); function estimateInvestment(ISeniorPool seniorPool, ITranchedPool pool) public view virtual returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; interface IStakingRewards { function unstake(uint256 tokenId, uint256 amount) external; function addToStake(uint256 tokenId, uint256 amount) external; function stakedBalanceOf(uint256 tokenId) external view returns (uint256); function depositToCurveAndStakeFrom( address nftRecipient, uint256 fiduAmount, uint256 usdcAmount ) external; function kick(uint256 tokenId) external; function accumulatedRewardsPerToken() external view returns (uint256); function lastUpdateTime() external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "./IV2CreditLine.sol"; abstract contract ITranchedPool { IV2CreditLine public creditLine; uint256 public createdAt; enum Tranches { Reserved, Senior, Junior } struct TrancheInfo { uint256 id; uint256 principalDeposited; uint256 principalSharePrice; uint256 interestSharePrice; uint256 lockedUntil; } struct PoolSlice { TrancheInfo seniorTranche; TrancheInfo juniorTranche; uint256 totalInterestAccrued; uint256 principalDeployed; } struct SliceInfo { uint256 reserveFeePercent; uint256 interestAccrued; uint256 principalAccrued; } struct ApplyResult { uint256 interestRemaining; uint256 principalRemaining; uint256 reserveDeduction; uint256 oldInterestSharePrice; uint256 oldPrincipalSharePrice; } function initialize( address _config, address _borrower, uint256 _juniorFeePercent, uint256 _limit, uint256 _interestApr, uint256 _paymentPeriodInDays, uint256 _termInDays, uint256 _lateFeeApr, uint256 _principalGracePeriodInDays, uint256 _fundableAt, uint256[] calldata _allowedUIDTypes ) public virtual; function getTranche(uint256 tranche) external view virtual returns (TrancheInfo memory); function pay(uint256 amount) external virtual; function lockJuniorCapital() external virtual; function lockPool() external virtual; function initializeNextSlice(uint256 _fundableAt) external virtual; function totalJuniorDeposits() external view virtual returns (uint256); function drawdown(uint256 amount) external virtual; function setFundableAt(uint256 timestamp) external virtual; function deposit(uint256 tranche, uint256 amount) external virtual returns (uint256 tokenId); function assess() external virtual; function depositWithPermit( uint256 tranche, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external virtual returns (uint256 tokenId); function availableToWithdraw(uint256 tokenId) external view virtual returns (uint256 interestRedeemable, uint256 principalRedeemable); function withdraw(uint256 tokenId, uint256 amount) external virtual returns (uint256 interestWithdrawn, uint256 principalWithdrawn); function withdrawMax(uint256 tokenId) external virtual returns (uint256 interestWithdrawn, uint256 principalWithdrawn); function withdrawMultiple(uint256[] calldata tokenIds, uint256[] calldata amounts) external virtual; function numSlices() external view virtual returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "./ICreditLine.sol"; abstract contract IV2CreditLine is ICreditLine { function principal() external view virtual returns (uint256); function totalInterestAccrued() external view virtual returns (uint256); function termStartTime() external view virtual returns (uint256); function setLimit(uint256 newAmount) external virtual; function setMaxLimit(uint256 newAmount) external virtual; function setBalance(uint256 newBalance) external virtual; function setPrincipal(uint256 _principal) external virtual; function setTotalInterestAccrued(uint256 _interestAccrued) external virtual; function drawdown(uint256 amount) external virtual; function assess() external virtual returns ( uint256, uint256, uint256 ); function initialize( address _config, address owner, address _borrower, uint256 _limit, uint256 _interestApr, uint256 _paymentPeriodInDays, uint256 _termInDays, uint256 _lateFeeApr, uint256 _principalGracePeriodInDays ) public virtual; function setTermEndTime(uint256 newTermEndTime) external virtual; function setNextDueTime(uint256 newNextDueTime) external virtual; function setInterestOwed(uint256 newInterestOwed) external virtual; function setPrincipalOwed(uint256 newPrincipalOwed) external virtual; function setInterestAccruedAsOf(uint256 newInterestAccruedAsOf) external virtual; function setWritedownAmount(uint256 newWritedownAmount) external virtual; function setLastFullPaymentTime(uint256 newLastFullPaymentTime) external virtual; function setLateFeeApr(uint256 newLateFeeApr) external virtual; function updateGoldfinchConfig() external virtual; }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/IERC20.sol"; /** * @title Safe ERC20 Transfer * @notice Reverts when transfer is not successful * @author Goldfinch */ abstract contract SafeERC20Transfer { function safeERC20Transfer( IERC20 erc20, address to, uint256 amount, string memory message ) internal { require(to != address(0), "Can't send to zero address"); bool success = erc20.transfer(to, amount); require(success, message); } function safeERC20Transfer( IERC20 erc20, address to, uint256 amount ) internal { safeERC20Transfer(erc20, to, amount, "Failed to transfer ERC20"); } function safeERC20TransferFrom( IERC20 erc20, address from, address to, uint256 amount, string memory message ) internal { require(to != address(0), "Can't send to zero address"); bool success = erc20.transferFrom(from, to, amount); require(success, message); } function safeERC20TransferFrom( IERC20 erc20, address from, address to, uint256 amount ) internal { string memory message = "Failed to transfer ERC20"; safeERC20TransferFrom(erc20, from, to, amount, message); } function safeERC20Approve( IERC20 erc20, address spender, uint256 allowance, string memory message ) internal { bool success = erc20.approve(spender, allowance); require(success, message); } function safeERC20Approve( IERC20 erc20, address spender, uint256 allowance ) internal { string memory message = "Failed to approve ERC20"; safeERC20Approve(erc20, spender, allowance, message); } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts-ethereum-package/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/utils/ReentrancyGuard.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/Initializable.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/math/SafeMath.sol"; import "./PauserPausable.sol"; /** * @title BaseUpgradeablePausable contract * @notice This is our Base contract that most other contracts inherit from. It includes many standard * useful abilities like ugpradeability, pausability, access control, and re-entrancy guards. * @author Goldfinch */ contract BaseUpgradeablePausable is Initializable, AccessControlUpgradeSafe, PauserPausable, ReentrancyGuardUpgradeSafe { bytes32 public constant OWNER_ROLE = keccak256("OWNER_ROLE"); using SafeMath for uint256; // Pre-reserving a few slots in the base contract in case we need to add things in the future. // This does not actually take up gas cost or storage cost, but it does reserve the storage slots. // See OpenZeppelin's use of this pattern here: // https://github.com/OpenZeppelin/openzeppelin-contracts-ethereum-package/blob/master/contracts/GSN/Context.sol#L37 uint256[50] private __gap1; uint256[50] private __gap2; uint256[50] private __gap3; uint256[50] private __gap4; // solhint-disable-next-line func-name-mixedcase function __BaseUpgradeablePausable__init(address owner) public initializer { require(owner != address(0), "Owner cannot be the zero address"); __AccessControl_init_unchained(); __Pausable_init_unchained(); __ReentrancyGuard_init_unchained(); _setupRole(OWNER_ROLE, owner); _setupRole(PAUSER_ROLE, owner); _setRoleAdmin(PAUSER_ROLE, OWNER_ROLE); _setRoleAdmin(OWNER_ROLE, OWNER_ROLE); } function isAdmin() public view returns (bool) { return hasRole(OWNER_ROLE, _msgSender()); } modifier onlyAdmin() { require(isAdmin(), "Must have admin role to perform this action"); _; } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "./GoldfinchConfig.sol"; import "../../interfaces/IPool.sol"; import "../../interfaces/IFidu.sol"; import "../../interfaces/ISeniorPool.sol"; import "../../interfaces/ISeniorPoolStrategy.sol"; import "../../interfaces/ICreditDesk.sol"; import "../../interfaces/IERC20withDec.sol"; import "../../interfaces/ICUSDCContract.sol"; import "../../interfaces/IPoolTokens.sol"; import "../../interfaces/IBackerRewards.sol"; import "../../interfaces/IGoldfinchFactory.sol"; import "../../interfaces/IGo.sol"; import "../../interfaces/IStakingRewards.sol"; import "../../interfaces/ICurveLP.sol"; /** * @title ConfigHelper * @notice A convenience library for getting easy access to other contracts and constants within the * protocol, through the use of the GoldfinchConfig contract * @author Goldfinch */ library ConfigHelper { function getPool(GoldfinchConfig config) internal view returns (IPool) { return IPool(poolAddress(config)); } function getSeniorPool(GoldfinchConfig config) internal view returns (ISeniorPool) { return ISeniorPool(seniorPoolAddress(config)); } function getSeniorPoolStrategy(GoldfinchConfig config) internal view returns (ISeniorPoolStrategy) { return ISeniorPoolStrategy(seniorPoolStrategyAddress(config)); } function getUSDC(GoldfinchConfig config) internal view returns (IERC20withDec) { return IERC20withDec(usdcAddress(config)); } function getCreditDesk(GoldfinchConfig config) internal view returns (ICreditDesk) { return ICreditDesk(creditDeskAddress(config)); } function getFidu(GoldfinchConfig config) internal view returns (IFidu) { return IFidu(fiduAddress(config)); } function getFiduUSDCCurveLP(GoldfinchConfig config) internal view returns (ICurveLP) { return ICurveLP(fiduUSDCCurveLPAddress(config)); } function getCUSDCContract(GoldfinchConfig config) internal view returns (ICUSDCContract) { return ICUSDCContract(cusdcContractAddress(config)); } function getPoolTokens(GoldfinchConfig config) internal view returns (IPoolTokens) { return IPoolTokens(poolTokensAddress(config)); } function getBackerRewards(GoldfinchConfig config) internal view returns (IBackerRewards) { return IBackerRewards(backerRewardsAddress(config)); } function getGoldfinchFactory(GoldfinchConfig config) internal view returns (IGoldfinchFactory) { return IGoldfinchFactory(goldfinchFactoryAddress(config)); } function getGFI(GoldfinchConfig config) internal view returns (IERC20withDec) { return IERC20withDec(gfiAddress(config)); } function getGo(GoldfinchConfig config) internal view returns (IGo) { return IGo(goAddress(config)); } function getStakingRewards(GoldfinchConfig config) internal view returns (IStakingRewards) { return IStakingRewards(stakingRewardsAddress(config)); } function oneInchAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.OneInch)); } function creditLineImplementationAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.CreditLineImplementation)); } function trustedForwarderAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.TrustedForwarder)); } function configAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.GoldfinchConfig)); } function poolAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.Pool)); } function poolTokensAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.PoolTokens)); } function backerRewardsAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.BackerRewards)); } function seniorPoolAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.SeniorPool)); } function seniorPoolStrategyAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.SeniorPoolStrategy)); } function creditDeskAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.CreditDesk)); } function goldfinchFactoryAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.GoldfinchFactory)); } function gfiAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.GFI)); } function fiduAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.Fidu)); } function fiduUSDCCurveLPAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.FiduUSDCCurveLP)); } function cusdcContractAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.CUSDCContract)); } function usdcAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.USDC)); } function tranchedPoolAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.TranchedPoolImplementation)); } function migratedTranchedPoolAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.MigratedTranchedPoolImplementation)); } function reserveAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.TreasuryReserve)); } function protocolAdminAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.ProtocolAdmin)); } function borrowerImplementationAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.BorrowerImplementation)); } function goAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.Go)); } function stakingRewardsAddress(GoldfinchConfig config) internal view returns (address) { return config.getAddress(uint256(ConfigOptions.Addresses.StakingRewards)); } function getReserveDenominator(GoldfinchConfig config) internal view returns (uint256) { return config.getNumber(uint256(ConfigOptions.Numbers.ReserveDenominator)); } function getWithdrawFeeDenominator(GoldfinchConfig config) internal view returns (uint256) { return config.getNumber(uint256(ConfigOptions.Numbers.WithdrawFeeDenominator)); } function getLatenessGracePeriodInDays(GoldfinchConfig config) internal view returns (uint256) { return config.getNumber(uint256(ConfigOptions.Numbers.LatenessGracePeriodInDays)); } function getLatenessMaxDays(GoldfinchConfig config) internal view returns (uint256) { return config.getNumber(uint256(ConfigOptions.Numbers.LatenessMaxDays)); } function getDrawdownPeriodInSeconds(GoldfinchConfig config) internal view returns (uint256) { return config.getNumber(uint256(ConfigOptions.Numbers.DrawdownPeriodInSeconds)); } function getTransferRestrictionPeriodInDays(GoldfinchConfig config) internal view returns (uint256) { return config.getNumber(uint256(ConfigOptions.Numbers.TransferRestrictionPeriodInDays)); } function getLeverageRatio(GoldfinchConfig config) internal view returns (uint256) { return config.getNumber(uint256(ConfigOptions.Numbers.LeverageRatio)); } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; /** * @title ConfigOptions * @notice A central place for enumerating the configurable options of our GoldfinchConfig contract * @author Goldfinch */ library ConfigOptions { // NEVER EVER CHANGE THE ORDER OF THESE! // You can rename or append. But NEVER change the order. enum Numbers { TransactionLimit, TotalFundsLimit, MaxUnderwriterLimit, ReserveDenominator, WithdrawFeeDenominator, LatenessGracePeriodInDays, LatenessMaxDays, DrawdownPeriodInSeconds, TransferRestrictionPeriodInDays, LeverageRatio } enum Addresses { Pool, CreditLineImplementation, GoldfinchFactory, CreditDesk, Fidu, USDC, TreasuryReserve, ProtocolAdmin, OneInch, TrustedForwarder, CUSDCContract, GoldfinchConfig, PoolTokens, TranchedPoolImplementation, SeniorPool, SeniorPoolStrategy, MigratedTranchedPoolImplementation, BorrowerImplementation, GFI, Go, BackerRewards, StakingRewards, FiduUSDCCurveLP } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "./BaseUpgradeablePausable.sol"; import "../../interfaces/IGoldfinchConfig.sol"; import "./ConfigOptions.sol"; /** * @title GoldfinchConfig * @notice This contract stores mappings of useful "protocol config state", giving a central place * for all other contracts to access it. For example, the TransactionLimit, or the PoolAddress. These config vars * are enumerated in the `ConfigOptions` library, and can only be changed by admins of the protocol. * Note: While this inherits from BaseUpgradeablePausable, it is not deployed as an upgradeable contract (this * is mostly to save gas costs of having each call go through a proxy) * @author Goldfinch */ contract GoldfinchConfig is BaseUpgradeablePausable { bytes32 public constant GO_LISTER_ROLE = keccak256("GO_LISTER_ROLE"); mapping(uint256 => address) public addresses; mapping(uint256 => uint256) public numbers; mapping(address => bool) public goList; event AddressUpdated(address owner, uint256 index, address oldValue, address newValue); event NumberUpdated(address owner, uint256 index, uint256 oldValue, uint256 newValue); event GoListed(address indexed member); event NoListed(address indexed member); bool public valuesInitialized; function initialize(address owner) public initializer { require(owner != address(0), "Owner address cannot be empty"); __BaseUpgradeablePausable__init(owner); _setupRole(GO_LISTER_ROLE, owner); _setRoleAdmin(GO_LISTER_ROLE, OWNER_ROLE); } function setAddress(uint256 addressIndex, address newAddress) public onlyAdmin { require(addresses[addressIndex] == address(0), "Address has already been initialized"); emit AddressUpdated(msg.sender, addressIndex, addresses[addressIndex], newAddress); addresses[addressIndex] = newAddress; } function setNumber(uint256 index, uint256 newNumber) public onlyAdmin { emit NumberUpdated(msg.sender, index, numbers[index], newNumber); numbers[index] = newNumber; } function setTreasuryReserve(address newTreasuryReserve) public onlyAdmin { uint256 key = uint256(ConfigOptions.Addresses.TreasuryReserve); emit AddressUpdated(msg.sender, key, addresses[key], newTreasuryReserve); addresses[key] = newTreasuryReserve; } function setSeniorPoolStrategy(address newStrategy) public onlyAdmin { uint256 key = uint256(ConfigOptions.Addresses.SeniorPoolStrategy); emit AddressUpdated(msg.sender, key, addresses[key], newStrategy); addresses[key] = newStrategy; } function setCreditLineImplementation(address newAddress) public onlyAdmin { uint256 key = uint256(ConfigOptions.Addresses.CreditLineImplementation); emit AddressUpdated(msg.sender, key, addresses[key], newAddress); addresses[key] = newAddress; } function setTranchedPoolImplementation(address newAddress) public onlyAdmin { uint256 key = uint256(ConfigOptions.Addresses.TranchedPoolImplementation); emit AddressUpdated(msg.sender, key, addresses[key], newAddress); addresses[key] = newAddress; } function setBorrowerImplementation(address newAddress) public onlyAdmin { uint256 key = uint256(ConfigOptions.Addresses.BorrowerImplementation); emit AddressUpdated(msg.sender, key, addresses[key], newAddress); addresses[key] = newAddress; } function setGoldfinchConfig(address newAddress) public onlyAdmin { uint256 key = uint256(ConfigOptions.Addresses.GoldfinchConfig); emit AddressUpdated(msg.sender, key, addresses[key], newAddress); addresses[key] = newAddress; } function initializeFromOtherConfig( address _initialConfig, uint256 numbersLength, uint256 addressesLength ) public onlyAdmin { require(!valuesInitialized, "Already initialized values"); IGoldfinchConfig initialConfig = IGoldfinchConfig(_initialConfig); for (uint256 i = 0; i < numbersLength; i++) { setNumber(i, initialConfig.getNumber(i)); } for (uint256 i = 0; i < addressesLength; i++) { if (getAddress(i) == address(0)) { setAddress(i, initialConfig.getAddress(i)); } } valuesInitialized = true; } /** * @dev Adds a user to go-list * @param _member address to add to go-list */ function addToGoList(address _member) public onlyGoListerRole { goList[_member] = true; emit GoListed(_member); } /** * @dev removes a user from go-list * @param _member address to remove from go-list */ function removeFromGoList(address _member) public onlyGoListerRole { goList[_member] = false; emit NoListed(_member); } /** * @dev adds many users to go-list at once * @param _members addresses to ad to go-list */ function bulkAddToGoList(address[] calldata _members) external onlyGoListerRole { for (uint256 i = 0; i < _members.length; i++) { addToGoList(_members[i]); } } /** * @dev removes many users from go-list at once * @param _members addresses to remove from go-list */ function bulkRemoveFromGoList(address[] calldata _members) external onlyGoListerRole { for (uint256 i = 0; i < _members.length; i++) { removeFromGoList(_members[i]); } } /* Using custom getters in case we want to change underlying implementation later, or add checks or validations later on. */ function getAddress(uint256 index) public view returns (address) { return addresses[index]; } function getNumber(uint256 index) public view returns (uint256) { return numbers[index]; } modifier onlyGoListerRole() { require(hasRole(GO_LISTER_ROLE, _msgSender()), "Must have go-lister role to perform this action"); _; } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts-ethereum-package/contracts/utils/Pausable.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/access/AccessControl.sol"; /** * @title PauserPausable * @notice Inheriting from OpenZeppelin's Pausable contract, this does small * augmentations to make it work with a PAUSER_ROLE, leveraging the AccessControl contract. * It is meant to be inherited. * @author Goldfinch */ contract PauserPausable is AccessControlUpgradeSafe, PausableUpgradeSafe { bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); // solhint-disable-next-line func-name-mixedcase function __PauserPausable__init() public initializer { __Pausable_init_unchained(); } /** * @dev Pauses all functions guarded by Pause * * See {Pausable-_pause}. * * Requirements: * * - the caller must have the PAUSER_ROLE. */ function pause() public onlyPauserRole { _pause(); } /** * @dev Unpauses the contract * * See {Pausable-_unpause}. * * Requirements: * * - the caller must have the Pauser role */ function unpause() public onlyPauserRole { _unpause(); } modifier onlyPauserRole() { require(hasRole(PAUSER_ROLE, _msgSender()), "Must have pauser role to perform this action"); _; } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "../../interfaces/IV2CreditLine.sol"; import "../../interfaces/ITranchedPool.sol"; import "../../interfaces/IPoolTokens.sol"; import "../../external/FixedPoint.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/math/Math.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/math/SafeMath.sol"; /** * @title TranchingLogic * @notice Library for handling the payments waterfall * @author Goldfinch */ library TranchingLogic { using SafeMath for uint256; using FixedPoint for FixedPoint.Unsigned; using FixedPoint for uint256; event SharePriceUpdated( address indexed pool, uint256 indexed tranche, uint256 principalSharePrice, int256 principalDelta, uint256 interestSharePrice, int256 interestDelta ); uint256 public constant FP_SCALING_FACTOR = 1e18; uint256 public constant ONE_HUNDRED = 100; // Need this because we cannot call .div on a literal 100 function usdcToSharePrice(uint256 amount, uint256 totalShares) public pure returns (uint256) { return totalShares == 0 ? 0 : amount.mul(FP_SCALING_FACTOR).div(totalShares); } function sharePriceToUsdc(uint256 sharePrice, uint256 totalShares) public pure returns (uint256) { return sharePrice.mul(totalShares).div(FP_SCALING_FACTOR); } function redeemableInterestAndPrincipal( ITranchedPool.TrancheInfo storage trancheInfo, IPoolTokens.TokenInfo memory tokenInfo ) public view returns (uint256 interestRedeemable, uint256 principalRedeemable) { // This supports withdrawing before or after locking because principal share price starts at 1 // and is set to 0 on lock. Interest share price is always 0 until interest payments come back, when it increases uint256 maxPrincipalRedeemable = sharePriceToUsdc(trancheInfo.principalSharePrice, tokenInfo.principalAmount); // The principalAmount is used as the totalShares because we want the interestSharePrice to be expressed as a // percent of total loan value e.g. if the interest is 10% APR, the interestSharePrice should approach a max of 0.1. uint256 maxInterestRedeemable = sharePriceToUsdc(trancheInfo.interestSharePrice, tokenInfo.principalAmount); interestRedeemable = maxInterestRedeemable.sub(tokenInfo.interestRedeemed); principalRedeemable = maxPrincipalRedeemable.sub(tokenInfo.principalRedeemed); return (interestRedeemable, principalRedeemable); } function calculateExpectedSharePrice( ITranchedPool.TrancheInfo memory tranche, uint256 amount, ITranchedPool.PoolSlice memory slice ) public pure returns (uint256) { uint256 sharePrice = usdcToSharePrice(amount, tranche.principalDeposited); return scaleByPercentOwnership(tranche, sharePrice, slice); } function scaleForSlice( ITranchedPool.PoolSlice memory slice, uint256 amount, uint256 totalDeployed ) public pure returns (uint256) { return scaleByFraction(amount, slice.principalDeployed, totalDeployed); } // We need to create this struct so we don't run into a stack too deep error due to too many variables function getSliceInfo( ITranchedPool.PoolSlice memory slice, IV2CreditLine creditLine, uint256 totalDeployed, uint256 reserveFeePercent ) public view returns (ITranchedPool.SliceInfo memory) { (uint256 interestAccrued, uint256 principalAccrued) = getTotalInterestAndPrincipal( slice, creditLine, totalDeployed ); return ITranchedPool.SliceInfo({ reserveFeePercent: reserveFeePercent, interestAccrued: interestAccrued, principalAccrued: principalAccrued }); } function getTotalInterestAndPrincipal( ITranchedPool.PoolSlice memory slice, IV2CreditLine creditLine, uint256 totalDeployed ) public view returns (uint256 interestAccrued, uint256 principalAccrued) { principalAccrued = creditLine.principalOwed(); // In addition to principal actually owed, we need to account for early principal payments // If the borrower pays back 5K early on a 10K loan, the actual principal accrued should be // 5K (balance- deployed) + 0 (principal owed) principalAccrued = totalDeployed.sub(creditLine.balance()).add(principalAccrued); // Now we need to scale that correctly for the slice we're interested in principalAccrued = scaleForSlice(slice, principalAccrued, totalDeployed); // Finally, we need to account for partial drawdowns. e.g. If 20K was deposited, and only 10K was drawn down, // Then principal accrued should start at 10K (total deposited - principal deployed), not 0. This is because // share price starts at 1, and is decremented by what was drawn down. uint256 totalDeposited = slice.seniorTranche.principalDeposited.add(slice.juniorTranche.principalDeposited); principalAccrued = totalDeposited.sub(slice.principalDeployed).add(principalAccrued); return (slice.totalInterestAccrued, principalAccrued); } function scaleByFraction( uint256 amount, uint256 fraction, uint256 total ) public pure returns (uint256) { FixedPoint.Unsigned memory totalAsFixedPoint = FixedPoint.fromUnscaledUint(total); FixedPoint.Unsigned memory fractionAsFixedPoint = FixedPoint.fromUnscaledUint(fraction); return fractionAsFixedPoint.div(totalAsFixedPoint).mul(amount).div(FP_SCALING_FACTOR).rawValue; } function applyToAllSeniorTranches( ITranchedPool.PoolSlice[] storage poolSlices, uint256 interest, uint256 principal, uint256 reserveFeePercent, uint256 totalDeployed, IV2CreditLine creditLine, uint256 juniorFeePercent ) public returns (ITranchedPool.ApplyResult memory) { ITranchedPool.ApplyResult memory seniorApplyResult; for (uint256 i = 0; i < poolSlices.length; i++) { ITranchedPool.SliceInfo memory sliceInfo = getSliceInfo( poolSlices[i], creditLine, totalDeployed, reserveFeePercent ); // Since slices cannot be created when the loan is late, all interest collected can be assumed to split // pro-rata across the slices. So we scale the interest and principal to the slice ITranchedPool.ApplyResult memory applyResult = applyToSeniorTranche( poolSlices[i], scaleForSlice(poolSlices[i], interest, totalDeployed), scaleForSlice(poolSlices[i], principal, totalDeployed), juniorFeePercent, sliceInfo ); emitSharePriceUpdatedEvent(poolSlices[i].seniorTranche, applyResult); seniorApplyResult.interestRemaining = seniorApplyResult.interestRemaining.add(applyResult.interestRemaining); seniorApplyResult.principalRemaining = seniorApplyResult.principalRemaining.add(applyResult.principalRemaining); seniorApplyResult.reserveDeduction = seniorApplyResult.reserveDeduction.add(applyResult.reserveDeduction); } return seniorApplyResult; } function applyToAllJuniorTranches( ITranchedPool.PoolSlice[] storage poolSlices, uint256 interest, uint256 principal, uint256 reserveFeePercent, uint256 totalDeployed, IV2CreditLine creditLine ) public returns (uint256 totalReserveAmount) { for (uint256 i = 0; i < poolSlices.length; i++) { ITranchedPool.SliceInfo memory sliceInfo = getSliceInfo( poolSlices[i], creditLine, totalDeployed, reserveFeePercent ); // Any remaining interest and principal is then shared pro-rata with the junior slices ITranchedPool.ApplyResult memory applyResult = applyToJuniorTranche( poolSlices[i], scaleForSlice(poolSlices[i], interest, totalDeployed), scaleForSlice(poolSlices[i], principal, totalDeployed), sliceInfo ); emitSharePriceUpdatedEvent(poolSlices[i].juniorTranche, applyResult); totalReserveAmount = totalReserveAmount.add(applyResult.reserveDeduction); } return totalReserveAmount; } function emitSharePriceUpdatedEvent( ITranchedPool.TrancheInfo memory tranche, ITranchedPool.ApplyResult memory applyResult ) internal { emit SharePriceUpdated( address(this), tranche.id, tranche.principalSharePrice, int256(tranche.principalSharePrice.sub(applyResult.oldPrincipalSharePrice)), tranche.interestSharePrice, int256(tranche.interestSharePrice.sub(applyResult.oldInterestSharePrice)) ); } function applyToSeniorTranche( ITranchedPool.PoolSlice storage slice, uint256 interestRemaining, uint256 principalRemaining, uint256 juniorFeePercent, ITranchedPool.SliceInfo memory sliceInfo ) public returns (ITranchedPool.ApplyResult memory) { // First determine the expected share price for the senior tranche. This is the gross amount the senior // tranche should receive. uint256 expectedInterestSharePrice = calculateExpectedSharePrice( slice.seniorTranche, sliceInfo.interestAccrued, slice ); uint256 expectedPrincipalSharePrice = calculateExpectedSharePrice( slice.seniorTranche, sliceInfo.principalAccrued, slice ); // Deduct the junior fee and the protocol reserve uint256 desiredNetInterestSharePrice = scaleByFraction( expectedInterestSharePrice, ONE_HUNDRED.sub(juniorFeePercent.add(sliceInfo.reserveFeePercent)), ONE_HUNDRED ); // Collect protocol fee interest received (we've subtracted this from the senior portion above) uint256 reserveDeduction = scaleByFraction(interestRemaining, sliceInfo.reserveFeePercent, ONE_HUNDRED); interestRemaining = interestRemaining.sub(reserveDeduction); uint256 oldInterestSharePrice = slice.seniorTranche.interestSharePrice; uint256 oldPrincipalSharePrice = slice.seniorTranche.principalSharePrice; // Apply the interest remaining so we get up to the netInterestSharePrice (interestRemaining, principalRemaining) = applyBySharePrice( slice.seniorTranche, interestRemaining, principalRemaining, desiredNetInterestSharePrice, expectedPrincipalSharePrice ); return ITranchedPool.ApplyResult({ interestRemaining: interestRemaining, principalRemaining: principalRemaining, reserveDeduction: reserveDeduction, oldInterestSharePrice: oldInterestSharePrice, oldPrincipalSharePrice: oldPrincipalSharePrice }); } function applyToJuniorTranche( ITranchedPool.PoolSlice storage slice, uint256 interestRemaining, uint256 principalRemaining, ITranchedPool.SliceInfo memory sliceInfo ) public returns (ITranchedPool.ApplyResult memory) { // Then fill up the junior tranche with all the interest remaining, upto the principal share price uint256 expectedInterestSharePrice = slice.juniorTranche.interestSharePrice.add( usdcToSharePrice(interestRemaining, slice.juniorTranche.principalDeposited) ); uint256 expectedPrincipalSharePrice = calculateExpectedSharePrice( slice.juniorTranche, sliceInfo.principalAccrued, slice ); uint256 oldInterestSharePrice = slice.juniorTranche.interestSharePrice; uint256 oldPrincipalSharePrice = slice.juniorTranche.principalSharePrice; (interestRemaining, principalRemaining) = applyBySharePrice( slice.juniorTranche, interestRemaining, principalRemaining, expectedInterestSharePrice, expectedPrincipalSharePrice ); // All remaining interest and principal is applied towards the junior tranche as interest interestRemaining = interestRemaining.add(principalRemaining); // Since any principal remaining is treated as interest (there is "extra" interest to be distributed) // we need to make sure to collect the protocol fee on the additional interest (we only deducted the // fee on the original interest portion) uint256 reserveDeduction = scaleByFraction(principalRemaining, sliceInfo.reserveFeePercent, ONE_HUNDRED); interestRemaining = interestRemaining.sub(reserveDeduction); principalRemaining = 0; (interestRemaining, principalRemaining) = applyByAmount( slice.juniorTranche, interestRemaining.add(principalRemaining), 0, interestRemaining.add(principalRemaining), 0 ); return ITranchedPool.ApplyResult({ interestRemaining: interestRemaining, principalRemaining: principalRemaining, reserveDeduction: reserveDeduction, oldInterestSharePrice: oldInterestSharePrice, oldPrincipalSharePrice: oldPrincipalSharePrice }); } function applyBySharePrice( ITranchedPool.TrancheInfo storage tranche, uint256 interestRemaining, uint256 principalRemaining, uint256 desiredInterestSharePrice, uint256 desiredPrincipalSharePrice ) public returns (uint256, uint256) { uint256 desiredInterestAmount = desiredAmountFromSharePrice( desiredInterestSharePrice, tranche.interestSharePrice, tranche.principalDeposited ); uint256 desiredPrincipalAmount = desiredAmountFromSharePrice( desiredPrincipalSharePrice, tranche.principalSharePrice, tranche.principalDeposited ); return applyByAmount(tranche, interestRemaining, principalRemaining, desiredInterestAmount, desiredPrincipalAmount); } function applyByAmount( ITranchedPool.TrancheInfo storage tranche, uint256 interestRemaining, uint256 principalRemaining, uint256 desiredInterestAmount, uint256 desiredPrincipalAmount ) public returns (uint256, uint256) { uint256 totalShares = tranche.principalDeposited; uint256 newSharePrice; (interestRemaining, newSharePrice) = applyToSharePrice( interestRemaining, tranche.interestSharePrice, desiredInterestAmount, totalShares ); tranche.interestSharePrice = newSharePrice; (principalRemaining, newSharePrice) = applyToSharePrice( principalRemaining, tranche.principalSharePrice, desiredPrincipalAmount, totalShares ); tranche.principalSharePrice = newSharePrice; return (interestRemaining, principalRemaining); } function migrateAccountingVariables(address originalClAddr, address newClAddr) public { IV2CreditLine originalCl = IV2CreditLine(originalClAddr); IV2CreditLine newCl = IV2CreditLine(newClAddr); // Copy over all accounting variables newCl.setBalance(originalCl.balance()); newCl.setLimit(originalCl.limit()); newCl.setInterestOwed(originalCl.interestOwed()); newCl.setPrincipalOwed(originalCl.principalOwed()); newCl.setTermEndTime(originalCl.termEndTime()); newCl.setNextDueTime(originalCl.nextDueTime()); newCl.setInterestAccruedAsOf(originalCl.interestAccruedAsOf()); newCl.setLastFullPaymentTime(originalCl.lastFullPaymentTime()); newCl.setTotalInterestAccrued(originalCl.totalInterestAccrued()); } function closeCreditLine(address originalCl) public { // Close out old CL IV2CreditLine oldCreditLine = IV2CreditLine(originalCl); oldCreditLine.setBalance(0); oldCreditLine.setLimit(0); oldCreditLine.setMaxLimit(0); } function desiredAmountFromSharePrice( uint256 desiredSharePrice, uint256 actualSharePrice, uint256 totalShares ) public pure returns (uint256) { // If the desired share price is lower, then ignore it, and leave it unchanged if (desiredSharePrice < actualSharePrice) { desiredSharePrice = actualSharePrice; } uint256 sharePriceDifference = desiredSharePrice.sub(actualSharePrice); return sharePriceToUsdc(sharePriceDifference, totalShares); } function applyToSharePrice( uint256 amountRemaining, uint256 currentSharePrice, uint256 desiredAmount, uint256 totalShares ) public pure returns (uint256, uint256) { // If no money left to apply, or don't need any changes, return the original amounts if (amountRemaining == 0 || desiredAmount == 0) { return (amountRemaining, currentSharePrice); } if (amountRemaining < desiredAmount) { // We don't have enough money to adjust share price to the desired level. So just use whatever amount is left desiredAmount = amountRemaining; } uint256 sharePriceDifference = usdcToSharePrice(desiredAmount, totalShares); return (amountRemaining.sub(desiredAmount), currentSharePrice.add(sharePriceDifference)); } function scaleByPercentOwnership( ITranchedPool.TrancheInfo memory tranche, uint256 amount, ITranchedPool.PoolSlice memory slice ) public pure returns (uint256) { uint256 totalDeposited = slice.juniorTranche.principalDeposited.add(slice.seniorTranche.principalDeposited); return scaleByFraction(amount, tranche.principalDeposited, totalDeposited); } }
{ "evmVersion": "istanbul", "libraries": { "contracts/protocol/core/TranchedPool.sol:TranchedPool": { "TranchingLogic": "0x9BCE1F08012DD6e72756Cd015E50068f90963D22" } }, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 100 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldCreditLine","type":"address"},{"indexed":true,"internalType":"address","name":"newCreditLine","type":"address"}],"name":"CreditLineMigrated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"tranche","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DepositMade","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DrawdownMade","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pool","type":"address"}],"name":"DrawdownsPaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pool","type":"address"}],"name":"DrawdownsUnpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pool","type":"address"}],"name":"EmergencyShutdown","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"payer","type":"address"},{"indexed":true,"internalType":"address","name":"pool","type":"address"},{"indexed":false,"internalType":"uint256","name":"interestAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"principalAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"remainingAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"reserveAmount","type":"uint256"}],"name":"PaymentApplied","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ReserveFundsCollected","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pool","type":"address"},{"indexed":true,"internalType":"uint256","name":"tranche","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"principalSharePrice","type":"uint256"},{"indexed":false,"internalType":"int256","name":"principalDelta","type":"int256"},{"indexed":false,"internalType":"uint256","name":"interestSharePrice","type":"uint256"},{"indexed":false,"internalType":"int256","name":"interestDelta","type":"int256"}],"name":"SharePriceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pool","type":"address"},{"indexed":false,"internalType":"uint256","name":"sliceId","type":"uint256"}],"name":"SliceCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pool","type":"address"},{"indexed":false,"internalType":"uint256","name":"trancheId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lockedUntil","type":"uint256"}],"name":"TrancheLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pool","type":"address"}],"name":"TranchedPoolAssessed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"tranche","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interestWithdrawn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"principalWithdrawn","type":"uint256"}],"name":"WithdrawalMade","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FP_SCALING_FACTOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOCKER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_TRANCHES_PER_SLICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ONE_HUNDRED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OWNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SECONDS_PER_DAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SENIOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"__BaseUpgradeablePausable__init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"__PauserPausable__init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allowedUIDTypes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"assess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"availableToWithdraw","outputs":[{"internalType":"uint256","name":"interestRedeemable","type":"uint256"},{"internalType":"uint256","name":"principalRedeemable","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"config","outputs":[{"internalType":"contract GoldfinchConfig","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createdAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creditLine","outputs":[{"internalType":"contract IV2CreditLine","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tranche","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tranche","type":"uint256"},{"internalType":"uint256","name":"amount","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":"depositWithPermit","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"drawdown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"drawdownsPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyShutdown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fundableAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllowedUIDTypes","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tranche","type":"uint256"}],"name":"getTranche","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"principalDeposited","type":"uint256"},{"internalType":"uint256","name":"principalSharePrice","type":"uint256"},{"internalType":"uint256","name":"interestSharePrice","type":"uint256"},{"internalType":"uint256","name":"lockedUntil","type":"uint256"}],"internalType":"struct ITranchedPool.TrancheInfo","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"hasAllowedUID","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_config","type":"address"},{"internalType":"address","name":"_borrower","type":"address"},{"internalType":"uint256","name":"_juniorFeePercent","type":"uint256"},{"internalType":"uint256","name":"_limit","type":"uint256"},{"internalType":"uint256","name":"_interestApr","type":"uint256"},{"internalType":"uint256","name":"_paymentPeriodInDays","type":"uint256"},{"internalType":"uint256","name":"_termInDays","type":"uint256"},{"internalType":"uint256","name":"_lateFeeApr","type":"uint256"},{"internalType":"uint256","name":"_principalGracePeriodInDays","type":"uint256"},{"internalType":"uint256","name":"_fundableAt","type":"uint256"},{"internalType":"uint256[]","name":"_allowedUIDTypes","type":"uint256[]"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fundableAt","type":"uint256"}],"name":"initializeNextSlice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"juniorFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockJuniorCapital","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newCl","type":"address"}],"name":"migrateAndSetNewCreditLine","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_borrower","type":"address"},{"internalType":"uint256","name":"_maxLimit","type":"uint256"},{"internalType":"uint256","name":"_interestApr","type":"uint256"},{"internalType":"uint256","name":"_paymentPeriodInDays","type":"uint256"},{"internalType":"uint256","name":"_termInDays","type":"uint256"},{"internalType":"uint256","name":"_lateFeeApr","type":"uint256"},{"internalType":"uint256","name":"_principalGracePeriodInDays","type":"uint256"}],"name":"migrateCreditLine","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"numSlices","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseDrawdowns","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"pay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolSlices","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"principalDeposited","type":"uint256"},{"internalType":"uint256","name":"principalSharePrice","type":"uint256"},{"internalType":"uint256","name":"interestSharePrice","type":"uint256"},{"internalType":"uint256","name":"lockedUntil","type":"uint256"}],"internalType":"struct ITranchedPool.TrancheInfo","name":"seniorTranche","type":"tuple"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"principalDeposited","type":"uint256"},{"internalType":"uint256","name":"principalSharePrice","type":"uint256"},{"internalType":"uint256","name":"interestSharePrice","type":"uint256"},{"internalType":"uint256","name":"lockedUntil","type":"uint256"}],"internalType":"struct ITranchedPool.TrancheInfo","name":"juniorTranche","type":"tuple"},{"internalType":"uint256","name":"totalInterestAccrued","type":"uint256"},{"internalType":"uint256","name":"principalDeployed","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"setAllowedUIDTypes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFundableAt","type":"uint256"}],"name":"setFundableAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sharePrice","type":"uint256"},{"internalType":"uint256","name":"totalShares","type":"uint256"}],"name":"sharePriceToUsdc","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalDeployed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalJuniorDeposits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpauseDrawdowns","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"totalShares","type":"uint256"}],"name":"usdcToSharePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"interestWithdrawn","type":"uint256"},{"internalType":"uint256","name":"principalWithdrawn","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"withdrawMax","outputs":[{"internalType":"uint256","name":"interestWithdrawn","type":"uint256"},{"internalType":"uint256","name":"principalWithdrawn","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"withdrawMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50615fb880620000216000396000f3fe608060405234801561001057600080fd5b50600436106103245760003560e01c80639010d07c116101a9578063c290d691116100ef578063d972e8ad1161009d578063d972e8ad14610644578063dd0ec24114610664578063e2a657f91461066c578063e2bbb1581461067f578063e58378bb14610692578063e63ab1e91461069a578063f3621367146106a2578063f94f5a12146106aa57610324565b8063c290d691146105d3578063c77d5698146105e6578063c78bed86146105ee578063ca15c87314610603578063cde8884514610616578063cf09e0d014610629578063d547741f1461063157610324565b8063a8f9c4fe11610157578063a8f9c4fe14610567578063aa2a7c4c1461056f578063ae6c857a14610582578063b6db75a014610595578063b9317d861461059d578063bf6c87c7146105b0578063bf8bcee4146105b8578063bfaa8cca146105cb57610324565b80639010d07c146104f857806391d148541461050b5780639d1105301461051e578063a079a4dd14610531578063a217fddf14610544578063a6a25e881461054c578063a8deac0e1461055457610324565b806344c08f231161026e5780635eb185a21161021c5780635eb185a21461049257806368dcfdc01461049a57806374f0314f146104a257806378bcd604146104aa57806379502c55146104bd5780637976323d146104c557806380b65431146104cd5780638456cb59146104f057610324565b806344c08f231461042c57806347195e13146104345780634d02fe6f14610449578063515bc3231461045c578063526d81f61461046f57806356ce1560146104775780635c975abb1461048a57610324565b806327ea6f2b116102d657806327ea6f2b146103b25780632ae754be146103c55780632f2ff15d146103cd5780633403c2fc146103e057806336568abe146103e85780633f4ba83a146103fb5780634026478e14610403578063441a3e701461040b57610324565b80630174b449146103295780630881806c14610352578063097616a31461035c5780630cfb14b01461036f57806317f76941146103775780631fe032be1461038c578063248a9ca31461039f575b600080fd5b61033c610337366004614ff2565b6106bd565b60405161034991906153ca565b60405180910390f35b61035a610752565b005b61035a61036a366004614d96565b6107cc565b61033c6108fc565b61037f610903565b60405161034991906153bf565b61035a61039a366004614e8e565b61090d565b61033c6103ad366004614fab565b610ccf565b61035a6103c0366004614fab565b610ce4565b61033c610d6f565b61035a6103db366004614fc3565b610d81565b61035a610dc5565b61035a6103f6366004614fc3565b610f9c565b61035a610fde565b61035a61101c565b61041e610419366004614ff2565b61107b565b604051610349929190615e82565b61033c6111a3565b61043c6111a8565b60405161034991906151ba565b61041e610457366004614fab565b6111b8565b61033c61046a366004615105565b61129e565b61035a611335565b61035a610485366004614d96565b6113bf565b61037f61160d565b61033c611616565b61033c61161d565b61033c611629565b61035a6104b8366004614fab565b611630565b61043c611846565b61033c611856565b6104e06104db366004614fab565b61185d565b6040516103499493929190615de6565b61035a611913565b61043c610506366004614ff2565b611951565b61037f610519366004614fc3565b611969565b61035a61052c366004614f22565b611981565b61035a61053f366004614fab565b6119e3565b61033c611f61565b61035a611f66565b61035a610562366004614dce565b611f91565b61035a612330565b61041e61057d366004614fab565b61238f565b61035a610590366004614fab565b6124d8565b61037f612512565b61035a6105ab366004614ee2565b612533565b61035a6125eb565b61035a6105c6366004614fab565b612647565b61033c61269c565b61035a6105e1366004614fab565b6126a1565b61033c6126f5565b6105f66126fc565b604051610349919061537b565b61033c610611366004614fab565b612755565b61033c610624366004614ff2565b61276c565b61033c6127a8565b61035a61063f366004614fc3565b6127af565b610657610652366004614fab565b6127e9565b6040516103499190615dd8565b61033c612839565b61033c61067a366004614fab565b612886565b61033c61068d366004614ff2565b6128a5565b61033c612b18565b61033c612b2a565b61033c612b3c565b61037f6106b8366004614d96565b612b4e565b604051630174b44960e01b8152600090739bce1f08012dd6e72756cd015e50068f90963d2290630174b449906106f99086908690600401615e82565b60206040518083038186803b15801561071157600080fd5b505af4158015610725573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074991906150c0565b90505b92915050565b61076a600080516020615f6383398151915233611969565b61078f5760405162461bcd60e51b815260040161078690615a12565b60405180910390fd5b60975460ff16156107b25760405162461bcd60e51b8152600401610786906158fa565b6101cb546107ca906107c5906001612be6565b612c28565b565b600054610100900460ff16806107e557506107e5612d30565b806107f3575060005460ff16155b61080f5760405162461bcd60e51b815260040161078690615a82565b600054610100900460ff1615801561083a576000805460ff1961ff0019909116610100171660011790555b6001600160a01b0382166108605760405162461bcd60e51b815260040161078690615980565b610868612d36565b610870612db7565b610878612e43565b610890600080516020615ee383398151915283610dbb565b6108a8600080516020615f2383398151915283610dbb565b6108ce600080516020615f23833981519152600080516020615ee3833981519152612ed2565b6108e6600080516020615ee383398151915280612ed2565b80156108f8576000805461ff00191690555b5050565b6101c95481565b6101c75460ff1681565b610915612512565b6109315760405162461bcd60e51b815260040161078690615ce2565b6001600160a01b0387166109575760405162461bcd60e51b8152600401610786906157ee565b836109745760405162461bcd60e51b815260040161078690615924565b826109915760405162461bcd60e51b815260040161078690615bbe565b6101c3546001600160a01b03166109ad88888888888888612ee7565b6101c3546040516001623df69160e21b031981526001600160a01b0390911690739bce1f08012dd6e72756cd015e50068f90963d229063ff0825bc906109f99085908590600401615228565b60006040518083038186803b158015610a1157600080fd5b505af4158015610a25573d6000803e3d6000fd5b50506040516302a7e68560e21b8152739bce1f08012dd6e72756cd015e50068f90963d229250630a9f9a149150610a609085906004016151ba565b60006040518083038186803b158015610a7857600080fd5b505af4158015610a8c573d6000803e3d6000fd5b505050506000826001600160a01b0316637df1f1b96040518163ffffffff1660e01b815260040160206040518083038186803b158015610acb57600080fd5b505afa158015610adf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b039190614db2565b90506000826001600160a01b0316637df1f1b96040518163ffffffff1660e01b815260040160206040518083038186803b158015610b4057600080fd5b505afa158015610b54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b789190614db2565b9050806001600160a01b0316826001600160a01b031614610bc357610bab600080516020615f63833981519152836127af565b610bc3600080516020615f6383398151915282610d81565b6101c554600090610bdc906001600160a01b031661300c565b6001600160a01b03166370a08231866040518263ffffffff1660e01b8152600401610c0791906151ba565b60206040518083038186803b158015610c1f57600080fd5b505afa158015610c33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c5791906150c0565b90508015610c81576101c554610c8190610c79906001600160a01b031661300c565b868684613017565b836001600160a01b0316856001600160a01b03167f987cdba0cba67c68d2c8aba6a4ba6545565eccfb3e2e5ff39579ffd94acaf9bb60405160405180910390a3505050505050505050505050565b60009081526065602052604090206002015490565b610cec612512565b610d085760405162461bcd60e51b815260040161078690615ce2565b6101c3546040516327ea6f2b60e01b81526001600160a01b03909116906327ea6f2b90610d399084906004016153ca565b600060405180830381600087803b158015610d5357600080fd5b505af1158015610d67573d6000803e3d6000fd5b505050505b50565b600080516020615f4383398151915281565b600082815260656020526040902060020154610d9f90610519613053565b610dbb5760405162461bcd60e51b815260040161078690615468565b6108f88282613057565b610dcd612512565b610de95760405162461bcd60e51b815260040161078690615ce2565b610df161160d565b610dfd57610dfd611913565b6101c554600090610e16906001600160a01b031661300c565b6101c554909150600090610e32906001600160a01b03166130c0565b90506000826001600160a01b03166370a08231306040518263ffffffff1660e01b8152600401610e6291906151ba565b60206040518083038186803b158015610e7a57600080fd5b505afa158015610e8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb291906150c0565b90508015610ec557610ec5838383613140565b6101c3546040516370a0823160e01b81526000916001600160a01b03808716926370a0823192610ef99216906004016151ba565b60206040518083038186803b158015610f1157600080fd5b505afa158015610f25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4991906150c0565b90508015610f6b576101c354610f6b9085906001600160a01b03168584613017565b60405130907f1fc1e771236d2e93bb9541cdcb4654ba0fd3fb615b48d829b7b365f03998512690600090a250505050565b610fa4613053565b6001600160a01b0316816001600160a01b031614610fd45760405162461bcd60e51b815260040161078690615d64565b6108f8828261317c565b610ff8600080516020615f23833981519152610519613053565b6110145760405162461bcd60e51b815260040161078690615603565b6107ca6131e5565b611034600080516020615f6383398151915233611969565b6110505760405162461bcd60e51b815260040161078690615a12565b60975460ff16156110735760405162461bcd60e51b8152600401610786906158fa565b6107ca613251565b60c954600090819060ff166110a25760405162461bcd60e51b815260040161078690615c7f565b60c9805460ff1916905560975460ff16156110cf5760405162461bcd60e51b8152600401610786906158fa565b6110d7614c1a565b6101c5546110ed906001600160a01b0316613605565b6001600160a01b0316638c7a63ae866040518263ffffffff1660e01b815260040161111891906153ca565b60a06040518083038186803b15801561113057600080fd5b505afa158015611144573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111689190615064565b905060006111798260200151613610565b9050611187818388886136c0565b93509350505060c9805460ff1916600117905590939092509050565b600281565b6101c3546001600160a01b031681565b6000806111c3614c1a565b6101c5546111d9906001600160a01b0316613605565b6001600160a01b0316638c7a63ae856040518263ffffffff1660e01b815260040161120491906153ca565b60a06040518083038186803b15801561121c57600080fd5b505afa158015611230573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112549190615064565b905060006112658260200151613610565b905080600401546112746139dd565b111561128f5761128481836139e1565b935093505050611299565b6000809350935050505b915091565b6101c5546000906112b7906001600160a01b0316613a4c565b6001600160a01b031663d505accf333089898989896040518863ffffffff1660e01b81526004016112ee97969594939291906151ce565b600060405180830381600087803b15801561130857600080fd5b505af115801561131c573d6000803e3d6000fd5b5050505061132a87876128a5565b979650505050505050565b600054610100900460ff168061134e575061134e612d30565b8061135c575060005460ff16155b6113785760405162461bcd60e51b815260040161078690615a82565b600054610100900460ff161580156113a3576000805460ff1961ff0019909116610100171660011790555b6113ab612db7565b8015610d6c576000805461ff001916905550565b6113c7612512565b6113e35760405162461bcd60e51b815260040161078690615ce2565b6001600160a01b0381166114095760405162461bcd60e51b81526004016107869061564f565b6101c3546101c5546001600160a01b039182169160009161142a911661300c565b6001600160a01b03166370a08231836040518263ffffffff1660e01b815260040161145591906151ba565b60206040518083038186803b15801561146d57600080fd5b505afa158015611481573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a591906150c0565b905080156114cf576101c5546114cf906114c7906001600160a01b031661300c565b838584613017565b6040516302a7e68560e21b8152739bce1f08012dd6e72756cd015e50068f90963d2290630a9f9a14906115069085906004016151ba565b60006040518083038186803b15801561151e57600080fd5b505af4158015611532573d6000803e3d6000fd5b50506101c380546001600160a01b0319166001600160a01b0387811691909117918290556040805163a4d66daf60e01b8152905192909116935063a4d66daf9250600480820192602092909190829003018186803b15801561159357600080fd5b505afa1580156115a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115cb91906150c0565b506101c3546040516001600160a01b03918216918416907f987cdba0cba67c68d2c8aba6a4ba6545565eccfb3e2e5ff39579ffd94acaf9bb90600090a3505050565b60975460ff1690565b6101ca5481565b670de0b6b3a764000081565b6201518081565b611648600080516020615f6383398151915233611969565b6116645760405162461bcd60e51b815260040161078690615a12565b60975460ff16156116875760405162461bcd60e51b8152600401610786906158fa565b61168f613a64565b6116ab5760405162461bcd60e51b81526004016107869061571c565b6101c360009054906101000a90046001600160a01b03166001600160a01b03166381c17a156040518163ffffffff1660e01b815260040160206040518083038186803b1580156116fa57600080fd5b505afa15801561170e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117329190614f8b565b1561174f5760405162461bcd60e51b815260040161078690615954565b6101c360009054906101000a90046001600160a01b03166001600160a01b031663457147a76040518163ffffffff1660e01b815260040160206040518083038186803b15801561179e57600080fd5b505afa1580156117b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d69190614f8b565b6117f25760405162461bcd60e51b8152600401610786906156bd565b6117fb81613a9e565b6101cb5430907f3420dd9c54d6a8846edd2fb39a41c30c31e7bc95b43655dae59f47cc913b60d59061182e906001612be6565b60405161183b91906153ca565b60405180910390a250565b6101c5546001600160a01b031681565b6101cb5490565b6101cb818154811061186b57fe5b90600052602060002090600c0201600091509050806000016040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505090806005016040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815250509080600a01549080600b0154905084565b61192d600080516020615f23833981519152610519613053565b6119495760405162461bcd60e51b815260040161078690615603565b6107ca613c05565b60008281526065602052604081206107499083613c5e565b60008281526065602052604081206107499083613c6a565b8281146119a05760405162461bcd60e51b8152600401610786906157b7565b60005b81811015610d67576119d98585838181106119ba57fe5b905060200201358484848181106119cd57fe5b9050602002013561107b565b50506001016119a3565b6119fb600080516020615f6383398151915233611969565b611a175760405162461bcd60e51b815260040161078690615a12565b60975460ff1615611a3a5760405162461bcd60e51b8152600401610786906158fa565b6101c75460ff1615611a5e5760405162461bcd60e51b8152600401610786906159b5565b611a66613a64565b611a7257611a72613251565b6101cb805460009190611a86906001612be6565b81548110611a9057fe5b90600052602060002090600c020190506000611aba826005016002015483600501600101546106bd565b9050611ade611ad7836000016002015484600001600101546106bd565b8290613c7f565b905080831115611b005760405162461bcd60e51b81526004016107869061556e565b6101c35460405163a079a4dd60e01b81526001600160a01b039091169063a079a4dd90611b319086906004016153ca565b600060405180830381600087803b158015611b4b57600080fd5b505af1158015611b5f573d6000803e3d6000fd5b505050506000611b788483612be690919063ffffffff16565b600784015460028501546040805160a081018252600588015481526006880154602082015280820184905260088801546060820152600988015460808201529051634ec167e960e11b815293945091929091739bce1f08012dd6e72756cd015e50068f90963d2291639d82cfd291611bf69187908a90600401615e16565b60206040518083038186803b158015611c0e57600080fd5b505af4158015611c22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c4691906150c0565b60078601556040805160a08101825286548152600187015460208201526002870154818301526003870154606082015260048088015460808301529151634ec167e960e11b8152739bce1f08012dd6e72756cd015e50068f90963d2292639d82cfd292611cb992909188918b9101615e16565b60206040518083038186803b158015611cd157600080fd5b505af4158015611ce5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d0991906150c0565b6002860155600b850154611d1d9087613c7f565b600b8601556101c954611d309087613c7f565b6101c9556101c35460408051637df1f1b960e01b815290516000926001600160a01b031691637df1f1b9916004808301926020929190829003018186803b158015611d7a57600080fd5b505afa158015611d8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611db29190614db2565b6101c554909150600090611dce906001600160a01b0316613ca4565b6101cb54909150600090611de3906001612be6565b6040516301c293dd60e71b81529091506001600160a01b0383169063e149ee8090611e129084906004016153ca565b600060405180830381600087803b158015611e2c57600080fd5b505af1158015611e40573d6000803e3d6000fd5b50506101c554611e669250611e5e91506001600160a01b031661300c565b30858c613017565b826001600160a01b03167f7411b87a3c039bdfd8f3510b21e8bd0736265f53513735e1f4aa7b4f306b728d8a604051611e9f91906153ca565b60405180910390a26005880154600789015430907f42a55d7508b1c40b53524cf7cc2558b0f6bc7c4f262a3e929b65cd48bec2b68790611edf8982612be6565b60088d0154604051611ef8939260009081039291615e67565b60405180910390a38754600289015430907f42a55d7508b1c40b53524cf7cc2558b0f6bc7c4f262a3e929b65cd48bec2b68790611f358882612be6565b60038d0154604051611f4e939260009081039291615e67565b60405180910390a3505050505050505050565b600081565b60975460ff1615611f895760405162461bcd60e51b8152600401610786906158fa565b6107ca613cbc565b600054610100900460ff1680611faa5750611faa612d30565b80611fb8575060005460ff16155b611fd45760405162461bcd60e51b815260040161078690615a82565b600054610100900460ff16158015611fff576000805460ff1961ff0019909116610100171660011790555b6001600160a01b038d161580159061201f57506001600160a01b038c1615155b61203b5760405162461bcd60e51b815260040161078690615c1f565b8c6101c560006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600061208d6101c560009054906101000a90046001600160a01b03166001600160a01b0316614300565b90506001600160a01b0381166120b55760405162461bcd60e51b8152600401610786906155dc565b6120be816107cc565b6120c785613a9e565b6120d68d8c8c8c8c8c8c612ee7565b426101c4556101c68c90558261219a576120ee614c52565b60408051602081019091526101c5548190612111906001600160a01b0316614318565b6001600160a01b0316639b56d7886040518163ffffffff1660e01b815260040160206040518083038186803b15801561214957600080fd5b505afa15801561215d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061218191906150c0565b905290506121936101c8826001614c70565b50506121a9565b6121a76101c88585614cbb565b505b6121c1600080516020615f638339815191528e610dbb565b6121d9600080516020615f6383398151915282610dbb565b6121ff600080516020615f63833981519152600080516020615ee3833981519152612ed2565b612225600080516020615f43833981519152600080516020615ee3833981519152612ed2565b6101c55461225490600080516020615f438339815191529061224f906001600160a01b0316614323565b610dbb565b6101c55460009061226d906001600160a01b031661300c565b6001600160a01b031663095ea7b3306000196040518363ffffffff1660e01b815260040161229c92919061520f565b602060405180830381600087803b1580156122b657600080fd5b505af11580156122ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ee9190614f8b565b90508061230d5760405162461bcd60e51b8152600401610786906154e5565b50508015612321576000805461ff00191690555b50505050505050505050505050565b612338612512565b6123545760405162461bcd60e51b815260040161078690615ce2565b6101c7805460ff1916600117905560405130907f90d9b09c68a7e1312ce22801552b47265d77db9496383d51374b4058545447d790600090a2565b60c954600090819060ff166123b65760405162461bcd60e51b815260040161078690615c7f565b60c9805460ff1916905560975460ff16156123e35760405162461bcd60e51b8152600401610786906158fa565b6123eb614c1a565b6101c554612401906001600160a01b0316613605565b6001600160a01b0316638c7a63ae856040518263ffffffff1660e01b815260040161242c91906153ca565b60a06040518083038186803b15801561244457600080fd5b505afa158015612458573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061247c9190615064565b9050600061248d8260200151613610565b905060008061249c83856139e1565b909250905060006124ad8383613c7f565b90506124bb84868a846136c0565b96509650505050505060c9805460ff191660011790559092909150565b6124f0600080516020615f6383398151915233611969565b61250c5760405162461bcd60e51b815260040161078690615a12565b6101ca55565b600061252e600080516020615ee3833981519152610519613053565b905090565b61254b600080516020615f6383398151915233611969565b6125675760405162461bcd60e51b815260040161078690615a12565b6101cb60008154811061257657fe5b90600052602060002090600c02016005016001015460001480156125bd57506101cb6000815481106125a457fe5b90600052602060002090600c0201600001600101546000145b6125d95760405162461bcd60e51b815260040161078690615c50565b6125e66101c88383614cbb565b505050565b6125f3612512565b61260f5760405162461bcd60e51b815260040161078690615ce2565b6101c7805460ff1916905560405130907f7184039938737267597232635b117c924371ac877d4329f2dfa5ca674c5cc4a590600090a2565b61264f612512565b61266b5760405162461bcd60e51b815260040161078690615ce2565b6101c354604051632fe2f3b960e21b81526001600160a01b039091169063bf8bcee490610d399084906004016153ca565b606481565b60975460ff16156126c45760405162461bcd60e51b8152600401610786906158fa565b600081116126e45760405162461bcd60e51b815260040161078690615bee565b6126ed8161432e565b610d6c613cbc565b6101c65481565b60606101c880548060200260200160405190810160405280929190818152602001828054801561274b57602002820191906000526020600020905b815481526020019060010190808311612737575b5050505050905090565b600081815260656020526040812061074c9061438f565b60405163cde8884560e01b8152600090739bce1f08012dd6e72756cd015e50068f90963d229063cde88845906106f99086908690600401615e82565b6101c45481565b6000828152606560205260409020600201546127cd90610519613053565b610fd45760405162461bcd60e51b815260040161078690615852565b6127f1614cf6565b6127fa82613610565b6040805160a081018252825481526001830154602082015260028301549181019190915260038201546060820152600490910154608082015292915050565b60008060005b6101cb54811015612880576128766101cb828154811061285b57fe5b600091825260209091206006600c9092020101548390613c7f565b915060010161283f565b50905090565b6101c8818154811061289457fe5b600091825260209091200154905081565b60c95460009060ff166128ca5760405162461bcd60e51b815260040161078690615c7f565b60c9805460ff1916905560975460ff16156128f75760405162461bcd60e51b8152600401610786906158fa565b600061290284613610565b905080600401546000146129285760405162461bcd60e51b8152600401610786906156f4565b600083116129485760405162461bcd60e51b8152600401610786906158cd565b61295133612b4e565b61296d5760405162461bcd60e51b8152600401610786906159e3565b6101ca54421161298f5760405162461bcd60e51b815260040161078690615b30565b805461299a9061439a565b156129d5576129b9600080516020615f43833981519152610519613053565b6129d55760405162461bcd60e51b815260040161078690615545565b60018101546129e49084613c7f565b60018201556129f1614d25565b5060408051808201909152838152602081018590526101c554612a1c906001600160a01b0316613605565b6001600160a01b0316635be57b6a82336040518363ffffffff1660e01b8152600401612a49929190615db3565b602060405180830381600087803b158015612a6357600080fd5b505af1158015612a77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a9b91906150c0565b6101c554909350612ac090612ab8906001600160a01b031661300c565b333087613017565b8285336001600160a01b03167fcb3ef4109dcd006671348924f00aac8398190a5ff283d6e470d74581513e103687604051612afb91906153ca565b60405180910390a4505060c9805460ff1916600117905592915050565b600080516020615ee383398151915281565b600080516020615f2383398151915281565b600080516020615f6383398151915281565b6101c554600090612b67906001600160a01b0316614318565b6001600160a01b0316631852f200836101c86040518363ffffffff1660e01b8152600401612b969291906152b6565b60206040518083038186803b158015612bae57600080fd5b505afa158015612bc2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074c9190614f8b565b600061074983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506143b0565b612c30613a64565b15612c4d5760405162461bcd60e51b815260040161078690615825565b6101cb8181548110612c5b57fe5b90600052602060002090600c020160050160040154600014612c8f5760405162461bcd60e51b815260040161078690615d2d565b6101c554600090612cba90612cac906001600160a01b03166143dc565b612cb46139dd565b90613c7f565b9050806101cb8381548110612ccb57fe5b600091825260209091206009600c9092020101556101cb80543091600080516020615f038339815191529185908110612d0057fe5b90600052602060002090600c02016005016000015483604051612d24929190615e82565b60405180910390a25050565b303b1590565b600054610100900460ff1680612d4f5750612d4f612d30565b80612d5d575060005460ff16155b612d795760405162461bcd60e51b815260040161078690615a82565b600054610100900460ff161580156113ab576000805460ff1961ff0019909116610100171660011790558015610d6c576000805461ff001916905550565b600054610100900460ff1680612dd05750612dd0612d30565b80612dde575060005460ff16155b612dfa5760405162461bcd60e51b815260040161078690615a82565b600054610100900460ff16158015612e25576000805460ff1961ff0019909116610100171660011790555b6097805460ff191690558015610d6c576000805461ff001916905550565b600054610100900460ff1680612e5c5750612e5c612d30565b80612e6a575060005460ff16155b612e865760405162461bcd60e51b815260040161078690615a82565b600054610100900460ff16158015612eb1576000805460ff1961ff0019909116610100171660011790555b60c9805460ff191660011790558015610d6c576000805461ff001916905550565b60009182526065602052604090912060020155565b6101c554600090612f00906001600160a01b031661445c565b6001600160a01b03166301b215516040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612f3a57600080fd5b505af1158015612f4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f729190614db2565b6101c380546001600160a01b0319166001600160a01b0383811691909117918290556101c55460405163bb4a250960e01b81529394509181169263bb4a250992612fd092169030908d908d908d908d908d908d908d90600401615242565b600060405180830381600087803b158015612fea57600080fd5b505af1158015612ffe573d6000803e3d6000fd5b505050505050505050505050565b600061074c82613a4c565b60408051808201909152601881527704661696c656420746f207472616e736665722045524332360441b6020820152610d678585858585614467565b3390565b600082815260656020526040902061306f908261453c565b156108f85761307c613053565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60006001600160a01b03821663b93f9b0a60065b6040518263ffffffff1660e01b81526004016130f091906153ca565b60206040518083038186803b15801561310857600080fd5b505afa15801561311c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074c9190614db2565b6125e68383836040518060400160405280601881526020017704661696c656420746f207472616e736665722045524332360441b815250614551565b60008281526065602052604090206131949082614623565b156108f8576131a1613053565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60975460ff166132075760405162461bcd60e51b8152600401610786906154b7565b6097805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61323a613053565b60405161324791906151ba565b60405180910390a1565b6101cb54600090613263906001612be6565b905060006101cb828154811061327557fe5b90600052602060002090600c020160050160040154116132a75760405162461bcd60e51b815260040161078690615753565b6101cb81815481106132b557fe5b90600052602060002090600c0201600001600401546000146132e95760405162461bcd60e51b815260040161078690615ad0565b60006133396101cb83815481106132fc57fe5b90600052602060002090600c0201600001600101546101cb848154811061331f57fe5b600091825260209091206006600c90920201015490613c7f565b6101c3546040805163a4d66daf60e01b815290519293506001600160a01b03909116916327ea6f2b91613457916133cb918691869163a4d66daf916004808301926020929190829003018186803b15801561339357600080fd5b505afa1580156133a7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cb491906150c0565b6101c360009054906101000a90046001600160a01b03166001600160a01b0316631a861d266040518163ffffffff1660e01b815260040160206040518083038186803b15801561341a57600080fd5b505afa15801561342e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061345291906150c0565b614638565b6040518263ffffffff1660e01b815260040161347391906153ca565b600060405180830381600087803b15801561348d57600080fd5b505af11580156134a1573d6000803e3d6000fd5b50506101c554600092506134be91506001600160a01b03166143dc565b90506134cc81612cb46139dd565b6101cb84815481106134da57fe5b600091825260209091206004600c9092020101556134fa81612cb46139dd565b6101cb848154811061350857fe5b600091825260209091206009600c9092020101556101cb80543091600080516020615f03833981519152918690811061353d57fe5b90600052602060002090600c0201600001600001546101cb868154811061356057fe5b90600052602060002090600c020160000160040154604051613583929190615e82565b60405180910390a2306001600160a01b0316600080516020615f038339815191526101cb85815481106135b257fe5b90600052602060002090600c0201600501600001546101cb86815481106135d557fe5b90600052602060002090600c0201600501600401546040516135f8929190615e82565b60405180910390a2505050565b600061074c8261464e565b6000808211801561362f57506101cb5461362b906002614666565b8211155b61364b5760405162461bcd60e51b81526004016107869061578a565b60006136776001613671600261366b61366488836146a0565b8890613c7f565b906146dd565b90612be6565b905060006101cb828154811061368957fe5b600091825260208220600c9091020191506136a58560026146a0565b6001146136b557816005016136b7565b815b95945050505050565b6101c55460009081906136db906001600160a01b0316613605565b6001600160a01b031663430c208133866040518363ffffffff1660e01b815260040161370892919061520f565b60206040518083038186803b15801561372057600080fd5b505afa158015613734573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137589190614f8b565b6137745760405162461bcd60e51b815260040161078690615b95565b61377d33612b4e565b6137995760405162461bcd60e51b8152600401610786906159e3565b600083116137b95760405162461bcd60e51b815260040161078690615b5e565b6000806137c688886139e1565b909250905060006137d78383613c7f565b9050808611156137f95760405162461bcd60e51b815260040161078690615b01565b88600401546138066139dd565b116138235760405162461bcd60e51b8152600401610786906158a2565b6000808a60040154600014156138c45760018b01546138429089612be6565b60018c0155506101c5548790613860906001600160a01b0316613605565b6001600160a01b03166366cbb0378a836040518363ffffffff1660e01b815260040161388d929190615e82565b600060405180830381600087803b1580156138a757600080fd5b505af11580156138bb573d6000803e3d6000fd5b50505050613959565b6138ce8589614638565b91506138de846134528a85612be6565b6101c5549091506138f7906001600160a01b0316613605565b6001600160a01b031663b81922058a83856040518463ffffffff1660e01b815260040161392693929190615e90565b600060405180830381600087803b15801561394057600080fd5b505af1158015613954573d6000803e3d6000fd5b505050505b6101c55461398490613973906001600160a01b031661300c565b303361397f8587613c7f565b613017565b888a60200151336001600160a01b03167f92f2787b755dae547f1701582fe74c7abf277ec14db316dd01abc69cacf7a25985856040516139c5929190615e82565b60405180910390a4909a909950975050505050505050565b4290565b60008060006139f8856002015485604001516106bd565b90506000613a0e866003015486604001516106bd565b9050613a27856080015182612be690919063ffffffff16565b9350613a40856060015183612be690919063ffffffff16565b925050505b9250929050565b60006001600160a01b03821663b93f9b0a60056130d4565b6101cb80546000918291613a79906001612be6565b81548110613a8357fe5b90600052602060002090600c02016000016004015411905090565b6101cb5460058110613ac25760405162461bcd60e51b815260040161078690615515565b6040805161012081019091526101cb90806080810180613ae86001612cb4886002614666565b815260200160008152602001613aff60018061276c565b815260200160008152602001600081525081526020016040518060a00160405280613b396002612cb460028961466690919063ffffffff16565b815260200160008152602001613b5060018061276c565b81526000602080830182905260409283018290529284528383018190529281018390528454600181810187559584529282902084518051600c90950290910193845580830151958401959095558481015160028401556060808601516003850155608095860151600485015584830151805160058601559283015160068501558282015160078501558281015160088501559190940151600983015592820151600a820155910151600b90910155506101ca55565b60975460ff1615613c285760405162461bcd60e51b8152600401610786906158fa565b6097805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861323a613053565b6000610749838361471f565b6000610749836001600160a01b038416614764565b6000828201838110156107495760405162461bcd60e51b815260040161078690615686565b60006001600160a01b03821663b93f9b0a60146130d4565b613cc4613a64565b613ce05760405162461bcd60e51b815260040161078690615cb6565b6101c35460408051630735c92b60e21b815290516000926001600160a01b031691631cd724ac916004808301926020929190829003018186803b158015613d2657600080fd5b505afa158015613d3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d5e91906150c0565b905060008060006101c360009054906101000a90046001600160a01b03166001600160a01b031663a6a25e886040518163ffffffff1660e01b8152600401606060405180830381600087803b158015613db657600080fd5b505af1158015613dca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613dee91906150d8565b925092509250613e7f846101c360009054906101000a90046001600160a01b03166001600160a01b0316631cd724ac6040518163ffffffff1660e01b815260040160206040518083038186803b158015613e4757600080fd5b505afa158015613e5b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061367191906150c0565b6101cb5490945060609067ffffffffffffffff81118015613e9f57600080fd5b50604051908082528060200260200182016040528015613ec9578160200160208202803683370190505b50905060005b6101cb548110156140ad576000739bce1f08012dd6e72756cd015e50068f90963d2263cee38ee4886101cb8581548110613f0557fe5b90600052602060002090600c0201600b01546101c9546040518463ffffffff1660e01b8152600401613f3993929190615e90565b60206040518083038186803b158015613f5157600080fd5b505af4158015613f65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f8991906150c0565b9050739bce1f08012dd6e72756cd015e50068f90963d2263cee38ee4856101cb8581548110613fb457fe5b90600052602060002090600c0201600b01546101c9546040518463ffffffff1660e01b8152600401613fe893929190615e90565b60206040518083038186803b15801561400057600080fd5b505af4158015614014573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061403891906150c0565b83838151811061404457fe5b602002602001018181525050614082816101cb848154811061406257fe5b90600052602060002090600c0201600a0154613c7f90919063ffffffff16565b6101cb838154811061409057fe5b60009182526020909120600a600c90920201015550600101613ecf565b5060008311806140bd5750600082115b156142ce576101c3546000906140e6906001600160a01b0316856140e18689613c7f565b61477c565b905060005b6101cb548110156141935761413b83828151811061410557fe5b60200260200101516101cb838154811061411b57fe5b90600052602060002090600c0201600b0154612be690919063ffffffff16565b6101cb828154811061414957fe5b90600052602060002090600c0201600b018190555061418783828151811061416d57fe5b60200260200101516101c954612be690919063ffffffff16565b6101c9556001016140eb565b506101c5546141aa906001600160a01b0316614985565b6001600160a01b03166328fc33c7856040518263ffffffff1660e01b81526004016141d591906153ca565b600060405180830381600087803b1580156141ef57600080fd5b505af1158015614203573d6000803e3d6000fd5b50506101c35460408051637df1f1b960e01b815290513094506001600160a01b039092169250637df1f1b9916004808301926020929190829003018186803b15801561424e57600080fd5b505afa158015614262573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142869190614db2565b6001600160a01b03167fd1055dc2c2a003a83dfacb1c38db776eab5ef89d77a8f05a3512e8cf57f953ce868689866040516142c49493929190615e67565b60405180910390a3505b60405130907fa2380b088ee4df06f20f2bbd1971331d0a68504a9f120cc3b029aeb934f87b3c90600090a25050505050565b60006001600160a01b03821663b93f9b0a60076130d4565b600061074c82614990565b600061074c826149a8565b6101c554610d6c90614348906001600160a01b031661300c565b6101c35460408051808201909152601981527811985a5b1959081d1bc818dbdb1b1958dd081c185e5b595b9d603a1b602082015233916001600160a01b0316908590614467565b600061074c826149c0565b60006143a78260026146a0565b60011492915050565b600081848411156143d45760405162461bcd60e51b815260040161078691906153d3565b505050900390565b60006001600160a01b03821663fc56365860075b6040518263ffffffff1660e01b815260040161440c91906153ca565b60206040518083038186803b15801561442457600080fd5b505afa158015614438573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074c91906150c0565b600061074c826149c4565b6001600160a01b03831661448d5760405162461bcd60e51b8152600401610786906155a5565b6040516323b872dd60e01b81526000906001600160a01b038716906323b872dd906144c090889088908890600401615292565b602060405180830381600087803b1580156144da57600080fd5b505af11580156144ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145129190614f8b565b905081816145335760405162461bcd60e51b815260040161078691906153d3565b50505050505050565b6000610749836001600160a01b0384166149dc565b6001600160a01b0383166145775760405162461bcd60e51b8152600401610786906155a5565b60405163a9059cbb60e01b81526000906001600160a01b0386169063a9059cbb906145a8908790879060040161520f565b602060405180830381600087803b1580156145c257600080fd5b505af11580156145d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145fa9190614f8b565b9050818161461b5760405162461bcd60e51b815260040161078691906153d3565b505050505050565b6000610749836001600160a01b038416614a26565b60008183106146475781610749565b5090919050565b60006001600160a01b03821663b93f9b0a600c6130d4565b6000826146755750600061074c565b8282028284828161468257fe5b04146107495760405162461bcd60e51b815260040161078690615a41565b6000610749838360405180604001604052806018815260200177536166654d6174683a206d6f64756c6f206279207a65726f60401b815250614aec565b600061074983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614b20565b815460009082106147425760405162461bcd60e51b815260040161078690615426565b82600001828154811061475157fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b6101c5546000906147dc90614799906001600160a01b031661300c565b85306147a58688613c7f565b6040518060400160405280601981526020017811985a5b1959081d1bc818dbdb1b1958dd081c185e5b595b9d603a1b815250614467565b6101c554600090614801906147f9906001600160a01b0316614b57565b6064906146dd565b905061480b614cf6565b6101c9546101c3546101c6546040516385bd324d60e01b8152739bce1f08012dd6e72756cd015e50068f90963d22936385bd324d93614865936101cb938c938c938b9391926001600160a01b039091169190600401615342565b60a06040518083038186803b15801561487d57600080fd5b505af4158015614891573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906148b59190615013565b805160208201516101c9546101c35460405163060f0a6d60e31b815294955061497194739bce1f08012dd6e72756cd015e50068f90963d2294633078536894614916946101cb94929391928b926001600160a01b0390911690600401615311565b60206040518083038186803b15801561492e57600080fd5b505af4158015614942573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061496691906150c0565b604083015190613c7f565b925061497c83614b6f565b50509392505050565b600061074c82613ca4565b60006001600160a01b03821663b93f9b0a60136130d4565b60006001600160a01b03821663b93f9b0a600e6130d4565b5490565b60006001600160a01b03821663b93f9b0a60026130d4565b60006149e88383614764565b614a1e5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561074c565b50600061074c565b60008181526001830160205260408120548015614ae25783546000198083019190810190600090879083908110614a5957fe5b9060005260206000200154905080876000018481548110614a7657fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080614aa657fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061074c565b600091505061074c565b60008183614b0d5760405162461bcd60e51b815260040161078691906153d3565b50828481614b1757fe5b06949350505050565b60008183614b415760405162461bcd60e51b815260040161078691906153d3565b506000838581614b4d57fe5b0495945050505050565b60006001600160a01b03821663fc56365860036143f0565b306001600160a01b03167ff3583f178a8d4f8888c3683f8e948faf9b6eb701c4f1fab265a6ecad1a1ddebb82604051614ba891906153ca565b60405180910390a26101c554610d6c90614bca906001600160a01b031661300c565b6101c5543090614be2906001600160a01b03166130c0565b84604051806040016040528060198152602001784661696c656420746f2073656e6420746f207265736572766560381b815250614467565b6040518060a0016040528060006001600160a01b03168152602001600081526020016000815260200160008152602001600081525090565b60405180602001604052806001906020820280368337509192915050565b828054828255906000526020600020908101928215614cab579160200282015b82811115614cab578251825591602001919060010190614c90565b50614cb7929150614d3f565b5090565b828054828255906000526020600020908101928215614cab579160200282015b82811115614cab578235825591602001919060010190614cdb565b6040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b604051806040016040528060008152602001600081525090565b5b80821115614cb75760008155600101614d40565b60008083601f840112614d65578182fd5b50813567ffffffffffffffff811115614d7c578182fd5b6020830191508360208083028501011115613a4557600080fd5b600060208284031215614da7578081fd5b813561074981615ecd565b600060208284031215614dc3578081fd5b815161074981615ecd565b6000806000806000806000806000806000806101608d8f031215614df0578788fd5b614dfa8d35615ecd565b8c359b50614e0b60208e0135615ecd565b60208d01359a5060408d0135995060608d0135985060808d0135975060a08d0135965060c08d0135955060e08d013594506101008d013593506101208d0135925067ffffffffffffffff6101408e01351115614e65578081fd5b614e768e6101408f01358f01614d54565b81935080925050509295989b509295989b509295989b565b600080600080600080600060e0888a031215614ea8578283fd5b8735614eb381615ecd565b9960208901359950604089013598606081013598506080810135975060a0810135965060c00135945092505050565b60008060208385031215614ef4578182fd5b823567ffffffffffffffff811115614f0a578283fd5b614f1685828601614d54565b90969095509350505050565b60008060008060408587031215614f37578384fd5b843567ffffffffffffffff80821115614f4e578586fd5b614f5a88838901614d54565b90965094506020870135915080821115614f72578384fd5b50614f7f87828801614d54565b95989497509550505050565b600060208284031215614f9c578081fd5b81518015158114610749578182fd5b600060208284031215614fbc578081fd5b5035919050565b60008060408385031215614fd5578182fd5b823591506020830135614fe781615ecd565b809150509250929050565b60008060408385031215615004578182fd5b50508035926020909101359150565b600060a08284031215615024578081fd5b61502e60a0615ea6565b82518152602083015160208201526040830151604082015260608301516060820152608083015160808201528091505092915050565b600060a08284031215615075578081fd5b61507f60a0615ea6565b825161508a81615ecd565b80825250602083015160208201526040830151604082015260608301516060820152608083015160808201528091505092915050565b6000602082840312156150d1578081fd5b5051919050565b6000806000606084860312156150ec578081fd5b8351925060208401519150604084015190509250925092565b60008060008060008060c0878903121561511d578384fd5b863595506020870135945060408701359350606087013560ff81168114615142578283fd5b9598949750929560808101359460a0909101359350915050565b80518252602081015160208301526040810151604083015260608101516060830152608081015160808301525050565b8054825260018101546020830152600281015460408301526003810154606083015260040154608090910152565b6001600160a01b0391909116815260200190565b6001600160a01b0397881681529590961660208601526040850193909352606084019190915260ff16608083015260a082015260c081019190915260e00190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b03998a16815297891660208901529590971660408701526060860193909352608085019190915260a084015260c083015260e08201929092526101008101919091526101200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b0383168152604060208083018290528354918301829052600084815281812090929091906060850190845b81811015615304578454835260019485019492840192016152e8565b5090979650505050505050565b95865260208601949094526040850192909252606084015260808301526001600160a01b031660a082015260c00190565b96875260208701959095526040860193909352606085019190915260808401526001600160a01b031660a083015260c082015260e00190565b6020808252825182820181905260009190848201906040850190845b818110156153b357835183529284019291840191600101615397565b50909695505050505050565b901515815260200190565b90815260200190565b6000602080835283518082850152825b818110156153ff578581018301518582016040015282016153e3565b818111156154105783604083870101525b50601f01601f1916929092016040019392505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252601690820152754661696c656420746f20617070726f7665205553444360501b604082015260600190565b60208082526016908201527543616e6e6f7420657863656564203520736c6963657360501b604082015260600190565b6020808252600f908201526e5265712053454e494f525f524f4c4560881b604082015260600190565b6020808252601b908201527f496e73756666696369656e742066756e647320696e20736c6963650000000000604082015260600190565b6020808252601a908201527f43616e27742073656e6420746f207a65726f2061646472657373000000000000604082015260600190565b6020808252600d908201526c13dddb995c881a5b9d985b1a59609a1b604082015260600190565b6020808252602c908201527f4d75737420686176652070617573657220726f6c6520746f20706572666f726d60408201526b103a3434b99030b1ba34b7b760a11b606082015260800190565b6020808252601a908201527f4372656469746c696e652063616e6e6f7420626520656d707479000000000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601d908201527f4265796f6e64207072696e636970616c20677261636520706572696f64000000604082015260600190565b6020808252600e908201526d151c985b98da19481b1bd8dad95960921b604082015260600190565b6020808252601a908201527f43757272656e7420736c696365207374696c6c20616374697665000000000000604082015260600190565b6020808252601d908201527f4a756e696f72207472616e636865206d757374206265206c6f636b6564000000604082015260600190565b602080825260139082015272556e737570706f72746564207472616e63686560681b604082015260600190565b6020808252601e908201527f546f6b656e7349647320616e6420416d6f756e7473206d69736d617463680000604082015260600190565b6020808252601a908201527f426f72726f776572206d757374206e6f7420626520656d707479000000000000604082015260600190565b602080825260139082015272141bdbdb08185b1c9958591e481b1bd8dad959606a1b604082015260600190565b60208082526030908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526f2061646d696e20746f207265766f6b6560801b606082015260800190565b602080825260119082015270151c985b98da19481a5cc81b1bd8dad959607a1b604082015260600190565b6020808252601390820152724d757374206465706f736974203e207a65726f60681b604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526016908201527514185e5b595b9d081c195c9a5bd9081a5b9d985b1a5960521b604082015260600190565b6020808252601290820152714372656469746c696e65206973206c61746560701b604082015260600190565b6020808252818101527f4f776e65722063616e6e6f7420626520746865207a65726f2061646472657373604082015260600190565b602080825260149082015273111c985dd91bdddb9cc8185c99481c185d5cd95960621b604082015260600190565b6020808252601590820152741059191c995cdcc81b9bdd0819dbcb5b1a5cdd1959605a1b604082015260600190565b6020808252601590820152744d7573742068617665206c6f636b657220726f6c6560581b604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602e908201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560408201526d195b881a5b9a5d1a585b1a5e995960921b606082015260800190565b602080825260179082015276131bd8dac818d85b9b9bdd08189948195e1d195b991959604a1b604082015260600190565b602080825260159082015274125b9d985b1a59081c995919595b48185b5bdd5b9d605a1b604082015260600190565b6020808252601490820152734e6f74206f70656e20666f722066756e64696e6760601b604082015260600190565b6020808252601c908201527f4d757374207769746864726177206d6f7265207468616e207a65726f00000000604082015260600190565b6020808252600f908201526e2737ba103a37b5b2b71037bbb732b960891b604082015260600190565b6020808252601690820152755465726d206d757374206e6f7420626520656d70747960501b604082015260600190565b6020808252601790820152764d75737420706179206d6f7265207468616e207a65726f60481b604082015260600190565b60208082526017908201527610dbdb999a59cbd89bdc9c9bddd95c881a5b9d985b1a59604a1b604082015260600190565b6020808252601590820152744d757374206e6f7420686176652062616c616e636560581b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b602080825260129082015271141bdbdb081a5cc81b9bdd081b1bd8dad95960721b604082015260600190565b6020808252602b908201527f4d75737420686176652061646d696e20726f6c6520746f20706572666f726d2060408201526a3a3434b99030b1ba34b7b760a91b606082015260800190565b6020808252601d908201527f4a756e696f72207472616e63686520616c7265616479206c6f636b6564000000604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b82518152602092830151928101929092526001600160a01b0316604082015260600190565b60a0810161074c828461515c565b6101808101615df5828761515c565b615e0260a083018661515c565b610140820193909352610160015292915050565b6102408101615e25828661515c565b8360a0830152615e3860c083018461518c565b615e4961016083016005850161518c565b600a830154610200830152600b830154610220830152949350505050565b93845260208401929092526040830152606082015260800190565b918252602082015260400190565b9283526020830191909152604082015260600190565b60405181810167ffffffffffffffff81118282101715615ec557600080fd5b604052919050565b6001600160a01b0381168114610d6c57600080fdfeb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214ef839b119f21fb055e13aebac51bca6b308f52ec2d8db8306ce4d092d964e5bd065d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a956624bfbe09c0e98e645d61eba0de4ce88e8cceabdb00fead208d19a8e1209baf9a8bb3cbd6b84fbccefa71ff73e26e798553c6914585a84886212a46a90279a26469706673582212202d7eee4678e05d213d9d7a77505aa11a5607e55ff86b75774792e6c95add683564736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103245760003560e01c80639010d07c116101a9578063c290d691116100ef578063d972e8ad1161009d578063d972e8ad14610644578063dd0ec24114610664578063e2a657f91461066c578063e2bbb1581461067f578063e58378bb14610692578063e63ab1e91461069a578063f3621367146106a2578063f94f5a12146106aa57610324565b8063c290d691146105d3578063c77d5698146105e6578063c78bed86146105ee578063ca15c87314610603578063cde8884514610616578063cf09e0d014610629578063d547741f1461063157610324565b8063a8f9c4fe11610157578063a8f9c4fe14610567578063aa2a7c4c1461056f578063ae6c857a14610582578063b6db75a014610595578063b9317d861461059d578063bf6c87c7146105b0578063bf8bcee4146105b8578063bfaa8cca146105cb57610324565b80639010d07c146104f857806391d148541461050b5780639d1105301461051e578063a079a4dd14610531578063a217fddf14610544578063a6a25e881461054c578063a8deac0e1461055457610324565b806344c08f231161026e5780635eb185a21161021c5780635eb185a21461049257806368dcfdc01461049a57806374f0314f146104a257806378bcd604146104aa57806379502c55146104bd5780637976323d146104c557806380b65431146104cd5780638456cb59146104f057610324565b806344c08f231461042c57806347195e13146104345780634d02fe6f14610449578063515bc3231461045c578063526d81f61461046f57806356ce1560146104775780635c975abb1461048a57610324565b806327ea6f2b116102d657806327ea6f2b146103b25780632ae754be146103c55780632f2ff15d146103cd5780633403c2fc146103e057806336568abe146103e85780633f4ba83a146103fb5780634026478e14610403578063441a3e701461040b57610324565b80630174b449146103295780630881806c14610352578063097616a31461035c5780630cfb14b01461036f57806317f76941146103775780631fe032be1461038c578063248a9ca31461039f575b600080fd5b61033c610337366004614ff2565b6106bd565b60405161034991906153ca565b60405180910390f35b61035a610752565b005b61035a61036a366004614d96565b6107cc565b61033c6108fc565b61037f610903565b60405161034991906153bf565b61035a61039a366004614e8e565b61090d565b61033c6103ad366004614fab565b610ccf565b61035a6103c0366004614fab565b610ce4565b61033c610d6f565b61035a6103db366004614fc3565b610d81565b61035a610dc5565b61035a6103f6366004614fc3565b610f9c565b61035a610fde565b61035a61101c565b61041e610419366004614ff2565b61107b565b604051610349929190615e82565b61033c6111a3565b61043c6111a8565b60405161034991906151ba565b61041e610457366004614fab565b6111b8565b61033c61046a366004615105565b61129e565b61035a611335565b61035a610485366004614d96565b6113bf565b61037f61160d565b61033c611616565b61033c61161d565b61033c611629565b61035a6104b8366004614fab565b611630565b61043c611846565b61033c611856565b6104e06104db366004614fab565b61185d565b6040516103499493929190615de6565b61035a611913565b61043c610506366004614ff2565b611951565b61037f610519366004614fc3565b611969565b61035a61052c366004614f22565b611981565b61035a61053f366004614fab565b6119e3565b61033c611f61565b61035a611f66565b61035a610562366004614dce565b611f91565b61035a612330565b61041e61057d366004614fab565b61238f565b61035a610590366004614fab565b6124d8565b61037f612512565b61035a6105ab366004614ee2565b612533565b61035a6125eb565b61035a6105c6366004614fab565b612647565b61033c61269c565b61035a6105e1366004614fab565b6126a1565b61033c6126f5565b6105f66126fc565b604051610349919061537b565b61033c610611366004614fab565b612755565b61033c610624366004614ff2565b61276c565b61033c6127a8565b61035a61063f366004614fc3565b6127af565b610657610652366004614fab565b6127e9565b6040516103499190615dd8565b61033c612839565b61033c61067a366004614fab565b612886565b61033c61068d366004614ff2565b6128a5565b61033c612b18565b61033c612b2a565b61033c612b3c565b61037f6106b8366004614d96565b612b4e565b604051630174b44960e01b8152600090739bce1f08012dd6e72756cd015e50068f90963d2290630174b449906106f99086908690600401615e82565b60206040518083038186803b15801561071157600080fd5b505af4158015610725573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074991906150c0565b90505b92915050565b61076a600080516020615f6383398151915233611969565b61078f5760405162461bcd60e51b815260040161078690615a12565b60405180910390fd5b60975460ff16156107b25760405162461bcd60e51b8152600401610786906158fa565b6101cb546107ca906107c5906001612be6565b612c28565b565b600054610100900460ff16806107e557506107e5612d30565b806107f3575060005460ff16155b61080f5760405162461bcd60e51b815260040161078690615a82565b600054610100900460ff1615801561083a576000805460ff1961ff0019909116610100171660011790555b6001600160a01b0382166108605760405162461bcd60e51b815260040161078690615980565b610868612d36565b610870612db7565b610878612e43565b610890600080516020615ee383398151915283610dbb565b6108a8600080516020615f2383398151915283610dbb565b6108ce600080516020615f23833981519152600080516020615ee3833981519152612ed2565b6108e6600080516020615ee383398151915280612ed2565b80156108f8576000805461ff00191690555b5050565b6101c95481565b6101c75460ff1681565b610915612512565b6109315760405162461bcd60e51b815260040161078690615ce2565b6001600160a01b0387166109575760405162461bcd60e51b8152600401610786906157ee565b836109745760405162461bcd60e51b815260040161078690615924565b826109915760405162461bcd60e51b815260040161078690615bbe565b6101c3546001600160a01b03166109ad88888888888888612ee7565b6101c3546040516001623df69160e21b031981526001600160a01b0390911690739bce1f08012dd6e72756cd015e50068f90963d229063ff0825bc906109f99085908590600401615228565b60006040518083038186803b158015610a1157600080fd5b505af4158015610a25573d6000803e3d6000fd5b50506040516302a7e68560e21b8152739bce1f08012dd6e72756cd015e50068f90963d229250630a9f9a149150610a609085906004016151ba565b60006040518083038186803b158015610a7857600080fd5b505af4158015610a8c573d6000803e3d6000fd5b505050506000826001600160a01b0316637df1f1b96040518163ffffffff1660e01b815260040160206040518083038186803b158015610acb57600080fd5b505afa158015610adf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b039190614db2565b90506000826001600160a01b0316637df1f1b96040518163ffffffff1660e01b815260040160206040518083038186803b158015610b4057600080fd5b505afa158015610b54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b789190614db2565b9050806001600160a01b0316826001600160a01b031614610bc357610bab600080516020615f63833981519152836127af565b610bc3600080516020615f6383398151915282610d81565b6101c554600090610bdc906001600160a01b031661300c565b6001600160a01b03166370a08231866040518263ffffffff1660e01b8152600401610c0791906151ba565b60206040518083038186803b158015610c1f57600080fd5b505afa158015610c33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c5791906150c0565b90508015610c81576101c554610c8190610c79906001600160a01b031661300c565b868684613017565b836001600160a01b0316856001600160a01b03167f987cdba0cba67c68d2c8aba6a4ba6545565eccfb3e2e5ff39579ffd94acaf9bb60405160405180910390a3505050505050505050505050565b60009081526065602052604090206002015490565b610cec612512565b610d085760405162461bcd60e51b815260040161078690615ce2565b6101c3546040516327ea6f2b60e01b81526001600160a01b03909116906327ea6f2b90610d399084906004016153ca565b600060405180830381600087803b158015610d5357600080fd5b505af1158015610d67573d6000803e3d6000fd5b505050505b50565b600080516020615f4383398151915281565b600082815260656020526040902060020154610d9f90610519613053565b610dbb5760405162461bcd60e51b815260040161078690615468565b6108f88282613057565b610dcd612512565b610de95760405162461bcd60e51b815260040161078690615ce2565b610df161160d565b610dfd57610dfd611913565b6101c554600090610e16906001600160a01b031661300c565b6101c554909150600090610e32906001600160a01b03166130c0565b90506000826001600160a01b03166370a08231306040518263ffffffff1660e01b8152600401610e6291906151ba565b60206040518083038186803b158015610e7a57600080fd5b505afa158015610e8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb291906150c0565b90508015610ec557610ec5838383613140565b6101c3546040516370a0823160e01b81526000916001600160a01b03808716926370a0823192610ef99216906004016151ba565b60206040518083038186803b158015610f1157600080fd5b505afa158015610f25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4991906150c0565b90508015610f6b576101c354610f6b9085906001600160a01b03168584613017565b60405130907f1fc1e771236d2e93bb9541cdcb4654ba0fd3fb615b48d829b7b365f03998512690600090a250505050565b610fa4613053565b6001600160a01b0316816001600160a01b031614610fd45760405162461bcd60e51b815260040161078690615d64565b6108f8828261317c565b610ff8600080516020615f23833981519152610519613053565b6110145760405162461bcd60e51b815260040161078690615603565b6107ca6131e5565b611034600080516020615f6383398151915233611969565b6110505760405162461bcd60e51b815260040161078690615a12565b60975460ff16156110735760405162461bcd60e51b8152600401610786906158fa565b6107ca613251565b60c954600090819060ff166110a25760405162461bcd60e51b815260040161078690615c7f565b60c9805460ff1916905560975460ff16156110cf5760405162461bcd60e51b8152600401610786906158fa565b6110d7614c1a565b6101c5546110ed906001600160a01b0316613605565b6001600160a01b0316638c7a63ae866040518263ffffffff1660e01b815260040161111891906153ca565b60a06040518083038186803b15801561113057600080fd5b505afa158015611144573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111689190615064565b905060006111798260200151613610565b9050611187818388886136c0565b93509350505060c9805460ff1916600117905590939092509050565b600281565b6101c3546001600160a01b031681565b6000806111c3614c1a565b6101c5546111d9906001600160a01b0316613605565b6001600160a01b0316638c7a63ae856040518263ffffffff1660e01b815260040161120491906153ca565b60a06040518083038186803b15801561121c57600080fd5b505afa158015611230573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112549190615064565b905060006112658260200151613610565b905080600401546112746139dd565b111561128f5761128481836139e1565b935093505050611299565b6000809350935050505b915091565b6101c5546000906112b7906001600160a01b0316613a4c565b6001600160a01b031663d505accf333089898989896040518863ffffffff1660e01b81526004016112ee97969594939291906151ce565b600060405180830381600087803b15801561130857600080fd5b505af115801561131c573d6000803e3d6000fd5b5050505061132a87876128a5565b979650505050505050565b600054610100900460ff168061134e575061134e612d30565b8061135c575060005460ff16155b6113785760405162461bcd60e51b815260040161078690615a82565b600054610100900460ff161580156113a3576000805460ff1961ff0019909116610100171660011790555b6113ab612db7565b8015610d6c576000805461ff001916905550565b6113c7612512565b6113e35760405162461bcd60e51b815260040161078690615ce2565b6001600160a01b0381166114095760405162461bcd60e51b81526004016107869061564f565b6101c3546101c5546001600160a01b039182169160009161142a911661300c565b6001600160a01b03166370a08231836040518263ffffffff1660e01b815260040161145591906151ba565b60206040518083038186803b15801561146d57600080fd5b505afa158015611481573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a591906150c0565b905080156114cf576101c5546114cf906114c7906001600160a01b031661300c565b838584613017565b6040516302a7e68560e21b8152739bce1f08012dd6e72756cd015e50068f90963d2290630a9f9a14906115069085906004016151ba565b60006040518083038186803b15801561151e57600080fd5b505af4158015611532573d6000803e3d6000fd5b50506101c380546001600160a01b0319166001600160a01b0387811691909117918290556040805163a4d66daf60e01b8152905192909116935063a4d66daf9250600480820192602092909190829003018186803b15801561159357600080fd5b505afa1580156115a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115cb91906150c0565b506101c3546040516001600160a01b03918216918416907f987cdba0cba67c68d2c8aba6a4ba6545565eccfb3e2e5ff39579ffd94acaf9bb90600090a3505050565b60975460ff1690565b6101ca5481565b670de0b6b3a764000081565b6201518081565b611648600080516020615f6383398151915233611969565b6116645760405162461bcd60e51b815260040161078690615a12565b60975460ff16156116875760405162461bcd60e51b8152600401610786906158fa565b61168f613a64565b6116ab5760405162461bcd60e51b81526004016107869061571c565b6101c360009054906101000a90046001600160a01b03166001600160a01b03166381c17a156040518163ffffffff1660e01b815260040160206040518083038186803b1580156116fa57600080fd5b505afa15801561170e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117329190614f8b565b1561174f5760405162461bcd60e51b815260040161078690615954565b6101c360009054906101000a90046001600160a01b03166001600160a01b031663457147a76040518163ffffffff1660e01b815260040160206040518083038186803b15801561179e57600080fd5b505afa1580156117b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d69190614f8b565b6117f25760405162461bcd60e51b8152600401610786906156bd565b6117fb81613a9e565b6101cb5430907f3420dd9c54d6a8846edd2fb39a41c30c31e7bc95b43655dae59f47cc913b60d59061182e906001612be6565b60405161183b91906153ca565b60405180910390a250565b6101c5546001600160a01b031681565b6101cb5490565b6101cb818154811061186b57fe5b90600052602060002090600c0201600091509050806000016040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505090806005016040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815250509080600a01549080600b0154905084565b61192d600080516020615f23833981519152610519613053565b6119495760405162461bcd60e51b815260040161078690615603565b6107ca613c05565b60008281526065602052604081206107499083613c5e565b60008281526065602052604081206107499083613c6a565b8281146119a05760405162461bcd60e51b8152600401610786906157b7565b60005b81811015610d67576119d98585838181106119ba57fe5b905060200201358484848181106119cd57fe5b9050602002013561107b565b50506001016119a3565b6119fb600080516020615f6383398151915233611969565b611a175760405162461bcd60e51b815260040161078690615a12565b60975460ff1615611a3a5760405162461bcd60e51b8152600401610786906158fa565b6101c75460ff1615611a5e5760405162461bcd60e51b8152600401610786906159b5565b611a66613a64565b611a7257611a72613251565b6101cb805460009190611a86906001612be6565b81548110611a9057fe5b90600052602060002090600c020190506000611aba826005016002015483600501600101546106bd565b9050611ade611ad7836000016002015484600001600101546106bd565b8290613c7f565b905080831115611b005760405162461bcd60e51b81526004016107869061556e565b6101c35460405163a079a4dd60e01b81526001600160a01b039091169063a079a4dd90611b319086906004016153ca565b600060405180830381600087803b158015611b4b57600080fd5b505af1158015611b5f573d6000803e3d6000fd5b505050506000611b788483612be690919063ffffffff16565b600784015460028501546040805160a081018252600588015481526006880154602082015280820184905260088801546060820152600988015460808201529051634ec167e960e11b815293945091929091739bce1f08012dd6e72756cd015e50068f90963d2291639d82cfd291611bf69187908a90600401615e16565b60206040518083038186803b158015611c0e57600080fd5b505af4158015611c22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c4691906150c0565b60078601556040805160a08101825286548152600187015460208201526002870154818301526003870154606082015260048088015460808301529151634ec167e960e11b8152739bce1f08012dd6e72756cd015e50068f90963d2292639d82cfd292611cb992909188918b9101615e16565b60206040518083038186803b158015611cd157600080fd5b505af4158015611ce5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d0991906150c0565b6002860155600b850154611d1d9087613c7f565b600b8601556101c954611d309087613c7f565b6101c9556101c35460408051637df1f1b960e01b815290516000926001600160a01b031691637df1f1b9916004808301926020929190829003018186803b158015611d7a57600080fd5b505afa158015611d8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611db29190614db2565b6101c554909150600090611dce906001600160a01b0316613ca4565b6101cb54909150600090611de3906001612be6565b6040516301c293dd60e71b81529091506001600160a01b0383169063e149ee8090611e129084906004016153ca565b600060405180830381600087803b158015611e2c57600080fd5b505af1158015611e40573d6000803e3d6000fd5b50506101c554611e669250611e5e91506001600160a01b031661300c565b30858c613017565b826001600160a01b03167f7411b87a3c039bdfd8f3510b21e8bd0736265f53513735e1f4aa7b4f306b728d8a604051611e9f91906153ca565b60405180910390a26005880154600789015430907f42a55d7508b1c40b53524cf7cc2558b0f6bc7c4f262a3e929b65cd48bec2b68790611edf8982612be6565b60088d0154604051611ef8939260009081039291615e67565b60405180910390a38754600289015430907f42a55d7508b1c40b53524cf7cc2558b0f6bc7c4f262a3e929b65cd48bec2b68790611f358882612be6565b60038d0154604051611f4e939260009081039291615e67565b60405180910390a3505050505050505050565b600081565b60975460ff1615611f895760405162461bcd60e51b8152600401610786906158fa565b6107ca613cbc565b600054610100900460ff1680611faa5750611faa612d30565b80611fb8575060005460ff16155b611fd45760405162461bcd60e51b815260040161078690615a82565b600054610100900460ff16158015611fff576000805460ff1961ff0019909116610100171660011790555b6001600160a01b038d161580159061201f57506001600160a01b038c1615155b61203b5760405162461bcd60e51b815260040161078690615c1f565b8c6101c560006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600061208d6101c560009054906101000a90046001600160a01b03166001600160a01b0316614300565b90506001600160a01b0381166120b55760405162461bcd60e51b8152600401610786906155dc565b6120be816107cc565b6120c785613a9e565b6120d68d8c8c8c8c8c8c612ee7565b426101c4556101c68c90558261219a576120ee614c52565b60408051602081019091526101c5548190612111906001600160a01b0316614318565b6001600160a01b0316639b56d7886040518163ffffffff1660e01b815260040160206040518083038186803b15801561214957600080fd5b505afa15801561215d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061218191906150c0565b905290506121936101c8826001614c70565b50506121a9565b6121a76101c88585614cbb565b505b6121c1600080516020615f638339815191528e610dbb565b6121d9600080516020615f6383398151915282610dbb565b6121ff600080516020615f63833981519152600080516020615ee3833981519152612ed2565b612225600080516020615f43833981519152600080516020615ee3833981519152612ed2565b6101c55461225490600080516020615f438339815191529061224f906001600160a01b0316614323565b610dbb565b6101c55460009061226d906001600160a01b031661300c565b6001600160a01b031663095ea7b3306000196040518363ffffffff1660e01b815260040161229c92919061520f565b602060405180830381600087803b1580156122b657600080fd5b505af11580156122ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ee9190614f8b565b90508061230d5760405162461bcd60e51b8152600401610786906154e5565b50508015612321576000805461ff00191690555b50505050505050505050505050565b612338612512565b6123545760405162461bcd60e51b815260040161078690615ce2565b6101c7805460ff1916600117905560405130907f90d9b09c68a7e1312ce22801552b47265d77db9496383d51374b4058545447d790600090a2565b60c954600090819060ff166123b65760405162461bcd60e51b815260040161078690615c7f565b60c9805460ff1916905560975460ff16156123e35760405162461bcd60e51b8152600401610786906158fa565b6123eb614c1a565b6101c554612401906001600160a01b0316613605565b6001600160a01b0316638c7a63ae856040518263ffffffff1660e01b815260040161242c91906153ca565b60a06040518083038186803b15801561244457600080fd5b505afa158015612458573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061247c9190615064565b9050600061248d8260200151613610565b905060008061249c83856139e1565b909250905060006124ad8383613c7f565b90506124bb84868a846136c0565b96509650505050505060c9805460ff191660011790559092909150565b6124f0600080516020615f6383398151915233611969565b61250c5760405162461bcd60e51b815260040161078690615a12565b6101ca55565b600061252e600080516020615ee3833981519152610519613053565b905090565b61254b600080516020615f6383398151915233611969565b6125675760405162461bcd60e51b815260040161078690615a12565b6101cb60008154811061257657fe5b90600052602060002090600c02016005016001015460001480156125bd57506101cb6000815481106125a457fe5b90600052602060002090600c0201600001600101546000145b6125d95760405162461bcd60e51b815260040161078690615c50565b6125e66101c88383614cbb565b505050565b6125f3612512565b61260f5760405162461bcd60e51b815260040161078690615ce2565b6101c7805460ff1916905560405130907f7184039938737267597232635b117c924371ac877d4329f2dfa5ca674c5cc4a590600090a2565b61264f612512565b61266b5760405162461bcd60e51b815260040161078690615ce2565b6101c354604051632fe2f3b960e21b81526001600160a01b039091169063bf8bcee490610d399084906004016153ca565b606481565b60975460ff16156126c45760405162461bcd60e51b8152600401610786906158fa565b600081116126e45760405162461bcd60e51b815260040161078690615bee565b6126ed8161432e565b610d6c613cbc565b6101c65481565b60606101c880548060200260200160405190810160405280929190818152602001828054801561274b57602002820191906000526020600020905b815481526020019060010190808311612737575b5050505050905090565b600081815260656020526040812061074c9061438f565b60405163cde8884560e01b8152600090739bce1f08012dd6e72756cd015e50068f90963d229063cde88845906106f99086908690600401615e82565b6101c45481565b6000828152606560205260409020600201546127cd90610519613053565b610fd45760405162461bcd60e51b815260040161078690615852565b6127f1614cf6565b6127fa82613610565b6040805160a081018252825481526001830154602082015260028301549181019190915260038201546060820152600490910154608082015292915050565b60008060005b6101cb54811015612880576128766101cb828154811061285b57fe5b600091825260209091206006600c9092020101548390613c7f565b915060010161283f565b50905090565b6101c8818154811061289457fe5b600091825260209091200154905081565b60c95460009060ff166128ca5760405162461bcd60e51b815260040161078690615c7f565b60c9805460ff1916905560975460ff16156128f75760405162461bcd60e51b8152600401610786906158fa565b600061290284613610565b905080600401546000146129285760405162461bcd60e51b8152600401610786906156f4565b600083116129485760405162461bcd60e51b8152600401610786906158cd565b61295133612b4e565b61296d5760405162461bcd60e51b8152600401610786906159e3565b6101ca54421161298f5760405162461bcd60e51b815260040161078690615b30565b805461299a9061439a565b156129d5576129b9600080516020615f43833981519152610519613053565b6129d55760405162461bcd60e51b815260040161078690615545565b60018101546129e49084613c7f565b60018201556129f1614d25565b5060408051808201909152838152602081018590526101c554612a1c906001600160a01b0316613605565b6001600160a01b0316635be57b6a82336040518363ffffffff1660e01b8152600401612a49929190615db3565b602060405180830381600087803b158015612a6357600080fd5b505af1158015612a77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a9b91906150c0565b6101c554909350612ac090612ab8906001600160a01b031661300c565b333087613017565b8285336001600160a01b03167fcb3ef4109dcd006671348924f00aac8398190a5ff283d6e470d74581513e103687604051612afb91906153ca565b60405180910390a4505060c9805460ff1916600117905592915050565b600080516020615ee383398151915281565b600080516020615f2383398151915281565b600080516020615f6383398151915281565b6101c554600090612b67906001600160a01b0316614318565b6001600160a01b0316631852f200836101c86040518363ffffffff1660e01b8152600401612b969291906152b6565b60206040518083038186803b158015612bae57600080fd5b505afa158015612bc2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074c9190614f8b565b600061074983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506143b0565b612c30613a64565b15612c4d5760405162461bcd60e51b815260040161078690615825565b6101cb8181548110612c5b57fe5b90600052602060002090600c020160050160040154600014612c8f5760405162461bcd60e51b815260040161078690615d2d565b6101c554600090612cba90612cac906001600160a01b03166143dc565b612cb46139dd565b90613c7f565b9050806101cb8381548110612ccb57fe5b600091825260209091206009600c9092020101556101cb80543091600080516020615f038339815191529185908110612d0057fe5b90600052602060002090600c02016005016000015483604051612d24929190615e82565b60405180910390a25050565b303b1590565b600054610100900460ff1680612d4f5750612d4f612d30565b80612d5d575060005460ff16155b612d795760405162461bcd60e51b815260040161078690615a82565b600054610100900460ff161580156113ab576000805460ff1961ff0019909116610100171660011790558015610d6c576000805461ff001916905550565b600054610100900460ff1680612dd05750612dd0612d30565b80612dde575060005460ff16155b612dfa5760405162461bcd60e51b815260040161078690615a82565b600054610100900460ff16158015612e25576000805460ff1961ff0019909116610100171660011790555b6097805460ff191690558015610d6c576000805461ff001916905550565b600054610100900460ff1680612e5c5750612e5c612d30565b80612e6a575060005460ff16155b612e865760405162461bcd60e51b815260040161078690615a82565b600054610100900460ff16158015612eb1576000805460ff1961ff0019909116610100171660011790555b60c9805460ff191660011790558015610d6c576000805461ff001916905550565b60009182526065602052604090912060020155565b6101c554600090612f00906001600160a01b031661445c565b6001600160a01b03166301b215516040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612f3a57600080fd5b505af1158015612f4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f729190614db2565b6101c380546001600160a01b0319166001600160a01b0383811691909117918290556101c55460405163bb4a250960e01b81529394509181169263bb4a250992612fd092169030908d908d908d908d908d908d908d90600401615242565b600060405180830381600087803b158015612fea57600080fd5b505af1158015612ffe573d6000803e3d6000fd5b505050505050505050505050565b600061074c82613a4c565b60408051808201909152601881527704661696c656420746f207472616e736665722045524332360441b6020820152610d678585858585614467565b3390565b600082815260656020526040902061306f908261453c565b156108f85761307c613053565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60006001600160a01b03821663b93f9b0a60065b6040518263ffffffff1660e01b81526004016130f091906153ca565b60206040518083038186803b15801561310857600080fd5b505afa15801561311c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074c9190614db2565b6125e68383836040518060400160405280601881526020017704661696c656420746f207472616e736665722045524332360441b815250614551565b60008281526065602052604090206131949082614623565b156108f8576131a1613053565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60975460ff166132075760405162461bcd60e51b8152600401610786906154b7565b6097805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61323a613053565b60405161324791906151ba565b60405180910390a1565b6101cb54600090613263906001612be6565b905060006101cb828154811061327557fe5b90600052602060002090600c020160050160040154116132a75760405162461bcd60e51b815260040161078690615753565b6101cb81815481106132b557fe5b90600052602060002090600c0201600001600401546000146132e95760405162461bcd60e51b815260040161078690615ad0565b60006133396101cb83815481106132fc57fe5b90600052602060002090600c0201600001600101546101cb848154811061331f57fe5b600091825260209091206006600c90920201015490613c7f565b6101c3546040805163a4d66daf60e01b815290519293506001600160a01b03909116916327ea6f2b91613457916133cb918691869163a4d66daf916004808301926020929190829003018186803b15801561339357600080fd5b505afa1580156133a7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cb491906150c0565b6101c360009054906101000a90046001600160a01b03166001600160a01b0316631a861d266040518163ffffffff1660e01b815260040160206040518083038186803b15801561341a57600080fd5b505afa15801561342e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061345291906150c0565b614638565b6040518263ffffffff1660e01b815260040161347391906153ca565b600060405180830381600087803b15801561348d57600080fd5b505af11580156134a1573d6000803e3d6000fd5b50506101c554600092506134be91506001600160a01b03166143dc565b90506134cc81612cb46139dd565b6101cb84815481106134da57fe5b600091825260209091206004600c9092020101556134fa81612cb46139dd565b6101cb848154811061350857fe5b600091825260209091206009600c9092020101556101cb80543091600080516020615f03833981519152918690811061353d57fe5b90600052602060002090600c0201600001600001546101cb868154811061356057fe5b90600052602060002090600c020160000160040154604051613583929190615e82565b60405180910390a2306001600160a01b0316600080516020615f038339815191526101cb85815481106135b257fe5b90600052602060002090600c0201600501600001546101cb86815481106135d557fe5b90600052602060002090600c0201600501600401546040516135f8929190615e82565b60405180910390a2505050565b600061074c8261464e565b6000808211801561362f57506101cb5461362b906002614666565b8211155b61364b5760405162461bcd60e51b81526004016107869061578a565b60006136776001613671600261366b61366488836146a0565b8890613c7f565b906146dd565b90612be6565b905060006101cb828154811061368957fe5b600091825260208220600c9091020191506136a58560026146a0565b6001146136b557816005016136b7565b815b95945050505050565b6101c55460009081906136db906001600160a01b0316613605565b6001600160a01b031663430c208133866040518363ffffffff1660e01b815260040161370892919061520f565b60206040518083038186803b15801561372057600080fd5b505afa158015613734573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137589190614f8b565b6137745760405162461bcd60e51b815260040161078690615b95565b61377d33612b4e565b6137995760405162461bcd60e51b8152600401610786906159e3565b600083116137b95760405162461bcd60e51b815260040161078690615b5e565b6000806137c688886139e1565b909250905060006137d78383613c7f565b9050808611156137f95760405162461bcd60e51b815260040161078690615b01565b88600401546138066139dd565b116138235760405162461bcd60e51b8152600401610786906158a2565b6000808a60040154600014156138c45760018b01546138429089612be6565b60018c0155506101c5548790613860906001600160a01b0316613605565b6001600160a01b03166366cbb0378a836040518363ffffffff1660e01b815260040161388d929190615e82565b600060405180830381600087803b1580156138a757600080fd5b505af11580156138bb573d6000803e3d6000fd5b50505050613959565b6138ce8589614638565b91506138de846134528a85612be6565b6101c5549091506138f7906001600160a01b0316613605565b6001600160a01b031663b81922058a83856040518463ffffffff1660e01b815260040161392693929190615e90565b600060405180830381600087803b15801561394057600080fd5b505af1158015613954573d6000803e3d6000fd5b505050505b6101c55461398490613973906001600160a01b031661300c565b303361397f8587613c7f565b613017565b888a60200151336001600160a01b03167f92f2787b755dae547f1701582fe74c7abf277ec14db316dd01abc69cacf7a25985856040516139c5929190615e82565b60405180910390a4909a909950975050505050505050565b4290565b60008060006139f8856002015485604001516106bd565b90506000613a0e866003015486604001516106bd565b9050613a27856080015182612be690919063ffffffff16565b9350613a40856060015183612be690919063ffffffff16565b925050505b9250929050565b60006001600160a01b03821663b93f9b0a60056130d4565b6101cb80546000918291613a79906001612be6565b81548110613a8357fe5b90600052602060002090600c02016000016004015411905090565b6101cb5460058110613ac25760405162461bcd60e51b815260040161078690615515565b6040805161012081019091526101cb90806080810180613ae86001612cb4886002614666565b815260200160008152602001613aff60018061276c565b815260200160008152602001600081525081526020016040518060a00160405280613b396002612cb460028961466690919063ffffffff16565b815260200160008152602001613b5060018061276c565b81526000602080830182905260409283018290529284528383018190529281018390528454600181810187559584529282902084518051600c90950290910193845580830151958401959095558481015160028401556060808601516003850155608095860151600485015584830151805160058601559283015160068501558282015160078501558281015160088501559190940151600983015592820151600a820155910151600b90910155506101ca55565b60975460ff1615613c285760405162461bcd60e51b8152600401610786906158fa565b6097805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861323a613053565b6000610749838361471f565b6000610749836001600160a01b038416614764565b6000828201838110156107495760405162461bcd60e51b815260040161078690615686565b60006001600160a01b03821663b93f9b0a60146130d4565b613cc4613a64565b613ce05760405162461bcd60e51b815260040161078690615cb6565b6101c35460408051630735c92b60e21b815290516000926001600160a01b031691631cd724ac916004808301926020929190829003018186803b158015613d2657600080fd5b505afa158015613d3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d5e91906150c0565b905060008060006101c360009054906101000a90046001600160a01b03166001600160a01b031663a6a25e886040518163ffffffff1660e01b8152600401606060405180830381600087803b158015613db657600080fd5b505af1158015613dca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613dee91906150d8565b925092509250613e7f846101c360009054906101000a90046001600160a01b03166001600160a01b0316631cd724ac6040518163ffffffff1660e01b815260040160206040518083038186803b158015613e4757600080fd5b505afa158015613e5b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061367191906150c0565b6101cb5490945060609067ffffffffffffffff81118015613e9f57600080fd5b50604051908082528060200260200182016040528015613ec9578160200160208202803683370190505b50905060005b6101cb548110156140ad576000739bce1f08012dd6e72756cd015e50068f90963d2263cee38ee4886101cb8581548110613f0557fe5b90600052602060002090600c0201600b01546101c9546040518463ffffffff1660e01b8152600401613f3993929190615e90565b60206040518083038186803b158015613f5157600080fd5b505af4158015613f65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f8991906150c0565b9050739bce1f08012dd6e72756cd015e50068f90963d2263cee38ee4856101cb8581548110613fb457fe5b90600052602060002090600c0201600b01546101c9546040518463ffffffff1660e01b8152600401613fe893929190615e90565b60206040518083038186803b15801561400057600080fd5b505af4158015614014573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061403891906150c0565b83838151811061404457fe5b602002602001018181525050614082816101cb848154811061406257fe5b90600052602060002090600c0201600a0154613c7f90919063ffffffff16565b6101cb838154811061409057fe5b60009182526020909120600a600c90920201015550600101613ecf565b5060008311806140bd5750600082115b156142ce576101c3546000906140e6906001600160a01b0316856140e18689613c7f565b61477c565b905060005b6101cb548110156141935761413b83828151811061410557fe5b60200260200101516101cb838154811061411b57fe5b90600052602060002090600c0201600b0154612be690919063ffffffff16565b6101cb828154811061414957fe5b90600052602060002090600c0201600b018190555061418783828151811061416d57fe5b60200260200101516101c954612be690919063ffffffff16565b6101c9556001016140eb565b506101c5546141aa906001600160a01b0316614985565b6001600160a01b03166328fc33c7856040518263ffffffff1660e01b81526004016141d591906153ca565b600060405180830381600087803b1580156141ef57600080fd5b505af1158015614203573d6000803e3d6000fd5b50506101c35460408051637df1f1b960e01b815290513094506001600160a01b039092169250637df1f1b9916004808301926020929190829003018186803b15801561424e57600080fd5b505afa158015614262573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142869190614db2565b6001600160a01b03167fd1055dc2c2a003a83dfacb1c38db776eab5ef89d77a8f05a3512e8cf57f953ce868689866040516142c49493929190615e67565b60405180910390a3505b60405130907fa2380b088ee4df06f20f2bbd1971331d0a68504a9f120cc3b029aeb934f87b3c90600090a25050505050565b60006001600160a01b03821663b93f9b0a60076130d4565b600061074c82614990565b600061074c826149a8565b6101c554610d6c90614348906001600160a01b031661300c565b6101c35460408051808201909152601981527811985a5b1959081d1bc818dbdb1b1958dd081c185e5b595b9d603a1b602082015233916001600160a01b0316908590614467565b600061074c826149c0565b60006143a78260026146a0565b60011492915050565b600081848411156143d45760405162461bcd60e51b815260040161078691906153d3565b505050900390565b60006001600160a01b03821663fc56365860075b6040518263ffffffff1660e01b815260040161440c91906153ca565b60206040518083038186803b15801561442457600080fd5b505afa158015614438573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074c91906150c0565b600061074c826149c4565b6001600160a01b03831661448d5760405162461bcd60e51b8152600401610786906155a5565b6040516323b872dd60e01b81526000906001600160a01b038716906323b872dd906144c090889088908890600401615292565b602060405180830381600087803b1580156144da57600080fd5b505af11580156144ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145129190614f8b565b905081816145335760405162461bcd60e51b815260040161078691906153d3565b50505050505050565b6000610749836001600160a01b0384166149dc565b6001600160a01b0383166145775760405162461bcd60e51b8152600401610786906155a5565b60405163a9059cbb60e01b81526000906001600160a01b0386169063a9059cbb906145a8908790879060040161520f565b602060405180830381600087803b1580156145c257600080fd5b505af11580156145d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145fa9190614f8b565b9050818161461b5760405162461bcd60e51b815260040161078691906153d3565b505050505050565b6000610749836001600160a01b038416614a26565b60008183106146475781610749565b5090919050565b60006001600160a01b03821663b93f9b0a600c6130d4565b6000826146755750600061074c565b8282028284828161468257fe5b04146107495760405162461bcd60e51b815260040161078690615a41565b6000610749838360405180604001604052806018815260200177536166654d6174683a206d6f64756c6f206279207a65726f60401b815250614aec565b600061074983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614b20565b815460009082106147425760405162461bcd60e51b815260040161078690615426565b82600001828154811061475157fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b6101c5546000906147dc90614799906001600160a01b031661300c565b85306147a58688613c7f565b6040518060400160405280601981526020017811985a5b1959081d1bc818dbdb1b1958dd081c185e5b595b9d603a1b815250614467565b6101c554600090614801906147f9906001600160a01b0316614b57565b6064906146dd565b905061480b614cf6565b6101c9546101c3546101c6546040516385bd324d60e01b8152739bce1f08012dd6e72756cd015e50068f90963d22936385bd324d93614865936101cb938c938c938b9391926001600160a01b039091169190600401615342565b60a06040518083038186803b15801561487d57600080fd5b505af4158015614891573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906148b59190615013565b805160208201516101c9546101c35460405163060f0a6d60e31b815294955061497194739bce1f08012dd6e72756cd015e50068f90963d2294633078536894614916946101cb94929391928b926001600160a01b0390911690600401615311565b60206040518083038186803b15801561492e57600080fd5b505af4158015614942573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061496691906150c0565b604083015190613c7f565b925061497c83614b6f565b50509392505050565b600061074c82613ca4565b60006001600160a01b03821663b93f9b0a60136130d4565b60006001600160a01b03821663b93f9b0a600e6130d4565b5490565b60006001600160a01b03821663b93f9b0a60026130d4565b60006149e88383614764565b614a1e5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561074c565b50600061074c565b60008181526001830160205260408120548015614ae25783546000198083019190810190600090879083908110614a5957fe5b9060005260206000200154905080876000018481548110614a7657fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080614aa657fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061074c565b600091505061074c565b60008183614b0d5760405162461bcd60e51b815260040161078691906153d3565b50828481614b1757fe5b06949350505050565b60008183614b415760405162461bcd60e51b815260040161078691906153d3565b506000838581614b4d57fe5b0495945050505050565b60006001600160a01b03821663fc56365860036143f0565b306001600160a01b03167ff3583f178a8d4f8888c3683f8e948faf9b6eb701c4f1fab265a6ecad1a1ddebb82604051614ba891906153ca565b60405180910390a26101c554610d6c90614bca906001600160a01b031661300c565b6101c5543090614be2906001600160a01b03166130c0565b84604051806040016040528060198152602001784661696c656420746f2073656e6420746f207265736572766560381b815250614467565b6040518060a0016040528060006001600160a01b03168152602001600081526020016000815260200160008152602001600081525090565b60405180602001604052806001906020820280368337509192915050565b828054828255906000526020600020908101928215614cab579160200282015b82811115614cab578251825591602001919060010190614c90565b50614cb7929150614d3f565b5090565b828054828255906000526020600020908101928215614cab579160200282015b82811115614cab578235825591602001919060010190614cdb565b6040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b604051806040016040528060008152602001600081525090565b5b80821115614cb75760008155600101614d40565b60008083601f840112614d65578182fd5b50813567ffffffffffffffff811115614d7c578182fd5b6020830191508360208083028501011115613a4557600080fd5b600060208284031215614da7578081fd5b813561074981615ecd565b600060208284031215614dc3578081fd5b815161074981615ecd565b6000806000806000806000806000806000806101608d8f031215614df0578788fd5b614dfa8d35615ecd565b8c359b50614e0b60208e0135615ecd565b60208d01359a5060408d0135995060608d0135985060808d0135975060a08d0135965060c08d0135955060e08d013594506101008d013593506101208d0135925067ffffffffffffffff6101408e01351115614e65578081fd5b614e768e6101408f01358f01614d54565b81935080925050509295989b509295989b509295989b565b600080600080600080600060e0888a031215614ea8578283fd5b8735614eb381615ecd565b9960208901359950604089013598606081013598506080810135975060a0810135965060c00135945092505050565b60008060208385031215614ef4578182fd5b823567ffffffffffffffff811115614f0a578283fd5b614f1685828601614d54565b90969095509350505050565b60008060008060408587031215614f37578384fd5b843567ffffffffffffffff80821115614f4e578586fd5b614f5a88838901614d54565b90965094506020870135915080821115614f72578384fd5b50614f7f87828801614d54565b95989497509550505050565b600060208284031215614f9c578081fd5b81518015158114610749578182fd5b600060208284031215614fbc578081fd5b5035919050565b60008060408385031215614fd5578182fd5b823591506020830135614fe781615ecd565b809150509250929050565b60008060408385031215615004578182fd5b50508035926020909101359150565b600060a08284031215615024578081fd5b61502e60a0615ea6565b82518152602083015160208201526040830151604082015260608301516060820152608083015160808201528091505092915050565b600060a08284031215615075578081fd5b61507f60a0615ea6565b825161508a81615ecd565b80825250602083015160208201526040830151604082015260608301516060820152608083015160808201528091505092915050565b6000602082840312156150d1578081fd5b5051919050565b6000806000606084860312156150ec578081fd5b8351925060208401519150604084015190509250925092565b60008060008060008060c0878903121561511d578384fd5b863595506020870135945060408701359350606087013560ff81168114615142578283fd5b9598949750929560808101359460a0909101359350915050565b80518252602081015160208301526040810151604083015260608101516060830152608081015160808301525050565b8054825260018101546020830152600281015460408301526003810154606083015260040154608090910152565b6001600160a01b0391909116815260200190565b6001600160a01b0397881681529590961660208601526040850193909352606084019190915260ff16608083015260a082015260c081019190915260e00190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b03998a16815297891660208901529590971660408701526060860193909352608085019190915260a084015260c083015260e08201929092526101008101919091526101200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b0383168152604060208083018290528354918301829052600084815281812090929091906060850190845b81811015615304578454835260019485019492840192016152e8565b5090979650505050505050565b95865260208601949094526040850192909252606084015260808301526001600160a01b031660a082015260c00190565b96875260208701959095526040860193909352606085019190915260808401526001600160a01b031660a083015260c082015260e00190565b6020808252825182820181905260009190848201906040850190845b818110156153b357835183529284019291840191600101615397565b50909695505050505050565b901515815260200190565b90815260200190565b6000602080835283518082850152825b818110156153ff578581018301518582016040015282016153e3565b818111156154105783604083870101525b50601f01601f1916929092016040019392505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252601690820152754661696c656420746f20617070726f7665205553444360501b604082015260600190565b60208082526016908201527543616e6e6f7420657863656564203520736c6963657360501b604082015260600190565b6020808252600f908201526e5265712053454e494f525f524f4c4560881b604082015260600190565b6020808252601b908201527f496e73756666696369656e742066756e647320696e20736c6963650000000000604082015260600190565b6020808252601a908201527f43616e27742073656e6420746f207a65726f2061646472657373000000000000604082015260600190565b6020808252600d908201526c13dddb995c881a5b9d985b1a59609a1b604082015260600190565b6020808252602c908201527f4d75737420686176652070617573657220726f6c6520746f20706572666f726d60408201526b103a3434b99030b1ba34b7b760a11b606082015260800190565b6020808252601a908201527f4372656469746c696e652063616e6e6f7420626520656d707479000000000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601d908201527f4265796f6e64207072696e636970616c20677261636520706572696f64000000604082015260600190565b6020808252600e908201526d151c985b98da19481b1bd8dad95960921b604082015260600190565b6020808252601a908201527f43757272656e7420736c696365207374696c6c20616374697665000000000000604082015260600190565b6020808252601d908201527f4a756e696f72207472616e636865206d757374206265206c6f636b6564000000604082015260600190565b602080825260139082015272556e737570706f72746564207472616e63686560681b604082015260600190565b6020808252601e908201527f546f6b656e7349647320616e6420416d6f756e7473206d69736d617463680000604082015260600190565b6020808252601a908201527f426f72726f776572206d757374206e6f7420626520656d707479000000000000604082015260600190565b602080825260139082015272141bdbdb08185b1c9958591e481b1bd8dad959606a1b604082015260600190565b60208082526030908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526f2061646d696e20746f207265766f6b6560801b606082015260800190565b602080825260119082015270151c985b98da19481a5cc81b1bd8dad959607a1b604082015260600190565b6020808252601390820152724d757374206465706f736974203e207a65726f60681b604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526016908201527514185e5b595b9d081c195c9a5bd9081a5b9d985b1a5960521b604082015260600190565b6020808252601290820152714372656469746c696e65206973206c61746560701b604082015260600190565b6020808252818101527f4f776e65722063616e6e6f7420626520746865207a65726f2061646472657373604082015260600190565b602080825260149082015273111c985dd91bdddb9cc8185c99481c185d5cd95960621b604082015260600190565b6020808252601590820152741059191c995cdcc81b9bdd0819dbcb5b1a5cdd1959605a1b604082015260600190565b6020808252601590820152744d7573742068617665206c6f636b657220726f6c6560581b604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602e908201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560408201526d195b881a5b9a5d1a585b1a5e995960921b606082015260800190565b602080825260179082015276131bd8dac818d85b9b9bdd08189948195e1d195b991959604a1b604082015260600190565b602080825260159082015274125b9d985b1a59081c995919595b48185b5bdd5b9d605a1b604082015260600190565b6020808252601490820152734e6f74206f70656e20666f722066756e64696e6760601b604082015260600190565b6020808252601c908201527f4d757374207769746864726177206d6f7265207468616e207a65726f00000000604082015260600190565b6020808252600f908201526e2737ba103a37b5b2b71037bbb732b960891b604082015260600190565b6020808252601690820152755465726d206d757374206e6f7420626520656d70747960501b604082015260600190565b6020808252601790820152764d75737420706179206d6f7265207468616e207a65726f60481b604082015260600190565b60208082526017908201527610dbdb999a59cbd89bdc9c9bddd95c881a5b9d985b1a59604a1b604082015260600190565b6020808252601590820152744d757374206e6f7420686176652062616c616e636560581b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b602080825260129082015271141bdbdb081a5cc81b9bdd081b1bd8dad95960721b604082015260600190565b6020808252602b908201527f4d75737420686176652061646d696e20726f6c6520746f20706572666f726d2060408201526a3a3434b99030b1ba34b7b760a91b606082015260800190565b6020808252601d908201527f4a756e696f72207472616e63686520616c7265616479206c6f636b6564000000604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b82518152602092830151928101929092526001600160a01b0316604082015260600190565b60a0810161074c828461515c565b6101808101615df5828761515c565b615e0260a083018661515c565b610140820193909352610160015292915050565b6102408101615e25828661515c565b8360a0830152615e3860c083018461518c565b615e4961016083016005850161518c565b600a830154610200830152600b830154610220830152949350505050565b93845260208401929092526040830152606082015260800190565b918252602082015260400190565b9283526020830191909152604082015260600190565b60405181810167ffffffffffffffff81118282101715615ec557600080fd5b604052919050565b6001600160a01b0381168114610d6c57600080fdfeb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214ef839b119f21fb055e13aebac51bca6b308f52ec2d8db8306ce4d092d964e5bd065d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a956624bfbe09c0e98e645d61eba0de4ce88e8cceabdb00fead208d19a8e1209baf9a8bb3cbd6b84fbccefa71ff73e26e798553c6914585a84886212a46a90279a26469706673582212202d7eee4678e05d213d9d7a77505aa11a5607e55ff86b75774792e6c95add683564736f6c634300060c0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.