ETH Price: $3,146.07 (-5.12%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Borrow128807632021-07-23 5:32:081289 days ago1627018328IN
Artem.Finance: aARTT Token
0 ETH0.0070845520.11
Borrow128807292021-07-23 5:22:251289 days ago1627017745IN
Artem.Finance: aARTT Token
0 ETH0.0082447318.75
Borrow128807182021-07-23 5:19:461289 days ago1627017586IN
Artem.Finance: aARTT Token
0 ETH0.0064366918.271
Borrow118579002021-02-14 23:51:001448 days ago1613346660IN
Artem.Finance: aARTT Token
0 ETH0.0584297140
Repay Borrow118424982021-02-12 14:59:411450 days ago1613141981IN
Artem.Finance: aARTT Token
0 ETH0.03563859176.00000145
Borrow118423732021-02-12 14:27:511450 days ago1613140071IN
Artem.Finance: aARTT Token
0 ETH0.04961151117
Borrow118423642021-02-12 14:26:091450 days ago1613139969IN
Artem.Finance: aARTT Token
0 ETH0.03546246117
Borrow118423552021-02-12 14:24:371450 days ago1613139877IN
Artem.Finance: aARTT Token
0 ETH0.03546246117
Borrow118327682021-02-11 3:13:201451 days ago1613013200IN
Artem.Finance: aARTT Token
0 ETH0.03931467108.1
Borrow118327452021-02-11 3:08:161451 days ago1613012896IN
Artem.Finance: aARTT Token
0 ETH0.04204735115.61
Redeem118088692021-02-07 11:01:351455 days ago1612695695IN
Artem.Finance: aARTT Token
0 ETH0.0269279495
Borrow117535432021-01-29 22:42:421464 days ago1611960162IN
Artem.Finance: aARTT Token
0 ETH0.02822976104
Borrow117535362021-01-29 22:41:161464 days ago1611960076IN
Artem.Finance: aARTT Token
0 ETH0.02822976104
Borrow117535272021-01-29 22:39:561464 days ago1611959996IN
Artem.Finance: aARTT Token
0 ETH0.02822976104
Borrow117279562021-01-25 23:54:581468 days ago1611618898IN
Artem.Finance: aARTT Token
0 ETH0.0243268762
Borrow117174152021-01-24 9:07:001469 days ago1611479220IN
Artem.Finance: aARTT Token
0 ETH0.0152089543.1
Borrow116665752021-01-16 13:46:311477 days ago1610804791IN
Artem.Finance: aARTT Token
0 ETH0.04590717117
Borrow116665372021-01-16 13:35:081477 days ago1610804108IN
Artem.Finance: aARTT Token
0 ETH0.0238867288
Mint116649852021-01-16 7:39:471477 days ago1610782787IN
Artem.Finance: aARTT Token
0 ETH0.0080616840
Borrow116619312021-01-15 20:32:141478 days ago1610742734IN
Artem.Finance: aARTT Token
0 ETH0.0159586343.05000153
Redeem116345812021-01-11 16:00:161482 days ago1610380816IN
Artem.Finance: aARTT Token
0 ETH0.09741011304
Redeem116345562021-01-11 15:55:101482 days ago1610380510IN
Artem.Finance: aARTT Token
0 ETH0.14583901333
Redeem116309772021-01-11 2:45:361482 days ago1610333136IN
Artem.Finance: aARTT Token
0 ETH0.0737842140
Redeem116308612021-01-11 2:19:011482 days ago1610331541IN
Artem.Finance: aARTT Token
0 ETH0.05077801115.36
Redeem116308562021-01-11 2:17:411482 days ago1610331461IN
Artem.Finance: aARTT Token
0 ETH0.04543949115.36
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
AErc20

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, BSD-3-Clause license

Contract Source Code (Solidity)

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

pragma solidity ^0.5.16;

/**
  * @title Artem ERC-20 Contract
  * @notice Derived from Compound's cERC20 contract
  * https://github.com/compound-finance/compound-protocol/tree/master/contracts
  */

/**
  * @title Careful Math
  * @notice Derived from OpenZeppelin's SafeMath library
  *         https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/math/SafeMath.sol
  */
contract CarefulMath {

    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);
    }
}

interface ControllerInterface {

    function isController() external view returns (bool);

    function enterMarkets(address[] calldata aTokens) external returns (uint[] memory);
    function exitMarket(address aToken) external returns (uint);

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

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

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

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

    function liquidateBorrowAllowed(
        address aTokenBorrowed,
        address aTokenCollateral,
        address liquidator,
        address borrower,
        uint repayAmount) external returns (uint);
        
    function liquidateBorrowVerify(
        address aTokenBorrowed,
        address aTokenCollateral,
        address liquidator,
        address borrower,
        uint repayAmount,
        uint seizeTokens) external;

    function seizeAllowed(
        address aTokenCollateral,
        address aTokenBorrowed,
        address liquidator,
        address borrower,
        uint seizeTokens) external returns (uint);
        
    function seizeVerify(
        address aTokenCollateral,
        address aTokenBorrowed,
        address liquidator,
        address borrower,
        uint seizeTokens) external;

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

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

    function liquidateCalculateSeizeTokens(
        address aTokenBorrowed,
        address aTokenCollateral,
        uint repayAmount) external view returns (uint, uint);
}


contract ControllerErrorReporter {

    event Failure(uint error, uint info, uint detail);


    function fail(Error err, FailureInfo info) internal returns (uint) {
        emit Failure(uint(err), uint(info), 0);

        return uint(err);
    }

    function failOpaque(Error err, FailureInfo info, uint opaqueError) internal returns (uint) {
        emit Failure(uint(err), uint(info), opaqueError);

        return uint(err);
    }
    
    enum Error {
        NO_ERROR,
        UNAUTHORIZED,
        CONTROLLER_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
    }

    
}

contract TokenErrorReporter {

    event Failure(uint error, uint info, uint detail);

    function fail(Error err, FailureInfo info) internal returns (uint) {
        emit Failure(uint(err), uint(info), 0);

        return uint(err);
    }

    function failOpaque(Error err, FailureInfo info, uint opaqueError) internal returns (uint) {
        emit Failure(uint(err), uint(info), opaqueError);

        return uint(err);
    }
    
    enum Error {
        NO_ERROR,
        UNAUTHORIZED,
        BAD_INPUT,
        CONTROLLER_REJECTION,
        CONTROLLER_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
    }


    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_CONTROLLER_REJECTION,
        LIQUIDATE_ACCRUE_BORROW_INTEREST_FAILED,
        LIQUIDATE_ACCRUE_COLLATERAL_INTEREST_FAILED,
        LIQUIDATE_COLLATERAL_FRESHNESS_CHECK,
        LIQUIDATE_CONTROLLER_REJECTION,
        LIQUIDATE_CONTROLLER_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_CONTROLLER_REJECTION,
        LIQUIDATE_SEIZE_LIQUIDATOR_IS_BORROWER,
        LIQUIDATE_SEIZE_TOO_MUCH,
        MINT_ACCRUE_INTEREST_FAILED,
        MINT_CONTROLLER_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_CONTROLLER_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_CONTROLLER_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_CONTROLLER_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_CONTROLLER_REJECTION,
        TRANSFER_NOT_ALLOWED,
        TRANSFER_NOT_ENOUGH,
        TRANSFER_TOO_MUCH
    }


}


contract Exponential is CarefulMath {
    uint constant expScale = 1e18;
    uint constant halfExpScale = expScale/2;
    uint constant mantissaOne = expScale;

    struct Exp {
        uint mantissa;
    }

    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}));
    }

    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}));
    }

    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}));
    }

    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}));
    }

    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));
    }

    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);
    }

    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}));
    }

    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);
    }

    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));
    }

    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}));
    }

    function mulExp(uint a, uint b) pure internal returns (MathError, Exp memory) {
        return mulExp(Exp({mantissa: a}), Exp({mantissa: b}));
    }

    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);
    }

    function divExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) {
        return getExp(a.mantissa, b.mantissa);
    }

    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;
    }

    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.
    }

    function lessThanOrEqualExp(Exp memory left, Exp memory right) pure internal returns (bool) {
        return left.mantissa <= right.mantissa;
    }

    function isZeroExp(Exp memory value) pure internal returns (bool) {
        return value.mantissa == 0;
    }
}

