ETH Price: $3,254.43 (+2.49%)
Gas: 2 Gwei

Contract

0xfFadB0bbA4379dFAbFB20CA6823F6EC439429ec2
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
_delist Market197762772024-05-01 15:48:4785 days ago1714578527IN
0xfFadB0bb...439429ec2
0 ETH0.000372258.6198931
_set Mint Paused197762762024-05-01 15:48:3585 days ago1714578515IN
0xfFadB0bb...439429ec2
0 ETH0.000471728.88854197
_set Flashloan P...197762752024-05-01 15:48:2385 days ago1714578503IN
0xfFadB0bb...439429ec2
0 ETH0.000276588.33849226
_set Collateral ...197762742024-05-01 15:48:1185 days ago1714578491IN
0xfFadB0bb...439429ec2
0 ETH0.000270628.86479607
_set Borrow Paus...197762732024-05-01 15:47:5985 days ago1714578479IN
0xfFadB0bb...439429ec2
0 ETH0.000290958.78264657
_delist Market197762722024-05-01 15:47:4785 days ago1714578467IN
0xfFadB0bb...439429ec2
0 ETH0.000429129.15527286
_set Mint Paused197762712024-05-01 15:47:3585 days ago1714578455IN
0xfFadB0bb...439429ec2
0 ETH0.0004879.17648545
_set Flashloan P...197762702024-05-01 15:47:2385 days ago1714578443IN
0xfFadB0bb...439429ec2
0 ETH0.000293738.85557984
_set Collateral ...197762692024-05-01 15:47:1185 days ago1714578431IN
0xfFadB0bb...439429ec2
0 ETH0.000276379.05304771
_set Borrow Paus...197762682024-05-01 15:46:5985 days ago1714578419IN
0xfFadB0bb...439429ec2
0 ETH0.000311079.39004417
_delist Market197762672024-05-01 15:46:4785 days ago1714578407IN
0xfFadB0bb...439429ec2
0 ETH0.000441888.9517952
_set Mint Paused197762662024-05-01 15:46:3585 days ago1714578395IN
0xfFadB0bb...439429ec2
0 ETH0.000422537.96176737
_set Flashloan P...197762652024-05-01 15:46:2385 days ago1714578383IN
0xfFadB0bb...439429ec2
0 ETH0.000278328.39071769
_set Collateral ...197762642024-05-01 15:46:1185 days ago1714578371IN
0xfFadB0bb...439429ec2
0 ETH0.000226117.92614473
_set Borrow Paus...197762622024-05-01 15:45:4785 days ago1714578347IN
0xfFadB0bb...439429ec2
0 ETH0.000288368.70467733
_delist Market197762612024-05-01 15:45:3585 days ago1714578335IN
0xfFadB0bb...439429ec2
0 ETH0.000465998.98660906
_set Mint Paused197762602024-05-01 15:45:2385 days ago1714578323IN
0xfFadB0bb...439429ec2
0 ETH0.000481749.0773803
_set Flashloan P...197762592024-05-01 15:45:1185 days ago1714578311IN
0xfFadB0bb...439429ec2
0 ETH0.000282768.52479356
_set Collateral ...197762582024-05-01 15:44:5985 days ago1714578299IN
0xfFadB0bb...439429ec2
0 ETH0.000245798.61586053
_set Borrow Paus...197762572024-05-01 15:44:4785 days ago1714578287IN
0xfFadB0bb...439429ec2
0 ETH0.000288138.69775555
_delist Market197762562024-05-01 15:44:3585 days ago1714578275IN
0xfFadB0bb...439429ec2
0 ETH0.000466758.58880209
_set Mint Paused197762552024-05-01 15:44:2385 days ago1714578263IN
0xfFadB0bb...439429ec2
0 ETH0.000474238.93577441
_set Flashloan P...197762542024-05-01 15:44:1185 days ago1714578251IN
0xfFadB0bb...439429ec2
0 ETH0.000287278.66060048
_set Collateral ...197762532024-05-01 15:43:5985 days ago1714578239IN
0xfFadB0bb...439429ec2
0 ETH0.000254498.92086538
_set Borrow Paus...197762522024-05-01 15:43:4785 days ago1714578227IN
0xfFadB0bb...439429ec2
0 ETH0.000303949.17481798
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Comptroller

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion
File 1 of 15 : Comptroller.sol
pragma solidity 0.5.16;

import "./BToken.sol";
import "./ErrorReporter.sol";
import "./Exponential.sol";
import "./PriceOracle/PriceOracle.sol";
import "./ComptrollerInterface.sol";
import "./ComptrollerStorage.sol";
import "./LiquidityMiningInterface.sol";
import "./Unitroller.sol";

/**
 * @title Blueberry's Comptroller Contract
 * @author Compound (modified by Blueberry)
 */
