ETH Price: $2,415.80 (-1.32%)

Token

Percent Ether (pETH)
 

Overview

Max Total Supply

16,070.01897305 pETH

Holders

64

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
0.03634129 pETH

Value
$0.00
0xB6B6b529f3d2D059F1c75F9657432F3551AF6247
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CEther

Compiler Version
v0.5.8+commit.23d335f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-09-23
*/

/**
 *Submitted for verification at Etherscan.io on 2019-05-07
*/

// File: contracts/ComptrollerInterface.sol

pragma solidity ^0.5.8;

interface ComptrollerInterface {
    /**
     * @notice Marker function used for light validation when updating the comptroller of a market
     * @dev Implementations should simply return true.
     * @return true
     */
    function isComptroller() external view returns (bool);

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

    function enterMarkets(address[] calldata cTokens) external returns (uint[] memory);
    function exitMarket(address cToken) external returns (uint);

    /*** Policy Hooks ***/

    function mintAllowed(address cToken, address minter, uint mintAmount) external returns (uint);
    function mintVerify(address cToken, address minter, uint mintAmount, uint mintTokens) external;

    function redeemAllowed(address cToken, address redeemer, uint redeemTokens) external returns (uint);
    function redeemVerify(address cToken, address redeemer, uint redeemAmount, uint redeemTokens) external;

    function borrowAllowed(address cToken, address borrower, uint borrowAmount) external returns (uint);
    function borrowVerify(address cToken, address borrower, uint borrowAmount) external;

    function repayBorrowAllowed(
        address cToken,
        address payer,
        address borrower,
        uint repayAmount) external returns (uint);
    function repayBorrowVerify(
        address cToken,
        address payer,
        address borrower,
        uint repayAmount,
        uint borrowerIndex) external;

    function liquidateBorrowAllowed(
        address cTokenBorrowed,
        address cTokenCollateral,
        address liquidator,
        address borrower,
        uint repayAmount) external returns (uint);
    function liquidateBorrowVerify(
        address cTokenBorrowed,
        address cTokenCollateral,
        address liquidator,
        address borrower,
        uint repayAmount,
        uint seizeTokens) external;

    function seizeAllowed(
        address cTokenCollateral,
        address cTokenBorrowed,
        address liquidator,
        address borrower,
        uint seizeTokens) external returns (uint);
    function seizeVerify(
        address cTokenCollateral,
        address cTokenBorrowed,
        address liquidator,
        address borrower,
        uint seizeTokens) external;

    function transferAllowed(address cToken, address src, address dst, uint transferTokens) external returns (uint);
    function transferVerify(address cToken, address src, address dst, uint transferTokens) external;

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

    function liquidateCalculateSeizeTokens(
        address cTokenBorrowed,
        address cTokenCollateral,
        uint repayAmount) external view returns (uint, uint);
}

// File: contracts/ErrorReporter.sol