/**
 * @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);
}


/**
 *  @title EIP20NonStandardInterface
 *  notice: 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 {

    function totalSupply() external view returns (uint256);

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

    function transfer(address dst, uint256 amount) external;

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

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

    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);
}


/**
 * @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 () public {
        // 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");
    }
}


interface InterestRateModel {

    function getBorrowRate(uint cash, uint borrows, uint reserves) external view returns (uint, uint);

    function isInterestRateModel() external view returns (bool);
}


contract AToken is EIP20Interface, Exponential, TokenErrorReporter, ReentrancyGuard {
    /**
     * @notice Indicator that this is a AToken contract (for inspection)
     */
    bool public constant isAToken = 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-aToken operations
     */
    ControllerInterface public controller;

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

    /**
     * @notice Initial exchange rate used when minting the first ATokens (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 aTokenCollateral, 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 controller is changed
     */
    event NewController(ControllerInterface oldController, ControllerInterface newController);

    /**
     * @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);

    constructor( ) public { 
        admin = msg.sender;

        // Set initial exchange rate
        initialExchangeRateMantissa = uint(200000000000000000000000000);

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

        name = string("Artem ARTT");
        symbol = string("aARTT");
        decimals = uint(8);
    }

    function transferTokens(address spender, address src, address dst, uint tokens) internal returns (uint) {
        /* Fail if transfer not allowed */
        uint allowed = controller.transferAllowed(address(this), src, dst, tokens);
        if (allowed != 0) {
            return failOpaque(Error.CONTROLLER_REJECTION, FailureInfo.TRANSFER_CONTROLLER_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) */
        controller.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 controller 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 aTokenBalance = 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), aTokenBalance, 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 aToken
     * @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 aToken
     * @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 AToken
     * @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 AToken
     * @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 aToken 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 aTokens 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 aTokens 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 = controller.mintAllowed(address(this), minter, mintAmount);
        if (allowed != 0) {
            return failOpaque(Error.CONTROLLER_REJECTION, FailureInfo.MINT_CONTROLLER_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 aTokens 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 aTokens 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 aToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the aToken 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 */
        controller.mintVerify(address(this), minter, mintAmount, vars.mintTokens);

        return uint(Error.NO_ERROR);
    }

    /**
     * @notice Sender redeems aTokens in exchange for the underlying asset
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param redeemTokens The number of aTokens 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 aTokens 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 aTokens 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 aTokens to redeem into underlying (only one of redeemTokensIn or redeemAmountIn may be zero)
     * @param redeemAmountIn The number of aTokens 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 = controller.redeemAllowed(address(this), redeemer, vars.redeemTokens);
        if (allowed != 0) {
            return failOpaque(Error.CONTROLLER_REJECTION, FailureInfo.REDEEM_CONTROLLER_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 aToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the aToken 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 */
        controller.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 = controller.borrowAllowed(address(this), borrower, borrowAmount);
        if (allowed != 0) {
            return failOpaque(Error.CONTROLLER_REJECTION, FailureInfo.BORROW_CONTROLLER_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 aToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the aToken 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 */
        controller.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 = controller.repayBorrowAllowed(address(this), payer, borrower, repayAmount);
        if (allowed != 0) {
            return failOpaque(Error.CONTROLLER_REJECTION, FailureInfo.REPAY_BORROW_CONTROLLER_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 aToken must handle variations between ERC-20 and ETH underlying.
         *  On success, the aToken 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 */
        controller.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 aToken to be liquidated
     * @param aTokenCollateral 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, AToken aTokenCollateral) 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 = aTokenCollateral.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, aTokenCollateral);
    }

    /**
     * @notice The liquidator liquidates the borrowers collateral.
     *  The collateral seized is transferred to the liquidator.
     * @param borrower The borrower of this aToken to be liquidated
     * @param liquidator The address repaying the borrow and seizing collateral
     * @param aTokenCollateral 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, AToken aTokenCollateral) internal returns (uint) {
        /* Fail if liquidate not allowed */
        uint allowed = controller.liquidateBorrowAllowed(address(this), address(aTokenCollateral), liquidator, borrower, repayAmount);
        if (allowed != 0) {
            return failOpaque(Error.CONTROLLER_REJECTION, FailureInfo.LIQUIDATE_CONTROLLER_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 aTokenCollateral market's block number equals current block number */
        if (aTokenCollateral.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) = controller.liquidateCalculateSeizeTokens(address(this), address(aTokenCollateral), repayAmount);
        if (amountSeizeError != 0) {
            return failOpaque(Error.CONTROLLER_CALCULATION_ERROR, FailureInfo.LIQUIDATE_CONTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED, amountSeizeError);
        }

        /* Fail if seizeTokens > borrower collateral token balance */
        if (seizeTokens > aTokenCollateral.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 = aTokenCollateral.seize(liquidator, borrower, seizeTokens);
        require(seizeError == uint(Error.NO_ERROR), "token seizure failed");

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

        /* We call the defense hook */
        controller.liquidateBorrowVerify(address(this), address(aTokenCollateral), 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 aToken during the process of liquidation.
     *  Its absolutely critical to use msg.sender as the borrowed aToken and not a parameter.
     * @param liquidator The account receiving seized collateral
     * @param borrower The account having collateral seized
     * @param seizeTokens The number of aTokens 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 = controller.seizeAllowed(address(this), msg.sender, liquidator, borrower, seizeTokens);
        if (allowed != 0) {
            return failOpaque(Error.CONTROLLER_REJECTION, FailureInfo.LIQUIDATE_SEIZE_CONTROLLER_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 */
        controller.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 controller for the market
      * @dev Admin function to set a new controller
      * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
      */
    function _setController(ControllerInterface newController) public returns (uint) {
        // Check caller is admin
        if (msg.sender != admin) {
            return fail(Error.UNAUTHORIZED, FailureInfo.SET_CONTROLLER_OWNER_CHECK);
        }

        ControllerInterface oldController = controller;
        
        // Ensure invoke controller.isController() returns true
        require(newController.isController(), "marker method returned false");

        // Set market's controller to newController
        controller = newController;

        // Emit NewControllerr(oldController, newController)
        emit NewController(oldController, newController);

        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);
    }

    function _setInterestRateModel_init(InterestRateModel newInterestRateModel) public returns (uint) {
        if (msg.sender != admin) {
            return fail(Error.MARKET_NOT_FRESH, FailureInfo.SET_INTEREST_RATE_MODEL_FRESH_CHECK);
        }
        // _setInterestRateModelFresh emits interest-rate-model-update-specific logs on errors, so we don't need to.
        interestRateModel = newInterestRateModel;
        _setInterestRateModelFresh(interestRateModel);
    }
    
    /**
     * @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);
}



contract AErc20 is AToken {

    /**
     * @notice Underlying asset for this AToken
     */
    address public underlying;

    /*** User Interface ***/

    /**
     * @notice Sender supplies assets into the market and receives aTokens 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 mint(uint mintAmount) external returns (uint) {
        return mintInternal(mintAmount);
    }

    /**
     * @notice Sender redeems aTokens in exchange for the underlying asset
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param redeemTokens The number of aTokens 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 aTokens 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
     * @param repayAmount The amount to repay
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function repayBorrow(uint repayAmount) external returns (uint) {
        return repayBorrowInternal(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 repayBorrowBehalf(address borrower, uint repayAmount) external returns (uint) {
        return repayBorrowBehalfInternal(borrower, repayAmount);
    }

    /**
     * @notice The sender liquidates the borrowers collateral.
     *  The collateral seized is transferred to the liquidator.
     * @param borrower The borrower of this aToken to be liquidated
     * @param aTokenCollateral 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 liquidateBorrow(address borrower, uint repayAmount, AToken aTokenCollateral) external returns (uint) {
        return liquidateBorrowInternal(borrower, repayAmount, aTokenCollateral);
    }

    /*** 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 tokens owned by this contract
     */
    function getCashPrior() internal view returns (uint) {
        EIP20Interface token = EIP20Interface(underlying);
        return token.balanceOf(address(this));
    }

    /**
     * @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) {
        EIP20Interface token = EIP20Interface(underlying);

        if (token.allowance(from, address(this)) < amount) {
            return Error.TOKEN_INSUFFICIENT_ALLOWANCE;
        }

        if (token.balanceOf(from) < amount) {
            return Error.TOKEN_INSUFFICIENT_BALANCE;
        }

        return Error.NO_ERROR;
    }

    /**
     * @dev Similar to EIP20 transfer, except it handles a False result from `transferFrom` and returns an explanatory
     *      error code rather than reverting.  If caller has not called `checkTransferIn`, this may revert due to
     *      insufficient balance or insufficient allowance. If caller has called `checkTransferIn` prior to this call,
     *      and it returned Error.NO_ERROR, this should not revert in normal conditions.
     *
     *      Note: This wrapper safely handles non-standard ERC-20 tokens that do not return a value.
     *            See here: https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca
     */
    function doTransferIn(address from, uint amount) internal returns (Error) {
        EIP20NonStandardInterface token = EIP20NonStandardInterface(underlying);
        bool result;

        token.transferFrom(from, address(this), amount);

        // solium-disable-next-line security/no-inline-assembly
        assembly {
            switch returndatasize()
                case 0 {                      // This is a non-standard ERC-20
                    result := not(0)          // set result to true
                }
                case 32 {                     // This is a complaint ERC-20
                    returndatacopy(0, 0, 32)
                    result := mload(0)        // Set `result = returndata` of external call
                }
                default {                     // This is an excessively non-compliant ERC-20, revert.
                    revert(0, 0)
                }
        }

        if (!result) {
            return Error.TOKEN_TRANSFER_IN_FAILED;
        }

        return Error.NO_ERROR;
    }

    /**
     * @dev Similar to EIP20 transfer, except it handles a False result from `transfer` and returns an explanatory
     *      error code rather than reverting. If caller has not called checked protocol's balance, this may revert due to
     *      insufficient cash held in this contract. If caller has checked protocol's balance prior to this call, and verified
     *      it is >= amount, this should not revert in normal conditions.
     *
     *      Note: This wrapper safely handles non-standard ERC-20 tokens that do not return a value.
     *            See here: https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca
     */
    function doTransferOut(address payable to, uint amount) internal returns (Error) {
        EIP20NonStandardInterface token = EIP20NonStandardInterface(underlying);
        bool result;

        token.transfer(to, amount);

        // solium-disable-next-line security/no-inline-assembly
        assembly {
            switch returndatasize()
                case 0 {                      // This is a non-standard ERC-20
                    result := not(0)          // set result to true
                }
                case 32 {                     // This is a complaint ERC-20
                    returndatacopy(0, 0, 32)
                    result := mload(0)        // Set `result = returndata` of external call
                }
                default {                     // This is an excessively non-compliant ERC-20, revert.
                    revert(0, 0)
                }
        }

        if (!result) {
            return Error.TOKEN_TRANSFER_OUT_FAILED;
        }

        return Error.NO_ERROR;
    }
    
    function _setUnderlying(address newunderlying) public returns (uint) {
        // Check caller is admin
        if (msg.sender != admin) {
            return fail(Error.UNAUTHORIZED, FailureInfo.SET_CONTROLLER_OWNER_CHECK);
        }

        // Set market's controller to newController
        underlying = newunderlying;
        EIP20Interface(underlying).totalSupply(); // Sanity check the underlying
        
        return uint(Error.NO_ERROR);
    } 
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"interestAccumulated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"borrowIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"AccrueInterest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"borrowAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accountBorrows","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"Borrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"error","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"info","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"detail","type":"uint256"}],"name":"Failure","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"liquidator","type":"address"},{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"repayAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"aTokenCollateral","type":"address"},{"indexed":false,"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"name":"LiquidateBorrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mintTokens","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"NewAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract ControllerInterface","name":"oldController","type":"address"},{"indexed":false,"internalType":"contract ControllerInterface","name":"newController","type":"address"}],"name":"NewController","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract InterestRateModel","name":"oldInterestRateModel","type":"address"},{"indexed":false,"internalType":"contract InterestRateModel","name":"newInterestRateModel","type":"address"}],"name":"NewMarketInterestRateModel","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPendingAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newPendingAdmin","type":"address"}],"name":"NewPendingAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldReserveFactorMantissa","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newReserveFactorMantissa","type":"uint256"}],"name":"NewReserveFactor","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"redeemer","type":"address"},{"indexed":false,"internalType":"uint256","name":"redeemAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"payer","type":"address"},{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"repayAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accountBorrows","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"RepayBorrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"admin","type":"address"},{"indexed":false,"internalType":"uint256","name":"reduceAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalReserves","type":"uint256"}],"name":"ReservesReduced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[],"name":"_acceptAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"reduceAmount","type":"uint256"}],"name":"_reduceReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract ControllerInterface","name":"newController","type":"address"}],"name":"_setController","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract InterestRateModel","name":"newInterestRateModel","type":"address"}],"name":"_setInterestRateModel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract InterestRateModel","name":"newInterestRateModel","type":"address"}],"name":"_setInterestRateModel_init","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"newPendingAdmin","type":"address"}],"name":"_setPendingAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"newReserveFactorMantissa","type":"uint256"}],"name":"_setReserveFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newunderlying","type":"address"}],"name":"_setUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"accrualBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"accrueInterest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"borrowAmount","type":"uint256"}],"name":"borrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"borrowBalanceCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"borrowBalanceStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"borrowIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"borrowRatePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"internalType":"contract ControllerInterface","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"exchangeRateCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"exchangeRateStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getCash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initialExchangeRateMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"interestRateModel","outputs":[{"internalType":"contract InterestRateModel","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isAToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"repayAmount","type":"uint256"},{"internalType":"contract AToken","name":"aTokenCollateral","type":"address"}],"name":"liquidateBorrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingAdmin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"redeemUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"repayBorrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"repayBorrowBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"reserveFactorMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"liquidator","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"name":"seize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"supplyRatePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalBorrows","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"totalBorrowsCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"underlying","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"}]

60806040526001600055600480546001600160a01b031916331790556aa56fa5b99019a5c80000006008556200003d6001600160e01b03620000bb16565b600a908155670de0b6b3a7640000600b556040805180820190915281815269105c9d195b481054951560b21b6020909101908152620000809160019190620000c0565b5060408051808201909152600580825264185054951560da1b6020909201918252620000af91600291620000c0565b50600860035562000162565b435b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200010357805160ff191683800117855562000133565b8280016001018555821562000133579182015b828111156200013357825182559160200191906001019062000116565b506200014192915062000145565b5090565b620000bd91905b808211156200014157600081556001016200014c565b614ab280620001726000396000f3fe608060405234801561001057600080fd5b50600436106102a05760003560e01c806394c393fc11610167578063c5ebeaec116100ce578063f3fdb15a11610087578063f3fdb15a1461076a578063f5e3c46214610772578063f77c4791146107a8578063f851a440146107b0578063f8f9da28146107b8578063fca7820b146107c0576102a0565b8063c5ebeaec146106ae578063db006a75146106cb578063dd62ed3e146106e8578063e9c714f214610716578063ef7c74e41461071e578063f2b3abbd14610744576102a0565b8063aa5af0fd11610120578063aa5af0fd146105ee578063ae9d70b0146105f6578063b2a02ff1146105fe578063b71d1a0c14610634578063bd6d894d1461065a578063c37f68e214610662576102a0565b806394c393fc1461056757806395d89b411461056f57806395dd919314610577578063a0712d681461059d578063a6afed95146105ba578063a9059cbb146105c2576102a0565b80633af9e6691161020b5780636f307dc3116101c45780636f307dc3146104e657806370a08231146104ee57806373acee981461051457806383de424e1461051c578063852a12e3146105425780638f840ddd1461055f576102a0565b80633af9e669146104835780633b1d21a2146104a957806347bd3718146104b1578063601a0bf1146104b9578063675d972c146104d65780636c540baf146104de576102a0565b8063182df0f51161025d578063182df0f5146103c757806323b872dd146103cf5780632608f8181461040557806326782247146104315780632d75635914610455578063313ce5671461047b576102a0565b806306fdde03146102a5578063095ea7b3146103225780630e75270214610362578063173b99041461039157806317bfdfbc1461039957806318160ddd146103bf575b600080fd5b6102ad6107dd565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e75781810151838201526020016102cf565b50505050905090810190601f1680156103145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61034e6004803603604081101561033857600080fd5b506001600160a01b03813516906020013561086a565b604080519115158252519081900360200190f35b61037f6004803603602081101561037857600080fd5b50356108d7565b60408051918252519081900360200190f35b61037f6108ea565b61037f600480360360208110156103af57600080fd5b50356001600160a01b03166108f0565b61037f6109a3565b61037f6109a9565b61034e600480360360608110156103e557600080fd5b506001600160a01b03813581169160208101359091169060400135610a0c565b61037f6004803603604081101561041b57600080fd5b506001600160a01b038135169060200135610a72565b610439610a85565b604080516001600160a01b039092168252519081900360200190f35b61037f6004803603602081101561046b57600080fd5b50356001600160a01b0316610a94565b61037f610ae7565b61037f6004803603602081101561049957600080fd5b50356001600160a01b0316610aed565b61037f610b5b565b61037f610b6a565b61037f600480360360208110156104cf57600080fd5b5035610b70565b61037f610bf8565b61037f610bfe565b610439610c04565b61037f6004803603602081101561050457600080fd5b50356001600160a01b0316610c13565b61037f610c2e565b61037f6004803603602081101561053257600080fd5b50356001600160a01b0316610cd8565b61037f6004803603602081101561055857600080fd5b5035610e22565b61037f610e2d565b61034e610e33565b6102ad610e38565b61037f6004803603602081101561058d57600080fd5b50356001600160a01b0316610e90565b61037f600480360360208110156105b357600080fd5b5035610eed565b61037f610ef8565b61034e600480360360408110156105d857600080fd5b506001600160a01b0381351690602001356112f1565b61037f611356565b61037f61135c565b61037f6004803603606081101561061457600080fd5b506001600160a01b03813581169160208101359091169060400135611627565b61037f6004803603602081101561064a57600080fd5b50356001600160a01b03166118d8565b61037f61195f565b6106886004803603602081101561067857600080fd5b50356001600160a01b0316611a0a565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61037f600480360360208110156106c457600080fd5b5035611a9f565b61037f600480360360208110156106e157600080fd5b5035611aaa565b61037f600480360360408110156106fe57600080fd5b506001600160a01b0381358116916020013516611ab5565b61037f611ae0565b61037f6004803603602081101561073457600080fd5b50356001600160a01b0316611bcf565b61037f6004803603602081101561075a57600080fd5b50356001600160a01b0316611c80565b610439611cba565b61037f6004803603606081101561078857600080fd5b506001600160a01b03813581169160208101359160409091013516611cc9565b610439611cd6565b610439611ce5565b61037f611cf4565b61037f600480360360208110156107d657600080fd5b5035611dd0565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b505050505081565b3360008181526010602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b60006108e282611e0a565b90505b919050565b60095481565b6000805460010180825581610903610ef8565b1461094e576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b61095783610e90565b91505b600054811461099d576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b50919050565b600e5481565b60008060006109b6611e46565b909250905060008260038111156109c957fe5b14610a055760405162461bcd60e51b81526004018080602001828103825260358152602001806149f16035913960400191505060405180910390fd5b9150505b90565b6000805460010180825581610a2333878787611ef4565b1491505b6000548114610a6a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b509392505050565b6000610a7e8383612202565b9392505050565b6005546001600160a01b031681565b6004546000906001600160a01b03163314610abc57610ab5600a604161228c565b90506108e5565b600780546001600160a01b0319166001600160a01b03848116919091179182905561099d91166122f2565b60035481565b6000610af761474a565b6040518060200160405280610b0a61195f565b90526001600160a01b0384166000908152600f6020526040812054919250908190610b36908490612462565b90925090506000826003811115610b4957fe5b14610b5357600080fd5b949350505050565b6000610b656124b6565b905090565b600c5481565b6000805460010180825581610b83610ef8565b90508015610ba957610ba1816010811115610b9a57fe5b603061228c565b92505061095a565b610bb284612536565b925050600054811461099d576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b60085481565b600a5481565b6012546001600160a01b031681565b6001600160a01b03166000908152600f602052604090205490565b6000805460010180825581610c41610ef8565b14610c8c576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b600c5491506000548114610cd4576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b5090565b6004546000906001600160a01b03163314610cf957610ab56001603f61228c565b60065460408051634e1647fb60e01b815290516001600160a01b0392831692851691634e1647fb916004808301926020929190829003018186803b158015610d4057600080fd5b505afa158015610d54573d6000803e3d6000fd5b505050506040513d6020811015610d6a57600080fd5b5051610dbd576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517ff9b6a28700579d5c8fab50f0ac2dcaa52109b85c369c4f511fcc873330ab6cbb9281900390910190a160009392505050565b60006108e2826126b4565b600d5481565b600181565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156108625780601f1061083757610100808354040283529160200191610862565b6000806000610e9e846126f1565b90925090506000826003811115610eb157fe5b14610a7e5760405162461bcd60e51b81526004018080602001828103825260378152602001806148c56037913960400191505060405180910390fd5b60006108e2826127a5565b6000610f0261475d565b6007546001600160a01b03166315f24053610f1b6124b6565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b158015610f6257600080fd5b505afa158015610f76573d6000803e3d6000fd5b505050506040513d6040811015610f8c57600080fd5b50805160209182015160408401819052918301526601c6bf526340001015610ffb576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b60208101511561101e576110166005600283602001516127e0565b915050610a09565b611026612846565b60608201819052600a5461103a919061284a565b608083018190528282600381111561104e57fe5b600381111561105957fe5b905250600090508151600381111561106d57fe5b1461107457fe5b61109460405180602001604052808360400151815250826080015161286d565b60a08301819052828260038111156110a857fe5b60038111156110b357fe5b90525060009050815160038111156110c757fe5b146110e85761101660096006836000015160038111156110e357fe5b6127e0565b6110f88160a00151600c54612462565b60c083018190528282600381111561110c57fe5b600381111561111757fe5b905250600090508151600381111561112b57fe5b146111475761101660096001836000015160038111156110e357fe5b6111578160c00151600c546128d5565b60e083018190528282600381111561116b57fe5b600381111561117657fe5b905250600090508151600381111561118a57fe5b146111a65761101660096004836000015160038111156110e357fe5b6111c760405180602001604052806009548152508260c00151600d546128fb565b6101008301819052828260038111156111dc57fe5b60038111156111e757fe5b90525060009050815160038111156111fb57fe5b146112175761101660096005836000015160038111156110e357fe5b61122a8160a00151600b54600b546128fb565b61012083018190528282600381111561123f57fe5b600381111561124a57fe5b905250600090508151600381111561125e57fe5b1461127a5761101660096003836000015160038111156110e357fe5b606080820151600a55610120820151600b81905560e0830151600c819055610100840151600d5560c08401516040805191825260208201939093528083019190915290517f875352fb3fadeb8c0be7cbbe8ff761b308fa7033470cd0287f02f3436fd76cb9929181900390910190a1600091505090565b600080546001018082558161130833338787611ef4565b1491505b600054811461134f576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b5092915050565b600b5481565b6000806113676109a9565b60075490915060009081906001600160a01b03166315f240536113886124b6565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b1580156113cf57600080fd5b505afa1580156113e3573d6000803e3d6000fd5b505050506040513d60408110156113f957600080fd5b508051602090910151909250905081156114445760405162461bcd60e51b81526004018080602001828103825260318152602001806149646031913960400191505060405180910390fd5b600061144e61474a565b611468604051806020016040528087815250600e5461286d565b9092509050600082600381111561147b57fe5b146114b75760405162461bcd60e51b81526004018080602001828103825260318152602001806148fc6031913960400191505060405180910390fd5b60006114c161474a565b6114cd600c5484612957565b909250905060008260038111156114e057fe5b1461151c5760405162461bcd60e51b81526004018080602001828103825260318152602001806148406031913960400191505060405180910390fd5b600061152661474a565b6115566040518060200160405280670de0b6b3a764000081525060405180602001604052806009548152506129b6565b9092509050600082600381111561156957fe5b146115a55760405162461bcd60e51b815260040180806020018281038252603c8152602001806149b5603c913960400191505060405180910390fd5b60006115af61474a565b6115c860405180602001604052808b81525084876129f0565b909250905060008260038111156115db57fe5b146116175760405162461bcd60e51b81526004018080602001828103825260318152602001806148946031913960400191505060405180910390fd5b519a505050505050505050505090565b600080546001018082556006546040805163d02f735160e01b81523060048201523360248201526001600160a01b03888116604483015287811660648301526084820187905291518593929092169163d02f73519160a48082019260209290919082900301818787803b15801561169d57600080fd5b505af11580156116b1573d6000803e3d6000fd5b505050506040513d60208110156116c757600080fd5b5051905080156116e6576116de6003601b836127e0565b925050610a27565b856001600160a01b0316856001600160a01b0316141561170c576116de6006601c61228c565b6001600160a01b0385166000908152600f602052604081205481908190611733908861284a565b9093509150600083600381111561174657fe5b146117695761175e6009601a8560038111156110e357fe5b955050505050610a27565b6001600160a01b0389166000908152600f602052604090205461178c90886128d5565b9093509050600083600381111561179f57fe5b146117b75761175e600960198560038111156110e357fe5b6001600160a01b038089166000818152600f60209081526040808320879055938d168083529184902085905583518b815293519193600080516020614995833981519152929081900390910190a360065460408051636d35bf9160e01b81523060048201523360248201526001600160a01b038c811660448301528b81166064830152608482018b905291519190921691636d35bf919160a480830192600092919082900301818387803b15801561186e57600080fd5b505af1158015611882573d6000803e3d6000fd5b506000925061188f915050565b9550505050506000548114610a6a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6004546000906001600160a01b031633146118f957610ab56001604561228c565b600580546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a16000610a7e565b6000805460010180825581611972610ef8565b146119bd576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b6119c56109a9565b91506000548114610cd4576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6001600160a01b0381166000908152600f6020526040812054819081908190818080611a35896126f1565b935090506000816003811115611a4757fe5b14611a655760095b975060009650869550859450611a989350505050565b611a6d611e46565b925090506000816003811115611a7f57fe5b14611a8b576009611a4f565b5060009650919450925090505b9193509193565b60006108e282612a3a565b60006108e282612a75565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205490565b6005546000906001600160a01b031633141580611afb575033155b15611b1357611b0c6001600061228c565b9050610a09565b60048054600580546001600160a01b038082166001600160a01b031980861682179687905590921690925560408051938316808552949092166020840152815190927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600554604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b6004546000906001600160a01b03163314611bf057610ab56001603f61228c565b601280546001600160a01b0319166001600160a01b038481169190911791829055604080516318160ddd60e01b8152905192909116916318160ddd91600480820192602092909190829003018186803b158015611c4c57600080fd5b505afa158015611c60573d6000803e3d6000fd5b505050506040513d6020811015611c7657600080fd5b50600090506108e2565b600080611c8b610ef8565b90508015611cb157611ca9816010811115611ca257fe5b604061228c565b9150506108e5565b610a7e836122f2565b6007546001600160a01b031681565b6000610b53848484612aab565b6006546001600160a01b031681565b6004546001600160a01b031681565b600754600090819081906001600160a01b03166315f24053611d146124b6565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b158015611d5b57600080fd5b505afa158015611d6f573d6000803e3d6000fd5b505050506040513d6040811015611d8557600080fd5b50805160209091015190925090508115610a055760405162461bcd60e51b815260040180806020018281038252603781526020018061492d6037913960400191505060405180910390fd5b6000805460010180825581611de3610ef8565b90508015611e0157610ba1816010811115611dfa57fe5b604661228c565b610bb284612bb3565b6000805460010180825581611e1d610ef8565b90508015611e3b57610ba1816010811115611e3457fe5b603661228c565b610bb2333386612c56565b600080600e5460001415611e61575050600854600090611ef0565b6000611e6b6124b6565b90506000611e7761474a565b6000611e8884600c54600d546130a9565b935090506000816003811115611e9a57fe5b14611eae57945060009350611ef092505050565b611eba83600e546130e7565b925090506000816003811115611ecc57fe5b14611ee057945060009350611ef092505050565b5051600094509250611ef0915050565b9091565b600654604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b158015611f5957600080fd5b505af1158015611f6d573d6000803e3d6000fd5b505050506040513d6020811015611f8357600080fd5b505190508015611fa257611f9a6003604a836127e0565b915050610b53565b836001600160a01b0316856001600160a01b03161415611fc857611f9a6002604b61228c565b60006001600160a01b038781169087161415611fe7575060001961200f565b506001600160a01b038086166000908152601060209081526040808320938a16835292905220545b60008060008061201f858961284a565b9094509250600084600381111561203257fe5b14612050576120436009604b61228c565b9650505050505050610b53565b6001600160a01b038a166000908152600f6020526040902054612073908961284a565b9094509150600084600381111561208657fe5b14612097576120436009604c61228c565b6001600160a01b0389166000908152600f60205260409020546120ba90896128d5565b909450905060008460038111156120cd57fe5b146120de576120436009604d61228c565b6001600160a01b03808b166000908152600f6020526040808220859055918b168152208190556000198514612136576001600160a01b03808b166000908152601060209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b03166000805160206149958339815191528a6040518082815260200191505060405180910390a36006546040805163352b4a3f60e11b81523060048201526001600160a01b038d811660248301528c81166044830152606482018c905291519190921691636a56947e91608480830192600092919082900301818387803b1580156121d257600080fd5b505af11580156121e6573d6000803e3d6000fd5b50600092506121f3915050565b9b9a5050505050505050505050565b6000805460010180825581612215610ef8565b9050801561223b5761223381601081111561222c57fe5b603561228c565b92505061130c565b612246338686612c56565b925050600054811461134f576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa08360108111156122bb57fe5b83604d8111156122c757fe5b604080519283526020830191909152600082820152519081900360600190a1826010811115610a7e57fe5b60045460009081906001600160a01b0316331461231557611ca96001604261228c565b61231d612846565b600a541461233157611ca9600a604161228c565b600760009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561238257600080fd5b505afa158015612396573d6000803e3d6000fd5b505050506040513d60208110156123ac57600080fd5b50516123ff576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a16000610a7e565b600080600061246f61474a565b612479868661286d565b9092509050600082600381111561248c57fe5b1461249d57509150600090506124af565b60006124a882613197565b9350935050505b9250929050565b601254604080516370a0823160e01b815230600482015290516000926001600160a01b03169182916370a0823191602480820192602092909190829003018186803b15801561250457600080fd5b505afa158015612518573d6000803e3d6000fd5b505050506040513d602081101561252e57600080fd5b505191505090565b600454600090819081906001600160a01b031633146125645761255b6001603161228c565b925050506108e5565b61256c612846565b600a54146125805761255b600a603361228c565b836125896124b6565b101561259b5761255b600e603261228c565b600d548411156125b15761255b6002603461228c565b50600d54838103908111156125f75760405162461bcd60e51b8152600401808060200182810382526024815260200180614a5a6024913960400191505060405180910390fd5b600d819055600454612612906001600160a01b0316856131a6565b9150600082601081111561262257fe5b1461265e5760405162461bcd60e51b81526004018080602001828103825260238152602001806148716023913960400191505060405180910390fd5b600454604080516001600160a01b03909216825260208201869052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e9181900360600190a16000949350505050565b60008054600101808255816126c7610ef8565b905080156126e557610ba18160108111156126de57fe5b602761228c565b610bb233600086613262565b6001600160a01b0381166000908152601160205260408120805482918291829182916127285750600094508493506127a092505050565b6127388160000154600b5461376b565b9094509250600084600381111561274b57fe5b146127605750919350600092506127a0915050565b61276e8382600101546137aa565b9094509150600084600381111561278157fe5b146127965750919350600092506127a0915050565b5060009450925050505b915091565b60008054600101808255816127b8610ef8565b905080156127d657610ba18160108111156127cf57fe5b601e61228c565b610bb233856137d5565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa084601081111561280f57fe5b84604d81111561281b57fe5b604080519283526020830191909152818101859052519081900360600190a1836010811115610b5357fe5b4390565b6000808383116128615750600090508183036124af565b506003905060006124af565b600061287761474a565b60008061288886600001518661376b565b9092509050600082600381111561289b57fe5b146128ba575060408051602081019091526000815290925090506124af565b60408051602081019091529081526000969095509350505050565b6000808383018481106128ed576000925090506124af565b5060029150600090506124af565b600080600061290861474a565b612912878761286d565b9092509050600082600381111561292557fe5b14612936575091506000905061294f565b61294861294282613197565b866128d5565b9350935050505b935093915050565b600061296161474a565b600080612976670de0b6b3a76400008761376b565b9092509050600082600381111561298957fe5b146129a8575060408051602081019091526000815290925090506124af565b6124a88186600001516130e7565b60006129c061474a565b6000806129d58660000151866000015161284a565b60408051602081019091529081529097909650945050505050565b60006129fa61474a565b6000612a0461474a565b612a0e8787613c1d565b90925090506000826003811115612a2157fe5b14612a3057909250905061294f565b6129488186613c1d565b6000805460010180825581612a4d610ef8565b90508015612a6b57610ba1816010811115612a6457fe5b600861228c565b610bb23385613d06565b6000805460010180825581612a88610ef8565b90508015612a9f57610ba18160108111156126de57fe5b610bb233856000613262565b6000805460010180825581612abe610ef8565b90508015612adc576116de816010811115612ad557fe5b600f61228c565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612b1757600080fd5b505af1158015612b2b573d6000803e3d6000fd5b505050506040513d6020811015612b4157600080fd5b505190508015612b61576116de816010811115612b5a57fe5b601061228c565b612b6d3387878761406c565b9250506000548114610a6a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6004546000906001600160a01b03163314612bd457610ab56001604761228c565b612bdc612846565b600a5414612bf057610ab5600a604861228c565b670de0b6b3a7640000821115612c0c57610ab56002604961228c565b6009805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a16000610a7e565b60065460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849316916324008a6291608480830192602092919082900301818787803b158015612cbb57600080fd5b505af1158015612ccf573d6000803e3d6000fd5b505050506040513d6020811015612ce557600080fd5b505190508015612d0457612cfc60036038836127e0565b915050610a7e565b612d0c612846565b600a5414612d2057612cfc600a603961228c565b612d286147b7565b6001600160a01b0385166000908152601160205260409020600101546060820152612d52856126f1565b6080830181905260208301826003811115612d6957fe5b6003811115612d7457fe5b9052506000905081602001516003811115612d8b57fe5b14612db057612da760096037836020015160038111156110e357fe5b92505050610a7e565b600019841415612dc95760808101516040820152612dd1565b604081018490525b612ddf868260400151614548565b81906010811115612dec57fe5b90816010811115612df957fe5b905250600081516010811115612e0b57fe5b14612e1d578051612da790603c61228c565b612e2f8160800151826040015161284a565b60a0830181905260208301826003811115612e4657fe5b6003811115612e5157fe5b9052506000905081602001516003811115612e6857fe5b14612e8457612da76009603a836020015160038111156110e357fe5b612e94600c54826040015161284a565b60c0830181905260208301826003811115612eab57fe5b6003811115612eb657fe5b9052506000905081602001516003811115612ecd57fe5b14612ee957612da76009603b836020015160038111156110e357fe5b612ef786826040015161467c565b81906010811115612f0457fe5b90816010811115612f1157fe5b905250600081516010811115612f2357fe5b14612f75576040805162461bcd60e51b815260206004820152601f60248201527f726570617920626f72726f77207472616e7366657220696e206661696c656400604482015290519081900360640190fd5b60a080820180516001600160a01b03808916600081815260116020908152604091829020948555600b5460019095019490945560c0870151600c8190558188015195518251948e16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160065460408083015160608401518251631ededc9160e01b81523060048201526001600160a01b038b811660248301528a81166044830152606482019390935260848101919091529151921691631ededc919160a48082019260009290919082900301818387803b15801561307e57600080fd5b505af1158015613092573d6000803e3d6000fd5b506000925061309f915050565b9695505050505050565b6000806000806130b987876128d5565b909250905060008260038111156130cc57fe5b146130dd575091506000905061294f565b612948818661284a565b60006130f161474a565b60008061310686670de0b6b3a764000061376b565b9092509050600082600381111561311957fe5b14613138575060408051602081019091526000815290925090506124af565b60008061314583886137aa565b9092509050600082600381111561315857fe5b1461317a575060408051602081019091526000815290945092506124af915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b6012546040805163a9059cbb60e01b81526001600160a01b03858116600483015260248201859052915160009392909216918391839163a9059cbb91604480820192869290919082900301818387803b15801561320257600080fd5b505af1158015613216573d6000803e3d6000fd5b505050503d60008114613230576020811461323a57600080fd5b6000199150613246565b60206000803e60005191505b5080613257576010925050506108d1565b506000949350505050565b600082158061326f575081155b6132aa5760405162461bcd60e51b8152600401808060200182810382526034815260200180614a266034913960400191505060405180910390fd5b6132b26147b7565b6132ba611e46565b60408301819052602083018260038111156132d157fe5b60038111156132dc57fe5b90525060009050816020015160038111156132f357fe5b1461330f57612cfc6009602b836020015160038111156110e357fe5b83156133905760608101849052604080516020810182529082015181526133369085612462565b608083018190526020830182600381111561334d57fe5b600381111561335857fe5b905250600090508160200151600381111561336f57fe5b1461338b57612cfc60096029836020015160038111156110e357fe5b613409565b6133ac8360405180602001604052808460400151815250614733565b60608301819052602083018260038111156133c357fe5b60038111156133ce57fe5b90525060009050816020015160038111156133e557fe5b1461340157612cfc6009602a836020015160038111156110e357fe5b608081018390525b60065460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b15801561346e57600080fd5b505af1158015613482573d6000803e3d6000fd5b505050506040513d602081101561349857600080fd5b5051905080156134af57612da760036028836127e0565b6134b7612846565b600a54146134cb57612da7600a602c61228c565b6134db600e54836060015161284a565b60a08401819052602084018260038111156134f257fe5b60038111156134fd57fe5b905250600090508260200151600381111561351457fe5b1461353057612da76009602e846020015160038111156110e357fe5b6001600160a01b0386166000908152600f60205260409020546060830151613558919061284a565b60c084018190526020840182600381111561356f57fe5b600381111561357a57fe5b905250600090508260200151600381111561359157fe5b146135ad57612da76009602d846020015160038111156110e357fe5b81608001516135ba6124b6565b10156135cc57612da7600e602f61228c565b6135da8683608001516131a6565b829060108111156135e757fe5b908160108111156135f457fe5b90525060008251601081111561360657fe5b14613658576040805162461bcd60e51b815260206004820152601a60248201527f72656465656d207472616e73666572206f7574206661696c6564000000000000604482015290519081900360640190fd5b60a0820151600e5560c08201516001600160a01b0387166000818152600f6020908152604091829020939093556060850151815190815290513093600080516020614995833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160065460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b15801561307e57600080fd5b6000808361377e575060009050806124af565b8383028385828161378b57fe5b041461379f575060029150600090506124af565b6000925090506124af565b600080826137be57506001905060006124af565b60008385816137c957fe5b04915091509250929050565b60065460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384931691634ef4c3e191606480830192602092919082900301818787803b15801561383257600080fd5b505af1158015613846573d6000803e3d6000fd5b505050506040513d602081101561385c57600080fd5b50519050801561387b576138736003601f836127e0565b9150506108d1565b613883612846565b600a541461389757613873600a602261228c565b61389f6147f5565b6138a98585614548565b819060108111156138b657fe5b908160108111156138c357fe5b9052506000815160108111156138d557fe5b146138f05780516138e790602661228c565b925050506108d1565b6138f8611e46565b604083018190526020830182600381111561390f57fe5b600381111561391a57fe5b905250600090508160200151600381111561393157fe5b1461394d576138e760096021836020015160038111156110e357fe5b6139698460405180602001604052808460400151815250614733565b606083018190526020830182600381111561398057fe5b600381111561398b57fe5b90525060009050816020015160038111156139a257fe5b146139be576138e760096020836020015160038111156110e357fe5b6139ce600e5482606001516128d5565b60808301819052602083018260038111156139e557fe5b60038111156139f057fe5b9052506000905081602001516003811115613a0757fe5b14613a23576138e760096024836020015160038111156110e357fe5b6001600160a01b0385166000908152600f60205260409020546060820151613a4b91906128d5565b60a0830181905260208301826003811115613a6257fe5b6003811115613a6d57fe5b9052506000905081602001516003811115613a8457fe5b14613aa0576138e760096023836020015160038111156110e357fe5b613aaa858561467c565b81906010811115613ab757fe5b90816010811115613ac457fe5b905250600081516010811115613ad657fe5b14613ae85780516138e790602561228c565b6080810151600e5560a08101516001600160a01b0386166000818152600f602090815260409182902093909355606080850151825193845293830188905282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0387169130916000805160206149958339815191529181900360200190a36006546060820151604080516341c728b960e01b81523060048201526001600160a01b038981166024830152604482018990526064820193909352905191909216916341c728b991608480830192600092919082900301818387803b158015613bf357600080fd5b505af1158015613c07573d6000803e3d6000fd5b5060009250613c14915050565b95945050505050565b6000613c2761474a565b600080613c3c8660000151866000015161376b565b90925090506000826003811115613c4f57fe5b14613c6e575060408051602081019091526000815290925090506124af565b600080613c836706f05b59d3b20000846128d5565b90925090506000826003811115613c9657fe5b14613cb8575060408051602081019091526000815290945092506124af915050565b600080613ccd83670de0b6b3a76400006137aa565b90925090506000826003811115613ce057fe5b14613ce757fe5b604080516020810190915290815260009a909950975050505050505050565b6006546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b158015613d6357600080fd5b505af1158015613d77573d6000803e3d6000fd5b505050506040513d6020811015613d8d57600080fd5b505190508015613da4576138736003600e836127e0565b613dac612846565b600a5414613dbf57613873600a8061228c565b82613dc86124b6565b1015613dda57613873600e600961228c565b613de261480f565b613deb856126f1565b6040830181905260208301826003811115613e0257fe5b6003811115613e0d57fe5b9052506000905081602001516003811115613e2457fe5b14613e40576138e760096007836020015160038111156110e357fe5b613e4e8160400151856128d5565b6060830181905260208301826003811115613e6557fe5b6003811115613e7057fe5b9052506000905081602001516003811115613e8757fe5b14613ea3576138e76009600c836020015160038111156110e357fe5b613eaf600c54856128d5565b6080830181905260208301826003811115613ec657fe5b6003811115613ed157fe5b9052506000905081602001516003811115613ee857fe5b14613f04576138e76009600b836020015160038111156110e357fe5b613f0e85856131a6565b81906010811115613f1b57fe5b90816010811115613f2857fe5b905250600081516010811115613f3a57fe5b14613f8c576040805162461bcd60e51b815260206004820152601a60248201527f626f72726f77207472616e73666572206f7574206661696c6564000000000000604482015290519081900360640190fd5b606080820180516001600160a01b038816600081815260116020908152604091829020938455600b54600190940193909355608080870151600c819055945182519384529383018a9052828201939093529381019290925291517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab80929181900390910190a160065460408051635c77860560e01b81523060048201526001600160a01b0388811660248301526044820188905291519190921691635c77860591606480830192600092919082900301818387803b158015613bf357600080fd5b60065460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384931691635fc7e71e9160a480830192602092919082900301818787803b1580156140d957600080fd5b505af11580156140ed573d6000803e3d6000fd5b505050506040513d602081101561410357600080fd5b50519050801561411a57611f9a60036012836127e0565b614122612846565b600a541461413657611f9a600a601661228c565b61413e612846565b836001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b15801561417757600080fd5b505afa15801561418b573d6000803e3d6000fd5b505050506040513d60208110156141a157600080fd5b5051146141b457611f9a600a601161228c565b856001600160a01b0316856001600160a01b031614156141da57611f9a6006601761228c565b836141eb57611f9a6007601561228c565b60001984141561420157611f9a6007601461228c565b6006546040805163c488847b60e01b81523060048201526001600160a01b038681166024830152604482018890528251600094859492169263c488847b926064808301939192829003018186803b15801561425b57600080fd5b505afa15801561426f573d6000803e3d6000fd5b505050506040513d604081101561428557600080fd5b508051602090910151909250905081156142b0576142a660046013846127e0565b9350505050610b53565b846001600160a01b03166370a08231886040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561430657600080fd5b505afa15801561431a573d6000803e3d6000fd5b505050506040513d602081101561433057600080fd5b5051811115614345576142a6600d601d61228c565b6000614352898989612c56565b9050801561437b5761437081601081111561436957fe5b601861228c565b945050505050610b53565b6040805163b2a02ff160e01b81526001600160a01b038b811660048301528a8116602483015260448201859052915160009289169163b2a02ff191606480830192602092919082900301818787803b1580156143d657600080fd5b505af11580156143ea573d6000803e3d6000fd5b505050506040513d602081101561440057600080fd5b50519050801561444e576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808d168252808c1660208301528183018b9052891660608201526080810185905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a1600654604080516347ef3b3b60e01b81523060048201526001600160a01b038a811660248301528d811660448301528c81166064830152608482018c905260a48201879052915191909216916347ef3b3b9160c480830192600092919082900301818387803b15801561451957600080fd5b505af115801561452d573d6000803e3d6000fd5b506000925061453a915050565b9a9950505050505050505050565b60125460408051636eb1769f60e11b81526001600160a01b038581166004830152306024830152915160009392909216918491839163dd62ed3e91604480820192602092909190829003018186803b1580156145a357600080fd5b505afa1580156145b7573d6000803e3d6000fd5b505050506040513d60208110156145cd57600080fd5b505110156145df57600c9150506108d1565b82816001600160a01b03166370a08231866040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561463657600080fd5b505afa15801561464a573d6000803e3d6000fd5b505050506040513d602081101561466057600080fd5b5051101561467257600d9150506108d1565b5060009392505050565b601254604080516323b872dd60e01b81526001600160a01b0385811660048301523060248301526044820185905291516000939290921691839183916323b872dd91606480820192869290919082900301818387803b1580156146de57600080fd5b505af11580156146f2573d6000803e3d6000fd5b505050503d6000811461470c576020811461471657600080fd5b6000199150614722565b60206000803e60005191505b508061325757600f925050506108d1565b600080600061474061474a565b6124798686612957565b6040518060200160405280600081525090565b60408051610140810190915280600081526020016000815260200160008152602001600081526020016000815260200161479561474a565b8152602001600081526020016000815260200160008152602001600081525090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805160c0810190915280600081526020016000614795565b6040805160a08101909152806000815260200160008152602001600081526020016000815260200160008152509056fe737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720626f72726f7773506572206661696c6564726564756365207265736572766573207472616e73666572206f7574206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720737570706c7952617465206661696c6564626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720756e6465726c79696e67206661696c6564626f72726f7752617465506572426c6f636b3a20696e746572657374526174654d6f64656c2e626f72726f7752617465206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720626f72726f7752617465206661696c6564ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef737570706c7952617465506572426c6f636b3a2063616c63756c6174696e67206f6e654d696e757352657365727665466163746f72206661696c656465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65646f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f77a265627a7a723158200b6bb3d952fea56dc9e395879a43e823aad634d2accb8a02a41f8214e0f87ce664736f6c63430005100032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102a05760003560e01c806394c393fc11610167578063c5ebeaec116100ce578063f3fdb15a11610087578063f3fdb15a1461076a578063f5e3c46214610772578063f77c4791146107a8578063f851a440146107b0578063f8f9da28146107b8578063fca7820b146107c0576102a0565b8063c5ebeaec146106ae578063db006a75146106cb578063dd62ed3e146106e8578063e9c714f214610716578063ef7c74e41461071e578063f2b3abbd14610744576102a0565b8063aa5af0fd11610120578063aa5af0fd146105ee578063ae9d70b0146105f6578063b2a02ff1146105fe578063b71d1a0c14610634578063bd6d894d1461065a578063c37f68e214610662576102a0565b806394c393fc1461056757806395d89b411461056f57806395dd919314610577578063a0712d681461059d578063a6afed95146105ba578063a9059cbb146105c2576102a0565b80633af9e6691161020b5780636f307dc3116101c45780636f307dc3146104e657806370a08231146104ee57806373acee981461051457806383de424e1461051c578063852a12e3146105425780638f840ddd1461055f576102a0565b80633af9e669146104835780633b1d21a2146104a957806347bd3718146104b1578063601a0bf1146104b9578063675d972c146104d65780636c540baf146104de576102a0565b8063182df0f51161025d578063182df0f5146103c757806323b872dd146103cf5780632608f8181461040557806326782247146104315780632d75635914610455578063313ce5671461047b576102a0565b806306fdde03146102a5578063095ea7b3146103225780630e75270214610362578063173b99041461039157806317bfdfbc1461039957806318160ddd146103bf575b600080fd5b6102ad6107dd565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e75781810151838201526020016102cf565b50505050905090810190601f1680156103145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61034e6004803603604081101561033857600080fd5b506001600160a01b03813516906020013561086a565b604080519115158252519081900360200190f35b61037f6004803603602081101561037857600080fd5b50356108d7565b60408051918252519081900360200190f35b61037f6108ea565b61037f600480360360208110156103af57600080fd5b50356001600160a01b03166108f0565b61037f6109a3565b61037f6109a9565b61034e600480360360608110156103e557600080fd5b506001600160a01b03813581169160208101359091169060400135610a0c565b61037f6004803603604081101561041b57600080fd5b506001600160a01b038135169060200135610a72565b610439610a85565b604080516001600160a01b039092168252519081900360200190f35b61037f6004803603602081101561046b57600080fd5b50356001600160a01b0316610a94565b61037f610ae7565b61037f6004803603602081101561049957600080fd5b50356001600160a01b0316610aed565b61037f610b5b565b61037f610b6a565b61037f600480360360208110156104cf57600080fd5b5035610b70565b61037f610bf8565b61037f610bfe565b610439610c04565b61037f6004803603602081101561050457600080fd5b50356001600160a01b0316610c13565b61037f610c2e565b61037f6004803603602081101561053257600080fd5b50356001600160a01b0316610cd8565b61037f6004803603602081101561055857600080fd5b5035610e22565b61037f610e2d565b61034e610e33565b6102ad610e38565b61037f6004803603602081101561058d57600080fd5b50356001600160a01b0316610e90565b61037f600480360360208110156105b357600080fd5b5035610eed565b61037f610ef8565b61034e600480360360408110156105d857600080fd5b506001600160a01b0381351690602001356112f1565b61037f611356565b61037f61135c565b61037f6004803603606081101561061457600080fd5b506001600160a01b03813581169160208101359091169060400135611627565b61037f6004803603602081101561064a57600080fd5b50356001600160a01b03166118d8565b61037f61195f565b6106886004803603602081101561067857600080fd5b50356001600160a01b0316611a0a565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61037f600480360360208110156106c457600080fd5b5035611a9f565b61037f600480360360208110156106e157600080fd5b5035611aaa565b61037f600480360360408110156106fe57600080fd5b506001600160a01b0381358116916020013516611ab5565b61037f611ae0565b61037f6004803603602081101561073457600080fd5b50356001600160a01b0316611bcf565b61037f6004803603602081101561075a57600080fd5b50356001600160a01b0316611c80565b610439611cba565b61037f6004803603606081101561078857600080fd5b506001600160a01b03813581169160208101359160409091013516611cc9565b610439611cd6565b610439611ce5565b61037f611cf4565b61037f600480360360208110156107d657600080fd5b5035611dd0565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b505050505081565b3360008181526010602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b60006108e282611e0a565b90505b919050565b60095481565b6000805460010180825581610903610ef8565b1461094e576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b61095783610e90565b91505b600054811461099d576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b50919050565b600e5481565b60008060006109b6611e46565b909250905060008260038111156109c957fe5b14610a055760405162461bcd60e51b81526004018080602001828103825260358152602001806149f16035913960400191505060405180910390fd5b9150505b90565b6000805460010180825581610a2333878787611ef4565b1491505b6000548114610a6a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b509392505050565b6000610a7e8383612202565b9392505050565b6005546001600160a01b031681565b6004546000906001600160a01b03163314610abc57610ab5600a604161228c565b90506108e5565b600780546001600160a01b0319166001600160a01b03848116919091179182905561099d91166122f2565b60035481565b6000610af761474a565b6040518060200160405280610b0a61195f565b90526001600160a01b0384166000908152600f6020526040812054919250908190610b36908490612462565b90925090506000826003811115610b4957fe5b14610b5357600080fd5b949350505050565b6000610b656124b6565b905090565b600c5481565b6000805460010180825581610b83610ef8565b90508015610ba957610ba1816010811115610b9a57fe5b603061228c565b92505061095a565b610bb284612536565b925050600054811461099d576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b60085481565b600a5481565b6012546001600160a01b031681565b6001600160a01b03166000908152600f602052604090205490565b6000805460010180825581610c41610ef8565b14610c8c576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b600c5491506000548114610cd4576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b5090565b6004546000906001600160a01b03163314610cf957610ab56001603f61228c565b60065460408051634e1647fb60e01b815290516001600160a01b0392831692851691634e1647fb916004808301926020929190829003018186803b158015610d4057600080fd5b505afa158015610d54573d6000803e3d6000fd5b505050506040513d6020811015610d6a57600080fd5b5051610dbd576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517ff9b6a28700579d5c8fab50f0ac2dcaa52109b85c369c4f511fcc873330ab6cbb9281900390910190a160009392505050565b60006108e2826126b4565b600d5481565b600181565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156108625780601f1061083757610100808354040283529160200191610862565b6000806000610e9e846126f1565b90925090506000826003811115610eb157fe5b14610a7e5760405162461bcd60e51b81526004018080602001828103825260378152602001806148c56037913960400191505060405180910390fd5b60006108e2826127a5565b6000610f0261475d565b6007546001600160a01b03166315f24053610f1b6124b6565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b158015610f6257600080fd5b505afa158015610f76573d6000803e3d6000fd5b505050506040513d6040811015610f8c57600080fd5b50805160209182015160408401819052918301526601c6bf526340001015610ffb576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b60208101511561101e576110166005600283602001516127e0565b915050610a09565b611026612846565b60608201819052600a5461103a919061284a565b608083018190528282600381111561104e57fe5b600381111561105957fe5b905250600090508151600381111561106d57fe5b1461107457fe5b61109460405180602001604052808360400151815250826080015161286d565b60a08301819052828260038111156110a857fe5b60038111156110b357fe5b90525060009050815160038111156110c757fe5b146110e85761101660096006836000015160038111156110e357fe5b6127e0565b6110f88160a00151600c54612462565b60c083018190528282600381111561110c57fe5b600381111561111757fe5b905250600090508151600381111561112b57fe5b146111475761101660096001836000015160038111156110e357fe5b6111578160c00151600c546128d5565b60e083018190528282600381111561116b57fe5b600381111561117657fe5b905250600090508151600381111561118a57fe5b146111a65761101660096004836000015160038111156110e357fe5b6111c760405180602001604052806009548152508260c00151600d546128fb565b6101008301819052828260038111156111dc57fe5b60038111156111e757fe5b90525060009050815160038111156111fb57fe5b146112175761101660096005836000015160038111156110e357fe5b61122a8160a00151600b54600b546128fb565b61012083018190528282600381111561123f57fe5b600381111561124a57fe5b905250600090508151600381111561125e57fe5b1461127a5761101660096003836000015160038111156110e357fe5b606080820151600a55610120820151600b81905560e0830151600c819055610100840151600d5560c08401516040805191825260208201939093528083019190915290517f875352fb3fadeb8c0be7cbbe8ff761b308fa7033470cd0287f02f3436fd76cb9929181900390910190a1600091505090565b600080546001018082558161130833338787611ef4565b1491505b600054811461134f576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b5092915050565b600b5481565b6000806113676109a9565b60075490915060009081906001600160a01b03166315f240536113886124b6565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b1580156113cf57600080fd5b505afa1580156113e3573d6000803e3d6000fd5b505050506040513d60408110156113f957600080fd5b508051602090910151909250905081156114445760405162461bcd60e51b81526004018080602001828103825260318152602001806149646031913960400191505060405180910390fd5b600061144e61474a565b611468604051806020016040528087815250600e5461286d565b9092509050600082600381111561147b57fe5b146114b75760405162461bcd60e51b81526004018080602001828103825260318152602001806148fc6031913960400191505060405180910390fd5b60006114c161474a565b6114cd600c5484612957565b909250905060008260038111156114e057fe5b1461151c5760405162461bcd60e51b81526004018080602001828103825260318152602001806148406031913960400191505060405180910390fd5b600061152661474a565b6115566040518060200160405280670de0b6b3a764000081525060405180602001604052806009548152506129b6565b9092509050600082600381111561156957fe5b146115a55760405162461bcd60e51b815260040180806020018281038252603c8152602001806149b5603c913960400191505060405180910390fd5b60006115af61474a565b6115c860405180602001604052808b81525084876129f0565b909250905060008260038111156115db57fe5b146116175760405162461bcd60e51b81526004018080602001828103825260318152602001806148946031913960400191505060405180910390fd5b519a505050505050505050505090565b600080546001018082556006546040805163d02f735160e01b81523060048201523360248201526001600160a01b03888116604483015287811660648301526084820187905291518593929092169163d02f73519160a48082019260209290919082900301818787803b15801561169d57600080fd5b505af11580156116b1573d6000803e3d6000fd5b505050506040513d60208110156116c757600080fd5b5051905080156116e6576116de6003601b836127e0565b925050610a27565b856001600160a01b0316856001600160a01b0316141561170c576116de6006601c61228c565b6001600160a01b0385166000908152600f602052604081205481908190611733908861284a565b9093509150600083600381111561174657fe5b146117695761175e6009601a8560038111156110e357fe5b955050505050610a27565b6001600160a01b0389166000908152600f602052604090205461178c90886128d5565b9093509050600083600381111561179f57fe5b146117b75761175e600960198560038111156110e357fe5b6001600160a01b038089166000818152600f60209081526040808320879055938d168083529184902085905583518b815293519193600080516020614995833981519152929081900390910190a360065460408051636d35bf9160e01b81523060048201523360248201526001600160a01b038c811660448301528b81166064830152608482018b905291519190921691636d35bf919160a480830192600092919082900301818387803b15801561186e57600080fd5b505af1158015611882573d6000803e3d6000fd5b506000925061188f915050565b9550505050506000548114610a6a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6004546000906001600160a01b031633146118f957610ab56001604561228c565b600580546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a16000610a7e565b6000805460010180825581611972610ef8565b146119bd576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b6119c56109a9565b91506000548114610cd4576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6001600160a01b0381166000908152600f6020526040812054819081908190818080611a35896126f1565b935090506000816003811115611a4757fe5b14611a655760095b975060009650869550859450611a989350505050565b611a6d611e46565b925090506000816003811115611a7f57fe5b14611a8b576009611a4f565b5060009650919450925090505b9193509193565b60006108e282612a3a565b60006108e282612a75565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205490565b6005546000906001600160a01b031633141580611afb575033155b15611b1357611b0c6001600061228c565b9050610a09565b60048054600580546001600160a01b038082166001600160a01b031980861682179687905590921690925560408051938316808552949092166020840152815190927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600554604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b6004546000906001600160a01b03163314611bf057610ab56001603f61228c565b601280546001600160a01b0319166001600160a01b038481169190911791829055604080516318160ddd60e01b8152905192909116916318160ddd91600480820192602092909190829003018186803b158015611c4c57600080fd5b505afa158015611c60573d6000803e3d6000fd5b505050506040513d6020811015611c7657600080fd5b50600090506108e2565b600080611c8b610ef8565b90508015611cb157611ca9816010811115611ca257fe5b604061228c565b9150506108e5565b610a7e836122f2565b6007546001600160a01b031681565b6000610b53848484612aab565b6006546001600160a01b031681565b6004546001600160a01b031681565b600754600090819081906001600160a01b03166315f24053611d146124b6565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b158015611d5b57600080fd5b505afa158015611d6f573d6000803e3d6000fd5b505050506040513d6040811015611d8557600080fd5b50805160209091015190925090508115610a055760405162461bcd60e51b815260040180806020018281038252603781526020018061492d6037913960400191505060405180910390fd5b6000805460010180825581611de3610ef8565b90508015611e0157610ba1816010811115611dfa57fe5b604661228c565b610bb284612bb3565b6000805460010180825581611e1d610ef8565b90508015611e3b57610ba1816010811115611e3457fe5b603661228c565b610bb2333386612c56565b600080600e5460001415611e61575050600854600090611ef0565b6000611e6b6124b6565b90506000611e7761474a565b6000611e8884600c54600d546130a9565b935090506000816003811115611e9a57fe5b14611eae57945060009350611ef092505050565b611eba83600e546130e7565b925090506000816003811115611ecc57fe5b14611ee057945060009350611ef092505050565b5051600094509250611ef0915050565b9091565b600654604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b158015611f5957600080fd5b505af1158015611f6d573d6000803e3d6000fd5b505050506040513d6020811015611f8357600080fd5b505190508015611fa257611f9a6003604a836127e0565b915050610b53565b836001600160a01b0316856001600160a01b03161415611fc857611f9a6002604b61228c565b60006001600160a01b038781169087161415611fe7575060001961200f565b506001600160a01b038086166000908152601060209081526040808320938a16835292905220545b60008060008061201f858961284a565b9094509250600084600381111561203257fe5b14612050576120436009604b61228c565b9650505050505050610b53565b6001600160a01b038a166000908152600f6020526040902054612073908961284a565b9094509150600084600381111561208657fe5b14612097576120436009604c61228c565b6001600160a01b0389166000908152600f60205260409020546120ba90896128d5565b909450905060008460038111156120cd57fe5b146120de576120436009604d61228c565b6001600160a01b03808b166000908152600f6020526040808220859055918b168152208190556000198514612136576001600160a01b03808b166000908152601060209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b03166000805160206149958339815191528a6040518082815260200191505060405180910390a36006546040805163352b4a3f60e11b81523060048201526001600160a01b038d811660248301528c81166044830152606482018c905291519190921691636a56947e91608480830192600092919082900301818387803b1580156121d257600080fd5b505af11580156121e6573d6000803e3d6000fd5b50600092506121f3915050565b9b9a5050505050505050505050565b6000805460010180825581612215610ef8565b9050801561223b5761223381601081111561222c57fe5b603561228c565b92505061130c565b612246338686612c56565b925050600054811461134f576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa08360108111156122bb57fe5b83604d8111156122c757fe5b604080519283526020830191909152600082820152519081900360600190a1826010811115610a7e57fe5b60045460009081906001600160a01b0316331461231557611ca96001604261228c565b61231d612846565b600a541461233157611ca9600a604161228c565b600760009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561238257600080fd5b505afa158015612396573d6000803e3d6000fd5b505050506040513d60208110156123ac57600080fd5b50516123ff576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a16000610a7e565b600080600061246f61474a565b612479868661286d565b9092509050600082600381111561248c57fe5b1461249d57509150600090506124af565b60006124a882613197565b9350935050505b9250929050565b601254604080516370a0823160e01b815230600482015290516000926001600160a01b03169182916370a0823191602480820192602092909190829003018186803b15801561250457600080fd5b505afa158015612518573d6000803e3d6000fd5b505050506040513d602081101561252e57600080fd5b505191505090565b600454600090819081906001600160a01b031633146125645761255b6001603161228c565b925050506108e5565b61256c612846565b600a54146125805761255b600a603361228c565b836125896124b6565b101561259b5761255b600e603261228c565b600d548411156125b15761255b6002603461228c565b50600d54838103908111156125f75760405162461bcd60e51b8152600401808060200182810382526024815260200180614a5a6024913960400191505060405180910390fd5b600d819055600454612612906001600160a01b0316856131a6565b9150600082601081111561262257fe5b1461265e5760405162461bcd60e51b81526004018080602001828103825260238152602001806148716023913960400191505060405180910390fd5b600454604080516001600160a01b03909216825260208201869052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e9181900360600190a16000949350505050565b60008054600101808255816126c7610ef8565b905080156126e557610ba18160108111156126de57fe5b602761228c565b610bb233600086613262565b6001600160a01b0381166000908152601160205260408120805482918291829182916127285750600094508493506127a092505050565b6127388160000154600b5461376b565b9094509250600084600381111561274b57fe5b146127605750919350600092506127a0915050565b61276e8382600101546137aa565b9094509150600084600381111561278157fe5b146127965750919350600092506127a0915050565b5060009450925050505b915091565b60008054600101808255816127b8610ef8565b905080156127d657610ba18160108111156127cf57fe5b601e61228c565b610bb233856137d5565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa084601081111561280f57fe5b84604d81111561281b57fe5b604080519283526020830191909152818101859052519081900360600190a1836010811115610b5357fe5b4390565b6000808383116128615750600090508183036124af565b506003905060006124af565b600061287761474a565b60008061288886600001518661376b565b9092509050600082600381111561289b57fe5b146128ba575060408051602081019091526000815290925090506124af565b60408051602081019091529081526000969095509350505050565b6000808383018481106128ed576000925090506124af565b5060029150600090506124af565b600080600061290861474a565b612912878761286d565b9092509050600082600381111561292557fe5b14612936575091506000905061294f565b61294861294282613197565b866128d5565b9350935050505b935093915050565b600061296161474a565b600080612976670de0b6b3a76400008761376b565b9092509050600082600381111561298957fe5b146129a8575060408051602081019091526000815290925090506124af565b6124a88186600001516130e7565b60006129c061474a565b6000806129d58660000151866000015161284a565b60408051602081019091529081529097909650945050505050565b60006129fa61474a565b6000612a0461474a565b612a0e8787613c1d565b90925090506000826003811115612a2157fe5b14612a3057909250905061294f565b6129488186613c1d565b6000805460010180825581612a4d610ef8565b90508015612a6b57610ba1816010811115612a6457fe5b600861228c565b610bb23385613d06565b6000805460010180825581612a88610ef8565b90508015612a9f57610ba18160108111156126de57fe5b610bb233856000613262565b6000805460010180825581612abe610ef8565b90508015612adc576116de816010811115612ad557fe5b600f61228c565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612b1757600080fd5b505af1158015612b2b573d6000803e3d6000fd5b505050506040513d6020811015612b4157600080fd5b505190508015612b61576116de816010811115612b5a57fe5b601061228c565b612b6d3387878761406c565b9250506000548114610a6a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6004546000906001600160a01b03163314612bd457610ab56001604761228c565b612bdc612846565b600a5414612bf057610ab5600a604861228c565b670de0b6b3a7640000821115612c0c57610ab56002604961228c565b6009805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a16000610a7e565b60065460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849316916324008a6291608480830192602092919082900301818787803b158015612cbb57600080fd5b505af1158015612ccf573d6000803e3d6000fd5b505050506040513d6020811015612ce557600080fd5b505190508015612d0457612cfc60036038836127e0565b915050610a7e565b612d0c612846565b600a5414612d2057612cfc600a603961228c565b612d286147b7565b6001600160a01b0385166000908152601160205260409020600101546060820152612d52856126f1565b6080830181905260208301826003811115612d6957fe5b6003811115612d7457fe5b9052506000905081602001516003811115612d8b57fe5b14612db057612da760096037836020015160038111156110e357fe5b92505050610a7e565b600019841415612dc95760808101516040820152612dd1565b604081018490525b612ddf868260400151614548565b81906010811115612dec57fe5b90816010811115612df957fe5b905250600081516010811115612e0b57fe5b14612e1d578051612da790603c61228c565b612e2f8160800151826040015161284a565b60a0830181905260208301826003811115612e4657fe5b6003811115612e5157fe5b9052506000905081602001516003811115612e6857fe5b14612e8457612da76009603a836020015160038111156110e357fe5b612e94600c54826040015161284a565b60c0830181905260208301826003811115612eab57fe5b6003811115612eb657fe5b9052506000905081602001516003811115612ecd57fe5b14612ee957612da76009603b836020015160038111156110e357fe5b612ef786826040015161467c565b81906010811115612f0457fe5b90816010811115612f1157fe5b905250600081516010811115612f2357fe5b14612f75576040805162461bcd60e51b815260206004820152601f60248201527f726570617920626f72726f77207472616e7366657220696e206661696c656400604482015290519081900360640190fd5b60a080820180516001600160a01b03808916600081815260116020908152604091829020948555600b5460019095019490945560c0870151600c8190558188015195518251948e16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160065460408083015160608401518251631ededc9160e01b81523060048201526001600160a01b038b811660248301528a81166044830152606482019390935260848101919091529151921691631ededc919160a48082019260009290919082900301818387803b15801561307e57600080fd5b505af1158015613092573d6000803e3d6000fd5b506000925061309f915050565b9695505050505050565b6000806000806130b987876128d5565b909250905060008260038111156130cc57fe5b146130dd575091506000905061294f565b612948818661284a565b60006130f161474a565b60008061310686670de0b6b3a764000061376b565b9092509050600082600381111561311957fe5b14613138575060408051602081019091526000815290925090506124af565b60008061314583886137aa565b9092509050600082600381111561315857fe5b1461317a575060408051602081019091526000815290945092506124af915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b6012546040805163a9059cbb60e01b81526001600160a01b03858116600483015260248201859052915160009392909216918391839163a9059cbb91604480820192869290919082900301818387803b15801561320257600080fd5b505af1158015613216573d6000803e3d6000fd5b505050503d60008114613230576020811461323a57600080fd5b6000199150613246565b60206000803e60005191505b5080613257576010925050506108d1565b506000949350505050565b600082158061326f575081155b6132aa5760405162461bcd60e51b8152600401808060200182810382526034815260200180614a266034913960400191505060405180910390fd5b6132b26147b7565b6132ba611e46565b60408301819052602083018260038111156132d157fe5b60038111156132dc57fe5b90525060009050816020015160038111156132f357fe5b1461330f57612cfc6009602b836020015160038111156110e357fe5b83156133905760608101849052604080516020810182529082015181526133369085612462565b608083018190526020830182600381111561334d57fe5b600381111561335857fe5b905250600090508160200151600381111561336f57fe5b1461338b57612cfc60096029836020015160038111156110e357fe5b613409565b6133ac8360405180602001604052808460400151815250614733565b60608301819052602083018260038111156133c357fe5b60038111156133ce57fe5b90525060009050816020015160038111156133e557fe5b1461340157612cfc6009602a836020015160038111156110e357fe5b608081018390525b60065460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b15801561346e57600080fd5b505af1158015613482573d6000803e3d6000fd5b505050506040513d602081101561349857600080fd5b5051905080156134af57612da760036028836127e0565b6134b7612846565b600a54146134cb57612da7600a602c61228c565b6134db600e54836060015161284a565b60a08401819052602084018260038111156134f257fe5b60038111156134fd57fe5b905250600090508260200151600381111561351457fe5b1461353057612da76009602e846020015160038111156110e357fe5b6001600160a01b0386166000908152600f60205260409020546060830151613558919061284a565b60c084018190526020840182600381111561356f57fe5b600381111561357a57fe5b905250600090508260200151600381111561359157fe5b146135ad57612da76009602d846020015160038111156110e357fe5b81608001516135ba6124b6565b10156135cc57612da7600e602f61228c565b6135da8683608001516131a6565b829060108111156135e757fe5b908160108111156135f457fe5b90525060008251601081111561360657fe5b14613658576040805162461bcd60e51b815260206004820152601a60248201527f72656465656d207472616e73666572206f7574206661696c6564000000000000604482015290519081900360640190fd5b60a0820151600e5560c08201516001600160a01b0387166000818152600f6020908152604091829020939093556060850151815190815290513093600080516020614995833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160065460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b15801561307e57600080fd5b6000808361377e575060009050806124af565b8383028385828161378b57fe5b041461379f575060029150600090506124af565b6000925090506124af565b600080826137be57506001905060006124af565b60008385816137c957fe5b04915091509250929050565b60065460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384931691634ef4c3e191606480830192602092919082900301818787803b15801561383257600080fd5b505af1158015613846573d6000803e3d6000fd5b505050506040513d602081101561385c57600080fd5b50519050801561387b576138736003601f836127e0565b9150506108d1565b613883612846565b600a541461389757613873600a602261228c565b61389f6147f5565b6138a98585614548565b819060108111156138b657fe5b908160108111156138c357fe5b9052506000815160108111156138d557fe5b146138f05780516138e790602661228c565b925050506108d1565b6138f8611e46565b604083018190526020830182600381111561390f57fe5b600381111561391a57fe5b905250600090508160200151600381111561393157fe5b1461394d576138e760096021836020015160038111156110e357fe5b6139698460405180602001604052808460400151815250614733565b606083018190526020830182600381111561398057fe5b600381111561398b57fe5b90525060009050816020015160038111156139a257fe5b146139be576138e760096020836020015160038111156110e357fe5b6139ce600e5482606001516128d5565b60808301819052602083018260038111156139e557fe5b60038111156139f057fe5b9052506000905081602001516003811115613a0757fe5b14613a23576138e760096024836020015160038111156110e357fe5b6001600160a01b0385166000908152600f60205260409020546060820151613a4b91906128d5565b60a0830181905260208301826003811115613a6257fe5b6003811115613a6d57fe5b9052506000905081602001516003811115613a8457fe5b14613aa0576138e760096023836020015160038111156110e357fe5b613aaa858561467c565b81906010811115613ab757fe5b90816010811115613ac457fe5b905250600081516010811115613ad657fe5b14613ae85780516138e790602561228c565b6080810151600e5560a08101516001600160a01b0386166000818152600f602090815260409182902093909355606080850151825193845293830188905282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0387169130916000805160206149958339815191529181900360200190a36006546060820151604080516341c728b960e01b81523060048201526001600160a01b038981166024830152604482018990526064820193909352905191909216916341c728b991608480830192600092919082900301818387803b158015613bf357600080fd5b505af1158015613c07573d6000803e3d6000fd5b5060009250613c14915050565b95945050505050565b6000613c2761474a565b600080613c3c8660000151866000015161376b565b90925090506000826003811115613c4f57fe5b14613c6e575060408051602081019091526000815290925090506124af565b600080613c836706f05b59d3b20000846128d5565b90925090506000826003811115613c9657fe5b14613cb8575060408051602081019091526000815290945092506124af915050565b600080613ccd83670de0b6b3a76400006137aa565b90925090506000826003811115613ce057fe5b14613ce757fe5b604080516020810190915290815260009a909950975050505050505050565b6006546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b158015613d6357600080fd5b505af1158015613d77573d6000803e3d6000fd5b505050506040513d6020811015613d8d57600080fd5b505190508015613da4576138736003600e836127e0565b613dac612846565b600a5414613dbf57613873600a8061228c565b82613dc86124b6565b1015613dda57613873600e600961228c565b613de261480f565b613deb856126f1565b6040830181905260208301826003811115613e0257fe5b6003811115613e0d57fe5b9052506000905081602001516003811115613e2457fe5b14613e40576138e760096007836020015160038111156110e357fe5b613e4e8160400151856128d5565b6060830181905260208301826003811115613e6557fe5b6003811115613e7057fe5b9052506000905081602001516003811115613e8757fe5b14613ea3576138e76009600c836020015160038111156110e357fe5b613eaf600c54856128d5565b6080830181905260208301826003811115613ec657fe5b6003811115613ed157fe5b9052506000905081602001516003811115613ee857fe5b14613f04576138e76009600b836020015160038111156110e357fe5b613f0e85856131a6565b81906010811115613f1b57fe5b90816010811115613f2857fe5b905250600081516010811115613f3a57fe5b14613f8c576040805162461bcd60e51b815260206004820152601a60248201527f626f72726f77207472616e73666572206f7574206661696c6564000000000000604482015290519081900360640190fd5b606080820180516001600160a01b038816600081815260116020908152604091829020938455600b54600190940193909355608080870151600c819055945182519384529383018a9052828201939093529381019290925291517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab80929181900390910190a160065460408051635c77860560e01b81523060048201526001600160a01b0388811660248301526044820188905291519190921691635c77860591606480830192600092919082900301818387803b158015613bf357600080fd5b60065460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384931691635fc7e71e9160a480830192602092919082900301818787803b1580156140d957600080fd5b505af11580156140ed573d6000803e3d6000fd5b505050506040513d602081101561410357600080fd5b50519050801561411a57611f9a60036012836127e0565b614122612846565b600a541461413657611f9a600a601661228c565b61413e612846565b836001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b15801561417757600080fd5b505afa15801561418b573d6000803e3d6000fd5b505050506040513d60208110156141a157600080fd5b5051146141b457611f9a600a601161228c565b856001600160a01b0316856001600160a01b031614156141da57611f9a6006601761228c565b836141eb57611f9a6007601561228c565b60001984141561420157611f9a6007601461228c565b6006546040805163c488847b60e01b81523060048201526001600160a01b038681166024830152604482018890528251600094859492169263c488847b926064808301939192829003018186803b15801561425b57600080fd5b505afa15801561426f573d6000803e3d6000fd5b505050506040513d604081101561428557600080fd5b508051602090910151909250905081156142b0576142a660046013846127e0565b9350505050610b53565b846001600160a01b03166370a08231886040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561430657600080fd5b505afa15801561431a573d6000803e3d6000fd5b505050506040513d602081101561433057600080fd5b5051811115614345576142a6600d601d61228c565b6000614352898989612c56565b9050801561437b5761437081601081111561436957fe5b601861228c565b945050505050610b53565b6040805163b2a02ff160e01b81526001600160a01b038b811660048301528a8116602483015260448201859052915160009289169163b2a02ff191606480830192602092919082900301818787803b1580156143d657600080fd5b505af11580156143ea573d6000803e3d6000fd5b505050506040513d602081101561440057600080fd5b50519050801561444e576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808d168252808c1660208301528183018b9052891660608201526080810185905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a1600654604080516347ef3b3b60e01b81523060048201526001600160a01b038a811660248301528d811660448301528c81166064830152608482018c905260a48201879052915191909216916347ef3b3b9160c480830192600092919082900301818387803b15801561451957600080fd5b505af115801561452d573d6000803e3d6000fd5b506000925061453a915050565b9a9950505050505050505050565b60125460408051636eb1769f60e11b81526001600160a01b038581166004830152306024830152915160009392909216918491839163dd62ed3e91604480820192602092909190829003018186803b1580156145a357600080fd5b505afa1580156145b7573d6000803e3d6000fd5b505050506040513d60208110156145cd57600080fd5b505110156145df57600c9150506108d1565b82816001600160a01b03166370a08231866040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561463657600080fd5b505afa15801561464a573d6000803e3d6000fd5b505050506040513d602081101561466057600080fd5b5051101561467257600d9150506108d1565b5060009392505050565b601254604080516323b872dd60e01b81526001600160a01b0385811660048301523060248301526044820185905291516000939290921691839183916323b872dd91606480820192869290919082900301818387803b1580156146de57600080fd5b505af11580156146f2573d6000803e3d6000fd5b505050503d6000811461470c576020811461471657600080fd5b6000199150614722565b60206000803e60005191505b508061325757600f925050506108d1565b600080600061474061474a565b6124798686612957565b6040518060200160405280600081525090565b60408051610140810190915280600081526020016000815260200160008152602001600081526020016000815260200161479561474a565b8152602001600081526020016000815260200160008152602001600081525090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805160c0810190915280600081526020016000614795565b6040805160a08101909152806000815260200160008152602001600081526020016000815260200160008152509056fe737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720626f72726f7773506572206661696c6564726564756365207265736572766573207472616e73666572206f7574206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720737570706c7952617465206661696c6564626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720756e6465726c79696e67206661696c6564626f72726f7752617465506572426c6f636b3a20696e746572657374526174654d6f64656c2e626f72726f7752617465206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720626f72726f7752617465206661696c6564ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef737570706c7952617465506572426c6f636b3a2063616c63756c6174696e67206f6e654d696e757352657365727665466163746f72206661696c656465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65646f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f77a265627a7a723158200b6bb3d952fea56dc9e395879a43e823aad634d2accb8a02a41f8214e0f87ce664736f6c63430005100032

Deployed Bytecode Sourcemap

90421:8522:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;90421:8522:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22441:18;;;:::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;22441:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31538:237;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;31538:237:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;92586:121;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;92586:121:0;;:::i;:::-;;;;;;;;;;;;;;;;23714:33;;;:::i;37246:224::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37246:224:0;-1:-1:-1;;;;;37246:224:0;;:::i;24350:26::-;;;:::i;40091:261::-;;;:::i;30873:195::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30873:195:0;;;;;;;;;;;;;;;;;:::i;92995:161::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;92995:161:0;;;;;;;;:::i;23142:35::-;;;:::i;:::-;;;;-1:-1:-1;;;;;23142:35:0;;;;;;;;;;;;;;86691:477;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;86691:477:0;-1:-1:-1;;;;;86691:477:0;;:::i;22637:20::-;;;:::i;32806:319::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32806:319:0;-1:-1:-1;;;;;32806:319:0;;:::i;41928:88::-;;;:::i;24114:24::-;;;:::i;82772:571::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;82772:571:0;;:::i;23578:39::-;;;:::i;23837:30::-;;;:::i;90523:25::-;;;:::i;32438:112::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32438:112:0;-1:-1:-1;;;;;32438:112:0;;:::i;36763:192::-;;;:::i;79590:725::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;79590:725:0;-1:-1:-1;;;;;79590:725:0;;:::i;91864:133::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91864:133:0;;:::i;24244:25::-;;;:::i;22329:36::-;;;:::i;22537:20::-;;;:::i;37679:287::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37679:287:0;-1:-1:-1;;;;;37679:287:0;;:::i;90939:105::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;90939:105:0;;:::i;42643:3646::-;;;:::i;30381:185::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30381:185:0;;;;;;;;:::i;23979:23::-;;;:::i;35119:1498::-;;;:::i;75033:2117::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;75033:2117:0;;;;;;;;;;;;;;;;;:::i;77700:647::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;77700:647:0;-1:-1:-1;;;;;77700:647:0;;:::i;39643:198::-;;;:::i;33470:703::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33470:703:0;-1:-1:-1;;;;;33470:703:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92265:113;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;92265:113:0;;:::i;91395:::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91395:113:0;;:::i;32105:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;32105:143:0;;;;;;;;;;:::i;78625:742::-;;;:::i;98473:466::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;98473:466:0;-1:-1:-1;;;;;98473:466:0;;:::i;86050:633::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;86050:633:0;-1:-1:-1;;;;;86050:633:0;;:::i;23407:42::-;;;:::i;93638:200::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;93638:200:0;;;;;;;;;;;;;;;;;:::i;23268:37::-;;;:::i;23031:28::-;;;:::i;34601:342::-;;;:::i;80618:607::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;80618:607:0;;:::i;22441:18::-;;;;;;;;;;;;;;;-1:-1:-1;;22441:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31538:237::-;31637:10;31606:4;31658:23;;;:18;:23;;;;;;;;-1:-1:-1;;;;;31658:32:0;;;;;;;;;;;:41;;;31715:30;;;;;;;31606:4;;31637:10;31658:32;;31637:10;;31715:30;;;;;;;;;;;31763:4;31756:11;;;31538:237;;;;;:::o;92586:121::-;92643:4;92667:32;92687:11;92667:19;:32::i;:::-;92660:39;;92586:121;;;;:::o;23714:33::-;;;;:::o;37246:224::-;37324:4;21777:18;;21794:1;21777:18;;;;37324:4;37349:16;:14;:16::i;:::-;:40;37341:75;;;;;-1:-1:-1;;;37341:75:0;;;;;;;;;;;;-1:-1:-1;;;37341:75:0;;;;;;;;;;;;;;;37434:28;37454:7;37434:19;:28::i;:::-;37427:35;;21853:1;21889:13;;21873:12;:29;21865:52;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;;;;37246:224;;;;:::o;24350:26::-;;;;:::o;40091:261::-;40142:4;40160:13;40175:11;40190:28;:26;:28::i;:::-;40159:59;;-1:-1:-1;40159:59:0;-1:-1:-1;40244:18:0;40237:3;:25;;;;;;;;;40229:91;;;;-1:-1:-1;;;40229:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40338:6;-1:-1:-1;;40091:261:0;;:::o;30873:195::-;30968:4;21777:18;;21794:1;21777:18;;;;30968:4;30992:44;31007:10;31019:3;31024;31029:6;30992:14;:44::i;:::-;:68;30985:75;;21853:1;21889:13;;21873:12;:29;21865:52;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;;;;30873:195;;;;;;:::o;92995:161::-;93076:4;93100:48;93126:8;93136:11;93100:25;:48::i;:::-;93093:55;92995:161;-1:-1:-1;;;92995:161:0:o;23142:35::-;;;-1:-1:-1;;;;;23142:35:0;;:::o;86691:477::-;86818:5;;86783:4;;-1:-1:-1;;;;;86818:5:0;86804:10;:19;86800:136;;86847:77;86852:22;86876:47;86847:4;:77::i;:::-;86840:84;;;;86800:136;87064:17;:40;;-1:-1:-1;;;;;;87064:40:0;-1:-1:-1;;;;;87064:40:0;;;;;;;;;;;87115:45;;87142:17;87115:26;:45::i;22637:20::-;;;;:::o;32806:319::-;32868:4;32885:23;;:::i;:::-;32911:38;;;;;;;;32926:21;:19;:21::i;:::-;32911:38;;-1:-1:-1;;;;;33025:20:0;;32961:14;33025:20;;;:13;:20;;;;;;32885:64;;-1:-1:-1;32961:14:0;;;32993:53;;32885:64;;32993:17;:53::i;:::-;32960:86;;-1:-1:-1;32960:86:0;-1:-1:-1;33073:18:0;33065:4;:26;;;;;;;;;33057:35;;;;;;33110:7;32806:319;-1:-1:-1;;;;32806:319:0:o;41928:88::-;41970:4;41994:14;:12;:14::i;:::-;41987:21;;41928:88;:::o;24114:24::-;;;;:::o;82772:571::-;82847:4;21777:18;;21794:1;21777:18;;;;82847:4;82877:16;:14;:16::i;:::-;82864:29;-1:-1:-1;82908:29:0;;82904:277;;83099:70;83110:5;83104:12;;;;;;;;83118:50;83099:4;:70::i;:::-;83092:77;;;;;82904:277;83301:34;83322:12;83301:20;:34::i;:::-;83294:41;;;21889:13;;21873:12;:29;21865:52;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;;;23578:39;;;;:::o;23837:30::-;;;;:::o;90523:25::-;;;-1:-1:-1;;;;;90523:25:0;;:::o;32438:112::-;-1:-1:-1;;;;;32522:20:0;32495:7;32522:20;;;:13;:20;;;;;;;32438:112::o;36763:192::-;36825:4;21777:18;;21794:1;21777:18;;;;36825:4;36850:16;:14;:16::i;:::-;:40;36842:75;;;;;-1:-1:-1;;;36842:75:0;;;;;;;;;;;;-1:-1:-1;;;36842:75:0;;;;;;;;;;;;;;;36935:12;;36928:19;;21889:13;;21873:12;:29;21865:52;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;;;;36763:192;;:::o;79590:725::-;79734:5;;79665:4;;-1:-1:-1;;;;;79734:5:0;79720:10;:19;79716:123;;79763:64;79768:18;79788:38;79763:4;:64::i;79716:123::-;79887:10;;79991:28;;;-1:-1:-1;;;79991:28:0;;;;-1:-1:-1;;;;;79887:10:0;;;;79991:26;;;;;:28;;;;;;;;;;;;;;:26;:28;;;5:2:-1;;;;30:1;27;20:12;5:2;79991:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;79991:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;79991:28:0;79983:69;;;;;-1:-1:-1;;;79983:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;80118:10;:26;;-1:-1:-1;;;;;;80118:26:0;-1:-1:-1;;;;;80118:26:0;;;;;;;;;80224:43;;;;;;;;;;;;;;;;;;;;;;;;;;;80292:14;80280:27;79590:725;-1:-1:-1;;;79590:725:0:o;91864:133::-;91927:4;91951:38;91976:12;91951:24;:38::i;24244:25::-;;;;:::o;22329:36::-;22361:4;22329:36;:::o;22537:20::-;;;;;;;;;;;;;;-1:-1:-1;;22537:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37679:287;37746:4;37764:13;37779:11;37794:36;37822:7;37794:27;:36::i;:::-;37763:67;;-1:-1:-1;37763:67:0;-1:-1:-1;37856:18:0;37849:3;:25;;;;;;;;;37841:93;;;;-1:-1:-1;;;37841:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90939:105;90988:4;91012:24;91025:10;91012:12;:24::i;42643:3646::-;42685:4;42702:35;;:::i;:::-;42852:17;;-1:-1:-1;;;;;42852:17:0;:31;42884:14;:12;:14::i;:::-;42900:12;;42914:13;;42852:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42852:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42852:76:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42852:76:0;;;;;;;;42825:23;;42808:120;;;42809:14;;;42808:120;22800:4;-1:-1:-1;42949:48:0;42941:89;;;;;-1:-1:-1;;;42941:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;43045:14;;;;:19;43041:178;;43088:119;43099:31;43132:58;43192:4;:14;;;43088:10;:119::i;:::-;43081:126;;;;;43041:178;43306:16;:14;:16::i;:::-;43280:23;;;:42;;;43479:18;;43446:52;;43280:42;43446:7;:52::i;:::-;43427:15;;;43412:86;;;43413:4;43412:86;;;;;;;;;;;;;;;;;;;-1:-1:-1;43532:18:0;;-1:-1:-1;43516:12:0;;:34;;;;;;;;;43509:42;;;;44150:68;44160:40;;;;;;;;44175:4;:23;;;44160:40;;;44202:4;:15;;;44150:9;:68::i;:::-;44121:25;;;44106:112;;;44107:4;44106:112;;;;;;;;;;;;;;;;;;;-1:-1:-1;44249:18:0;;-1:-1:-1;44233:12:0;;:34;;;;;;;;;44229:193;;44291:119;44302:16;44320:69;44396:4;:12;;;44391:18;;;;;;;;44291:10;:119::i;44229:193::-;44477:58;44495:4;:25;;;44522:12;;44477:17;:58::i;:::-;44449:24;;;44434:101;;;44435:4;44434:101;;;;;;;;;;;;;;;;;;;-1:-1:-1;44566:18:0;;-1:-1:-1;44550:12:0;;:34;;;;;;;;;44546:191;;44608:117;44619:16;44637:67;44711:4;:12;;;44706:18;;;;;;;44546:191;44788:47;44796:4;:24;;;44822:12;;44788:7;:47::i;:::-;44764:20;;;44749:86;;;44750:4;44749:86;;;;;;;;;;;;;;;;;;;-1:-1:-1;44866:18:0;;-1:-1:-1;44850:12:0;;:34;;;;;;;;;44846:188;;44908:114;44919:16;44937:64;45008:4;:12;;;45003:18;;;;;;;44846:188;45086:105;45111:38;;;;;;;;45126:21;;45111:38;;;45151:4;:24;;;45177:13;;45086:24;:105::i;:::-;45061:21;;;45046:145;;;45047:4;45046:145;;;;;;;;;;;;;;;;;;;-1:-1:-1;45222:18:0;;-1:-1:-1;45206:12:0;;:34;;;;;;;;;45202:189;;45264:115;45275:16;45293:65;45365:4;:12;;;45360:18;;;;;;;45202:189;45441:77;45466:4;:25;;;45493:11;;45506;;45441:24;:77::i;:::-;45418:19;;;45403:115;;;45404:4;45403:115;;;;;;;;;;;;;;;;;;;-1:-1:-1;45549:18:0;;-1:-1:-1;45533:12:0;;:34;;;;;;;;;45529:187;;45591:113;45602:16;45620:63;45690:4;:12;;;45685:18;;;;;;;45529:187;45940:23;;;;;45919:18;:44;45988:19;;;;45974:11;:33;;;46033:20;;;;46018:12;:35;;;46080:21;;;;46064:13;:37;46181:24;;;;46166:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46266:14;46254:27;;;42643:3646;:::o;30381:185::-;30459:4;21777:18;;21794:1;21777:18;;;;30459:4;30483:51;30498:10;30510;30522:3;30527:6;30483:14;:51::i;:::-;:75;30476:82;;21853:1;21889:13;;21873:12;:29;21865:52;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;;;;30381:185;;;;;:::o;23979:23::-;;;;:::o;35119:1498::-;35172:4;35423:25;35451:20;:18;:20::i;:::-;35521:17;;35423:48;;-1:-1:-1;35485:7:0;;;;-1:-1:-1;;;;;35521:17:0;:31;35553:14;:12;:14::i;:::-;35569:12;;35583:13;;35521:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35521:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35521:76:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35521:76:0;;;;;;;;;-1:-1:-1;35521:76:0;-1:-1:-1;35616:7:0;;35608:69;;;;-1:-1:-1;;;35608:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35706:12;35720:21;;:::i;:::-;35745:61;35755:37;;;;;;;;35770:20;35755:37;;;35794:11;;35745:9;:61::i;:::-;35705:101;;-1:-1:-1;35705:101:0;-1:-1:-1;35831:18:0;35825:2;:24;;;;;;;;;35817:86;;;;-1:-1:-1;;;35817:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35917:12;35931:21;;:::i;:::-;35956:40;35971:12;;35985:10;35956:14;:40::i;:::-;35916:80;;-1:-1:-1;35916:80:0;-1:-1:-1;36021:18:0;36015:2;:24;;;;;;;;;36007:86;;;;-1:-1:-1;;;36007:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36107:12;36121:32;;:::i;:::-;36157:76;36164:28;;;;;;;;11426:4;36164:28;;;36194:38;;;;;;;;36209:21;;36194:38;;;36157:6;:76::i;:::-;36106:127;;-1:-1:-1;36106:127:0;-1:-1:-1;36258:18:0;36252:2;:24;;;;;;;;;36244:97;;;;-1:-1:-1;;;36244:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36355:12;36369:21;;:::i;:::-;36394:79;36402:35;;;;;;;;36417:18;36402:35;;;36439:21;36462:10;36394:7;:79::i;:::-;36354:119;;-1:-1:-1;36354:119:0;-1:-1:-1;36498:18:0;36492:2;:24;;;;;;;;;36484:86;;;;-1:-1:-1;;;36484:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36590:19;;-1:-1:-1;;;;;;;;;;;35119:1498:0;:::o;75033:2117::-;75135:4;21777:18;;21794:1;21777:18;;;;75208:10;;:85;;;-1:-1:-1;;;75208:85:0;;75240:4;75208:85;;;;75247:10;75208:85;;;;-1:-1:-1;;;;;75208:85:0;;;;;;;;;;;;;;;;;;;;;;75135:4;;75208:10;;;;;:23;;:85;;;;;;;;;;;;;;;75135:4;75208:10;:85;;;5:2:-1;;;;30:1;27;20:12;5:2;75208:85:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;75208:85:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;75208:85:0;;-1:-1:-1;75308:12:0;;75304:149;;75344:97;75355:26;75383:48;75433:7;75344:10;:97::i;:::-;75337:104;;;;;75304:149;75526:10;-1:-1:-1;;;;;75514:22:0;:8;-1:-1:-1;;;;;75514:22:0;;75510:146;;;75560:84;75565:26;75593:50;75560:4;:84::i;75510:146::-;-1:-1:-1;;;;;76080:23:0;;75668:17;76080:23;;;:13;:23;;;;;;75668:17;;;;76072:45;;76105:11;76072:7;:45::i;:::-;76041:76;;-1:-1:-1;76041:76:0;-1:-1:-1;76143:18:0;76132:7;:29;;;;;;;;;76128:166;;76185:97;76196:16;76214:52;76273:7;76268:13;;;;;;;76185:97;76178:104;;;;;;;;76128:166;-1:-1:-1;;;;;76347:25:0;;;;;;:13;:25;;;;;;76339:47;;76374:11;76339:7;:47::i;:::-;76306:80;;-1:-1:-1;76306:80:0;-1:-1:-1;76412:18:0;76401:7;:29;;;;;;;;;76397:166;;76454:97;76465:16;76483:52;76542:7;76537:13;;;;;;;76397:166;-1:-1:-1;;;;;76766:23:0;;;;;;;:13;:23;;;;;;;;:43;;;76820:25;;;;;;;;;;:47;;;76922:43;;;;;;;76820:25;;-1:-1:-1;;;;;;;;;;;76922:43:0;;;;;;;;;;77018:10;;:84;;;-1:-1:-1;;;77018:84:0;;77049:4;77018:84;;;;77056:10;77018:84;;;;-1:-1:-1;;;;;77018:84:0;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:22;;:84;;;;;:10;;:84;;;;;;;:10;;:84;;;5:2:-1;;;;30:1;27;20:12;5:2;77018:84:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;77127:14:0;;-1:-1:-1;77122:20:0;;-1:-1:-1;;77122:20:0;;77115:27;;;;;;21889:13;;21873:12;:29;21865:52;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;;;77700:647;77845:5;;77777:4;;-1:-1:-1;;;;;77845:5:0;77831:10;:19;77827:126;;77874:67;77879:18;77899:41;77874:4;:67::i;77827:126::-;78052:12;;;-1:-1:-1;;;;;78135:30:0;;;-1:-1:-1;;;;;;78135:30:0;;;;;;;78250:49;;;78052:12;;;;78250:49;;;;;;;;;;;;;;;;;;;;;;;78324:14;78319:20;;39643:198;39703:4;21777:18;;21794:1;21777:18;;;;39703:4;39728:16;:14;:16::i;:::-;:40;39720:75;;;;;-1:-1:-1;;;39720:75:0;;;;;;;;;;;;-1:-1:-1;;;39720:75:0;;;;;;;;;;;;;;;39813:20;:18;:20::i;:::-;39806:27;;21889:13;;21873:12;:29;21865:52;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;;;33470:703;-1:-1:-1;;;;;33594:22:0;;33538:4;33594:22;;;:13;:22;;;;;;33538:4;;;;;;;;;33745:36;33608:7;33745:27;:36::i;:::-;33721:60;-1:-1:-1;33721:60:0;-1:-1:-1;33804:18:0;33796:4;:26;;;;;;;;;33792:99;;33852:16;33847:22;33839:40;-1:-1:-1;33871:1:0;;-1:-1:-1;33871:1:0;;-1:-1:-1;33871:1:0;;-1:-1:-1;33839:40:0;;-1:-1:-1;;;;33839:40:0;33792:99;33934:28;:26;:28::i;:::-;33903:59;-1:-1:-1;33903:59:0;-1:-1:-1;33985:18:0;33977:4;:26;;;;;;;;;33973:99;;34033:16;34028:22;;33973:99;-1:-1:-1;34097:14:0;;-1:-1:-1;34114:13:0;;-1:-1:-1;34129:13:0;-1:-1:-1;34129:13:0;-1:-1:-1;33470:703:0;;;;;;:::o;92265:113::-;92318:4;92342:28;92357:12;92342:14;:28::i;91395:113::-;91448:4;91472:28;91487:12;91472:14;:28::i;32105:143::-;-1:-1:-1;;;;;32206:25:0;;;32179:7;32206:25;;;:18;:25;;;;;;;;:34;;;;;;;;;;;;;32105:143::o;78625:742::-;78775:12;;78667:4;;-1:-1:-1;;;;;78775:12:0;78761:10;:26;;;:54;;-1:-1:-1;78791:10:0;:24;78761:54;78757:164;;;78839:70;78844:18;78864:44;78839:4;:70::i;:::-;78832:77;;;;78757:164;79005:5;;;79047:12;;;-1:-1:-1;;;;;79047:12:0;;;-1:-1:-1;;;;;;79120:20:0;;;;;;;;;79189:25;;;;;;79232;;;79005:5;;;79232:25;;;79251:5;;;;79232:25;;;;;;79047:12;;79232:25;;;;;;;;;79306:12;;79273:46;;;-1:-1:-1;;;;;79273:46:0;;;;;79306:12;;;79273:46;;;;;;;;;;;;;;;;79344:14;79332:27;;;;78625:742;:::o;98473:466::-;98605:5;;98536:4;;-1:-1:-1;;;;;98605:5:0;98591:10;:19;98587:123;;98634:64;98639:18;98659:38;98634:4;:64::i;98587:123::-;98775:10;:26;;-1:-1:-1;;;;;;98775:26:0;-1:-1:-1;;;;;98775:26:0;;;;;;;;;;;98812:40;;;-1:-1:-1;;;98812:40:0;;;;98827:10;;;;;98812:38;;:40;;;;;;;;;;;;;;;98827:10;98812:40;;;5:2:-1;;;;30:1;27;20:12;5:2;98812:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;98812:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;98916:14:0;;-1:-1:-1;98911:20:0;;86050:633;86137:4;86154:10;86167:16;:14;:16::i;:::-;86154:29;-1:-1:-1;86198:29:0;;86194:298;;86402:78;86413:5;86407:12;;;;;;;;86421:58;86402:4;:78::i;:::-;86395:85;;;;;86194:298;86627:48;86654:20;86627:26;:48::i;23407:42::-;;;-1:-1:-1;;;;;23407:42:0;;:::o;93638:200::-;93742:4;93766:64;93790:8;93800:11;93813:16;93766:23;:64::i;23268:37::-;;;-1:-1:-1;;;;;23268:37:0;;:::o;23031:28::-;;;-1:-1:-1;;;;;23031:28:0;;:::o;34601:342::-;34715:17;;34654:4;;;;;;-1:-1:-1;;;;;34715:17:0;:31;34747:14;:12;:14::i;:::-;34763:12;;34777:13;;34715:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34715:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34715:76:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34715:76:0;;;;;;;;;-1:-1:-1;34715:76:0;-1:-1:-1;34810:14:0;;34802:82;;;;-1:-1:-1;;;34802:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80618:607;80707:4;21777:18;;21794:1;21777:18;;;;80707:4;80737:16;:14;:16::i;:::-;80724:29;-1:-1:-1;80768:29:0;;80764:286;;80965:73;80976:5;80970:12;;;;;;;;80984:53;80965:4;:73::i;80764:286::-;81169:48;81192:24;81169:22;:48::i;63433:561::-;63511:4;21777:18;;21794:1;21777:18;;;;63511:4;63541:16;:14;:16::i;:::-;63528:29;-1:-1:-1;63572:29:0;;63568:255;;63744:67;63755:5;63749:12;;;;;;;;63763:47;63744:4;:67::i;63568:255::-;63933:53;63950:10;63962;63974:11;63933:16;:53::i;40616:1142::-;40677:9;40688:4;40709:11;;40724:1;40709:16;40705:1046;;;-1:-1:-1;;40902:27:0;;40882:18;;40874:56;;40705:1046;41112:14;41129;:12;:14::i;:::-;41112:31;;41158:33;41206:23;;:::i;:::-;41244:17;41320:54;41335:9;41346:12;;41360:13;;41320:14;:54::i;:::-;41278:96;-1:-1:-1;41278:96:0;-1:-1:-1;41404:18:0;41393:7;:29;;;;;;;;;41389:89;;41451:7;-1:-1:-1;41460:1:0;;-1:-1:-1;41443:19:0;;-1:-1:-1;;;41443:19:0;41389:89;41520:49;41527:28;41557:11;;41520:6;:49::i;:::-;41494:75;-1:-1:-1;41494:75:0;-1:-1:-1;41599:18:0;41588:7;:29;;;;;;;;;41584:89;;41646:7;-1:-1:-1;41655:1:0;;-1:-1:-1;41638:19:0;;-1:-1:-1;;;41638:19:0;41584:89;-1:-1:-1;41717:21:0;41697:18;;-1:-1:-1;41717:21:0;-1:-1:-1;41689:50:0;;-1:-1:-1;;41689:50:0;40705:1046;40616:1142;;:::o;27825:2295::-;27999:10;;:59;;;-1:-1:-1;;;27999:59:0;;28034:4;27999:59;;;;-1:-1:-1;;;;;27999:59:0;;;;;;;;;;;;;;;;;;;;;;27923:4;;;;27999:10;;:26;;:59;;;;;;;;;;;;;;27923:4;27999:10;:59;;;5:2:-1;;;;30:1;27;20:12;5:2;27999:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27999:59:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27999:59:0;;-1:-1:-1;28073:12:0;;28069:142;;28109:90;28120:26;28148:41;28191:7;28109:10;:90::i;:::-;28102:97;;;;;28069:142;28277:3;-1:-1:-1;;;;;28270:10:0;:3;-1:-1:-1;;;;;28270:10:0;;28266:105;;;28304:55;28309:15;28326:32;28304:4;:55::i;28266:105::-;28448:22;-1:-1:-1;;;;;28489:14:0;;;;;;;28485:160;;;-1:-1:-1;;;28485:160:0;;;-1:-1:-1;;;;;;28601:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;;28485:160;28723:17;28751;28779;28807;28863:34;28871:17;28890:6;28863:7;:34::i;:::-;28837:60;;-1:-1:-1;28837:60:0;-1:-1:-1;28923:18:0;28912:7;:29;;;;;;;;;28908:125;;28965:56;28970:16;28988:32;28965:4;:56::i;:::-;28958:63;;;;;;;;;;28908:125;-1:-1:-1;;;;;29079:18:0;;;;;;:13;:18;;;;;;29071:35;;29099:6;29071:7;:35::i;:::-;29045:61;;-1:-1:-1;29045:61:0;-1:-1:-1;29132:18:0;29121:7;:29;;;;;;;;;29117:124;;29174:55;29179:16;29197:31;29174:4;:55::i;29117:124::-;-1:-1:-1;;;;;29287:18:0;;;;;;:13;:18;;;;;;29279:35;;29307:6;29279:7;:35::i;:::-;29253:61;;-1:-1:-1;29253:61:0;-1:-1:-1;29340:18:0;29329:7;:29;;;;;;;;;29325:122;;29382:53;29387:16;29405:29;29382:4;:53::i;29325:122::-;-1:-1:-1;;;;;29580:18:0;;;;;;;:13;:18;;;;;;:33;;;29624:18;;;;;;:33;;;-1:-1:-1;;29730:29:0;;29726:109;;-1:-1:-1;;;;;29776:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;:47;;;29726:109;29906:3;-1:-1:-1;;;;;29892:26:0;29901:3;-1:-1:-1;;;;;29892:26:0;-1:-1:-1;;;;;;;;;;;29911:6:0;29892:26;;;;;;;;;;;;;;;;;;30014:10;;:58;;;-1:-1:-1;;;30014:58:0;;30048:4;30014:58;;;;-1:-1:-1;;;;;30014:58:0;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:25;;:58;;;;;:10;;:58;;;;;;;:10;;:58;;;5:2:-1;;;;30:1;27;20:12;5:2;30014:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;30097:14:0;;-1:-1:-1;30092:20:0;;-1:-1:-1;;30092:20:0;;30085:27;27825:2295;-1:-1:-1;;;;;;;;;;;27825:2295:0:o;64282:583::-;64384:4;21777:18;;21794:1;21777:18;;;;64384:4;64414:16;:14;:16::i;:::-;64401:29;-1:-1:-1;64445:29:0;;64441:255;;64617:67;64628:5;64622:12;;;;;;;;64636:47;64617:4;:67::i;:::-;64610:74;;;;;64441:255;64806:51;64823:10;64835:8;64845:11;64806:16;:51::i;:::-;64799:58;;;21889:13;;21873:12;:29;21865:52;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;;;6832:153;6893:4;6915:33;6928:3;6923:9;;;;;;;;6939:4;6934:10;;;;;;;;6915:33;;;;;;;;;;;;;6946:1;6915:33;;;;;;;;;;;;;6973:3;6968:9;;;;;;;87502:1352;87802:5;;87596:4;;;;-1:-1:-1;;;;;87802:5:0;87788:10;:19;87784:132;;87831:73;87836:18;87856:47;87831:4;:73::i;87784:132::-;88042:16;:14;:16::i;:::-;88020:18;;:38;88016:208;;88135:77;88140:22;88164:47;88135:4;:77::i;88016:208::-;88318:17;;;;;;;;;-1:-1:-1;;;;;88318:17:0;88295:40;;88438:20;-1:-1:-1;;;;;88438:40:0;;:42;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;88438:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;88438:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;88438:42:0;88430:83;;;;;-1:-1:-1;;;88430:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;88590:17;:40;;-1:-1:-1;;;;;;88590:40:0;-1:-1:-1;;;;;88590:40:0;;;;;;;;;88736:70;;;;;;;;;;;;;;;;;;;;;;;;;;;88831:14;88826:20;;12929:313;13006:9;13017:4;13035:13;13050:18;;:::i;:::-;13072:20;13082:1;13085:6;13072:9;:20::i;:::-;13034:58;;-1:-1:-1;13034:58:0;-1:-1:-1;13114:18:0;13107:3;:25;;;;;;;;;13103:73;;-1:-1:-1;13157:3:0;-1:-1:-1;13162:1:0;;-1:-1:-1;13149:15:0;;13103:73;13196:18;13216:17;13225:7;13216:8;:17::i;:::-;13188:46;;;;;;12929:313;;;;;;:::o;94106:169::-;94208:10;;94237:30;;;-1:-1:-1;;;94237:30:0;;94261:4;94237:30;;;;;;94153:4;;-1:-1:-1;;;;;94208:10:0;;;;94237:15;;:30;;;;;;;;;;;;;;;94208:10;94237:30;;;5:2:-1;;;;30:1;27;20:12;5:2;94237:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;94237:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;94237:30:0;;-1:-1:-1;;94106:169:0;:::o;83620:2061::-;83851:5;;83687:4;;;;;;-1:-1:-1;;;;;83851:5:0;83837:10;:19;83833:124;;83880:65;83885:18;83905:39;83880:4;:65::i;:::-;83873:72;;;;;;83833:124;84083:16;:14;:16::i;:::-;84061:18;;:38;84057:200;;84176:69;84181:22;84205:39;84176:4;:69::i;84057:200::-;84363:12;84346:14;:12;:14::i;:::-;:29;84342:152;;;84399:83;84404:29;84435:46;84399:4;:83::i;84342:152::-;84743:13;;84728:12;:28;84724:129;;;84780:61;84785:15;84802:38;84780:4;:61::i;84724:129::-;-1:-1:-1;85005:13:0;;:28;;;;85141:33;;;85133:82;;;;-1:-1:-1;;;85133:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85289:13;:32;;;85408:5;;85394:34;;-1:-1:-1;;;;;85408:5:0;85415:12;85394:13;:34::i;:::-;85388:40;-1:-1:-1;85507:14:0;85500:3;:21;;;;;;;;;85492:69;;;;-1:-1:-1;;;85492:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85595:5;;85579:54;;;-1:-1:-1;;;;;85595:5:0;;;85579:54;;;;;;;;;;;;;;;;;;;;;;;;85658:14;85646:27;83620:2061;-1:-1:-1;;;;83620:2061:0:o;52694:537::-;52778:4;21777:18;;21794:1;21777:18;;;;52778:4;52808:16;:14;:16::i;:::-;52795:29;-1:-1:-1;52839:29:0;;52835:249;;53011:61;53022:5;53016:12;;;;;;;;53030:41;53011:4;:61::i;52835:249::-;53183:40;53195:10;53207:1;53210:12;53183:11;:40::i;38220:1268::-;-1:-1:-1;;;;;38569:23:0;;38297:9;38569:23;;;:14;:23;;;;;38798:24;;38297:9;;;;;;;;38794:92;;-1:-1:-1;38852:18:0;;-1:-1:-1;38852:18:0;;-1:-1:-1;38844:30:0;;-1:-1:-1;;;38844:30:0;38794:92;39113:46;39121:14;:24;;;39147:11;;39113:7;:46::i;:::-;39080:79;;-1:-1:-1;39080:79:0;-1:-1:-1;39185:18:0;39174:7;:29;;;;;;;;;39170:81;;-1:-1:-1;39228:7:0;;-1:-1:-1;39237:1:0;;-1:-1:-1;39220:19:0;;-1:-1:-1;;39220:19:0;39170:81;39283:58;39291:19;39312:14;:28;;;39283:7;:58::i;:::-;39263:78;;-1:-1:-1;39263:78:0;-1:-1:-1;39367:18:0;39356:7;:29;;;;;;;;;39352:81;;-1:-1:-1;39410:7:0;;-1:-1:-1;39419:1:0;;-1:-1:-1;39402:19:0;;-1:-1:-1;;39402:19:0;39352:81;-1:-1:-1;39453:18:0;;-1:-1:-1;39473:6:0;-1:-1:-1;;;38220:1268:0;;;;:::o;46647:536::-;46717:4;21777:18;;21794:1;21777:18;;;;46717:4;46747:16;:14;:16::i;:::-;46734:29;-1:-1:-1;46778:29:0;;46774:247;;46950:59;46961:5;46955:12;;;;;;;;46969:39;46950:4;:59::i;46774:247::-;47142:33;47152:10;47164;47142:9;:33::i;6993:187::-;7078:4;7100:43;7113:3;7108:9;;;;;;;;7124:4;7119:10;;;;;;;;7100:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;7168:3;7163:9;;;;;;;34332:93;34405:12;34332:93;:::o;1442:236::-;1498:9;1509:4;1535:1;1530;:6;1526:145;;-1:-1:-1;1561:18:0;;-1:-1:-1;1581:5:0;;;1553:34;;1526:145;-1:-1:-1;1628:27:0;;-1:-1:-1;1657:1:0;1620:39;;12568:353;12637:9;12648:10;;:::i;:::-;12672:14;12688:19;12711:27;12719:1;:10;;;12731:6;12711:7;:27::i;:::-;12671:67;;-1:-1:-1;12671:67:0;-1:-1:-1;12761:18:0;12753:4;:26;;;;;;;;;12749:92;;-1:-1:-1;12810:18:0;;;;;;;;;-1:-1:-1;12810:18:0;;12804:4;;-1:-1:-1;12810:18:0;-1:-1:-1;12796:33:0;;12749:92;12881:31;;;;;;;;;;;;-1:-1:-1;;12881:31:0;;-1:-1:-1;12568:353:0;-1:-1:-1;;;;12568:353:0:o;1763:258::-;1819:9;;1856:5;;;1878:6;;;1874:140;;1909:18;;-1:-1:-1;1929:1:0;-1:-1:-1;1901:30:0;;1874:140;-1:-1:-1;1972:26:0;;-1:-1:-1;2000:1:0;;-1:-1:-1;1964:38:0;;13250:328;13347:9;13358:4;13376:13;13391:18;;:::i;:::-;13413:20;13423:1;13426:6;13413:9;:20::i;:::-;13375:58;;-1:-1:-1;13375:58:0;-1:-1:-1;13455:18:0;13448:3;:25;;;;;;;;;13444:73;;-1:-1:-1;13498:3:0;-1:-1:-1;13503:1:0;;-1:-1:-1;13490:15:0;;13444:73;13536:34;13544:17;13553:7;13544:8;:17::i;:::-;13563:6;13536:7;:34::i;:::-;13529:41;;;;;;13250:328;;;;;;;:::o;13951:620::-;14031:9;14042:10;;:::i;:::-;14349:14;14365;14383:25;11426:4;14401:6;14383:7;:25::i;:::-;14348:60;;-1:-1:-1;14348:60:0;-1:-1:-1;14431:18:0;14423:4;:26;;;;;;;;;14419:92;;-1:-1:-1;14480:18:0;;;;;;;;;-1:-1:-1;14480:18:0;;14474:4;;-1:-1:-1;14480:18:0;-1:-1:-1;14466:33:0;;14419:92;14528:35;14535:9;14546:7;:16;;;14528:6;:35::i;12335:225::-;12402:9;12413:10;;:::i;:::-;12437:15;12454:11;12469:31;12477:1;:10;;;12489:1;:10;;;12469:7;:31::i;:::-;12528:23;;;;;;;;;;;;12436:64;;12528:23;;-1:-1:-1;12335:225:0;-1:-1:-1;;;;;12335:225:0:o;16226:284::-;16308:9;16319:10;;:::i;:::-;16343:13;16358;;:::i;:::-;16375:12;16382:1;16385;16375:6;:12::i;:::-;16342:45;;-1:-1:-1;16342:45:0;-1:-1:-1;16409:18:0;16402:3;:25;;;;;;;;;16398:74;;16452:3;;-1:-1:-1;16457:2:0;-1:-1:-1;16444:16:0;;16398:74;16489:13;16496:2;16500:1;16489:6;:13::i;59090:524::-;59164:4;21777:18;;21794:1;21777:18;;;;59164:4;59194:16;:14;:16::i;:::-;59181:29;-1:-1:-1;59225:29:0;;59221:249;;59397:61;59408:5;59402:12;;;;;;;;59416:41;59397:4;:61::i;59221:249::-;59569:37;59581:10;59593:12;59569:11;:37::i;51811:527::-;51885:4;21777:18;;21794:1;21777:18;;;;51885:4;51915:16;:14;:16::i;:::-;51902:29;-1:-1:-1;51946:29:0;;51942:249;;52118:61;52129:5;52123:12;;;;;;;51942:249;52290:40;52302:10;52314:12;52328:1;52290:11;:40::i;69760:969::-;69885:4;21777:18;;21794:1;21777:18;;;;69885:4;69915:16;:14;:16::i;:::-;69902:29;-1:-1:-1;69946:29:0;;69942:264;;70123:71;70134:5;70128:12;;;;;;;;70142:51;70123:4;:71::i;69942:264::-;70226:16;-1:-1:-1;;;;;70226:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;70226:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;70226:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;70226:33:0;;-1:-1:-1;70274:29:0;;70270:268;;70451:75;70462:5;70456:12;;;;;;;;70470:55;70451:4;:75::i;70270:268::-;70648:73;70669:10;70681:8;70691:11;70704:16;70648:20;:73::i;:::-;70641:80;;;21889:13;;21873:12;:29;21865:52;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;-1:-1:-1;;;21865:52:0;;;;;;;;;;;;;;81493:1026;81643:5;;81574:4;;-1:-1:-1;;;;;81643:5:0;81629:10;:19;81625:127;;81672:68;81677:18;81697:42;81672:4;:68::i;81625:127::-;81859:16;:14;:16::i;:::-;81837:18;;:38;81833:203;;81952:72;81957:22;81981:42;81952:4;:72::i;81833:203::-;22952:4;82108:24;:51;82104:157;;;82183:66;82188:15;82205:43;82183:4;:66::i;82104:157::-;82305:21;;;82337:48;;;;82403:68;;;;;;;;;;;;;;;;;;;;;;;;;82496:14;82491:20;;65492:3786;65666:10;;:74;;;-1:-1:-1;;;65666:74:0;;65704:4;65666:74;;;;-1:-1:-1;;;;;65666:74:0;;;;;;;;;;;;;;;;;;;;;;65587:4;;;;65666:10;;:29;;:74;;;;;;;;;;;;;;65587:4;65666:10;:74;;;5:2:-1;;;;30:1;27;20:12;5:2;65666:74:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;65666:74:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;65666:74:0;;-1:-1:-1;65755:12:0;;65751:146;;65791:94;65802:26;65830:45;65877:7;65791:10;:94::i;:::-;65784:101;;;;;65751:146;66007:16;:14;:16::i;:::-;65985:18;;:38;65981:148;;66047:70;66052:22;66076:40;66047:4;:70::i;65981:148::-;66141:32;;:::i;:::-;-1:-1:-1;;;;;66287:24:0;;;;;;:14;:24;;;;;:38;;;66266:18;;;:59;66456:37;66302:8;66456:27;:37::i;:::-;66433:19;;;66418:75;;;66419:12;;;66418:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;66524:18:0;;-1:-1:-1;66508:4:0;:12;;;:34;;;;;;;;;66504:187;;66566:113;66577:16;66595:63;66665:4;:12;;;66660:18;;;;;;;66566:113;66559:120;;;;;;66504:187;-1:-1:-1;;66773:11:0;:23;66769:157;;;66832:19;;;;66813:16;;;:38;66769:157;;;66884:16;;;:30;;;66769:157;66994:40;67010:5;67017:4;:16;;;66994:15;:40::i;:::-;66983:4;;:51;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67061:14:0;67049:8;;:26;;;;;;;;;67045:131;;67104:8;;67099:65;;67114:49;67099:4;:65::i;67045:131::-;67465:46;67473:4;:19;;;67494:4;:16;;;67465:7;:46::i;:::-;67439:22;;;67424:87;;;67425:12;;;67424:87;;;;;;;;;;;;;;;;;;;-1:-1:-1;67542:18:0;;-1:-1:-1;67526:4:0;:12;;;:34;;;;;;;;;67522:194;;67584:120;67595:16;67613:70;67690:4;:12;;;67685:18;;;;;;;67522:194;67767:39;67775:12;;67789:4;:16;;;67767:7;:39::i;:::-;67743:20;;;67728:78;;;67729:12;;;67728:78;;;;;;;;;;;;;;;;;;;-1:-1:-1;67837:18:0;;-1:-1:-1;67821:4:0;:12;;;:34;;;;;;;;;67817:185;;67879:111;67890:16;67908:61;67976:4;:12;;;67971:18;;;;;;;67817:185;68557:37;68570:5;68577:4;:16;;;68557:12;:37::i;:::-;68546:4;;:48;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68625:14:0;68613:8;;:26;;;;;;;;;68605:70;;;;;-1:-1:-1;;;68605:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;68795:22;;;;;;-1:-1:-1;;;;;68758:24:0;;;;;;;:14;:24;;;;;;;;;:59;;;68869:11;;68828:38;;;;:52;;;;68906:20;;;;68891:12;:35;;;69016:16;;;;69034:22;;68987:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69132:10;;69193:16;;;;;69211:18;;;;69132:98;;-1:-1:-1;;;69132:98:0;;69169:4;69132:98;;;;-1:-1:-1;;;;;69132:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:10;;;:28;;:98;;;;;:10;;:98;;;;;;;;:10;;:98;;;5:2:-1;;;;30:1;27;20:12;5:2;69132:98:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;69255:14:0;;-1:-1:-1;69250:20:0;;-1:-1:-1;;69250:20:0;;69243:27;65492:3786;-1:-1:-1;;;;;;65492:3786:0:o;2090:271::-;2161:9;2172:4;2190:14;2206:8;2218:13;2226:1;2229;2218:7;:13::i;:::-;2189:42;;-1:-1:-1;2189:42:0;-1:-1:-1;2256:18:0;2248:4;:26;;;;;;;;;2244:75;;-1:-1:-1;2299:4:0;-1:-1:-1;2305:1:0;;-1:-1:-1;2291:16:0;;2244:75;2338:15;2346:3;2351:1;2338:7;:15::i;11579:515::-;11640:9;11651:10;;:::i;:::-;11675:14;11691:20;11715:22;11723:3;11426:4;11715:7;:22::i;:::-;11674:63;;-1:-1:-1;11674:63:0;-1:-1:-1;11760:18:0;11752:4;:26;;;;;;;;;11748:92;;-1:-1:-1;11809:18:0;;;;;;;;;-1:-1:-1;11809:18:0;;11803:4;;-1:-1:-1;11809:18:0;-1:-1:-1;11795:33:0;;11748:92;11853:14;11869:13;11886:31;11894:15;11911:5;11886:7;:31::i;:::-;11852:65;;-1:-1:-1;11852:65:0;-1:-1:-1;11940:18:0;11932:4;:26;;;;;;;;;11928:92;;-1:-1:-1;11989:18:0;;;;;;;;;-1:-1:-1;11989:18:0;;11983:4;;-1:-1:-1;11989:18:0;-1:-1:-1;11975:33:0;;-1:-1:-1;;11975:33:0;11928:92;12060:25;;;;;;;;;;;;-1:-1:-1;;12060:25:0;;-1:-1:-1;11579:515:0;-1:-1:-1;;;;;;11579:515:0:o;16672:213::-;16854:12;11426:4;16854:23;;;16672:213::o;97411:1050::-;97563:10;;97609:26;;;-1:-1:-1;;;97609:26:0;;-1:-1:-1;;;;;97609:26:0;;;;;;;;;;;;;;;97485:5;;97563:10;;;;;97485:5;;97563:10;;97609:14;;:26;;;;;97485:5;;97609:26;;;;;;;;97485:5;97563:10;97609:26;;;5:2:-1;;;;30:1;27;20:12;5:2;97609:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;97609:26:0;;;;97744:16;97783:1;97778:150;;;;97951:2;97946:217;;;;98298:1;98295;98288:12;97778:150;-1:-1:-1;;97872:6:0;-1:-1:-1;97778:150:0;;97946:217;98048:2;98045:1;98042;98027:24;98089:1;98083:8;98073:18;;97737:582;;98347:6;98342:78;;98377:31;98370:38;;;;;;98342:78;-1:-1:-1;98439:14:0;;97411:1050;-1:-1:-1;;;;97411:1050:0:o;54094:4728::-;54201:4;54226:19;;;:42;;-1:-1:-1;54249:19:0;;54226:42;54218:107;;;;-1:-1:-1;;;54218:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54338:27;;:::i;:::-;54482:28;:26;:28::i;:::-;54453:25;;;54438:72;;;54439:12;;;54438:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;54541:18:0;;-1:-1:-1;54525:4:0;:12;;;:34;;;;;;;;;54521:168;;54583:94;54594:16;54612:44;54663:4;:12;;;54658:18;;;;;;;54521:168;54743:18;;54739:1290;;55019:17;;;:34;;;55124:42;;;;;;;;55139:25;;;;55124:42;;55106:77;;55039:14;55106:17;:77::i;:::-;55085:17;;;55070:113;;;55071:12;;;55070:113;;;;;;;;;;;;;;;;;;;-1:-1:-1;55218:18:0;;-1:-1:-1;55202:4:0;:12;;;:34;;;;;;;;;55198:185;;55264:103;55275:16;55293:53;55353:4;:12;;;55348:18;;;;;;;55198:185;54739:1290;;;55685:82;55708:14;55724:42;;;;;;;;55739:4;:25;;;55724:42;;;55685:22;:82::i;:::-;55664:17;;;55649:118;;;55650:12;;;55649:118;;;;;;;;;;;;;;;;;;;-1:-1:-1;55802:18:0;;-1:-1:-1;55786:4:0;:12;;;:34;;;;;;;;;55782:185;;55848:103;55859:16;55877:53;55937:4;:12;;;55932:18;;;;;;;55782:185;55983:17;;;:34;;;54739:1290;56098:10;;56148:17;;;;56098:68;;;-1:-1:-1;;;56098:68:0;;56131:4;56098:68;;;;-1:-1:-1;;;;;56098:68:0;;;;;;;;;;;;;;;;56083:12;;56098:10;;;;;:24;;:68;;;;;;;;;;;;;;;56083:12;56098:10;:68;;;5:2:-1;;;;30:1;27;20:12;5:2;56098:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;56098:68:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;56098:68:0;;-1:-1:-1;56181:12:0;;56177:140;;56217:88;56228:26;56256:39;56297:7;56217:10;:88::i;56177:140::-;56427:16;:14;:16::i;:::-;56405:18;;:38;56401:142;;56467:64;56472:22;56496:34;56467:4;:64::i;56401:142::-;56838:39;56846:11;;56859:4;:17;;;56838:7;:39::i;:::-;56815:19;;;56800:77;;;56801:12;;;56800:77;;;;;;;;;;;;;;;;;;;-1:-1:-1;56908:18:0;;-1:-1:-1;56892:4:0;:12;;;:34;;;;;;;;;56888:178;;56950:104;56961:16;56979:54;57040:4;:12;;;57035:18;;;;;;;56888:178;-1:-1:-1;;;;;57126:23:0;;;;;;:13;:23;;;;;;57151:17;;;;57118:51;;57126:23;57118:7;:51::i;:::-;57093:21;;;57078:91;;;57079:12;;;57078:91;;;;;;;;;;;;;;;;;;;-1:-1:-1;57200:18:0;;-1:-1:-1;57184:4:0;:12;;;:34;;;;;;;;;57180:181;;57242:107;57253:16;57271:57;57335:4;:12;;;57330:18;;;;;;;57180:181;57459:4;:17;;;57442:14;:12;:14::i;:::-;:34;57438:155;;;57500:81;57505:29;57536:44;57500:4;:81::i;57438:155::-;58147:42;58161:8;58171:4;:17;;;58147:13;:42::i;:::-;58136:4;;:53;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58220:14:0;58208:8;;:26;;;;;;;;;58200:65;;;;;-1:-1:-1;;;58200:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;58358:19;;;;58344:11;:33;58414:21;;;;-1:-1:-1;;;;;58388:23:0;;;;;;:13;:23;;;;;;;;;:47;;;;58547:17;;;;58513:52;;;;;;;58540:4;;-1:-1:-1;;;;;;;;;;;58513:52:0;;;;;;;58598:17;;;;58617;;;;;58581:54;;;-1:-1:-1;;;;;58581:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58688:10;;58737:17;;;;58756;;;;58688:86;;;-1:-1:-1;;;58688:86:0;;58720:4;58688:86;;;;-1:-1:-1;;;;;58688:86:0;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:23;;:86;;;;;:10;;:86;;;;;;;:10;;:86;;;5:2:-1;;;;30:1;27;20:12;654:343:0;710:9;;742:6;738:69;;-1:-1:-1;773:18:0;;-1:-1:-1;773:18:0;765:30;;738:69;828:5;;;832:1;828;:5;:1;850:5;;;;;:10;846:144;;-1:-1:-1;885:26:0;;-1:-1:-1;913:1:0;;-1:-1:-1;877:38:0;;846:144;956:18;;-1:-1:-1;976:1:0;-1:-1:-1;948:30:0;;1092:215;1148:9;;1180:6;1176:77;;-1:-1:-1;1211:26:0;;-1:-1:-1;1239:1:0;1203:38;;1176:77;1273:18;1297:1;1293;:5;;;;;;1265:34;;;;1092:215;;;;;:::o;47825:3635::-;47967:10;;:57;;;-1:-1:-1;;;47967:57:0;;47998:4;47967:57;;;;-1:-1:-1;;;;;47967:57:0;;;;;;;;;;;;;;;47895:4;;;;47967:10;;:22;;:57;;;;;;;;;;;;;;47895:4;47967:10;:57;;;5:2:-1;;;;30:1;27;20:12;5:2;47967:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47967:57:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;47967:57:0;;-1:-1:-1;48039:12:0;;48035:138;;48075:86;48086:26;48114:37;48153:7;48075:10;:86::i;:::-;48068:93;;;;;48035:138;48283:16;:14;:16::i;:::-;48261:18;;:38;48257:140;;48323:62;48328:22;48352:32;48323:4;:62::i;48257:140::-;48409:25;;:::i;:::-;48503:35;48519:6;48527:10;48503:15;:35::i;:::-;48492:4;;:46;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48565:14:0;48553:8;;:26;;;;;;;;;48549:123;;48608:8;;48603:57;;48618:41;48603:4;:57::i;:::-;48596:64;;;;;;48549:123;48900:28;:26;:28::i;:::-;48871:25;;;48856:72;;;48857:12;;;48856:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;48959:18:0;;-1:-1:-1;48943:4:0;:12;;;:34;;;;;;;;;48939:166;;49001:92;49012:16;49030:42;49079:4;:12;;;49074:18;;;;;;;48939:166;49151:78;49174:10;49186:42;;;;;;;;49201:4;:25;;;49186:42;;;49151:22;:78::i;:::-;49132:15;;;49117:112;;;49118:12;;;49117:112;;;;;;;;;;;;;;;;;;;-1:-1:-1;49260:18:0;;-1:-1:-1;49244:4:0;:12;;;:34;;;;;;;;;49240:168;;49302:94;49313:16;49331:44;49382:4;:12;;;49377:18;;;;;;;49240:168;49711:37;49719:11;;49732:4;:15;;;49711:7;:37::i;:::-;49688:19;;;49673:75;;;49674:12;;;49673:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;49779:18:0;;-1:-1:-1;49763:4:0;:12;;;:34;;;;;;;;;49759:176;;49821:102;49832:16;49850:52;49909:4;:12;;;49904:18;;;;;;;49759:176;-1:-1:-1;;;;;49995:21:0;;;;;;:13;:21;;;;;;50018:15;;;;49987:47;;49995:21;49987:7;:47::i;:::-;49962:21;;;49947:87;;;49948:12;;;49947:87;;;;;;;;;;;;;;;;;;;-1:-1:-1;50065:18:0;;-1:-1:-1;50049:4:0;:12;;;:34;;;;;;;;;50045:179;;50107:105;50118:16;50136:55;50198:4;:12;;;50193:18;;;;;;;50045:179;50778:32;50791:6;50799:10;50778:12;:32::i;:::-;50767:4;;:43;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50837:14:0;50825:8;;:26;;;;;;;;;50821:117;;50880:8;;50875:51;;50890:35;50875:4;:51::i;50821:117::-;51030:19;;;;51016:11;:33;51084:21;;;;-1:-1:-1;;;;;51060:21:0;;;;;;:13;:21;;;;;;;;;:45;;;;51206:15;;;;;51181:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51270:15;;;;51238:48;;;;;;;-1:-1:-1;;;;;51238:48:0;;;51255:4;;-1:-1:-1;;;;;;;;;;;51238:48:0;;;;;;;;51339:10;;51396:15;;;;51339:73;;;-1:-1:-1;;;51339:73:0;;51369:4;51339:73;;;;-1:-1:-1;;;;;51339:73:0;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:21;;:73;;;;;:10;;:73;;;;;;;:10;;:73;;;5:2:-1;;;;30:1;27;20:12;5:2;51339:73:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;51437:14:0;;-1:-1:-1;51432:20:0;;-1:-1:-1;;51432:20:0;;51425:27;47825:3635;-1:-1:-1;;;;;47825:3635:0:o;14924:1136::-;14991:9;15002:10;;:::i;:::-;15028:14;15044:24;15072:31;15080:1;:10;;;15092:1;:10;;;15072:7;:31::i;:::-;15027:76;;-1:-1:-1;15027:76:0;-1:-1:-1;15126:18:0;15118:4;:26;;;;;;;;;15114:92;;-1:-1:-1;15175:18:0;;;;;;;;;-1:-1:-1;15175:18:0;;15169:4;;-1:-1:-1;15175:18:0;-1:-1:-1;15161:33:0;;15114:92;15523:14;;15580:42;11466:10;15602:19;15580:7;:42::i;:::-;15522:100;;-1:-1:-1;15522:100:0;-1:-1:-1;15645:18:0;15637:4;:26;;;;;;;;;15633:92;;-1:-1:-1;15694:18:0;;;;;;;;;-1:-1:-1;15694:18:0;;15688:4;;-1:-1:-1;15694:18:0;-1:-1:-1;15680:33:0;;-1:-1:-1;;15680:33:0;15633:92;15738:14;15754:12;15770:51;15778:32;11426:4;15770:7;:51::i;:::-;15737:84;;-1:-1:-1;15737:84:0;-1:-1:-1;15967:18:0;15959:4;:26;;;;;;;;;15952:34;;;;16027:24;;;;;;;;;;;;-1:-1:-1;;16027:24:0;;-1:-1:-1;14924:1136:0;-1:-1:-1;;;;;;;;14924:1136:0:o;60061:3164::-;60219:10;;:63;;;-1:-1:-1;;;60219:63:0;;60252:4;60219:63;;;;-1:-1:-1;;;;;60219:63:0;;;;;;;;;;;;;;;60145:4;;;;60219:10;;:24;;:63;;;;;;;;;;;;;;60145:4;60219:10;:63;;;5:2:-1;;;;30:1;27;20:12;5:2;60219:63:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;60219:63:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;60219:63:0;;-1:-1:-1;60297:12:0;;60293:140;;60333:88;60344:26;60372:39;60413:7;60333:10;:88::i;60293:140::-;60543:16;:14;:16::i;:::-;60521:18;;:38;60517:142;;60583:64;60588:22;60612:34;60583:4;:64::i;60517:142::-;60768:12;60751:14;:12;:14::i;:::-;:29;60747:143;;;60804:74;60809:29;60840:37;60804:4;:74::i;60747:143::-;60902:27;;:::i;:::-;61217:37;61245:8;61217:27;:37::i;:::-;61194:19;;;61179:75;;;61180:12;;;61179:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;61285:18:0;;-1:-1:-1;61269:4:0;:12;;;:34;;;;;;;;;61265:181;;61327:107;61338:16;61356:57;61420:4;:12;;;61415:18;;;;;;;61265:181;61499:42;61507:4;:19;;;61528:12;61499:7;:42::i;:::-;61473:22;;;61458:83;;;61459:12;;;61458:83;;;;;;;;;;;;;;;;;;;-1:-1:-1;61572:18:0;;-1:-1:-1;61556:4:0;:12;;;:34;;;;;;;;;61552:188;;61614:114;61625:16;61643:64;61714:4;:12;;;61709:18;;;;;;;61552:188;61791:35;61799:12;;61813;61791:7;:35::i;:::-;61767:20;;;61752:74;;;61753:12;;;61752:74;;;;;;;;;;;;;;;;;;;-1:-1:-1;61857:18:0;;-1:-1:-1;61841:4:0;:12;;;:34;;;;;;;;;61837:179;;61899:105;61910:16;61928:55;61990:4;:12;;;61985:18;;;;;;;61837:179;62566:37;62580:8;62590:12;62566:13;:37::i;:::-;62555:4;;:48;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62634:14:0;62622:8;;:26;;;;;;;;;62614:65;;;;;-1:-1:-1;;;62614:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;62799:22;;;;;;-1:-1:-1;;;;;62762:24:0;;;;;;:14;:24;;;;;;;;;:59;;;62873:11;;62832:38;;;;:52;;;;62910:20;;;;;62895:12;:35;;;63017:22;;62986:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63115:10;;:62;;;-1:-1:-1;;;63115:62:0;;63147:4;63115:62;;;;-1:-1:-1;;;;;63115:62:0;;;;;;;;;;;;;;;:10;;;;;:23;;:62;;;;;:10;;:62;;;;;;;:10;;:62;;;5:2:-1;;;;30:1;27;20:12;71296:3176:0;71502:10;;:110;;;-1:-1:-1;;;71502:110:0;;71544:4;71502:110;;;;-1:-1:-1;;;;;71502:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71425:4;;;;71502:10;;:33;;:110;;;;;;;;;;;;;;71425:4;71502:10;:110;;;5:2:-1;;;;30:1;27;20:12;5:2;71502:110:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;71502:110:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;71502:110:0;;-1:-1:-1;71627:12:0;;71623:143;;71663:91;71674:26;71702:42;71746:7;71663:10;:91::i;71623:143::-;71876:16;:14;:16::i;:::-;71854:18;;:38;71850:145;;71916:67;71921:22;71945:37;71916:4;:67::i;71850:145::-;72141:16;:14;:16::i;:::-;72100;-1:-1:-1;;;;;72100:35:0;;:37;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;72100:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;72100:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;72100:37:0;:57;72096:175;;72181:78;72186:22;72210:48;72181:4;:78::i;72096:175::-;72344:10;-1:-1:-1;;;;;72332:22:0;:8;-1:-1:-1;;;;;72332:22:0;;72328:140;;;72378:78;72383:26;72411:44;72378:4;:78::i;72328:140::-;72523:16;72519:142;;72563:86;72568:36;72606:42;72563:4;:86::i;72519:142::-;-1:-1:-1;;72717:11:0;:23;72713:153;;;72764:90;72769:36;72807:46;72764:4;:90::i;72713:153::-;73002:10;;:95;;;-1:-1:-1;;;73002:95:0;;73051:4;73002:95;;;;-1:-1:-1;;;;;73002:95:0;;;;;;;;;;;;;;;72959:21;;;;73002:10;;;:40;;:95;;;;;;;;;;;;:10;:95;;;5:2:-1;;;;30:1;27;20:12;5:2;73002:95:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;73002:95:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;73002:95:0;;;;;;;;;-1:-1:-1;73002:95:0;-1:-1:-1;73112:21:0;;73108:189;;73157:128;73168:34;73204:62;73268:16;73157:10;:128::i;:::-;73150:135;;;;;;;73108:189;73398:16;-1:-1:-1;;;;;73398:26:0;;73425:8;73398:36;;;;;;;;;;;;;-1:-1:-1;;;;;73398:36:0;-1:-1:-1;;;;;73398:36:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;73398:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;73398:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;73398:36:0;73384:50;;73380:166;;;73458:76;73463:32;73497:36;73458:4;:76::i;73380:166::-;73599:21;73623:51;73640:10;73652:8;73662:11;73623:16;:51::i;:::-;73599:75;-1:-1:-1;73689:40:0;;73685:158;;73753:78;73764:16;73758:23;;;;;;;;73783:47;73753:4;:78::i;:::-;73746:85;;;;;;;;73685:158;73959:57;;;-1:-1:-1;;;73959:57:0;;-1:-1:-1;;;;;73959:57:0;;;;;;;;;;;;;;;;;;;;;;73941:15;;73959:22;;;;;:57;;;;;;;;;;;;;;73941:15;73959:22;:57;;;5:2:-1;;;;30:1;27;20:12;5:2;73959:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;73959:57:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;73959:57:0;;-1:-1:-1;74035:34:0;;74027:67;;;;;-1:-1:-1;;;74027:67:0;;;;;;;;;;;;-1:-1:-1;;;74027:67:0;;;;;;;;;;;;;;;74159:90;;;-1:-1:-1;;;;;74159:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74302:10;;:122;;;-1:-1:-1;;;74302:122:0;;74343:4;74302:122;;;;-1:-1:-1;;;;;74302:122:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:32;;:122;;;;;:10;;:122;;;;;;;:10;;:122;;;5:2:-1;;;;30:1;27;20:12;5:2;74302:122:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;74449:14:0;;-1:-1:-1;74444:20:0;;-1:-1:-1;;74444:20:0;;74437:27;71296:3176;-1:-1:-1;;;;;;;;;;71296:3176:0:o;94510:429::-;94641:10;;94669:36;;;-1:-1:-1;;;94669:36:0;;-1:-1:-1;;;;;94669:36:0;;;;;;;94699:4;94669:36;;;;;;94585:5;;94641:10;;;;;94708:6;;94641:10;;94669:15;;:36;;;;;;;;;;;;;;;94641:10;94669:36;;;5:2:-1;;;;30:1;27;20:12;5:2;94669:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;94669:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;94669:36:0;:45;94665:119;;;94738:34;94731:41;;;;;94665:119;94824:6;94800:5;-1:-1:-1;;;;;94800:15:0;;94816:4;94800:21;;;;;;;;;;;;;-1:-1:-1;;;;;94800:21:0;-1:-1:-1;;;;;94800:21:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;94800:21:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;94800:21:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;94800:21:0;:30;94796:102;;;94854:32;94847:39;;;;;94796:102;-1:-1:-1;94917:14:0;;94510:429;-1:-1:-1;;;94510:429:0:o;95645:1063::-;95790:10;;95836:47;;;-1:-1:-1;;;95836:47:0;;-1:-1:-1;;;;;95836:47:0;;;;;;;95869:4;95836:47;;;;;;;;;;;;95712:5;;95790:10;;;;;95712:5;;95790:10;;95836:18;;:47;;;;;95712:5;;95836:47;;;;;;;;95712:5;95790:10;95836:47;;;5:2:-1;;;;30:1;27;20:12;5:2;95836:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;95836:47:0;;;;95992:16;96031:1;96026:150;;;;96199:2;96194:217;;;;96546:1;96543;96536:12;96026:150;-1:-1:-1;;96120:6:0;-1:-1:-1;96026:150:0;;96194:217;96296:2;96293:1;96290;96275:24;96337:1;96331:8;96321:18;;95985:582;;96595:6;96590:77;;96625:30;96618:37;;;;;;14579:337;14667:9;14678:4;14696:13;14711:19;;:::i;:::-;14734:31;14749:6;14757:7;14734:14;:31::i;90421:8522::-;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;90421:8522:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;90421:8522:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;90421:8522:0;;;;;;;;;;;;;;;;;;-1:-1:-1;90421:8522:0;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

bzzr://0b6bb3d952fea56dc9e395879a43e823aad634d2accb8a02a41f8214e0f87ce6

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

Artem is a Compound derived Defi protocol that features liquidity for cryptocurrencies and Real-World Assets (RWA). It empowers community governance and adopts 0 pre-farming, 0 distribution, and 0 fundraisings.

Validator Index Block Amount
View All Withdrawals

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

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