contract Comptroller is
    ComptrollerV1Storage,
    ComptrollerInterface,
    ComptrollerErrorReporter,
    Exponential
{
    /// @notice Emitted when an admin supports a market
    event MarketListed(BToken bToken);

    /// @notice Emitted when an admin delists a market
    event MarketDelisted(BToken bToken, bool force);

    /// @notice Emitted when an account enters a market
    event MarketEntered(BToken bToken, address account);

    /// @notice Emitted when an account exits a market
    event MarketExited(BToken bToken, address account);

    /// @notice Emitted when close factor is changed by admin
    event NewCloseFactor(
        uint256 oldCloseFactorMantissa,
        uint256 newCloseFactorMantissa
    );

    /// @notice Emitted when a collateral factor is changed by admin
    event NewCollateralFactor(
        BToken bToken,
        uint256 oldCollateralFactorMantissa,
        uint256 newCollateralFactorMantissa
    );

    /// @notice Emitted when liquidation incentive is changed by admin
    event NewLiquidationIncentive(
        uint256 oldLiquidationIncentiveMantissa,
        uint256 newLiquidationIncentiveMantissa
    );

    /// @notice Emitted when price oracle is changed
    event NewPriceOracle(
        PriceOracle oldPriceOracle,
        PriceOracle newPriceOracle
    );

    /// @notice Emitted when guardian is changed
    event NewGuardian(address oldGuardian, address newGuardian);

    /// @notice Emitted when liquidity mining module is changed
    event NewLiquidityMining(
        address oldLiquidityMining,
        address newLiquidityMining
    );

    /// @notice Emitted when an action is paused globally
    event ActionPaused(string action, bool pauseState);

    /// @notice Emitted when an action is paused on a market
    event ActionPaused(BToken bToken, string action, bool pauseState);

    /// @notice Emitted when borrow cap for a bToken is changed
    event NewBorrowCap(BToken indexed bToken, uint256 newBorrowCap);

    /// @notice Emitted when supply cap for a bToken is changed
    event NewSupplyCap(BToken indexed bToken, uint256 newSupplyCap);

    /// @notice Emitted when protocol's credit limit has changed
    event CreditLimitChanged(
        address protocol,
        address market,
        uint256 creditLimit
    );

    /// @notice Emitted when bToken version is changed
    event NewBTokenVersion(
        BToken bToken,
        Version oldVersion,
        Version newVersion
    );

    /// @notice Emitted when credit limit manager is changed
    event NewCreditLimitManager(
        address oldCreditLimitManager,
        address newCreditLimitManager
    );

    // No collateralFactorMantissa may exceed this value
    uint256 internal constant collateralFactorMaxMantissa = 0.9e18; // 0.9

    constructor() public {
        admin = msg.sender;
    }

    /*** Assets You Are In ***/

    /**
     * @notice Returns the assets an account has entered
     * @param account The address of the account to pull assets for
     * @return A dynamic list with the assets the account has entered
     */
    function getAssetsIn(
        address account
    ) external view returns (BToken[] memory) {
        BToken[] memory assetsIn = accountAssets[account];

        return assetsIn;
    }

    /**
     * @notice Returns whether the given account is entered in the given asset
     * @param account The address of the account to check
     * @param bToken The bToken to check
     * @return True if the account is in the asset, otherwise false.
     */
    function checkMembership(
        address account,
        BToken bToken
    ) external view returns (bool) {
        return markets[address(bToken)].accountMembership[account];
    }

    /**
     * @notice Add assets to be included in account liquidity calculation
     * @param bTokens The list of addresses of the bToken markets to be enabled
     * @return Success indicator for whether each corresponding market was entered
     */
    function enterMarkets(
        address[] memory bTokens
    ) public returns (uint256[] memory) {
        uint256 len = bTokens.length;

        uint256[] memory results = new uint256[](len);
        for (uint256 i = 0; i < len; ++i) {
            BToken bToken = BToken(bTokens[i]);

            results[i] = uint256(addToMarketInternal(bToken, msg.sender));
        }

        return results;
    }

    /**
     * @notice Add the market to the borrower's "assets in" for liquidity calculations
     * @param bToken The market to enter
     * @param borrower The address of the account to modify
     * @return Success indicator for whether the market was entered
     */
    function addToMarketInternal(
        BToken bToken,
        address borrower
    ) internal returns (Error) {
        Market storage marketToJoin = markets[address(bToken)];

        require(marketToJoin.isListed, "market not listed");

        if (marketToJoin.version == Version.COLLATERALCAP) {
            // register collateral for the borrower if the token is CollateralCap version.
            BCollateralCapErc20Interface(address(bToken)).registerCollateral(
                borrower
            );
        }

        if (marketToJoin.accountMembership[borrower] == true) {
            // already joined
            return Error.NO_ERROR;
        }

        // survived the gauntlet, add to list
        // NOTE: we store these somewhat redundantly as a significant optimization
        //  this avoids having to iterate through the list for the most common use cases
        //  that is, only when we need to perform liquidity checks
        //  and not whenever we want to check if an account is in a particular market
        marketToJoin.accountMembership[borrower] = true;
        accountAssets[borrower].push(bToken);

        emit MarketEntered(bToken, borrower);

        return Error.NO_ERROR;
    }

    /**
     * @notice Removes asset from sender's account liquidity calculation
     * @dev Sender must not have an outstanding borrow balance in the asset,
     *  or be providing necessary collateral for an outstanding borrow.
     * @param bTokenAddress The address of the asset to be removed
     * @return Whether or not the account successfully exited the market
     */
    function exitMarket(address bTokenAddress) external returns (uint256) {
        BToken bToken = BToken(bTokenAddress);
        /* Get sender tokensHeld and amountOwed underlying from the bToken */
        (uint256 oErr, uint256 tokensHeld, uint256 amountOwed, ) = bToken
            .getAccountSnapshot(msg.sender);
        require(oErr == 0, "exitMarket: getAccountSnapshot failed"); // semi-opaque error code

        /* Fail if the sender has a borrow balance */
        require(amountOwed == 0, "nonzero borrow balance");

        /* Fail if the sender is not permitted to redeem all of their tokens */
        require(
            redeemAllowedInternal(bTokenAddress, msg.sender, tokensHeld) == 0,
            "failed to exit market"
        );

        Market storage marketToExit = markets[bTokenAddress];

        if (marketToExit.version == Version.COLLATERALCAP) {
            BCollateralCapErc20Interface(bTokenAddress).unregisterCollateral(
                msg.sender
            );
        }

        /* Return true if the sender is not already ‘in’ the market */
        if (!marketToExit.accountMembership[msg.sender]) {
            return uint256(Error.NO_ERROR);
        }

        /* Set bToken account membership to false */
        delete marketToExit.accountMembership[msg.sender];

        /* Delete bToken from the account’s list of assets */
        // load into memory for faster iteration
        BToken[] memory userAssetList = accountAssets[msg.sender];
        uint256 len = userAssetList.length;
        uint256 assetIndex = len;
        for (uint256 i = 0; i < len; ++i) {
            if (userAssetList[i] == bToken) {
                assetIndex = i;
                break;
            }
        }

        // We *must* have found the asset in the list or our redundant data structure is broken
        assert(assetIndex < len);

        // copy last item in list to location of item to be removed, reduce length by 1
        BToken[] storage storedList = accountAssets[msg.sender];
        if (assetIndex != storedList.length - 1) {
            storedList[assetIndex] = storedList[storedList.length - 1];
        }
        storedList.length--;

        emit MarketExited(bToken, msg.sender);

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Return a specific market is listed or not
     * @param bTokenAddress The address of the asset to be checked
     * @return Whether or not the market is listed
     */
    function isMarketListed(address bTokenAddress) public view returns (bool) {
        return markets[bTokenAddress].isListed;
    }

    /**
     * @notice Return a specific market is listed or delisted
     * @param bTokenAddress The address of the asset to be checked
     * @return Whether or not the market is listed or delisted
     */
    function isMarketListedOrDelisted(
        address bTokenAddress
    ) public view returns (bool) {
        return
            markets[bTokenAddress].isListed || isMarketDelisted[bTokenAddress];
    }

    /**
     * @notice Return the credit limit of a specific protocol
     * @dev This function shouldn't be called. It exists only for backward compatibility.
     * @param protocol The address of the protocol
     * @return The credit
     */
    function creditLimits(address protocol) public view returns (uint256) {
        protocol; // Shh
        return 0;
    }

    /**
     * @notice Return the credit limit of a specific protocol for a specific market
     * @param protocol The address of the protocol
     * @param market The market
     * @return The credit
     */
    function creditLimits(
        address protocol,
        address market
    ) public view returns (uint256) {
        return _creditLimits[protocol][market];
    }

    /*** Policy Hooks ***/

    /**
     * @notice Checks if the account should be allowed to mint tokens in the given market
     * @param bToken The market to verify the mint against
     * @param minter The account which would get the minted tokens
     * @param mintAmount The amount of underlying being supplied to the market in exchange for tokens
     * @return 0 if the mint is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol)
     */
    function mintAllowed(
        address bToken,
        address minter,
        uint256 mintAmount
    ) external returns (uint256) {
        // Pausing is a very serious situation - we revert to sound the alarms
        require(!mintGuardianPaused[bToken], "mint is paused");
        require(!isCreditAccount(minter, bToken), "credit account cannot mint");

        require(isMarketListed(bToken), "market not listed");

        uint256 supplyCap = supplyCaps[bToken];
        // Supply cap of 0 corresponds to unlimited supplying
        if (supplyCap != 0) {
            uint256 totalCash = BToken(bToken).getCash();
            uint256 totalBorrows = BToken(bToken).totalBorrows();
            uint256 totalReserves = BToken(bToken).totalReserves();
            // totalSupplies = totalCash + totalBorrows - totalReserves
            (MathError mathErr, uint256 totalSupplies) = addThenSubUInt(
                totalCash,
                totalBorrows,
                totalReserves
            );
            require(mathErr == MathError.NO_ERROR, "totalSupplies failed");

            uint256 nextTotalSupplies = add_(totalSupplies, mintAmount);
            require(nextTotalSupplies < supplyCap, "market supply cap reached");
        }

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Validates mint and reverts on rejection. May emit logs.
     * @param bToken Asset being minted
     * @param minter The address minting the tokens
     * @param actualMintAmount The amount of the underlying asset being minted
     * @param mintTokens The number of tokens being minted
     */
    function mintVerify(
        address bToken,
        address minter,
        uint256 actualMintAmount,
        uint256 mintTokens
    ) external {
        // Shh - currently unused
        bToken;
        minter;
        actualMintAmount;
        mintTokens;

        // Shh - we don't ever want this hook to be marked pure
        if (false) {
            closeFactorMantissa = closeFactorMantissa;
        }
    }

    /**
     * @notice Checks if the account should be allowed to redeem tokens in the given market
     * @param bToken The market to verify the redeem against
     * @param redeemer The account which would redeem the tokens
     * @param redeemTokens The number of bTokens to exchange for the underlying asset in the market
     * @return 0 if the redeem is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol)
     */
    function redeemAllowed(
        address bToken,
        address redeemer,
        uint256 redeemTokens
    ) external returns (uint256) {
        return redeemAllowedInternal(bToken, redeemer, redeemTokens);
    }

    function redeemAllowedInternal(
        address bToken,
        address redeemer,
        uint256 redeemTokens
    ) internal view returns (uint256) {
        require(isMarketListedOrDelisted(bToken), "market not listed");
        require(
            !isCreditAccount(redeemer, bToken),
            "credit account cannot redeem"
        );

        /* If the redeemer is not 'in' the market, then we can bypass the liquidity check */
        if (!markets[bToken].accountMembership[redeemer]) {
            return uint256(Error.NO_ERROR);
        }

        /* Otherwise, perform a hypothetical liquidity check to guard against shortfall */
        (
            Error err,
            ,
            uint256 shortfall
        ) = getHypotheticalAccountLiquidityInternal(
                redeemer,
                BToken(bToken),
                redeemTokens,
                0
            );
        require(err == Error.NO_ERROR, "failed to get account liquidity");
        require(shortfall == 0, "insufficient liquidity");

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Validates redeem and reverts on rejection. May emit logs.
     * @param bToken Asset being redeemed
     * @param redeemer The address redeeming the tokens
     * @param redeemAmount The amount of the underlying asset being redeemed
     * @param redeemTokens The number of tokens being redeemed
     */
    function redeemVerify(
        address bToken,
        address redeemer,
        uint256 redeemAmount,
        uint256 redeemTokens
    ) external {
        // Shh - currently unused
        bToken;
        redeemer;

        // Require tokens is zero or amount is also zero
        if (redeemTokens == 0 && redeemAmount > 0) {
            revert("redeemTokens zero");
        }
    }

    /**
     * @notice Checks if the account should be allowed to borrow the underlying asset of the given market
     * @param bToken The market to verify the borrow against
     * @param borrower The account which would borrow the asset
     * @param borrowAmount The amount of underlying the account would borrow
     * @return 0 if the borrow is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol)
     */
    function borrowAllowed(
        address bToken,
        address borrower,
        uint256 borrowAmount
    ) external returns (uint256) {
        // Pausing is a very serious situation - we revert to sound the alarms
        require(!borrowGuardianPaused[bToken], "borrow is paused");

        require(isMarketListed(bToken), "market not listed");

        if (!markets[bToken].accountMembership[borrower]) {
            // only bTokens may call borrowAllowed if borrower not in market
            require(msg.sender == bToken, "sender must be bToken");

            // attempt to add borrower to the market
            require(
                addToMarketInternal(BToken(bToken), borrower) == Error.NO_ERROR,
                "failed to add market"
            );

            // it should be impossible to break the important invariant
            assert(markets[bToken].accountMembership[borrower]);
        }

        require(oracle.getUnderlyingPrice(BToken(bToken)) != 0, "price error");

        uint256 borrowCap = borrowCaps[bToken];
        // Borrow cap of 0 corresponds to unlimited borrowing
        if (borrowCap != 0) {
            uint256 totalBorrows = BToken(bToken).totalBorrows();
            uint256 nextTotalBorrows = add_(totalBorrows, borrowAmount);
            require(nextTotalBorrows < borrowCap, "market borrow cap reached");
        }
        uint256 creditLimit = _creditLimits[borrower][bToken];
        // If the borrower is a credit account, check the credit limit instead of account liquidity.
        if (creditLimit > 0) {
            (uint256 oErr, , uint256 borrowBalance, ) = BToken(bToken)
                .getAccountSnapshot(borrower);
            require(oErr == 0, "snapshot error");
            require(
                creditLimit >= add_(borrowBalance, borrowAmount),
                "insufficient credit limit"
            );
        } else {
            (
                Error err,
                ,
                uint256 shortfall
            ) = getHypotheticalAccountLiquidityInternal(
                    borrower,
                    BToken(bToken),
                    0,
                    borrowAmount
                );
            require(err == Error.NO_ERROR, "failed to get account liquidity");
            require(shortfall == 0, "insufficient liquidity");
        }
        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Validates borrow and reverts on rejection. May emit logs.
     * @param bToken Asset whose underlying is being borrowed
     * @param borrower The address borrowing the underlying
     * @param borrowAmount The amount of the underlying asset requested to borrow
     */
    function borrowVerify(
        address bToken,
        address borrower,
        uint256 borrowAmount
    ) external {
        // Shh - currently unused
        bToken;
        borrower;
        borrowAmount;

        // Shh - we don't ever want this hook to be marked pure
        if (false) {
            closeFactorMantissa = closeFactorMantissa;
        }
    }

    /**
     * @notice Checks if the account should be allowed to repay a borrow in the given market
     * @param bToken The market to verify the repay against
     * @param payer The account which would repay the asset
     * @param borrower The account which would borrowed the asset
     * @param repayAmount The amount of the underlying asset the account would repay
     * @return 0 if the repay is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol)
     */
    function repayBorrowAllowed(
        address bToken,
        address payer,
        address borrower,
        uint256 repayAmount
    ) external returns (uint256) {
        // Shh - currently unused
        repayAmount;

        require(isMarketListedOrDelisted(bToken), "market not listed");

        if (isCreditAccount(borrower, bToken)) {
            require(
                borrower == payer,
                "cannot repay on behalf of credit account"
            );
        }

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Validates repayBorrow and reverts on rejection. May emit logs.
     * @param bToken Asset being repaid
     * @param payer The address repaying the borrow
     * @param borrower The address of the borrower
     * @param actualRepayAmount The amount of underlying being repaid
     */
    function repayBorrowVerify(
        address bToken,
        address payer,
        address borrower,
        uint256 actualRepayAmount,
        uint256 borrowerIndex
    ) external {
        // Shh - currently unused
        bToken;
        payer;
        borrower;
        actualRepayAmount;
        borrowerIndex;

        // Shh - we don't ever want this hook to be marked pure
        if (false) {
            closeFactorMantissa = closeFactorMantissa;
        }
    }

    /**
     * @notice Checks if the liquidation should be allowed to occur
     * @param bTokenBorrowed Asset which was borrowed by the borrower
     * @param bTokenCollateral Asset which was used as collateral and will be seized
     * @param liquidator The address repaying the borrow and seizing the collateral
     * @param borrower The address of the borrower
     * @param repayAmount The amount of underlying being repaid
     */
    function liquidateBorrowAllowed(
        address bTokenBorrowed,
        address bTokenCollateral,
        address liquidator,
        address borrower,
        uint256 repayAmount
    ) external returns (uint256) {
        require(
            !isCreditAccount(borrower, bTokenBorrowed),
            "cannot liquidate credit account"
        );

        // Shh - currently unused
        liquidator;

        require(
            isMarketListedOrDelisted(bTokenBorrowed) &&
                isMarketListedOrDelisted(bTokenCollateral),
            "market not listed"
        );

        /* The borrower must have shortfall in order to be liquidatable */
        (Error err, , uint256 shortfall) = getAccountLiquidityInternal(
            borrower
        );
        require(err == Error.NO_ERROR, "failed to get account liquidity");
        require(shortfall > 0, "insufficient shortfall");

        /* The liquidator may not repay more than what is allowed by the closeFactor */
        uint256 borrowBalance = BToken(bTokenBorrowed).borrowBalanceStored(
            borrower
        );
        uint256 maxClose = mul_ScalarTruncate(
            Exp({mantissa: closeFactorMantissa}),
            borrowBalance
        );
        if (repayAmount > maxClose) {
            return uint256(Error.TOO_MUCH_REPAY);
        }

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Validates liquidateBorrow and reverts on rejection. May emit logs.
     * @param bTokenBorrowed Asset which was borrowed by the borrower
     * @param bTokenCollateral Asset which was used as collateral and will be seized
     * @param liquidator The address repaying the borrow and seizing the collateral
     * @param borrower The address of the borrower
     * @param actualRepayAmount The amount of underlying being repaid
     */
    function liquidateBorrowVerify(
        address bTokenBorrowed,
        address bTokenCollateral,
        address liquidator,
        address borrower,
        uint256 actualRepayAmount,
        uint256 seizeTokens
    ) external {
        // Shh - currently unused
        bTokenBorrowed;
        bTokenCollateral;
        liquidator;
        borrower;
        actualRepayAmount;
        seizeTokens;

        // Shh - we don't ever want this hook to be marked pure
        if (false) {
            closeFactorMantissa = closeFactorMantissa;
        }
    }

    /**
     * @notice Checks if the seizing of assets should be allowed to occur
     * @param bTokenCollateral Asset which was used as collateral and will be seized
     * @param bTokenBorrowed Asset which was borrowed by the borrower
     * @param liquidator The address repaying the borrow and seizing the collateral
     * @param borrower The address of the borrower
     * @param seizeTokens The number of collateral tokens to seize
     */
    function seizeAllowed(
        address bTokenCollateral,
        address bTokenBorrowed,
        address liquidator,
        address borrower,
        uint256 seizeTokens
    ) external returns (uint256) {
        // Pausing is a very serious situation - we revert to sound the alarms
        require(!seizeGuardianPaused, "seize is paused");
        require(
            !isCreditAccount(borrower, bTokenBorrowed),
            "cannot seize from credit account"
        );

        // Shh - currently unused
        liquidator;
        seizeTokens;

        require(
            isMarketListedOrDelisted(bTokenBorrowed) &&
                isMarketListedOrDelisted(bTokenCollateral),
            "market not listed"
        );
        require(
            BToken(bTokenCollateral).comptroller() ==
                BToken(bTokenBorrowed).comptroller(),
            "comptroller mismatched"
        );

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Validates seize and reverts on rejection. May emit logs.
     * @param bTokenCollateral Asset which was used as collateral and will be seized
     * @param bTokenBorrowed Asset which was borrowed by the borrower
     * @param liquidator The address repaying the borrow and seizing the collateral
     * @param borrower The address of the borrower
     * @param seizeTokens The number of collateral tokens to seize
     */
    function seizeVerify(
        address bTokenCollateral,
        address bTokenBorrowed,
        address liquidator,
        address borrower,
        uint256 seizeTokens
    ) external {
        // Shh - currently unused
        bTokenCollateral;
        bTokenBorrowed;
        liquidator;
        borrower;
        seizeTokens;

        // Shh - we don't ever want this hook to be marked pure
        if (false) {
            closeFactorMantissa = closeFactorMantissa;
        }
    }

    /**
     * @notice Checks if the account should be allowed to transfer tokens in the given market
     * @param bToken The market to verify the transfer against
     * @param src The account which sources the tokens
     * @param dst The account which receives the tokens
     * @param transferTokens The number of bTokens to transfer
     * @return 0 if the transfer is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol)
     */
    function transferAllowed(
        address bToken,
        address src,
        address dst,
        uint256 transferTokens
    ) external returns (uint256) {
        // Pausing is a very serious situation - we revert to sound the alarms
        require(!transferGuardianPaused, "transfer is paused");
        require(
            !isCreditAccount(dst, bToken),
            "cannot transfer to a credit account"
        );

        // Currently the only consideration is whether or not
        //  the src is allowed to redeem this many tokens
        return redeemAllowedInternal(bToken, src, transferTokens);
    }

    /**
     * @notice Validates transfer and reverts on rejection. May emit logs.
     * @param bToken Asset being transferred
     * @param src The account which sources the tokens
     * @param dst The account which receives the tokens
     * @param transferTokens The number of bTokens to transfer
     */
    function transferVerify(
        address bToken,
        address src,
        address dst,
        uint256 transferTokens
    ) external {
        // Shh - currently unused
        bToken;
        src;
        dst;
        transferTokens;

        // Shh - we don't ever want this hook to be marked pure
        if (false) {
            closeFactorMantissa = closeFactorMantissa;
        }
    }

    /**
     * @notice Checks if the account should be allowed to transfer tokens in the given market
     * @param bToken The market to verify the transfer against
     * @param receiver The account which receives the tokens
     * @param amount The amount of the tokens
     * @param params The other parameters
     */

    function flashloanAllowed(
        address bToken,
        address receiver,
        uint256 amount,
        bytes calldata params
    ) external view returns (bool) {
        return !flashloanGuardianPaused[bToken];
    }

    /**
     * @notice Update BToken's version.
     * @param bToken Version of the asset being updated
     * @param newVersion The new version
     */
    function updateBTokenVersion(address bToken, Version newVersion) external {
        require(msg.sender == bToken, "bToken only");

        // This function will be called when a new BToken implementation becomes active.
        // If a new BToken is newly created, this market is not listed yet. The version of
        // this market will be taken care of when calling `_supportMarket`.
        if (isMarketListed(bToken)) {
            Version oldVersion = markets[bToken].version;
            markets[bToken].version = newVersion;

            emit NewBTokenVersion(BToken(bToken), oldVersion, newVersion);
        }
    }

    /**
     * @notice Check if the account is a credit account
     * @param account The account needs to be checked
     * @param bToken The market
     * @return The account is a credit account or not
     */
    function isCreditAccount(
        address account,
        address bToken
    ) public view returns (bool) {
        return _creditLimits[account][bToken] > 0;
    }

    /*** Liquidity/Liquidation Calculations ***/

    /**
     * @dev Local vars for avoiding stack-depth limits in calculating account liquidity.
     *  Note that `bTokenBalance` is the number of bTokens the account owns in the market,
     *  whereas `borrowBalance` is the amount of underlying that the account has borrowed.
     */
    struct AccountLiquidityLocalVars {
        uint256 sumCollateral;
        uint256 sumBorrowPlusEffects;
        uint256 bTokenBalance;
        uint256 borrowBalance;
        uint256 exchangeRateMantissa;
        uint256 oraclePriceMantissa;
        Exp collateralFactor;
        Exp exchangeRate;
        Exp oraclePrice;
        Exp tokensToDenom;
    }

    /**
     * @notice Determine the current account liquidity wrt collateral requirements
     * @return (possible error code (semi-opaque),
                account liquidity in excess of collateral requirements,
     *          account shortfall below collateral requirements)
     */
    function getAccountLiquidity(
        address account
    ) public view returns (uint256, uint256, uint256) {
        (
            Error err,
            uint256 liquidity,
            uint256 shortfall
        ) = getHypotheticalAccountLiquidityInternal(account, BToken(0), 0, 0);

        return (uint256(err), liquidity, shortfall);
    }

    /**
     * @notice Determine the current account liquidity wrt collateral requirements
     * @return (possible error code,
                account liquidity in excess of collateral requirements,
     *          account shortfall below collateral requirements)
     */
    function getAccountLiquidityInternal(
        address account
    ) internal view returns (Error, uint256, uint256) {
        return
            getHypotheticalAccountLiquidityInternal(account, BToken(0), 0, 0);
    }

    /**
     * @notice Determine what the account liquidity would be if the given amounts were redeemed/borrowed
     * @param bTokenModify The market to hypothetically redeem/borrow in
     * @param account The account to determine liquidity for
     * @param redeemTokens The number of tokens to hypothetically redeem
     * @param borrowAmount The amount of underlying to hypothetically borrow
     * @return (possible error code (semi-opaque),
                hypothetical account liquidity in excess of collateral requirements,
     *          hypothetical account shortfall below collateral requirements)
     */
    function getHypotheticalAccountLiquidity(
        address account,
        address bTokenModify,
        uint256 redeemTokens,
        uint256 borrowAmount
    ) public view returns (uint256, uint256, uint256) {
        (
            Error err,
            uint256 liquidity,
            uint256 shortfall
        ) = getHypotheticalAccountLiquidityInternal(
                account,
                BToken(bTokenModify),
                redeemTokens,
                borrowAmount
            );
        return (uint256(err), liquidity, shortfall);
    }

    /**
     * @notice Determine what the account liquidity would be if the given amounts were redeemed/borrowed
     * @param bTokenModify The market to hypothetically redeem/borrow in
     * @param account The account to determine liquidity for
     * @param redeemTokens The number of tokens to hypothetically redeem
     * @param borrowAmount The amount of underlying to hypothetically borrow
     * @dev Note that we calculate the exchangeRateStored for each collateral bToken using stored data,
     *  without calculating accumulated interest.
     * @return (possible error code,
                hypothetical account liquidity in excess of collateral requirements,
     *          hypothetical account shortfall below collateral requirements)
     */
    function getHypotheticalAccountLiquidityInternal(
        address account,
        BToken bTokenModify,
        uint256 redeemTokens,
        uint256 borrowAmount
    ) internal view returns (Error, uint256, uint256) {
        AccountLiquidityLocalVars memory vars; // Holds all our calculation results
        uint256 oErr;

        // For each asset the account is in
        BToken[] memory assets = accountAssets[account];
        for (uint256 i = 0; i < assets.length; ++i) {
            BToken asset = assets[i];

            // Skip the asset if it is not listed or soft delisted.
            if (!isMarketListedOrDelisted(address(asset))) {
                continue;
            }

            // Read the balances and exchange rate from the bToken
            (
                oErr,
                vars.bTokenBalance,
                vars.borrowBalance,
                vars.exchangeRateMantissa
            ) = asset.getAccountSnapshot(account);
            require(oErr == 0, "snapshot error");

            // Unlike compound protocol, getUnderlyingPrice is relatively expensive because we use ChainLink as our primary price feed.
            // If user has no supply / borrow balance on this asset, and user is not redeeming / borrowing this asset, skip it.
            if (
                vars.bTokenBalance == 0 &&
                vars.borrowBalance == 0 &&
                asset != bTokenModify
            ) {
                continue;
            }

            vars.collateralFactor = Exp({
                mantissa: markets[address(asset)].collateralFactorMantissa
            });
            vars.exchangeRate = Exp({mantissa: vars.exchangeRateMantissa});

            // Get the normalized price of the asset
            vars.oraclePriceMantissa = oracle.getUnderlyingPrice(asset);
            require(vars.oraclePriceMantissa > 0, "price error");
            vars.oraclePrice = Exp({mantissa: vars.oraclePriceMantissa});

            // Pre-compute a conversion factor from tokens -> ether (normalized price value)
            vars.tokensToDenom = mul_(
                mul_(vars.collateralFactor, vars.exchangeRate),
                vars.oraclePrice
            );

            // sumCollateral += tokensToDenom * bTokenBalance
            vars.sumCollateral = mul_ScalarTruncateAddUInt(
                vars.tokensToDenom,
                vars.bTokenBalance,
                vars.sumCollateral
            );

            // sumBorrowPlusEffects += oraclePrice * borrowBalance
            vars.sumBorrowPlusEffects = mul_ScalarTruncateAddUInt(
                vars.oraclePrice,
                vars.borrowBalance,
                vars.sumBorrowPlusEffects
            );

            // Calculate effects of interacting with bTokenModify
            if (asset == bTokenModify) {
                // redeem effect
                // sumBorrowPlusEffects += tokensToDenom * redeemTokens
                vars.sumBorrowPlusEffects = mul_ScalarTruncateAddUInt(
                    vars.tokensToDenom,
                    redeemTokens,
                    vars.sumBorrowPlusEffects
                );

                // borrow effect
                // sumBorrowPlusEffects += oraclePrice * borrowAmount
                vars.sumBorrowPlusEffects = mul_ScalarTruncateAddUInt(
                    vars.oraclePrice,
                    borrowAmount,
                    vars.sumBorrowPlusEffects
                );
            }
        }

        // These are safe, as the underflow condition is checked first
        if (vars.sumCollateral > vars.sumBorrowPlusEffects) {
            return (
                Error.NO_ERROR,
                vars.sumCollateral - vars.sumBorrowPlusEffects,
                0
            );
        } else {
            return (
                Error.NO_ERROR,
                0,
                vars.sumBorrowPlusEffects - vars.sumCollateral
            );
        }
    }

    /**
     * @notice Calculate number of tokens of collateral asset to seize given an underlying amount
     * @dev Used in liquidation (called in bToken.liquidateBorrowFresh)
     * @param bTokenBorrowed The address of the borrowed bToken
     * @param bTokenCollateral The address of the collateral bToken
     * @param actualRepayAmount The amount of bTokenBorrowed underlying to convert into bTokenCollateral tokens
     * @return (errorCode, number of bTokenCollateral tokens to be seized in a liquidation)
     */
    function liquidateCalculateSeizeTokens(
        address bTokenBorrowed,
        address bTokenCollateral,
        uint256 actualRepayAmount
    ) external view returns (uint256, uint256) {
        /* Read oracle prices for borrowed and collateral markets */
        uint256 priceBorrowedMantissa = oracle.getUnderlyingPrice(
            BToken(bTokenBorrowed)
        );
        uint256 priceCollateralMantissa = oracle.getUnderlyingPrice(
            BToken(bTokenCollateral)
        );
        require(
            priceBorrowedMantissa > 0 && priceCollateralMantissa > 0,
            "price error"
        );

        /*
         * Get the exchange rate and calculate the number of collateral tokens to seize:
         *  seizeAmount = actualRepayAmount * liquidationIncentive * priceBorrowed / priceCollateral
         *  seizeTokens = seizeAmount / exchangeRate
         *   = actualRepayAmount * (liquidationIncentive * priceBorrowed) / (priceCollateral * exchangeRate)
         */
        uint256 exchangeRateMantissa = BToken(bTokenCollateral)
            .exchangeRateStored(); // Note: reverts on error
        Exp memory numerator = mul_(
            Exp({mantissa: liquidationIncentiveMantissa}),
            Exp({mantissa: priceBorrowedMantissa})
        );
        Exp memory denominator = mul_(
            Exp({mantissa: priceCollateralMantissa}),
            Exp({mantissa: exchangeRateMantissa})
        );
        Exp memory ratio = div_(numerator, denominator);
        uint256 seizeTokens = mul_ScalarTruncate(ratio, actualRepayAmount);

        return (uint256(Error.NO_ERROR), seizeTokens);
    }

    /*** Admin Functions ***/

    /**
     * @notice Sets a new price oracle for the comptroller
     * @dev Admin function to set a new price oracle
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _setPriceOracle(PriceOracle newOracle) public returns (uint256) {
        // Check caller is admin
        if (msg.sender != admin) {
            return
                fail(
                    Error.UNAUTHORIZED,
                    FailureInfo.SET_PRICE_ORACLE_OWNER_CHECK
                );
        }

        // Track the old oracle for the comptroller
        PriceOracle oldOracle = oracle;

        // Set comptroller's oracle to newOracle
        oracle = newOracle;

        emit NewPriceOracle(oldOracle, newOracle);

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Sets the closeFactor used when liquidating borrows
     * @dev Admin function to set closeFactor
     * @param newCloseFactorMantissa New close factor, scaled by 1e18
     * @return uint 0=success, otherwise a failure. (See ErrorReporter for details)
     */
    function _setCloseFactor(
        uint256 newCloseFactorMantissa
    ) external returns (uint256) {
        // Check caller is admin
        if (msg.sender != admin) {
            return
                fail(
                    Error.UNAUTHORIZED,
                    FailureInfo.SET_CLOSE_FACTOR_OWNER_CHECK
                );
        }

        uint256 oldCloseFactorMantissa = closeFactorMantissa;
        closeFactorMantissa = newCloseFactorMantissa;
        emit NewCloseFactor(oldCloseFactorMantissa, closeFactorMantissa);

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Sets the collateralFactor for a market
     * @dev Admin function to set per-market collateralFactor
     * @param bToken The market to set the factor on
     * @param newCollateralFactorMantissa The new collateral factor, scaled by 1e18
     * @return uint 0=success, otherwise a failure. (See ErrorReporter for details)
     */
    function _setCollateralFactor(
        BToken bToken,
        uint256 newCollateralFactorMantissa
    ) external returns (uint256) {
        // Check caller is admin
        if (msg.sender != admin) {
            return
                fail(
                    Error.UNAUTHORIZED,
                    FailureInfo.SET_COLLATERAL_FACTOR_OWNER_CHECK
                );
        }

        // Verify market is listed
        Market storage market = markets[address(bToken)];
        if (!market.isListed) {
            return
                fail(
                    Error.MARKET_NOT_LISTED,
                    FailureInfo.SET_COLLATERAL_FACTOR_NO_EXISTS
                );
        }

        Exp memory newCollateralFactorExp = Exp({
            mantissa: newCollateralFactorMantissa
        });

        // Check collateral factor <= 0.9
        Exp memory highLimit = Exp({mantissa: collateralFactorMaxMantissa});
        if (lessThanExp(highLimit, newCollateralFactorExp)) {
            return
                fail(
                    Error.INVALID_COLLATERAL_FACTOR,
                    FailureInfo.SET_COLLATERAL_FACTOR_VALIDATION
                );
        }

        // If collateral factor != 0, fail if price == 0
        if (
            newCollateralFactorMantissa != 0 &&
            oracle.getUnderlyingPrice(bToken) == 0
        ) {
            return
                fail(
                    Error.PRICE_ERROR,
                    FailureInfo.SET_COLLATERAL_FACTOR_WITHOUT_PRICE
                );
        }

        // Set market's collateral factor to new collateral factor, remember old value
        uint256 oldCollateralFactorMantissa = market.collateralFactorMantissa;
        market.collateralFactorMantissa = newCollateralFactorMantissa;

        // Emit event with asset, old collateral factor, and new collateral factor
        emit NewCollateralFactor(
            bToken,
            oldCollateralFactorMantissa,
            newCollateralFactorMantissa
        );

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Sets liquidationIncentive
     * @dev Admin function to set liquidationIncentive
     * @param newLiquidationIncentiveMantissa New liquidationIncentive scaled by 1e18
     * @return uint 0=success, otherwise a failure. (See ErrorReporter for details)
     */
    function _setLiquidationIncentive(
        uint256 newLiquidationIncentiveMantissa
    ) external returns (uint256) {
        // Check caller is admin
        if (msg.sender != admin) {
            return
                fail(
                    Error.UNAUTHORIZED,
                    FailureInfo.SET_LIQUIDATION_INCENTIVE_OWNER_CHECK
                );
        }

        // Save current value for use in log
        uint256 oldLiquidationIncentiveMantissa = liquidationIncentiveMantissa;

        // Set liquidation incentive to new incentive
        liquidationIncentiveMantissa = newLiquidationIncentiveMantissa;

        // Emit event with old incentive, new incentive
        emit NewLiquidationIncentive(
            oldLiquidationIncentiveMantissa,
            newLiquidationIncentiveMantissa
        );

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Add the market to the markets mapping and set it as listed
     * @dev Admin function to set isListed and add support for the market
     * @param bToken The address of the market (token) to list
     * @param version The version of the market (token)
     * @return uint 0=success, otherwise a failure. (See enum Error for details)
     */
    function _supportMarket(
        BToken bToken,
        Version version
    ) external returns (uint256) {
        require(msg.sender == admin, "admin only");
        require(
            !isMarketListedOrDelisted(address(bToken)),
            "market already listed or delisted"
        );

        bToken.isBToken(); // Sanity check to make sure its really a BToken

        markets[address(bToken)] = Market({
            isListed: true,
            collateralFactorMantissa: 0,
            version: version
        });

        _addMarketInternal(address(bToken));

        emit MarketListed(bToken);

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Remove the market from the markets mapping
     * @param bToken The address of the market (token) to delist
     * @param force If True, hard delist the market by not adding to `isMarketDelisted`
     */
    function _delistMarket(BToken bToken, bool force) external {
        require(msg.sender == admin, "admin only");
        require(
            markets[address(bToken)].collateralFactorMantissa == 0,
            "market has collateral"
        );
        require(
            mintGuardianPaused[address(bToken)] &&
                borrowGuardianPaused[address(bToken)] &&
                flashloanGuardianPaused[address(bToken)],
            "market not paused"
        );

        if (!force) {
            // Soft delist.
            require(isMarketListed(address(bToken)), "market not listed");
            isMarketDelisted[address(bToken)] = true;
        } else {
            // Hard delist.
            require(
                isMarketListedOrDelisted(address(bToken)),
                "market not listed or soft delisted"
            );
        }
        delete markets[address(bToken)];

        for (uint256 i = 0; i < allMarkets.length; ++i) {
            if (allMarkets[i] == bToken) {
                allMarkets[i] = allMarkets[allMarkets.length - 1];
                delete allMarkets[allMarkets.length - 1];
                allMarkets.length--;
                break;
            }
        }

        emit MarketDelisted(bToken, force);
    }

    function _addMarketInternal(address bToken) internal {
        for (uint256 i = 0; i < allMarkets.length; ++i) {
            require(allMarkets[i] != BToken(bToken), "market already added");
        }
        allMarkets.push(BToken(bToken));
    }

    /**
     * @notice Set the given supply caps for the given bToken markets. Supplying that brings total supplies to or above supply cap will revert.
     * @dev Admin or guardian function to set the supply caps. A supply cap of 0 corresponds to unlimited supplying. If the total borrows
     *      already exceeded the cap, it will prevent anyone to borrow.
     * @param bTokens The addresses of the markets (tokens) to change the supply caps for
     * @param newSupplyCaps The new supply cap values in underlying to be set. A value of 0 corresponds to unlimited supplying.
     */
    function _setMarketSupplyCaps(
        BToken[] calldata bTokens,
        uint256[] calldata newSupplyCaps
    ) external {
        require(
            msg.sender == admin || msg.sender == guardian,
            "admin or guardian only"
        );

        uint256 numMarkets = bTokens.length;
        uint256 numSupplyCaps = newSupplyCaps.length;

        require(
            numMarkets != 0 && numMarkets == numSupplyCaps,
            "invalid input"
        );

        for (uint256 i = 0; i < numMarkets; ++i) {
            supplyCaps[address(bTokens[i])] = newSupplyCaps[i];
            emit NewSupplyCap(bTokens[i], newSupplyCaps[i]);
        }
    }

    /**
     * @notice Set the given borrow caps for the given bToken markets. Borrowing that brings total borrows to or above borrow cap will revert.
     * @dev Admin or guardian function to set the borrow caps. A borrow cap of 0 corresponds to unlimited borrowing. If the total supplies
     *      already exceeded the cap, it will prevent anyone to mint.
     * @param bTokens The addresses of the markets (tokens) to change the borrow caps for
     * @param newBorrowCaps The new borrow cap values in underlying to be set. A value of 0 corresponds to unlimited borrowing.
     */
    function _setMarketBorrowCaps(
        BToken[] calldata bTokens,
        uint256[] calldata newBorrowCaps
    ) external {
        require(
            msg.sender == admin || msg.sender == guardian,
            "admin or guardian only"
        );

        uint256 numMarkets = bTokens.length;
        uint256 numBorrowCaps = newBorrowCaps.length;

        require(
            numMarkets != 0 && numMarkets == numBorrowCaps,
            "invalid input"
        );

        for (uint256 i = 0; i < numMarkets; ++i) {
            borrowCaps[address(bTokens[i])] = newBorrowCaps[i];
            emit NewBorrowCap(bTokens[i], newBorrowCaps[i]);
        }
    }

    /**
     * @notice Admin function to change the Guardian
     * @param newGuardian The address of the new Guardian
     * @return uint 0=success, otherwise a failure. (See enum Error for details)
     */
    function _setGuardian(address newGuardian) public returns (uint256) {
        if (msg.sender != admin) {
            return
                fail(
                    Error.UNAUTHORIZED,
                    FailureInfo.SET_PAUSE_GUARDIAN_OWNER_CHECK
                );
        }

        // Save current value for inclusion in log
        address oldGuardian = guardian;

        // Store guardian with value newGuardian
        guardian = newGuardian;

        // Emit NewGuardian(OldGuardian, NewGuardian)
        emit NewGuardian(oldGuardian, guardian);

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Admin function to set the liquidity mining module address
     * @dev Removing the liquidity mining module address could cause the inconsistency in the LM module.
     * @param newLiquidityMining The address of the new liquidity mining module
     */
    function _setLiquidityMining(address newLiquidityMining) external {
        require(msg.sender == admin, "admin only");
        require(
            LiquidityMiningInterface(newLiquidityMining).comptroller() ==
                address(this),
            "mismatch comptroller"
        );

        // Save current value for inclusion in log
        address oldLiquidityMining = liquidityMining;

        // Store liquidityMining with value newLiquidityMining
        liquidityMining = newLiquidityMining;

        // Emit NewLiquidityMining(OldLiquidityMining, NewLiquidityMining)
        emit NewLiquidityMining(oldLiquidityMining, liquidityMining);
    }

    /**
     * @notice Admin function to set the credit limit manager address
     * @param newCreditLimitManager The address of the new credit limit manager
     */
    function _setCreditLimitManager(address newCreditLimitManager) external {
        require(msg.sender == admin, "admin only");

        // Save current value for inclusion in log
        address oldCreditLimitManager = creditLimitManager;

        // Store creditLimitManager with value newCreditLimitManager
        creditLimitManager = newCreditLimitManager;

        // Emit NewCreditLimitManager(oldCreditLimitManager, newCreditLimitManager)
        emit NewCreditLimitManager(oldCreditLimitManager, creditLimitManager);
    }

    function _setMintPaused(BToken bToken, bool state) public returns (bool) {
        require(isMarketListed(address(bToken)), "market not listed");
        require(
            msg.sender == guardian || msg.sender == admin,
            "guardian or admin only"
        );
        require(msg.sender == admin || state == true, "admin only");

        mintGuardianPaused[address(bToken)] = state;
        emit ActionPaused(bToken, "Mint", state);
        return state;
    }

    function _setBorrowPaused(BToken bToken, bool state) public returns (bool) {
        require(isMarketListed(address(bToken)), "market not listed");
        require(
            msg.sender == guardian || msg.sender == admin,
            "guardian or admin only"
        );
        require(msg.sender == admin || state == true, "admin only");

        borrowGuardianPaused[address(bToken)] = state;
        emit ActionPaused(bToken, "Borrow", state);
        return state;
    }

    function _setFlashloanPaused(
        BToken bToken,
        bool state
    ) public returns (bool) {
        require(isMarketListed(address(bToken)), "market not listed");
        require(
            msg.sender == guardian || msg.sender == admin,
            "guardian or admin only"
        );
        require(msg.sender == admin || state == true, "admin only");

        flashloanGuardianPaused[address(bToken)] = state;
        emit ActionPaused(bToken, "Flashloan", state);
        return state;
    }

    function _setTransferPaused(bool state) public returns (bool) {
        require(
            msg.sender == guardian || msg.sender == admin,
            "guardian or admin only"
        );
        require(msg.sender == admin || state == true, "admin only");

        transferGuardianPaused = state;
        emit ActionPaused("Transfer", state);
        return state;
    }

    function _setSeizePaused(bool state) public returns (bool) {
        require(
            msg.sender == guardian || msg.sender == admin,
            "guardian or admin only"
        );
        require(msg.sender == admin || state == true, "admin only");

        seizeGuardianPaused = state;
        emit ActionPaused("Seize", state);
        return state;
    }

    function _become(Unitroller unitroller) public {
        require(msg.sender == unitroller.admin(), "unitroller admin only");
        require(unitroller._acceptImplementation() == 0, "unauthorized");
    }

    /**
     * @notice Sets protocol's credit limit by market
     * @dev Setting credit limit to 0 would change the protocol to a normal account
     * @param protocol The address of the protocol
     * @param market The market
     * @param creditLimit The credit limit
     */
    function _setCreditLimit(
        address protocol,
        address market,
        uint256 creditLimit
    ) public {
        require(
            msg.sender == admin || msg.sender == creditLimitManager,
            "admin or credit limit manager only"
        );

        _setCreditLimitInternal(protocol, market, creditLimit);
    }

    /**
     * @notice Pause protocol's credit limit by market
     * @param protocol The address of the protocol
     * @param market The market
     */
    function _pauseCreditLimit(address protocol, address market) public {
        require(msg.sender == guardian, "guardian only");

        // We set the credit limit to a very small amount (1 Wei) to avoid the protocol becoming a normal account.
        // Normal account could be liquidated or repaid, which might cause some additional problem.
        _setCreditLimitInternal(protocol, market, 1);
    }

    function _setCreditLimitInternal(
        address protocol,
        address market,
        uint256 creditLimit
    ) internal {
        require(isMarketListed(market), "market not listed");

        _creditLimits[protocol][market] = creditLimit;
        emit CreditLimitChanged(protocol, market, creditLimit);
    }

    /**
     * @notice Return all of the markets
     * @dev The automatic getter may be used to access an individual market.
     * @return The list of market addresses
     */
    function getAllMarkets() public view returns (BToken[] memory) {
        return allMarkets;
    }

    function getBlockTimestamp() public view returns (uint256) {
        return block.timestamp;
    }
}

File 2 of 15 : BToken.sol
pragma solidity 0.5.16;

import "./ComptrollerInterface.sol";
import "./BTokenInterfaces.sol";
import "./ErrorReporter.sol";
import "./Exponential.sol";
import "./EIP20Interface.sol";
import "./EIP20NonStandardInterface.sol";
import "./InterestRateModel.sol";

/**
 * @title Blueberry's BToken Contract
 * @notice Abstract base for BTokens
 * @author Compound (Modifed by Blueberry)
 */
contract BToken is BTokenInterface, Exponential, TokenErrorReporter {
    /**
     * @notice Initialize the money market
     * @param comptroller_ The address of the Comptroller
     * @param interestRateModel_ The address of the interest rate model
     * @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18
     * @param name_ EIP-20 name of this token
     * @param symbol_ EIP-20 symbol of this token
     * @param decimals_ EIP-20 decimal precision of this token
     */
    function initialize(
        ComptrollerInterface comptroller_,
        InterestRateModel interestRateModel_,
        uint256 initialExchangeRateMantissa_,
        string memory name_,
        string memory symbol_,
        uint8 decimals_
    ) public {
        require(msg.sender == admin, "admin only");
        require(accrualBlockTimestamp == 0 && borrowIndex == 0, "initialized");

        // Set initial exchange rate
        initialExchangeRateMantissa = initialExchangeRateMantissa_;
        require(initialExchangeRateMantissa > 0, "invalid exchange rate");

        // Set the comptroller
        uint256 err = _setComptroller(comptroller_);
        require(err == uint256(Error.NO_ERROR), "set comptroller failed");

        // Initialize block timestamp and borrow index (block timestamp mocks depend on comptroller being set)
        accrualBlockTimestamp = getBlockTimestamp();
        borrowIndex = mantissaOne;

        // Set the interest rate model (depends on block timestamp / borrow index)
        err = _setInterestRateModelFresh(interestRateModel_);
        require(err == uint256(Error.NO_ERROR), "set IRM failed");

        name = name_;
        symbol = symbol_;
        decimals = decimals_;

        // The counter starts true to prevent changing it from zero to non-zero (i.e. smaller cost/refund)
        _notEntered = true;
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint256 amount)
        external
        nonReentrant
        returns (bool)
    {
        return
            transferTokens(msg.sender, msg.sender, dst, amount) ==
            uint256(Error.NO_ERROR);
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(
        address src,
        address dst,
        uint256 amount
    ) external nonReentrant returns (bool) {
        return
            transferTokens(msg.sender, src, dst, amount) ==
            uint256(Error.NO_ERROR);
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param amount The number of tokens that are approved (-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint256 amount) external returns (bool) {
        address src = msg.sender;
        transferAllowances[src][spender] = amount;
        emit Approval(src, spender, amount);
        return true;
    }

    /**
     * @notice Get the current allowance from `owner` for `spender`
     * @param owner The address of the account which owns the tokens to be spent
     * @param spender The address of the account which may transfer tokens
     * @return The number of tokens allowed to be spent (-1 means infinite)
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256)
    {
        return transferAllowances[owner][spender];
    }

    /**
     * @notice Get the token balance of the `owner`
     * @param owner The address of the account to query
     * @return The number of tokens owned by `owner`
     */
    function balanceOf(address owner) external view returns (uint256) {
        return accountTokens[owner];
    }

    /**
     * @notice Get the underlying balance of the `owner`
     * @dev This also accrues interest in a transaction
     * @param owner The address of the account to query
     * @return The amount of underlying owned by `owner`
     */
    function balanceOfUnderlying(address owner) external returns (uint256) {
        Exp memory exchangeRate = Exp({mantissa: exchangeRateCurrent()});
        return mul_ScalarTruncate(exchangeRate, accountTokens[owner]);
    }

    /**
     * @notice Get a snapshot of the account's balances, and the cached exchange rate
     * @dev This is used by comptroller to more efficiently perform liquidity checks.
     * @param account Address of the account to snapshot
     * @return (possible error, token balance, borrow balance, exchange rate mantissa)
     */
    function getAccountSnapshot(address account)
        external
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        uint256 bTokenBalance = getBTokenBalanceInternal(account);
        uint256 borrowBalance = borrowBalanceStoredInternal(account);
        uint256 exchangeRateMantissa = exchangeRateStoredInternal();

        return (
            uint256(Error.NO_ERROR),
            bTokenBalance,
            borrowBalance,
            exchangeRateMantissa
        );
    }

    /**
     * @dev Function to simply retrieve block timestamp
     *  This exists mainly for inheriting test contracts to stub this result.
     */
    function getBlockTimestamp() internal view returns (uint256) {
        return block.timestamp;
    }

    /**
     * @notice Returns the current per-second borrow interest rate for this bToken
     * @return The borrow interest rate per second, scaled by 1e18
     */
    function borrowRatePerSecond() external view returns (uint256) {
        return
            interestRateModel.getBorrowRate(
                getCashPrior(),
                totalBorrows,
                totalReserves
            );
    }

    /**
     * @notice Returns the current per-second supply interest rate for this bToken
     * @return The supply interest rate per second, scaled by 1e18
     */
    function supplyRatePerSecond() external view returns (uint256) {
        return
            interestRateModel.getSupplyRate(
                getCashPrior(),
                totalBorrows,
                totalReserves,
                reserveFactorMantissa
            );
    }

    /**
     * @notice Returns the estimated per-second borrow interest rate for this bToken after some change
     * @return The borrow interest rate per second, scaled by 1e18
     */
    function estimateBorrowRatePerSecondAfterChange(uint256 change, bool repay)
        external
        view
        returns (uint256)
    {
        uint256 cashPriorNew;
        uint256 totalBorrowsNew;

        if (repay) {
            cashPriorNew = add_(getCashPrior(), change);
            totalBorrowsNew = sub_(totalBorrows, change);
        } else {
            cashPriorNew = sub_(getCashPrior(), change);
            totalBorrowsNew = add_(totalBorrows, change);
        }
        return
            interestRateModel.getBorrowRate(
                cashPriorNew,
                totalBorrowsNew,
                totalReserves
            );
    }

    /**
     * @notice Returns the estimated per-second supply interest rate for this bToken after some change
     * @return The supply interest rate per second, scaled by 1e18
     */
    function estimateSupplyRatePerSecondAfterChange(uint256 change, bool repay)
        external
        view
        returns (uint256)
    {
        uint256 cashPriorNew;
        uint256 totalBorrowsNew;

        if (repay) {
            cashPriorNew = add_(getCashPrior(), change);
            totalBorrowsNew = sub_(totalBorrows, change);
        } else {
            cashPriorNew = sub_(getCashPrior(), change);
            totalBorrowsNew = add_(totalBorrows, change);
        }

        return
            interestRateModel.getSupplyRate(
                cashPriorNew,
                totalBorrowsNew,
                totalReserves,
                reserveFactorMantissa
            );
    }

    /**
     * @notice Returns the current total borrows plus accrued interest
     * @return The total borrows with interest
     */
    function totalBorrowsCurrent() external nonReentrant returns (uint256) {
        accrueInterest();
        return totalBorrows;
    }

    /**
     * @notice Accrue interest to updated borrowIndex and then calculate account's borrow balance using the updated borrowIndex
     * @param account The address whose balance should be calculated after updating borrowIndex
     * @return The calculated balance
     */
    function borrowBalanceCurrent(address account)
        external
        nonReentrant
        returns (uint256)
    {
        accrueInterest();
        return borrowBalanceStored(account);
    }

    /**
     * @notice Return the borrow balance of account based on stored data
     * @param account The address whose balance should be calculated
     * @return The calculated balance
     */
    function borrowBalanceStored(address account)
        public
        view
        returns (uint256)
    {
        return borrowBalanceStoredInternal(account);
    }

    /**
     * @notice Return the borrow balance of account based on stored data
     * @param account The address whose balance should be calculated
     * @return the calculated balance or 0 if error code is non-zero
     */
    function borrowBalanceStoredInternal(address account)
        internal
        view
        returns (uint256)
    {
        /* Get borrowBalance and borrowIndex */
        BorrowSnapshot storage borrowSnapshot = accountBorrows[account];

        /* If borrowBalance = 0 then borrowIndex is likely also 0.
         * Rather than failing the calculation with a division by 0, we immediately return 0 in this case.
         */
        if (borrowSnapshot.principal == 0) {
            return 0;
        }

        /* Calculate new borrow balance using the interest index:
         *  recentBorrowBalance = borrower.borrowBalance * market.borrowIndex / borrower.borrowIndex
         */
        uint256 principalTimesIndex = mul_(
            borrowSnapshot.principal,
            borrowIndex
        );
        uint256 result = div_(
            principalTimesIndex,
            borrowSnapshot.interestIndex
        );
        return result;
    }

    /**
     * @notice Accrue interest then return the up-to-date exchange rate
     * @return Calculated exchange rate scaled by 1e18
     */
    function exchangeRateCurrent() public nonReentrant returns (uint256) {
        accrueInterest();
        return exchangeRateStored();
    }

    /**
     * @notice Calculates the exchange rate from the underlying to the BToken
     * @dev This function does not accrue interest before calculating the exchange rate
     * @return Calculated exchange rate scaled by 1e18
     */
    function exchangeRateStored() public view returns (uint256) {
        return exchangeRateStoredInternal();
    }

    /**
     * @notice Calculates the exchange rate from the underlying to the BToken
     * @dev This function does not accrue interest before calculating the exchange rate
     * @return calculated exchange rate scaled by 1e18
     */
    function exchangeRateStoredInternal() internal view returns (uint256) {
        uint256 _totalSupply = totalSupply;
        if (_totalSupply == 0) {
            /*
             * If there are no tokens minted:
             *  exchangeRate = initialExchangeRate
             */
            return initialExchangeRateMantissa;
        } else {
            /*
             * Otherwise:
             *  exchangeRate = (totalCash + totalBorrows - totalReserves) / totalSupply
             */
            uint256 totalCash = getCashPrior();
            uint256 cashPlusBorrowsMinusReserves = sub_(
                add_(totalCash, totalBorrows),
                totalReserves
            );
            uint256 exchangeRate = div_(
                cashPlusBorrowsMinusReserves,
                Exp({mantissa: _totalSupply})
            );
            return exchangeRate;
        }
    }

    /**
     * @notice Get cash balance of this bToken in the underlying asset
     * @return The quantity of underlying asset owned by this contract
     */
    function getCash() external view returns (uint256) {
        return getCashPrior();
    }

    /**
     * @notice Applies accrued interest to total borrows and reserves
     * @dev This calculates interest accrued from the last checkpointed second
     *   up to the current block timestamp and writes new checkpoint to storage.
     */
    function accrueInterest() public returns (uint256) {
        /* Remember the initial block timestamp */
        uint256 currentBlockTimestamp = getBlockTimestamp();
        uint256 accrualBlockTimestampPrior = accrualBlockTimestamp;

        /* Short-circuit accumulating 0 interest */
        if (accrualBlockTimestampPrior == currentBlockTimestamp) {
            return uint256(Error.NO_ERROR);
        }

        /* Read the previous values out of storage */
        uint256 cashPrior = getCashPrior();
        uint256 borrowsPrior = totalBorrows;
        uint256 reservesPrior = totalReserves;
        uint256 borrowIndexPrior = borrowIndex;

        /* Calculate the current borrow interest rate */
        uint256 borrowRateMantissa = interestRateModel.getBorrowRate(
            cashPrior,
            borrowsPrior,
            reservesPrior
        );
        require(
            borrowRateMantissa <= borrowRateMaxMantissa,
            "borrow rate too high"
        );

        /* Calculate the number of seconds elapsed since the last accrual */
        uint256 timestampDelta = sub_(currentBlockTimestamp, accrualBlockTimestampPrior);

        /*
         * Calculate the interest accumulated into borrows and reserves and the new index:
         *  simpleInterestFactor = borrowRate * timestampDelta
         *  interestAccumulated = simpleInterestFactor * totalBorrows
         *  totalBorrowsNew = interestAccumulated + totalBorrows
         *  totalReservesNew = interestAccumulated * reserveFactor + totalReserves
         *  borrowIndexNew = simpleInterestFactor * borrowIndex + borrowIndex
         */

        Exp memory simpleInterestFactor = mul_(
            Exp({mantissa: borrowRateMantissa}),
            timestampDelta
        );
        uint256 interestAccumulated = mul_ScalarTruncate(
            simpleInterestFactor,
            borrowsPrior
        );
        uint256 totalBorrowsNew = add_(interestAccumulated, borrowsPrior);
        uint256 totalReservesNew = mul_ScalarTruncateAddUInt(
            Exp({mantissa: reserveFactorMantissa}),
            interestAccumulated,
            reservesPrior
        );
        uint256 borrowIndexNew = mul_ScalarTruncateAddUInt(
            simpleInterestFactor,
            borrowIndexPrior,
            borrowIndexPrior
        );

        /////////////////////////
        // EFFECTS & INTERACTIONS
        // (No safe failures beyond this point)

        /* We write the previously calculated values into storage */
        accrualBlockTimestamp = currentBlockTimestamp;
        borrowIndex = borrowIndexNew;
        totalBorrows = totalBorrowsNew;
        totalReserves = totalReservesNew;

        /* We emit an AccrueInterest event */
        emit AccrueInterest(
            cashPrior,
            interestAccumulated,
            borrowIndexNew,
            totalBorrowsNew
        );

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Sender supplies assets into the market and receives bTokens in exchange
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param mintAmount The amount of the underlying asset to supply
     * @param isNative The amount is in native or not
     * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual mint amount.
     */
    function mintInternal(uint256 mintAmount, bool isNative)
        internal
        nonReentrant
        returns (uint256, uint256)
    {
        accrueInterest();
        // mintFresh emits the actual Mint event if successful and logs on errors, so we don't need to
        return mintFresh(msg.sender, mintAmount, isNative);
    }

    /**
     * @notice Sender redeems bTokens in exchange for the underlying asset
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param redeemTokens The number of bTokens to redeem into underlying
     * @param isNative The amount is in native or not
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function redeemInternal(uint256 redeemTokens, bool isNative)
        internal
        nonReentrant
        returns (uint256)
    {
        accrueInterest();
        // redeemFresh emits redeem-specific logs on errors, so we don't need to
        return redeemFresh(msg.sender, redeemTokens, 0, isNative);
    }

    /**
     * @notice Sender redeems bTokens in exchange for a specified amount of underlying asset
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param redeemAmount The amount of underlying to receive from redeeming bTokens
     * @param isNative The amount is in native or not
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function redeemUnderlyingInternal(uint256 redeemAmount, bool isNative)
        internal
        nonReentrant
        returns (uint256)
    {
        accrueInterest();
        // redeemFresh emits redeem-specific logs on errors, so we don't need to
        return redeemFresh(msg.sender, 0, redeemAmount, isNative);
    }

    /**
     * @notice Sender borrows assets from the protocol to their own address
     * @param borrowAmount The amount of the underlying asset to borrow
     * @param isNative The amount is in native or not
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function borrowInternal(uint256 borrowAmount, bool isNative)
        internal
        nonReentrant
        returns (uint256)
    {
        accrueInterest();
        // borrowFresh emits borrow-specific logs on errors, so we don't need to
        return borrowFresh(msg.sender, borrowAmount, isNative);
    }

    struct BorrowLocalVars {
        MathError mathErr;
        uint256 accountBorrows;
        uint256 accountBorrowsNew;
        uint256 totalBorrowsNew;
    }

    /**
     * @notice Users borrow assets from the protocol to their own address
     * @param borrowAmount The amount of the underlying asset to borrow
     * @param isNative The amount is in native or not
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function borrowFresh(
        address payable borrower,
        uint256 borrowAmount,
        bool isNative
    ) internal returns (uint256) {
        /* Fail if borrow not allowed */
        require(
            comptroller.borrowAllowed(address(this), borrower, borrowAmount) ==
                0,
            "rejected"
        );

        /* Verify market's block timestamp equals current block timestamp */
        require(accrualBlockTimestamp == getBlockTimestamp(), "market is stale");

        /* Reverts if protocol has insufficient cash */
        require(getCashPrior() >= borrowAmount, "insufficient cash");

        BorrowLocalVars memory vars;

        /*
         * We calculate the new borrower and total borrow balances, failing on overflow:
         *  accountBorrowsNew = accountBorrows + borrowAmount
         *  totalBorrowsNew = totalBorrows + borrowAmount
         */
        vars.accountBorrows = borrowBalanceStoredInternal(borrower);
        vars.accountBorrowsNew = add_(vars.accountBorrows, borrowAmount);
        vars.totalBorrowsNew = add_(totalBorrows, borrowAmount);

        /////////////////////////
        // EFFECTS & INTERACTIONS
        // (No safe failures beyond this point)

        /* We write the previously calculated values into storage */
        accountBorrows[borrower].principal = vars.accountBorrowsNew;
        accountBorrows[borrower].interestIndex = borrowIndex;
        totalBorrows = vars.totalBorrowsNew;

        /*
         * We invoke doTransferOut for the borrower and the borrowAmount.
         *  Note: The bToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the bToken borrowAmount less of cash.
         *  doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred.
         */
        doTransferOut(borrower, borrowAmount, isNative);

        /* We emit a Borrow event */
        emit Borrow(
            borrower,
            borrowAmount,
            vars.accountBorrowsNew,
            vars.totalBorrowsNew
        );

        /* We call the defense hook */
        comptroller.borrowVerify(address(this), borrower, borrowAmount);

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Sender repays their own borrow
     * @param repayAmount The amount to repay
     * @param isNative The amount is in native or not
     * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount.
     */
    function repayBorrowInternal(uint256 repayAmount, bool isNative)
        internal
        nonReentrant
        returns (uint256, uint256)
    {
        accrueInterest();
        // repayBorrowFresh emits repay-borrow-specific logs on errors, so we don't need to
        return repayBorrowFresh(msg.sender, msg.sender, repayAmount, isNative);
    }

    /**
     * @notice Sender repays a borrow belonging to borrower
     * @param borrower the account with the debt being payed off
     * @param repayAmount The amount to repay
     * @param isNative The amount is in native or not
     * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount.
     */
    function repayBorrowBehalfInternal(
        address borrower,
        uint256 repayAmount,
        bool isNative
    ) internal nonReentrant returns (uint256, uint256) {
        accrueInterest();
        // repayBorrowFresh emits repay-borrow-specific logs on errors, so we don't need to
        return repayBorrowFresh(msg.sender, borrower, repayAmount, isNative);
    }

    struct RepayBorrowLocalVars {
        Error err;
        MathError mathErr;
        uint256 repayAmount;
        uint256 borrowerIndex;
        uint256 accountBorrows;
        uint256 accountBorrowsNew;
        uint256 totalBorrowsNew;
        uint256 actualRepayAmount;
    }

    /**
     * @notice Borrows are repaid by another user (possibly the borrower).
     * @param payer the account paying off the borrow
     * @param borrower the account with the debt being payed off
     * @param repayAmount the amount of underlying tokens being returned
     * @param isNative The amount is in native or not
     * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount.
     */
    function repayBorrowFresh(
        address payer,
        address borrower,
        uint256 repayAmount,
        bool isNative
    ) internal returns (uint256, uint256) {
        /* Fail if repayBorrow not allowed */
        require(
            comptroller.repayBorrowAllowed(
                address(this),
                payer,
                borrower,
                repayAmount
            ) == 0,
            "rejected"
        );

        /* Verify market's block timestamp equals current block timestamp */
        require(accrualBlockTimestamp == getBlockTimestamp(), "market is stale");

        RepayBorrowLocalVars memory vars;

        /* We remember the original borrowerIndex for verification purposes */
        vars.borrowerIndex = accountBorrows[borrower].interestIndex;

        /* We fetch the amount the borrower owes, with accumulated interest */
        vars.accountBorrows = borrowBalanceStoredInternal(borrower);

        /* If repayAmount == -1, repayAmount = accountBorrows */
        if (repayAmount == uint256(-1)) {
            vars.repayAmount = vars.accountBorrows;
        } else {
            vars.repayAmount = repayAmount;
        }

        /////////////////////////
        // EFFECTS & INTERACTIONS
        // (No safe failures beyond this point)

        /*
         * We call doTransferIn for the payer and the repayAmount
         *  Note: The bToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the bToken holds an additional repayAmount of cash.
         *  doTransferIn reverts if anything goes wrong, since we can't be sure if side effects occurred.
         *   it returns the amount actually transferred, in case of a fee.
         */
        vars.actualRepayAmount = doTransferIn(
            payer,
            vars.repayAmount,
            isNative
        );

        /*
         * We calculate the new borrower and total borrow balances, failing on underflow:
         *  accountBorrowsNew = accountBorrows - actualRepayAmount
         *  totalBorrowsNew = totalBorrows - actualRepayAmount
         */
        vars.accountBorrowsNew = sub_(
            vars.accountBorrows,
            vars.actualRepayAmount
        );
        vars.totalBorrowsNew = sub_(totalBorrows, vars.actualRepayAmount);

        /* We write the previously calculated values into storage */
        accountBorrows[borrower].principal = vars.accountBorrowsNew;
        accountBorrows[borrower].interestIndex = borrowIndex;
        totalBorrows = vars.totalBorrowsNew;

        /* We emit a RepayBorrow event */
        emit RepayBorrow(
            payer,
            borrower,
            vars.actualRepayAmount,
            vars.accountBorrowsNew,
            vars.totalBorrowsNew
        );

        /* We call the defense hook */
        comptroller.repayBorrowVerify(
            address(this),
            payer,
            borrower,
            vars.actualRepayAmount,
            vars.borrowerIndex
        );

        return (uint256(Error.NO_ERROR), vars.actualRepayAmount);
    }

    /**
     * @notice The sender liquidates the borrowers collateral.
     *  The collateral seized is transferred to the liquidator.
     * @param borrower The borrower of this bToken to be liquidated
     * @param repayAmount The amount of the underlying borrowed asset to repay
     * @param bTokenCollateral The market in which to seize collateral from the borrower
     * @param isNative The amount is in native or not
     * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount.
     */
    function liquidateBorrowInternal(
        address borrower,
        uint256 repayAmount,
        BTokenInterface bTokenCollateral,
        bool isNative
    ) internal nonReentrant returns (uint256, uint256) {
        accrueInterest();
        require(
            bTokenCollateral.accrueInterest() == uint256(Error.NO_ERROR),
            "accrue interest failed"
        );

        // liquidateBorrowFresh emits borrow-specific logs on errors, so we don't need to
        return
            liquidateBorrowFresh(
                msg.sender,
                borrower,
                repayAmount,
                bTokenCollateral,
                isNative
            );
    }

    struct LiquidateBorrowLocalVars {
        uint256 repayBorrowError;
        uint256 actualRepayAmount;
        uint256 amountSeizeError;
        uint256 seizeTokens;
    }

    /**
     * @notice The liquidator liquidates the borrowers collateral.
     *  The collateral seized is transferred to the liquidator.
     * @param borrower The borrower of this bToken to be liquidated
     * @param liquidator The address repaying the borrow and seizing collateral
     * @param bTokenCollateral The market in which to seize collateral from the borrower
     * @param repayAmount The amount of the underlying borrowed asset to repay
     * @param isNative The amount is in native or not
     * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount.
     */
    function liquidateBorrowFresh(
        address liquidator,
        address borrower,
        uint256 repayAmount,
        BTokenInterface bTokenCollateral,
        bool isNative
    ) internal returns (uint256, uint256) {
        /* Fail if liquidate not allowed */
        require(
            comptroller.liquidateBorrowAllowed(
                address(this),
                address(bTokenCollateral),
                liquidator,
                borrower,
                repayAmount
            ) == 0,
            "rejected"
        );

        /* Verify market's block timestamp equals current block timestamp */
        require(accrualBlockTimestamp == getBlockTimestamp(), "market is stale");

        /* Verify bTokenCollateral market's block timestamp equals current block timestamp */
        require(
            bTokenCollateral.accrualBlockTimestamp() == getBlockTimestamp(),
            "market is stale"
        );

        /* Fail if borrower = liquidator */
        require(borrower != liquidator, "invalid account pair");

        /* Fail if repayAmount = 0 or repayAmount = -1 */
        require(
            repayAmount > 0 && repayAmount != uint256(-1),
            "invalid amount"
        );

        LiquidateBorrowLocalVars memory vars;

        /* Fail if repayBorrow fails */
        (vars.repayBorrowError, vars.actualRepayAmount) = repayBorrowFresh(
            liquidator,
            borrower,
            repayAmount,
            isNative
        );
        require(
            vars.repayBorrowError == uint256(Error.NO_ERROR),
            "repay borrow failed"
        );

        /////////////////////////
        // EFFECTS & INTERACTIONS
        // (No safe failures beyond this point)

        /* We calculate the number of collateral tokens that will be seized */
        (vars.amountSeizeError, vars.seizeTokens) = comptroller
            .liquidateCalculateSeizeTokens(
                address(this),
                address(bTokenCollateral),
                vars.actualRepayAmount
            );
        require(
            vars.amountSeizeError == uint256(Error.NO_ERROR),
            "calculate seize amount failed"
        );

        /* Revert if borrower collateral token balance < seizeTokens */
        require(
            bTokenCollateral.balanceOf(borrower) >= vars.seizeTokens,
            "seize too much"
        );

        // If this is also the collateral, run seizeInternal to avoid re-entrancy, otherwise make an external call
        uint256 seizeError;
        if (address(bTokenCollateral) == address(this)) {
            seizeError = seizeInternal(
                address(this),
                liquidator,
                borrower,
                vars.seizeTokens
            );
        } else {
            seizeError = bTokenCollateral.seize(
                liquidator,
                borrower,
                vars.seizeTokens
            );
        }

        /* Revert if seize tokens fails (since we cannot be sure of side effects) */
        require(seizeError == uint256(Error.NO_ERROR), "token seizure failed");

        /* We emit a LiquidateBorrow event */
        emit LiquidateBorrow(
            liquidator,
            borrower,
            vars.actualRepayAmount,
            address(bTokenCollateral),
            vars.seizeTokens
        );

        /* We call the defense hook */
        comptroller.liquidateBorrowVerify(
            address(this),
            address(bTokenCollateral),
            liquidator,
            borrower,
            vars.actualRepayAmount,
            vars.seizeTokens
        );

        return (uint256(Error.NO_ERROR), vars.actualRepayAmount);
    }

    /**
     * @notice Transfers collateral tokens (this market) to the liquidator.
     * @dev Will fail unless called by another bToken during the process of liquidation.
     *  Its absolutely critical to use msg.sender as the borrowed bToken and not a parameter.
     * @param liquidator The account receiving seized collateral
     * @param borrower The account having collateral seized
     * @param seizeTokens The number of bTokens to seize
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function seize(
        address liquidator,
        address borrower,
        uint256 seizeTokens
    ) external nonReentrant returns (uint256) {
        return seizeInternal(msg.sender, liquidator, borrower, seizeTokens);
    }

    /*** Admin Functions ***/

    /**
     * @notice Begins transfer of admin rights. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer.
     * @dev Admin function to begin change of admin. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer.
     * @param newPendingAdmin New pending admin.
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _setPendingAdmin(address payable newPendingAdmin)
        external
        returns (uint256)
    {
        // Check caller = admin
        if (msg.sender != admin) {
            return
                fail(
                    Error.UNAUTHORIZED,
                    FailureInfo.SET_PENDING_ADMIN_OWNER_CHECK
                );
        }

        // Save current value, if any, for inclusion in log
        address oldPendingAdmin = pendingAdmin;

        // Store pendingAdmin with value newPendingAdmin
        pendingAdmin = newPendingAdmin;

        // Emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin)
        emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin);

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Accepts transfer of admin rights. msg.sender must be pendingAdmin
     * @dev Admin function for pending admin to accept role and update admin
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _acceptAdmin() external returns (uint256) {
        // Check caller is pendingAdmin and pendingAdmin ≠ address(0)
        if (msg.sender != pendingAdmin || msg.sender == address(0)) {
            return
                fail(
                    Error.UNAUTHORIZED,
                    FailureInfo.ACCEPT_ADMIN_PENDING_ADMIN_CHECK
                );
        }

        // Save current values for inclusion in log
        address oldAdmin = admin;
        address oldPendingAdmin = pendingAdmin;

        // Store admin with value pendingAdmin
        admin = pendingAdmin;

        // Clear the pending value
        pendingAdmin = address(0);

        emit NewAdmin(oldAdmin, admin);
        emit NewPendingAdmin(oldPendingAdmin, pendingAdmin);

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Sets a new comptroller for the market
     * @dev Admin function to set a new comptroller
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _setComptroller(ComptrollerInterface newComptroller)
        public
        returns (uint256)
    {
        // Check caller is admin
        if (msg.sender != admin) {
            return
                fail(
                    Error.UNAUTHORIZED,
                    FailureInfo.SET_COMPTROLLER_OWNER_CHECK
                );
        }

        ComptrollerInterface oldComptroller = comptroller;
        // Ensure invoke comptroller.isComptroller() returns true
        require(newComptroller.isComptroller(), "not comptroller");

        // Set market's comptroller to newComptroller
        comptroller = newComptroller;

        // Emit NewComptroller(oldComptroller, newComptroller)
        emit NewComptroller(oldComptroller, newComptroller);

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice accrues interest and sets a new reserve factor for the protocol using _setReserveFactorFresh
     * @dev Admin function to accrue interest and set a new reserve factor
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _setReserveFactor(uint256 newReserveFactorMantissa)
        external
        nonReentrant
        returns (uint256)
    {
        accrueInterest();
        // _setReserveFactorFresh emits reserve-factor-specific logs on errors, so we don't need to.
        return _setReserveFactorFresh(newReserveFactorMantissa);
    }

    /**
     * @notice Sets a new reserve factor for the protocol (*requires fresh interest accrual)
     * @dev Admin function to set a new reserve factor
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _setReserveFactorFresh(uint256 newReserveFactorMantissa)
        internal
        returns (uint256)
    {
        // Check caller is admin
        if (msg.sender != admin) {
            return
                fail(
                    Error.UNAUTHORIZED,
                    FailureInfo.SET_RESERVE_FACTOR_ADMIN_CHECK
                );
        }

        // Verify market's block timestamp equals current block timestamp
        if (accrualBlockTimestamp != getBlockTimestamp()) {
            return
                fail(
                    Error.MARKET_NOT_FRESH,
                    FailureInfo.SET_RESERVE_FACTOR_FRESH_CHECK
                );
        }

        // Check newReserveFactor ≤ maxReserveFactor
        if (newReserveFactorMantissa > reserveFactorMaxMantissa) {
            return
                fail(
                    Error.BAD_INPUT,
                    FailureInfo.SET_RESERVE_FACTOR_BOUNDS_CHECK
                );
        }

        uint256 oldReserveFactorMantissa = reserveFactorMantissa;
        reserveFactorMantissa = newReserveFactorMantissa;

        emit NewReserveFactor(
            oldReserveFactorMantissa,
            newReserveFactorMantissa
        );

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Accrues interest and reduces reserves by transferring from msg.sender
     * @param addAmount Amount of addition to reserves
     * @param isNative The amount is in native or not
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _addReservesInternal(uint256 addAmount, bool isNative)
        internal
        nonReentrant
        returns (uint256)
    {
        accrueInterest();
        // _addReservesFresh emits reserve-addition-specific logs on errors, so we don't need to.
        (uint256 error, ) = _addReservesFresh(addAmount, isNative);
        return error;
    }

    /**
     * @notice Add reserves by transferring from caller
     * @dev Requires fresh interest accrual
     * @param addAmount Amount of addition to reserves
     * @param isNative The amount is in native or not
     * @return (uint, uint) An error code (0=success, otherwise a failure (see ErrorReporter.sol for details)) and the actual amount added, net token fees
     */
    function _addReservesFresh(uint256 addAmount, bool isNative)
        internal
        returns (uint256, uint256)
    {
        // totalReserves + actualAddAmount
        uint256 totalReservesNew;
        uint256 actualAddAmount;

        // We fail gracefully unless market's block timestamp equals current block timestamp
        if (accrualBlockTimestamp != getBlockTimestamp()) {
            return (
                fail(
                    Error.MARKET_NOT_FRESH,
                    FailureInfo.ADD_RESERVES_FRESH_CHECK
                ),
                actualAddAmount
            );
        }

        /////////////////////////
        // EFFECTS & INTERACTIONS
        // (No safe failures beyond this point)

        /*
         * We call doTransferIn for the caller and the addAmount
         *  Note: The bToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the bToken holds an additional addAmount of cash.
         *  doTransferIn reverts if anything goes wrong, since we can't be sure if side effects occurred.
         *  it returns the amount actually transferred, in case of a fee.
         */

        actualAddAmount = doTransferIn(msg.sender, addAmount, isNative);

        totalReservesNew = add_(totalReserves, actualAddAmount);

        // Store reserves[n+1] = reserves[n] + actualAddAmount
        totalReserves = totalReservesNew;

        /* Emit NewReserves(admin, actualAddAmount, reserves[n+1]) */
        emit ReservesAdded(msg.sender, actualAddAmount, totalReservesNew);

        /* Return (NO_ERROR, actualAddAmount) */
        return (uint256(Error.NO_ERROR), actualAddAmount);
    }

    /**
     * @notice Accrues interest and reduces reserves by transferring to admin
     * @param reduceAmount Amount of reduction to reserves
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _reduceReserves(uint256 reduceAmount)
        external
        nonReentrant
        returns (uint256)
    {
        accrueInterest();
        // _reduceReservesFresh emits reserve-reduction-specific logs on errors, so we don't need to.
        return _reduceReservesFresh(reduceAmount);
    }

    /**
     * @notice Reduces reserves by transferring to admin
     * @dev Requires fresh interest accrual
     * @param reduceAmount Amount of reduction to reserves
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _reduceReservesFresh(uint256 reduceAmount)
        internal
        returns (uint256)
    {
        // totalReserves - reduceAmount
        uint256 totalReservesNew;

        // Check caller is admin
        if (msg.sender != admin) {
            return
                fail(
                    Error.UNAUTHORIZED,
                    FailureInfo.REDUCE_RESERVES_ADMIN_CHECK
                );
        }

        // We fail gracefully unless market's block timestamp equals current block timestamp
        if (accrualBlockTimestamp != getBlockTimestamp()) {
            return
                fail(
                    Error.MARKET_NOT_FRESH,
                    FailureInfo.REDUCE_RESERVES_FRESH_CHECK
                );
        }

        // Fail gracefully if protocol has insufficient underlying cash
        if (getCashPrior() < reduceAmount) {
            return
                fail(
                    Error.TOKEN_INSUFFICIENT_CASH,
                    FailureInfo.REDUCE_RESERVES_CASH_NOT_AVAILABLE
                );
        }

        // Check reduceAmount ≤ reserves[n] (totalReserves)
        if (reduceAmount > totalReserves) {
            return
                fail(Error.BAD_INPUT, FailureInfo.REDUCE_RESERVES_VALIDATION);
        }

        /////////////////////////
        // EFFECTS & INTERACTIONS
        // (No safe failures beyond this point)

        totalReservesNew = sub_(totalReserves, reduceAmount);

        // Store reserves[n+1] = reserves[n] - reduceAmount
        totalReserves = totalReservesNew;

        // doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred.
        // Restrict reducing reserves in wrapped token. Implementations except `BWrappedNative` won't use parameter `isNative`.
        doTransferOut(admin, reduceAmount, false);

        emit ReservesReduced(admin, reduceAmount, totalReservesNew);

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice accrues interest and updates the interest rate model using _setInterestRateModelFresh
     * @dev Admin function to accrue interest and update the interest rate model
     * @param newInterestRateModel the new interest rate model to use
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _setInterestRateModel(InterestRateModel newInterestRateModel)
        public
        returns (uint256)
    {
        accrueInterest();
        // _setInterestRateModelFresh emits interest-rate-model-update-specific logs on errors, so we don't need to.
        return _setInterestRateModelFresh(newInterestRateModel);
    }

    /**
     * @notice updates the interest rate model (*requires fresh interest accrual)
     * @dev Admin function to update the interest rate model
     * @param newInterestRateModel the new interest rate model to use
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _setInterestRateModelFresh(InterestRateModel newInterestRateModel)
        internal
        returns (uint256)
    {
        // Used to store old model for use in the event that is emitted on success
        InterestRateModel oldInterestRateModel;

        // Check caller is admin
        if (msg.sender != admin) {
            return
                fail(
                    Error.UNAUTHORIZED,
                    FailureInfo.SET_INTEREST_RATE_MODEL_OWNER_CHECK
                );
        }

        // We fail gracefully unless market's block timestamp equals current block timestamp
        if (accrualBlockTimestamp != getBlockTimestamp()) {
            return
                fail(
                    Error.MARKET_NOT_FRESH,
                    FailureInfo.SET_INTEREST_RATE_MODEL_FRESH_CHECK
                );
        }

        // Track the market's current interest rate model
        oldInterestRateModel = interestRateModel;

        // Ensure invoke newInterestRateModel.isInterestRateModel() returns true
        require(newInterestRateModel.isInterestRateModel(), "invalid IRM");

        // Set the interest rate model to newInterestRateModel
        interestRateModel = newInterestRateModel;

        // Emit NewMarketInterestRateModel(oldInterestRateModel, newInterestRateModel)
        emit NewMarketInterestRateModel(
            oldInterestRateModel,
            newInterestRateModel
        );

        return uint256(Error.NO_ERROR);
    }

    /*** Safe Token ***/

    /**
     * @notice Gets balance of this contract in terms of the underlying
     * @dev This excludes the value of the current message, if any
     * @return The quantity of underlying owned by this contract
     */
    function getCashPrior() internal view returns (uint256);

    /**
     * @dev Performs a transfer in, reverting upon failure. Returns the amount actually transferred to the protocol, in case of a fee.
     *  This may revert due to insufficient balance or insufficient allowance.
     */
    function doTransferIn(
        address from,
        uint256 amount,
        bool isNative
    ) internal returns (uint256);

    /**
     * @dev Performs a transfer out, ideally returning an explanatory error code upon failure rather than reverting.
     *  If caller has not called checked protocol's balance, may revert due to insufficient cash held in the contract.
     *  If caller has checked protocol's balance, and verified it is >= amount, this should not revert in normal conditions.
     */
    function doTransferOut(
        address payable to,
        uint256 amount,
        bool isNative
    ) internal;

    /**
     * @notice Transfer `tokens` tokens from `src` to `dst` by `spender`
     * @dev Called by both `transfer` and `transferFrom` internally
     */
    function transferTokens(
        address spender,
        address src,
        address dst,
        uint256 tokens
    ) internal returns (uint256);

    /**
     * @notice Get the account's bToken balances
     */
    function getBTokenBalanceInternal(address account)
        internal
        view
        returns (uint256);

    /**
     * @notice User supplies assets into the market and receives bTokens in exchange
     * @dev Assumes interest has already been accrued up to the current second
     */
    function mintFresh(
        address minter,
        uint256 mintAmount,
        bool isNative
    ) internal returns (uint256, uint256);

    /**
     * @notice User redeems bTokens in exchange for the underlying asset
     * @dev Assumes interest has already been accrued up to the current second
     */
    function redeemFresh(
        address payable redeemer,
        uint256 redeemTokensIn,
        uint256 redeemAmountIn,
        bool isNative
    ) internal returns (uint256);

    /**
     * @notice Transfers collateral tokens (this market) to the liquidator.
     * @dev Called only during an in-kind liquidation, or by liquidateBorrow during the liquidation of another BToken.
     *  Its absolutely critical to use msg.sender as the seizer bToken and not a parameter.
     */
    function seizeInternal(
        address seizerToken,
        address liquidator,
        address borrower,
        uint256 seizeTokens
    ) internal returns (uint256);

    /*** Reentrancy Guard ***/

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     */
    modifier nonReentrant() {
        require(_notEntered, "re-entered");
        _notEntered = false;
        _;
        _notEntered = true; // get a gas-refund post-Istanbul
    }
}

File 3 of 15 : ErrorReporter.sol
pragma solidity 0.5.16;

contract ComptrollerErrorReporter {
    enum Error {
        NO_ERROR,
        UNAUTHORIZED,
        COMPTROLLER_MISMATCH,
        INSUFFICIENT_SHORTFALL,
        INSUFFICIENT_LIQUIDITY,
        INVALID_CLOSE_FACTOR,
        INVALID_COLLATERAL_FACTOR,
        INVALID_LIQUIDATION_INCENTIVE,
        MARKET_NOT_ENTERED, // no longer possible
        MARKET_NOT_LISTED,
        MARKET_ALREADY_LISTED,
        MATH_ERROR,
        NONZERO_BORROW_BALANCE,
        PRICE_ERROR,
        REJECTION,
        SNAPSHOT_ERROR,
        TOO_MANY_ASSETS,
        TOO_MUCH_REPAY
    }

    enum FailureInfo {
        ACCEPT_ADMIN_PENDING_ADMIN_CHECK,
        ACCEPT_PENDING_IMPLEMENTATION_ADDRESS_CHECK,
        EXIT_MARKET_BALANCE_OWED,
        EXIT_MARKET_REJECTION,
        SET_CLOSE_FACTOR_OWNER_CHECK,
        SET_CLOSE_FACTOR_VALIDATION,
        SET_COLLATERAL_FACTOR_OWNER_CHECK,
        SET_COLLATERAL_FACTOR_NO_EXISTS,
        SET_COLLATERAL_FACTOR_VALIDATION,
        SET_COLLATERAL_FACTOR_WITHOUT_PRICE,
        SET_IMPLEMENTATION_OWNER_CHECK,
        SET_LIQUIDATION_INCENTIVE_OWNER_CHECK,
        SET_LIQUIDATION_INCENTIVE_VALIDATION,
        SET_MAX_ASSETS_OWNER_CHECK,
        SET_PENDING_ADMIN_OWNER_CHECK,
        SET_PENDING_IMPLEMENTATION_OWNER_CHECK,
        SET_PRICE_ORACLE_OWNER_CHECK,
        SUPPORT_MARKET_EXISTS,
        SUPPORT_MARKET_OWNER_CHECK,
        SET_PAUSE_GUARDIAN_OWNER_CHECK
    }

    /**
     * @dev `error` corresponds to enum Error; `info` corresponds to enum FailureInfo, and `detail` is an arbitrary
     * contract-specific code that enables us to report opaque error codes from upgradeable contracts.
     **/
    event Failure(uint256 error, uint256 info, uint256 detail);

    /**
     * @dev use this when reporting a known error from the money market or a non-upgradeable collaborator
     */
    function fail(Error err, FailureInfo info) internal returns (uint256) {
        emit Failure(uint256(err), uint256(info), 0);

        return uint256(err);
    }

    /**
     * @dev use this when reporting an opaque error from an upgradeable collaborator contract
     */
    function failOpaque(
        Error err,
        FailureInfo info,
        uint256 opaqueError
    ) internal returns (uint256) {
        emit Failure(uint256(err), uint256(info), opaqueError);

        return uint256(err);
    }
}

contract TokenErrorReporter {
    enum Error {
        NO_ERROR,
        UNAUTHORIZED,
        BAD_INPUT,
        COMPTROLLER_REJECTION,
        COMPTROLLER_CALCULATION_ERROR,
        INTEREST_RATE_MODEL_ERROR,
        INVALID_ACCOUNT_PAIR,
        INVALID_CLOSE_AMOUNT_REQUESTED,
        INVALID_COLLATERAL_FACTOR,
        MATH_ERROR,
        MARKET_NOT_FRESH,
        MARKET_NOT_LISTED,
        TOKEN_INSUFFICIENT_ALLOWANCE,
        TOKEN_INSUFFICIENT_BALANCE,
        TOKEN_INSUFFICIENT_CASH,
        TOKEN_TRANSFER_IN_FAILED,
        TOKEN_TRANSFER_OUT_FAILED
    }

    /*
     * Note: FailureInfo (but not Error) is kept in alphabetical order
     *       This is because FailureInfo grows significantly faster, and
     *       the order of Error has some meaning, while the order of FailureInfo
     *       is entirely arbitrary.
     */
    enum FailureInfo {
        ACCEPT_ADMIN_PENDING_ADMIN_CHECK,
        ACCRUE_INTEREST_BORROW_RATE_CALCULATION_FAILED,
        BORROW_ACCRUE_INTEREST_FAILED,
        BORROW_CASH_NOT_AVAILABLE,
        BORROW_FRESHNESS_CHECK,
        BORROW_MARKET_NOT_LISTED,
        BORROW_COMPTROLLER_REJECTION,
        LIQUIDATE_ACCRUE_BORROW_INTEREST_FAILED,
        LIQUIDATE_ACCRUE_COLLATERAL_INTEREST_FAILED,
        LIQUIDATE_COLLATERAL_FRESHNESS_CHECK,
        LIQUIDATE_COMPTROLLER_REJECTION,
        LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED,
        LIQUIDATE_CLOSE_AMOUNT_IS_UINT_MAX,
        LIQUIDATE_CLOSE_AMOUNT_IS_ZERO,
        LIQUIDATE_FRESHNESS_CHECK,
        LIQUIDATE_LIQUIDATOR_IS_BORROWER,
        LIQUIDATE_REPAY_BORROW_FRESH_FAILED,
        LIQUIDATE_SEIZE_COMPTROLLER_REJECTION,
        LIQUIDATE_SEIZE_LIQUIDATOR_IS_BORROWER,
        LIQUIDATE_SEIZE_TOO_MUCH,
        MINT_ACCRUE_INTEREST_FAILED,
        MINT_COMPTROLLER_REJECTION,
        MINT_FRESHNESS_CHECK,
        MINT_TRANSFER_IN_FAILED,
        MINT_TRANSFER_IN_NOT_POSSIBLE,
        REDEEM_ACCRUE_INTEREST_FAILED,
        REDEEM_COMPTROLLER_REJECTION,
        REDEEM_FRESHNESS_CHECK,
        REDEEM_TRANSFER_OUT_NOT_POSSIBLE,
        REDUCE_RESERVES_ACCRUE_INTEREST_FAILED,
        REDUCE_RESERVES_ADMIN_CHECK,
        REDUCE_RESERVES_CASH_NOT_AVAILABLE,
        REDUCE_RESERVES_FRESH_CHECK,
        REDUCE_RESERVES_VALIDATION,
        REPAY_BEHALF_ACCRUE_INTEREST_FAILED,
        REPAY_BORROW_ACCRUE_INTEREST_FAILED,
        REPAY_BORROW_COMPTROLLER_REJECTION,
        REPAY_BORROW_FRESHNESS_CHECK,
        REPAY_BORROW_TRANSFER_IN_NOT_POSSIBLE,
        SET_COLLATERAL_FACTOR_OWNER_CHECK,
        SET_COLLATERAL_FACTOR_VALIDATION,
        SET_COMPTROLLER_OWNER_CHECK,
        SET_INTEREST_RATE_MODEL_ACCRUE_INTEREST_FAILED,
        SET_INTEREST_RATE_MODEL_FRESH_CHECK,
        SET_INTEREST_RATE_MODEL_OWNER_CHECK,
        SET_MAX_ASSETS_OWNER_CHECK,
        SET_ORACLE_MARKET_NOT_LISTED,
        SET_PENDING_ADMIN_OWNER_CHECK,
        SET_RESERVE_FACTOR_ACCRUE_INTEREST_FAILED,
        SET_RESERVE_FACTOR_ADMIN_CHECK,
        SET_RESERVE_FACTOR_FRESH_CHECK,
        SET_RESERVE_FACTOR_BOUNDS_CHECK,
        TRANSFER_COMPTROLLER_REJECTION,
        TRANSFER_NOT_ALLOWED,
        ADD_RESERVES_ACCRUE_INTEREST_FAILED,
        ADD_RESERVES_FRESH_CHECK,
        ADD_RESERVES_TRANSFER_IN_NOT_POSSIBLE
    }

    /**
     * @dev `error` corresponds to enum Error; `info` corresponds to enum FailureInfo, and `detail` is an arbitrary
     * contract-specific code that enables us to report opaque error codes from upgradeable contracts.
     **/
    event Failure(uint256 error, uint256 info, uint256 detail);

    /**
     * @dev use this when reporting a known error from the money market or a non-upgradeable collaborator
     */
    function fail(Error err, FailureInfo info) internal returns (uint256) {
        emit Failure(uint256(err), uint256(info), 0);

        return uint256(err);
    }

    /**
     * @dev use this when reporting an opaque error from an upgradeable collaborator contract
     */
    function failOpaque(
        Error err,
        FailureInfo info,
        uint256 opaqueError
    ) internal returns (uint256) {
        emit Failure(uint256(err), uint256(info), opaqueError);

        return uint256(err);
    }
}

File 4 of 15 : Exponential.sol
pragma solidity 0.5.16;

import "./CarefulMath.sol";

/**
 * @title Exponential module for storing fixed-precision decimals
 * @author Compound
 * @notice Exp is a struct which stores decimals with a fixed precision of 18 decimal places.
 *         Thus, if we wanted to store the 5.1, mantissa would store 5.1e18. That is:
 *         `Exp({mantissa: 5100000000000000000})`.
 */
contract Exponential is CarefulMath {
    uint256 constant expScale = 1e18;
    uint256 constant doubleScale = 1e36;
    uint256 constant halfExpScale = expScale / 2;
    uint256 constant mantissaOne = expScale;

    struct Exp {
        uint256 mantissa;
    }

    struct Double {
        uint256 mantissa;
    }

    /**
     * @dev Creates an exponential from numerator and denominator values.
     *      Note: Returns an error if (`num` * 10e18) > MAX_INT,
     *            or if `denom` is zero.
     */
    function getExp(uint256 num, uint256 denom)
        internal
        pure
        returns (MathError, Exp memory)
    {
        (MathError err0, uint256 scaledNumerator) = mulUInt(num, expScale);
        if (err0 != MathError.NO_ERROR) {
            return (err0, Exp({mantissa: 0}));
        }

        (MathError err1, uint256 rational) = divUInt(scaledNumerator, denom);
        if (err1 != MathError.NO_ERROR) {
            return (err1, Exp({mantissa: 0}));
        }

        return (MathError.NO_ERROR, Exp({mantissa: rational}));
    }

    /**
     * @dev Adds two exponentials, returning a new exponential.
     */
    function addExp(Exp memory a, Exp memory b)
        internal
        pure
        returns (MathError, Exp memory)
    {
        (MathError error, uint256 result) = addUInt(a.mantissa, b.mantissa);

        return (error, Exp({mantissa: result}));
    }

    /**
     * @dev Subtracts two exponentials, returning a new exponential.
     */
    function subExp(Exp memory a, Exp memory b)
        internal
        pure
        returns (MathError, Exp memory)
    {
        (MathError error, uint256 result) = subUInt(a.mantissa, b.mantissa);

        return (error, Exp({mantissa: result}));
    }

    /**
     * @dev Multiply an Exp by a scalar, returning a new Exp.
     */
    function mulScalar(Exp memory a, uint256 scalar)
        internal
        pure
        returns (MathError, Exp memory)
    {
        (MathError err0, uint256 scaledMantissa) = mulUInt(a.mantissa, scalar);
        if (err0 != MathError.NO_ERROR) {
            return (err0, Exp({mantissa: 0}));
        }

        return (MathError.NO_ERROR, Exp({mantissa: scaledMantissa}));
    }

    /**
     * @dev Multiply an Exp by a scalar, then truncate to return an unsigned integer.
     */
    function mulScalarTruncate(Exp memory a, uint256 scalar)
        internal
        pure
        returns (MathError, uint256)
    {
        (MathError err, Exp memory product) = mulScalar(a, scalar);
        if (err != MathError.NO_ERROR) {
            return (err, 0);
        }

        return (MathError.NO_ERROR, truncate(product));
    }

    /**
     * @dev Multiply an Exp by a scalar, truncate, then add an to an unsigned integer, returning an unsigned integer.
     */
    function mulScalarTruncateAddUInt(
        Exp memory a,
        uint256 scalar,
        uint256 addend
    ) internal pure returns (MathError, uint256) {
        (MathError err, Exp memory product) = mulScalar(a, scalar);
        if (err != MathError.NO_ERROR) {
            return (err, 0);
        }

        return addUInt(truncate(product), addend);
    }

    /**
     * @dev Multiply an Exp by a scalar, then truncate to return an unsigned integer.
     */
    function mul_ScalarTruncate(Exp memory a, uint256 scalar)
        internal
        pure
        returns (uint256)
    {
        Exp memory product = mul_(a, scalar);
        return truncate(product);
    }

    /**
     * @dev Multiply an Exp by a scalar, truncate, then add an to an unsigned integer, returning an unsigned integer.
     */
    function mul_ScalarTruncateAddUInt(
        Exp memory a,
        uint256 scalar,
        uint256 addend
    ) internal pure returns (uint256) {
        Exp memory product = mul_(a, scalar);
        return add_(truncate(product), addend);
    }

    /**
     * @dev Divide an Exp by a scalar, returning a new Exp.
     */
    function divScalar(Exp memory a, uint256 scalar)
        internal
        pure
        returns (MathError, Exp memory)
    {
        (MathError err0, uint256 descaledMantissa) = divUInt(
            a.mantissa,
            scalar
        );
        if (err0 != MathError.NO_ERROR) {
            return (err0, Exp({mantissa: 0}));
        }

        return (MathError.NO_ERROR, Exp({mantissa: descaledMantissa}));
    }

    /**
     * @dev Divide a scalar by an Exp, returning a new Exp.
     */
    function divScalarByExp(uint256 scalar, Exp memory divisor)
        internal
        pure
        returns (MathError, Exp memory)
    {
        /*
          We are doing this as:
          getExp(mulUInt(expScale, scalar), divisor.mantissa)

          How it works:
          Exp = a / b;
          Scalar = s;
          `s / (a / b)` = `b * s / a` and since for an Exp `a = mantissa, b = expScale`
        */
        (MathError err0, uint256 numerator) = mulUInt(expScale, scalar);
        if (err0 != MathError.NO_ERROR) {
            return (err0, Exp({mantissa: 0}));
        }
        return getExp(numerator, divisor.mantissa);
    }

    /**
     * @dev Divide a scalar by an Exp, then truncate to return an unsigned integer.
     */
    function divScalarByExpTruncate(uint256 scalar, Exp memory divisor)
        internal
        pure
        returns (MathError, uint256)
    {
        (MathError err, Exp memory fraction) = divScalarByExp(scalar, divisor);
        if (err != MathError.NO_ERROR) {
            return (err, 0);
        }

        return (MathError.NO_ERROR, truncate(fraction));
    }

    /**
     * @dev Divide a scalar by an Exp, returning a new Exp.
     */
    function div_ScalarByExp(uint256 scalar, Exp memory divisor)
        internal
        pure
        returns (Exp memory)
    {
        /*
          We are doing this as:
          getExp(mulUInt(expScale, scalar), divisor.mantissa)

          How it works:
          Exp = a / b;
          Scalar = s;
          `s / (a / b)` = `b * s / a` and since for an Exp `a = mantissa, b = expScale`
        */
        uint256 numerator = mul_(expScale, scalar);
        return Exp({mantissa: div_(numerator, divisor)});
    }

    /**
     * @dev Divide a scalar by an Exp, then truncate to return an unsigned integer.
     */
    function div_ScalarByExpTruncate(uint256 scalar, Exp memory divisor)
        internal
        pure
        returns (uint256)
    {
        Exp memory fraction = div_ScalarByExp(scalar, divisor);
        return truncate(fraction);
    }

    /**
     * @dev Multiplies two exponentials, returning a new exponential.
     */
    function mulExp(Exp memory a, Exp memory b)
        internal
        pure
        returns (MathError, Exp memory)
    {
        (MathError err0, uint256 doubleScaledProduct) = mulUInt(
            a.mantissa,
            b.mantissa
        );
        if (err0 != MathError.NO_ERROR) {
            return (err0, Exp({mantissa: 0}));
        }

        // We add half the scale before dividing so that we get rounding instead of truncation.
        //  See "Listing 6" and text above it at https://accu.org/index.php/journals/1717
        // Without this change, a result like 6.6...e-19 will be truncated to 0 instead of being rounded to 1e-18.
        (MathError err1, uint256 doubleScaledProductWithHalfScale) = addUInt(
            halfExpScale,
            doubleScaledProduct
        );
        if (err1 != MathError.NO_ERROR) {
            return (err1, Exp({mantissa: 0}));
        }

        (MathError err2, uint256 product) = divUInt(
            doubleScaledProductWithHalfScale,
            expScale
        );
        // The only error `div` can return is MathError.DIVISION_BY_ZERO but we control `expScale` and it is not zero.
        assert(err2 == MathError.NO_ERROR);

        return (MathError.NO_ERROR, Exp({mantissa: product}));
    }

    /**
     * @dev Multiplies two exponentials given their mantissas, returning a new exponential.
     */
    function mulExp(uint256 a, uint256 b)
        internal
        pure
        returns (MathError, Exp memory)
    {
        return mulExp(Exp({mantissa: a}), Exp({mantissa: b}));
    }

    /**
     * @dev Multiplies three exponentials, returning a new exponential.
     */
    function mulExp3(
        Exp memory a,
        Exp memory b,
        Exp memory c
    ) internal pure returns (MathError, Exp memory) {
        (MathError err, Exp memory ab) = mulExp(a, b);
        if (err != MathError.NO_ERROR) {
            return (err, ab);
        }
        return mulExp(ab, c);
    }

    /**
     * @dev Divides two exponentials, returning a new exponential.
     *     (a/scale) / (b/scale) = (a/scale) * (scale/b) = a/b,
     *  which we can scale as an Exp by calling getExp(a.mantissa, b.mantissa)
     */
    function divExp(Exp memory a, Exp memory b)
        internal
        pure
        returns (MathError, Exp memory)
    {
        return getExp(a.mantissa, b.mantissa);
    }

    /**
     * @dev Truncates the given exp to a whole number value.
     *      For example, truncate(Exp{mantissa: 15 * expScale}) = 15
     */
    function truncate(Exp memory exp) internal pure returns (uint256) {
        // Note: We are not using careful math here as we're performing a division that cannot fail
        return exp.mantissa / expScale;
    }

    /**
     * @dev Checks if first Exp is less than second Exp.
     */
    function lessThanExp(Exp memory left, Exp memory right)
        internal
        pure
        returns (bool)
    {
        return left.mantissa < right.mantissa;
    }

    /**
     * @dev Checks if left Exp <= right Exp.
     */
    function lessThanOrEqualExp(Exp memory left, Exp memory right)
        internal
        pure
        returns (bool)
    {
        return left.mantissa <= right.mantissa;
    }

    /**
     * @dev returns true if Exp is exactly zero
     */
    function isZeroExp(Exp memory value) internal pure returns (bool) {
        return value.mantissa == 0;
    }

    function safe224(uint256 n, string memory errorMessage)
        internal
        pure
        returns (uint224)
    {
        require(n < 2**224, errorMessage);
        return uint224(n);
    }

    function safe32(uint256 n, string memory errorMessage)
        internal
        pure
        returns (uint32)
    {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function add_(Exp memory a, Exp memory b)
        internal
        pure
        returns (Exp memory)
    {
        return Exp({mantissa: add_(a.mantissa, b.mantissa)});
    }

    function add_(Double memory a, Double memory b)
        internal
        pure
        returns (Double memory)
    {
        return Double({mantissa: add_(a.mantissa, b.mantissa)});
    }

    function add_(uint256 a, uint256 b) internal pure returns (uint256) {
        return add_(a, b, "addition overflow");
    }

    function add_(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, errorMessage);
        return c;
    }

    function sub_(Exp memory a, Exp memory b)
        internal
        pure
        returns (Exp memory)
    {
        return Exp({mantissa: sub_(a.mantissa, b.mantissa)});
    }

    function sub_(Double memory a, Double memory b)
        internal
        pure
        returns (Double memory)
    {
        return Double({mantissa: sub_(a.mantissa, b.mantissa)});
    }

    function sub_(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub_(a, b, "subtraction underflow");
    }

    function sub_(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    function mul_(Exp memory a, Exp memory b)
        internal
        pure
        returns (Exp memory)
    {
        return Exp({mantissa: mul_(a.mantissa, b.mantissa) / expScale});
    }

    function mul_(Exp memory a, uint256 b) internal pure returns (Exp memory) {
        return Exp({mantissa: mul_(a.mantissa, b)});
    }

    function mul_(uint256 a, Exp memory b) internal pure returns (uint256) {
        return mul_(a, b.mantissa) / expScale;
    }

    function mul_(Double memory a, Double memory b)
        internal
        pure
        returns (Double memory)
    {
        return Double({mantissa: mul_(a.mantissa, b.mantissa) / doubleScale});
    }

    function mul_(Double memory a, uint256 b)
        internal
        pure
        returns (Double memory)
    {
        return Double({mantissa: mul_(a.mantissa, b)});
    }

    function mul_(uint256 a, Double memory b) internal pure returns (uint256) {
        return mul_(a, b.mantissa) / doubleScale;
    }

    function mul_(uint256 a, uint256 b) internal pure returns (uint256) {
        return mul_(a, b, "multiplication overflow");
    }

    function mul_(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        if (a == 0 || b == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b, errorMessage);
        return c;
    }

    function div_(Exp memory a, Exp memory b)
        internal
        pure
        returns (Exp memory)
    {
        return Exp({mantissa: div_(mul_(a.mantissa, expScale), b.mantissa)});
    }

    function div_(Exp memory a, uint256 b) internal pure returns (Exp memory) {
        return Exp({mantissa: div_(a.mantissa, b)});
    }

    function div_(uint256 a, Exp memory b) internal pure returns (uint256) {
        return div_(mul_(a, expScale), b.mantissa);
    }

    function div_(Double memory a, Double memory b)
        internal
        pure
        returns (Double memory)
    {
        return
            Double({mantissa: div_(mul_(a.mantissa, doubleScale), b.mantissa)});
    }

    function div_(Double memory a, uint256 b)
        internal
        pure
        returns (Double memory)
    {
        return Double({mantissa: div_(a.mantissa, b)});
    }

    function div_(uint256 a, Double memory b) internal pure returns (uint256) {
        return div_(mul_(a, doubleScale), b.mantissa);
    }

    function div_(uint256 a, uint256 b) internal pure returns (uint256) {
        return div_(a, b, "divide by zero");
    }

    function div_(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    function fraction(uint256 a, uint256 b)
        internal
        pure
        returns (Double memory)
    {
        return Double({mantissa: div_(mul_(a, doubleScale), b)});
    }

    // implementation from https://github.com/Uniswap/uniswap-lib/commit/99f3f28770640ba1bb1ff460ac7c5292fb8291a0
    // original implementation: https://github.com/abdk-consulting/abdk-libraries-solidity/blob/master/ABDKMath64x64.sol#L687
    function sqrt(uint256 x) internal pure returns (uint256) {
        if (x == 0) return 0;
        uint256 xx = x;
        uint256 r = 1;

        if (xx >= 0x100000000000000000000000000000000) {
            xx >>= 128;
            r <<= 64;
        }
        if (xx >= 0x10000000000000000) {
            xx >>= 64;
            r <<= 32;
        }
        if (xx >= 0x100000000) {
            xx >>= 32;
            r <<= 16;
        }
        if (xx >= 0x10000) {
            xx >>= 16;
            r <<= 8;
        }
        if (xx >= 0x100) {
            xx >>= 8;
            r <<= 4;
        }
        if (xx >= 0x10) {
            xx >>= 4;
            r <<= 2;
        }
        if (xx >= 0x8) {
            r <<= 1;
        }

        r = (r + x / r) >> 1;
        r = (r + x / r) >> 1;
        r = (r + x / r) >> 1;
        r = (r + x / r) >> 1;
        r = (r + x / r) >> 1;
        r = (r + x / r) >> 1;
        r = (r + x / r) >> 1; // Seven iterations should be enough
        uint256 r1 = x / r;
        return (r < r1 ? r : r1);
    }
}

File 5 of 15 : PriceOracle.sol
pragma solidity 0.5.16;

import "../BToken.sol";

contract PriceOracle {
    /**
     * @notice Get the underlying price of a bToken asset
     * @param bToken The bToken to get the underlying price of
     * @return The underlying asset price mantissa (scaled by 1e18).
     *  Zero means the price is unavailable.
     */
    function getUnderlyingPrice(BToken bToken) external view returns (uint256);
}

File 6 of 15 : ComptrollerInterface.sol
pragma solidity 0.5.16;

contract ComptrollerInterface {
    /// @notice Indicator that this is a Comptroller contract (for inspection)
    bool public constant isComptroller = true;

    /*** Assets You Are In ***/

    function enterMarkets(address[] calldata bTokens)
        external
        returns (uint256[] memory);

    function exitMarket(address bToken) external returns (uint256);

    /*** Policy Hooks ***/

    function mintAllowed(
        address bToken,
        address minter,
        uint256 mintAmount
    ) external returns (uint256);

    function mintVerify(
        address bToken,
        address minter,
        uint256 mintAmount,
        uint256 mintTokens
    ) external;

    function redeemAllowed(
        address bToken,
        address redeemer,
        uint256 redeemTokens
    ) external returns (uint256);

    function redeemVerify(
        address bToken,
        address redeemer,
        uint256 redeemAmount,
        uint256 redeemTokens
    ) external;

    function borrowAllowed(
        address bToken,
        address borrower,
        uint256 borrowAmount
    ) external returns (uint256);

    function borrowVerify(
        address bToken,
        address borrower,
        uint256 borrowAmount
    ) external;

    function repayBorrowAllowed(
        address bToken,
        address payer,
        address borrower,
        uint256 repayAmount
    ) external returns (uint256);

    function repayBorrowVerify(
        address bToken,
        address payer,
        address borrower,
        uint256 repayAmount,
        uint256 borrowerIndex
    ) external;

    function liquidateBorrowAllowed(
        address bTokenBorrowed,
        address bTokenCollateral,
        address liquidator,
        address borrower,
        uint256 repayAmount
    ) external returns (uint256);

    function liquidateBorrowVerify(
        address bTokenBorrowed,
        address bTokenCollateral,
        address liquidator,
        address borrower,
        uint256 repayAmount,
        uint256 seizeTokens
    ) external;

    function seizeAllowed(
        address bTokenCollateral,
        address bTokenBorrowed,
        address liquidator,
        address borrower,
        uint256 seizeTokens
    ) external returns (uint256);

    function seizeVerify(
        address bTokenCollateral,
        address bTokenBorrowed,
        address liquidator,
        address borrower,
        uint256 seizeTokens
    ) external;

    function transferAllowed(
        address bToken,
        address src,
        address dst,
        uint256 transferTokens
    ) external returns (uint256);

    function transferVerify(
        address bToken,
        address src,
        address dst,
        uint256 transferTokens
    ) external;

    /*** Liquidity/Liquidation Calculations ***/

    function liquidateCalculateSeizeTokens(
        address bTokenBorrowed,
        address bTokenCollateral,
        uint256 repayAmount
    ) external view returns (uint256, uint256);
}

File 7 of 15 : ComptrollerStorage.sol
pragma solidity 0.5.16;

import "./BToken.sol";
import "./PriceOracle/PriceOracle.sol";

contract UnitrollerAdminStorage {
    /**
     * @notice Administrator for this contract
     */
    address public admin;

    /**
     * @notice Pending administrator for this contract
     */
    address public pendingAdmin;

    /**
     * @notice Active brains of Unitroller
     */
    address public comptrollerImplementation;

    /**
     * @notice Pending brains of Unitroller
     */
    address public pendingComptrollerImplementation;
}

contract ComptrollerV1Storage is UnitrollerAdminStorage {
    /**
     * @notice Oracle which gives the price of any given asset
     */
    PriceOracle public oracle;

    /**
     * @notice Multiplier used to calculate the maximum repayAmount when liquidating a borrow
     */
    uint256 public closeFactorMantissa;

    /**
     * @notice Multiplier representing the discount on collateral that a liquidator receives
     */
    uint256 public liquidationIncentiveMantissa;

    /**
     * @notice Per-account mapping of "assets you are in"
     */
    mapping(address => BToken[]) public accountAssets;

    enum Version {
        VANILLA,
        COLLATERALCAP,
        WRAPPEDNATIVE
    }

    struct Market {
        /// @notice Whether or not this market is listed
        bool isListed;
        /**
         * @notice Multiplier representing the most one can borrow against their collateral in this market.
         *  For instance, 0.9 to allow borrowing 90% of collateral value.
         *  Must be between 0 and 1, and stored as a mantissa.
         */
        uint256 collateralFactorMantissa;
        /// @notice Per-market mapping of "accounts in this asset"
        mapping(address => bool) accountMembership;
        /// @notice BToken version
        Version version;
    }

    /**
     * @notice Official mapping of bTokens -> Market metadata
     * @dev Used e.g. to determine if a market is supported
     */
    mapping(address => Market) public markets;

    /**
     * @notice The Guardian can pause certain actions as a safety mechanism.
     *  Actions which allow users to remove their own assets cannot be paused.
     *  Liquidation / seizing / transfer can only be paused globally, not by market.
     */
    address public guardian;
    bool public _mintGuardianPaused;
    bool public _borrowGuardianPaused;
    bool public transferGuardianPaused;
    bool public seizeGuardianPaused;
    mapping(address => bool) public mintGuardianPaused;
    mapping(address => bool) public borrowGuardianPaused;

    struct CompMarketState {
        /// @notice The market's last updated compBorrowIndex or compSupplyIndex
        uint224 index;
        /// @notice The block timestamp the index was last updated at
        uint32 block;
    }

    /// @notice A list of all markets
    BToken[] public allMarkets;

    /// @notice The portion of compRate that each market currently receives
    /// @dev This storage is deprecated.
    mapping(address => uint256) public compSpeeds;

    /// @notice The COMP market supply state for each market
    /// @dev This storage is deprecated.
    mapping(address => CompMarketState) public compSupplyState;

    /// @notice The COMP market borrow state for each market
    /// @dev This storage is deprecated.
    mapping(address => CompMarketState) public compBorrowState;

    /// @notice The COMP borrow index for each market for each supplier as of the last time they accrued COMP
    /// @dev This storage is deprecated.
    mapping(address => mapping(address => uint256)) public compSupplierIndex;

    /// @notice The COMP borrow index for each market for each borrower as of the last time they accrued COMP
    /// @dev This storage is deprecated.
    mapping(address => mapping(address => uint256)) public compBorrowerIndex;

    /// @notice The COMP accrued but not yet transferred to each user
    /// @dev This storage is deprecated.
    mapping(address => uint256) public compAccrued;

    /// @notice The borrowCapGuardian can set borrowCaps to any number for any market. Lowering the borrow cap could disable borrowing on the given market.
    address public borrowCapGuardian;

    /// @notice Borrow caps enforced by borrowAllowed for each bToken address. Defaults to zero which corresponds to unlimited borrowing.
    mapping(address => uint256) public borrowCaps;

    /// @notice The supplyCapGuardian can set supplyCaps to any number for any market. Lowering the supply cap could disable supplying to the given market.
    address public supplyCapGuardian;

    /// @notice Supply caps enforced by mintAllowed for each bToken address. Defaults to zero which corresponds to unlimited supplying.
    mapping(address => uint256) public supplyCaps;

    /// @notice creditLimits allowed specific protocols to borrow and repay without collateral.
    /// @dev This storage is deprecated.
    mapping(address => uint256) internal _oldCreditLimits;

    /// @notice flashloanGuardianPaused can pause flash loan as a safety mechanism.
    mapping(address => bool) public flashloanGuardianPaused;

    /// @notice liquidityMining the liquidity mining module that handles the LM rewards distribution.
    address public liquidityMining;

    /// @notice creditLimits allowed specific protocols to borrow and repay specific markets without collateral.
    mapping(address => mapping(address => uint256)) internal _creditLimits;

    /// @notice isMarketDelisted records the market which has been delisted by us.
    mapping(address => bool) public isMarketDelisted;

    /// @notice creditLimitManager is the role who is in charge of increasing the credit limit.
    address public creditLimitManager;
}

File 8 of 15 : LiquidityMiningInterface.sol
pragma solidity 0.5.16;

contract LiquidityMiningInterface {
    function comptroller() external view returns (address);

    function updateSupplyIndex(address bToken, address[] calldata accounts)
        external;

    function updateBorrowIndex(address bToken, address[] calldata accounts)
        external;
}

File 9 of 15 : Unitroller.sol
pragma solidity 0.5.16;

import "./ErrorReporter.sol";
import "./ComptrollerStorage.sol";

/**
 * @title ComptrollerCore
 * @dev Storage for the comptroller is at this address, while execution is delegated to the `comptrollerImplementation`.
 * BTokens should reference this contract as their comptroller.
 */
contract Unitroller is UnitrollerAdminStorage, ComptrollerErrorReporter {
    /**
     * @notice Emitted when pendingComptrollerImplementation is changed
     */
    event NewPendingImplementation(
        address oldPendingImplementation,
        address newPendingImplementation
    );

    /**
     * @notice Emitted when pendingComptrollerImplementation is accepted, which means comptroller implementation is updated
     */
    event NewImplementation(
        address oldImplementation,
        address newImplementation
    );

    /**
     * @notice Emitted when pendingAdmin is changed
     */
    event NewPendingAdmin(address oldPendingAdmin, address newPendingAdmin);

    /**
     * @notice Emitted when pendingAdmin is accepted, which means admin is updated
     */
    event NewAdmin(address oldAdmin, address newAdmin);

    constructor() public {
        // Set admin to caller
        admin = msg.sender;
    }

    /*** Admin Functions ***/
    function _setPendingImplementation(address newPendingImplementation)
        public
        returns (uint256)
    {
        if (msg.sender != admin) {
            return
                fail(
                    Error.UNAUTHORIZED,
                    FailureInfo.SET_PENDING_IMPLEMENTATION_OWNER_CHECK
                );
        }

        address oldPendingImplementation = pendingComptrollerImplementation;

        pendingComptrollerImplementation = newPendingImplementation;

        emit NewPendingImplementation(
            oldPendingImplementation,
            pendingComptrollerImplementation
        );

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Accepts new implementation of comptroller. msg.sender must be pendingImplementation
     * @dev Admin function for new implementation to accept it's role as implementation
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _acceptImplementation() public returns (uint256) {
        // Check caller is pendingImplementation and pendingImplementation ≠ address(0)
        if (
            msg.sender != pendingComptrollerImplementation ||
            pendingComptrollerImplementation == address(0)
        ) {
            return
                fail(
                    Error.UNAUTHORIZED,
                    FailureInfo.ACCEPT_PENDING_IMPLEMENTATION_ADDRESS_CHECK
                );
        }

        // Save current values for inclusion in log
        address oldImplementation = comptrollerImplementation;
        address oldPendingImplementation = pendingComptrollerImplementation;

        comptrollerImplementation = pendingComptrollerImplementation;

        pendingComptrollerImplementation = address(0);

        emit NewImplementation(oldImplementation, comptrollerImplementation);
        emit NewPendingImplementation(
            oldPendingImplementation,
            pendingComptrollerImplementation
        );

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Begins transfer of admin rights. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer.
     * @dev Admin function to begin change of admin. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer.
     * @param newPendingAdmin New pending admin.
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _setPendingAdmin(address newPendingAdmin)
        public
        returns (uint256)
    {
        // Check caller = admin
        if (msg.sender != admin) {
            return
                fail(
                    Error.UNAUTHORIZED,
                    FailureInfo.SET_PENDING_ADMIN_OWNER_CHECK
                );
        }

        // Save current value, if any, for inclusion in log
        address oldPendingAdmin = pendingAdmin;

        // Store pendingAdmin with value newPendingAdmin
        pendingAdmin = newPendingAdmin;

        // Emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin)
        emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin);

        return uint256(Error.NO_ERROR);
    }

    /**
     * @notice Accepts transfer of admin rights. msg.sender must be pendingAdmin
     * @dev Admin function for pending admin to accept role and update admin
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _acceptAdmin() public returns (uint256) {
        // Check caller is pendingAdmin and pendingAdmin ≠ address(0)
        if (msg.sender != pendingAdmin || msg.sender == address(0)) {
            return
                fail(
                    Error.UNAUTHORIZED,
                    FailureInfo.ACCEPT_ADMIN_PENDING_ADMIN_CHECK
                );
        }

        // Save current values for inclusion in log
        address oldAdmin = admin;
        address oldPendingAdmin = pendingAdmin;

        // Store admin with value pendingAdmin
        admin = pendingAdmin;

        // Clear the pending value
        pendingAdmin = address(0);

        emit NewAdmin(oldAdmin, admin);
        emit NewPendingAdmin(oldPendingAdmin, pendingAdmin);

        return uint256(Error.NO_ERROR);
    }

    /**
     * @dev Delegates execution to an implementation contract.
     * It returns to the external caller whatever the implementation returns
     * or forwards reverts.
     */
    function() external payable {
        // delegate all other functions to current implementation
        (bool success, ) = comptrollerImplementation.delegatecall(msg.data);

        assembly {
            let free_mem_ptr := mload(0x40)
            returndatacopy(free_mem_ptr, 0, returndatasize)

            switch success
            case 0 {
                revert(free_mem_ptr, returndatasize)
            }
            default {
                return(free_mem_ptr, returndatasize)
            }
        }
    }
}

File 10 of 15 : BTokenInterfaces.sol
pragma solidity 0.5.16;

import "./ComptrollerInterface.sol";
import "./InterestRateModel.sol";
import "./ERC3156FlashBorrowerInterface.sol";

contract BTokenStorage {
    /**
     * @dev Guard variable for re-entrancy checks
     */
    bool internal _notEntered;

    /**
     * @notice EIP-20 token name for this token
     */
    string public name;

    /**
     * @notice EIP-20 token symbol for this token
     */
    string public symbol;

    /**
     * @notice EIP-20 token decimals for this token
     */
    uint8 public decimals;

    /**
     * @notice Maximum borrow rate that can ever be applied (.0005% / block)
     */

    uint256 internal constant borrowRateMaxMantissa = 0.0005e16;

    /**
     * @notice Maximum fraction of interest that can be set aside for reserves
     */
    uint256 internal constant reserveFactorMaxMantissa = 1e18;

    /**
     * @notice Administrator for this contract
     */
    address payable public admin;

    /**
     * @notice Pending administrator for this contract
     */
    address payable public pendingAdmin;

    /**
     * @notice Contract which oversees inter-bToken operations
     */
    ComptrollerInterface public comptroller;

    /**
     * @notice Model which tells what the current interest rate should be
     */
    InterestRateModel public interestRateModel;

    /**
     * @notice Initial exchange rate used when minting the first BTokens (used when totalSupply = 0)
     */
    uint256 internal initialExchangeRateMantissa;

    /**
     * @notice Fraction of interest currently set aside for reserves
     */
    uint256 public reserveFactorMantissa;

    /**
     * @notice Block timestamp that interest was last accrued at
     */
    uint256 public accrualBlockTimestamp;

    /**
     * @notice Accumulator of the total earned interest rate since the opening of the market
     */
    uint256 public borrowIndex;

    /**
     * @notice Total amount of outstanding borrows of the underlying in this market
     */
    uint256 public totalBorrows;

    /**
     * @notice Total amount of reserves of the underlying held in this market
     */
    uint256 public totalReserves;

    /**
     * @notice Total number of tokens in circulation
     */
    uint256 public totalSupply;

    /**
     * @notice Official record of token balances for each account
     */
    mapping(address => uint256) internal accountTokens;

    /**
     * @notice Approved token transfer amounts on behalf of others
     */
    mapping(address => mapping(address => uint256)) internal transferAllowances;

    /**
     * @notice Container for borrow balance information
     * @member principal Total balance (with accrued interest), after applying the most recent balance-changing action
     * @member interestIndex Global borrowIndex as of the most recent balance-changing action
     */
    struct BorrowSnapshot {
        uint256 principal;
        uint256 interestIndex;
    }

    /**
     * @notice Mapping of account addresses to outstanding borrow balances
     */
    mapping(address => BorrowSnapshot) internal accountBorrows;
}

contract BErc20Storage {
    /**
     * @notice Underlying asset for this BToken
     */
    address public underlying;

    /**
     * @notice Implementation address for this contract
     */
    address public implementation;
}

contract BSupplyCapStorage {
    /**
     * @notice Internal cash counter for this BToken. Should equal underlying.balanceOf(address(this)) for BERC20.
     */
    uint256 public internalCash;
}

contract BCollateralCapStorage {
    /**
     * @notice Total number of tokens used as collateral in circulation.
     */
    uint256 public totalCollateralTokens;

    /**
     * @notice Record of token balances which could be treated as collateral for each account.
     *         If collateral cap is not set, the value should be equal to accountTokens.
     */
    mapping(address => uint256) public accountCollateralTokens;

    /**
     * @notice Check if accountCollateralTokens have been initialized.
     */
    mapping(address => bool) public isCollateralTokenInit;

    /**
     * @notice Collateral cap for this BToken, zero for no cap.
     */
    uint256 public collateralCap;
}

/*** Interface ***/

contract BTokenInterface is BTokenStorage {
    /**
     * @notice Indicator that this is a BToken contract (for inspection)
     */
    bool public constant isBToken = true;

    /*** Market Events ***/

    /**
     * @notice Event emitted when interest is accrued
     */
    event AccrueInterest(
        uint256 cashPrior,
        uint256 interestAccumulated,
        uint256 borrowIndex,
        uint256 totalBorrows
    );

    /**
     * @notice Event emitted when tokens are minted
     */
    event Mint(address minter, uint256 mintAmount, uint256 mintTokens);

    /**
     * @notice Event emitted when tokens are redeemed
     */
    event Redeem(address redeemer, uint256 redeemAmount, uint256 redeemTokens);

    /**
     * @notice Event emitted when underlying is borrowed
     */
    event Borrow(
        address borrower,
        uint256 borrowAmount,
        uint256 accountBorrows,
        uint256 totalBorrows
    );

    /**
     * @notice Event emitted when a borrow is repaid
     */
    event RepayBorrow(
        address payer,
        address borrower,
        uint256 repayAmount,
        uint256 accountBorrows,
        uint256 totalBorrows
    );

    /**
     * @notice Event emitted when a borrow is liquidated
     */
    event LiquidateBorrow(
        address liquidator,
        address borrower,
        uint256 repayAmount,
        address bTokenCollateral,
        uint256 seizeTokens
    );

    /*** Admin Events ***/

    /**
     * @notice Event emitted when pendingAdmin is changed
     */
    event NewPendingAdmin(address oldPendingAdmin, address newPendingAdmin);

    /**
     * @notice Event emitted when pendingAdmin is accepted, which means admin is updated
     */
    event NewAdmin(address oldAdmin, address newAdmin);

    /**
     * @notice Event emitted when comptroller is changed
     */
    event NewComptroller(
        ComptrollerInterface oldComptroller,
        ComptrollerInterface newComptroller
    );

    /**
     * @notice Event emitted when interestRateModel is changed
     */
    event NewMarketInterestRateModel(
        InterestRateModel oldInterestRateModel,
        InterestRateModel newInterestRateModel
    );

    /**
     * @notice Event emitted when the reserve factor is changed
     */
    event NewReserveFactor(
        uint256 oldReserveFactorMantissa,
        uint256 newReserveFactorMantissa
    );

    /**
     * @notice Event emitted when the reserves are added
     */
    event ReservesAdded(
        address benefactor,
        uint256 addAmount,
        uint256 newTotalReserves
    );

    /**
     * @notice Event emitted when the reserves are reduced
     */
    event ReservesReduced(
        address admin,
        uint256 reduceAmount,
        uint256 newTotalReserves
    );

    /**
     * @notice EIP20 Transfer event
     */
    event Transfer(address indexed from, address indexed to, uint256 amount);

    /**
     * @notice EIP20 Approval event
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 amount
    );

    /**
     * @notice Failure event
     */
    event Failure(uint256 error, uint256 info, uint256 detail);

    /*** User Interface ***/

    function transfer(address dst, uint256 amount) external returns (bool);

    function transferFrom(
        address src,
        address dst,
        uint256 amount
    ) external returns (bool);

    function approve(address spender, uint256 amount) external returns (bool);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function balanceOfUnderlying(address owner) external returns (uint256);

    function getAccountSnapshot(address account)
        external
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256
        );

    function borrowRatePerSecond() external view returns (uint256);

    function supplyRatePerSecond() external view returns (uint256);

    function totalBorrowsCurrent() external returns (uint256);

    function borrowBalanceCurrent(address account) external returns (uint256);

    function borrowBalanceStored(address account) public view returns (uint256);

    function exchangeRateCurrent() public returns (uint256);

    function exchangeRateStored() public view returns (uint256);

    function getCash() external view returns (uint256);

    function accrueInterest() public returns (uint256);

    function seize(
        address liquidator,
        address borrower,
        uint256 seizeTokens
    ) external returns (uint256);

    /*** Admin Functions ***/

    function _setPendingAdmin(address payable newPendingAdmin)
        external
        returns (uint256);

    function _acceptAdmin() external returns (uint256);

    function _setComptroller(ComptrollerInterface newComptroller)
        public
        returns (uint256);

    function _setReserveFactor(uint256 newReserveFactorMantissa)
        external
        returns (uint256);

    function _reduceReserves(uint256 reduceAmount) external returns (uint256);

    function _setInterestRateModel(InterestRateModel newInterestRateModel)
        public
        returns (uint256);
}

contract BErc20Interface is BErc20Storage {
    /*** 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,
        BTokenInterface bTokenCollateral
    ) external returns (uint256);

    function _addReserves(uint256 addAmount) external returns (uint256);
}

contract BWrappedNativeInterface is BErc20Interface {
    /**
     * @notice Flash loan fee ratio
     */
    uint256 public constant flashFeeBips = 1;

    /*** Market Events ***/

    /**
     * @notice Event emitted when a flashloan occurred
     */
    event Flashloan(
        address indexed receiver,
        uint256 amount,
        uint256 totalFee,
        uint256 reservesFee
    );

    /*** User Interface ***/

    function mintNative() external payable returns (uint256);

    function redeemNative(uint256 redeemTokens) external returns (uint256);

    function redeemUnderlyingNative(uint256 redeemAmount)
        external
        returns (uint256);

    function borrowNative(uint256 borrowAmount) external returns (uint256);

    function repayBorrowNative() external payable returns (uint256);

    function repayBorrowBehalfNative(address borrower)
        external
        payable
        returns (uint256);

    function liquidateBorrowNative(
        address borrower,
        BTokenInterface bTokenCollateral
    ) external payable returns (uint256);

    function flashLoan(
        ERC3156FlashBorrowerInterface receiver,
        address initiator,
        uint256 amount,
        bytes calldata data
    ) external returns (bool);

    function _addReservesNative() external payable returns (uint256);

    function collateralCap() external view returns (uint256);

    function totalCollateralTokens() external view returns (uint256);
}

contract BCapableErc20Interface is BErc20Interface, BSupplyCapStorage {
    /**
     * @notice Flash loan fee ratio
     */
    uint256 public constant flashFeeBips = 1;

    /*** Market Events ***/

    /**
     * @notice Event emitted when a flashloan occurred
     */
    event Flashloan(
        address indexed receiver,
        uint256 amount,
        uint256 totalFee,
        uint256 reservesFee
    );

    /*** User Interface ***/

    function gulp() external;
}

contract BCollateralCapErc20Interface is
    BCapableErc20Interface,
    BCollateralCapStorage
{
    /*** Admin Events ***/

    /**
     * @notice Event emitted when collateral cap is set
     */
    event NewCollateralCap(address token, uint256 newCap);

    /**
     * @notice Event emitted when user collateral is changed
     */
    event UserCollateralChanged(address account, uint256 newCollateralTokens);

    /*** User Interface ***/

    function registerCollateral(address account) external returns (uint256);

    function unregisterCollateral(address account) external;

    function flashLoan(
        ERC3156FlashBorrowerInterface receiver,
        address initiator,
        uint256 amount,
        bytes calldata data
    ) external returns (bool);

    /*** Admin Functions ***/

    function _setCollateralCap(uint256 newCollateralCap) external;
}

contract BDelegatorInterface {
    /**
     * @notice Emitted when implementation is changed
     */
    event NewImplementation(
        address oldImplementation,
        address newImplementation
    );

    /**
     * @notice Called by the admin to update the implementation of the delegator
     * @param implementation_ The address of the new implementation for delegation
     * @param allowResign Flag to indicate whether to call _resignImplementation on the old implementation
     * @param becomeImplementationData The encoded bytes data to be passed to _becomeImplementation
     */
    function _setImplementation(
        address implementation_,
        bool allowResign,
        bytes memory becomeImplementationData
    ) public;
}

contract BDelegateInterface {
    /**
     * @notice Called by the delegator on a delegate to initialize it for duty
     * @dev Should revert if any issues arise which make it unfit for delegation
     * @param data The encoded bytes data for any initialization
     */
    function _becomeImplementation(bytes memory data) public;

    /**
     * @notice Called by the delegator on a delegate to forfeit its responsibility
     */
    function _resignImplementation() public;
}

/*** External interface ***/

/**
 * @title Flash loan receiver interface
 */
interface IFlashloanReceiver {
    function executeOperation(
        address sender,
        address underlying,
        uint256 amount,
        uint256 fee,
        bytes calldata params
    ) external;
}

File 11 of 15 : EIP20Interface.sol
pragma solidity 0.5.16;

/**
 * @title ERC 20 Token Standard Interface
 *  https://eips.ethereum.org/EIPS/eip-20
 */
interface EIP20Interface {
    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function decimals() external view returns (uint8);

    /**
     * @notice Get the total number of tokens in circulation
     * @return The supply of tokens
     */
    function totalSupply() external view returns (uint256);

    /**
     * @notice Gets the balance of the specified address
     * @param owner The address from which the balance will be retrieved
     * @return The balance
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint256 amount)
        external
        returns (bool success);

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(
        address src,
        address dst,
        uint256 amount
    ) external returns (bool success);

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param amount The number of tokens that are approved (-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint256 amount)
        external
        returns (bool success);

    /**
     * @notice Get the current allowance from `owner` for `spender`
     * @param owner The address of the account which owns the tokens to be spent
     * @param spender The address of the account which may transfer tokens
     * @return The number of tokens allowed to be spent (-1 means infinite)
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256 remaining);

    event Transfer(address indexed from, address indexed to, uint256 amount);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 amount
    );
}

File 12 of 15 : EIP20NonStandardInterface.sol
pragma solidity 0.5.16;

/**
 * @title EIP20NonStandardInterface
 * @dev Version of ERC20 with no return values for `transfer` and `transferFrom`
 *  See https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca
 */
interface EIP20NonStandardInterface {
    /**
     * @notice Get the total number of tokens in circulation
     * @return The supply of tokens
     */
    function totalSupply() external view returns (uint256);

    /**
     * @notice Gets the balance of the specified address
     * @param owner The address from which the balance will be retrieved
     * @return The balance
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    ///
    /// !!!!!!!!!!!!!!
    /// !!! NOTICE !!! `transfer` does not return a value, in violation of the ERC-20 specification
    /// !!!!!!!!!!!!!!
    ///

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     */
    function transfer(address dst, uint256 amount) external;

    ///
    /// !!!!!!!!!!!!!!
    /// !!! NOTICE !!! `transferFrom` does not return a value, in violation of the ERC-20 specification
    /// !!!!!!!!!!!!!!
    ///

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     */
    function transferFrom(
        address src,
        address dst,
        uint256 amount
    ) external;

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param amount The number of tokens that are approved
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint256 amount)
        external
        returns (bool success);

    /**
     * @notice Get the current allowance from `owner` for `spender`
     * @param owner The address of the account which owns the tokens to be spent
     * @param spender The address of the account which may transfer tokens
     * @return The number of tokens allowed to be spent
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256 remaining);

    event Transfer(address indexed from, address indexed to, uint256 amount);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 amount
    );
}

File 13 of 15 : InterestRateModel.sol
pragma solidity 0.5.16;

/**
 * @title Blueberry's InterestRateModel Interface
 * @author Compound (Modified by Blueberry)
 */
contract InterestRateModel {
    /// @notice Indicator that this is an InterestRateModel contract (for inspection)
    bool public constant isInterestRateModel = true;

    /**
     * @notice Calculates the current borrow interest rate per second
     * @param cash The total amount of cash the market has
     * @param borrows The total amount of borrows the market has outstanding
     * @param reserves The total amount of reserves the market has
     * @return The borrow rate per second (as a percentage, and scaled by 1e18)
     */
    function getBorrowRate(
        uint256 cash,
        uint256 borrows,
        uint256 reserves
    ) external view returns (uint256);

    /**
     * @notice Calculates the current supply interest rate per second
     * @param cash The total amount of cash the market has
     * @param borrows The total amount of borrows the market has outstanding
     * @param reserves The total amount of reserves the market has
     * @param reserveFactorMantissa The current reserve factor the market has
     * @return The supply rate per second (as a percentage, and scaled by 1e18)
     */
    function getSupplyRate(
        uint256 cash,
        uint256 borrows,
        uint256 reserves,
        uint256 reserveFactorMantissa
    ) external view returns (uint256);
}

File 14 of 15 : CarefulMath.sol
pragma solidity 0.5.16;

/**
 * @title Careful Math
 * @author Compound
 * @notice Derived from OpenZeppelin's SafeMath library
 *         https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/math/SafeMath.sol
 */
contract CarefulMath {
    /**
     * @dev Possible error codes that we can return
     */
    enum MathError {
        NO_ERROR,
        DIVISION_BY_ZERO,
        INTEGER_OVERFLOW,
        INTEGER_UNDERFLOW
    }

    /**
     * @dev Multiplies two numbers, returns an error on overflow.
     */
    function mulUInt(uint256 a, uint256 b)
        internal
        pure
        returns (MathError, uint256)
    {
        if (a == 0) {
            return (MathError.NO_ERROR, 0);
        }

        uint256 c = a * b;

        if (c / a != b) {
            return (MathError.INTEGER_OVERFLOW, 0);
        } else {
            return (MathError.NO_ERROR, c);
        }
    }

    /**
     * @dev Integer division of two numbers, truncating the quotient.
     */
    function divUInt(uint256 a, uint256 b)
        internal
        pure
        returns (MathError, uint256)
    {
        if (b == 0) {
            return (MathError.DIVISION_BY_ZERO, 0);
        }

        return (MathError.NO_ERROR, a / b);
    }

    /**
     * @dev Subtracts two numbers, returns an error on overflow (i.e. if subtrahend is greater than minuend).
     */
    function subUInt(uint256 a, uint256 b)
        internal
        pure
        returns (MathError, uint256)
    {
        if (b <= a) {
            return (MathError.NO_ERROR, a - b);
        } else {
            return (MathError.INTEGER_UNDERFLOW, 0);
        }
    }

    /**
     * @dev Adds two numbers, returns an error on overflow.
     */
    function addUInt(uint256 a, uint256 b)
        internal
        pure
        returns (MathError, uint256)
    {
        uint256 c = a + b;

        if (c >= a) {
            return (MathError.NO_ERROR, c);
        } else {
            return (MathError.INTEGER_OVERFLOW, 0);
        }
    }

    /**
     * @dev add a and b and then subtract c
     */
    function addThenSubUInt(
        uint256 a,
        uint256 b,
        uint256 c
    ) internal pure returns (MathError, uint256) {
        (MathError err0, uint256 sum) = addUInt(a, b);

        if (err0 != MathError.NO_ERROR) {
            return (err0, 0);
        }

        return subUInt(sum, c);
    }
}

File 15 of 15 : ERC3156FlashBorrowerInterface.sol
pragma solidity 0.5.16;

interface ERC3156FlashBorrowerInterface {
    /**
     * @dev Receive a flash loan.
     * @param initiator The initiator of the loan.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @param fee The additional amount of tokens to repay.
     * @param data Arbitrary data structure, intended to contain user-defined parameters.
     * @return The keccak256 hash of "ERC3156FlashBorrower.onFlashLoan"
     */
    function onFlashLoan(
        address initiator,
        address token,
        uint256 amount,
        uint256 fee,
        bytes calldata data
    ) external returns (bytes32);
}

Settings
{
  "remappings": [
    "@blueberry/=lib/blueberry-core/contracts/",
    "@openzeppelin/contracts/=lib/openzeppelin-contracts-upgradeable/lib/openzeppelin-contracts/contracts/",
    "@openzeppelin/contracts-upgradeable/=lib/blueberry-core/node_modules/@openzeppelin/contracts-upgradeable/",
    "src/=src/BlueberryContracts/",
    "@chainlink/=lib/blueberry-core/node_modules/@chainlink/",
    "@eth-optimism/=lib/blueberry-core/node_modules/@eth-optimism/contracts/",
    "@uniswap/=lib/blueberry-core/node_modules/@uniswap/",
    "base64-sol/=lib/blueberry-core/node_modules/base64-sol/",
    "blueberry-core/=lib/blueberry-core/contracts/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/",
    "eth-gas-reporter/=lib/blueberry-core/node_modules/eth-gas-reporter/",
    "forge-std/=lib/forge-std/src/",
    "hardhat-deploy/=lib/blueberry-core/node_modules/hardhat-deploy/",
    "hardhat/=lib/blueberry-core/node_modules/hardhat/",
    "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "openzeppelin-foundry-upgrades/=lib/openzeppelin-foundry-upgrades/src/",
    "solidity-stringutils/=lib/openzeppelin-foundry-upgrades/lib/solidity-stringutils/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "istanbul",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"action","type":"string"},{"indexed":false,"internalType":"bool","name":"pauseState","type":"bool"}],"name":"ActionPaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract BToken","name":"bToken","type":"address"},{"indexed":false,"internalType":"string","name":"action","type":"string"},{"indexed":false,"internalType":"bool","name":"pauseState","type":"bool"}],"name":"ActionPaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"protocol","type":"address"},{"indexed":false,"internalType":"address","name":"market","type":"address"},{"indexed":false,"internalType":"uint256","name":"creditLimit","type":"uint256"}],"name":"CreditLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"error","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"info","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"detail","type":"uint256"}],"name":"Failure","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract BToken","name":"bToken","type":"address"},{"indexed":false,"internalType":"bool","name":"force","type":"bool"}],"name":"MarketDelisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract BToken","name":"bToken","type":"address"},{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"MarketEntered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract BToken","name":"bToken","type":"address"},{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"MarketExited","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract BToken","name":"bToken","type":"address"}],"name":"MarketListed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract BToken","name":"bToken","type":"address"},{"indexed":false,"internalType":"enum ComptrollerV1Storage.Version","name":"oldVersion","type":"uint8"},{"indexed":false,"internalType":"enum ComptrollerV1Storage.Version","name":"newVersion","type":"uint8"}],"name":"NewBTokenVersion","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract BToken","name":"bToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"newBorrowCap","type":"uint256"}],"name":"NewBorrowCap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldCloseFactorMantissa","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newCloseFactorMantissa","type":"uint256"}],"name":"NewCloseFactor","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract BToken","name":"bToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldCollateralFactorMantissa","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newCollateralFactorMantissa","type":"uint256"}],"name":"NewCollateralFactor","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldCreditLimitManager","type":"address"},{"indexed":false,"internalType":"address","name":"newCreditLimitManager","type":"address"}],"name":"NewCreditLimitManager","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldGuardian","type":"address"},{"indexed":false,"internalType":"address","name":"newGuardian","type":"address"}],"name":"NewGuardian","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldLiquidationIncentiveMantissa","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newLiquidationIncentiveMantissa","type":"uint256"}],"name":"NewLiquidationIncentive","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldLiquidityMining","type":"address"},{"indexed":false,"internalType":"address","name":"newLiquidityMining","type":"address"}],"name":"NewLiquidityMining","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract PriceOracle","name":"oldPriceOracle","type":"address"},{"indexed":false,"internalType":"contract PriceOracle","name":"newPriceOracle","type":"address"}],"name":"NewPriceOracle","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract BToken","name":"bToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"newSupplyCap","type":"uint256"}],"name":"NewSupplyCap","type":"event"},{"constant":false,"inputs":[{"internalType":"contract Unitroller","name":"unitroller","type":"address"}],"name":"_become","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_borrowGuardianPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"contract BToken","name":"bToken","type":"address"},{"internalType":"bool","name":"force","type":"bool"}],"name":"_delistMarket","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_mintGuardianPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"protocol","type":"address"},{"internalType":"address","name":"market","type":"address"}],"name":"_pauseCreditLimit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract BToken","name":"bToken","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"_setBorrowPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"newCloseFactorMantissa","type":"uint256"}],"name":"_setCloseFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract BToken","name":"bToken","type":"address"},{"internalType":"uint256","name":"newCollateralFactorMantissa","type":"uint256"}],"name":"_setCollateralFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"protocol","type":"address"},{"internalType":"address","name":"market","type":"address"},{"internalType":"uint256","name":"creditLimit","type":"uint256"}],"name":"_setCreditLimit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newCreditLimitManager","type":"address"}],"name":"_setCreditLimitManager","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract BToken","name":"bToken","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"_setFlashloanPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newGuardian","type":"address"}],"name":"_setGuardian","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"newLiquidationIncentiveMantissa","type":"uint256"}],"name":"_setLiquidationIncentive","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newLiquidityMining","type":"address"}],"name":"_setLiquidityMining","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract BToken[]","name":"bTokens","type":"address[]"},{"internalType":"uint256[]","name":"newBorrowCaps","type":"uint256[]"}],"name":"_setMarketBorrowCaps","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract BToken[]","name":"bTokens","type":"address[]"},{"internalType":"uint256[]","name":"newSupplyCaps","type":"uint256[]"}],"name":"_setMarketSupplyCaps","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract BToken","name":"bToken","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"_setMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract PriceOracle","name":"newOracle","type":"address"}],"name":"_setPriceOracle","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"_setSeizePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"_setTransferPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract BToken","name":"bToken","type":"address"},{"internalType":"enum ComptrollerV1Storage.Version","name":"version","type":"uint8"}],"name":"_supportMarket","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"accountAssets","outputs":[{"internalType":"contract BToken","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allMarkets","outputs":[{"internalType":"contract BToken","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"bToken","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"borrowAmount","type":"uint256"}],"name":"borrowAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"borrowCapGuardian","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"borrowCaps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"borrowGuardianPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"bToken","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"borrowAmount","type":"uint256"}],"name":"borrowVerify","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"contract BToken","name":"bToken","type":"address"}],"name":"checkMembership","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"closeFactorMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"compAccrued","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"compBorrowState","outputs":[{"internalType":"uint224","name":"index","type":"uint224"},{"internalType":"uint32","name":"block","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"compBorrowerIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"compSpeeds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"compSupplierIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"compSupplyState","outputs":[{"internalType":"uint224","name":"index","type":"uint224"},{"internalType":"uint32","name":"block","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"comptrollerImplementation","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"creditLimitManager","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"protocol","type":"address"},{"internalType":"address","name":"market","type":"address"}],"name":"creditLimits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"protocol","type":"address"}],"name":"creditLimits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"bTokens","type":"address[]"}],"name":"enterMarkets","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"bTokenAddress","type":"address"}],"name":"exitMarket","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"bToken","type":"address"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"flashloanAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"flashloanGuardianPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getAllMarkets","outputs":[{"internalType":"contract BToken[]","name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAssetsIn","outputs":[{"internalType":"contract BToken[]","name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getBlockTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"bTokenModify","type":"address"},{"internalType":"uint256","name":"redeemTokens","type":"uint256"},{"internalType":"uint256","name":"borrowAmount","type":"uint256"}],"name":"getHypotheticalAccountLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"guardian","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isComptroller","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"bToken","type":"address"}],"name":"isCreditAccount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMarketDelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"bTokenAddress","type":"address"}],"name":"isMarketListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"bTokenAddress","type":"address"}],"name":"isMarketListedOrDelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"bTokenBorrowed","type":"address"},{"internalType":"address","name":"bTokenCollateral","type":"address"},{"internalType":"address","name":"liquidator","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"liquidateBorrowAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"bTokenBorrowed","type":"address"},{"internalType":"address","name":"bTokenCollateral","type":"address"},{"internalType":"address","name":"liquidator","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"actualRepayAmount","type":"uint256"},{"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"name":"liquidateBorrowVerify","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"bTokenBorrowed","type":"address"},{"internalType":"address","name":"bTokenCollateral","type":"address"},{"internalType":"uint256","name":"actualRepayAmount","type":"uint256"}],"name":"liquidateCalculateSeizeTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"liquidationIncentiveMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"liquidityMining","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"markets","outputs":[{"internalType":"bool","name":"isListed","type":"bool"},{"internalType":"uint256","name":"collateralFactorMantissa","type":"uint256"},{"internalType":"enum ComptrollerV1Storage.Version","name":"version","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"bToken","type":"address"},{"internalType":"address","name":"minter","type":"address"},{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mintAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintGuardianPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"bToken","type":"address"},{"internalType":"address","name":"minter","type":"address"},{"internalType":"uint256","name":"actualMintAmount","type":"uint256"},{"internalType":"uint256","name":"mintTokens","type":"uint256"}],"name":"mintVerify","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"oracle","outputs":[{"internalType":"contract PriceOracle","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingComptrollerImplementation","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"bToken","type":"address"},{"internalType":"address","name":"redeemer","type":"address"},{"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"redeemAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"bToken","type":"address"},{"internalType":"address","name":"redeemer","type":"address"},{"internalType":"uint256","name":"redeemAmount","type":"uint256"},{"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"redeemVerify","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"bToken","type":"address"},{"internalType":"address","name":"payer","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"repayBorrowAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"bToken","type":"address"},{"internalType":"address","name":"payer","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"actualRepayAmount","type":"uint256"},{"internalType":"uint256","name":"borrowerIndex","type":"uint256"}],"name":"repayBorrowVerify","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"bTokenCollateral","type":"address"},{"internalType":"address","name":"bTokenBorrowed","type":"address"},{"internalType":"address","name":"liquidator","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"name":"seizeAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"seizeGuardianPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"bTokenCollateral","type":"address"},{"internalType":"address","name":"bTokenBorrowed","type":"address"},{"internalType":"address","name":"liquidator","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"name":"seizeVerify","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"supplyCapGuardian","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"supplyCaps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"bToken","type":"address"},{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"transferTokens","type":"uint256"}],"name":"transferAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transferGuardianPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"bToken","type":"address"},{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"transferTokens","type":"uint256"}],"name":"transferVerify","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"bToken","type":"address"},{"internalType":"enum ComptrollerV1Storage.Version","name":"newVersion","type":"uint8"}],"name":"updateBTokenVersion","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50600080546001600160a01b0319163317905561562680620000336000396000f3fe608060405234801561001057600080fd5b506004361061048a5760003560e01c80636b79c38d11610262578063bb82aa5e11610151578063da3d454c116100ce578063e6653f3d11610092578063e6653f3d146112c8578063e8755446146112d0578063ea5d0104146112d8578063eabe7d91146112fe578063ede4edd014611334578063f851a4401461135a5761048a565b8063da3d454c1461120c578063dce1544914611242578063dcfbc0c71461126e578063e38e8c0f14611276578063e4028eee1461129c5761048a565b8063cc7ebdc411610115578063cc7ebdc41461111e578063d02f735114611144578063d13911491461118a578063d672d3e2146111b0578063d84f6aeb146111d65761048a565b8063bb82aa5e14610fbc578063bdcdc25814610fc4578063c299823814611000578063c488847b146110a1578063ca0af043146110f05761048a565b80638ebf6364116101df578063ac0b0bb7116101a3578063ac0b0bb714610ec2578063b0772d0b14610eca578063b1ab78e614610ed2578063b1e1af2414610f60578063b21be7fd14610f8e5761048a565b80638ebf636414610dd1578063929fe9a114610df057806399bc187314610e1e578063a979f0c514610e44578063abfceffc14610e4c5761048a565b80637dc0d1d0116102265780637dc0d1d014610d3757806385b2d53514610d3f57806387f7630314610d475780638c57804e14610d4f5780638e8f294b14610d755761048a565b80636b79c38d14610c4f5780636d154ea514610c9d5780636d35bf9114610cc3578063731f0c2b14610d09578063796b89b914610d2f5761048a565b80633d98a1e51161037e57806351a485e4116102fb5780635e2e9a44116102bf5780635e2e9a4414610ac35780635ec88c7914610ae95780635fc7e71e14610b0f578063607ef6c114610b555780636a56947e14610c135761048a565b806351a485e41461095057806351dff98914610a0e57806352d84d1e14610a4a57806355ee1fe114610a675780635c77860514610a8d5761048a565b80634ada90af116103425780634ada90af1461086d5780634e79238f146108755780634ef4c3e1146108cf5780634fd42e171461090557806350f6c85a146109225761048a565b80633d98a1e51461079157806341c728b9146107b7578063452a9320146107f357806347ef3b3b146107fb5780634a584432146108475761048a565b806321af45691161040c57806336bdd087116103d057806336bdd087146106d057806339e47ad2146106ff5780633b3af2571461072d5780633bcf7ec11461075b5780633c94786f146107895761048a565b806321af45691461064857806324008a6214610650578063267822471461068c5780632d70db7814610694578063317b0b77146106b35761048a565b8063188f848311610453578063188f84831461056657806318c882a51461058c5780631d504dc6146105ba5780631d7b33d7146105e05780631ededc91146106065761048a565b80627e3dd21461048f57806302c3bcbb146104ab5780630445254d146104e35780630aa5747714610511578063178de7eb14610542575b600080fd5b610497611362565b604080519115158252519081900360200190f35b6104d1600480360360208110156104c157600080fd5b50356001600160a01b0316611367565b60408051918252519081900360200190f35b6104d1600480360360408110156104f957600080fd5b506001600160a01b0381358116916020013516611379565b6105406004803603604081101561052757600080fd5b5080356001600160a01b0316906020013560ff166113a6565b005b61054a6114b5565b604080516001600160a01b039092168252519081900360200190f35b6104976004803603602081101561057c57600080fd5b50356001600160a01b03166114c4565b610497600480360360408110156105a257600080fd5b506001600160a01b038135169060200135151561150b565b610540600480360360208110156105d057600080fd5b50356001600160a01b031661169e565b6104d1600480360360208110156105f657600080fd5b50356001600160a01b0316611802565b610540600480360360a081101561061c57600080fd5b506001600160a01b03813581169160208101358216916040820135169060608101359060800135611814565b61054a61181b565b6104d16004803603608081101561066657600080fd5b506001600160a01b0381358116916020810135821691604082013516906060013561182a565b61054a6118df565b610497600480360360208110156106aa57600080fd5b503515156118ee565b6104d1600480360360208110156106c957600080fd5b5035611a27565b6104d1600480360360408110156106e657600080fd5b5080356001600160a01b0316906020013560ff16611a9a565b6105406004803603604081101561071557600080fd5b506001600160a01b0381351690602001351515611c64565b6104976004803603604081101561074357600080fd5b506001600160a01b0381358116916020013516611fe1565b6104976004803603604081101561077157600080fd5b506001600160a01b038135169060200135151561200e565b61049761219f565b610497600480360360208110156107a757600080fd5b50356001600160a01b03166121af565b610540600480360360808110156107cd57600080fd5b506001600160a01b038135811691602081013590911690604081013590606001356121cd565b61054a6121d3565b610540600480360360c081101561081157600080fd5b506001600160a01b0381358116916020810135821691604082013581169160608101359091169060808101359060a001356121e2565b6104d16004803603602081101561085d57600080fd5b50356001600160a01b03166121ea565b6104d16121fc565b6108b16004803603608081101561088b57600080fd5b506001600160a01b03813581169160208101359091169060408101359060600135612202565b60408051938452602084019290925282820152519081900360600190f35b6104d1600480360360608110156108e557600080fd5b506001600160a01b0381358116916020810135909116906040013561223c565b6104d16004803603602081101561091b57600080fd5b5035612588565b6105406004803603604081101561093857600080fd5b506001600160a01b03813581169160200135166125f1565b6105406004803603604081101561096657600080fd5b810190602081018135600160201b81111561098057600080fd5b82018360208201111561099257600080fd5b803590602001918460208302840111600160201b831117156109b357600080fd5b919390929091602081019035600160201b8111156109d057600080fd5b8201836020820111156109e257600080fd5b803590602001918460208302840111600160201b83111715610a0357600080fd5b50909250905061264c565b61054060048036036080811015610a2457600080fd5b506001600160a01b038135811691602081013590911690604081013590606001356127eb565b61054a60048036036020811015610a6057600080fd5b503561283f565b6104d160048036036020811015610a7d57600080fd5b50356001600160a01b0316612866565b61054060048036036060811015610aa357600080fd5b506001600160a01b038135811691602081013590911690604001356128eb565b61054060048036036020811015610ad957600080fd5b50356001600160a01b03166128f0565b6108b160048036036020811015610aff57600080fd5b50356001600160a01b031661299e565b6104d1600480360360a0811015610b2557600080fd5b506001600160a01b03813581169160208101358216916040820135811691606081013590911690608001356129d3565b61054060048036036040811015610b6b57600080fd5b810190602081018135600160201b811115610b8557600080fd5b820183602082011115610b9757600080fd5b803590602001918460208302840111600160201b83111715610bb857600080fd5b919390929091602081019035600160201b811115610bd557600080fd5b820183602082011115610be757600080fd5b803590602001918460208302840111600160201b83111715610c0857600080fd5b509092509050612c16565b61054060048036036080811015610c2957600080fd5b506001600160a01b038135811691602081013582169160408201351690606001356121cd565b610c7560048036036020811015610c6557600080fd5b50356001600160a01b0316612dac565b604080516001600160e01b03909316835263ffffffff90911660208301528051918290030190f35b61049760048036036020811015610cb357600080fd5b50356001600160a01b0316612dd6565b610540600480360360a0811015610cd957600080fd5b506001600160a01b0381358116916020810135821691604082013581169160608101359091169060800135611814565b61049760048036036020811015610d1f57600080fd5b50356001600160a01b0316612deb565b6104d1612e00565b61054a612e05565b61054a612e14565b610497612e23565b610c7560048036036020811015610d6557600080fd5b50356001600160a01b0316612e33565b610d9b60048036036020811015610d8b57600080fd5b50356001600160a01b0316612e5d565b6040518084151515158152602001838152602001826002811115610dbb57fe5b60ff168152602001935050505060405180910390f35b61049760048036036020811015610de757600080fd5b50351515612e83565b61049760048036036040811015610e0657600080fd5b506001600160a01b0381358116916020013516612fbf565b6104d160048036036020811015610e3457600080fd5b50356001600160a01b0316612ff2565b61054a612ff8565b610e7260048036036020811015610e6257600080fd5b50356001600160a01b0316613007565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610eae578181015183820152602001610e96565b505050509050019250505060405180910390f35b610497613090565b610e726130a0565b61049760048036036080811015610ee857600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610f2257600080fd5b820183602082011115610f3457600080fd5b803590602001918460018302840111600160201b83111715610f5557600080fd5b509092509050613102565b61049760048036036040811015610f7657600080fd5b506001600160a01b0381351690602001351515613125565b6104d160048036036040811015610fa457600080fd5b506001600160a01b03813581169160200135166132bb565b61054a6132d8565b6104d160048036036080811015610fda57600080fd5b506001600160a01b038135811691602081013582169160408201351690606001356132e7565b610e726004803603602081101561101657600080fd5b810190602081018135600160201b81111561103057600080fd5b82018360208201111561104257600080fd5b803590602001918460208302840111600160201b8311171561106357600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061338f945050505050565b6110d7600480360360608110156110b757600080fd5b506001600160a01b03813581169160208101359091169060400135613426565b6040805192835260208301919091528051918290030190f35b6104d16004803603604081101561110657600080fd5b506001600160a01b038135811691602001351661367c565b6104d16004803603602081101561113457600080fd5b50356001600160a01b0316613699565b6104d1600480360360a081101561115a57600080fd5b506001600160a01b03813581169160208101358216916040820135811691606081013590911690608001356136ab565b610497600480360360208110156111a057600080fd5b50356001600160a01b03166138e8565b610497600480360360208110156111c657600080fd5b50356001600160a01b03166138fd565b610540600480360360608110156111ec57600080fd5b506001600160a01b03813581169160208101359091169060400135613912565b6104d16004803603606081101561122257600080fd5b506001600160a01b0381358116916020810135909116906040013561397b565b61054a6004803603604081101561125857600080fd5b506001600160a01b038135169060200135613f1e565b61054a613f53565b6104d16004803603602081101561128c57600080fd5b50356001600160a01b0316613f62565b6104d1600480360360408110156112b257600080fd5b506001600160a01b038135169060200135613fe6565b610497614196565b6104d16141a6565b610540600480360360208110156112ee57600080fd5b50356001600160a01b03166141ac565b6104d16004803603606081101561131457600080fd5b506001600160a01b0381358116916020810135909116906040013561431b565b6104d16004803603602081101561134a57600080fd5b50356001600160a01b0316614330565b61054a614725565b600181565b60166020526000908152604090205481565b6001600160a01b038083166000908152601a60209081526040808320938516835292905220545b92915050565b336001600160a01b038316146113f1576040805162461bcd60e51b815260206004820152600b60248201526a62546f6b656e206f6e6c7960a81b604482015290519081900360640190fd5b6113fa826121af565b156114b1576001600160a01b0382166000908152600860205260409020600301805460ff811691839160ff1916600183600281111561143557fe5b02179055507f94d8c3b3b1c3ffd041fd0875027844944165fdf4c35639c43eed07a99583084f83828460405180846001600160a01b03166001600160a01b0316815260200183600281111561148657fe5b60ff16815260200182600281111561149a57fe5b60ff168152602001935050505060405180910390a1505b5050565b601c546001600160a01b031681565b6001600160a01b03811660009081526008602052604081205460ff168061150357506001600160a01b0382166000908152601b602052604090205460ff165b90505b919050565b6000611516836121af565b611555576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b6009546001600160a01b031633148061157857506000546001600160a01b031633145b6115c2576040805162461bcd60e51b8152602060048201526016602482015275677561726469616e206f722061646d696e206f6e6c7960501b604482015290519081900360640190fd5b6000546001600160a01b03163314806115dd57506001821515145b61161b576040805162461bcd60e51b815260206004820152600a60248201526961646d696e206f6e6c7960b01b604482015290519081900360640190fd5b6001600160a01b0383166000818152600b6020908152604091829020805486151560ff199091168117909155825193845283830152606090830181905260069083015265426f72726f7760d01b6080830152517f71aec636243f9709bb0007ae15e9afb8150ab01716d75fd7573be5cc096e03b09181900360a00190a150919050565b806001600160a01b031663f851a4406040518163ffffffff1660e01b815260040160206040518083038186803b1580156116d757600080fd5b505afa1580156116eb573d6000803e3d6000fd5b505050506040513d602081101561170157600080fd5b50516001600160a01b03163314611757576040805162461bcd60e51b8152602060048201526015602482015274756e6974726f6c6c65722061646d696e206f6e6c7960581b604482015290519081900360640190fd5b806001600160a01b031663c1e803346040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561179257600080fd5b505af11580156117a6573d6000803e3d6000fd5b505050506040513d60208110156117bc57600080fd5b5051156117ff576040805162461bcd60e51b815260206004820152600c60248201526b1d5b985d5d1a1bdc9a5e995960a21b604482015290519081900360640190fd5b50565b600d6020526000908152604090205481565b5050505050565b6013546001600160a01b031681565b6000611835856114c4565b611874576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b61187e8386611fe1565b156118d357836001600160a01b0316836001600160a01b0316146118d35760405162461bcd60e51b81526004018080602001828103825260288152602001806155a86028913960400191505060405180910390fd5b60005b95945050505050565b6001546001600160a01b031681565b6009546000906001600160a01b031633148061191457506000546001600160a01b031633145b61195e576040805162461bcd60e51b8152602060048201526016602482015275677561726469616e206f722061646d696e206f6e6c7960501b604482015290519081900360640190fd5b6000546001600160a01b031633148061197957506001821515145b6119b7576040805162461bcd60e51b815260206004820152600a60248201526961646d696e206f6e6c7960b01b604482015290519081900360640190fd5b60098054831515600160b81b810260ff60b81b1990921691909117909155604080516020810192909252808252600582820152645365697a6560d81b6060830152517fef159d9a32b2472e32b098f954f3ce62d232939f1c207070b584df1814de2de09181900360800190a15090565b600080546001600160a01b03163314611a4d57611a4660016004614734565b9050611506565b6005805490839055604080518281526020810185905281517f3b9670cf975d26958e754b57098eaa2ac914d8d2a31b83257997b9f346110fd9929181900390910190a160005b9392505050565b600080546001600160a01b03163314611ae7576040805162461bcd60e51b815260206004820152600a60248201526961646d696e206f6e6c7960b01b604482015290519081900360640190fd5b611af0836114c4565b15611b2c5760405162461bcd60e51b81526004018080602001828103825260218152602001806155876021913960400191505060405180910390fd5b826001600160a01b031663fbb623376040518163ffffffff1660e01b815260040160206040518083038186803b158015611b6557600080fd5b505afa158015611b79573d6000803e3d6000fd5b505050506040513d6020811015611b8f57600080fd5b5050604080516060810182526001815260006020820152908101836002811115611bb557fe5b90526001600160a01b0384166000908152600860209081526040918290208351815490151560ff1991821617825591840151600180830191909155928401516003820180549294919390921690836002811115611c0e57fe5b0217905550905050611c1f8361479a565b604080516001600160a01b038516815290517fcf583bb0c569eb967f806b11601c4cb93c10310485c67add5f8362c2f212321f9181900360200190a160009392505050565b6000546001600160a01b03163314611cb0576040805162461bcd60e51b815260206004820152600a60248201526961646d696e206f6e6c7960b01b604482015290519081900360640190fd5b6001600160a01b03821660009081526008602052604090206001015415611d16576040805162461bcd60e51b81526020600482015260156024820152741b585c9ad95d081a185cc818dbdb1b185d195c985b605a1b604482015290519081900360640190fd5b6001600160a01b0382166000908152600a602052604090205460ff168015611d5657506001600160a01b0382166000908152600b602052604090205460ff165b8015611d7a57506001600160a01b03821660009081526018602052604090205460ff165b611dbf576040805162461bcd60e51b81526020600482015260116024820152701b585c9ad95d081b9bdd081c185d5cd959607a1b604482015290519081900360640190fd5b80611e3457611dcd826121af565b611e0c576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152601b60205260409020805460ff19166001179055611e78565b611e3d826114c4565b611e785760405162461bcd60e51b81526004018080602001828103825260228152602001806155206022913960400191505060405180910390fd5b6001600160a01b0382166000908152600860205260408120805460ff199081168255600182018390556003909101805490911690555b600c54811015611f9757826001600160a01b0316600c8281548110611ecf57fe5b6000918252602090912001546001600160a01b03161415611f8f57600c80546000198101908110611efc57fe5b600091825260209091200154600c80546001600160a01b039092169183908110611f2257fe5b600091825260209091200180546001600160a01b0319166001600160a01b0392909216919091179055600c80546000198101908110611f5d57fe5b600091825260209091200180546001600160a01b0319169055600c805490611f8990600019830161543d565b50611f97565b600101611eae565b50604080516001600160a01b0384168152821515602082015281517f1fc2e72349204abf00cbc7494177aff8e597323c72b7f50dfe56055d0d8f6d9a929181900390910190a15050565b6001600160a01b039182166000908152601a60209081526040808320939094168252919091522054151590565b6000612019836121af565b612058576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b6009546001600160a01b031633148061207b57506000546001600160a01b031633145b6120c5576040805162461bcd60e51b8152602060048201526016602482015275677561726469616e206f722061646d696e206f6e6c7960501b604482015290519081900360640190fd5b6000546001600160a01b03163314806120e057506001821515145b61211e576040805162461bcd60e51b815260206004820152600a60248201526961646d696e206f6e6c7960b01b604482015290519081900360640190fd5b6001600160a01b0383166000818152600a6020908152604091829020805486151560ff199091168117909155825193845283830152606090830181905260049083015263135a5b9d60e21b6080830152517f71aec636243f9709bb0007ae15e9afb8150ab01716d75fd7573be5cc096e03b09181900360a00190a150919050565b600954600160a01b900460ff1681565b6001600160a01b031660009081526008602052604090205460ff1690565b50505050565b6009546001600160a01b031681565b505050505050565b60146020526000908152604090205481565b60065481565b6000806000806000806122178a8a8a8a614878565b92509250925082601181111561222957fe5b95509093509150505b9450945094915050565b6001600160a01b0383166000908152600a602052604081205460ff161561229b576040805162461bcd60e51b815260206004820152600e60248201526d1b5a5b9d081a5cc81c185d5cd95960921b604482015290519081900360640190fd5b6122a58385611fe1565b156122f7576040805162461bcd60e51b815260206004820152601a60248201527f637265646974206163636f756e742063616e6e6f74206d696e74000000000000604482015290519081900360640190fd5b612300846121af565b61233f576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526016602052604090205480156118d3576000856001600160a01b0316633b1d21a26040518163ffffffff1660e01b815260040160206040518083038186803b15801561239957600080fd5b505afa1580156123ad573d6000803e3d6000fd5b505050506040513d60208110156123c357600080fd5b5051604080516308f7a6e360e31b815290519192506000916001600160a01b038916916347bd3718916004808301926020929190829003018186803b15801561240b57600080fd5b505afa15801561241f573d6000803e3d6000fd5b505050506040513d602081101561243557600080fd5b505160408051638f840ddd60e01b815290519192506000916001600160a01b038a1691638f840ddd916004808301926020929190829003018186803b15801561247d57600080fd5b505afa158015612491573d6000803e3d6000fd5b505050506040513d60208110156124a757600080fd5b505190506000806124b9858585614c4e565b909250905060008260038111156124cc57fe5b14612515576040805162461bcd60e51b81526020600482015260146024820152731d1bdd185b14dd5c1c1b1a595cc819985a5b195960621b604482015290519081900360640190fd5b6000612521828a614c9a565b9050868110612577576040805162461bcd60e51b815260206004820152601960248201527f6d61726b657420737570706c7920636170207265616368656400000000000000604482015290519081900360640190fd5b505050505050600095945050505050565b600080546001600160a01b031633146125a757611a466001600b614734565b6006805490839055604080518281526020810185905281517faeba5a6c40a8ac138134bff1aaa65debf25971188a58804bad717f82f0ec1316929181900390910190a16000611a93565b6009546001600160a01b03163314612640576040805162461bcd60e51b815260206004820152600d60248201526c677561726469616e206f6e6c7960981b604482015290519081900360640190fd5b6114b182826001614cd0565b6000546001600160a01b031633148061266f57506009546001600160a01b031633145b6126b9576040805162461bcd60e51b815260206004820152601660248201527561646d696e206f7220677561726469616e206f6e6c7960501b604482015290519081900360640190fd5b828181158015906126c957508082145b61270a576040805162461bcd60e51b815260206004820152600d60248201526c1a5b9d985b1a59081a5b9c1d5d609a1b604482015290519081900360640190fd5b60005b828110156127e25784848281811061272157fe5b905060200201356016600089898581811061273857fe5b905060200201356001600160a01b03166001600160a01b03166001600160a01b031681526020019081526020016000208190555086868281811061277857fe5b905060200201356001600160a01b03166001600160a01b03167f9e0ad9cee10bdf36b7fbd38910c0bdff0f275ace679b45b922381c2723d676f88686848181106127be57fe5b905060200201356040518082815260200191505060405180910390a260010161270d565b50505050505050565b801580156127f95750600082115b156121cd576040805162461bcd60e51b815260206004820152601160248201527072656465656d546f6b656e73207a65726f60781b604482015290519081900360640190fd5b600c818154811061284c57fe5b6000918252602090912001546001600160a01b0316905081565b600080546001600160a01b0316331461288557611a4660016010614734565b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fd52b2b9b7e9ee655fcb95d2e5b9e0c9f69e7ef2b8e9d2d0ea78402d576d22e22929181900390910190a16000611a93565b505050565b6000546001600160a01b0316331461293c576040805162461bcd60e51b815260206004820152600a60248201526961646d696e206f6e6c7960b01b604482015290519081900360640190fd5b601c80546001600160a01b038381166001600160a01b0319831617928390556040805192821680845293909116602083015280517fa4c457d40aa1c979a2194279d244db38b26ba51dac56dfa7f01446c0d00f8f659281900390910190a15050565b6000806000806000806129b5876000806000614878565b9250925092508260118111156129c757fe5b97919650945092505050565b60006129df8387611fe1565b15612a31576040805162461bcd60e51b815260206004820152601f60248201527f63616e6e6f74206c697175696461746520637265646974206163636f756e7400604482015290519081900360640190fd5b612a3a866114c4565b8015612a4a5750612a4a856114c4565b612a89576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b600080612a9585614d86565b91935090915060009050826011811115612aab57fe5b14612afd576040805162461bcd60e51b815260206004820152601f60248201527f6661696c656420746f20676574206163636f756e74206c697175696469747900604482015290519081900360640190fd5b60008111612b4b576040805162461bcd60e51b81526020600482015260166024820152751a5b9cdd59999a58da595b9d081cda1bdc9d19985b1b60521b604482015290519081900360640190fd5b6000886001600160a01b03166395dd9193876040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015612ba357600080fd5b505afa158015612bb7573d6000803e3d6000fd5b505050506040513d6020811015612bcd57600080fd5b505160408051602081019091526005548152909150600090612bef9083614da6565b905080861115612c065760119450505050506118d6565b5060009998505050505050505050565b6000546001600160a01b0316331480612c3957506009546001600160a01b031633145b612c83576040805162461bcd60e51b815260206004820152601660248201527561646d696e206f7220677561726469616e206f6e6c7960501b604482015290519081900360640190fd5b82818115801590612c9357508082145b612cd4576040805162461bcd60e51b815260206004820152600d60248201526c1a5b9d985b1a59081a5b9c1d5d609a1b604482015290519081900360640190fd5b60005b828110156127e257848482818110612ceb57fe5b9050602002013560146000898985818110612d0257fe5b905060200201356001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002081905550868682818110612d4257fe5b905060200201356001600160a01b03166001600160a01b03167f6f1951b2aad10f3fc81b86d91105b413a5b3f847a34bbc5ce1904201b14438f6868684818110612d8857fe5b905060200201356040518082815260200191505060405180910390a2600101612cd7565b600e602052600090815260409020546001600160e01b03811690600160e01b900463ffffffff1682565b600b6020526000908152604090205460ff1681565b600a6020526000908152604090205460ff1681565b425b90565b6004546001600160a01b031681565b6019546001600160a01b031681565b600954600160b01b900460ff1681565b600f602052600090815260409020546001600160e01b03811690600160e01b900463ffffffff1682565b60086020526000908152604090208054600182015460039092015460ff91821692911683565b6009546000906001600160a01b0316331480612ea957506000546001600160a01b031633145b612ef3576040805162461bcd60e51b8152602060048201526016602482015275677561726469616e206f722061646d696e206f6e6c7960501b604482015290519081900360640190fd5b6000546001600160a01b0316331480612f0e57506001821515145b612f4c576040805162461bcd60e51b815260206004820152600a60248201526961646d696e206f6e6c7960b01b604482015290519081900360640190fd5b60098054831515600160b01b810260ff60b01b1990921691909117909155604080516020810192909252808252600882820152672a3930b739b332b960c11b6060830152517fef159d9a32b2472e32b098f954f3ce62d232939f1c207070b584df1814de2de09181900360800190a15090565b6001600160a01b038082166000908152600860209081526040808320938616835260029093019052205460ff1692915050565b50600090565b6015546001600160a01b031681565b60608060076000846001600160a01b03166001600160a01b0316815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561308357602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311613065575b5093979650505050505050565b600954600160b81b900460ff1681565b6060600c8054806020026020016040519081016040528092919081815260200182805480156130f857602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116130da575b5050505050905090565b505050506001600160a01b031660009081526018602052604090205460ff161590565b6000613130836121af565b61316f576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b6009546001600160a01b031633148061319257506000546001600160a01b031633145b6131dc576040805162461bcd60e51b8152602060048201526016602482015275677561726469616e206f722061646d696e206f6e6c7960501b604482015290519081900360640190fd5b6000546001600160a01b03163314806131f757506001821515145b613235576040805162461bcd60e51b815260206004820152600a60248201526961646d696e206f6e6c7960b01b604482015290519081900360640190fd5b6001600160a01b038316600081815260186020908152604091829020805486151560ff199091168117909155825193845283830152606090830181905260099083015268233630b9b43637b0b760b91b6080830152517f71aec636243f9709bb0007ae15e9afb8150ab01716d75fd7573be5cc096e03b09181900360a00190a150919050565b601060209081526000928352604080842090915290825290205481565b6002546001600160a01b031681565b600954600090600160b01b900460ff161561333e576040805162461bcd60e51b81526020600482015260126024820152711d1c985b9cd9995c881a5cc81c185d5cd95960721b604482015290519081900360640190fd5b6133488386611fe1565b156133845760405162461bcd60e51b81526004018080602001828103825260238152602001806154fd6023913960400191505060405180910390fd5b6118d6858584614dc5565b60606000825190506060816040519080825280602002602001820160405280156133c3578160200160208202803883390190505b50905060005b8281101561341e5760008582815181106133df57fe5b602002602001015190506133f38133614f68565b60118111156133fe57fe5b83838151811061340a57fe5b6020908102919091010152506001016133c9565b509392505050565b600480546040805163fc57d4df60e01b81526001600160a01b038781169482019490945290516000938493849391169163fc57d4df91602480820192602092909190829003018186803b15801561347c57600080fd5b505afa158015613490573d6000803e3d6000fd5b505050506040513d60208110156134a657600080fd5b5051600480546040805163fc57d4df60e01b81526001600160a01b038a8116948201949094529051939450600093929091169163fc57d4df91602480820192602092909190829003018186803b1580156134ff57600080fd5b505afa158015613513573d6000803e3d6000fd5b505050506040513d602081101561352957600080fd5b50519050811580159061353c5750600081115b61357b576040805162461bcd60e51b815260206004820152600b60248201526a383934b1b29032b93937b960a91b604482015290519081900360640190fd5b6000866001600160a01b031663182df0f56040518163ffffffff1660e01b815260040160206040518083038186803b1580156135b657600080fd5b505afa1580156135ca573d6000803e3d6000fd5b505050506040513d60208110156135e057600080fd5b505190506135ec615461565b613614604051806020016040528060065481525060405180602001604052808781525061512f565b905061361e615461565b61364460405180602001604052808681525060405180602001604052808681525061512f565b905061364e615461565b613658838361516e565b90506000613666828b614da6565b600099509750505050505050505b935093915050565b601160209081526000928352604080842090915290825290205481565b60126020526000908152604090205481565b600954600090600160b81b900460ff16156136ff576040805162461bcd60e51b815260206004820152600f60248201526e1cd95a5e99481a5cc81c185d5cd959608a1b604482015290519081900360640190fd5b6137098386611fe1565b1561375b576040805162461bcd60e51b815260206004820181905260248201527f63616e6e6f74207365697a652066726f6d20637265646974206163636f756e74604482015290519081900360640190fd5b613764856114c4565b80156137745750613774866114c4565b6137b3576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b846001600160a01b0316635fe3b5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156137ec57600080fd5b505afa158015613800573d6000803e3d6000fd5b505050506040513d602081101561381657600080fd5b505160408051635fe3b56760e01b815290516001600160a01b0392831692891691635fe3b567916004808301926020929190829003018186803b15801561385c57600080fd5b505afa158015613870573d6000803e3d6000fd5b505050506040513d602081101561388657600080fd5b50516001600160a01b0316146138dc576040805162461bcd60e51b815260206004820152601660248201527518dbdb5c1d1c9bdb1b195c881b5a5cdb585d18da195960521b604482015290519081900360640190fd5b60009695505050505050565b601b6020526000908152604090205460ff1681565b60186020526000908152604090205460ff1681565b6000546001600160a01b03163314806139355750601c546001600160a01b031633145b6139705760405162461bcd60e51b81526004018080602001828103825260228152602001806155d06022913960400191505060405180910390fd5b6128eb838383614cd0565b6001600160a01b0383166000908152600b602052604081205460ff16156139dc576040805162461bcd60e51b815260206004820152601060248201526f189bdc9c9bddc81a5cc81c185d5cd95960821b604482015290519081900360640190fd5b6139e5846121af565b613a24576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b6001600160a01b038085166000908152600860209081526040808320938716835260029093019052205460ff16613b3d57336001600160a01b03851614613aaa576040805162461bcd60e51b815260206004820152601560248201527439b2b73232b91036bab9ba10313290312a37b5b2b760591b604482015290519081900360640190fd5b6000613ab68585614f68565b6011811115613ac157fe5b14613b0a576040805162461bcd60e51b815260206004820152601460248201527319985a5b1959081d1bc8185919081b585c9ad95d60621b604482015290519081900360640190fd5b6001600160a01b038085166000908152600860209081526040808320938716835260029093019052205460ff16613b3d57fe5b600480546040805163fc57d4df60e01b81526001600160a01b03888116948201949094529051929091169163fc57d4df91602480820192602092909190829003018186803b158015613b8e57600080fd5b505afa158015613ba2573d6000803e3d6000fd5b505050506040513d6020811015613bb857600080fd5b5051613bf9576040805162461bcd60e51b815260206004820152600b60248201526a383934b1b29032b93937b960a91b604482015290519081900360640190fd5b6001600160a01b0384166000908152601460205260409020548015613ce6576000856001600160a01b03166347bd37186040518163ffffffff1660e01b815260040160206040518083038186803b158015613c5357600080fd5b505afa158015613c67573d6000803e3d6000fd5b505050506040513d6020811015613c7d57600080fd5b505190506000613c8d8286614c9a565b9050828110613ce3576040805162461bcd60e51b815260206004820152601960248201527f6d61726b657420626f72726f7720636170207265616368656400000000000000604482015290519081900360640190fd5b50505b6001600160a01b038085166000908152601a60209081526040808320938916835292905220548015613e4c57600080876001600160a01b031663c37f68e2886040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060806040518083038186803b158015613d6b57600080fd5b505afa158015613d7f573d6000803e3d6000fd5b505050506040513d6080811015613d9557600080fd5b50805160409091015190925090508115613de7576040805162461bcd60e51b815260206004820152600e60248201526d39b730b839b437ba1032b93937b960911b604482015290519081900360640190fd5b613df18187614c9a565b831015613e45576040805162461bcd60e51b815260206004820152601960248201527f696e73756666696369656e7420637265646974206c696d697400000000000000604482015290519081900360640190fd5b50506138dc565b600080613e5c8789600089614878565b91935090915060009050826011811115613e7257fe5b14613ec4576040805162461bcd60e51b815260206004820152601f60248201527f6661696c656420746f20676574206163636f756e74206c697175696469747900604482015290519081900360640190fd5b8015613f10576040805162461bcd60e51b8152602060048201526016602482015275696e73756666696369656e74206c697175696469747960501b604482015290519081900360640190fd5b505060009695505050505050565b60076020528160005260406000208181548110613f3757fe5b6000918252602090912001546001600160a01b03169150829050565b6003546001600160a01b031681565b600080546001600160a01b03163314613f8157611a4660016013614734565b600980546001600160a01b038481166001600160a01b0319831617928390556040805192821680845293909116602083015280517f08fdaf06427a2010e5958f4329b566993472d14ce81d3f16ce7f2a2660da98e39281900390910190a16000611a93565b600080546001600160a01b0316331461400c5761400560016006614734565b90506113a0565b6001600160a01b0383166000908152600860205260409020805460ff166140415761403960096007614734565b9150506113a0565b614049615461565b506040805160208101909152838152614060615461565b506040805160208101909152670c7d713b49da0000815261408181836151aa565b1561409c5761409260066008614734565b93505050506113a0565b84158015906141255750600480546040805163fc57d4df60e01b81526001600160a01b038a8116948201949094529051929091169163fc57d4df91602480820192602092909190829003018186803b1580156140f757600080fd5b505afa15801561410b573d6000803e3d6000fd5b505050506040513d602081101561412157600080fd5b5051155b1561413657614092600d6009614734565b60018301805490869055604080516001600160a01b03891681526020810183905280820188905290517f70483e6592cd5182d45ac970e05bc62cdcc90e9d8ef2c2dbe686cf383bcd7fc59181900360600190a16000979650505050505050565b600954600160a81b900460ff1681565b60055481565b6000546001600160a01b031633146141f8576040805162461bcd60e51b815260206004820152600a60248201526961646d696e206f6e6c7960b01b604482015290519081900360640190fd5b306001600160a01b0316816001600160a01b0316635fe3b5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561423b57600080fd5b505afa15801561424f573d6000803e3d6000fd5b505050506040513d602081101561426557600080fd5b50516001600160a01b0316146142b9576040805162461bcd60e51b815260206004820152601460248201527336b4b9b6b0ba31b41031b7b6b83a3937b63632b960611b604482015290519081900360640190fd5b601980546001600160a01b038381166001600160a01b0319831617928390556040805192821680845293909116602083015280517f4247a233ab0926daf14619c57e7d333975443a34cc5e1a30478bc4e7e716c8a29281900390910190a15050565b6000614328848484614dc5565b949350505050565b6000808290506000806000836001600160a01b031663c37f68e2336040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060806040518083038186803b15801561439157600080fd5b505afa1580156143a5573d6000803e3d6000fd5b505050506040513d60808110156143bb57600080fd5b50805160208201516040909201519094509092509050821561440e5760405162461bcd60e51b81526004018080602001828103825260258152602001806155626025913960400191505060405180910390fd5b801561445a576040805162461bcd60e51b81526020600482015260166024820152756e6f6e7a65726f20626f72726f772062616c616e636560501b604482015290519081900360640190fd5b614465863384614dc5565b156144af576040805162461bcd60e51b815260206004820152601560248201527419985a5b1959081d1bc8195e1a5d081b585c9ad95d605a1b604482015290519081900360640190fd5b6001600160a01b03861660009081526008602052604090206001600382015460ff1660028111156144dc57fe5b14156145425760408051638b35776b60e01b815233600482015290516001600160a01b03891691638b35776b91602480830192600092919082900301818387803b15801561452957600080fd5b505af115801561453d573d6000803e3d6000fd5b505050505b33600090815260028201602052604090205460ff1661456957600095505050505050611506565b3360009081526002820160209081526040808320805460ff1916905560078252918290208054835181840281018401909452808452606093928301828280156145db57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116145bd575b5050835193945083925060009150505b8281101561463057886001600160a01b031684828151811061460957fe5b60200260200101516001600160a01b0316141561462857809150614630565b6001016145eb565b5081811061463a57fe5b33600090815260076020526040902080546000190182146146c05780548190600019810190811061466757fe5b9060005260206000200160009054906101000a90046001600160a01b031681838154811061469157fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b80546146d082600019830161543d565b50604080516001600160a01b038b16815233602082015281517fe699a64c18b07ac5b7301aa273f36a2287239eb9501d81950672794afba29a0d929181900390910190a160009b9a5050505050505050505050565b6000546001600160a01b031681565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601181111561476357fe5b83601381111561476f57fe5b604080519283526020830191909152600082820152519081900360600190a1826011811115611a9357fe5b60005b600c5481101561482557816001600160a01b0316600c82815481106147be57fe5b6000918252602090912001546001600160a01b0316141561481d576040805162461bcd60e51b81526020600482015260146024820152731b585c9ad95d08185b1c9958591e48185919195960621b604482015290519081900360640190fd5b60010161479d565b50600c80546001810182556000919091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b0392909216919091179055565b6000806000614885615474565b6001600160a01b038816600090815260076020908152604080832080548251818502810185019093528083526060938301828280156148ed57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116148cf575b50939450600093505050505b8151811015614c0f57600082828151811061491057fe5b60200260200101519050614923816114c4565b61492d5750614c07565b806001600160a01b031663c37f68e28d6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060806040518083038186803b15801561498357600080fd5b505afa158015614997573d6000803e3d6000fd5b505050506040513d60808110156149ad57600080fd5b508051602082015160408084015160609485015160808b0152938901939093529187019190915293508315614a1a576040805162461bcd60e51b815260206004820152600e60248201526d39b730b839b437ba1032b93937b960911b604482015290519081900360640190fd5b6040850151158015614a2e57506060850151155b8015614a4c57508a6001600160a01b0316816001600160a01b031614155b15614a575750614c07565b60408051602080820183526001600160a01b0380851660008181526008845285902060010154845260c08a01939093528351808301855260808a0151815260e08a015260048054855163fc57d4df60e01b815291820194909452935192169263fc57d4df9260248083019392829003018186803b158015614ad757600080fd5b505afa158015614aeb573d6000803e3d6000fd5b505050506040513d6020811015614b0157600080fd5b505160a08601819052614b49576040805162461bcd60e51b815260206004820152600b60248201526a383934b1b29032b93937b960a91b604482015290519081900360640190fd5b604080516020810190915260a0860151815261010086015260c085015160e0860151614b8391614b789161512f565b86610100015161512f565b610120860181905260408601518651614b9d9291906151b1565b855261010085015160608601516020870151614bba9291906151b1565b60208601526001600160a01b03818116908c161415614c0557614be78561012001518b87602001516151b1565b60208601819052610100860151614bff918b906151b1565b60208601525b505b6001016148f9565b50602083015183511115614c355750506020810151905160009450039150829050612232565b5050805160209091015160009450849350039050612232565b600080600080614c5e87876151d9565b90925090506000826003811115614c7157fe5b14614c825750915060009050613674565b614c8c8186615202565b935093505050935093915050565b6000611a938383604051806040016040528060118152602001706164646974696f6e206f766572666c6f7760781b815250615225565b614cd9826121af565b614d18576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b6001600160a01b038084166000818152601a6020908152604080832094871680845294825291829020859055815192835282019290925280820183905290517fd2430896b2083037d8bf873ee97e05de0442c7137b4c9413b9e928f7212869e99181900360600190a1505050565b6000806000614d99846000806000614878565b9250925092509193909250565b6000614db0615461565b614dba84846152c0565b9050614328816152e1565b6000614dd0846114c4565b614e0f576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b614e198385611fe1565b15614e6b576040805162461bcd60e51b815260206004820152601c60248201527f637265646974206163636f756e742063616e6e6f742072656465656d00000000604482015290519081900360640190fd5b6001600160a01b038085166000908152600860209081526040808320938716835260029093019052205460ff16614ea457506000611a93565b600080614eb48587866000614878565b91935090915060009050826011811115614eca57fe5b14614f1c576040805162461bcd60e51b815260206004820152601f60248201527f6661696c656420746f20676574206163636f756e74206c697175696469747900604482015290519081900360640190fd5b80156138dc576040805162461bcd60e51b8152602060048201526016602482015275696e73756666696369656e74206c697175696469747960501b604482015290519081900360640190fd5b6001600160a01b0382166000908152600860205260408120805460ff16614fc4576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b6001600382015460ff166002811115614fd957fe5b141561506457836001600160a01b0316638897bd85846040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050602060405180830381600087803b15801561503757600080fd5b505af115801561504b573d6000803e3d6000fd5b505050506040513d602081101561506157600080fd5b50505b6001600160a01b038316600090815260028201602052604090205460ff161515600114156150965760009150506113a0565b6001600160a01b0380841660008181526002840160209081526040808320805460ff19166001908117909155600783528184208054918201815584529282902090920180549489166001600160a01b031990951685179055815193845283019190915280517f3ab23ab0d51cccc0c3085aec51f99228625aa1a922b3a8ca89a26b0f2027a1a59281900390910190a15060009392505050565b615137615461565b6040518060200160405280670de0b6b3a764000061515d866000015186600001516152f0565b8161516457fe5b0490529392505050565b615176615461565b60405180602001604052806151a161519a8660000151670de0b6b3a76400006152f0565b8551615332565b90529392505050565b5190511090565b60006151bb615461565b6151c585856152c0565b90506118d66151d3826152e1565b84614c9a565b6000808383018481106151f1576000925090506151fb565b5060029150600090505b9250929050565b6000808383116152195750600090508183036151fb565b506003905060006151fb565b600083830182858210156152b75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561527c578181015183820152602001615264565b50505050905090810190601f1680156152a95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50949350505050565b6152c8615461565b60405180602001604052806151a18560000151856152f0565b51670de0b6b3a7640000900490565b6000611a9383836040518060400160405280601781526020017f6d756c7469706c69636174696f6e206f766572666c6f77000000000000000000815250615365565b6000611a9383836040518060400160405280600e81526020016d646976696465206279207a65726f60901b8152506153db565b6000831580615372575082155b1561537f57506000611a93565b8383028385828161538c57fe5b041483906152b75760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561527c578181015183820152602001615264565b6000818361542a5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561527c578181015183820152602001615264565b5082848161543457fe5b04949350505050565b8154818355818111156128eb576000838152602090206128eb9181019083016154de565b6040518060200160405280600081525090565b6040518061014001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016154b2615461565b81526020016154bf615461565b81526020016154cc615461565b81526020016154d9615461565b905290565b612e0291905b808211156154f857600081556001016154e4565b509056fe63616e6e6f74207472616e7366657220746f206120637265646974206163636f756e746d61726b6574206e6f74206c6973746564206f7220736f66742064656c69737465646d61726b6574206e6f74206c6973746564000000000000000000000000000000657869744d61726b65743a206765744163636f756e74536e617073686f74206661696c65646d61726b657420616c7265616479206c6973746564206f722064656c697374656463616e6e6f74207265706179206f6e20626568616c66206f6620637265646974206163636f756e7461646d696e206f7220637265646974206c696d6974206d616e61676572206f6e6c79a265627a7a7231582011fd82ece564a3d32f29b732b76c4c0949620c16efdef093deebb09f2371f9f264736f6c63430005100032

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061048a5760003560e01c80636b79c38d11610262578063bb82aa5e11610151578063da3d454c116100ce578063e6653f3d11610092578063e6653f3d146112c8578063e8755446146112d0578063ea5d0104146112d8578063eabe7d91146112fe578063ede4edd014611334578063f851a4401461135a5761048a565b8063da3d454c1461120c578063dce1544914611242578063dcfbc0c71461126e578063e38e8c0f14611276578063e4028eee1461129c5761048a565b8063cc7ebdc411610115578063cc7ebdc41461111e578063d02f735114611144578063d13911491461118a578063d672d3e2146111b0578063d84f6aeb146111d65761048a565b8063bb82aa5e14610fbc578063bdcdc25814610fc4578063c299823814611000578063c488847b146110a1578063ca0af043146110f05761048a565b80638ebf6364116101df578063ac0b0bb7116101a3578063ac0b0bb714610ec2578063b0772d0b14610eca578063b1ab78e614610ed2578063b1e1af2414610f60578063b21be7fd14610f8e5761048a565b80638ebf636414610dd1578063929fe9a114610df057806399bc187314610e1e578063a979f0c514610e44578063abfceffc14610e4c5761048a565b80637dc0d1d0116102265780637dc0d1d014610d3757806385b2d53514610d3f57806387f7630314610d475780638c57804e14610d4f5780638e8f294b14610d755761048a565b80636b79c38d14610c4f5780636d154ea514610c9d5780636d35bf9114610cc3578063731f0c2b14610d09578063796b89b914610d2f5761048a565b80633d98a1e51161037e57806351a485e4116102fb5780635e2e9a44116102bf5780635e2e9a4414610ac35780635ec88c7914610ae95780635fc7e71e14610b0f578063607ef6c114610b555780636a56947e14610c135761048a565b806351a485e41461095057806351dff98914610a0e57806352d84d1e14610a4a57806355ee1fe114610a675780635c77860514610a8d5761048a565b80634ada90af116103425780634ada90af1461086d5780634e79238f146108755780634ef4c3e1146108cf5780634fd42e171461090557806350f6c85a146109225761048a565b80633d98a1e51461079157806341c728b9146107b7578063452a9320146107f357806347ef3b3b146107fb5780634a584432146108475761048a565b806321af45691161040c57806336bdd087116103d057806336bdd087146106d057806339e47ad2146106ff5780633b3af2571461072d5780633bcf7ec11461075b5780633c94786f146107895761048a565b806321af45691461064857806324008a6214610650578063267822471461068c5780632d70db7814610694578063317b0b77146106b35761048a565b8063188f848311610453578063188f84831461056657806318c882a51461058c5780631d504dc6146105ba5780631d7b33d7146105e05780631ededc91146106065761048a565b80627e3dd21461048f57806302c3bcbb146104ab5780630445254d146104e35780630aa5747714610511578063178de7eb14610542575b600080fd5b610497611362565b604080519115158252519081900360200190f35b6104d1600480360360208110156104c157600080fd5b50356001600160a01b0316611367565b60408051918252519081900360200190f35b6104d1600480360360408110156104f957600080fd5b506001600160a01b0381358116916020013516611379565b6105406004803603604081101561052757600080fd5b5080356001600160a01b0316906020013560ff166113a6565b005b61054a6114b5565b604080516001600160a01b039092168252519081900360200190f35b6104976004803603602081101561057c57600080fd5b50356001600160a01b03166114c4565b610497600480360360408110156105a257600080fd5b506001600160a01b038135169060200135151561150b565b610540600480360360208110156105d057600080fd5b50356001600160a01b031661169e565b6104d1600480360360208110156105f657600080fd5b50356001600160a01b0316611802565b610540600480360360a081101561061c57600080fd5b506001600160a01b03813581169160208101358216916040820135169060608101359060800135611814565b61054a61181b565b6104d16004803603608081101561066657600080fd5b506001600160a01b0381358116916020810135821691604082013516906060013561182a565b61054a6118df565b610497600480360360208110156106aa57600080fd5b503515156118ee565b6104d1600480360360208110156106c957600080fd5b5035611a27565b6104d1600480360360408110156106e657600080fd5b5080356001600160a01b0316906020013560ff16611a9a565b6105406004803603604081101561071557600080fd5b506001600160a01b0381351690602001351515611c64565b6104976004803603604081101561074357600080fd5b506001600160a01b0381358116916020013516611fe1565b6104976004803603604081101561077157600080fd5b506001600160a01b038135169060200135151561200e565b61049761219f565b610497600480360360208110156107a757600080fd5b50356001600160a01b03166121af565b610540600480360360808110156107cd57600080fd5b506001600160a01b038135811691602081013590911690604081013590606001356121cd565b61054a6121d3565b610540600480360360c081101561081157600080fd5b506001600160a01b0381358116916020810135821691604082013581169160608101359091169060808101359060a001356121e2565b6104d16004803603602081101561085d57600080fd5b50356001600160a01b03166121ea565b6104d16121fc565b6108b16004803603608081101561088b57600080fd5b506001600160a01b03813581169160208101359091169060408101359060600135612202565b60408051938452602084019290925282820152519081900360600190f35b6104d1600480360360608110156108e557600080fd5b506001600160a01b0381358116916020810135909116906040013561223c565b6104d16004803603602081101561091b57600080fd5b5035612588565b6105406004803603604081101561093857600080fd5b506001600160a01b03813581169160200135166125f1565b6105406004803603604081101561096657600080fd5b810190602081018135600160201b81111561098057600080fd5b82018360208201111561099257600080fd5b803590602001918460208302840111600160201b831117156109b357600080fd5b919390929091602081019035600160201b8111156109d057600080fd5b8201836020820111156109e257600080fd5b803590602001918460208302840111600160201b83111715610a0357600080fd5b50909250905061264c565b61054060048036036080811015610a2457600080fd5b506001600160a01b038135811691602081013590911690604081013590606001356127eb565b61054a60048036036020811015610a6057600080fd5b503561283f565b6104d160048036036020811015610a7d57600080fd5b50356001600160a01b0316612866565b61054060048036036060811015610aa357600080fd5b506001600160a01b038135811691602081013590911690604001356128eb565b61054060048036036020811015610ad957600080fd5b50356001600160a01b03166128f0565b6108b160048036036020811015610aff57600080fd5b50356001600160a01b031661299e565b6104d1600480360360a0811015610b2557600080fd5b506001600160a01b03813581169160208101358216916040820135811691606081013590911690608001356129d3565b61054060048036036040811015610b6b57600080fd5b810190602081018135600160201b811115610b8557600080fd5b820183602082011115610b9757600080fd5b803590602001918460208302840111600160201b83111715610bb857600080fd5b919390929091602081019035600160201b811115610bd557600080fd5b820183602082011115610be757600080fd5b803590602001918460208302840111600160201b83111715610c0857600080fd5b509092509050612c16565b61054060048036036080811015610c2957600080fd5b506001600160a01b038135811691602081013582169160408201351690606001356121cd565b610c7560048036036020811015610c6557600080fd5b50356001600160a01b0316612dac565b604080516001600160e01b03909316835263ffffffff90911660208301528051918290030190f35b61049760048036036020811015610cb357600080fd5b50356001600160a01b0316612dd6565b610540600480360360a0811015610cd957600080fd5b506001600160a01b0381358116916020810135821691604082013581169160608101359091169060800135611814565b61049760048036036020811015610d1f57600080fd5b50356001600160a01b0316612deb565b6104d1612e00565b61054a612e05565b61054a612e14565b610497612e23565b610c7560048036036020811015610d6557600080fd5b50356001600160a01b0316612e33565b610d9b60048036036020811015610d8b57600080fd5b50356001600160a01b0316612e5d565b6040518084151515158152602001838152602001826002811115610dbb57fe5b60ff168152602001935050505060405180910390f35b61049760048036036020811015610de757600080fd5b50351515612e83565b61049760048036036040811015610e0657600080fd5b506001600160a01b0381358116916020013516612fbf565b6104d160048036036020811015610e3457600080fd5b50356001600160a01b0316612ff2565b61054a612ff8565b610e7260048036036020811015610e6257600080fd5b50356001600160a01b0316613007565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610eae578181015183820152602001610e96565b505050509050019250505060405180910390f35b610497613090565b610e726130a0565b61049760048036036080811015610ee857600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610f2257600080fd5b820183602082011115610f3457600080fd5b803590602001918460018302840111600160201b83111715610f5557600080fd5b509092509050613102565b61049760048036036040811015610f7657600080fd5b506001600160a01b0381351690602001351515613125565b6104d160048036036040811015610fa457600080fd5b506001600160a01b03813581169160200135166132bb565b61054a6132d8565b6104d160048036036080811015610fda57600080fd5b506001600160a01b038135811691602081013582169160408201351690606001356132e7565b610e726004803603602081101561101657600080fd5b810190602081018135600160201b81111561103057600080fd5b82018360208201111561104257600080fd5b803590602001918460208302840111600160201b8311171561106357600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061338f945050505050565b6110d7600480360360608110156110b757600080fd5b506001600160a01b03813581169160208101359091169060400135613426565b6040805192835260208301919091528051918290030190f35b6104d16004803603604081101561110657600080fd5b506001600160a01b038135811691602001351661367c565b6104d16004803603602081101561113457600080fd5b50356001600160a01b0316613699565b6104d1600480360360a081101561115a57600080fd5b506001600160a01b03813581169160208101358216916040820135811691606081013590911690608001356136ab565b610497600480360360208110156111a057600080fd5b50356001600160a01b03166138e8565b610497600480360360208110156111c657600080fd5b50356001600160a01b03166138fd565b610540600480360360608110156111ec57600080fd5b506001600160a01b03813581169160208101359091169060400135613912565b6104d16004803603606081101561122257600080fd5b506001600160a01b0381358116916020810135909116906040013561397b565b61054a6004803603604081101561125857600080fd5b506001600160a01b038135169060200135613f1e565b61054a613f53565b6104d16004803603602081101561128c57600080fd5b50356001600160a01b0316613f62565b6104d1600480360360408110156112b257600080fd5b506001600160a01b038135169060200135613fe6565b610497614196565b6104d16141a6565b610540600480360360208110156112ee57600080fd5b50356001600160a01b03166141ac565b6104d16004803603606081101561131457600080fd5b506001600160a01b0381358116916020810135909116906040013561431b565b6104d16004803603602081101561134a57600080fd5b50356001600160a01b0316614330565b61054a614725565b600181565b60166020526000908152604090205481565b6001600160a01b038083166000908152601a60209081526040808320938516835292905220545b92915050565b336001600160a01b038316146113f1576040805162461bcd60e51b815260206004820152600b60248201526a62546f6b656e206f6e6c7960a81b604482015290519081900360640190fd5b6113fa826121af565b156114b1576001600160a01b0382166000908152600860205260409020600301805460ff811691839160ff1916600183600281111561143557fe5b02179055507f94d8c3b3b1c3ffd041fd0875027844944165fdf4c35639c43eed07a99583084f83828460405180846001600160a01b03166001600160a01b0316815260200183600281111561148657fe5b60ff16815260200182600281111561149a57fe5b60ff168152602001935050505060405180910390a1505b5050565b601c546001600160a01b031681565b6001600160a01b03811660009081526008602052604081205460ff168061150357506001600160a01b0382166000908152601b602052604090205460ff165b90505b919050565b6000611516836121af565b611555576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b6009546001600160a01b031633148061157857506000546001600160a01b031633145b6115c2576040805162461bcd60e51b8152602060048201526016602482015275677561726469616e206f722061646d696e206f6e6c7960501b604482015290519081900360640190fd5b6000546001600160a01b03163314806115dd57506001821515145b61161b576040805162461bcd60e51b815260206004820152600a60248201526961646d696e206f6e6c7960b01b604482015290519081900360640190fd5b6001600160a01b0383166000818152600b6020908152604091829020805486151560ff199091168117909155825193845283830152606090830181905260069083015265426f72726f7760d01b6080830152517f71aec636243f9709bb0007ae15e9afb8150ab01716d75fd7573be5cc096e03b09181900360a00190a150919050565b806001600160a01b031663f851a4406040518163ffffffff1660e01b815260040160206040518083038186803b1580156116d757600080fd5b505afa1580156116eb573d6000803e3d6000fd5b505050506040513d602081101561170157600080fd5b50516001600160a01b03163314611757576040805162461bcd60e51b8152602060048201526015602482015274756e6974726f6c6c65722061646d696e206f6e6c7960581b604482015290519081900360640190fd5b806001600160a01b031663c1e803346040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561179257600080fd5b505af11580156117a6573d6000803e3d6000fd5b505050506040513d60208110156117bc57600080fd5b5051156117ff576040805162461bcd60e51b815260206004820152600c60248201526b1d5b985d5d1a1bdc9a5e995960a21b604482015290519081900360640190fd5b50565b600d6020526000908152604090205481565b5050505050565b6013546001600160a01b031681565b6000611835856114c4565b611874576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b61187e8386611fe1565b156118d357836001600160a01b0316836001600160a01b0316146118d35760405162461bcd60e51b81526004018080602001828103825260288152602001806155a86028913960400191505060405180910390fd5b60005b95945050505050565b6001546001600160a01b031681565b6009546000906001600160a01b031633148061191457506000546001600160a01b031633145b61195e576040805162461bcd60e51b8152602060048201526016602482015275677561726469616e206f722061646d696e206f6e6c7960501b604482015290519081900360640190fd5b6000546001600160a01b031633148061197957506001821515145b6119b7576040805162461bcd60e51b815260206004820152600a60248201526961646d696e206f6e6c7960b01b604482015290519081900360640190fd5b60098054831515600160b81b810260ff60b81b1990921691909117909155604080516020810192909252808252600582820152645365697a6560d81b6060830152517fef159d9a32b2472e32b098f954f3ce62d232939f1c207070b584df1814de2de09181900360800190a15090565b600080546001600160a01b03163314611a4d57611a4660016004614734565b9050611506565b6005805490839055604080518281526020810185905281517f3b9670cf975d26958e754b57098eaa2ac914d8d2a31b83257997b9f346110fd9929181900390910190a160005b9392505050565b600080546001600160a01b03163314611ae7576040805162461bcd60e51b815260206004820152600a60248201526961646d696e206f6e6c7960b01b604482015290519081900360640190fd5b611af0836114c4565b15611b2c5760405162461bcd60e51b81526004018080602001828103825260218152602001806155876021913960400191505060405180910390fd5b826001600160a01b031663fbb623376040518163ffffffff1660e01b815260040160206040518083038186803b158015611b6557600080fd5b505afa158015611b79573d6000803e3d6000fd5b505050506040513d6020811015611b8f57600080fd5b5050604080516060810182526001815260006020820152908101836002811115611bb557fe5b90526001600160a01b0384166000908152600860209081526040918290208351815490151560ff1991821617825591840151600180830191909155928401516003820180549294919390921690836002811115611c0e57fe5b0217905550905050611c1f8361479a565b604080516001600160a01b038516815290517fcf583bb0c569eb967f806b11601c4cb93c10310485c67add5f8362c2f212321f9181900360200190a160009392505050565b6000546001600160a01b03163314611cb0576040805162461bcd60e51b815260206004820152600a60248201526961646d696e206f6e6c7960b01b604482015290519081900360640190fd5b6001600160a01b03821660009081526008602052604090206001015415611d16576040805162461bcd60e51b81526020600482015260156024820152741b585c9ad95d081a185cc818dbdb1b185d195c985b605a1b604482015290519081900360640190fd5b6001600160a01b0382166000908152600a602052604090205460ff168015611d5657506001600160a01b0382166000908152600b602052604090205460ff165b8015611d7a57506001600160a01b03821660009081526018602052604090205460ff165b611dbf576040805162461bcd60e51b81526020600482015260116024820152701b585c9ad95d081b9bdd081c185d5cd959607a1b604482015290519081900360640190fd5b80611e3457611dcd826121af565b611e0c576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152601b60205260409020805460ff19166001179055611e78565b611e3d826114c4565b611e785760405162461bcd60e51b81526004018080602001828103825260228152602001806155206022913960400191505060405180910390fd5b6001600160a01b0382166000908152600860205260408120805460ff199081168255600182018390556003909101805490911690555b600c54811015611f9757826001600160a01b0316600c8281548110611ecf57fe5b6000918252602090912001546001600160a01b03161415611f8f57600c80546000198101908110611efc57fe5b600091825260209091200154600c80546001600160a01b039092169183908110611f2257fe5b600091825260209091200180546001600160a01b0319166001600160a01b0392909216919091179055600c80546000198101908110611f5d57fe5b600091825260209091200180546001600160a01b0319169055600c805490611f8990600019830161543d565b50611f97565b600101611eae565b50604080516001600160a01b0384168152821515602082015281517f1fc2e72349204abf00cbc7494177aff8e597323c72b7f50dfe56055d0d8f6d9a929181900390910190a15050565b6001600160a01b039182166000908152601a60209081526040808320939094168252919091522054151590565b6000612019836121af565b612058576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b6009546001600160a01b031633148061207b57506000546001600160a01b031633145b6120c5576040805162461bcd60e51b8152602060048201526016602482015275677561726469616e206f722061646d696e206f6e6c7960501b604482015290519081900360640190fd5b6000546001600160a01b03163314806120e057506001821515145b61211e576040805162461bcd60e51b815260206004820152600a60248201526961646d696e206f6e6c7960b01b604482015290519081900360640190fd5b6001600160a01b0383166000818152600a6020908152604091829020805486151560ff199091168117909155825193845283830152606090830181905260049083015263135a5b9d60e21b6080830152517f71aec636243f9709bb0007ae15e9afb8150ab01716d75fd7573be5cc096e03b09181900360a00190a150919050565b600954600160a01b900460ff1681565b6001600160a01b031660009081526008602052604090205460ff1690565b50505050565b6009546001600160a01b031681565b505050505050565b60146020526000908152604090205481565b60065481565b6000806000806000806122178a8a8a8a614878565b92509250925082601181111561222957fe5b95509093509150505b9450945094915050565b6001600160a01b0383166000908152600a602052604081205460ff161561229b576040805162461bcd60e51b815260206004820152600e60248201526d1b5a5b9d081a5cc81c185d5cd95960921b604482015290519081900360640190fd5b6122a58385611fe1565b156122f7576040805162461bcd60e51b815260206004820152601a60248201527f637265646974206163636f756e742063616e6e6f74206d696e74000000000000604482015290519081900360640190fd5b612300846121af565b61233f576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526016602052604090205480156118d3576000856001600160a01b0316633b1d21a26040518163ffffffff1660e01b815260040160206040518083038186803b15801561239957600080fd5b505afa1580156123ad573d6000803e3d6000fd5b505050506040513d60208110156123c357600080fd5b5051604080516308f7a6e360e31b815290519192506000916001600160a01b038916916347bd3718916004808301926020929190829003018186803b15801561240b57600080fd5b505afa15801561241f573d6000803e3d6000fd5b505050506040513d602081101561243557600080fd5b505160408051638f840ddd60e01b815290519192506000916001600160a01b038a1691638f840ddd916004808301926020929190829003018186803b15801561247d57600080fd5b505afa158015612491573d6000803e3d6000fd5b505050506040513d60208110156124a757600080fd5b505190506000806124b9858585614c4e565b909250905060008260038111156124cc57fe5b14612515576040805162461bcd60e51b81526020600482015260146024820152731d1bdd185b14dd5c1c1b1a595cc819985a5b195960621b604482015290519081900360640190fd5b6000612521828a614c9a565b9050868110612577576040805162461bcd60e51b815260206004820152601960248201527f6d61726b657420737570706c7920636170207265616368656400000000000000604482015290519081900360640190fd5b505050505050600095945050505050565b600080546001600160a01b031633146125a757611a466001600b614734565b6006805490839055604080518281526020810185905281517faeba5a6c40a8ac138134bff1aaa65debf25971188a58804bad717f82f0ec1316929181900390910190a16000611a93565b6009546001600160a01b03163314612640576040805162461bcd60e51b815260206004820152600d60248201526c677561726469616e206f6e6c7960981b604482015290519081900360640190fd5b6114b182826001614cd0565b6000546001600160a01b031633148061266f57506009546001600160a01b031633145b6126b9576040805162461bcd60e51b815260206004820152601660248201527561646d696e206f7220677561726469616e206f6e6c7960501b604482015290519081900360640190fd5b828181158015906126c957508082145b61270a576040805162461bcd60e51b815260206004820152600d60248201526c1a5b9d985b1a59081a5b9c1d5d609a1b604482015290519081900360640190fd5b60005b828110156127e25784848281811061272157fe5b905060200201356016600089898581811061273857fe5b905060200201356001600160a01b03166001600160a01b03166001600160a01b031681526020019081526020016000208190555086868281811061277857fe5b905060200201356001600160a01b03166001600160a01b03167f9e0ad9cee10bdf36b7fbd38910c0bdff0f275ace679b45b922381c2723d676f88686848181106127be57fe5b905060200201356040518082815260200191505060405180910390a260010161270d565b50505050505050565b801580156127f95750600082115b156121cd576040805162461bcd60e51b815260206004820152601160248201527072656465656d546f6b656e73207a65726f60781b604482015290519081900360640190fd5b600c818154811061284c57fe5b6000918252602090912001546001600160a01b0316905081565b600080546001600160a01b0316331461288557611a4660016010614734565b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fd52b2b9b7e9ee655fcb95d2e5b9e0c9f69e7ef2b8e9d2d0ea78402d576d22e22929181900390910190a16000611a93565b505050565b6000546001600160a01b0316331461293c576040805162461bcd60e51b815260206004820152600a60248201526961646d696e206f6e6c7960b01b604482015290519081900360640190fd5b601c80546001600160a01b038381166001600160a01b0319831617928390556040805192821680845293909116602083015280517fa4c457d40aa1c979a2194279d244db38b26ba51dac56dfa7f01446c0d00f8f659281900390910190a15050565b6000806000806000806129b5876000806000614878565b9250925092508260118111156129c757fe5b97919650945092505050565b60006129df8387611fe1565b15612a31576040805162461bcd60e51b815260206004820152601f60248201527f63616e6e6f74206c697175696461746520637265646974206163636f756e7400604482015290519081900360640190fd5b612a3a866114c4565b8015612a4a5750612a4a856114c4565b612a89576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b600080612a9585614d86565b91935090915060009050826011811115612aab57fe5b14612afd576040805162461bcd60e51b815260206004820152601f60248201527f6661696c656420746f20676574206163636f756e74206c697175696469747900604482015290519081900360640190fd5b60008111612b4b576040805162461bcd60e51b81526020600482015260166024820152751a5b9cdd59999a58da595b9d081cda1bdc9d19985b1b60521b604482015290519081900360640190fd5b6000886001600160a01b03166395dd9193876040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015612ba357600080fd5b505afa158015612bb7573d6000803e3d6000fd5b505050506040513d6020811015612bcd57600080fd5b505160408051602081019091526005548152909150600090612bef9083614da6565b905080861115612c065760119450505050506118d6565b5060009998505050505050505050565b6000546001600160a01b0316331480612c3957506009546001600160a01b031633145b612c83576040805162461bcd60e51b815260206004820152601660248201527561646d696e206f7220677561726469616e206f6e6c7960501b604482015290519081900360640190fd5b82818115801590612c9357508082145b612cd4576040805162461bcd60e51b815260206004820152600d60248201526c1a5b9d985b1a59081a5b9c1d5d609a1b604482015290519081900360640190fd5b60005b828110156127e257848482818110612ceb57fe5b9050602002013560146000898985818110612d0257fe5b905060200201356001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002081905550868682818110612d4257fe5b905060200201356001600160a01b03166001600160a01b03167f6f1951b2aad10f3fc81b86d91105b413a5b3f847a34bbc5ce1904201b14438f6868684818110612d8857fe5b905060200201356040518082815260200191505060405180910390a2600101612cd7565b600e602052600090815260409020546001600160e01b03811690600160e01b900463ffffffff1682565b600b6020526000908152604090205460ff1681565b600a6020526000908152604090205460ff1681565b425b90565b6004546001600160a01b031681565b6019546001600160a01b031681565b600954600160b01b900460ff1681565b600f602052600090815260409020546001600160e01b03811690600160e01b900463ffffffff1682565b60086020526000908152604090208054600182015460039092015460ff91821692911683565b6009546000906001600160a01b0316331480612ea957506000546001600160a01b031633145b612ef3576040805162461bcd60e51b8152602060048201526016602482015275677561726469616e206f722061646d696e206f6e6c7960501b604482015290519081900360640190fd5b6000546001600160a01b0316331480612f0e57506001821515145b612f4c576040805162461bcd60e51b815260206004820152600a60248201526961646d696e206f6e6c7960b01b604482015290519081900360640190fd5b60098054831515600160b01b810260ff60b01b1990921691909117909155604080516020810192909252808252600882820152672a3930b739b332b960c11b6060830152517fef159d9a32b2472e32b098f954f3ce62d232939f1c207070b584df1814de2de09181900360800190a15090565b6001600160a01b038082166000908152600860209081526040808320938616835260029093019052205460ff1692915050565b50600090565b6015546001600160a01b031681565b60608060076000846001600160a01b03166001600160a01b0316815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561308357602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311613065575b5093979650505050505050565b600954600160b81b900460ff1681565b6060600c8054806020026020016040519081016040528092919081815260200182805480156130f857602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116130da575b5050505050905090565b505050506001600160a01b031660009081526018602052604090205460ff161590565b6000613130836121af565b61316f576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b6009546001600160a01b031633148061319257506000546001600160a01b031633145b6131dc576040805162461bcd60e51b8152602060048201526016602482015275677561726469616e206f722061646d696e206f6e6c7960501b604482015290519081900360640190fd5b6000546001600160a01b03163314806131f757506001821515145b613235576040805162461bcd60e51b815260206004820152600a60248201526961646d696e206f6e6c7960b01b604482015290519081900360640190fd5b6001600160a01b038316600081815260186020908152604091829020805486151560ff199091168117909155825193845283830152606090830181905260099083015268233630b9b43637b0b760b91b6080830152517f71aec636243f9709bb0007ae15e9afb8150ab01716d75fd7573be5cc096e03b09181900360a00190a150919050565b601060209081526000928352604080842090915290825290205481565b6002546001600160a01b031681565b600954600090600160b01b900460ff161561333e576040805162461bcd60e51b81526020600482015260126024820152711d1c985b9cd9995c881a5cc81c185d5cd95960721b604482015290519081900360640190fd5b6133488386611fe1565b156133845760405162461bcd60e51b81526004018080602001828103825260238152602001806154fd6023913960400191505060405180910390fd5b6118d6858584614dc5565b60606000825190506060816040519080825280602002602001820160405280156133c3578160200160208202803883390190505b50905060005b8281101561341e5760008582815181106133df57fe5b602002602001015190506133f38133614f68565b60118111156133fe57fe5b83838151811061340a57fe5b6020908102919091010152506001016133c9565b509392505050565b600480546040805163fc57d4df60e01b81526001600160a01b038781169482019490945290516000938493849391169163fc57d4df91602480820192602092909190829003018186803b15801561347c57600080fd5b505afa158015613490573d6000803e3d6000fd5b505050506040513d60208110156134a657600080fd5b5051600480546040805163fc57d4df60e01b81526001600160a01b038a8116948201949094529051939450600093929091169163fc57d4df91602480820192602092909190829003018186803b1580156134ff57600080fd5b505afa158015613513573d6000803e3d6000fd5b505050506040513d602081101561352957600080fd5b50519050811580159061353c5750600081115b61357b576040805162461bcd60e51b815260206004820152600b60248201526a383934b1b29032b93937b960a91b604482015290519081900360640190fd5b6000866001600160a01b031663182df0f56040518163ffffffff1660e01b815260040160206040518083038186803b1580156135b657600080fd5b505afa1580156135ca573d6000803e3d6000fd5b505050506040513d60208110156135e057600080fd5b505190506135ec615461565b613614604051806020016040528060065481525060405180602001604052808781525061512f565b905061361e615461565b61364460405180602001604052808681525060405180602001604052808681525061512f565b905061364e615461565b613658838361516e565b90506000613666828b614da6565b600099509750505050505050505b935093915050565b601160209081526000928352604080842090915290825290205481565b60126020526000908152604090205481565b600954600090600160b81b900460ff16156136ff576040805162461bcd60e51b815260206004820152600f60248201526e1cd95a5e99481a5cc81c185d5cd959608a1b604482015290519081900360640190fd5b6137098386611fe1565b1561375b576040805162461bcd60e51b815260206004820181905260248201527f63616e6e6f74207365697a652066726f6d20637265646974206163636f756e74604482015290519081900360640190fd5b613764856114c4565b80156137745750613774866114c4565b6137b3576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b846001600160a01b0316635fe3b5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156137ec57600080fd5b505afa158015613800573d6000803e3d6000fd5b505050506040513d602081101561381657600080fd5b505160408051635fe3b56760e01b815290516001600160a01b0392831692891691635fe3b567916004808301926020929190829003018186803b15801561385c57600080fd5b505afa158015613870573d6000803e3d6000fd5b505050506040513d602081101561388657600080fd5b50516001600160a01b0316146138dc576040805162461bcd60e51b815260206004820152601660248201527518dbdb5c1d1c9bdb1b195c881b5a5cdb585d18da195960521b604482015290519081900360640190fd5b60009695505050505050565b601b6020526000908152604090205460ff1681565b60186020526000908152604090205460ff1681565b6000546001600160a01b03163314806139355750601c546001600160a01b031633145b6139705760405162461bcd60e51b81526004018080602001828103825260228152602001806155d06022913960400191505060405180910390fd5b6128eb838383614cd0565b6001600160a01b0383166000908152600b602052604081205460ff16156139dc576040805162461bcd60e51b815260206004820152601060248201526f189bdc9c9bddc81a5cc81c185d5cd95960821b604482015290519081900360640190fd5b6139e5846121af565b613a24576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b6001600160a01b038085166000908152600860209081526040808320938716835260029093019052205460ff16613b3d57336001600160a01b03851614613aaa576040805162461bcd60e51b815260206004820152601560248201527439b2b73232b91036bab9ba10313290312a37b5b2b760591b604482015290519081900360640190fd5b6000613ab68585614f68565b6011811115613ac157fe5b14613b0a576040805162461bcd60e51b815260206004820152601460248201527319985a5b1959081d1bc8185919081b585c9ad95d60621b604482015290519081900360640190fd5b6001600160a01b038085166000908152600860209081526040808320938716835260029093019052205460ff16613b3d57fe5b600480546040805163fc57d4df60e01b81526001600160a01b03888116948201949094529051929091169163fc57d4df91602480820192602092909190829003018186803b158015613b8e57600080fd5b505afa158015613ba2573d6000803e3d6000fd5b505050506040513d6020811015613bb857600080fd5b5051613bf9576040805162461bcd60e51b815260206004820152600b60248201526a383934b1b29032b93937b960a91b604482015290519081900360640190fd5b6001600160a01b0384166000908152601460205260409020548015613ce6576000856001600160a01b03166347bd37186040518163ffffffff1660e01b815260040160206040518083038186803b158015613c5357600080fd5b505afa158015613c67573d6000803e3d6000fd5b505050506040513d6020811015613c7d57600080fd5b505190506000613c8d8286614c9a565b9050828110613ce3576040805162461bcd60e51b815260206004820152601960248201527f6d61726b657420626f72726f7720636170207265616368656400000000000000604482015290519081900360640190fd5b50505b6001600160a01b038085166000908152601a60209081526040808320938916835292905220548015613e4c57600080876001600160a01b031663c37f68e2886040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060806040518083038186803b158015613d6b57600080fd5b505afa158015613d7f573d6000803e3d6000fd5b505050506040513d6080811015613d9557600080fd5b50805160409091015190925090508115613de7576040805162461bcd60e51b815260206004820152600e60248201526d39b730b839b437ba1032b93937b960911b604482015290519081900360640190fd5b613df18187614c9a565b831015613e45576040805162461bcd60e51b815260206004820152601960248201527f696e73756666696369656e7420637265646974206c696d697400000000000000604482015290519081900360640190fd5b50506138dc565b600080613e5c8789600089614878565b91935090915060009050826011811115613e7257fe5b14613ec4576040805162461bcd60e51b815260206004820152601f60248201527f6661696c656420746f20676574206163636f756e74206c697175696469747900604482015290519081900360640190fd5b8015613f10576040805162461bcd60e51b8152602060048201526016602482015275696e73756666696369656e74206c697175696469747960501b604482015290519081900360640190fd5b505060009695505050505050565b60076020528160005260406000208181548110613f3757fe5b6000918252602090912001546001600160a01b03169150829050565b6003546001600160a01b031681565b600080546001600160a01b03163314613f8157611a4660016013614734565b600980546001600160a01b038481166001600160a01b0319831617928390556040805192821680845293909116602083015280517f08fdaf06427a2010e5958f4329b566993472d14ce81d3f16ce7f2a2660da98e39281900390910190a16000611a93565b600080546001600160a01b0316331461400c5761400560016006614734565b90506113a0565b6001600160a01b0383166000908152600860205260409020805460ff166140415761403960096007614734565b9150506113a0565b614049615461565b506040805160208101909152838152614060615461565b506040805160208101909152670c7d713b49da0000815261408181836151aa565b1561409c5761409260066008614734565b93505050506113a0565b84158015906141255750600480546040805163fc57d4df60e01b81526001600160a01b038a8116948201949094529051929091169163fc57d4df91602480820192602092909190829003018186803b1580156140f757600080fd5b505afa15801561410b573d6000803e3d6000fd5b505050506040513d602081101561412157600080fd5b5051155b1561413657614092600d6009614734565b60018301805490869055604080516001600160a01b03891681526020810183905280820188905290517f70483e6592cd5182d45ac970e05bc62cdcc90e9d8ef2c2dbe686cf383bcd7fc59181900360600190a16000979650505050505050565b600954600160a81b900460ff1681565b60055481565b6000546001600160a01b031633146141f8576040805162461bcd60e51b815260206004820152600a60248201526961646d696e206f6e6c7960b01b604482015290519081900360640190fd5b306001600160a01b0316816001600160a01b0316635fe3b5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561423b57600080fd5b505afa15801561424f573d6000803e3d6000fd5b505050506040513d602081101561426557600080fd5b50516001600160a01b0316146142b9576040805162461bcd60e51b815260206004820152601460248201527336b4b9b6b0ba31b41031b7b6b83a3937b63632b960611b604482015290519081900360640190fd5b601980546001600160a01b038381166001600160a01b0319831617928390556040805192821680845293909116602083015280517f4247a233ab0926daf14619c57e7d333975443a34cc5e1a30478bc4e7e716c8a29281900390910190a15050565b6000614328848484614dc5565b949350505050565b6000808290506000806000836001600160a01b031663c37f68e2336040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060806040518083038186803b15801561439157600080fd5b505afa1580156143a5573d6000803e3d6000fd5b505050506040513d60808110156143bb57600080fd5b50805160208201516040909201519094509092509050821561440e5760405162461bcd60e51b81526004018080602001828103825260258152602001806155626025913960400191505060405180910390fd5b801561445a576040805162461bcd60e51b81526020600482015260166024820152756e6f6e7a65726f20626f72726f772062616c616e636560501b604482015290519081900360640190fd5b614465863384614dc5565b156144af576040805162461bcd60e51b815260206004820152601560248201527419985a5b1959081d1bc8195e1a5d081b585c9ad95d605a1b604482015290519081900360640190fd5b6001600160a01b03861660009081526008602052604090206001600382015460ff1660028111156144dc57fe5b14156145425760408051638b35776b60e01b815233600482015290516001600160a01b03891691638b35776b91602480830192600092919082900301818387803b15801561452957600080fd5b505af115801561453d573d6000803e3d6000fd5b505050505b33600090815260028201602052604090205460ff1661456957600095505050505050611506565b3360009081526002820160209081526040808320805460ff1916905560078252918290208054835181840281018401909452808452606093928301828280156145db57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116145bd575b5050835193945083925060009150505b8281101561463057886001600160a01b031684828151811061460957fe5b60200260200101516001600160a01b0316141561462857809150614630565b6001016145eb565b5081811061463a57fe5b33600090815260076020526040902080546000190182146146c05780548190600019810190811061466757fe5b9060005260206000200160009054906101000a90046001600160a01b031681838154811061469157fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b80546146d082600019830161543d565b50604080516001600160a01b038b16815233602082015281517fe699a64c18b07ac5b7301aa273f36a2287239eb9501d81950672794afba29a0d929181900390910190a160009b9a5050505050505050505050565b6000546001600160a01b031681565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601181111561476357fe5b83601381111561476f57fe5b604080519283526020830191909152600082820152519081900360600190a1826011811115611a9357fe5b60005b600c5481101561482557816001600160a01b0316600c82815481106147be57fe5b6000918252602090912001546001600160a01b0316141561481d576040805162461bcd60e51b81526020600482015260146024820152731b585c9ad95d08185b1c9958591e48185919195960621b604482015290519081900360640190fd5b60010161479d565b50600c80546001810182556000919091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b0392909216919091179055565b6000806000614885615474565b6001600160a01b038816600090815260076020908152604080832080548251818502810185019093528083526060938301828280156148ed57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116148cf575b50939450600093505050505b8151811015614c0f57600082828151811061491057fe5b60200260200101519050614923816114c4565b61492d5750614c07565b806001600160a01b031663c37f68e28d6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060806040518083038186803b15801561498357600080fd5b505afa158015614997573d6000803e3d6000fd5b505050506040513d60808110156149ad57600080fd5b508051602082015160408084015160609485015160808b0152938901939093529187019190915293508315614a1a576040805162461bcd60e51b815260206004820152600e60248201526d39b730b839b437ba1032b93937b960911b604482015290519081900360640190fd5b6040850151158015614a2e57506060850151155b8015614a4c57508a6001600160a01b0316816001600160a01b031614155b15614a575750614c07565b60408051602080820183526001600160a01b0380851660008181526008845285902060010154845260c08a01939093528351808301855260808a0151815260e08a015260048054855163fc57d4df60e01b815291820194909452935192169263fc57d4df9260248083019392829003018186803b158015614ad757600080fd5b505afa158015614aeb573d6000803e3d6000fd5b505050506040513d6020811015614b0157600080fd5b505160a08601819052614b49576040805162461bcd60e51b815260206004820152600b60248201526a383934b1b29032b93937b960a91b604482015290519081900360640190fd5b604080516020810190915260a0860151815261010086015260c085015160e0860151614b8391614b789161512f565b86610100015161512f565b610120860181905260408601518651614b9d9291906151b1565b855261010085015160608601516020870151614bba9291906151b1565b60208601526001600160a01b03818116908c161415614c0557614be78561012001518b87602001516151b1565b60208601819052610100860151614bff918b906151b1565b60208601525b505b6001016148f9565b50602083015183511115614c355750506020810151905160009450039150829050612232565b5050805160209091015160009450849350039050612232565b600080600080614c5e87876151d9565b90925090506000826003811115614c7157fe5b14614c825750915060009050613674565b614c8c8186615202565b935093505050935093915050565b6000611a938383604051806040016040528060118152602001706164646974696f6e206f766572666c6f7760781b815250615225565b614cd9826121af565b614d18576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b6001600160a01b038084166000818152601a6020908152604080832094871680845294825291829020859055815192835282019290925280820183905290517fd2430896b2083037d8bf873ee97e05de0442c7137b4c9413b9e928f7212869e99181900360600190a1505050565b6000806000614d99846000806000614878565b9250925092509193909250565b6000614db0615461565b614dba84846152c0565b9050614328816152e1565b6000614dd0846114c4565b614e0f576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b614e198385611fe1565b15614e6b576040805162461bcd60e51b815260206004820152601c60248201527f637265646974206163636f756e742063616e6e6f742072656465656d00000000604482015290519081900360640190fd5b6001600160a01b038085166000908152600860209081526040808320938716835260029093019052205460ff16614ea457506000611a93565b600080614eb48587866000614878565b91935090915060009050826011811115614eca57fe5b14614f1c576040805162461bcd60e51b815260206004820152601f60248201527f6661696c656420746f20676574206163636f756e74206c697175696469747900604482015290519081900360640190fd5b80156138dc576040805162461bcd60e51b8152602060048201526016602482015275696e73756666696369656e74206c697175696469747960501b604482015290519081900360640190fd5b6001600160a01b0382166000908152600860205260408120805460ff16614fc4576040805162461bcd60e51b81526020600482015260116024820152600080516020615542833981519152604482015290519081900360640190fd5b6001600382015460ff166002811115614fd957fe5b141561506457836001600160a01b0316638897bd85846040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050602060405180830381600087803b15801561503757600080fd5b505af115801561504b573d6000803e3d6000fd5b505050506040513d602081101561506157600080fd5b50505b6001600160a01b038316600090815260028201602052604090205460ff161515600114156150965760009150506113a0565b6001600160a01b0380841660008181526002840160209081526040808320805460ff19166001908117909155600783528184208054918201815584529282902090920180549489166001600160a01b031990951685179055815193845283019190915280517f3ab23ab0d51cccc0c3085aec51f99228625aa1a922b3a8ca89a26b0f2027a1a59281900390910190a15060009392505050565b615137615461565b6040518060200160405280670de0b6b3a764000061515d866000015186600001516152f0565b8161516457fe5b0490529392505050565b615176615461565b60405180602001604052806151a161519a8660000151670de0b6b3a76400006152f0565b8551615332565b90529392505050565b5190511090565b60006151bb615461565b6151c585856152c0565b90506118d66151d3826152e1565b84614c9a565b6000808383018481106151f1576000925090506151fb565b5060029150600090505b9250929050565b6000808383116152195750600090508183036151fb565b506003905060006151fb565b600083830182858210156152b75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561527c578181015183820152602001615264565b50505050905090810190601f1680156152a95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50949350505050565b6152c8615461565b60405180602001604052806151a18560000151856152f0565b51670de0b6b3a7640000900490565b6000611a9383836040518060400160405280601781526020017f6d756c7469706c69636174696f6e206f766572666c6f77000000000000000000815250615365565b6000611a9383836040518060400160405280600e81526020016d646976696465206279207a65726f60901b8152506153db565b6000831580615372575082155b1561537f57506000611a93565b8383028385828161538c57fe5b041483906152b75760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561527c578181015183820152602001615264565b6000818361542a5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561527c578181015183820152602001615264565b5082848161543457fe5b04949350505050565b8154818355818111156128eb576000838152602090206128eb9181019083016154de565b6040518060200160405280600081525090565b6040518061014001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016154b2615461565b81526020016154bf615461565b81526020016154cc615461565b81526020016154d9615461565b905290565b612e0291905b808211156154f857600081556001016154e4565b509056fe63616e6e6f74207472616e7366657220746f206120637265646974206163636f756e746d61726b6574206e6f74206c6973746564206f7220736f66742064656c69737465646d61726b6574206e6f74206c6973746564000000000000000000000000000000657869744d61726b65743a206765744163636f756e74536e617073686f74206661696c65646d61726b657420616c7265616479206c6973746564206f722064656c697374656463616e6e6f74207265706179206f6e20626568616c66206f6620637265646974206163636f756e7461646d696e206f7220637265646974206c696d6974206d616e61676572206f6e6c79a265627a7a7231582011fd82ece564a3d32f29b732b76c4c0949620c16efdef093deebb09f2371f9f264736f6c63430005100032

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.