pragma solidity ^0.5.8;

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,
        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,
        ZUNUSED
    }

    /**
      * @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(uint error, uint info, uint 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 (uint) {
        emit Failure(uint(err), uint(info), 0);

        return uint(err);
    }

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

        return uint(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_ACCUMULATED_INTEREST_CALCULATION_FAILED,
        ACCRUE_INTEREST_BORROW_RATE_CALCULATION_FAILED,
        ACCRUE_INTEREST_NEW_BORROW_INDEX_CALCULATION_FAILED,
        ACCRUE_INTEREST_NEW_TOTAL_BORROWS_CALCULATION_FAILED,
        ACCRUE_INTEREST_NEW_TOTAL_RESERVES_CALCULATION_FAILED,
        ACCRUE_INTEREST_SIMPLE_INTEREST_FACTOR_CALCULATION_FAILED,
        BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED,
        BORROW_ACCRUE_INTEREST_FAILED,
        BORROW_CASH_NOT_AVAILABLE,
        BORROW_FRESHNESS_CHECK,
        BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED,
        BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED,
        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_BALANCE_INCREMENT_FAILED,
        LIQUIDATE_SEIZE_BALANCE_DECREMENT_FAILED,
        LIQUIDATE_SEIZE_COMPTROLLER_REJECTION,
        LIQUIDATE_SEIZE_LIQUIDATOR_IS_BORROWER,
        LIQUIDATE_SEIZE_TOO_MUCH,
        MINT_ACCRUE_INTEREST_FAILED,
        MINT_COMPTROLLER_REJECTION,
        MINT_EXCHANGE_CALCULATION_FAILED,
        MINT_EXCHANGE_RATE_READ_FAILED,
        MINT_FRESHNESS_CHECK,
        MINT_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED,
        MINT_NEW_TOTAL_SUPPLY_CALCULATION_FAILED,
        MINT_TRANSFER_IN_FAILED,
        MINT_TRANSFER_IN_NOT_POSSIBLE,
        REDEEM_ACCRUE_INTEREST_FAILED,
        REDEEM_COMPTROLLER_REJECTION,
        REDEEM_EXCHANGE_TOKENS_CALCULATION_FAILED,
        REDEEM_EXCHANGE_AMOUNT_CALCULATION_FAILED,
        REDEEM_EXCHANGE_RATE_READ_FAILED,
        REDEEM_FRESHNESS_CHECK,
        REDEEM_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED,
        REDEEM_NEW_TOTAL_SUPPLY_CALCULATION_FAILED,
        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_ACCUMULATED_BALANCE_CALCULATION_FAILED,
        REPAY_BORROW_COMPTROLLER_REJECTION,
        REPAY_BORROW_FRESHNESS_CHECK,
        REPAY_BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED,
        REPAY_BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED,
        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,
        TRANSFER_NOT_ENOUGH,
        TRANSFER_TOO_MUCH
    }

    /**
      * @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(uint error, uint info, uint 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 (uint) {
        emit Failure(uint(err), uint(info), 0);

        return uint(err);
    }

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

        return uint(err);
    }
}

// File: contracts/CarefulMath.sol

pragma solidity ^0.5.8;

/**
  * @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(uint a, uint b) internal pure returns (MathError, uint) {
        if (a == 0) {
            return (MathError.NO_ERROR, 0);
        }

        uint 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(uint a, uint b) internal pure returns (MathError, uint) {
        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(uint a, uint b) internal pure returns (MathError, uint) {
        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(uint a, uint b) internal pure returns (MathError, uint) {
        uint 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(uint a, uint b, uint c) internal pure returns (MathError, uint) {
        (MathError err0, uint sum) = addUInt(a, b);

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

        return subUInt(sum, c);
    }
}

// File: contracts/Exponential.sol

pragma solidity ^0.5.8;


/**
 * @title Exponential module for storing fixed-decision 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 {
    uint constant expScale = 1e18;
    uint constant halfExpScale = expScale/2;
    uint constant mantissaOne = expScale;

    struct Exp {
        uint 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(uint num, uint denom) pure internal returns (MathError, Exp memory) {
        (MathError err0, uint scaledNumerator) = mulUInt(num, expScale);
        if (err0 != MathError.NO_ERROR) {
            return (err0, Exp({mantissa: 0}));
        }

        (MathError err1, uint 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) pure internal returns (MathError, Exp memory) {
        (MathError error, uint 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) pure internal returns (MathError, Exp memory) {
        (MathError error, uint 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, uint scalar) pure internal returns (MathError, Exp memory) {
        (MathError err0, uint 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, uint scalar) pure internal returns (MathError, uint) {
        (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, uint scalar, uint addend) pure internal returns (MathError, uint) {
        (MathError err, Exp memory product) = mulScalar(a, scalar);
        if (err != MathError.NO_ERROR) {
            return (err, 0);
        }

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

    /**
     * @dev Divide an Exp by a scalar, returning a new Exp.
     */
    function divScalar(Exp memory a, uint scalar) pure internal returns (MathError, Exp memory) {
        (MathError err0, uint 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(uint scalar, Exp memory divisor) pure internal 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, uint 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(uint scalar, Exp memory divisor) pure internal returns (MathError, uint) {
        (MathError err, Exp memory fraction) = divScalarByExp(scalar, divisor);
        if (err != MathError.NO_ERROR) {
            return (err, 0);
        }

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

    /**
     * @dev Multiplies two exponentials, returning a new exponential.
     */
    function mulExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) {

        (MathError err0, uint 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, uint doubleScaledProductWithHalfScale) = addUInt(halfExpScale, doubleScaledProduct);
        if (err1 != MathError.NO_ERROR) {
            return (err1, Exp({mantissa: 0}));
        }

        (MathError err2, uint 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(uint a, uint b) pure internal 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) pure internal 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) pure internal 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) pure internal returns (uint) {
        // 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) pure internal returns (bool) {
        return left.mantissa < right.mantissa; //TODO: Add some simple tests and this in another PR yo.
    }

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

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

// File: contracts/EIP20Interface.sol

pragma solidity ^0.5.8;

/**
 * @title ERC 20 Token Standard Interface
 *  https://eips.ethereum.org/EIPS/eip-20
 */
interface EIP20Interface {

    /**
      * @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: contracts/EIP20NonStandardInterface.sol

pragma solidity ^0.5.8;

/**
 * @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: contracts/ReentrancyGuard.sol

pragma solidity ^0.5.8;

/**
 * @title Helps contracts guard against reentrancy attacks.
 * @author Remco Bloemen <remco@2π.com>, Eenae <[email protected]>
 * @dev If you mark a function `nonReentrant`, you should also
 * mark it `external`.
 */
contract ReentrancyGuard {
    /// @dev counter to allow mutex lock with only one SSTORE operation
    uint256 private _guardCounter;

    constructor () internal {
        // The counter starts at one to prevent changing it from zero to a non-zero
        // value, which is a more expensive operation.
        _guardCounter = 1;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _guardCounter += 1;
        uint256 localCounter = _guardCounter;
        _;
        require(localCounter == _guardCounter, "re-entered");
    }
}

// File: contracts/InterestRateModel.sol

pragma solidity ^0.5.8;

/**
  * @title The Compound InterestRateModel Interface
  * @author Compound
  * @notice Any interest rate model should derive from this contract.
  * @dev These functions are specifically not marked `pure` as implementations of this
  *      contract may read from storage variables.
  */
interface InterestRateModel {
    /**
      * @notice Gets the current borrow interest rate based on the given asset, total cash, total borrows
      *         and total reserves.
      * @dev The return value should be scaled by 1e18, thus a return value of
      *      `(true, 1000000000000)` implies an interest rate of 0.000001 or 0.0001% *per block*.
      * @param cash The total cash of the underlying asset in the CToken
      * @param borrows The total borrows of the underlying asset in the CToken
      * @param reserves The total reserves of the underlying asset in the CToken
      * @return Success or failure and the borrow interest rate per block scaled by 10e18
      */
    function getBorrowRate(uint cash, uint borrows, uint reserves) external view returns (uint, uint);

    /**
      * @notice Marker function used for light validation when updating the interest rate model of a market
      * @dev Marker function used for light validation when updating the interest rate model of a market. Implementations should simply return true.
      * @return Success or failure
      */
    function isInterestRateModel() external view returns (bool);
}

// File: contracts/CToken.sol

pragma solidity ^0.5.8;








/**
 * @title Compound's CToken Contract
 * @notice Abstract base for CTokens
 * @author Compound
 */
contract CToken is EIP20Interface, Exponential, TokenErrorReporter, ReentrancyGuard {
    /**
     * @notice Indicator that this is a CToken contract (for inspection)
     */
    bool public constant isCToken = true;

    /**
     * @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
     */
    uint public decimals;

    /**
     * @notice Maximum borrow rate that can ever be applied (.0005% / block)
     */
    uint constant borrowRateMaxMantissa = 5e14;

    /**
     * @notice Maximum fraction of interest that can be set aside for reserves
     */
    uint 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-cToken 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 CTokens (used when totalSupply = 0)
     */
    uint public initialExchangeRateMantissa;

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

    /**
     * @notice Block number that interest was last accrued at
     */
    uint public accrualBlockNumber;

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

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

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

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

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

    /**
     * @notice Approved token transfer amounts on behalf of others
     */
    mapping (address => mapping (address => uint256)) 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 {
        uint principal;
        uint interestIndex;
    }

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


    /*** Market Events ***/

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

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

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

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

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

    /**
     * @notice Event emitted when a borrow is liquidated
     */
    event LiquidateBorrow(address liquidator, address borrower, uint repayAmount, address cTokenCollateral, uint 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(uint oldReserveFactorMantissa, uint newReserveFactorMantissa);

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


    /**
     * @notice Construct a new 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
     */
    constructor(ComptrollerInterface comptroller_,
                InterestRateModel interestRateModel_,
                uint initialExchangeRateMantissa_,
                string memory name_,
                string memory symbol_,
                uint decimals_) internal {
        // Set admin to msg.sender
        admin = msg.sender;

        // Set initial exchange rate
        initialExchangeRateMantissa = initialExchangeRateMantissa_;
        require(initialExchangeRateMantissa > 0, "Initial exchange rate must be greater than zero.");

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

        // Initialize block number and borrow index (block number mocks depend on comptroller being set)
        accrualBlockNumber = getBlockNumber();
        borrowIndex = mantissaOne;

        // Set the interest rate model (depends on block number / borrow index)
        err = _setInterestRateModelFresh(interestRateModel_);
        require(err == uint(Error.NO_ERROR), "Setting interest rate model failed");

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

    /**
     * @notice Transfer `tokens` tokens from `src` to `dst` by `spender`
     * @dev Called by both `transfer` and `transferFrom` internally
     * @param spender The address of the account performing the transfer
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param tokens The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferTokens(address spender, address src, address dst, uint tokens) internal returns (uint) {
        /* Fail if transfer not allowed */
        uint allowed = comptroller.transferAllowed(address(this), src, dst, tokens);
        if (allowed != 0) {
            return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.TRANSFER_COMPTROLLER_REJECTION, allowed);
        }

        /* Do not allow self-transfers */
        if (src == dst) {
            return fail(Error.BAD_INPUT, FailureInfo.TRANSFER_NOT_ALLOWED);
        }

        /* Get the allowance, infinite for the account owner */
        uint startingAllowance = 0;
        if (spender == src) {
            startingAllowance = uint(-1);
        } else {
            startingAllowance = transferAllowances[src][spender];
        }

        /* Do the calculations, checking for {under,over}flow */
        MathError mathErr;
        uint allowanceNew;
        uint srcTokensNew;
        uint dstTokensNew;

        (mathErr, allowanceNew) = subUInt(startingAllowance, tokens);
        if (mathErr != MathError.NO_ERROR) {
            return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_NOT_ALLOWED);
        }

        (mathErr, srcTokensNew) = subUInt(accountTokens[src], tokens);
        if (mathErr != MathError.NO_ERROR) {
            return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_NOT_ENOUGH);
        }

        (mathErr, dstTokensNew) = addUInt(accountTokens[dst], tokens);
        if (mathErr != MathError.NO_ERROR) {
            return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_TOO_MUCH);
        }

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

        accountTokens[src] = srcTokensNew;
        accountTokens[dst] = dstTokensNew;

        /* Eat some of the allowance (if necessary) */
        if (startingAllowance != uint(-1)) {
            transferAllowances[src][spender] = allowanceNew;
        }

        /* We emit a Transfer event */
        emit Transfer(src, dst, tokens);

        /* We call the defense hook (which checks for under-collateralization) */
        comptroller.transferVerify(address(this), src, dst, tokens);

        return uint(Error.NO_ERROR);
    }

    /**
     * @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) == uint(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) == uint(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 (uint) {
        Exp memory exchangeRate = Exp({mantissa: exchangeRateCurrent()});
        (MathError mErr, uint balance) = mulScalarTruncate(exchangeRate, accountTokens[owner]);
        require(mErr == MathError.NO_ERROR);
        return balance;
    }

    /**
     * @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 (uint, uint, uint, uint) {
        uint cTokenBalance = accountTokens[account];
        uint borrowBalance;
        uint exchangeRateMantissa;

        MathError mErr;

        (mErr, borrowBalance) = borrowBalanceStoredInternal(account);
        if (mErr != MathError.NO_ERROR) {
            return (uint(Error.MATH_ERROR), 0, 0, 0);
        }

        (mErr, exchangeRateMantissa) = exchangeRateStoredInternal();
        if (mErr != MathError.NO_ERROR) {
            return (uint(Error.MATH_ERROR), 0, 0, 0);
        }

        return (uint(Error.NO_ERROR), cTokenBalance, borrowBalance, exchangeRateMantissa);
    }

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

    /**
     * @notice Returns the current per-block borrow interest rate for this cToken
     * @return The borrow interest rate per block, scaled by 1e18
     */
    function borrowRatePerBlock() external view returns (uint) {
        (uint opaqueErr, uint borrowRateMantissa) = interestRateModel.getBorrowRate(getCashPrior(), totalBorrows, totalReserves);
        require(opaqueErr == 0, "borrowRatePerBlock: interestRateModel.borrowRate failed"); // semi-opaque
        return borrowRateMantissa;
    }

    /**
     * @notice Returns the current per-block supply interest rate for this cToken
     * @return The supply interest rate per block, scaled by 1e18
     */
    function supplyRatePerBlock() external view returns (uint) {
        /* We calculate the supply rate:
         *  underlying = totalSupply × exchangeRate
         *  borrowsPer = totalBorrows ÷ underlying
         *  supplyRate = borrowRate × (1-reserveFactor) × borrowsPer
         */
        uint exchangeRateMantissa = exchangeRateStored();

        (uint e0, uint borrowRateMantissa) = interestRateModel.getBorrowRate(getCashPrior(), totalBorrows, totalReserves);
        require(e0 == 0, "supplyRatePerBlock: calculating borrowRate failed"); // semi-opaque

        (MathError e1, Exp memory underlying) = mulScalar(Exp({mantissa: exchangeRateMantissa}), totalSupply);
        require(e1 == MathError.NO_ERROR, "supplyRatePerBlock: calculating underlying failed");

        (MathError e2, Exp memory borrowsPer) = divScalarByExp(totalBorrows, underlying);
        require(e2 == MathError.NO_ERROR, "supplyRatePerBlock: calculating borrowsPer failed");

        (MathError e3, Exp memory oneMinusReserveFactor) = subExp(Exp({mantissa: mantissaOne}), Exp({mantissa: reserveFactorMantissa}));
        require(e3 == MathError.NO_ERROR, "supplyRatePerBlock: calculating oneMinusReserveFactor failed");

        (MathError e4, Exp memory supplyRate) = mulExp3(Exp({mantissa: borrowRateMantissa}), oneMinusReserveFactor, borrowsPer);
        require(e4 == MathError.NO_ERROR, "supplyRatePerBlock: calculating supplyRate failed");

        return supplyRate.mantissa;
    }

    /**
     * @notice Returns the current total borrows plus accrued interest
     * @return The total borrows with interest
     */
    function totalBorrowsCurrent() external nonReentrant returns (uint) {
        require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed");
        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 (uint) {
        require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed");
        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 (uint) {
        (MathError err, uint result) = borrowBalanceStoredInternal(account);
        require(err == MathError.NO_ERROR, "borrowBalanceStored: borrowBalanceStoredInternal failed");
        return result;
    }

    /**
     * @notice Return the borrow balance of account based on stored data
     * @param account The address whose balance should be calculated
     * @return (error code, the calculated balance or 0 if error code is non-zero)
     */
    function borrowBalanceStoredInternal(address account) internal view returns (MathError, uint) {
        /* Note: we do not assert that the market is up to date */
        MathError mathErr;
        uint principalTimesIndex;
        uint result;

        /* 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 (MathError.NO_ERROR, 0);
        }

        /* Calculate new borrow balance using the interest index:
         *  recentBorrowBalance = borrower.borrowBalance * market.borrowIndex / borrower.borrowIndex
         */
        (mathErr, principalTimesIndex) = mulUInt(borrowSnapshot.principal, borrowIndex);
        if (mathErr != MathError.NO_ERROR) {
            return (mathErr, 0);
        }

        (mathErr, result) = divUInt(principalTimesIndex, borrowSnapshot.interestIndex);
        if (mathErr != MathError.NO_ERROR) {
            return (mathErr, 0);
        }

        return (MathError.NO_ERROR, result);
    }

    /**
     * @notice Accrue interest then return the up-to-date exchange rate
     * @return Calculated exchange rate scaled by 1e18
     */
    function exchangeRateCurrent() public nonReentrant returns (uint) {
        require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed");
        return exchangeRateStored();
    }

    /**
     * @notice Calculates the exchange rate from the underlying to the CToken
     * @dev This function does not accrue interest before calculating the exchange rate
     * @return Calculated exchange rate scaled by 1e18
     */
    function exchangeRateStored() public view returns (uint) {
        (MathError err, uint result) = exchangeRateStoredInternal();
        require(err == MathError.NO_ERROR, "exchangeRateStored: exchangeRateStoredInternal failed");
        return result;
    }

    /**
     * @notice Calculates the exchange rate from the underlying to the CToken
     * @dev This function does not accrue interest before calculating the exchange rate
     * @return (error code, calculated exchange rate scaled by 1e18)
     */
    function exchangeRateStoredInternal() internal view returns (MathError, uint) {
        if (totalSupply == 0) {
            /*
             * If there are no tokens minted:
             *  exchangeRate = initialExchangeRate
             */
            return (MathError.NO_ERROR, initialExchangeRateMantissa);
        } else {
            /*
             * Otherwise:
             *  exchangeRate = (totalCash + totalBorrows - totalReserves) / totalSupply
             */
            uint totalCash = getCashPrior();
            uint cashPlusBorrowsMinusReserves;
            Exp memory exchangeRate;
            MathError mathErr;

            (mathErr, cashPlusBorrowsMinusReserves) = addThenSubUInt(totalCash, totalBorrows, totalReserves);
            if (mathErr != MathError.NO_ERROR) {
                return (mathErr, 0);
            }

            (mathErr, exchangeRate) = getExp(cashPlusBorrowsMinusReserves, totalSupply);
            if (mathErr != MathError.NO_ERROR) {
                return (mathErr, 0);
            }

            return (MathError.NO_ERROR, exchangeRate.mantissa);
        }
    }

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

    struct AccrueInterestLocalVars {
        MathError mathErr;
        uint opaqueErr;
        uint borrowRateMantissa;
        uint currentBlockNumber;
        uint blockDelta;

        Exp simpleInterestFactor;

        uint interestAccumulated;
        uint totalBorrowsNew;
        uint totalReservesNew;
        uint borrowIndexNew;
    }

    /**
      * @notice Applies accrued interest to total borrows and reserves.
      * @dev This calculates interest accrued from the last checkpointed block
      *      up to the current block and writes new checkpoint to storage.
      */
    function accrueInterest() public returns (uint) {
        AccrueInterestLocalVars memory vars;

        /* Calculate the current borrow interest rate */
        (vars.opaqueErr, vars.borrowRateMantissa) = interestRateModel.getBorrowRate(getCashPrior(), totalBorrows, totalReserves);
        require(vars.borrowRateMantissa <= borrowRateMaxMantissa, "borrow rate is absurdly high");
        if (vars.opaqueErr != 0) {
            return failOpaque(Error.INTEREST_RATE_MODEL_ERROR, FailureInfo.ACCRUE_INTEREST_BORROW_RATE_CALCULATION_FAILED, vars.opaqueErr);
        }

        /* Remember the initial block number */
        vars.currentBlockNumber = getBlockNumber();

        /* Calculate the number of blocks elapsed since the last accrual */
        (vars.mathErr, vars.blockDelta) = subUInt(vars.currentBlockNumber, accrualBlockNumber);
        assert(vars.mathErr == MathError.NO_ERROR); // Block delta should always succeed and if it doesn't, blow up.

        /*
         * Calculate the interest accumulated into borrows and reserves and the new index:
         *  simpleInterestFactor = borrowRate * blockDelta
         *  interestAccumulated = simpleInterestFactor * totalBorrows
         *  totalBorrowsNew = interestAccumulated + totalBorrows
         *  totalReservesNew = interestAccumulated * reserveFactor + totalReserves
         *  borrowIndexNew = simpleInterestFactor * borrowIndex + borrowIndex
         */
        (vars.mathErr, vars.simpleInterestFactor) = mulScalar(Exp({mantissa: vars.borrowRateMantissa}), vars.blockDelta);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_SIMPLE_INTEREST_FACTOR_CALCULATION_FAILED, uint(vars.mathErr));
        }

        (vars.mathErr, vars.interestAccumulated) = mulScalarTruncate(vars.simpleInterestFactor, totalBorrows);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_ACCUMULATED_INTEREST_CALCULATION_FAILED, uint(vars.mathErr));
        }

        (vars.mathErr, vars.totalBorrowsNew) = addUInt(vars.interestAccumulated, totalBorrows);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_NEW_TOTAL_BORROWS_CALCULATION_FAILED, uint(vars.mathErr));
        }

        (vars.mathErr, vars.totalReservesNew) = mulScalarTruncateAddUInt(Exp({mantissa: reserveFactorMantissa}), vars.interestAccumulated, totalReserves);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_NEW_TOTAL_RESERVES_CALCULATION_FAILED, uint(vars.mathErr));
        }

        (vars.mathErr, vars.borrowIndexNew) = mulScalarTruncateAddUInt(vars.simpleInterestFactor, borrowIndex, borrowIndex);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_NEW_BORROW_INDEX_CALCULATION_FAILED, uint(vars.mathErr));
        }

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

        /* We write the previously calculated values into storage */
        accrualBlockNumber = vars.currentBlockNumber;
        borrowIndex = vars.borrowIndexNew;
        totalBorrows = vars.totalBorrowsNew;
        totalReserves = vars.totalReservesNew;

        /* We emit an AccrueInterest event */
        emit AccrueInterest(vars.interestAccumulated, vars.borrowIndexNew, totalBorrows);

        return uint(Error.NO_ERROR);
    }

    /**
     * @notice Sender supplies assets into the market and receives cTokens in exchange
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param mintAmount The amount of the underlying asset to supply
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function mintInternal(uint mintAmount) internal nonReentrant returns (uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed
            return fail(Error(error), FailureInfo.MINT_ACCRUE_INTEREST_FAILED);
        }
        // mintFresh emits the actual Mint event if successful and logs on errors, so we don't need to
        return mintFresh(msg.sender, mintAmount);
    }

    struct MintLocalVars {
        Error err;
        MathError mathErr;
        uint exchangeRateMantissa;
        uint mintTokens;
        uint totalSupplyNew;
        uint accountTokensNew;
    }

    /**
     * @notice User supplies assets into the market and receives cTokens in exchange
     * @dev Assumes interest has already been accrued up to the current block
     * @param minter The address of the account which is supplying the assets
     * @param mintAmount The amount of the underlying asset to supply
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function mintFresh(address minter, uint mintAmount) internal returns (uint) {
        /* Fail if mint not allowed */
        uint allowed = comptroller.mintAllowed(address(this), minter, mintAmount);
        if (allowed != 0) {
            return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.MINT_COMPTROLLER_REJECTION, allowed);
        }

        /* Verify market's block number equals current block number */
        if (accrualBlockNumber != getBlockNumber()) {
            return fail(Error.MARKET_NOT_FRESH, FailureInfo.MINT_FRESHNESS_CHECK);
        }

        MintLocalVars memory vars;

        /* Fail if checkTransferIn fails */
        vars.err = checkTransferIn(minter, mintAmount);
        if (vars.err != Error.NO_ERROR) {
            return fail(vars.err, FailureInfo.MINT_TRANSFER_IN_NOT_POSSIBLE);
        }

        /*
         * We get the current exchange rate and calculate the number of cTokens to be minted:
         *  mintTokens = mintAmount / exchangeRate
         */
        (vars.mathErr, vars.exchangeRateMantissa) = exchangeRateStoredInternal();
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.MINT_EXCHANGE_RATE_READ_FAILED, uint(vars.mathErr));
        }

        (vars.mathErr, vars.mintTokens) = divScalarByExpTruncate(mintAmount, Exp({mantissa: vars.exchangeRateMantissa}));
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.MINT_EXCHANGE_CALCULATION_FAILED, uint(vars.mathErr));
        }

        /*
         * We calculate the new total supply of cTokens and minter token balance, checking for overflow:
         *  totalSupplyNew = totalSupply + mintTokens
         *  accountTokensNew = accountTokens[minter] + mintTokens
         */
        (vars.mathErr, vars.totalSupplyNew) = addUInt(totalSupply, vars.mintTokens);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.MINT_NEW_TOTAL_SUPPLY_CALCULATION_FAILED, uint(vars.mathErr));
        }

        (vars.mathErr, vars.accountTokensNew) = addUInt(accountTokens[minter], vars.mintTokens);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.MINT_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED, uint(vars.mathErr));
        }

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

        /*
         * We call doTransferIn for the minter and the mintAmount
         *  Note: The cToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the cToken holds an additional mintAmount of cash.
         *  If doTransferIn fails despite the fact we checked pre-conditions,
         *   we revert because we can't be sure if side effects occurred.
         */
        vars.err = doTransferIn(minter, mintAmount);
        if (vars.err != Error.NO_ERROR) {
            return fail(vars.err, FailureInfo.MINT_TRANSFER_IN_FAILED);
        }

        /* We write previously calculated values into storage */
        totalSupply = vars.totalSupplyNew;
        accountTokens[minter] = vars.accountTokensNew;

        /* We emit a Mint event, and a Transfer event */
        emit Mint(minter, mintAmount, vars.mintTokens);
        emit Transfer(address(this), minter, vars.mintTokens);

        /* We call the defense hook */
        comptroller.mintVerify(address(this), minter, mintAmount, vars.mintTokens);

        return uint(Error.NO_ERROR);
    }

    /**
     * @notice Sender redeems cTokens in exchange for the underlying asset
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param redeemTokens The number of cTokens to redeem into underlying
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function redeemInternal(uint redeemTokens) internal nonReentrant returns (uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but we still want to log the fact that an attempted redeem failed
            return fail(Error(error), FailureInfo.REDEEM_ACCRUE_INTEREST_FAILED);
        }
        // redeemFresh emits redeem-specific logs on errors, so we don't need to
        return redeemFresh(msg.sender, redeemTokens, 0);
    }

    /**
     * @notice Sender redeems cTokens 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 redeem
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function redeemUnderlyingInternal(uint redeemAmount) internal nonReentrant returns (uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but we still want to log the fact that an attempted redeem failed
            return fail(Error(error), FailureInfo.REDEEM_ACCRUE_INTEREST_FAILED);
        }
        // redeemFresh emits redeem-specific logs on errors, so we don't need to
        return redeemFresh(msg.sender, 0, redeemAmount);
    }

    struct RedeemLocalVars {
        Error err;
        MathError mathErr;
        uint exchangeRateMantissa;
        uint redeemTokens;
        uint redeemAmount;
        uint totalSupplyNew;
        uint accountTokensNew;
    }

    /**
     * @notice User redeems cTokens in exchange for the underlying asset
     * @dev Assumes interest has already been accrued up to the current block
     * @param redeemer The address of the account which is redeeming the tokens
     * @param redeemTokensIn The number of cTokens to redeem into underlying (only one of redeemTokensIn or redeemAmountIn may be zero)
     * @param redeemAmountIn The number of cTokens to redeem into underlying (only one of redeemTokensIn or redeemAmountIn may be zero)
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function redeemFresh(address payable redeemer, uint redeemTokensIn, uint redeemAmountIn) internal returns (uint) {
        require(redeemTokensIn == 0 || redeemAmountIn == 0, "one of redeemTokensIn or redeemAmountIn must be zero");

        RedeemLocalVars memory vars;

        /* exchangeRate = invoke Exchange Rate Stored() */
        (vars.mathErr, vars.exchangeRateMantissa) = exchangeRateStoredInternal();
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_RATE_READ_FAILED, uint(vars.mathErr));
        }

        /* If redeemTokensIn > 0: */
        if (redeemTokensIn > 0) {
            /*
             * We calculate the exchange rate and the amount of underlying to be redeemed:
             *  redeemTokens = redeemTokensIn
             *  redeemAmount = redeemTokensIn x exchangeRateCurrent
             */
            vars.redeemTokens = redeemTokensIn;

            (vars.mathErr, vars.redeemAmount) = mulScalarTruncate(Exp({mantissa: vars.exchangeRateMantissa}), redeemTokensIn);
            if (vars.mathErr != MathError.NO_ERROR) {
                return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_TOKENS_CALCULATION_FAILED, uint(vars.mathErr));
            }
        } else {
            /*
             * We get the current exchange rate and calculate the amount to be redeemed:
             *  redeemTokens = redeemAmountIn / exchangeRate
             *  redeemAmount = redeemAmountIn
             */

            (vars.mathErr, vars.redeemTokens) = divScalarByExpTruncate(redeemAmountIn, Exp({mantissa: vars.exchangeRateMantissa}));
            if (vars.mathErr != MathError.NO_ERROR) {
                return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_AMOUNT_CALCULATION_FAILED, uint(vars.mathErr));
            }

            vars.redeemAmount = redeemAmountIn;
        }

        /* Fail if redeem not allowed */
        uint allowed = comptroller.redeemAllowed(address(this), redeemer, vars.redeemTokens);
        if (allowed != 0) {
            return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.REDEEM_COMPTROLLER_REJECTION, allowed);
        }

        /* Verify market's block number equals current block number */
        if (accrualBlockNumber != getBlockNumber()) {
            return fail(Error.MARKET_NOT_FRESH, FailureInfo.REDEEM_FRESHNESS_CHECK);
        }

        /*
         * We calculate the new total supply and redeemer balance, checking for underflow:
         *  totalSupplyNew = totalSupply - redeemTokens
         *  accountTokensNew = accountTokens[redeemer] - redeemTokens
         */
        (vars.mathErr, vars.totalSupplyNew) = subUInt(totalSupply, vars.redeemTokens);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_NEW_TOTAL_SUPPLY_CALCULATION_FAILED, uint(vars.mathErr));
        }

        (vars.mathErr, vars.accountTokensNew) = subUInt(accountTokens[redeemer], vars.redeemTokens);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED, uint(vars.mathErr));
        }

        /* Fail gracefully if protocol has insufficient cash */
        if (getCashPrior() < vars.redeemAmount) {
            return fail(Error.TOKEN_INSUFFICIENT_CASH, FailureInfo.REDEEM_TRANSFER_OUT_NOT_POSSIBLE);
        }

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

        /*
         * We invoke doTransferOut for the redeemer and the redeemAmount.
         *  Note: The cToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the cToken has redeemAmount less of cash.
         *  If doTransferOut fails despite the fact we checked pre-conditions,
         *   we revert because we can't be sure if side effects occurred.
         */
        vars.err = doTransferOut(redeemer, vars.redeemAmount);
        require(vars.err == Error.NO_ERROR, "redeem transfer out failed");

        /* We write previously calculated values into storage */
        totalSupply = vars.totalSupplyNew;
        accountTokens[redeemer] = vars.accountTokensNew;

        /* We emit a Transfer event, and a Redeem event */
        emit Transfer(redeemer, address(this), vars.redeemTokens);
        emit Redeem(redeemer, vars.redeemAmount, vars.redeemTokens);

        /* We call the defense hook */
        comptroller.redeemVerify(address(this), redeemer, vars.redeemAmount, vars.redeemTokens);

        return uint(Error.NO_ERROR);
    }

    /**
      * @notice Sender borrows assets from the protocol to their own address
      * @param borrowAmount The amount of the underlying asset to borrow
      * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
      */
    function borrowInternal(uint borrowAmount) internal nonReentrant returns (uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed
            return fail(Error(error), FailureInfo.BORROW_ACCRUE_INTEREST_FAILED);
        }
        // borrowFresh emits borrow-specific logs on errors, so we don't need to
        return borrowFresh(msg.sender, borrowAmount);
    }

    struct BorrowLocalVars {
        Error err;
        MathError mathErr;
        uint accountBorrows;
        uint accountBorrowsNew;
        uint totalBorrowsNew;
    }

    /**
      * @notice Users borrow assets from the protocol to their own address
      * @param borrowAmount The amount of the underlying asset to borrow
      * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
      */
    function borrowFresh(address payable borrower, uint borrowAmount) internal returns (uint) {
        /* Fail if borrow not allowed */
        uint allowed = comptroller.borrowAllowed(address(this), borrower, borrowAmount);
        if (allowed != 0) {
            return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.BORROW_COMPTROLLER_REJECTION, allowed);
        }

        /* Verify market's block number equals current block number */
        if (accrualBlockNumber != getBlockNumber()) {
            return fail(Error.MARKET_NOT_FRESH, FailureInfo.BORROW_FRESHNESS_CHECK);
        }

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

        BorrowLocalVars memory vars;

        /*
         * We calculate the new borrower and total borrow balances, failing on overflow:
         *  accountBorrowsNew = accountBorrows + borrowAmount
         *  totalBorrowsNew = totalBorrows + borrowAmount
         */
        (vars.mathErr, vars.accountBorrows) = borrowBalanceStoredInternal(borrower);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED, uint(vars.mathErr));
        }

        (vars.mathErr, vars.accountBorrowsNew) = addUInt(vars.accountBorrows, borrowAmount);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED, uint(vars.mathErr));
        }

        (vars.mathErr, vars.totalBorrowsNew) = addUInt(totalBorrows, borrowAmount);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED, uint(vars.mathErr));
        }

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

        /*
         * We invoke doTransferOut for the borrower and the borrowAmount.
         *  Note: The cToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the cToken borrowAmount less of cash.
         *  If doTransferOut fails despite the fact we checked pre-conditions,
         *   we revert because we can't be sure if side effects occurred.
         */
        vars.err = doTransferOut(borrower, borrowAmount);
        require(vars.err == Error.NO_ERROR, "borrow transfer out failed");

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

        /* 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 uint(Error.NO_ERROR);
    }

    /**
     * @notice Sender repays their own borrow
     * @param repayAmount The amount to repay
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function repayBorrowInternal(uint repayAmount) internal nonReentrant returns (uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed
            return fail(Error(error), FailureInfo.REPAY_BORROW_ACCRUE_INTEREST_FAILED);
        }
        // repayBorrowFresh emits repay-borrow-specific logs on errors, so we don't need to
        return repayBorrowFresh(msg.sender, msg.sender, repayAmount);
    }

    /**
     * @notice Sender repays a borrow belonging to borrower
     * @param borrower the account with the debt being payed off
     * @param repayAmount The amount to repay
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function repayBorrowBehalfInternal(address borrower, uint repayAmount) internal nonReentrant returns (uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed
            return fail(Error(error), FailureInfo.REPAY_BEHALF_ACCRUE_INTEREST_FAILED);
        }
        // repayBorrowFresh emits repay-borrow-specific logs on errors, so we don't need to
        return repayBorrowFresh(msg.sender, borrower, repayAmount);
    }

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

    /**
     * @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 undelrying tokens being returned
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function repayBorrowFresh(address payer, address borrower, uint repayAmount) internal returns (uint) {
        /* Fail if repayBorrow not allowed */
        uint allowed = comptroller.repayBorrowAllowed(address(this), payer, borrower, repayAmount);
        if (allowed != 0) {
            return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.REPAY_BORROW_COMPTROLLER_REJECTION, allowed);
        }

        /* Verify market's block number equals current block number */
        if (accrualBlockNumber != getBlockNumber()) {
            return fail(Error.MARKET_NOT_FRESH, FailureInfo.REPAY_BORROW_FRESHNESS_CHECK);
        }

        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.mathErr, vars.accountBorrows) = borrowBalanceStoredInternal(borrower);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.REPAY_BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED, uint(vars.mathErr));
        }

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

        /* Fail if checkTransferIn fails */
        vars.err = checkTransferIn(payer, vars.repayAmount);
        if (vars.err != Error.NO_ERROR) {
            return fail(vars.err, FailureInfo.REPAY_BORROW_TRANSFER_IN_NOT_POSSIBLE);
        }

        /*
         * We calculate the new borrower and total borrow balances, failing on underflow:
         *  accountBorrowsNew = accountBorrows - repayAmount
         *  totalBorrowsNew = totalBorrows - repayAmount
         */
        (vars.mathErr, vars.accountBorrowsNew) = subUInt(vars.accountBorrows, vars.repayAmount);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.REPAY_BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED, uint(vars.mathErr));
        }

        (vars.mathErr, vars.totalBorrowsNew) = subUInt(totalBorrows, vars.repayAmount);
        if (vars.mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.REPAY_BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED, uint(vars.mathErr));
        }

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

        /*
         * We call doTransferIn for the payer and the repayAmount
         *  Note: The cToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the cToken holds an additional repayAmount of cash.
         *  If doTransferIn fails despite the fact we checked pre-conditions,
         *   we revert because we can't be sure if side effects occurred.
         */
        vars.err = doTransferIn(payer, vars.repayAmount);
        require(vars.err == Error.NO_ERROR, "repay borrow transfer in failed");

        /* 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.repayAmount, vars.accountBorrowsNew, vars.totalBorrowsNew);

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

        return uint(Error.NO_ERROR);
    }

    /**
     * @notice The sender liquidates the borrowers collateral.
     *  The collateral seized is transferred to the liquidator.
     * @param borrower The borrower of this cToken to be liquidated
     * @param cTokenCollateral The market in which to seize collateral from the borrower
     * @param repayAmount The amount of the underlying borrowed asset to repay
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function liquidateBorrowInternal(address borrower, uint repayAmount, CToken cTokenCollateral) internal nonReentrant returns (uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but we still want to log the fact that an attempted liquidation failed
            return fail(Error(error), FailureInfo.LIQUIDATE_ACCRUE_BORROW_INTEREST_FAILED);
        }

        error = cTokenCollateral.accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but we still want to log the fact that an attempted liquidation failed
            return fail(Error(error), FailureInfo.LIQUIDATE_ACCRUE_COLLATERAL_INTEREST_FAILED);
        }

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

    /**
     * @notice The liquidator liquidates the borrowers collateral.
     *  The collateral seized is transferred to the liquidator.
     * @param borrower The borrower of this cToken to be liquidated
     * @param liquidator The address repaying the borrow and seizing collateral
     * @param cTokenCollateral The market in which to seize collateral from the borrower
     * @param repayAmount The amount of the underlying borrowed asset to repay
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function liquidateBorrowFresh(address liquidator, address borrower, uint repayAmount, CToken cTokenCollateral) internal returns (uint) {
        /* Fail if liquidate not allowed */
        uint allowed = comptroller.liquidateBorrowAllowed(address(this), address(cTokenCollateral), liquidator, borrower, repayAmount);
        if (allowed != 0) {
            return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.LIQUIDATE_COMPTROLLER_REJECTION, allowed);
        }

        /* Verify market's block number equals current block number */
        if (accrualBlockNumber != getBlockNumber()) {
            return fail(Error.MARKET_NOT_FRESH, FailureInfo.LIQUIDATE_FRESHNESS_CHECK);
        }

        /* Verify cTokenCollateral market's block number equals current block number */
        if (cTokenCollateral.accrualBlockNumber() != getBlockNumber()) {
            return fail(Error.MARKET_NOT_FRESH, FailureInfo.LIQUIDATE_COLLATERAL_FRESHNESS_CHECK);
        }

        /* Fail if borrower = liquidator */
        if (borrower == liquidator) {
            return fail(Error.INVALID_ACCOUNT_PAIR, FailureInfo.LIQUIDATE_LIQUIDATOR_IS_BORROWER);
        }

        /* Fail if repayAmount = 0 */
        if (repayAmount == 0) {
            return fail(Error.INVALID_CLOSE_AMOUNT_REQUESTED, FailureInfo.LIQUIDATE_CLOSE_AMOUNT_IS_ZERO);
        }

        /* Fail if repayAmount = -1 */
        if (repayAmount == uint(-1)) {
            return fail(Error.INVALID_CLOSE_AMOUNT_REQUESTED, FailureInfo.LIQUIDATE_CLOSE_AMOUNT_IS_UINT_MAX);
        }

        /* We calculate the number of collateral tokens that will be seized */
        (uint amountSeizeError, uint seizeTokens) = comptroller.liquidateCalculateSeizeTokens(address(this), address(cTokenCollateral), repayAmount);
        if (amountSeizeError != 0) {
            return failOpaque(Error.COMPTROLLER_CALCULATION_ERROR, FailureInfo.LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED, amountSeizeError);
        }

        /* Fail if seizeTokens > borrower collateral token balance */
        if (seizeTokens > cTokenCollateral.balanceOf(borrower)) {
            return fail(Error.TOKEN_INSUFFICIENT_BALANCE, FailureInfo.LIQUIDATE_SEIZE_TOO_MUCH);
        }

        /* Fail if repayBorrow fails */
        uint repayBorrowError = repayBorrowFresh(liquidator, borrower, repayAmount);
        if (repayBorrowError != uint(Error.NO_ERROR)) {
            return fail(Error(repayBorrowError), FailureInfo.LIQUIDATE_REPAY_BORROW_FRESH_FAILED);
        }

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

        /* We emit a LiquidateBorrow event */
        emit LiquidateBorrow(liquidator, borrower, repayAmount, address(cTokenCollateral), seizeTokens);

        /* We call the defense hook */
        comptroller.liquidateBorrowVerify(address(this), address(cTokenCollateral), liquidator, borrower, repayAmount, seizeTokens);

        return uint(Error.NO_ERROR);
    }

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

        /* Fail if borrower = liquidator */
        if (borrower == liquidator) {
            return fail(Error.INVALID_ACCOUNT_PAIR, FailureInfo.LIQUIDATE_SEIZE_LIQUIDATOR_IS_BORROWER);
        }

        MathError mathErr;
        uint borrowerTokensNew;
        uint liquidatorTokensNew;

        /*
         * We calculate the new borrower and liquidator token balances, failing on underflow/overflow:
         *  borrowerTokensNew = accountTokens[borrower] - seizeTokens
         *  liquidatorTokensNew = accountTokens[liquidator] + seizeTokens
         */
        (mathErr, borrowerTokensNew) = subUInt(accountTokens[borrower], seizeTokens);
        if (mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.LIQUIDATE_SEIZE_BALANCE_DECREMENT_FAILED, uint(mathErr));
        }

        (mathErr, liquidatorTokensNew) = addUInt(accountTokens[liquidator], seizeTokens);
        if (mathErr != MathError.NO_ERROR) {
            return failOpaque(Error.MATH_ERROR, FailureInfo.LIQUIDATE_SEIZE_BALANCE_INCREMENT_FAILED, uint(mathErr));
        }

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

        /* We write the previously calculated values into storage */
        accountTokens[borrower] = borrowerTokensNew;
        accountTokens[liquidator] = liquidatorTokensNew;

        /* Emit a Transfer event */
        emit Transfer(borrower, liquidator, seizeTokens);

        /* We call the defense hook */
        comptroller.seizeVerify(address(this), msg.sender, liquidator, borrower, seizeTokens);

        return uint(Error.NO_ERROR);
    }


    /*** 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)
      *
      * TODO: Should we add a second arg to verify, like a checksum of `newAdmin` address?
      */
    function _setPendingAdmin(address payable newPendingAdmin) external returns (uint) {
        // 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 uint(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 (uint) {
        // 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 uint(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 (uint) {
        // 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(), "marker method returned false");

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

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

        return uint(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(uint newReserveFactorMantissa) external nonReentrant returns (uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted reserve factor change failed.
            return fail(Error(error), FailureInfo.SET_RESERVE_FACTOR_ACCRUE_INTEREST_FAILED);
        }
        // _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(uint newReserveFactorMantissa) internal returns (uint) {
        // Check caller is admin
        if (msg.sender != admin) {
            return fail(Error.UNAUTHORIZED, FailureInfo.SET_RESERVE_FACTOR_ADMIN_CHECK);
        }

        // Verify market's block number equals current block number
        if (accrualBlockNumber != getBlockNumber()) {
            // TODO: static_assert + no error code?
            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);
        }

        uint oldReserveFactorMantissa = reserveFactorMantissa;
        reserveFactorMantissa = newReserveFactorMantissa;

        emit NewReserveFactor(oldReserveFactorMantissa, newReserveFactorMantissa);

        return uint(Error.NO_ERROR);
    }

    /**
     * @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(uint reduceAmount) external nonReentrant returns (uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted reduce reserves failed.
            return fail(Error(error), FailureInfo.REDUCE_RESERVES_ACCRUE_INTEREST_FAILED);
        }
        // _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(uint reduceAmount) internal returns (uint) {
        Error err;
        // totalReserves - reduceAmount
        uint 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 number equals current block number
        if (accrualBlockNumber != getBlockNumber()) {
            // TODO: static_assert + no error code?
            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)
        // TODO: I'm following the spec literally here but I think we should we just use SafeMath instead and fail on an error (which would be underflow)
        if (reduceAmount > totalReserves) {
            return fail(Error.BAD_INPUT, FailureInfo.REDUCE_RESERVES_VALIDATION);
        }

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

        totalReservesNew = totalReserves - reduceAmount;
        // We checked reduceAmount <= totalReserves above, so this should never revert.
        require(totalReservesNew <= totalReserves, "reduce reserves unexpected underflow");

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

        // invoke doTransferOut(reduceAmount, admin)
        err = doTransferOut(admin, reduceAmount);
        // we revert on the failure of this command
        require(err == Error.NO_ERROR, "reduce reserves transfer out failed");

        emit ReservesReduced(admin, reduceAmount, totalReservesNew);

        return uint(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 (uint) {
        uint error = accrueInterest();
        if (error != uint(Error.NO_ERROR)) {
            // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted change of interest rate model failed
            return fail(Error(error), FailureInfo.SET_INTEREST_RATE_MODEL_ACCRUE_INTEREST_FAILED);
        }
        // _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 (uint) {

        // 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 number equals current block number
        if (accrualBlockNumber != getBlockNumber()) {
            // TODO: static_assert + no error code?
            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(), "marker method returned false");

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

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

        return uint(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 (uint);

    /**
     * @dev Checks whether or not there is sufficient allowance for this contract to move amount from `from` and
     *      whether or not `from` has a balance of at least `amount`. Does NOT do a transfer.
     */
    function checkTransferIn(address from, uint amount) internal view returns (Error);

    /**
     * @dev Performs a transfer in, ideally returning an explanatory error code upon failure rather than reverting.
     *  If caller has not called `checkTransferIn`, this may revert due to insufficient balance or insufficient allowance.
     *  If caller has called `checkTransferIn` successfully, this should not revert in normal conditions.
     */
    function doTransferIn(address from, uint amount) internal returns (Error);

    /**
     * @dev Performs a transfer out, ideally returning an explanatory error code upon failure tather 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, uint amount) internal returns (Error);
}

// File: contracts/CEther.sol

pragma solidity ^0.5.8;


/**
 * @title Compound's CEther Contract
 * @notice CToken which wraps Ether
 * @author Compound
 */
contract CEther is CToken {
    /**
     * @notice Construct a new CEther 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_ ERC-20 name of this token
     * @param symbol_ ERC-20 symbol of this token
     * @param decimals_ ERC-20 decimal precision of this token
     */
    constructor(ComptrollerInterface comptroller_,
                InterestRateModel interestRateModel_,
                uint initialExchangeRateMantissa_,
                string memory name_,
                string memory symbol_,
                uint decimals_) public
    CToken(comptroller_, interestRateModel_, initialExchangeRateMantissa_, name_, symbol_, decimals_) {}

    /*** User Interface ***/

    /**
     * @notice Sender supplies assets into the market and receives cTokens in exchange
     * @dev Reverts upon any failure
     */
    function mint() external payable {
        requireNoError(mintInternal(msg.value), "mint failed");
    }

    /**
     * @notice Sender redeems cTokens in exchange for the underlying asset
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param redeemTokens The number of cTokens to redeem into underlying
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function redeem(uint redeemTokens) external returns (uint) {
        return redeemInternal(redeemTokens);
    }

    /**
     * @notice Sender redeems cTokens 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 redeem
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function redeemUnderlying(uint redeemAmount) external returns (uint) {
        return redeemUnderlyingInternal(redeemAmount);
    }

    /**
      * @notice Sender borrows assets from the protocol to their own address
      * @param borrowAmount The amount of the underlying asset to borrow
      * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
      */
    function borrow(uint borrowAmount) external returns (uint) {
        return borrowInternal(borrowAmount);
    }

    /**
     * @notice Sender repays their own borrow
     * @dev Reverts upon any failure
     */
    function repayBorrow() external payable {
        requireNoError(repayBorrowInternal(msg.value), "repayBorrow failed");
    }

    /**
     * @notice Sender repays a borrow belonging to borrower
     * @dev Reverts upon any failure
     * @param borrower the account with the debt being payed off
     */
    function repayBorrowBehalf(address borrower) external payable {
        requireNoError(repayBorrowBehalfInternal(borrower, msg.value), "repayBorrowBehalf failed");
    }

    /**
     * @notice The sender liquidates the borrowers collateral.
     *  The collateral seized is transferred to the liquidator.
     * @dev Reverts upon any failure
     * @param borrower The borrower of this cToken to be liquidated
     * @param cTokenCollateral The market in which to seize collateral from the borrower
     */
    function liquidateBorrow(address borrower, CToken cTokenCollateral) external payable {
        requireNoError(liquidateBorrowInternal(borrower, msg.value, cTokenCollateral), "liquidateBorrow failed");
    }

    /**
     * @notice Send Ether to CEther to mint
     */
    function () external payable {
        requireNoError(mintInternal(msg.value), "mint failed");
    }

    /*** Safe Token ***/

    /**
     * @notice Gets balance of this contract in terms of Ether, before this message
     * @dev This excludes the value of the current message, if any
     * @return The quantity of Ether owned by this contract
     */
    function getCashPrior() internal view returns (uint) {
        (MathError err, uint startingBalance) = subUInt(address(this).balance, msg.value);
        require(err == MathError.NO_ERROR);
        return startingBalance;
    }

    /**
     * @notice Checks whether the requested transfer matches the `msg`
     * @dev Does NOT do a transfer
     * @param from Address sending the Ether
     * @param amount Amount of Ether being sent
     * @return Whether or not the transfer checks out
     */
    function checkTransferIn(address from, uint amount) internal view returns (Error) {
        // Sanity checks
        require(msg.sender == from, "sender mismatch");
        require(msg.value == amount, "value mismatch");
        return Error.NO_ERROR;
    }

    /**
     * @notice Perform the actual transfer in, which is a no-op
     * @param from Address sending the Ether
     * @param amount Amount of Ether being sent
     * @return Success
     */
    function doTransferIn(address from, uint amount) internal returns (Error) {
        // Sanity checks
        require(msg.sender == from, "sender mismatch");
        require(msg.value == amount, "value mismatch");
        return Error.NO_ERROR;
    }

    function doTransferOut(address payable to, uint amount) internal returns (Error) {
        /* Send the Ether, with minimal gas and revert on failure */
        to.transfer(amount);
        return Error.NO_ERROR;
    }

    function requireNoError(uint errCode, string memory message) internal pure {
        if (errCode == uint(Error.NO_ERROR)) {
            return;
        }

        bytes memory fullMessage = new bytes(bytes(message).length + 5);
        uint i;

        for (i = 0; i < bytes(message).length; i++) {
            fullMessage[i] = bytes(message)[i];
        }

        fullMessage[i+0] = byte(uint8(32));
        fullMessage[i+1] = byte(uint8(40));
        fullMessage[i+2] = byte(uint8(48 + ( errCode / 10 )));
        fullMessage[i+3] = byte(uint8(48 + ( errCode % 10 )));
        fullMessage[i+4] = byte(uint8(41));

        require(errCode == uint(Error.NO_ERROR), string(fullMessage));
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"amount","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mint","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"reserveFactorMantissa","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"borrowBalanceCurrent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"exchangeRateStored","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"dst","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"pendingAdmin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getCash","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newComptroller","type":"address"}],"name":"_setComptroller","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalBorrows","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"repayBorrow","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"comptroller","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"reduceAmount","type":"uint256"}],"name":"_reduceReserves","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initialExchangeRateMantissa","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"accrualBlockNumber","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"totalBorrowsCurrent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"redeemAmount","type":"uint256"}],"name":"redeemUnderlying","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalReserves","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"borrowBalanceStored","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"accrueInterest","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"dst","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"borrowIndex","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"borrower","type":"address"},{"name":"cTokenCollateral","type":"address"}],"name":"liquidateBorrow","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"supplyRatePerBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"liquidator","type":"address"},{"name":"borrower","type":"address"},{"name":"seizeTokens","type":"uint256"}],"name":"seize","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newPendingAdmin","type":"address"}],"name":"_setPendingAdmin","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"exchangeRateCurrent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"getAccountSnapshot","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"borrowAmount","type":"uint256"}],"name":"borrow","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"redeemTokens","type":"uint256"}],"name":"redeem","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"borrower","type":"address"}],"name":"repayBorrowBehalf","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"_acceptAdmin","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newInterestRateModel","type":"address"}],"name":"_setInterestRateModel","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"interestRateModel","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"borrowRatePerBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newReserveFactorMantissa","type":"uint256"}],"name":"_setReserveFactor","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isCToken","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"comptroller_","type":"address"},{"name":"interestRateModel_","type":"address"},{"name":"initialExchangeRateMantissa_","type":"uint256"},{"name":"name_","type":"string"},{"name":"symbol_","type":"string"},{"name":"decimals_","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"interestAccumulated","type":"uint256"},{"indexed":false,"name":"borrowIndex","type":"uint256"},{"indexed":false,"name":"totalBorrows","type":"uint256"}],"name":"AccrueInterest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"minter","type":"address"},{"indexed":false,"name":"mintAmount","type":"uint256"},{"indexed":false,"name":"mintTokens","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"redeemer","type":"address"},{"indexed":false,"name":"redeemAmount","type":"uint256"},{"indexed":false,"name":"redeemTokens","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"borrower","type":"address"},{"indexed":false,"name":"borrowAmount","type":"uint256"},{"indexed":false,"name":"accountBorrows","type":"uint256"},{"indexed":false,"name":"totalBorrows","type":"uint256"}],"name":"Borrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"payer","type":"address"},{"indexed":false,"name":"borrower","type":"address"},{"indexed":false,"name":"repayAmount","type":"uint256"},{"indexed":false,"name":"accountBorrows","type":"uint256"},{"indexed":false,"name":"totalBorrows","type":"uint256"}],"name":"RepayBorrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"liquidator","type":"address"},{"indexed":false,"name":"borrower","type":"address"},{"indexed":false,"name":"repayAmount","type":"uint256"},{"indexed":false,"name":"cTokenCollateral","type":"address"},{"indexed":false,"name":"seizeTokens","type":"uint256"}],"name":"LiquidateBorrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldPendingAdmin","type":"address"},{"indexed":false,"name":"newPendingAdmin","type":"address"}],"name":"NewPendingAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldAdmin","type":"address"},{"indexed":false,"name":"newAdmin","type":"address"}],"name":"NewAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldComptroller","type":"address"},{"indexed":false,"name":"newComptroller","type":"address"}],"name":"NewComptroller","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldInterestRateModel","type":"address"},{"indexed":false,"name":"newInterestRateModel","type":"address"}],"name":"NewMarketInterestRateModel","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldReserveFactorMantissa","type":"uint256"},{"indexed":false,"name":"newReserveFactorMantissa","type":"uint256"}],"name":"NewReserveFactor","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"admin","type":"address"},{"indexed":false,"name":"reduceAmount","type":"uint256"},{"indexed":false,"name":"newTotalReserves","type":"uint256"}],"name":"ReservesReduced","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"error","type":"uint256"},{"indexed":false,"name":"info","type":"uint256"},{"indexed":false,"name":"detail","type":"uint256"}],"name":"Failure","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Approval","type":"event"}]

60806040523480156200001157600080fd5b506040516200542538038062005425833981018060405260c08110156200003757600080fd5b81516020830151604084015160608501805193959294919391830192916401000000008111156200006757600080fd5b820160208101848111156200007b57600080fd5b81516401000000008111828201871017156200009657600080fd5b50509291906020018051640100000000811115620000b357600080fd5b82016020810184811115620000c757600080fd5b8151640100000000811182820187101715620000e257600080fd5b50506020909101516001600055600480546001600160a01b03191633179055600886905590925090508585858585858362000169576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180620053f56030913960400191505060405180910390fd5b60006200017c87620002ba60201b60201c565b90508015620001ec57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f53657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b620001fc6200044d60201b60201c565b600a55670de0b6b3a7640000600b556200021d8662000452602090811b901c565b9050801562000278576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620053d36022913960400191505060405180910390fd5b83516200028d90600190602087019062000674565b508251620002a390600290602086019062000674565b505060035550620007169950505050505050505050565b6004546000906001600160a01b03163314620002ec57620002e46001603f6200060460201b60201c565b905062000448565b600654604080517e7e3dd200000000000000000000000000000000000000000000000000000000815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b1580156200034b57600080fd5b505afa15801562000360573d6000803e3d6000fd5b505050506040513d60208110156200037757600080fd5b5051620003e557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9150505b919050565b435b90565b60045460009081906001600160a01b0316331462000487576200047e600160426200060460201b60201c565b91505062000448565b620004976200044d60201b60201c565b600a5414620004b4576200047e600a60416200060460201b60201c565b600760009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b1580156200050657600080fd5b505afa1580156200051b573d6000803e3d6000fd5b505050506040513d60208110156200053257600080fd5b5051620005a057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a1600062000444565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa08360108111156200063457fe5b83604d8111156200064157fe5b604080519283526020830191909152600082820152519081900360600190a18260108111156200066d57fe5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006b757805160ff1916838001178555620006e7565b82800160010185558215620006e7579182015b82811115620006e7578251825591602001919060010190620006ca565b50620006f5929150620006f9565b5090565b6200044f91905b80821115620006f5576000815560010162000700565b614cad80620007266000396000f3fe6080604052600436106102725760003560e01c80638f840ddd1161014f578063c37f68e2116100c1578063f2b3abbd1161007a578063f2b3abbd146108bc578063f3fdb15a146108ef578063f851a44014610904578063f8f9da2814610919578063fca7820b1461092e578063fe9c44ae1461095857610272565b8063c37f68e214610799578063c5ebeaec146107f2578063db006a751461081c578063dd62ed3e14610846578063e597461914610881578063e9c714f2146108a757610272565b8063aa5af0fd11610113578063aa5af0fd146106b6578063aae40a2a146106cb578063ae9d70b0146106f9578063b2a02ff11461070e578063b71d1a0c14610751578063bd6d894d1461078457610272565b80638f840ddd1461060b57806395d89b411461062057806395dd919314610635578063a6afed9514610668578063a9059cbb1461067d57610272565b80633b1d21a2116101e8578063601a0bf1116101ac578063601a0bf114610545578063675d972c1461056f5780636c540baf1461058457806370a082311461059957806373acee98146105cc578063852a12e3146105e157610272565b80633b1d21a2146104cb5780634576b5db146104e057806347bd3718146105135780634e4d9fea146105285780635fe3b5671461053057610272565b806318160ddd1161023a57806318160ddd146103e5578063182df0f5146103fa57806323b872dd1461040f5780632678224714610452578063313ce567146104835780633af9e6691461049857610272565b806306fdde03146102ac578063095ea7b3146103365780631249c58b14610383578063173b99041461038b57806317bfdfbc146103b2575b6102aa61027e3461096d565b6040518060400160405280600b8152602001600160aa1b6a1b5a5b9d0819985a5b195902815250610a03565b005b3480156102b857600080fd5b506102c1610c06565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102fb5781810151838201526020016102e3565b50505050905090810190601f1680156103285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034257600080fd5b5061036f6004803603604081101561035957600080fd5b506001600160a01b038135169060200135610c93565b604080519115158252519081900360200190f35b6102aa610d00565b34801561039757600080fd5b506103a0610d0e565b60408051918252519081900360200190f35b3480156103be57600080fd5b506103a0600480360360208110156103d557600080fd5b50356001600160a01b0316610d14565b3480156103f157600080fd5b506103a0610dd0565b34801561040657600080fd5b506103a0610dd6565b34801561041b57600080fd5b5061036f6004803603606081101561043257600080fd5b506001600160a01b03813581169160208101359091169060400135610e3c565b34801561045e57600080fd5b50610467610ea8565b604080516001600160a01b039092168252519081900360200190f35b34801561048f57600080fd5b506103a0610eb7565b3480156104a457600080fd5b506103a0600480360360208110156104bb57600080fd5b50356001600160a01b0316610ebd565b3480156104d757600080fd5b506103a0610f2d565b3480156104ec57600080fd5b506103a06004803603602081101561050357600080fd5b50356001600160a01b0316610f3c565b34801561051f57600080fd5b506103a0611092565b6102aa611098565b34801561053c57600080fd5b506104676110df565b34801561055157600080fd5b506103a06004803603602081101561056857600080fd5b50356110ee565b34801561057b57600080fd5b506103a0611128565b34801561059057600080fd5b506103a061112e565b3480156105a557600080fd5b506103a0600480360360208110156105bc57600080fd5b50356001600160a01b0316611134565b3480156105d857600080fd5b506103a061114f565b3480156105ed57600080fd5b506103a06004803603602081101561060457600080fd5b5035611209565b34801561061757600080fd5b506103a0611214565b34801561062c57600080fd5b506102c161121a565b34801561064157600080fd5b506103a06004803603602081101561065857600080fd5b50356001600160a01b0316611272565b34801561067457600080fd5b506103a06112d2565b34801561068957600080fd5b5061036f600480360360408110156106a057600080fd5b506001600160a01b0381351690602001356116ce565b3480156106c257600080fd5b506103a0611739565b6102aa600480360360408110156106e157600080fd5b506001600160a01b038135811691602001351661173f565b34801561070557600080fd5b506103a0611788565b34801561071a57600080fd5b506103a06004803603606081101561073157600080fd5b506001600160a01b03813581169160208101359091169060400135611a62565b34801561075d57600080fd5b506103a06004803603602081101561077457600080fd5b50356001600160a01b0316611d1f565b34801561079057600080fd5b506103a0611da6565b3480156107a557600080fd5b506107cc600480360360208110156107bc57600080fd5b50356001600160a01b0316611e61565b604080519485526020850193909352838301919091526060830152519081900360800190f35b3480156107fe57600080fd5b506103a06004803603602081101561081557600080fd5b5035611ef6565b34801561082857600080fd5b506103a06004803603602081101561083f57600080fd5b5035611f01565b34801561085257600080fd5b506103a06004803603604081101561086957600080fd5b506001600160a01b0381358116916020013516611f0c565b6102aa6004803603602081101561089757600080fd5b50356001600160a01b0316611f37565b3480156108b357600080fd5b506103a0611f82565b3480156108c857600080fd5b506103a0600480360360208110156108df57600080fd5b50356001600160a01b0316612071565b3480156108fb57600080fd5b506104676120ab565b34801561091057600080fd5b506104676120ba565b34801561092557600080fd5b506103a06120c9565b34801561093a57600080fd5b506103a06004803603602081101561095157600080fd5b50356121a8565b34801561096457600080fd5b5061036f6121e2565b60008054600101808255816109806112d2565b905080156109a65761099e81601081111561099757fe5b601e6121e7565b9250506109b4565b6109b0338561224d565b9250505b60005481146109fd5760408051600160e51b62461bcd02815260206004820152600a6024820152600160b21b691c994b595b9d195c995902604482015290519081900360640190fd5b50919050565b81610a0d57610c02565b606081516005016040519080825280601f01601f191660200182016040528015610a3e576020820181803883390190505b50905060005b8251811015610a8f57828181518110610a5957fe5b602001015160f81c60f81b828281518110610a7057fe5b60200101906001600160f81b031916908160001a905350600101610a44565b8151600160fd1b90839083908110610aa357fe5b60200101906001600160f81b031916908160001a905350602860f81b828260010181518110610ace57fe5b60200101906001600160f81b031916908160001a905350600a840460300160f81b828260020181518110610afe57fe5b60200101906001600160f81b031916908160001a905350600a840660300160f81b828260030181518110610b2e57fe5b60200101906001600160f81b031916908160001a905350602960f81b828260040181518110610b5957fe5b60200101906001600160f81b031916908160001a905350818415610bfe57604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610bc3578181015183820152602001610bab565b50505050905090810190601f168015610bf05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5050505b5050565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610c8b5780601f10610c6057610100808354040283529160200191610c8b565b820191906000526020600020905b815481529060010190602001808311610c6e57829003601f168201915b505050505081565b3360008181526010602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b610d0c61027e3461096d565b565b60095481565b6000805460010180825581610d276112d2565b14610d7c5760408051600160e51b62461bcd02815260206004820152601660248201527f61636372756520696e746572657374206661696c656400000000000000000000604482015290519081900360640190fd5b610d8583611272565b915060005481146109fd5760408051600160e51b62461bcd02815260206004820152600a6024820152600160b21b691c994b595b9d195c995902604482015290519081900360640190fd5b600e5481565b6000806000610de361269b565b90925090506000826003811115610df657fe5b14610e3557604051600160e51b62461bcd028152600401808060200182810382526035815260200180614bf56035913960400191505060405180910390fd5b9150505b90565b6000805460010180825581610e5333878787612749565b1491505b6000548114610ea05760408051600160e51b62461bcd02815260206004820152600a6024820152600160b21b691c994b595b9d195c995902604482015290519081900360640190fd5b509392505050565b6005546001600160a01b031681565b60035481565b6000610ec761494e565b6040518060200160405280610eda611da6565b90526001600160a01b0384166000908152600f6020526040812054919250908190610f06908490612a5f565b90925090506000826003811115610f1957fe5b14610f2357600080fd5b925050505b919050565b6000610f37612ab3565b905090565b6004546000906001600160a01b03163314610f6457610f5d6001603f6121e7565b9050610f28565b60065460408051600160e11b623f1ee902815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b158015610fac57600080fd5b505afa158015610fc0573d6000803e3d6000fd5b505050506040513d6020811015610fd657600080fd5b505161102c5760408051600160e51b62461bcd02815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600c5481565b610d0c6110a434612adf565b6040518060400160405280601281526020017f7265706179426f72726f77206661696c65640000000000000000000000000000815250610a03565b6006546001600160a01b031681565b60008054600101808255816111016112d2565b9050801561111f5761099e81601081111561111857fe5b60306121e7565b6109b084612b1b565b60085481565b600a5481565b6001600160a01b03166000908152600f602052604090205490565b60008054600101808255816111626112d2565b146111b75760408051600160e51b62461bcd02815260206004820152601660248201527f61636372756520696e746572657374206661696c656400000000000000000000604482015290519081900360640190fd5b600c54915060005481146112055760408051600160e51b62461bcd02815260206004820152600a6024820152600160b21b691c994b595b9d195c995902604482015290519081900360640190fd5b5090565b6000610cfa82612c9f565b600d5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610c8b5780601f10610c6057610100808354040283529160200191610c8b565b600080600061128084612cdc565b9092509050600082600381111561129357fe5b1461108b57604051600160e51b62461bcd028152600401808060200182810382526037815260200180614ac96037913960400191505060405180910390fd5b60006112dc614961565b6007546001600160a01b03166315f240536112f5612ab3565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b15801561133c57600080fd5b505afa158015611350573d6000803e3d6000fd5b505050506040513d604081101561136657600080fd5b50805160209182015160408401819052918301526601c6bf5263400010156113d85760408051600160e51b62461bcd02815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b6020810151156113fb576113f3600560028360200151612d90565b915050610e39565b611403612df6565b60608201819052600a546114179190612dfa565b608083018190528282600381111561142b57fe5b600381111561143657fe5b905250600090508151600381111561144a57fe5b1461145157fe5b611471604051806020016040528083604001518152508260800151612e1d565b60a083018190528282600381111561148557fe5b600381111561149057fe5b90525060009050815160038111156114a457fe5b146114c5576113f360096006836000015160038111156114c057fe5b612d90565b6114d58160a00151600c54612a5f565b60c08301819052828260038111156114e957fe5b60038111156114f457fe5b905250600090508151600381111561150857fe5b14611524576113f360096001836000015160038111156114c057fe5b6115348160c00151600c54612e85565b60e083018190528282600381111561154857fe5b600381111561155357fe5b905250600090508151600381111561156757fe5b14611583576113f360096004836000015160038111156114c057fe5b6115a460405180602001604052806009548152508260c00151600d54612eab565b6101008301819052828260038111156115b957fe5b60038111156115c457fe5b90525060009050815160038111156115d857fe5b146115f4576113f360096005836000015160038111156114c057fe5b6116078160a00151600b54600b54612eab565b61012083018190528282600381111561161c57fe5b600381111561162757fe5b905250600090508151600381111561163b57fe5b14611657576113f360096003836000015160038111156114c057fe5b606080820151600a55610120820151600b81905560e0830151600c819055610100840151600d5560c08401516040805191825260208201939093528083019190915290517f875352fb3fadeb8c0be7cbbe8ff761b308fa7033470cd0287f02f3436fd76cb9929181900390910190a1600091505090565b60008054600101808255816116e533338787612749565b1491505b60005481146117325760408051600160e51b62461bcd02815260206004820152600a6024820152600160b21b691c994b595b9d195c995902604482015290519081900360640190fd5b5092915050565b600b5481565b610c0261174d833484612f07565b6040518060400160405280601681526020017f6c6971756964617465426f72726f77206661696c656400000000000000000000815250610a03565b600080611793610dd6565b60075490915060009081906001600160a01b03166315f240536117b4612ab3565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b1580156117fb57600080fd5b505afa15801561180f573d6000803e3d6000fd5b505050506040513d604081101561182557600080fd5b5080516020909101519092509050811561187357604051600160e51b62461bcd028152600401808060200182810382526031815260200180614b686031913960400191505060405180910390fd5b600061187d61494e565b611897604051806020016040528087815250600e54612e1d565b909250905060008260038111156118aa57fe5b146118e957604051600160e51b62461bcd028152600401808060200182810382526031815260200180614b006031913960400191505060405180910390fd5b60006118f361494e565b6118ff600c5484613015565b9092509050600082600381111561191257fe5b1461195157604051600160e51b62461bcd028152600401808060200182810382526031815260200180614a446031913960400191505060405180910390fd5b600061195b61494e565b61198b6040518060200160405280670de0b6b3a76400008152506040518060200160405280600954815250613074565b9092509050600082600381111561199e57fe5b146119dd57604051600160e51b62461bcd02815260040180806020018281038252603c815260200180614bb9603c913960400191505060405180910390fd5b60006119e761494e565b611a0060405180602001604052808b81525084876130ae565b90925090506000826003811115611a1357fe5b14611a5257604051600160e51b62461bcd028152600401808060200182810382526031815260200180614a986031913960400191505060405180910390fd5b519a505050505050505050505090565b6000805460010180825560065460408051600160e01b63d02f73510281523060048201523360248201526001600160a01b03888116604483015287811660648301526084820187905291518593929092169163d02f73519160a48082019260209290919082900301818787803b158015611adb57600080fd5b505af1158015611aef573d6000803e3d6000fd5b505050506040513d6020811015611b0557600080fd5b505190508015611b2457611b1c6003601b83612d90565b925050610e57565b856001600160a01b0316856001600160a01b03161415611b4a57611b1c6006601c6121e7565b6001600160a01b0385166000908152600f602052604081205481908190611b719088612dfa565b90935091506000836003811115611b8457fe5b14611ba757611b9c6009601a8560038111156114c057fe5b955050505050610e57565b6001600160a01b0389166000908152600f6020526040902054611bca9088612e85565b90935090506000836003811115611bdd57fe5b14611bf557611b9c600960198560038111156114c057fe5b6001600160a01b038089166000818152600f60209081526040808320879055938d168083529184902085905583518b815293519193600080516020614b99833981519152929081900390910190a360065460408051600160e01b636d35bf910281523060048201523360248201526001600160a01b038c811660448301528b81166064830152608482018b905291519190921691636d35bf919160a480830192600092919082900301818387803b158015611caf57600080fd5b505af1158015611cc3573d6000803e3d6000fd5b5060009250611cd0915050565b9550505050506000548114610ea05760408051600160e51b62461bcd02815260206004820152600a6024820152600160b21b691c994b595b9d195c995902604482015290519081900360640190fd5b6004546000906001600160a01b03163314611d4057610f5d600160456121e7565b600580546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a1600061108b565b6000805460010180825581611db96112d2565b14611e0e5760408051600160e51b62461bcd02815260206004820152601660248201527f61636372756520696e746572657374206661696c656400000000000000000000604482015290519081900360640190fd5b611e16610dd6565b915060005481146112055760408051600160e51b62461bcd02815260206004820152600a6024820152600160b21b691c994b595b9d195c995902604482015290519081900360640190fd5b6001600160a01b0381166000908152600f6020526040812054819081908190818080611e8c89612cdc565b935090506000816003811115611e9e57fe5b14611ebc5760095b975060009650869550859450611eef9350505050565b611ec461269b565b925090506000816003811115611ed657fe5b14611ee2576009611ea6565b5060009650919450925090505b9193509193565b6000610cfa826130f8565b6000610cfa82613133565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205490565b611f7f611f448234613169565b6040518060400160405280601881526020017f7265706179426f72726f77426568616c66206661696c65640000000000000000815250610a03565b50565b6005546000906001600160a01b031633141580611f9d575033155b15611fb557611fae600160006121e7565b9050610e39565b60048054600580546001600160a01b038082166001600160a01b031980861682179687905590921690925560408051938316808552949092166020840152815190927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600554604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b60008061207c6112d2565b905080156120a25761209a81601081111561209357fe5b60406121e7565b915050610f28565b61108b836131f9565b6007546001600160a01b031681565b6004546001600160a01b031681565b600754600090819081906001600160a01b03166315f240536120e9612ab3565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b15801561213057600080fd5b505afa158015612144573d6000803e3d6000fd5b505050506040513d604081101561215a57600080fd5b50805160209091015190925090508115610e3557604051600160e51b62461bcd028152600401808060200182810382526037815260200180614b316037913960400191505060405180910390fd5b60008054600101808255816121bb6112d2565b905080156121d95761099e8160108111156121d257fe5b60466121e7565b6109b08461336c565b600181565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561221657fe5b83604d81111561222257fe5b604080519283526020830191909152600082820152519081900360600190a182601081111561108b57fe5b60065460408051600160e01b634ef4c3e10281523060048201526001600160a01b03858116602483015260448201859052915160009384931691634ef4c3e191606480830192602092919082900301818787803b1580156122ad57600080fd5b505af11580156122c1573d6000803e3d6000fd5b505050506040513d60208110156122d757600080fd5b5051905080156122f6576122ee6003601f83612d90565b915050610cfa565b6122fe612df6565b600a5414612312576122ee600a60226121e7565b61231a6149bb565b612324858561340f565b8190601081111561233157fe5b9081601081111561233e57fe5b90525060008151601081111561235057fe5b1461236b5780516123629060266121e7565b92505050610cfa565b61237361269b565b604083018190526020830182600381111561238a57fe5b600381111561239557fe5b90525060009050816020015160038111156123ac57fe5b146123c85761236260096021836020015160038111156114c057fe5b6123e484604051806020016040528084604001518152506134d1565b60608301819052602083018260038111156123fb57fe5b600381111561240657fe5b905250600090508160200151600381111561241d57fe5b146124395761236260096020836020015160038111156114c057fe5b612449600e548260600151612e85565b608083018190526020830182600381111561246057fe5b600381111561246b57fe5b905250600090508160200151600381111561248257fe5b1461249e5761236260096024836020015160038111156114c057fe5b6001600160a01b0385166000908152600f602052604090205460608201516124c69190612e85565b60a08301819052602083018260038111156124dd57fe5b60038111156124e857fe5b90525060009050816020015160038111156124ff57fe5b1461251b5761236260096023836020015160038111156114c057fe5b612525858561340f565b8190601081111561253257fe5b9081601081111561253f57fe5b90525060008151601081111561255157fe5b146125635780516123629060256121e7565b6080810151600e5560a08101516001600160a01b0386166000818152600f602090815260409182902093909355606080850151825193845293830188905282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b038716913091600080516020614b998339815191529181900360200190a3600654606082015160408051600160e01b6341c728b90281523060048201526001600160a01b038981166024830152604482018990526064820193909352905191909216916341c728b991608480830192600092919082900301818387803b15801561267157600080fd5b505af1158015612685573d6000803e3d6000fd5b5060009250612692915050565b95945050505050565b600080600e54600014156126b6575050600854600090612745565b60006126c0612ab3565b905060006126cc61494e565b60006126dd84600c54600d546134e8565b9350905060008160038111156126ef57fe5b146127035794506000935061274592505050565b61270f83600e54613526565b92509050600081600381111561272157fe5b146127355794506000935061274592505050565b5051600094509250612745915050565b9091565b60065460408051600160e31b6317b9b84b0281523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b1580156127b157600080fd5b505af11580156127c5573d6000803e3d6000fd5b505050506040513d60208110156127db57600080fd5b5051905080156127fa576127f26003604a83612d90565b915050612a57565b836001600160a01b0316856001600160a01b03161415612820576127f26002604b6121e7565b60006001600160a01b03878116908716141561283f5750600019612867565b506001600160a01b038086166000908152601060209081526040808320938a16835292905220545b6000806000806128778589612dfa565b9094509250600084600381111561288a57fe5b146128a85761289b6009604b6121e7565b9650505050505050612a57565b6001600160a01b038a166000908152600f60205260409020546128cb9089612dfa565b909450915060008460038111156128de57fe5b146128ef5761289b6009604c6121e7565b6001600160a01b0389166000908152600f60205260409020546129129089612e85565b9094509050600084600381111561292557fe5b146129365761289b6009604d6121e7565b6001600160a01b03808b166000908152600f6020526040808220859055918b16815220819055600019851461298e576001600160a01b03808b166000908152601060209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b0316600080516020614b998339815191528a6040518082815260200191505060405180910390a360065460408051600160e11b63352b4a3f0281523060048201526001600160a01b038d811660248301528c81166044830152606482018c905291519190921691636a56947e91608480830192600092919082900301818387803b158015612a2d57600080fd5b505af1158015612a41573d6000803e3d6000fd5b5060009250612a4e915050565b96505050505050505b949350505050565b6000806000612a6c61494e565b612a768686612e1d565b90925090506000826003811115612a8957fe5b14612a9a5750915060009050612aac565b6000612aa5826135d6565b9350935050505b9250929050565b60008080612ac2303134612dfa565b90925090506000826003811115612ad557fe5b14610e3557600080fd5b6000805460010180825581612af26112d2565b90508015612b105761099e816010811115612b0957fe5b60366121e7565b6109b03333866135e5565b600454600090819081906001600160a01b03163314612b4957612b40600160316121e7565b92505050610f28565b612b51612df6565b600a5414612b6557612b40600a60336121e7565b83612b6e612ab3565b1015612b8057612b40600e60326121e7565b600d54841115612b9657612b40600260346121e7565b50600d5483810390811115612bdf57604051600160e51b62461bcd028152600401808060200182810382526024815260200180614c5e6024913960400191505060405180910390fd5b600d819055600454612bfa906001600160a01b031685613a41565b91506000826010811115612c0a57fe5b14612c4957604051600160e51b62461bcd028152600401808060200182810382526023815260200180614a756023913960400191505060405180910390fd5b600454604080516001600160a01b03909216825260208201869052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e9181900360600190a16000949350505050565b6000805460010180825581612cb26112d2565b90508015612cd05761099e816010811115612cc957fe5b60276121e7565b6109b033600086613a83565b6001600160a01b038116600090815260116020526040812080548291829182918291612d13575060009450849350612d8b92505050565b612d238160000154600b54613f98565b90945092506000846003811115612d3657fe5b14612d4b575091935060009250612d8b915050565b612d59838260010154613fd7565b90945091506000846003811115612d6c57fe5b14612d81575091935060009250612d8b915050565b5060009450925050505b915091565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0846010811115612dbf57fe5b84604d811115612dcb57fe5b604080519283526020830191909152818101859052519081900360600190a1836010811115612a5757fe5b4390565b600080838311612e11575060009050818303612aac565b50600390506000612aac565b6000612e2761494e565b600080612e38866000015186613f98565b90925090506000826003811115612e4b57fe5b14612e6a57506040805160208101909152600081529092509050612aac565b60408051602081019091529081526000969095509350505050565b600080838301848110612e9d57600092509050612aac565b506002915060009050612aac565b6000806000612eb861494e565b612ec28787612e1d565b90925090506000826003811115612ed557fe5b14612ee65750915060009050612eff565b612ef8612ef2826135d6565b86612e85565b9350935050505b935093915050565b6000805460010180825581612f1a6112d2565b90508015612f3857611b1c816010811115612f3157fe5b600f6121e7565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612f7357600080fd5b505af1158015612f87573d6000803e3d6000fd5b505050506040513d6020811015612f9d57600080fd5b505190508015612fbd57611b1c816010811115612fb657fe5b60106121e7565b612fc933878787614002565b9250506000548114610ea05760408051600160e51b62461bcd02815260206004820152600a6024820152600160b21b691c994b595b9d195c995902604482015290519081900360640190fd5b600061301f61494e565b600080613034670de0b6b3a764000087613f98565b9092509050600082600381111561304757fe5b1461306657506040805160208101909152600081529092509050612aac565b612aa5818660000151613526565b600061307e61494e565b60008061309386600001518660000151612dfa565b60408051602081019091529081529097909650945050505050565b60006130b861494e565b60006130c261494e565b6130cc87876144f6565b909250905060008260038111156130df57fe5b146130ee579092509050612eff565b612ef881866144f6565b600080546001018082558161310b6112d2565b905080156131295761099e81601081111561312257fe5b60086121e7565b6109b033856145df565b60008054600101808255816131466112d2565b9050801561315d5761099e816010811115612cc957fe5b6109b033856000613a83565b600080546001018082558161317c6112d2565b905080156131a25761319a81601081111561319357fe5b60356121e7565b9250506116e9565b6131ad3386866135e5565b92505060005481146117325760408051600160e51b62461bcd02815260206004820152600a6024820152600160b21b691c994b595b9d195c995902604482015290519081900360640190fd5b60045460009081906001600160a01b0316331461321c5761209a600160426121e7565b613224612df6565b600a54146132385761209a600a60416121e7565b600760009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561328957600080fd5b505afa15801561329d573d6000803e3d6000fd5b505050506040513d60208110156132b357600080fd5b50516133095760408051600160e51b62461bcd02815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a1600061108b565b6004546000906001600160a01b0316331461338d57610f5d600160476121e7565b613395612df6565b600a54146133a957610f5d600a60486121e7565b670de0b6b3a76400008211156133c557610f5d600260496121e7565b6009805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a1600061108b565b6000336001600160a01b038416146134715760408051600160e51b62461bcd02815260206004820152600f60248201527f73656e646572206d69736d617463680000000000000000000000000000000000604482015290519081900360640190fd5b8134146134c85760408051600160e51b62461bcd02815260206004820152600e60248201527f76616c7565206d69736d61746368000000000000000000000000000000000000604482015290519081900360640190fd5b50600092915050565b60008060006134de61494e565b612a768686613015565b6000806000806134f88787612e85565b9092509050600082600381111561350b57fe5b1461351c5750915060009050612eff565b612ef88186612dfa565b600061353061494e565b60008061354586670de0b6b3a7640000613f98565b9092509050600082600381111561355857fe5b1461357757506040805160208101909152600081529092509050612aac565b6000806135848388613fd7565b9092509050600082600381111561359757fe5b146135b957506040805160208101909152600081529094509250612aac915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b60065460408051600160e11b63120045310281523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849316916324008a6291608480830192602092919082900301818787803b15801561364d57600080fd5b505af1158015613661573d6000803e3d6000fd5b505050506040513d602081101561367757600080fd5b5051905080156136965761368e6003603883612d90565b91505061108b565b61369e612df6565b600a54146136b25761368e600a60396121e7565b6136ba6149d5565b6001600160a01b03851660009081526011602052604090206001015460608201526136e485612cdc565b60808301819052602083018260038111156136fb57fe5b600381111561370657fe5b905250600090508160200151600381111561371d57fe5b146137425761373960096037836020015160038111156114c057fe5b9250505061108b565b60001984141561375b5760808101516040820152613763565b604081018490525b61377186826040015161340f565b8190601081111561377e57fe5b9081601081111561378b57fe5b90525060008151601081111561379d57fe5b146137af57805161373990603c6121e7565b6137c181608001518260400151612dfa565b60a08301819052602083018260038111156137d857fe5b60038111156137e357fe5b90525060009050816020015160038111156137fa57fe5b14613816576137396009603a836020015160038111156114c057fe5b613826600c548260400151612dfa565b60c083018190526020830182600381111561383d57fe5b600381111561384857fe5b905250600090508160200151600381111561385f57fe5b1461387b576137396009603b836020015160038111156114c057fe5b61388986826040015161340f565b8190601081111561389657fe5b908160108111156138a357fe5b9052506000815160108111156138b557fe5b1461390a5760408051600160e51b62461bcd02815260206004820152601f60248201527f726570617920626f72726f77207472616e7366657220696e206661696c656400604482015290519081900360640190fd5b60a080820180516001600160a01b03808916600081815260116020908152604091829020948555600b5460019095019490945560c0870151600c8190558188015195518251948e16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160065460408083015160608401518251600160e01b631ededc910281523060048201526001600160a01b038b811660248301528a81166044830152606482019390935260848101919091529151921691631ededc919160a48082019260009290919082900301818387803b158015613a1657600080fd5b505af1158015613a2a573d6000803e3d6000fd5b5060009250613a37915050565b9695505050505050565b6040516000906001600160a01b0384169083156108fc0290849084818181858888f19350505050158015613a79573d6000803e3d6000fd5b5060009392505050565b6000821580613a90575081155b613ace57604051600160e51b62461bcd028152600401808060200182810382526034815260200180614c2a6034913960400191505060405180910390fd5b613ad66149d5565b613ade61269b565b6040830181905260208301826003811115613af557fe5b6003811115613b0057fe5b9052506000905081602001516003811115613b1757fe5b14613b335761368e6009602b836020015160038111156114c057fe5b8315613bb4576060810184905260408051602081018252908201518152613b5a9085612a5f565b6080830181905260208301826003811115613b7157fe5b6003811115613b7c57fe5b9052506000905081602001516003811115613b9357fe5b14613baf5761368e60096029836020015160038111156114c057fe5b613c2d565b613bd083604051806020016040528084604001518152506134d1565b6060830181905260208301826003811115613be757fe5b6003811115613bf257fe5b9052506000905081602001516003811115613c0957fe5b14613c255761368e6009602a836020015160038111156114c057fe5b608081018390525b600654606082015160408051600160e01b63eabe7d910281523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b158015613c9557600080fd5b505af1158015613ca9573d6000803e3d6000fd5b505050506040513d6020811015613cbf57600080fd5b505190508015613cd6576137396003602883612d90565b613cde612df6565b600a5414613cf257613739600a602c6121e7565b613d02600e548360600151612dfa565b60a0840181905260208401826003811115613d1957fe5b6003811115613d2457fe5b9052506000905082602001516003811115613d3b57fe5b14613d57576137396009602e846020015160038111156114c057fe5b6001600160a01b0386166000908152600f60205260409020546060830151613d7f9190612dfa565b60c0840181905260208401826003811115613d9657fe5b6003811115613da157fe5b9052506000905082602001516003811115613db857fe5b14613dd4576137396009602d846020015160038111156114c057fe5b8160800151613de1612ab3565b1015613df357613739600e602f6121e7565b613e01868360800151613a41565b82906010811115613e0e57fe5b90816010811115613e1b57fe5b905250600082516010811115613e2d57fe5b14613e825760408051600160e51b62461bcd02815260206004820152601a60248201527f72656465656d207472616e73666572206f7574206661696c6564000000000000604482015290519081900360640190fd5b60a0820151600e5560c08201516001600160a01b0387166000818152600f6020908152604091829020939093556060850151815190815290513093600080516020614b99833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a16006546080830151606084015160408051600160e01b6351dff9890281523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b158015613a1657600080fd5b60008083613fab57506000905080612aac565b83830283858281613fb857fe5b0414613fcc57506002915060009050612aac565b600092509050612aac565b60008082613feb5750600190506000612aac565b6000838581613ff657fe5b04915091509250929050565b60065460408051600160e11b632fe3f38f0281523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384931691635fc7e71e9160a480830192602092919082900301818787803b15801561407257600080fd5b505af1158015614086573d6000803e3d6000fd5b505050506040513d602081101561409c57600080fd5b5051905080156140b3576127f26003601283612d90565b6140bb612df6565b600a54146140cf576127f2600a60166121e7565b6140d7612df6565b836001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b15801561411057600080fd5b505afa158015614124573d6000803e3d6000fd5b505050506040513d602081101561413a57600080fd5b50511461414d576127f2600a60116121e7565b856001600160a01b0316856001600160a01b03161415614173576127f2600660176121e7565b83614184576127f2600760156121e7565b60001984141561419a576127f2600760146121e7565b60065460408051600160e01b63c488847b0281523060048201526001600160a01b038681166024830152604482018890528251600094859492169263c488847b926064808301939192829003018186803b1580156141f757600080fd5b505afa15801561420b573d6000803e3d6000fd5b505050506040513d604081101561422157600080fd5b5080516020909101519092509050811561424c576142426004601384612d90565b9350505050612a57565b846001600160a01b03166370a08231886040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156142a257600080fd5b505afa1580156142b6573d6000803e3d6000fd5b505050506040513d60208110156142cc57600080fd5b50518111156142e157614242600d601d6121e7565b60006142ee8989896135e5565b905080156143175761430c81601081111561430557fe5b60186121e7565b945050505050612a57565b60408051600160e01b63b2a02ff10281526001600160a01b038b811660048301528a8116602483015260448201859052915160009289169163b2a02ff191606480830192602092919082900301818787803b15801561437557600080fd5b505af1158015614389573d6000803e3d6000fd5b505050506040513d602081101561439f57600080fd5b5051905080156143f95760408051600160e51b62461bcd02815260206004820152601460248201527f746f6b656e207365697a757265206661696c6564000000000000000000000000604482015290519081900360640190fd5b604080516001600160a01b03808d168252808c1660208301528183018b9052891660608201526080810185905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a160065460408051600160e01b6347ef3b3b0281523060048201526001600160a01b038a811660248301528d811660448301528c81166064830152608482018c905260a48201879052915191909216916347ef3b3b9160c480830192600092919082900301818387803b1580156144c757600080fd5b505af11580156144db573d6000803e3d6000fd5b50600092506144e8915050565b9a9950505050505050505050565b600061450061494e565b60008061451586600001518660000151613f98565b9092509050600082600381111561452857fe5b1461454757506040805160208101909152600081529092509050612aac565b60008061455c6706f05b59d3b2000084612e85565b9092509050600082600381111561456f57fe5b1461459157506040805160208101909152600081529094509250612aac915050565b6000806145a683670de0b6b3a7640000613fd7565b909250905060008260038111156145b957fe5b146145c057fe5b604080516020810190915290815260009a909950975050505050505050565b60065460408051600160e21b63368f51530281523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b15801561463f57600080fd5b505af1158015614653573d6000803e3d6000fd5b505050506040513d602081101561466957600080fd5b505190508015614680576122ee6003600e83612d90565b614688612df6565b600a541461469b576122ee600a806121e7565b826146a4612ab3565b10156146b6576122ee600e60096121e7565b6146be614a13565b6146c785612cdc565b60408301819052602083018260038111156146de57fe5b60038111156146e957fe5b905250600090508160200151600381111561470057fe5b1461471c5761236260096007836020015160038111156114c057fe5b61472a816040015185612e85565b606083018190526020830182600381111561474157fe5b600381111561474c57fe5b905250600090508160200151600381111561476357fe5b1461477f576123626009600c836020015160038111156114c057fe5b61478b600c5485612e85565b60808301819052602083018260038111156147a257fe5b60038111156147ad57fe5b90525060009050816020015160038111156147c457fe5b146147e0576123626009600b836020015160038111156114c057fe5b6147ea8585613a41565b819060108111156147f757fe5b9081601081111561480457fe5b90525060008151601081111561481657fe5b1461486b5760408051600160e51b62461bcd02815260206004820152601a60248201527f626f72726f77207472616e73666572206f7574206661696c6564000000000000604482015290519081900360640190fd5b606080820180516001600160a01b038816600081815260116020908152604091829020938455600b54600190940193909355608080870151600c819055945182519384529383018a9052828201939093529381019290925291517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab80929181900390910190a160065460408051600160e01b635c7786050281523060048201526001600160a01b0388811660248301526044820188905291519190921691635c77860591606480830192600092919082900301818387803b15801561267157600080fd5b6040518060200160405280600081525090565b60408051610140810190915280600081526020016000815260200160008152602001600081526020016000815260200161499961494e565b8152602001600081526020016000815260200160008152602001600081525090565b6040805160c0810190915280600081526020016000614999565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805160a08101909152806000815260200160008152602001600081526020016000815260200160008152509056fe737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720626f72726f7773506572206661696c6564726564756365207265736572766573207472616e73666572206f7574206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720737570706c7952617465206661696c6564626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720756e6465726c79696e67206661696c6564626f72726f7752617465506572426c6f636b3a20696e746572657374526174654d6f64656c2e626f72726f7752617465206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720626f72726f7752617465206661696c6564ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef737570706c7952617465506572426c6f636b3a2063616c63756c6174696e67206f6e654d696e757352657365727665466163746f72206661696c656465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65646f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f77a165627a7a7230582025298264adc45c76bfe126a40c2cfa703b7437d9db2b2dd9b278470fca404b5f002953657474696e6720696e7465726573742072617465206d6f64656c206661696c6564496e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e000000000000000000000000f47dd16553a934064509c40dc5466bbfb999528b0000000000000000000000000c3f8df27e1a00b47653fde878d68d35f00714c0000000000000000000000000000000000000000000a56fa5b99019a5c800000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000d50657263656e742045746865720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047045544800000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c80638f840ddd1161014f578063c37f68e2116100c1578063f2b3abbd1161007a578063f2b3abbd146108bc578063f3fdb15a146108ef578063f851a44014610904578063f8f9da2814610919578063fca7820b1461092e578063fe9c44ae1461095857610272565b8063c37f68e214610799578063c5ebeaec146107f2578063db006a751461081c578063dd62ed3e14610846578063e597461914610881578063e9c714f2146108a757610272565b8063aa5af0fd11610113578063aa5af0fd146106b6578063aae40a2a146106cb578063ae9d70b0146106f9578063b2a02ff11461070e578063b71d1a0c14610751578063bd6d894d1461078457610272565b80638f840ddd1461060b57806395d89b411461062057806395dd919314610635578063a6afed9514610668578063a9059cbb1461067d57610272565b80633b1d21a2116101e8578063601a0bf1116101ac578063601a0bf114610545578063675d972c1461056f5780636c540baf1461058457806370a082311461059957806373acee98146105cc578063852a12e3146105e157610272565b80633b1d21a2146104cb5780634576b5db146104e057806347bd3718146105135780634e4d9fea146105285780635fe3b5671461053057610272565b806318160ddd1161023a57806318160ddd146103e5578063182df0f5146103fa57806323b872dd1461040f5780632678224714610452578063313ce567146104835780633af9e6691461049857610272565b806306fdde03146102ac578063095ea7b3146103365780631249c58b14610383578063173b99041461038b57806317bfdfbc146103b2575b6102aa61027e3461096d565b6040518060400160405280600b8152602001600160aa1b6a1b5a5b9d0819985a5b195902815250610a03565b005b3480156102b857600080fd5b506102c1610c06565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102fb5781810151838201526020016102e3565b50505050905090810190601f1680156103285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034257600080fd5b5061036f6004803603604081101561035957600080fd5b506001600160a01b038135169060200135610c93565b604080519115158252519081900360200190f35b6102aa610d00565b34801561039757600080fd5b506103a0610d0e565b60408051918252519081900360200190f35b3480156103be57600080fd5b506103a0600480360360208110156103d557600080fd5b50356001600160a01b0316610d14565b3480156103f157600080fd5b506103a0610dd0565b34801561040657600080fd5b506103a0610dd6565b34801561041b57600080fd5b5061036f6004803603606081101561043257600080fd5b506001600160a01b03813581169160208101359091169060400135610e3c565b34801561045e57600080fd5b50610467610ea8565b604080516001600160a01b039092168252519081900360200190f35b34801561048f57600080fd5b506103a0610eb7565b3480156104a457600080fd5b506103a0600480360360208110156104bb57600080fd5b50356001600160a01b0316610ebd565b3480156104d757600080fd5b506103a0610f2d565b3480156104ec57600080fd5b506103a06004803603602081101561050357600080fd5b50356001600160a01b0316610f3c565b34801561051f57600080fd5b506103a0611092565b6102aa611098565b34801561053c57600080fd5b506104676110df565b34801561055157600080fd5b506103a06004803603602081101561056857600080fd5b50356110ee565b34801561057b57600080fd5b506103a0611128565b34801561059057600080fd5b506103a061112e565b3480156105a557600080fd5b506103a0600480360360208110156105bc57600080fd5b50356001600160a01b0316611134565b3480156105d857600080fd5b506103a061114f565b3480156105ed57600080fd5b506103a06004803603602081101561060457600080fd5b5035611209565b34801561061757600080fd5b506103a0611214565b34801561062c57600080fd5b506102c161121a565b34801561064157600080fd5b506103a06004803603602081101561065857600080fd5b50356001600160a01b0316611272565b34801561067457600080fd5b506103a06112d2565b34801561068957600080fd5b5061036f600480360360408110156106a057600080fd5b506001600160a01b0381351690602001356116ce565b3480156106c257600080fd5b506103a0611739565b6102aa600480360360408110156106e157600080fd5b506001600160a01b038135811691602001351661173f565b34801561070557600080fd5b506103a0611788565b34801561071a57600080fd5b506103a06004803603606081101561073157600080fd5b506001600160a01b03813581169160208101359091169060400135611a62565b34801561075d57600080fd5b506103a06004803603602081101561077457600080fd5b50356001600160a01b0316611d1f565b34801561079057600080fd5b506103a0611da6565b3480156107a557600080fd5b506107cc600480360360208110156107bc57600080fd5b50356001600160a01b0316611e61565b604080519485526020850193909352838301919091526060830152519081900360800190f35b3480156107fe57600080fd5b506103a06004803603602081101561081557600080fd5b5035611ef6565b34801561082857600080fd5b506103a06004803603602081101561083f57600080fd5b5035611f01565b34801561085257600080fd5b506103a06004803603604081101561086957600080fd5b506001600160a01b0381358116916020013516611f0c565b6102aa6004803603602081101561089757600080fd5b50356001600160a01b0316611f37565b3480156108b357600080fd5b506103a0611f82565b3480156108c857600080fd5b506103a0600480360360208110156108df57600080fd5b50356001600160a01b0316612071565b3480156108fb57600080fd5b506104676120ab565b34801561091057600080fd5b506104676120ba565b34801561092557600080fd5b506103a06120c9565b34801561093a57600080fd5b506103a06004803603602081101561095157600080fd5b50356121a8565b34801561096457600080fd5b5061036f6121e2565b60008054600101808255816109806112d2565b905080156109a65761099e81601081111561099757fe5b601e6121e7565b9250506109b4565b6109b0338561224d565b9250505b60005481146109fd5760408051600160e51b62461bcd02815260206004820152600a6024820152600160b21b691c994b595b9d195c995902604482015290519081900360640190fd5b50919050565b81610a0d57610c02565b606081516005016040519080825280601f01601f191660200182016040528015610a3e576020820181803883390190505b50905060005b8251811015610a8f57828181518110610a5957fe5b602001015160f81c60f81b828281518110610a7057fe5b60200101906001600160f81b031916908160001a905350600101610a44565b8151600160fd1b90839083908110610aa357fe5b60200101906001600160f81b031916908160001a905350602860f81b828260010181518110610ace57fe5b60200101906001600160f81b031916908160001a905350600a840460300160f81b828260020181518110610afe57fe5b60200101906001600160f81b031916908160001a905350600a840660300160f81b828260030181518110610b2e57fe5b60200101906001600160f81b031916908160001a905350602960f81b828260040181518110610b5957fe5b60200101906001600160f81b031916908160001a905350818415610bfe57604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610bc3578181015183820152602001610bab565b50505050905090810190601f168015610bf05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5050505b5050565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610c8b5780601f10610c6057610100808354040283529160200191610c8b565b820191906000526020600020905b815481529060010190602001808311610c6e57829003601f168201915b505050505081565b3360008181526010602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b610d0c61027e3461096d565b565b60095481565b6000805460010180825581610d276112d2565b14610d7c5760408051600160e51b62461bcd02815260206004820152601660248201527f61636372756520696e746572657374206661696c656400000000000000000000604482015290519081900360640190fd5b610d8583611272565b915060005481146109fd5760408051600160e51b62461bcd02815260206004820152600a6024820152600160b21b691c994b595b9d195c995902604482015290519081900360640190fd5b600e5481565b6000806000610de361269b565b90925090506000826003811115610df657fe5b14610e3557604051600160e51b62461bcd028152600401808060200182810382526035815260200180614bf56035913960400191505060405180910390fd5b9150505b90565b6000805460010180825581610e5333878787612749565b1491505b6000548114610ea05760408051600160e51b62461bcd02815260206004820152600a6024820152600160b21b691c994b595b9d195c995902604482015290519081900360640190fd5b509392505050565b6005546001600160a01b031681565b60035481565b6000610ec761494e565b6040518060200160405280610eda611da6565b90526001600160a01b0384166000908152600f6020526040812054919250908190610f06908490612a5f565b90925090506000826003811115610f1957fe5b14610f2357600080fd5b925050505b919050565b6000610f37612ab3565b905090565b6004546000906001600160a01b03163314610f6457610f5d6001603f6121e7565b9050610f28565b60065460408051600160e11b623f1ee902815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b158015610fac57600080fd5b505afa158015610fc0573d6000803e3d6000fd5b505050506040513d6020811015610fd657600080fd5b505161102c5760408051600160e51b62461bcd02815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600c5481565b610d0c6110a434612adf565b6040518060400160405280601281526020017f7265706179426f72726f77206661696c65640000000000000000000000000000815250610a03565b6006546001600160a01b031681565b60008054600101808255816111016112d2565b9050801561111f5761099e81601081111561111857fe5b60306121e7565b6109b084612b1b565b60085481565b600a5481565b6001600160a01b03166000908152600f602052604090205490565b60008054600101808255816111626112d2565b146111b75760408051600160e51b62461bcd02815260206004820152601660248201527f61636372756520696e746572657374206661696c656400000000000000000000604482015290519081900360640190fd5b600c54915060005481146112055760408051600160e51b62461bcd02815260206004820152600a6024820152600160b21b691c994b595b9d195c995902604482015290519081900360640190fd5b5090565b6000610cfa82612c9f565b600d5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610c8b5780601f10610c6057610100808354040283529160200191610c8b565b600080600061128084612cdc565b9092509050600082600381111561129357fe5b1461108b57604051600160e51b62461bcd028152600401808060200182810382526037815260200180614ac96037913960400191505060405180910390fd5b60006112dc614961565b6007546001600160a01b03166315f240536112f5612ab3565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b15801561133c57600080fd5b505afa158015611350573d6000803e3d6000fd5b505050506040513d604081101561136657600080fd5b50805160209182015160408401819052918301526601c6bf5263400010156113d85760408051600160e51b62461bcd02815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b6020810151156113fb576113f3600560028360200151612d90565b915050610e39565b611403612df6565b60608201819052600a546114179190612dfa565b608083018190528282600381111561142b57fe5b600381111561143657fe5b905250600090508151600381111561144a57fe5b1461145157fe5b611471604051806020016040528083604001518152508260800151612e1d565b60a083018190528282600381111561148557fe5b600381111561149057fe5b90525060009050815160038111156114a457fe5b146114c5576113f360096006836000015160038111156114c057fe5b612d90565b6114d58160a00151600c54612a5f565b60c08301819052828260038111156114e957fe5b60038111156114f457fe5b905250600090508151600381111561150857fe5b14611524576113f360096001836000015160038111156114c057fe5b6115348160c00151600c54612e85565b60e083018190528282600381111561154857fe5b600381111561155357fe5b905250600090508151600381111561156757fe5b14611583576113f360096004836000015160038111156114c057fe5b6115a460405180602001604052806009548152508260c00151600d54612eab565b6101008301819052828260038111156115b957fe5b60038111156115c457fe5b90525060009050815160038111156115d857fe5b146115f4576113f360096005836000015160038111156114c057fe5b6116078160a00151600b54600b54612eab565b61012083018190528282600381111561161c57fe5b600381111561162757fe5b905250600090508151600381111561163b57fe5b14611657576113f360096003836000015160038111156114c057fe5b606080820151600a55610120820151600b81905560e0830151600c819055610100840151600d5560c08401516040805191825260208201939093528083019190915290517f875352fb3fadeb8c0be7cbbe8ff761b308fa7033470cd0287f02f3436fd76cb9929181900390910190a1600091505090565b60008054600101808255816116e533338787612749565b1491505b60005481146117325760408051600160e51b62461bcd02815260206004820152600a6024820152600160b21b691c994b595b9d195c995902604482015290519081900360640190fd5b5092915050565b600b5481565b610c0261174d833484612f07565b6040518060400160405280601681526020017f6c6971756964617465426f72726f77206661696c656400000000000000000000815250610a03565b600080611793610dd6565b60075490915060009081906001600160a01b03166315f240536117b4612ab3565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b1580156117fb57600080fd5b505afa15801561180f573d6000803e3d6000fd5b505050506040513d604081101561182557600080fd5b5080516020909101519092509050811561187357604051600160e51b62461bcd028152600401808060200182810382526031815260200180614b686031913960400191505060405180910390fd5b600061187d61494e565b611897604051806020016040528087815250600e54612e1d565b909250905060008260038111156118aa57fe5b146118e957604051600160e51b62461bcd028152600401808060200182810382526031815260200180614b006031913960400191505060405180910390fd5b60006118f361494e565b6118ff600c5484613015565b9092509050600082600381111561191257fe5b1461195157604051600160e51b62461bcd028152600401808060200182810382526031815260200180614a446031913960400191505060405180910390fd5b600061195b61494e565b61198b6040518060200160405280670de0b6b3a76400008152506040518060200160405280600954815250613074565b9092509050600082600381111561199e57fe5b146119dd57604051600160e51b62461bcd02815260040180806020018281038252603c815260200180614bb9603c913960400191505060405180910390fd5b60006119e761494e565b611a0060405180602001604052808b81525084876130ae565b90925090506000826003811115611a1357fe5b14611a5257604051600160e51b62461bcd028152600401808060200182810382526031815260200180614a986031913960400191505060405180910390fd5b519a505050505050505050505090565b6000805460010180825560065460408051600160e01b63d02f73510281523060048201523360248201526001600160a01b03888116604483015287811660648301526084820187905291518593929092169163d02f73519160a48082019260209290919082900301818787803b158015611adb57600080fd5b505af1158015611aef573d6000803e3d6000fd5b505050506040513d6020811015611b0557600080fd5b505190508015611b2457611b1c6003601b83612d90565b925050610e57565b856001600160a01b0316856001600160a01b03161415611b4a57611b1c6006601c6121e7565b6001600160a01b0385166000908152600f602052604081205481908190611b719088612dfa565b90935091506000836003811115611b8457fe5b14611ba757611b9c6009601a8560038111156114c057fe5b955050505050610e57565b6001600160a01b0389166000908152600f6020526040902054611bca9088612e85565b90935090506000836003811115611bdd57fe5b14611bf557611b9c600960198560038111156114c057fe5b6001600160a01b038089166000818152600f60209081526040808320879055938d168083529184902085905583518b815293519193600080516020614b99833981519152929081900390910190a360065460408051600160e01b636d35bf910281523060048201523360248201526001600160a01b038c811660448301528b81166064830152608482018b905291519190921691636d35bf919160a480830192600092919082900301818387803b158015611caf57600080fd5b505af1158015611cc3573d6000803e3d6000fd5b5060009250611cd0915050565b9550505050506000548114610ea05760408051600160e51b62461bcd02815260206004820152600a6024820152600160b21b691c994b595b9d195c995902604482015290519081900360640190fd5b6004546000906001600160a01b03163314611d4057610f5d600160456121e7565b600580546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a1600061108b565b6000805460010180825581611db96112d2565b14611e0e5760408051600160e51b62461bcd02815260206004820152601660248201527f61636372756520696e746572657374206661696c656400000000000000000000604482015290519081900360640190fd5b611e16610dd6565b915060005481146112055760408051600160e51b62461bcd02815260206004820152600a6024820152600160b21b691c994b595b9d195c995902604482015290519081900360640190fd5b6001600160a01b0381166000908152600f6020526040812054819081908190818080611e8c89612cdc565b935090506000816003811115611e9e57fe5b14611ebc5760095b975060009650869550859450611eef9350505050565b611ec461269b565b925090506000816003811115611ed657fe5b14611ee2576009611ea6565b5060009650919450925090505b9193509193565b6000610cfa826130f8565b6000610cfa82613133565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205490565b611f7f611f448234613169565b6040518060400160405280601881526020017f7265706179426f72726f77426568616c66206661696c65640000000000000000815250610a03565b50565b6005546000906001600160a01b031633141580611f9d575033155b15611fb557611fae600160006121e7565b9050610e39565b60048054600580546001600160a01b038082166001600160a01b031980861682179687905590921690925560408051938316808552949092166020840152815190927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600554604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b60008061207c6112d2565b905080156120a25761209a81601081111561209357fe5b60406121e7565b915050610f28565b61108b836131f9565b6007546001600160a01b031681565b6004546001600160a01b031681565b600754600090819081906001600160a01b03166315f240536120e9612ab3565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b15801561213057600080fd5b505afa158015612144573d6000803e3d6000fd5b505050506040513d604081101561215a57600080fd5b50805160209091015190925090508115610e3557604051600160e51b62461bcd028152600401808060200182810382526037815260200180614b316037913960400191505060405180910390fd5b60008054600101808255816121bb6112d2565b905080156121d95761099e8160108111156121d257fe5b60466121e7565b6109b08461336c565b600181565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561221657fe5b83604d81111561222257fe5b604080519283526020830191909152600082820152519081900360600190a182601081111561108b57fe5b60065460408051600160e01b634ef4c3e10281523060048201526001600160a01b03858116602483015260448201859052915160009384931691634ef4c3e191606480830192602092919082900301818787803b1580156122ad57600080fd5b505af11580156122c1573d6000803e3d6000fd5b505050506040513d60208110156122d757600080fd5b5051905080156122f6576122ee6003601f83612d90565b915050610cfa565b6122fe612df6565b600a5414612312576122ee600a60226121e7565b61231a6149bb565b612324858561340f565b8190601081111561233157fe5b9081601081111561233e57fe5b90525060008151601081111561235057fe5b1461236b5780516123629060266121e7565b92505050610cfa565b61237361269b565b604083018190526020830182600381111561238a57fe5b600381111561239557fe5b90525060009050816020015160038111156123ac57fe5b146123c85761236260096021836020015160038111156114c057fe5b6123e484604051806020016040528084604001518152506134d1565b60608301819052602083018260038111156123fb57fe5b600381111561240657fe5b905250600090508160200151600381111561241d57fe5b146124395761236260096020836020015160038111156114c057fe5b612449600e548260600151612e85565b608083018190526020830182600381111561246057fe5b600381111561246b57fe5b905250600090508160200151600381111561248257fe5b1461249e5761236260096024836020015160038111156114c057fe5b6001600160a01b0385166000908152600f602052604090205460608201516124c69190612e85565b60a08301819052602083018260038111156124dd57fe5b60038111156124e857fe5b90525060009050816020015160038111156124ff57fe5b1461251b5761236260096023836020015160038111156114c057fe5b612525858561340f565b8190601081111561253257fe5b9081601081111561253f57fe5b90525060008151601081111561255157fe5b146125635780516123629060256121e7565b6080810151600e5560a08101516001600160a01b0386166000818152600f602090815260409182902093909355606080850151825193845293830188905282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b038716913091600080516020614b998339815191529181900360200190a3600654606082015160408051600160e01b6341c728b90281523060048201526001600160a01b038981166024830152604482018990526064820193909352905191909216916341c728b991608480830192600092919082900301818387803b15801561267157600080fd5b505af1158015612685573d6000803e3d6000fd5b5060009250612692915050565b95945050505050565b600080600e54600014156126b6575050600854600090612745565b60006126c0612ab3565b905060006126cc61494e565b60006126dd84600c54600d546134e8565b9350905060008160038111156126ef57fe5b146127035794506000935061274592505050565b61270f83600e54613526565b92509050600081600381111561272157fe5b146127355794506000935061274592505050565b5051600094509250612745915050565b9091565b60065460408051600160e31b6317b9b84b0281523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b1580156127b157600080fd5b505af11580156127c5573d6000803e3d6000fd5b505050506040513d60208110156127db57600080fd5b5051905080156127fa576127f26003604a83612d90565b915050612a57565b836001600160a01b0316856001600160a01b03161415612820576127f26002604b6121e7565b60006001600160a01b03878116908716141561283f5750600019612867565b506001600160a01b038086166000908152601060209081526040808320938a16835292905220545b6000806000806128778589612dfa565b9094509250600084600381111561288a57fe5b146128a85761289b6009604b6121e7565b9650505050505050612a57565b6001600160a01b038a166000908152600f60205260409020546128cb9089612dfa565b909450915060008460038111156128de57fe5b146128ef5761289b6009604c6121e7565b6001600160a01b0389166000908152600f60205260409020546129129089612e85565b9094509050600084600381111561292557fe5b146129365761289b6009604d6121e7565b6001600160a01b03808b166000908152600f6020526040808220859055918b16815220819055600019851461298e576001600160a01b03808b166000908152601060209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b0316600080516020614b998339815191528a6040518082815260200191505060405180910390a360065460408051600160e11b63352b4a3f0281523060048201526001600160a01b038d811660248301528c81166044830152606482018c905291519190921691636a56947e91608480830192600092919082900301818387803b158015612a2d57600080fd5b505af1158015612a41573d6000803e3d6000fd5b5060009250612a4e915050565b96505050505050505b949350505050565b6000806000612a6c61494e565b612a768686612e1d565b90925090506000826003811115612a8957fe5b14612a9a5750915060009050612aac565b6000612aa5826135d6565b9350935050505b9250929050565b60008080612ac2303134612dfa565b90925090506000826003811115612ad557fe5b14610e3557600080fd5b6000805460010180825581612af26112d2565b90508015612b105761099e816010811115612b0957fe5b60366121e7565b6109b03333866135e5565b600454600090819081906001600160a01b03163314612b4957612b40600160316121e7565b92505050610f28565b612b51612df6565b600a5414612b6557612b40600a60336121e7565b83612b6e612ab3565b1015612b8057612b40600e60326121e7565b600d54841115612b9657612b40600260346121e7565b50600d5483810390811115612bdf57604051600160e51b62461bcd028152600401808060200182810382526024815260200180614c5e6024913960400191505060405180910390fd5b600d819055600454612bfa906001600160a01b031685613a41565b91506000826010811115612c0a57fe5b14612c4957604051600160e51b62461bcd028152600401808060200182810382526023815260200180614a756023913960400191505060405180910390fd5b600454604080516001600160a01b03909216825260208201869052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e9181900360600190a16000949350505050565b6000805460010180825581612cb26112d2565b90508015612cd05761099e816010811115612cc957fe5b60276121e7565b6109b033600086613a83565b6001600160a01b038116600090815260116020526040812080548291829182918291612d13575060009450849350612d8b92505050565b612d238160000154600b54613f98565b90945092506000846003811115612d3657fe5b14612d4b575091935060009250612d8b915050565b612d59838260010154613fd7565b90945091506000846003811115612d6c57fe5b14612d81575091935060009250612d8b915050565b5060009450925050505b915091565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0846010811115612dbf57fe5b84604d811115612dcb57fe5b604080519283526020830191909152818101859052519081900360600190a1836010811115612a5757fe5b4390565b600080838311612e11575060009050818303612aac565b50600390506000612aac565b6000612e2761494e565b600080612e38866000015186613f98565b90925090506000826003811115612e4b57fe5b14612e6a57506040805160208101909152600081529092509050612aac565b60408051602081019091529081526000969095509350505050565b600080838301848110612e9d57600092509050612aac565b506002915060009050612aac565b6000806000612eb861494e565b612ec28787612e1d565b90925090506000826003811115612ed557fe5b14612ee65750915060009050612eff565b612ef8612ef2826135d6565b86612e85565b9350935050505b935093915050565b6000805460010180825581612f1a6112d2565b90508015612f3857611b1c816010811115612f3157fe5b600f6121e7565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612f7357600080fd5b505af1158015612f87573d6000803e3d6000fd5b505050506040513d6020811015612f9d57600080fd5b505190508015612fbd57611b1c816010811115612fb657fe5b60106121e7565b612fc933878787614002565b9250506000548114610ea05760408051600160e51b62461bcd02815260206004820152600a6024820152600160b21b691c994b595b9d195c995902604482015290519081900360640190fd5b600061301f61494e565b600080613034670de0b6b3a764000087613f98565b9092509050600082600381111561304757fe5b1461306657506040805160208101909152600081529092509050612aac565b612aa5818660000151613526565b600061307e61494e565b60008061309386600001518660000151612dfa565b60408051602081019091529081529097909650945050505050565b60006130b861494e565b60006130c261494e565b6130cc87876144f6565b909250905060008260038111156130df57fe5b146130ee579092509050612eff565b612ef881866144f6565b600080546001018082558161310b6112d2565b905080156131295761099e81601081111561312257fe5b60086121e7565b6109b033856145df565b60008054600101808255816131466112d2565b9050801561315d5761099e816010811115612cc957fe5b6109b033856000613a83565b600080546001018082558161317c6112d2565b905080156131a25761319a81601081111561319357fe5b60356121e7565b9250506116e9565b6131ad3386866135e5565b92505060005481146117325760408051600160e51b62461bcd02815260206004820152600a6024820152600160b21b691c994b595b9d195c995902604482015290519081900360640190fd5b60045460009081906001600160a01b0316331461321c5761209a600160426121e7565b613224612df6565b600a54146132385761209a600a60416121e7565b600760009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561328957600080fd5b505afa15801561329d573d6000803e3d6000fd5b505050506040513d60208110156132b357600080fd5b50516133095760408051600160e51b62461bcd02815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a1600061108b565b6004546000906001600160a01b0316331461338d57610f5d600160476121e7565b613395612df6565b600a54146133a957610f5d600a60486121e7565b670de0b6b3a76400008211156133c557610f5d600260496121e7565b6009805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a1600061108b565b6000336001600160a01b038416146134715760408051600160e51b62461bcd02815260206004820152600f60248201527f73656e646572206d69736d617463680000000000000000000000000000000000604482015290519081900360640190fd5b8134146134c85760408051600160e51b62461bcd02815260206004820152600e60248201527f76616c7565206d69736d61746368000000000000000000000000000000000000604482015290519081900360640190fd5b50600092915050565b60008060006134de61494e565b612a768686613015565b6000806000806134f88787612e85565b9092509050600082600381111561350b57fe5b1461351c5750915060009050612eff565b612ef88186612dfa565b600061353061494e565b60008061354586670de0b6b3a7640000613f98565b9092509050600082600381111561355857fe5b1461357757506040805160208101909152600081529092509050612aac565b6000806135848388613fd7565b9092509050600082600381111561359757fe5b146135b957506040805160208101909152600081529094509250612aac915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b60065460408051600160e11b63120045310281523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849316916324008a6291608480830192602092919082900301818787803b15801561364d57600080fd5b505af1158015613661573d6000803e3d6000fd5b505050506040513d602081101561367757600080fd5b5051905080156136965761368e6003603883612d90565b91505061108b565b61369e612df6565b600a54146136b25761368e600a60396121e7565b6136ba6149d5565b6001600160a01b03851660009081526011602052604090206001015460608201526136e485612cdc565b60808301819052602083018260038111156136fb57fe5b600381111561370657fe5b905250600090508160200151600381111561371d57fe5b146137425761373960096037836020015160038111156114c057fe5b9250505061108b565b60001984141561375b5760808101516040820152613763565b604081018490525b61377186826040015161340f565b8190601081111561377e57fe5b9081601081111561378b57fe5b90525060008151601081111561379d57fe5b146137af57805161373990603c6121e7565b6137c181608001518260400151612dfa565b60a08301819052602083018260038111156137d857fe5b60038111156137e357fe5b90525060009050816020015160038111156137fa57fe5b14613816576137396009603a836020015160038111156114c057fe5b613826600c548260400151612dfa565b60c083018190526020830182600381111561383d57fe5b600381111561384857fe5b905250600090508160200151600381111561385f57fe5b1461387b576137396009603b836020015160038111156114c057fe5b61388986826040015161340f565b8190601081111561389657fe5b908160108111156138a357fe5b9052506000815160108111156138b557fe5b1461390a5760408051600160e51b62461bcd02815260206004820152601f60248201527f726570617920626f72726f77207472616e7366657220696e206661696c656400604482015290519081900360640190fd5b60a080820180516001600160a01b03808916600081815260116020908152604091829020948555600b5460019095019490945560c0870151600c8190558188015195518251948e16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160065460408083015160608401518251600160e01b631ededc910281523060048201526001600160a01b038b811660248301528a81166044830152606482019390935260848101919091529151921691631ededc919160a48082019260009290919082900301818387803b158015613a1657600080fd5b505af1158015613a2a573d6000803e3d6000fd5b5060009250613a37915050565b9695505050505050565b6040516000906001600160a01b0384169083156108fc0290849084818181858888f19350505050158015613a79573d6000803e3d6000fd5b5060009392505050565b6000821580613a90575081155b613ace57604051600160e51b62461bcd028152600401808060200182810382526034815260200180614c2a6034913960400191505060405180910390fd5b613ad66149d5565b613ade61269b565b6040830181905260208301826003811115613af557fe5b6003811115613b0057fe5b9052506000905081602001516003811115613b1757fe5b14613b335761368e6009602b836020015160038111156114c057fe5b8315613bb4576060810184905260408051602081018252908201518152613b5a9085612a5f565b6080830181905260208301826003811115613b7157fe5b6003811115613b7c57fe5b9052506000905081602001516003811115613b9357fe5b14613baf5761368e60096029836020015160038111156114c057fe5b613c2d565b613bd083604051806020016040528084604001518152506134d1565b6060830181905260208301826003811115613be757fe5b6003811115613bf257fe5b9052506000905081602001516003811115613c0957fe5b14613c255761368e6009602a836020015160038111156114c057fe5b608081018390525b600654606082015160408051600160e01b63eabe7d910281523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b158015613c9557600080fd5b505af1158015613ca9573d6000803e3d6000fd5b505050506040513d6020811015613cbf57600080fd5b505190508015613cd6576137396003602883612d90565b613cde612df6565b600a5414613cf257613739600a602c6121e7565b613d02600e548360600151612dfa565b60a0840181905260208401826003811115613d1957fe5b6003811115613d2457fe5b9052506000905082602001516003811115613d3b57fe5b14613d57576137396009602e846020015160038111156114c057fe5b6001600160a01b0386166000908152600f60205260409020546060830151613d7f9190612dfa565b60c0840181905260208401826003811115613d9657fe5b6003811115613da157fe5b9052506000905082602001516003811115613db857fe5b14613dd4576137396009602d846020015160038111156114c057fe5b8160800151613de1612ab3565b1015613df357613739600e602f6121e7565b613e01868360800151613a41565b82906010811115613e0e57fe5b90816010811115613e1b57fe5b905250600082516010811115613e2d57fe5b14613e825760408051600160e51b62461bcd02815260206004820152601a60248201527f72656465656d207472616e73666572206f7574206661696c6564000000000000604482015290519081900360640190fd5b60a0820151600e5560c08201516001600160a01b0387166000818152600f6020908152604091829020939093556060850151815190815290513093600080516020614b99833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a16006546080830151606084015160408051600160e01b6351dff9890281523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b158015613a1657600080fd5b60008083613fab57506000905080612aac565b83830283858281613fb857fe5b0414613fcc57506002915060009050612aac565b600092509050612aac565b60008082613feb5750600190506000612aac565b6000838581613ff657fe5b04915091509250929050565b60065460408051600160e11b632fe3f38f0281523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384931691635fc7e71e9160a480830192602092919082900301818787803b15801561407257600080fd5b505af1158015614086573d6000803e3d6000fd5b505050506040513d602081101561409c57600080fd5b5051905080156140b3576127f26003601283612d90565b6140bb612df6565b600a54146140cf576127f2600a60166121e7565b6140d7612df6565b836001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b15801561411057600080fd5b505afa158015614124573d6000803e3d6000fd5b505050506040513d602081101561413a57600080fd5b50511461414d576127f2600a60116121e7565b856001600160a01b0316856001600160a01b03161415614173576127f2600660176121e7565b83614184576127f2600760156121e7565b60001984141561419a576127f2600760146121e7565b60065460408051600160e01b63c488847b0281523060048201526001600160a01b038681166024830152604482018890528251600094859492169263c488847b926064808301939192829003018186803b1580156141f757600080fd5b505afa15801561420b573d6000803e3d6000fd5b505050506040513d604081101561422157600080fd5b5080516020909101519092509050811561424c576142426004601384612d90565b9350505050612a57565b846001600160a01b03166370a08231886040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156142a257600080fd5b505afa1580156142b6573d6000803e3d6000fd5b505050506040513d60208110156142cc57600080fd5b50518111156142e157614242600d601d6121e7565b60006142ee8989896135e5565b905080156143175761430c81601081111561430557fe5b60186121e7565b945050505050612a57565b60408051600160e01b63b2a02ff10281526001600160a01b038b811660048301528a8116602483015260448201859052915160009289169163b2a02ff191606480830192602092919082900301818787803b15801561437557600080fd5b505af1158015614389573d6000803e3d6000fd5b505050506040513d602081101561439f57600080fd5b5051905080156143f95760408051600160e51b62461bcd02815260206004820152601460248201527f746f6b656e207365697a757265206661696c6564000000000000000000000000604482015290519081900360640190fd5b604080516001600160a01b03808d168252808c1660208301528183018b9052891660608201526080810185905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a160065460408051600160e01b6347ef3b3b0281523060048201526001600160a01b038a811660248301528d811660448301528c81166064830152608482018c905260a48201879052915191909216916347ef3b3b9160c480830192600092919082900301818387803b1580156144c757600080fd5b505af11580156144db573d6000803e3d6000fd5b50600092506144e8915050565b9a9950505050505050505050565b600061450061494e565b60008061451586600001518660000151613f98565b9092509050600082600381111561452857fe5b1461454757506040805160208101909152600081529092509050612aac565b60008061455c6706f05b59d3b2000084612e85565b9092509050600082600381111561456f57fe5b1461459157506040805160208101909152600081529094509250612aac915050565b6000806145a683670de0b6b3a7640000613fd7565b909250905060008260038111156145b957fe5b146145c057fe5b604080516020810190915290815260009a909950975050505050505050565b60065460408051600160e21b63368f51530281523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b15801561463f57600080fd5b505af1158015614653573d6000803e3d6000fd5b505050506040513d602081101561466957600080fd5b505190508015614680576122ee6003600e83612d90565b614688612df6565b600a541461469b576122ee600a806121e7565b826146a4612ab3565b10156146b6576122ee600e60096121e7565b6146be614a13565b6146c785612cdc565b60408301819052602083018260038111156146de57fe5b60038111156146e957fe5b905250600090508160200151600381111561470057fe5b1461471c5761236260096007836020015160038111156114c057fe5b61472a816040015185612e85565b606083018190526020830182600381111561474157fe5b600381111561474c57fe5b905250600090508160200151600381111561476357fe5b1461477f576123626009600c836020015160038111156114c057fe5b61478b600c5485612e85565b60808301819052602083018260038111156147a257fe5b60038111156147ad57fe5b90525060009050816020015160038111156147c457fe5b146147e0576123626009600b836020015160038111156114c057fe5b6147ea8585613a41565b819060108111156147f757fe5b9081601081111561480457fe5b90525060008151601081111561481657fe5b1461486b5760408051600160e51b62461bcd02815260206004820152601a60248201527f626f72726f77207472616e73666572206f7574206661696c6564000000000000604482015290519081900360640190fd5b606080820180516001600160a01b038816600081815260116020908152604091829020938455600b54600190940193909355608080870151600c819055945182519384529383018a9052828201939093529381019290925291517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab80929181900390910190a160065460408051600160e01b635c7786050281523060048201526001600160a01b0388811660248301526044820188905291519190921691635c77860591606480830192600092919082900301818387803b15801561267157600080fd5b6040518060200160405280600081525090565b60408051610140810190915280600081526020016000815260200160008152602001600081526020016000815260200161499961494e565b8152602001600081526020016000815260200160008152602001600081525090565b6040805160c0810190915280600081526020016000614999565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805160a08101909152806000815260200160008152602001600081526020016000815260200160008152509056fe737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720626f72726f7773506572206661696c6564726564756365207265736572766573207472616e73666572206f7574206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720737570706c7952617465206661696c6564626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720756e6465726c79696e67206661696c6564626f72726f7752617465506572426c6f636b3a20696e746572657374526174654d6f64656c2e626f72726f7752617465206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720626f72726f7752617465206661696c6564ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef737570706c7952617465506572426c6f636b3a2063616c63756c6174696e67206f6e654d696e757352657365727665466163746f72206661696c656465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65646f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f77a165627a7a7230582025298264adc45c76bfe126a40c2cfa703b7437d9db2b2dd9b278470fca404b5f0029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000f47dd16553a934064509c40dc5466bbfb999528b0000000000000000000000000c3f8df27e1a00b47653fde878d68d35f00714c0000000000000000000000000000000000000000000a56fa5b99019a5c800000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000d50657263656e742045746865720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047045544800000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : comptroller_ (address): 0xf47dD16553A934064509C40DC5466BBfB999528B
Arg [1] : interestRateModel_ (address): 0x0C3F8Df27e1A00b47653fDE878D68D35F00714C0
Arg [2] : initialExchangeRateMantissa_ (uint256): 200000000000000000000000000
Arg [3] : name_ (string): Percent Ether
Arg [4] : symbol_ (string): pETH
Arg [5] : decimals_ (uint256): 8

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 000000000000000000000000f47dd16553a934064509c40dc5466bbfb999528b
Arg [1] : 0000000000000000000000000c3f8df27e1a00b47653fde878d68d35f00714c0
Arg [2] : 000000000000000000000000000000000000000000a56fa5b99019a5c8000000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [7] : 50657263656e7420457468657200000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 7045544800000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

99222:6278:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102977:54;102992:23;103005:9;102992:12;:23::i;:::-;102977:54;;;;;;;;;;;;;-1:-1:-1;;;;;102977:54:0;;;:14;:54::i;:::-;99222:6278;29879:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29879:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;29879:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40646:237;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40646:237:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;40646:237:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;100266:106;;;:::i;31154:33::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31154:33:0;;;:::i;:::-;;;;;;;;;;;;;;;;46355:224;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46355:224:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;46355:224:0;-1:-1:-1;;;;;46355:224:0;;:::i;31790:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31790:26:0;;;:::i;49200:261::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49200:261:0;;;:::i;39981:195::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39981:195:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;39981:195:0;;;;;;;;;;;;;;;;;:::i;30580:35::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30580:35:0;;;:::i;:::-;;;;-1:-1:-1;;;;;30580:35:0;;;;;;;;;;;;;;30075:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30075:20:0;;;:::i;41914:319::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41914:319:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41914:319:0;-1:-1:-1;;;;;41914:319:0;;:::i;51037:88::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51037:88:0;;;:::i;88712:735::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;88712:735:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;88712:735:0;-1:-1:-1;;;;;88712:735:0;;:::i;31554:24::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31554:24:0;;;:::i;101817:127::-;;;:::i;30706:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30706:39:0;;;:::i;91904:571::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;91904:571:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91904:571:0;;:::i;31018:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31018:39:0;;;:::i;31277:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31277:30:0;;;:::i;41546:112::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41546:112:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41546:112:0;-1:-1:-1;;;;;41546:112:0;;:::i;45872:192::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45872:192:0;;;:::i;101192:133::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;101192:133:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;101192:133:0;;:::i;31684:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31684:25:0;;;:::i;29975:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29975:20:0;;;:::i;46788:287::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46788:287:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;46788:287:0;-1:-1:-1;;;;;46788:287:0;;:::i;51742:3644::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51742:3644:0;;;:::i;39489:185::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39489:185:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;39489:185:0;;;;;;;;:::i;31419:23::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31419:23:0;;;:::i;102658:208::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;102658:208:0;;;;;;;;;;:::i;44228:1498::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44228:1498:0;;;:::i;84149:2121::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;84149:2121:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;84149:2121:0;;;;;;;;;;;;;;;;;:::i;86820:647::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;86820:647:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;86820:647:0;-1:-1:-1;;;;;86820:647:0;;:::i;48752:198::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48752:198:0;;;:::i;42579:703::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42579:703:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42579:703:0;-1:-1:-1;;;;;42579:703:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101593:113;;8:9:-1;5:2;;;30:1;27;20:12;5:2;101593:113:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;101593:113:0;;:::i;100723:::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;100723:113:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;100723:113:0;;:::i;41213:143::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41213:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;41213:143:0;;;;;;;;;;:::i;102135:171::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;102135:171:0;-1:-1:-1;;;;;102135:171:0;;:::i;87745:742::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;87745:742:0;;;:::i;95182:633::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;95182:633:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;95182:633:0;-1:-1:-1;;;;;95182:633:0;;:::i;30847:42::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30847:42:0;;;:::i;30469:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30469:28:0;;;:::i;43710:342::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43710:342:0;;;:::i;89750:607::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;89750:607:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;89750:607:0;;:::i;29767:36::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29767:36:0;;;:::i;55744:536::-;55814:4;27689:18;;27706:1;27689:18;;;;55814:4;55844:16;:14;:16::i;:::-;55831:29;-1:-1:-1;55875:29:0;;55871:247;;56047:59;56058:5;56052:12;;;;;;;;56066:39;56047:4;:59::i;:::-;56040:66;;;;;55871:247;56239:33;56249:10;56261;56239:9;:33::i;:::-;56232:40;;;27765:1;27801:13;;27785:12;:29;27777:52;;;;;-1:-1:-1;;;;;27777:52:0;;;;;;;;;;;;-1:-1:-1;;;;;27777:52:0;;;;;;;;;;;;;;;55744:536;;;;:::o;104785:712::-;104875:31;104871:70;;104923:7;;104871:70;104953:24;104996:7;104990:21;105014:1;104990:25;104980:36;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;104980:36:0;87:34:-1;135:17;;-1:-1;104980:36:0;-1:-1:-1;104953:63:0;-1:-1:-1;105027:6:0;105046:105;105068:7;105062:21;105058:1;:25;105046:105;;;105128:7;105137:1;105122:17;;;;;;;;;;;;;;;;105105:11;105117:1;105105:14;;;;;;;;;;;:34;-1:-1:-1;;;;;105105:34:0;;;;;;;;-1:-1:-1;105085:3:0;;105046:105;;;105163:16;;-1:-1:-1;;;105182:15:0;105163:11;;105175:1;;105163:16;;;;;;;;;:34;-1:-1:-1;;;;;105163:34:0;;;;;;;;;105238:2;105227:15;;105208:11;105220:1;105222;105220:3;105208:16;;;;;;;;;;;:34;-1:-1:-1;;;;;105208:34:0;;;;;;;;-1:-1:-1;105300:2:0;105290:7;:12;105283:2;:21;105272:34;;105253:11;105265:1;105267;105265:3;105253:16;;;;;;;;;;;:53;-1:-1:-1;;;;;105253:53:0;;;;;;;;-1:-1:-1;105364:2:0;105354:7;:12;105347:2;:21;105336:34;;105317:11;105329:1;105331;105329:3;105317:16;;;;;;;;;;;:53;-1:-1:-1;;;;;105317:53:0;;;;;;;;;105411:2;105400:15;;105381:11;105393:1;105395;105393:3;105381:16;;;;;;;;;;;:34;-1:-1:-1;;;;;105381:34:0;;;;;;;;-1:-1:-1;105476:11:0;105436:31;;105428:61;;;;-1:-1:-1;;;;;105428:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;105428:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104785:712;;;;;:::o;29879:18::-;;;;;;;;;;;;;;;-1:-1:-1;;29879:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40646:237::-;40745:10;40714:4;40766:23;;;:18;:23;;;;;;;;-1:-1:-1;;;;;40766:32:0;;;;;;;;;;;:41;;;40823:30;;;;;;;40714:4;;40745:10;40766:32;;40745:10;;40823:30;;;;;;;;;;;40871:4;40864:11;;;40646:237;;;;;:::o;100266:106::-;100310:54;100325:23;100338:9;100325:12;:23::i;100310:54::-;100266:106::o;31154:33::-;;;;:::o;46355:224::-;46433:4;27689:18;;27706:1;27689:18;;;;46433:4;46458:16;:14;:16::i;:::-;:40;46450:75;;;;;-1:-1:-1;;;;;46450:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;46543:28;46563:7;46543:19;:28::i;:::-;46536:35;;27801:13;;27785:12;:29;27777:52;;;;;-1:-1:-1;;;;;27777:52:0;;;;;;;;;;;;-1:-1:-1;;;;;27777:52:0;;;;;;;;;;;;;;31790:26;;;;:::o;49200:261::-;49251:4;49269:13;49284:11;49299:28;:26;:28::i;:::-;49268:59;;-1:-1:-1;49268:59:0;-1:-1:-1;49353:18:0;49346:3;:25;;;;;;;;;49338:91;;;;-1:-1:-1;;;;;49338:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49447:6;-1:-1:-1;;49200:261:0;;:::o;39981:195::-;40076:4;27689:18;;27706:1;27689:18;;;;40076:4;40100:44;40115:10;40127:3;40132;40137:6;40100:14;:44::i;:::-;:68;40093:75;;27765:1;27801:13;;27785:12;:29;27777:52;;;;;-1:-1:-1;;;;;27777:52:0;;;;;;;;;;;;-1:-1:-1;;;;;27777:52:0;;;;;;;;;;;;;;;39981:195;;;;;;:::o;30580:35::-;;;-1:-1:-1;;;;;30580:35:0;;:::o;30075:20::-;;;;:::o;41914:319::-;41976:4;41993:23;;:::i;:::-;42019:38;;;;;;;;42034:21;:19;:21::i;:::-;42019:38;;-1:-1:-1;;;;;42133:20:0;;42069:14;42133:20;;;:13;:20;;;;;;41993:64;;-1:-1:-1;42069:14:0;;;42101:53;;41993:64;;42101:17;:53::i;:::-;42068:86;;-1:-1:-1;42068:86:0;-1:-1:-1;42181:18:0;42173:4;:26;;;;;;;;;42165:35;;;;;;42218:7;-1:-1:-1;;;41914:319:0;;;;:::o;51037:88::-;51079:4;51103:14;:12;:14::i;:::-;51096:21;;51037:88;:::o;88712:735::-;88859:5;;88790:4;;-1:-1:-1;;;;;88859:5:0;88845:10;:19;88841:124;;88888:65;88893:18;88913:39;88888:4;:65::i;:::-;88881:72;;;;88841:124;89015:11;;89112:30;;;-1:-1:-1;;;;;89112:30:0;;;;-1:-1:-1;;;;;89015:11:0;;;;89112:28;;;;;:30;;;;;;;;;;;;;;:28;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;89112:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;89112:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;89112:30:0;89104:71;;;;;-1:-1:-1;;;;;89104:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;89243:11;:28;;-1:-1:-1;;;;;;89243:28:0;-1:-1:-1;;;;;89243:28:0;;;;;;;;;89353:46;;;;;;;;;;;;;;;;;;;;;;;;;;;89424:14;89419:20;89412:27;88712:735;-1:-1:-1;;;88712:735:0:o;31554:24::-;;;;:::o;101817:127::-;101868:68;101883:30;101903:9;101883:19;:30::i;:::-;101868:68;;;;;;;;;;;;;;;;;:14;:68::i;30706:39::-;;;-1:-1:-1;;;;;30706:39:0;;:::o;91904:571::-;91979:4;27689:18;;27706:1;27689:18;;;;91979:4;92009:16;:14;:16::i;:::-;91996:29;-1:-1:-1;92040:29:0;;92036:277;;92231:70;92242:5;92236:12;;;;;;;;92250:50;92231:4;:70::i;92036:277::-;92433:34;92454:12;92433:20;:34::i;31018:39::-;;;;:::o;31277:30::-;;;;:::o;41546:112::-;-1:-1:-1;;;;;41630:20:0;41603:7;41630:20;;;:13;:20;;;;;;;41546:112::o;45872:192::-;45934:4;27689:18;;27706:1;27689:18;;;;45934:4;45959:16;:14;:16::i;:::-;:40;45951:75;;;;;-1:-1:-1;;;;;45951:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;46044:12;;46037:19;;27801:13;;27785:12;:29;27777:52;;;;;-1:-1:-1;;;;;27777:52:0;;;;;;;;;;;;-1:-1:-1;;;;;27777:52:0;;;;;;;;;;;;;;;45872:192;;:::o;101192:133::-;101255:4;101279:38;101304:12;101279:24;:38::i;31684:25::-;;;;:::o;29975:20::-;;;;;;;;;;;;;;-1:-1:-1;;29975:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46788:287;46855:4;46873:13;46888:11;46903:36;46931:7;46903:27;:36::i;:::-;46872:67;;-1:-1:-1;46872:67:0;-1:-1:-1;46965:18:0;46958:3;:25;;;;;;;;;46950:93;;;;-1:-1:-1;;;;;46950:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51742:3644;51784:4;51801:35;;:::i;:::-;51951:17;;-1:-1:-1;;;;;51951:17:0;:31;51983:14;:12;:14::i;:::-;51999:12;;52013:13;;51951:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51951:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;51951:76:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51951:76:0;;;;;;;;51924:23;;51907:120;;;51908:14;;;51907:120;30238:4;-1:-1:-1;52046:48:0;52038:89;;;;;-1:-1:-1;;;;;52038:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;52142:14;;;;:19;52138:178;;52185:119;52196:31;52229:58;52289:4;:14;;;52185:10;:119::i;:::-;52178:126;;;;;52138:178;52403:16;:14;:16::i;:::-;52377:23;;;:42;;;52576:18;;52543:52;;52377:42;52543:7;:52::i;:::-;52524:15;;;52509:86;;;52510:4;52509:86;;;;;;;;;;;;;;;;;;;-1:-1:-1;52629:18:0;;-1:-1:-1;52613:12:0;;:34;;;;;;;;;52606:42;;;;53247:68;53257:40;;;;;;;;53272:4;:23;;;53257:40;;;53299:4;:15;;;53247:9;:68::i;:::-;53218:25;;;53203:112;;;53204:4;53203:112;;;;;;;;;;;;;;;;;;;-1:-1:-1;53346:18:0;;-1:-1:-1;53330:12:0;;:34;;;;;;;;;53326:193;;53388:119;53399:16;53417:69;53493:4;:12;;;53488:18;;;;;;;;53388:10;:119::i;53326:193::-;53574:58;53592:4;:25;;;53619:12;;53574:17;:58::i;:::-;53546:24;;;53531:101;;;53532:4;53531:101;;;;;;;;;;;;;;;;;;;-1:-1:-1;53663:18:0;;-1:-1:-1;53647:12:0;;:34;;;;;;;;;53643:191;;53705:117;53716:16;53734:67;53808:4;:12;;;53803:18;;;;;;;53643:191;53885:47;53893:4;:24;;;53919:12;;53885:7;:47::i;:::-;53861:20;;;53846:86;;;53847:4;53846:86;;;;;;;;;;;;;;;;;;;-1:-1:-1;53963:18:0;;-1:-1:-1;53947:12:0;;:34;;;;;;;;;53943:188;;54005:114;54016:16;54034:64;54105:4;:12;;;54100:18;;;;;;;53943:188;54183:105;54208:38;;;;;;;;54223:21;;54208:38;;;54248:4;:24;;;54274:13;;54183:24;:105::i;:::-;54158:21;;;54143:145;;;54144:4;54143:145;;;;;;;;;;;;;;;;;;;-1:-1:-1;54319:18:0;;-1:-1:-1;54303:12:0;;:34;;;;;;;;;54299:189;;54361:115;54372:16;54390:65;54462:4;:12;;;54457:18;;;;;;;54299:189;54538:77;54563:4;:25;;;54590:11;;54603;;54538:24;:77::i;:::-;54515:19;;;54500:115;;;54501:4;54500:115;;;;;;;;;;;;;;;;;;;-1:-1:-1;54646:18:0;;-1:-1:-1;54630:12:0;;:34;;;;;;;;;54626:187;;54688:113;54699:16;54717:63;54787:4;:12;;;54782:18;;;;;;;54626:187;55037:23;;;;;55016:18;:44;55085:19;;;;55071:11;:33;;;55130:20;;;;55115:12;:35;;;55177:21;;;;55161:13;:37;55278:24;;;;55263:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55363:14;55351:27;;;51742:3644;:::o;39489:185::-;39567:4;27689:18;;27706:1;27689:18;;;;39567:4;39591:51;39606:10;39618;39630:3;39635:6;39591:14;:51::i;:::-;:75;39584:82;;27765:1;27801:13;;27785:12;:29;27777:52;;;;;-1:-1:-1;;;;;27777:52:0;;;;;;;;;;;;-1:-1:-1;;;;;27777:52:0;;;;;;;;;;;;;;;39489:185;;;;;:::o;31419:23::-;;;;:::o;102658:208::-;102754:104;102769:62;102793:8;102803:9;102814:16;102769:23;:62::i;:::-;102754:104;;;;;;;;;;;;;;;;;:14;:104::i;44228:1498::-;44281:4;44532:25;44560:20;:18;:20::i;:::-;44630:17;;44532:48;;-1:-1:-1;44594:7:0;;;;-1:-1:-1;;;;;44630:17:0;:31;44662:14;:12;:14::i;:::-;44678:12;;44692:13;;44630:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44630:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44630:76:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44630:76:0;;;;;;;;;-1:-1:-1;44630:76:0;-1:-1:-1;44725:7:0;;44717:69;;;;-1:-1:-1;;;;;44717:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44815:12;44829:21;;:::i;:::-;44854:61;44864:37;;;;;;;;44879:20;44864:37;;;44903:11;;44854:9;:61::i;:::-;44814:101;;-1:-1:-1;44814:101:0;-1:-1:-1;44940:18:0;44934:2;:24;;;;;;;;;44926:86;;;;-1:-1:-1;;;;;44926:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45026:12;45040:21;;:::i;:::-;45065:40;45080:12;;45094:10;45065:14;:40::i;:::-;45025:80;;-1:-1:-1;45025:80:0;-1:-1:-1;45130:18:0;45124:2;:24;;;;;;;;;45116:86;;;;-1:-1:-1;;;;;45116:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45216:12;45230:32;;:::i;:::-;45266:76;45273:28;;;;;;;;13448:4;45273:28;;;45303:38;;;;;;;;45318:21;;45303:38;;;45266:6;:76::i;:::-;45215:127;;-1:-1:-1;45215:127:0;-1:-1:-1;45367:18:0;45361:2;:24;;;;;;;;;45353:97;;;;-1:-1:-1;;;;;45353:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45464:12;45478:21;;:::i;:::-;45503:79;45511:35;;;;;;;;45526:18;45511:35;;;45548:21;45571:10;45503:7;:79::i;:::-;45463:119;;-1:-1:-1;45463:119:0;-1:-1:-1;45607:18:0;45601:2;:24;;;;;;;;;45593:86;;;;-1:-1:-1;;;;;45593:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45699:19;;-1:-1:-1;;;;;;;;;;;44228:1498:0;:::o;84149:2121::-;84251:4;27689:18;;27706:1;27689:18;;;;84324:11;;:86;;;-1:-1:-1;;;;;84324:86:0;;84357:4;84324:86;;;;84364:10;84324:86;;;;-1:-1:-1;;;;;84324:86:0;;;;;;;;;;;;;;;;;;;;;;84251:4;;84324:11;;;;;:24;;:86;;;;;;;;;;;;;;;84251:4;84324:11;:86;;;5:2:-1;;;;30:1;27;20:12;5:2;84324:86:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;84324:86:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;84324:86:0;;-1:-1:-1;84425:12:0;;84421:151;;84461:99;84472:27;84501:49;84552:7;84461:10;:99::i;:::-;84454:106;;;;;84421:151;84645:10;-1:-1:-1;;;;;84633:22:0;:8;-1:-1:-1;;;;;84633:22:0;;84629:146;;;84679:84;84684:26;84712:50;84679:4;:84::i;84629:146::-;-1:-1:-1;;;;;85199:23:0;;84787:17;85199:23;;;:13;:23;;;;;;84787:17;;;;85191:45;;85224:11;85191:7;:45::i;:::-;85160:76;;-1:-1:-1;85160:76:0;-1:-1:-1;85262:18:0;85251:7;:29;;;;;;;;;85247:166;;85304:97;85315:16;85333:52;85392:7;85387:13;;;;;;;85304:97;85297:104;;;;;;;;85247:166;-1:-1:-1;;;;;85466:25:0;;;;;;:13;:25;;;;;;85458:47;;85493:11;85458:7;:47::i;:::-;85425:80;;-1:-1:-1;85425:80:0;-1:-1:-1;85531:18:0;85520:7;:29;;;;;;;;;85516:166;;85573:97;85584:16;85602:52;85661:7;85656:13;;;;;;;85516:166;-1:-1:-1;;;;;85885:23:0;;;;;;;:13;:23;;;;;;;;:43;;;85939:25;;;;;;;;;;:47;;;86041:43;;;;;;;85939:25;;-1:-1:-1;;;;;;;;;;;86041:43:0;;;;;;;;;;86137:11;;:85;;;-1:-1:-1;;;;;86137:85:0;;86169:4;86137:85;;;;86176:10;86137:85;;;;-1:-1:-1;;;;;86137:85:0;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:23;;:85;;;;;:11;;:85;;;;;;;:11;;:85;;;5:2:-1;;;;30:1;27;20:12;5:2;86137:85:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;86247:14:0;;-1:-1:-1;86242:20:0;;-1:-1:-1;;86242:20:0;;86235:27;;;;;;27801:13;;27785:12;:29;27777:52;;;;;-1:-1:-1;;;;;27777:52:0;;;;;;;;;;;;-1:-1:-1;;;;;27777:52:0;;;;;;;;;;;;;;86820:647;86965:5;;86897:4;;-1:-1:-1;;;;;86965:5:0;86951:10;:19;86947:126;;86994:67;86999:18;87019:41;86994:4;:67::i;86947:126::-;87172:12;;;-1:-1:-1;;;;;87255:30:0;;;-1:-1:-1;;;;;;87255:30:0;;;;;;;87370:49;;;87172:12;;;;87370:49;;;;;;;;;;;;;;;;;;;;;;;87444:14;87439:20;;48752:198;48812:4;27689:18;;27706:1;27689:18;;;;48812:4;48837:16;:14;:16::i;:::-;:40;48829:75;;;;;-1:-1:-1;;;;;48829:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;48922:20;:18;:20::i;:::-;48915:27;;27801:13;;27785:12;:29;27777:52;;;;;-1:-1:-1;;;;;27777:52:0;;;;;;;;;;;;-1:-1:-1;;;;;27777:52:0;;;;;;;;;;;;;;42579:703;-1:-1:-1;;;;;42703:22:0;;42647:4;42703:22;;;:13;:22;;;;;;42647:4;;;;;;;;;42854:36;42717:7;42854:27;:36::i;:::-;42830:60;-1:-1:-1;42830:60:0;-1:-1:-1;42913:18:0;42905:4;:26;;;;;;;;;42901:99;;42961:16;42956:22;42948:40;-1:-1:-1;42980:1:0;;-1:-1:-1;42980:1:0;;-1:-1:-1;42980:1:0;;-1:-1:-1;42948:40:0;;-1:-1:-1;;;;42948:40:0;42901:99;43043:28;:26;:28::i;:::-;43012:59;-1:-1:-1;43012:59:0;-1:-1:-1;43094:18:0;43086:4;:26;;;;;;;;;43082:99;;43142:16;43137:22;;43082:99;-1:-1:-1;43206:14:0;;-1:-1:-1;43223:13:0;;-1:-1:-1;43238:13:0;-1:-1:-1;43238:13:0;-1:-1:-1;42579:703:0;;;;;;:::o;101593:113::-;101646:4;101670:28;101685:12;101670:14;:28::i;100723:113::-;100776:4;100800:28;100815:12;100800:14;:28::i;41213:143::-;-1:-1:-1;;;;;41314:25:0;;;41287:7;41314:25;;;:18;:25;;;;;;;;:34;;;;;;;;;;;;;41213:143::o;102135:171::-;102208:90;102223:46;102249:8;102259:9;102223:25;:46::i;:::-;102208:90;;;;;;;;;;;;;;;;;:14;:90::i;:::-;102135:171;:::o;87745:742::-;87895:12;;87787:4;;-1:-1:-1;;;;;87895:12:0;87881:10;:26;;;:54;;-1:-1:-1;87911:10:0;:24;87881:54;87877:164;;;87959:70;87964:18;87984:44;87959:4;:70::i;:::-;87952:77;;;;87877:164;88125:5;;;88167:12;;;-1:-1:-1;;;;;88167:12:0;;;-1:-1:-1;;;;;;88240:20:0;;;;;;;;;88309:25;;;;;;88352;;;88125:5;;;88352:25;;;88371:5;;;;88352:25;;;;;;88167:12;;88352:25;;;;;;;;;88426:12;;88393:46;;;-1:-1:-1;;;;;88393:46:0;;;;;88426:12;;;88393:46;;;;;;;;;;;;;;;;88464:14;88452:27;;;;87745:742;:::o;95182:633::-;95269:4;95286:10;95299:16;:14;:16::i;:::-;95286:29;-1:-1:-1;95330:29:0;;95326:298;;95534:78;95545:5;95539:12;;;;;;;;95553:58;95534:4;:78::i;:::-;95527:85;;;;;95326:298;95759:48;95786:20;95759:26;:48::i;30847:42::-;;;-1:-1:-1;;;;;30847:42:0;;:::o;30469:28::-;;;-1:-1:-1;;;;;30469:28:0;;:::o;43710:342::-;43824:17;;43763:4;;;;;;-1:-1:-1;;;;;43824:17:0;:31;43856:14;:12;:14::i;:::-;43872:12;;43886:13;;43824:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43824:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43824:76:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43824:76:0;;;;;;;;;-1:-1:-1;43824:76:0;-1:-1:-1;43919:14:0;;43911:82;;;;-1:-1:-1;;;;;43911:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89750:607;89839:4;27689:18;;27706:1;27689:18;;;;89839:4;89869:16;:14;:16::i;:::-;89856:29;-1:-1:-1;89900:29:0;;89896:286;;90097:73;90108:5;90102:12;;;;;;;;90116:53;90097:4;:73::i;89896:286::-;90301:48;90324:24;90301:22;:48::i;29767:36::-;29799:4;29767:36;:::o;10195:153::-;10256:4;10278:33;10291:3;10286:9;;;;;;;;10302:4;10297:10;;;;;;;;10278:33;;;;;;;;;;;;;10309:1;10278:33;;;;;;;;;;;;;10336:3;10331:9;;;;;;;56918:3639;57060:11;;:58;;;-1:-1:-1;;;;;57060:58:0;;57092:4;57060:58;;;;-1:-1:-1;;;;;57060:58:0;;;;;;;;;;;;;;;56988:4;;;;57060:11;;:23;;:58;;;;;;;;;;;;;;56988:4;57060:11;:58;;;5:2:-1;;;;30:1;27;20:12;5:2;57060:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;57060:58:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;57060:58:0;;-1:-1:-1;57133:12:0;;57129:140;;57169:88;57180:27;57209:38;57249:7;57169:10;:88::i;:::-;57162:95;;;;;57129:140;57379:16;:14;:16::i;:::-;57357:18;;:38;57353:140;;57419:62;57424:22;57448:32;57419:4;:62::i;57353:140::-;57505:25;;:::i;:::-;57599:35;57615:6;57623:10;57599:15;:35::i;:::-;57588:4;;:46;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57661:14:0;57649:8;;:26;;;;;;;;;57645:123;;57704:8;;57699:57;;57714:41;57699:4;:57::i;:::-;57692:64;;;;;;57645:123;57996:28;:26;:28::i;:::-;57967:25;;;57952:72;;;57953:12;;;57952:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;58055:18:0;;-1:-1:-1;58039:4:0;:12;;;:34;;;;;;;;;58035:166;;58097:92;58108:16;58126:42;58175:4;:12;;;58170:18;;;;;;;58035:166;58247:78;58270:10;58282:42;;;;;;;;58297:4;:25;;;58282:42;;;58247:22;:78::i;:::-;58228:15;;;58213:112;;;58214:12;;;58213:112;;;;;;;;;;;;;;;;;;;-1:-1:-1;58356:18:0;;-1:-1:-1;58340:4:0;:12;;;:34;;;;;;;;;58336:168;;58398:94;58409:16;58427:44;58478:4;:12;;;58473:18;;;;;;;58336:168;58807:37;58815:11;;58828:4;:15;;;58807:7;:37::i;:::-;58784:19;;;58769:75;;;58770:12;;;58769:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;58875:18:0;;-1:-1:-1;58859:4:0;:12;;;:34;;;;;;;;;58855:176;;58917:102;58928:16;58946:52;59005:4;:12;;;59000:18;;;;;;;58855:176;-1:-1:-1;;;;;59091:21:0;;;;;;:13;:21;;;;;;59114:15;;;;59083:47;;59091:21;59083:7;:47::i;:::-;59058:21;;;59043:87;;;59044:12;;;59043:87;;;;;;;;;;;;;;;;;;;-1:-1:-1;59161:18:0;;-1:-1:-1;59145:4:0;:12;;;:34;;;;;;;;;59141:179;;59203:105;59214:16;59232:55;59294:4;:12;;;59289:18;;;;;;;59141:179;59874:32;59887:6;59895:10;59874:12;:32::i;:::-;59863:4;;:43;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59933:14:0;59921:8;;:26;;;;;;;;;59917:117;;59976:8;;59971:51;;59986:35;59971:4;:51::i;59917:117::-;60126:19;;;;60112:11;:33;60180:21;;;;-1:-1:-1;;;;;60156:21:0;;;;;;:13;:21;;;;;;;;;:45;;;;60302:15;;;;;60277:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60366:15;;;;60334:48;;;;;;;-1:-1:-1;;;;;60334:48:0;;;60351:4;;-1:-1:-1;;;;;;;;;;;60334:48:0;;;;;;;;60435:11;;60493:15;;;;60435:74;;;-1:-1:-1;;;;;60435:74:0;;60466:4;60435:74;;;;-1:-1:-1;;;;;60435:74:0;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:22;;:74;;;;;:11;;:74;;;;;;;:11;;:74;;;5:2:-1;;;;30:1;27;20:12;5:2;60435:74:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;60534:14:0;;-1:-1:-1;60529:20:0;;-1:-1:-1;;60529:20:0;;60522:27;56918:3639;-1:-1:-1;;;;;56918:3639:0:o;49725:1142::-;49786:9;49797:4;49818:11;;49833:1;49818:16;49814:1046;;;-1:-1:-1;;50011:27:0;;49991:18;;49983:56;;49814:1046;50221:14;50238;:12;:14::i;:::-;50221:31;;50267:33;50315:23;;:::i;:::-;50353:17;50429:54;50444:9;50455:12;;50469:13;;50429:14;:54::i;:::-;50387:96;-1:-1:-1;50387:96:0;-1:-1:-1;50513:18:0;50502:7;:29;;;;;;;;;50498:89;;50560:7;-1:-1:-1;50569:1:0;;-1:-1:-1;50552:19:0;;-1:-1:-1;;;50552:19:0;50498:89;50629:49;50636:28;50666:11;;50629:6;:49::i;:::-;50603:75;-1:-1:-1;50603:75:0;-1:-1:-1;50708:18:0;50697:7;:29;;;;;;;;;50693:89;;50755:7;-1:-1:-1;50764:1:0;;-1:-1:-1;50747:19:0;;-1:-1:-1;;;50747:19:0;50693:89;-1:-1:-1;50826:21:0;50806:18;;-1:-1:-1;50826:21:0;-1:-1:-1;50798:50:0;;-1:-1:-1;;50798:50:0;49814:1046;49725:1142;;:::o;36929:2299::-;37103:11;;:60;;;-1:-1:-1;;;;;37103:60:0;;37139:4;37103:60;;;;-1:-1:-1;;;;;37103:60:0;;;;;;;;;;;;;;;;;;;;;;37027:4;;;;37103:11;;:27;;:60;;;;;;;;;;;;;;37027:4;37103:11;:60;;;5:2:-1;;;;30:1;27;20:12;5:2;37103:60:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37103:60:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37103:60:0;;-1:-1:-1;37178:12:0;;37174:144;;37214:92;37225:27;37254:42;37298:7;37214:10;:92::i;:::-;37207:99;;;;;37174:144;37384:3;-1:-1:-1;;;;;37377:10:0;:3;-1:-1:-1;;;;;37377:10:0;;37373:105;;;37411:55;37416:15;37433:32;37411:4;:55::i;37373:105::-;37555:22;-1:-1:-1;;;;;37596:14:0;;;;;;;37592:160;;;-1:-1:-1;;;37592:160:0;;;-1:-1:-1;;;;;;37708:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;;37592:160;37830:17;37858;37886;37914;37970:34;37978:17;37997:6;37970:7;:34::i;:::-;37944:60;;-1:-1:-1;37944:60:0;-1:-1:-1;38030:18:0;38019:7;:29;;;;;;;;;38015:125;;38072:56;38077:16;38095:32;38072:4;:56::i;:::-;38065:63;;;;;;;;;;38015:125;-1:-1:-1;;;;;38186:18:0;;;;;;:13;:18;;;;;;38178:35;;38206:6;38178:7;:35::i;:::-;38152:61;;-1:-1:-1;38152:61:0;-1:-1:-1;38239:18:0;38228:7;:29;;;;;;;;;38224:124;;38281:55;38286:16;38304:31;38281:4;:55::i;38224:124::-;-1:-1:-1;;;;;38394:18:0;;;;;;:13;:18;;;;;;38386:35;;38414:6;38386:7;:35::i;:::-;38360:61;;-1:-1:-1;38360:61:0;-1:-1:-1;38447:18:0;38436:7;:29;;;;;;;;;38432:122;;38489:53;38494:16;38512:29;38489:4;:53::i;38432:122::-;-1:-1:-1;;;;;38687:18:0;;;;;;;:13;:18;;;;;;:33;;;38731:18;;;;;;:33;;;-1:-1:-1;;38837:29:0;;38833:109;;-1:-1:-1;;;;;38883:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;:47;;;38833:109;39013:3;-1:-1:-1;;;;;38999:26:0;39008:3;-1:-1:-1;;;;;38999:26:0;-1:-1:-1;;;;;;;;;;;39018:6:0;38999:26;;;;;;;;;;;;;;;;;;39121:11;;:59;;;-1:-1:-1;;;;;39121:59:0;;39156:4;39121:59;;;;-1:-1:-1;;;;;39121:59:0;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:26;;:59;;;;;:11;;:59;;;;;;;:11;;:59;;;5:2:-1;;;;30:1;27;20:12;5:2;39121:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;39205:14:0;;-1:-1:-1;39200:20:0;;-1:-1:-1;;39200:20:0;;39193:27;;;;;;;;36929:2299;;;;;;;:::o;15509:313::-;15586:9;15597:4;15615:13;15630:18;;:::i;:::-;15652:20;15662:1;15665:6;15652:9;:20::i;:::-;15614:58;;-1:-1:-1;15614:58:0;-1:-1:-1;15694:18:0;15687:3;:25;;;;;;;;;15683:73;;-1:-1:-1;15737:3:0;-1:-1:-1;15742:1:0;;-1:-1:-1;15729:15:0;;15683:73;15776:18;15796:17;15805:7;15796:8;:17::i;:::-;15768:46;;;;;;15509:313;;;;;;:::o;103307:231::-;103354:4;;;103411:41;103427:4;103419:21;103442:9;103411:7;:41::i;:::-;103371:81;;-1:-1:-1;103371:81:0;-1:-1:-1;103478:18:0;103471:3;:25;;;;;;;;;103463:34;;;;;72538:561;72616:4;27689:18;;27706:1;27689:18;;;;72616:4;72646:16;:14;:16::i;:::-;72633:29;-1:-1:-1;72677:29:0;;72673:255;;72849:67;72860:5;72854:12;;;;;;;;72868:47;72849:4;:67::i;72673:255::-;73038:53;73055:10;73067;73079:11;73038:16;:53::i;92752:2061::-;92983:5;;92819:4;;;;;;-1:-1:-1;;;;;92983:5:0;92969:10;:19;92965:124;;93012:65;93017:18;93037:39;93012:4;:65::i;:::-;93005:72;;;;;;92965:124;93215:16;:14;:16::i;:::-;93193:18;;:38;93189:200;;93308:69;93313:22;93337:39;93308:4;:69::i;93189:200::-;93495:12;93478:14;:12;:14::i;:::-;:29;93474:152;;;93531:83;93536:29;93567:46;93531:4;:83::i;93474:152::-;93875:13;;93860:12;:28;93856:129;;;93912:61;93917:15;93934:38;93912:4;:61::i;93856:129::-;-1:-1:-1;94137:13:0;;:28;;;;94273:33;;;94265:82;;;;-1:-1:-1;;;;;94265:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94421:13;:32;;;94540:5;;94526:34;;-1:-1:-1;;;;;94540:5:0;94547:12;94526:13;:34::i;:::-;94520:40;-1:-1:-1;94639:14:0;94632:3;:21;;;;;;;;;94624:69;;;;-1:-1:-1;;;;;94624:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94727:5;;94711:54;;;-1:-1:-1;;;;;94727:5:0;;;94711:54;;;;;;;;;;;;;;;;;;;;;;;;94790:14;94778:27;92752:2061;-1:-1:-1;;;;92752:2061:0:o;61791:537::-;61875:4;27689:18;;27706:1;27689:18;;;;61875:4;61905:16;:14;:16::i;:::-;61892:29;-1:-1:-1;61936:29:0;;61932:249;;62108:61;62119:5;62113:12;;;;;;;;62127:41;62108:4;:61::i;61932:249::-;62280:40;62292:10;62304:1;62307:12;62280:11;:40::i;47329:1268::-;-1:-1:-1;;;;;47678:23:0;;47406:9;47678:23;;;:14;:23;;;;;47907:24;;47406:9;;;;;;;;47903:92;;-1:-1:-1;47961:18:0;;-1:-1:-1;47961:18:0;;-1:-1:-1;47953:30:0;;-1:-1:-1;;;47953:30:0;47903:92;48222:46;48230:14;:24;;;48256:11;;48222:7;:46::i;:::-;48189:79;;-1:-1:-1;48189:79:0;-1:-1:-1;48294:18:0;48283:7;:29;;;;;;;;;48279:81;;-1:-1:-1;48337:7:0;;-1:-1:-1;48346:1:0;;-1:-1:-1;48329:19:0;;-1:-1:-1;;48329:19:0;48279:81;48392:58;48400:19;48421:14;:28;;;48392:7;:58::i;:::-;48372:78;;-1:-1:-1;48372:78:0;-1:-1:-1;48476:18:0;48465:7;:29;;;;;;;;;48461:81;;-1:-1:-1;48519:7:0;;-1:-1:-1;48528:1:0;;-1:-1:-1;48511:19:0;;-1:-1:-1;;48511:19:0;48461:81;-1:-1:-1;48562:18:0;;-1:-1:-1;48582:6:0;-1:-1:-1;;;47329:1268:0;;;;:::o;10471:187::-;10556:4;10578:43;10591:3;10586:9;;;;;;;;10602:4;10597:10;;;;;;;;10578:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;10646:3;10641:9;;;;;;;43441:93;43514:12;43441:93;:::o;12056:236::-;12112:9;12123:4;12149:1;12144;:6;12140:145;;-1:-1:-1;12175:18:0;;-1:-1:-1;12195:5:0;;;12167:34;;12140:145;-1:-1:-1;12242:27:0;;-1:-1:-1;12271:1:0;12234:39;;15043:353;15112:9;15123:10;;:::i;:::-;15147:14;15163:19;15186:27;15194:1;:10;;;15206:6;15186:7;:27::i;:::-;15146:67;;-1:-1:-1;15146:67:0;-1:-1:-1;15236:18:0;15228:4;:26;;;;;;;;;15224:92;;-1:-1:-1;15285:18:0;;;;;;;;;-1:-1:-1;15285:18:0;;15279:4;;-1:-1:-1;15285:18:0;-1:-1:-1;15271:33:0;;15224:92;15356:31;;;;;;;;;;;;-1:-1:-1;;15356:31:0;;-1:-1:-1;15043:353:0;-1:-1:-1;;;;15043:353:0:o;12377:258::-;12433:9;;12470:5;;;12492:6;;;12488:140;;12523:18;;-1:-1:-1;12543:1:0;-1:-1:-1;12515:30:0;;12488:140;-1:-1:-1;12586:26:0;;-1:-1:-1;12614:1:0;;-1:-1:-1;12578:38:0;;15967:328;16064:9;16075:4;16093:13;16108:18;;:::i;:::-;16130:20;16140:1;16143:6;16130:9;:20::i;:::-;16092:58;;-1:-1:-1;16092:58:0;-1:-1:-1;16172:18:0;16165:3;:25;;;;;;;;;16161:73;;-1:-1:-1;16215:3:0;-1:-1:-1;16220:1:0;;-1:-1:-1;16207:15:0;;16161:73;16253:34;16261:17;16270:7;16261:8;:17::i;:::-;16280:6;16253:7;:34::i;:::-;16246:41;;;;;;15967:328;;;;;;;:::o;78869:969::-;78994:4;27689:18;;27706:1;27689:18;;;;78994:4;79024:16;:14;:16::i;:::-;79011:29;-1:-1:-1;79055:29:0;;79051:264;;79232:71;79243:5;79237:12;;;;;;;;79251:51;79232:4;:71::i;79051:264::-;79335:16;-1:-1:-1;;;;;79335:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;79335:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;79335:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;79335:33:0;;-1:-1:-1;79383:29:0;;79379:268;;79560:75;79571:5;79565:12;;;;;;;;79579:55;79560:4;:75::i;79379:268::-;79757:73;79778:10;79790:8;79800:11;79813:16;79757:20;:73::i;:::-;79750:80;;;27801:13;;27785:12;:29;27777:52;;;;;-1:-1:-1;;;;;27777:52:0;;;;;;;;;;;;-1:-1:-1;;;;;27777:52:0;;;;;;;;;;;;;;16826:620;16906:9;16917:10;;:::i;:::-;17224:14;17240;17258:25;13448:4;17276:6;17258:7;:25::i;:::-;17223:60;;-1:-1:-1;17223:60:0;-1:-1:-1;17306:18:0;17298:4;:26;;;;;;;;;17294:92;;-1:-1:-1;17355:18:0;;;;;;;;;-1:-1:-1;17355:18:0;;17349:4;;-1:-1:-1;17355:18:0;-1:-1:-1;17341:33:0;;17294:92;17403:35;17410:9;17421:7;:16;;;17403:6;:35::i;14729:225::-;14796:9;14807:10;;:::i;:::-;14831:15;14848:11;14863:31;14871:1;:10;;;14883:1;:10;;;14863:7;:31::i;:::-;14922:23;;;;;;;;;;;;14830:64;;14922:23;;-1:-1:-1;14729:225:0;-1:-1:-1;;;;;14729:225:0:o;19495:284::-;19577:9;19588:10;;:::i;:::-;19612:13;19627;;:::i;:::-;19644:12;19651:1;19654;19644:6;:12::i;:::-;19611:45;;-1:-1:-1;19611:45:0;-1:-1:-1;19678:18:0;19671:3;:25;;;;;;;;;19667:74;;19721:3;;-1:-1:-1;19726:2:0;-1:-1:-1;19713:16:0;;19667:74;19758:13;19765:2;19769:1;19758:6;:13::i;68191:524::-;68265:4;27689:18;;27706:1;27689:18;;;;68265:4;68295:16;:14;:16::i;:::-;68282:29;-1:-1:-1;68326:29:0;;68322:249;;68498:61;68509:5;68503:12;;;;;;;;68517:41;68498:4;:61::i;68322:249::-;68670:37;68682:10;68694:12;68670:11;:37::i;60908:527::-;60982:4;27689:18;;27706:1;27689:18;;;;60982:4;61012:16;:14;:16::i;:::-;60999:29;-1:-1:-1;61043:29:0;;61039:249;;61215:61;61226:5;61220:12;;;;;;;61039:249;61387:40;61399:10;61411:12;61425:1;61387:11;:40::i;73387:583::-;73489:4;27689:18;;27706:1;27689:18;;;;73489:4;73519:16;:14;:16::i;:::-;73506:29;-1:-1:-1;73550:29:0;;73546:255;;73722:67;73733:5;73727:12;;;;;;;;73741:47;73722:4;:67::i;:::-;73715:74;;;;;73546:255;73911:51;73928:10;73940:8;73950:11;73911:16;:51::i;:::-;73904:58;;;27801:13;;27785:12;:29;27777:52;;;;;-1:-1:-1;;;;;27777:52:0;;;;;;;;;;;;-1:-1:-1;;;;;27777:52:0;;;;;;;;;;;;;;96145:1352;96445:5;;96239:4;;;;-1:-1:-1;;;;;96445:5:0;96431:10;:19;96427:132;;96474:73;96479:18;96499:47;96474:4;:73::i;96427:132::-;96685:16;:14;:16::i;:::-;96663:18;;:38;96659:208;;96778:77;96783:22;96807:47;96778:4;:77::i;96659:208::-;96961:17;;;;;;;;;-1:-1:-1;;;;;96961:17:0;96938:40;;97081:20;-1:-1:-1;;;;;97081:40:0;;:42;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;97081:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;97081:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;97081:42:0;97073:83;;;;;-1:-1:-1;;;;;97073:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;97233:17;:40;;-1:-1:-1;;;;;;97233:40:0;-1:-1:-1;;;;;97233:40:0;;;;;;;;;97379:70;;;;;;;;;;;;;;;;;;;;;;;;;;;97474:14;97469:20;;90625:1026;90775:5;;90706:4;;-1:-1:-1;;;;;90775:5:0;90761:10;:19;90757:127;;90804:68;90809:18;90829:42;90804:4;:68::i;90757:127::-;90991:16;:14;:16::i;:::-;90969:18;;:38;90965:203;;91084:72;91089:22;91113:42;91084:4;:72::i;90965:203::-;30390:4;91240:24;:51;91236:157;;;91315:66;91320:15;91337:43;91315:4;:66::i;91236:157::-;91437:21;;;91469:48;;;;91535:68;;;;;;;;;;;;;;;;;;;;;;;;;91628:14;91623:20;;103822:262;103897:5;103949:10;-1:-1:-1;;;;;103949:18:0;;;103941:46;;;;;-1:-1:-1;;;;;103941:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;104019:6;104006:9;:19;103998:46;;;;;-1:-1:-1;;;;;103998:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;104062:14:0;103822:262;;;;:::o;17557:337::-;17645:9;17656:4;17674:13;17689:19;;:::i;:::-;17712:31;17727:6;17735:7;17712:14;:31::i;12704:271::-;12775:9;12786:4;12804:14;12820:8;12832:13;12840:1;12843;12832:7;:13::i;:::-;12803:42;;-1:-1:-1;12803:42:0;-1:-1:-1;12870:18:0;12862:4;:26;;;;;;;;;12858:75;;-1:-1:-1;12913:4:0;-1:-1:-1;12919:1:0;;-1:-1:-1;12905:16:0;;12858:75;12952:15;12960:3;12965:1;12952:7;:15::i;13802:515::-;13863:9;13874:10;;:::i;:::-;13898:14;13914:20;13938:22;13946:3;13448:4;13938:7;:22::i;:::-;13897:63;;-1:-1:-1;13897:63:0;-1:-1:-1;13983:18:0;13975:4;:26;;;;;;;;;13971:92;;-1:-1:-1;14032:18:0;;;;;;;;;-1:-1:-1;14032:18:0;;14026:4;;-1:-1:-1;14032:18:0;-1:-1:-1;14018:33:0;;13971:92;14076:14;14092:13;14109:31;14117:15;14134:5;14109:7;:31::i;:::-;14075:65;;-1:-1:-1;14075:65:0;-1:-1:-1;14163:18:0;14155:4;:26;;;;;;;;;14151:92;;-1:-1:-1;14212:18:0;;;;;;;;;-1:-1:-1;14212:18:0;;14206:4;;-1:-1:-1;14212:18:0;-1:-1:-1;14198:33:0;;-1:-1:-1;;14198:33:0;14151:92;14283:25;;;;;;;;;;;;-1:-1:-1;;14283:25:0;;-1:-1:-1;13802:515:0;-1:-1:-1;;;;;;13802:515:0:o;20322:213::-;20504:12;13448:4;20504:23;;;20322:213::o;74597:3790::-;74771:11;;:75;;;-1:-1:-1;;;;;74771:75:0;;74810:4;74771:75;;;;-1:-1:-1;;;;;74771:75:0;;;;;;;;;;;;;;;;;;;;;;74692:4;;;;74771:11;;:30;;:75;;;;;;;;;;;;;;74692:4;74771:11;:75;;;5:2:-1;;;;30:1;27;20:12;5:2;74771:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;74771:75:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;74771:75:0;;-1:-1:-1;74861:12:0;;74857:148;;74897:96;74908:27;74937:46;74985:7;74897:10;:96::i;:::-;74890:103;;;;;74857:148;75115:16;:14;:16::i;:::-;75093:18;;:38;75089:148;;75155:70;75160:22;75184:40;75155:4;:70::i;75089:148::-;75249:32;;:::i;:::-;-1:-1:-1;;;;;75395:24:0;;;;;;:14;:24;;;;;:38;;;75374:18;;;:59;75564:37;75410:8;75564:27;:37::i;:::-;75541:19;;;75526:75;;;75527:12;;;75526:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;75632:18:0;;-1:-1:-1;75616:4:0;:12;;;:34;;;;;;;;;75612:187;;75674:113;75685:16;75703:63;75773:4;:12;;;75768:18;;;;;;;75674:113;75667:120;;;;;;75612:187;-1:-1:-1;;75881:11:0;:23;75877:157;;;75940:19;;;;75921:16;;;:38;75877:157;;;75992:16;;;:30;;;75877:157;76102:40;76118:5;76125:4;:16;;;76102:15;:40::i;:::-;76091:4;;:51;;;;;;;;;;;;;;;;;;;;-1:-1:-1;76169:14:0;76157:8;;:26;;;;;;;;;76153:131;;76212:8;;76207:65;;76222:49;76207:4;:65::i;76153:131::-;76573:46;76581:4;:19;;;76602:4;:16;;;76573:7;:46::i;:::-;76547:22;;;76532:87;;;76533:12;;;76532:87;;;;;;;;;;;;;;;;;;;-1:-1:-1;76650:18:0;;-1:-1:-1;76634:4:0;:12;;;:34;;;;;;;;;76630:194;;76692:120;76703:16;76721:70;76798:4;:12;;;76793:18;;;;;;;76630:194;76875:39;76883:12;;76897:4;:16;;;76875:7;:39::i;:::-;76851:20;;;76836:78;;;76837:12;;;76836:78;;;;;;;;;;;;;;;;;;;-1:-1:-1;76945:18:0;;-1:-1:-1;76929:4:0;:12;;;:34;;;;;;;;;76925:185;;76987:111;76998:16;77016:61;77084:4;:12;;;77079:18;;;;;;;76925:185;77665:37;77678:5;77685:4;:16;;;77665:12;:37::i;:::-;77654:4;;:48;;;;;;;;;;;;;;;;;;;;-1:-1:-1;77733:14:0;77721:8;;:26;;;;;;;;;77713:70;;;;;-1:-1:-1;;;;;77713:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;77903:22;;;;;;-1:-1:-1;;;;;77866:24:0;;;;;;;:14;:24;;;;;;;;;:59;;;77977:11;;77936:38;;;;:52;;;;78014:20;;;;77999:12;:35;;;78124:16;;;;78142:22;;78095:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78240:11;;78302:16;;;;;78320:18;;;;78240:99;;-1:-1:-1;;;;;78240:99:0;;78278:4;78240:99;;;;-1:-1:-1;;;;;78240:99:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:11;;;:29;;:99;;;;;:11;;:99;;;;;;;;:11;;:99;;;5:2:-1;;;;30:1;27;20:12;5:2;78240:99:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;78364:14:0;;-1:-1:-1;78359:20:0;;-1:-1:-1;;78359:20:0;;78352:27;74597:3790;-1:-1:-1;;;;;;74597:3790:0:o;104556:221::-;104718:19;;104630:5;;-1:-1:-1;;;;;104718:11:0;;;:19;;;;;104730:6;;104630:5;104718:19;104630:5;104718:19;104730:6;104718:11;:19;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;104755:14:0;;104556:221;-1:-1:-1;;;104556:221:0:o;63191:4732::-;63298:4;63323:19;;;:42;;-1:-1:-1;63346:19:0;;63323:42;63315:107;;;;-1:-1:-1;;;;;63315:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63435:27;;:::i;:::-;63579:28;:26;:28::i;:::-;63550:25;;;63535:72;;;63536:12;;;63535:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;63638:18:0;;-1:-1:-1;63622:4:0;:12;;;:34;;;;;;;;;63618:168;;63680:94;63691:16;63709:44;63760:4;:12;;;63755:18;;;;;;;63618:168;63840:18;;63836:1290;;64116:17;;;:34;;;64221:42;;;;;;;;64236:25;;;;64221:42;;64203:77;;64136:14;64203:17;:77::i;:::-;64182:17;;;64167:113;;;64168:12;;;64167:113;;;;;;;;;;;;;;;;;;;-1:-1:-1;64315:18:0;;-1:-1:-1;64299:4:0;:12;;;:34;;;;;;;;;64295:185;;64361:103;64372:16;64390:53;64450:4;:12;;;64445:18;;;;;;;64295:185;63836:1290;;;64782:82;64805:14;64821:42;;;;;;;;64836:4;:25;;;64821:42;;;64782:22;:82::i;:::-;64761:17;;;64746:118;;;64747:12;;;64746:118;;;;;;;;;;;;;;;;;;;-1:-1:-1;64899:18:0;;-1:-1:-1;64883:4:0;:12;;;:34;;;;;;;;;64879:185;;64945:103;64956:16;64974:53;65034:4;:12;;;65029:18;;;;;;;64879:185;65080:17;;;:34;;;63836:1290;65195:11;;65246:17;;;;65195:69;;;-1:-1:-1;;;;;65195:69:0;;65229:4;65195:69;;;;-1:-1:-1;;;;;65195:69:0;;;;;;;;;;;;;;;;65180:12;;65195:11;;;;;:25;;:69;;;;;;;;;;;;;;;65180:12;65195:11;:69;;;5:2:-1;;;;30:1;27;20:12;5:2;65195:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;65195:69:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;65195:69:0;;-1:-1:-1;65279:12:0;;65275:142;;65315:90;65326:27;65355:40;65397:7;65315:10;:90::i;65275:142::-;65527:16;:14;:16::i;:::-;65505:18;;:38;65501:142;;65567:64;65572:22;65596:34;65567:4;:64::i;65501:142::-;65938:39;65946:11;;65959:4;:17;;;65938:7;:39::i;:::-;65915:19;;;65900:77;;;65901:12;;;65900:77;;;;;;;;;;;;;;;;;;;-1:-1:-1;66008:18:0;;-1:-1:-1;65992:4:0;:12;;;:34;;;;;;;;;65988:178;;66050:104;66061:16;66079:54;66140:4;:12;;;66135:18;;;;;;;65988:178;-1:-1:-1;;;;;66226:23:0;;;;;;:13;:23;;;;;;66251:17;;;;66218:51;;66226:23;66218:7;:51::i;:::-;66193:21;;;66178:91;;;66179:12;;;66178:91;;;;;;;;;;;;;;;;;;;-1:-1:-1;66300:18:0;;-1:-1:-1;66284:4:0;:12;;;:34;;;;;;;;;66280:181;;66342:107;66353:16;66371:57;66435:4;:12;;;66430:18;;;;;;;66280:181;66559:4;:17;;;66542:14;:12;:14::i;:::-;:34;66538:155;;;66600:81;66605:29;66636:44;66600:4;:81::i;66538:155::-;67247:42;67261:8;67271:4;:17;;;67247:13;:42::i;:::-;67236:4;;:53;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67320:14:0;67308:8;;:26;;;;;;;;;67300:65;;;;;-1:-1:-1;;;;;67300:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;67458:19;;;;67444:11;:33;67514:21;;;;-1:-1:-1;;;;;67488:23:0;;;;;;:13;:23;;;;;;;;;:47;;;;67647:17;;;;67613:52;;;;;;;67640:4;;-1:-1:-1;;;;;;;;;;;67613:52:0;;;;;;;67698:17;;;;67717;;;;;67681:54;;;-1:-1:-1;;;;;67681:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67788:11;;67838:17;;;;67857;;;;67788:87;;;-1:-1:-1;;;;;67788:87:0;;67821:4;67788:87;;;;-1:-1:-1;;;;;67788:87:0;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:24;;:87;;;;;:11;;:87;;;;;;;:11;;:87;;;5:2:-1;;;;30:1;27;20:12;11268:343:0;11324:9;;11356:6;11352:69;;-1:-1:-1;11387:18:0;;-1:-1:-1;11387:18:0;11379:30;;11352:69;11442:5;;;11446:1;11442;:5;:1;11464:5;;;;;:10;11460:144;;-1:-1:-1;11499:26:0;;-1:-1:-1;11527:1:0;;-1:-1:-1;11491:38:0;;11460:144;11570:18;;-1:-1:-1;11590:1:0;-1:-1:-1;11562:30:0;;11706:215;11762:9;;11794:6;11790:77;;-1:-1:-1;11825:26:0;;-1:-1:-1;11853:1:0;11817:38;;11790:77;11887:18;11911:1;11907;:5;;;;;;11879:34;;;;11706:215;;;;;:::o;80405:3183::-;80611:11;;:111;;;-1:-1:-1;;;;;80611:111:0;;80654:4;80611:111;;;;-1:-1:-1;;;;;80611:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80534:4;;;;80611:11;;:34;;:111;;;;;;;;;;;;;;80534:4;80611:11;:111;;;5:2:-1;;;;30:1;27;20:12;5:2;80611:111:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;80611:111:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;80611:111:0;;-1:-1:-1;80737:12:0;;80733:145;;80773:93;80784:27;80813:43;80858:7;80773:10;:93::i;80733:145::-;80988:16;:14;:16::i;:::-;80966:18;;:38;80962:145;;81028:67;81033:22;81057:37;81028:4;:67::i;80962:145::-;81253:16;:14;:16::i;:::-;81212;-1:-1:-1;;;;;81212:35:0;;:37;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;81212:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;81212:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;81212:37:0;:57;81208:175;;81293:78;81298:22;81322:48;81293:4;:78::i;81208:175::-;81456:10;-1:-1:-1;;;;;81444:22:0;:8;-1:-1:-1;;;;;81444:22:0;;81440:140;;;81490:78;81495:26;81523:44;81490:4;:78::i;81440:140::-;81635:16;81631:142;;81675:86;81680:36;81718:42;81675:4;:86::i;81631:142::-;-1:-1:-1;;81829:11:0;:23;81825:153;;;81876:90;81881:36;81919:46;81876:4;:90::i;81825:153::-;82114:11;;:96;;;-1:-1:-1;;;;;82114:96:0;;82164:4;82114:96;;;;-1:-1:-1;;;;;82114:96:0;;;;;;;;;;;;;;;82071:21;;;;82114:11;;;:41;;:96;;;;;;;;;;;;:11;:96;;;5:2:-1;;;;30:1;27;20:12;5:2;82114:96:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;82114:96:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;82114:96:0;;;;;;;;;-1:-1:-1;82114:96:0;-1:-1:-1;82225:21:0;;82221:191;;82270:130;82281:35;82318:63;82383:16;82270:10;:130::i;:::-;82263:137;;;;;;;82221:191;82513:16;-1:-1:-1;;;;;82513:26:0;;82540:8;82513:36;;;;;;;;;;;;;-1:-1:-1;;;;;82513:36:0;-1:-1:-1;;;;;82513:36:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;82513:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;82513:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;82513:36:0;82499:50;;82495:166;;;82573:76;82578:32;82612:36;82573:4;:76::i;82495:166::-;82714:21;82738:51;82755:10;82767:8;82777:11;82738:16;:51::i;:::-;82714:75;-1:-1:-1;82804:40:0;;82800:158;;82868:78;82879:16;82873:23;;;;;;;;82898:47;82868:4;:78::i;:::-;82861:85;;;;;;;;82800:158;83074:57;;;-1:-1:-1;;;;;83074:57:0;;-1:-1:-1;;;;;83074:57:0;;;;;;;;;;;;;;;;;;;;;;83056:15;;83074:22;;;;;:57;;;;;;;;;;;;;;83056:15;83074:22;:57;;;5:2:-1;;;;30:1;27;20:12;5:2;83074:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;83074:57:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;83074:57:0;;-1:-1:-1;83150:34:0;;83142:67;;;;;-1:-1:-1;;;;;83142:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;83274:90;;;-1:-1:-1;;;;;83274:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83417:11;;:123;;;-1:-1:-1;;;;;83417:123:0;;83459:4;83417:123;;;;-1:-1:-1;;;;;83417:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:33;;:123;;;;;:11;;:123;;;;;;;:11;;:123;;;5:2:-1;;;;30:1;27;20:12;5:2;83417:123:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;83565:14:0;;-1:-1:-1;83560:20:0;;-1:-1:-1;;83560:20:0;;83553:27;80405:3183;-1:-1:-1;;;;;;;;;;80405:3183:0:o;17991:1136::-;18058:9;18069:10;;:::i;:::-;18095:14;18111:24;18139:31;18147:1;:10;;;18159:1;:10;;;18139:7;:31::i;:::-;18094:76;;-1:-1:-1;18094:76:0;-1:-1:-1;18193:18:0;18185:4;:26;;;;;;;;;18181:92;;-1:-1:-1;18242:18:0;;;;;;;;;-1:-1:-1;18242:18:0;;18236:4;;-1:-1:-1;18242:18:0;-1:-1:-1;18228:33:0;;18181:92;18590:14;;18647:42;13488:10;18669:19;18647:7;:42::i;:::-;18589:100;;-1:-1:-1;18589:100:0;-1:-1:-1;18712:18:0;18704:4;:26;;;;;;;;;18700:92;;-1:-1:-1;18761:18:0;;;;;;;;;-1:-1:-1;18761:18:0;;18755:4;;-1:-1:-1;18761:18:0;-1:-1:-1;18747:33:0;;-1:-1:-1;;18747:33:0;18700:92;18805:14;18821:12;18837:51;18845:32;13448:4;18837:7;:51::i;:::-;18804:84;;-1:-1:-1;18804:84:0;-1:-1:-1;19034:18:0;19026:4;:26;;;;;;;;;19019:34;;;;19094:24;;;;;;;;;;;;-1:-1:-1;;19094:24:0;;-1:-1:-1;17991:1136:0;-1:-1:-1;;;;;;;;17991:1136:0:o;69162:3168::-;69320:11;;:64;;;-1:-1:-1;;;;;69320:64:0;;69354:4;69320:64;;;;-1:-1:-1;;;;;69320:64:0;;;;;;;;;;;;;;;69246:4;;;;69320:11;;:25;;:64;;;;;;;;;;;;;;69246:4;69320:11;:64;;;5:2:-1;;;;30:1;27;20:12;5:2;69320:64:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;69320:64:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;69320:64:0;;-1:-1:-1;69399:12:0;;69395:142;;69435:90;69446:27;69475:40;69517:7;69435:10;:90::i;69395:142::-;69647:16;:14;:16::i;:::-;69625:18;;:38;69621:142;;69687:64;69692:22;69716:34;69687:4;:64::i;69621:142::-;69872:12;69855:14;:12;:14::i;:::-;:29;69851:143;;;69908:74;69913:29;69944:37;69908:4;:74::i;69851:143::-;70006:27;;:::i;:::-;70321:37;70349:8;70321:27;:37::i;:::-;70298:19;;;70283:75;;;70284:12;;;70283:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;70389:18:0;;-1:-1:-1;70373:4:0;:12;;;:34;;;;;;;;;70369:181;;70431:107;70442:16;70460:57;70524:4;:12;;;70519:18;;;;;;;70369:181;70603:42;70611:4;:19;;;70632:12;70603:7;:42::i;:::-;70577:22;;;70562:83;;;70563:12;;;70562:83;;;;;;;;;;;;;;;;;;;-1:-1:-1;70676:18:0;;-1:-1:-1;70660:4:0;:12;;;:34;;;;;;;;;70656:188;;70718:114;70729:16;70747:64;70818:4;:12;;;70813:18;;;;;;;70656:188;70895:35;70903:12;;70917;70895:7;:35::i;:::-;70871:20;;;70856:74;;;70857:12;;;70856:74;;;;;;;;;;;;;;;;;;;-1:-1:-1;70961:18:0;;-1:-1:-1;70945:4:0;:12;;;:34;;;;;;;;;70941:179;;71003:105;71014:16;71032:55;71094:4;:12;;;71089:18;;;;;;;70941:179;71670:37;71684:8;71694:12;71670:13;:37::i;:::-;71659:4;;:48;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71738:14:0;71726:8;;:26;;;;;;;;;71718:65;;;;;-1:-1:-1;;;;;71718:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;71903:22;;;;;;-1:-1:-1;;;;;71866:24:0;;;;;;:14;:24;;;;;;;;;:59;;;71977:11;;71936:38;;;;:52;;;;72014:20;;;;;71999:12;:35;;;72121:22;;72090:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72219:11;;:63;;;-1:-1:-1;;;;;72219:63:0;;72252:4;72219:63;;;;-1:-1:-1;;;;;72219:63:0;;;;;;;;;;;;;;;:11;;;;;:24;;:63;;;;;:11;;:63;;;;;;;:11;;:63;;;5:2:-1;;;;30:1;27;20:12;99222:6278:0;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;99222:6278:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;99222:6278:0;;;;;;;;;;;;;;;;;;-1:-1:-1;99222:6278:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;99222:6278:0;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

bzzr://25298264adc45c76bfe126a40c2cfa703b7437d9db2b2dd9b278470fca404b5f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.