ETH Price: $3,132.01 (-2.51%)
 

Overview

Max Total Supply

4,504.96629563 aETH

Holders

54 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
*😺️😺️😺️.eth
Balance
0.00000384 aETH

Value
$0.00
0xa4b0a77c312535b8a5863732acc42cfa7b6af9da
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

ArtemProtocol is a Compound derived Defi project that features liquidity for cryptocurrencies and Real-World Assets (RWA).

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AEther

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-08-29
*/

pragma solidity ^0.5.16;

/**
  * @title Artem Ether Contract
  * @notice Derived from Compound's cEther 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;

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

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

    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
 * @dev Version of ERC20 with no return values for `transfer` and `transferFrom`
 *  See https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca
 */
interface EIP20NonStandardInterface {

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

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

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);
        
        accrualBlockNumber = getBlockNumber();
        borrowIndex = mantissaOne;
        
        name = string("Artem Ether");
        symbol = string("aETH");
        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 NewController(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 AEther is AToken {

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

    /**
     * @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
     * @dev Reverts upon any failure
     */
    function repayBorrow() external payable {
        requireNoError(repayBorrowInternal(msg.value), "repayBorrow failed");
    }

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

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

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

    /*** Safe Token ***/

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

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

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

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

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

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

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

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

}

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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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":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":"contract AToken","name":"aTokenCollateral","type":"address"}],"name":"liquidateBorrow","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"mint","outputs":[],"payable":true,"stateMutability":"payable","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":[],"name":"repayBorrow","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"repayBorrowBehalf","outputs":[],"payable":true,"stateMutability":"payable","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"}]

60806040526001600055600480546001600160a01b031916331790556aa56fa5b99019a5c80000006008556200003d6001600160e01b03620000bb16565b600a55670de0b6b3a7640000600b908155604080518082019091528181526a20b93a32b69022ba3432b960a91b6020909101908152620000819160019190620000c0565b50604080518082019091526004808252630c28aa8960e31b6020909201918252620000af91600291620000c0565b50600860035562000162565b435b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200010357805160ff191683800117855562000133565b8280016001018555821562000133579182015b828111156200013357825182559160200191906001019062000116565b506200014192915062000145565b5090565b620000bd91905b808211156200014157600081556001016200014c565b614c4280620001726000396000f3fe60806040526004361061027d5760003560e01c806394c393fc1161014f578063c37f68e2116100c1578063f2b3abbd1161007a578063f2b3abbd146108f7578063f3fdb15a1461092a578063f77c47911461093f578063f851a44014610954578063f8f9da2814610969578063fca7820b1461097e5761027d565b8063c37f68e2146107d4578063c5ebeaec1461082d578063db006a7514610857578063dd62ed3e14610881578063e5974619146108bc578063e9c714f2146108e25761027d565b8063aa5af0fd11610113578063aa5af0fd146106f1578063aae40a2a14610706578063ae9d70b014610734578063b2a02ff114610749578063b71d1a0c1461078c578063bd6d894d146107bf5761027d565b806394c393fc1461064657806395d89b411461065b57806395dd919314610670578063a6afed95146106a3578063a9059cbb146106b85761027d565b80633af9e669116101f35780636c540baf116101ac5780636c540baf1461057757806370a082311461058c57806373acee98146105bf57806383de424e146105d4578063852a12e3146106075780638f840ddd146106315761027d565b80633af9e669146104d35780633b1d21a21461050657806347bd37181461051b5780634e4d9fea14610530578063601a0bf114610538578063675d972c146105625761027d565b806318160ddd1161024557806318160ddd146103ed578063182df0f51461040257806323b872dd14610417578063267822471461045a5780632d7563591461048b578063313ce567146104be5761027d565b806306fdde03146102b4578063095ea7b31461033e5780631249c58b1461038b578063173b99041461039357806317bfdfbc146103ba575b6102b2610289346109a8565b6040518060400160405280600b81526020016a1b5a5b9d0819985a5b195960aa1b815250610a38565b005b3480156102c057600080fd5b506102c9610c38565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103035781810151838201526020016102eb565b50505050905090810190601f1680156103305780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034a57600080fd5b506103776004803603604081101561036157600080fd5b506001600160a01b038135169060200135610cc5565b604080519115158252519081900360200190f35b6102b2610d32565b34801561039f57600080fd5b506103a8610d40565b60408051918252519081900360200190f35b3480156103c657600080fd5b506103a8600480360360208110156103dd57600080fd5b50356001600160a01b0316610d46565b3480156103f957600080fd5b506103a8610df2565b34801561040e57600080fd5b506103a8610df8565b34801561042357600080fd5b506103776004803603606081101561043a57600080fd5b506001600160a01b03813581169160208101359091169060400135610e5b565b34801561046657600080fd5b5061046f610ec1565b604080516001600160a01b039092168252519081900360200190f35b34801561049757600080fd5b506103a8600480360360208110156104ae57600080fd5b50356001600160a01b0316610ed0565b3480156104ca57600080fd5b506103a8610f28565b3480156104df57600080fd5b506103a8600480360360208110156104f657600080fd5b50356001600160a01b0316610f2e565b34801561051257600080fd5b506103a8610f9c565b34801561052757600080fd5b506103a8610fab565b6102b2610fb1565b34801561054457600080fd5b506103a86004803603602081101561055b57600080fd5b5035610fed565b34801561056e57600080fd5b506103a8611027565b34801561058357600080fd5b506103a861102d565b34801561059857600080fd5b506103a8600480360360208110156105af57600080fd5b50356001600160a01b0316611033565b3480156105cb57600080fd5b506103a861104e565b3480156105e057600080fd5b506103a8600480360360208110156105f757600080fd5b50356001600160a01b03166110f8565b34801561061357600080fd5b506103a86004803603602081101561062a57600080fd5b5035611243565b34801561063d57600080fd5b506103a861124e565b34801561065257600080fd5b50610377611254565b34801561066757600080fd5b506102c9611259565b34801561067c57600080fd5b506103a86004803603602081101561069357600080fd5b50356001600160a01b03166112b1565b3480156106af57600080fd5b506103a861130e565b3480156106c457600080fd5b50610377600480360360408110156106db57600080fd5b506001600160a01b038135169060200135611707565b3480156106fd57600080fd5b506103a861176c565b6102b26004803603604081101561071c57600080fd5b506001600160a01b0381358116916020013516611772565b34801561074057600080fd5b506103a86117b4565b34801561075557600080fd5b506103a86004803603606081101561076c57600080fd5b506001600160a01b03813581169160208101359091169060400135611a7f565b34801561079857600080fd5b506103a8600480360360208110156107af57600080fd5b50356001600160a01b0316611d30565b3480156107cb57600080fd5b506103a8611db7565b3480156107e057600080fd5b50610807600480360360208110156107f757600080fd5b50356001600160a01b0316611e62565b604080519485526020850193909352838301919091526060830152519081900360800190f35b34801561083957600080fd5b506103a86004803603602081101561085057600080fd5b5035611ef7565b34801561086357600080fd5b506103a86004803603602081101561087a57600080fd5b5035611f02565b34801561088d57600080fd5b506103a8600480360360408110156108a457600080fd5b506001600160a01b0381358116916020013516611f0d565b6102b2600480360360208110156108d257600080fd5b50356001600160a01b0316611f38565b3480156108ee57600080fd5b506103a8611f83565b34801561090357600080fd5b506103a86004803603602081101561091a57600080fd5b50356001600160a01b0316612072565b34801561093657600080fd5b5061046f6120ac565b34801561094b57600080fd5b5061046f6120bb565b34801561096057600080fd5b5061046f6120ca565b34801561097557600080fd5b506103a86120d9565b34801561098a57600080fd5b506103a8600480360360208110156109a157600080fd5b50356121b5565b60008054600101808255816109bb61130e565b905080156109e1576109d98160108111156109d257fe5b601e6121ef565b9250506109ef565b6109eb3385612255565b9250505b6000548114610a32576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b50919050565b81610a4257610c34565b606081516005016040519080825280601f01601f191660200182016040528015610a73576020820181803883390190505b50905060005b8251811015610ac457828181518110610a8e57fe5b602001015160f81c60f81b828281518110610aa557fe5b60200101906001600160f81b031916908160001a905350600101610a79565b8151600160fd1b90839083908110610ad857fe5b60200101906001600160f81b031916908160001a905350602860f81b828260010181518110610b0357fe5b60200101906001600160f81b031916908160001a905350600a840460300160f81b828260020181518110610b3357fe5b60200101906001600160f81b031916908160001a905350600a840660300160f81b828260030181518110610b6357fe5b60200101906001600160f81b031916908160001a905350602960f81b828260040181518110610b8e57fe5b60200101906001600160f81b031916908160001a905350818415610c305760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610bf5578181015183820152602001610bdd565b50505050905090810190601f168015610c225780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5050505b5050565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610cbd5780601f10610c9257610100808354040283529160200191610cbd565b820191906000526020600020905b815481529060010190602001808311610ca057829003601f168201915b505050505081565b3360008181526010602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b610d3e610289346109a8565b565b60095481565b6000805460010180825581610d5961130e565b14610da4576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b610dad836112b1565b91506000548114610a32576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b600e5481565b6000806000610e0561269d565b90925090506000826003811115610e1857fe5b14610e545760405162461bcd60e51b8152600401808060200182810382526035815260200180614b816035913960400191505060405180910390fd5b9150505b90565b6000805460010180825581610e723387878761274b565b1491505b6000548114610eb9576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b509392505050565b6005546001600160a01b031681565b6004546000906001600160a01b03163314610ef857610ef1600a60416121ef565b9050610f23565b600780546001600160a01b0319166001600160a01b038481169190911791829055610a329116612a59565b919050565b60035481565b6000610f386148da565b6040518060200160405280610f4b611db7565b90526001600160a01b0384166000908152600f6020526040812054919250908190610f77908490612bc9565b90925090506000826003811115610f8a57fe5b14610f9457600080fd5b949350505050565b6000610fa6612c1d565b905090565b600c5481565b610d3e610fbd34612c49565b604051806040016040528060128152602001711c995c185e509bdc9c9bddc819985a5b195960721b815250610a38565b600080546001018082558161100061130e565b9050801561101e576109d981601081111561101757fe5b60306121ef565b6109eb84612c85565b60085481565b600a5481565b6001600160a01b03166000908152600f602052604090205490565b600080546001018082558161106161130e565b146110ac576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b600c54915060005481146110f4576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b5090565b6004546000906001600160a01b0316331461111957610ef16001603f6121ef565b60065460408051634e1647fb60e01b815290516001600160a01b0392831692851691634e1647fb916004808301926020929190829003018186803b15801561116057600080fd5b505afa158015611174573d6000803e3d6000fd5b505050506040513d602081101561118a57600080fd5b50516111dd576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517ff9b6a28700579d5c8fab50f0ac2dcaa52109b85c369c4f511fcc873330ab6cbb9281900390910190a160005b9392505050565b6000610d2c82612e03565b600d5481565b600181565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610cbd5780601f10610c9257610100808354040283529160200191610cbd565b60008060006112bf84612e40565b909250905060008260038111156112d257fe5b1461123c5760405162461bcd60e51b8152600401808060200182810382526037815260200180614a556037913960400191505060405180910390fd5b60006113186148ed565b6007546001600160a01b03166315f24053611331612c1d565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b15801561137857600080fd5b505afa15801561138c573d6000803e3d6000fd5b505050506040513d60408110156113a257600080fd5b50805160209182015160408401819052918301526601c6bf526340001015611411576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b6020810151156114345761142c600560028360200151612ef4565b915050610e58565b61143c612f5a565b60608201819052600a546114509190612f5e565b608083018190528282600381111561146457fe5b600381111561146f57fe5b905250600090508151600381111561148357fe5b1461148a57fe5b6114aa604051806020016040528083604001518152508260800151612f81565b60a08301819052828260038111156114be57fe5b60038111156114c957fe5b90525060009050815160038111156114dd57fe5b146114fe5761142c60096006836000015160038111156114f957fe5b612ef4565b61150e8160a00151600c54612bc9565b60c083018190528282600381111561152257fe5b600381111561152d57fe5b905250600090508151600381111561154157fe5b1461155d5761142c60096001836000015160038111156114f957fe5b61156d8160c00151600c54612fe9565b60e083018190528282600381111561158157fe5b600381111561158c57fe5b90525060009050815160038111156115a057fe5b146115bc5761142c60096004836000015160038111156114f957fe5b6115dd60405180602001604052806009548152508260c00151600d5461300f565b6101008301819052828260038111156115f257fe5b60038111156115fd57fe5b905250600090508151600381111561161157fe5b1461162d5761142c60096005836000015160038111156114f957fe5b6116408160a00151600b54600b5461300f565b61012083018190528282600381111561165557fe5b600381111561166057fe5b905250600090508151600381111561167457fe5b146116905761142c60096003836000015160038111156114f957fe5b606080820151600a55610120820151600b81905560e0830151600c819055610100840151600d5560c08401516040805191825260208201939093528083019190915290517f875352fb3fadeb8c0be7cbbe8ff761b308fa7033470cd0287f02f3436fd76cb9929181900390910190a1600091505090565b600080546001018082558161171e3333878761274b565b1491505b6000548114611765576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b5092915050565b600b5481565b610c3461178083348461306b565b604051806040016040528060168152602001751b1a5c5d5a59185d19509bdc9c9bddc819985a5b195960521b815250610a38565b6000806117bf610df8565b60075490915060009081906001600160a01b03166315f240536117e0612c1d565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b15801561182757600080fd5b505afa15801561183b573d6000803e3d6000fd5b505050506040513d604081101561185157600080fd5b5080516020909101519092509050811561189c5760405162461bcd60e51b8152600401808060200182810382526031815260200180614af46031913960400191505060405180910390fd5b60006118a66148da565b6118c0604051806020016040528087815250600e54612f81565b909250905060008260038111156118d357fe5b1461190f5760405162461bcd60e51b8152600401808060200182810382526031815260200180614a8c6031913960400191505060405180910390fd5b60006119196148da565b611925600c5484613173565b9092509050600082600381111561193857fe5b146119745760405162461bcd60e51b81526004018080602001828103825260318152602001806149d06031913960400191505060405180910390fd5b600061197e6148da565b6119ae6040518060200160405280670de0b6b3a764000081525060405180602001604052806009548152506131d2565b909250905060008260038111156119c157fe5b146119fd5760405162461bcd60e51b815260040180806020018281038252603c815260200180614b45603c913960400191505060405180910390fd5b6000611a076148da565b611a2060405180602001604052808b815250848761320c565b90925090506000826003811115611a3357fe5b14611a6f5760405162461bcd60e51b8152600401808060200182810382526031815260200180614a246031913960400191505060405180910390fd5b519a505050505050505050505090565b600080546001018082556006546040805163d02f735160e01b81523060048201523360248201526001600160a01b03888116604483015287811660648301526084820187905291518593929092169163d02f73519160a48082019260209290919082900301818787803b158015611af557600080fd5b505af1158015611b09573d6000803e3d6000fd5b505050506040513d6020811015611b1f57600080fd5b505190508015611b3e57611b366003601b83612ef4565b925050610e76565b856001600160a01b0316856001600160a01b03161415611b6457611b366006601c6121ef565b6001600160a01b0385166000908152600f602052604081205481908190611b8b9088612f5e565b90935091506000836003811115611b9e57fe5b14611bc157611bb66009601a8560038111156114f957fe5b955050505050610e76565b6001600160a01b0389166000908152600f6020526040902054611be49088612fe9565b90935090506000836003811115611bf757fe5b14611c0f57611bb6600960198560038111156114f957fe5b6001600160a01b038089166000818152600f60209081526040808320879055938d168083529184902085905583518b815293519193600080516020614b25833981519152929081900390910190a360065460408051636d35bf9160e01b81523060048201523360248201526001600160a01b038c811660448301528b81166064830152608482018b905291519190921691636d35bf919160a480830192600092919082900301818387803b158015611cc657600080fd5b505af1158015611cda573d6000803e3d6000fd5b5060009250611ce7915050565b9550505050506000548114610eb9576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6004546000906001600160a01b03163314611d5157610ef1600160456121ef565b600580546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a1600061123c565b6000805460010180825581611dca61130e565b14611e15576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b611e1d610df8565b915060005481146110f4576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6001600160a01b0381166000908152600f6020526040812054819081908190818080611e8d89612e40565b935090506000816003811115611e9f57fe5b14611ebd5760095b975060009650869550859450611ef09350505050565b611ec561269d565b925090506000816003811115611ed757fe5b14611ee3576009611ea7565b5060009650919450925090505b9193509193565b6000610d2c82613256565b6000610d2c82613291565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205490565b611f80611f4582346132c7565b6040518060400160405280601881526020017f7265706179426f72726f77426568616c66206661696c65640000000000000000815250610a38565b50565b6005546000906001600160a01b031633141580611f9e575033155b15611fb657611faf600160006121ef565b9050610e58565b60048054600580546001600160a01b038082166001600160a01b031980861682179687905590921690925560408051938316808552949092166020840152815190927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600554604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b60008061207d61130e565b905080156120a35761209b81601081111561209457fe5b60406121ef565b915050610f23565b61123c83612a59565b6007546001600160a01b031681565b6006546001600160a01b031681565b6004546001600160a01b031681565b600754600090819081906001600160a01b03166315f240536120f9612c1d565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b15801561214057600080fd5b505afa158015612154573d6000803e3d6000fd5b505050506040513d604081101561216a57600080fd5b50805160209091015190925090508115610e545760405162461bcd60e51b8152600401808060200182810382526037815260200180614abd6037913960400191505060405180910390fd5b60008054600101808255816121c861130e565b905080156121e6576109d98160108111156121df57fe5b60466121ef565b6109eb84613351565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561221e57fe5b83604d81111561222a57fe5b604080519283526020830191909152600082820152519081900360600190a182601081111561123c57fe5b60065460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384931691634ef4c3e191606480830192602092919082900301818787803b1580156122b257600080fd5b505af11580156122c6573d6000803e3d6000fd5b505050506040513d60208110156122dc57600080fd5b5051905080156122fb576122f36003601f83612ef4565b915050610d2c565b612303612f5a565b600a5414612317576122f3600a60226121ef565b61231f614947565b61232985856133f4565b8190601081111561233657fe5b9081601081111561234357fe5b90525060008151601081111561235557fe5b146123705780516123679060266121ef565b92505050610d2c565b61237861269d565b604083018190526020830182600381111561238f57fe5b600381111561239a57fe5b90525060009050816020015160038111156123b157fe5b146123cd5761236760096021836020015160038111156114f957fe5b6123e98460405180602001604052808460400151815250613493565b606083018190526020830182600381111561240057fe5b600381111561240b57fe5b905250600090508160200151600381111561242257fe5b1461243e5761236760096020836020015160038111156114f957fe5b61244e600e548260600151612fe9565b608083018190526020830182600381111561246557fe5b600381111561247057fe5b905250600090508160200151600381111561248757fe5b146124a35761236760096024836020015160038111156114f957fe5b6001600160a01b0385166000908152600f602052604090205460608201516124cb9190612fe9565b60a08301819052602083018260038111156124e257fe5b60038111156124ed57fe5b905250600090508160200151600381111561250457fe5b146125205761236760096023836020015160038111156114f957fe5b61252a85856133f4565b8190601081111561253757fe5b9081601081111561254457fe5b90525060008151601081111561255657fe5b146125685780516123679060256121ef565b6080810151600e5560a08101516001600160a01b0386166000818152600f602090815260409182902093909355606080850151825193845293830188905282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b038716913091600080516020614b258339815191529181900360200190a36006546060820151604080516341c728b960e01b81523060048201526001600160a01b038981166024830152604482018990526064820193909352905191909216916341c728b991608480830192600092919082900301818387803b15801561267357600080fd5b505af1158015612687573d6000803e3d6000fd5b5060009250612694915050565b95945050505050565b600080600e54600014156126b8575050600854600090612747565b60006126c2612c1d565b905060006126ce6148da565b60006126df84600c54600d546134aa565b9350905060008160038111156126f157fe5b146127055794506000935061274792505050565b61271183600e546134e8565b92509050600081600381111561272357fe5b146127375794506000935061274792505050565b5051600094509250612747915050565b9091565b600654604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b1580156127b057600080fd5b505af11580156127c4573d6000803e3d6000fd5b505050506040513d60208110156127da57600080fd5b5051905080156127f9576127f16003604a83612ef4565b915050610f94565b836001600160a01b0316856001600160a01b0316141561281f576127f16002604b6121ef565b60006001600160a01b03878116908716141561283e5750600019612866565b506001600160a01b038086166000908152601060209081526040808320938a16835292905220545b6000806000806128768589612f5e565b9094509250600084600381111561288957fe5b146128a75761289a6009604b6121ef565b9650505050505050610f94565b6001600160a01b038a166000908152600f60205260409020546128ca9089612f5e565b909450915060008460038111156128dd57fe5b146128ee5761289a6009604c6121ef565b6001600160a01b0389166000908152600f60205260409020546129119089612fe9565b9094509050600084600381111561292457fe5b146129355761289a6009604d6121ef565b6001600160a01b03808b166000908152600f6020526040808220859055918b16815220819055600019851461298d576001600160a01b03808b166000908152601060209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b0316600080516020614b258339815191528a6040518082815260200191505060405180910390a36006546040805163352b4a3f60e11b81523060048201526001600160a01b038d811660248301528c81166044830152606482018c905291519190921691636a56947e91608480830192600092919082900301818387803b158015612a2957600080fd5b505af1158015612a3d573d6000803e3d6000fd5b5060009250612a4a915050565b9b9a5050505050505050505050565b60045460009081906001600160a01b03163314612a7c5761209b600160426121ef565b612a84612f5a565b600a5414612a985761209b600a60416121ef565b600760009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b158015612ae957600080fd5b505afa158015612afd573d6000803e3d6000fd5b505050506040513d6020811015612b1357600080fd5b5051612b66576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a1600061123c565b6000806000612bd66148da565b612be08686612f81565b90925090506000826003811115612bf357fe5b14612c045750915060009050612c16565b6000612c0f82613598565b9350935050505b9250929050565b6000806000612c2c4734612f5e565b90925090506000826003811115612c3f57fe5b14610e5457600080fd5b6000805460010180825581612c5c61130e565b90508015612c7a576109d9816010811115612c7357fe5b60366121ef565b6109eb3333866135a7565b600454600090819081906001600160a01b03163314612cb357612caa600160316121ef565b92505050610f23565b612cbb612f5a565b600a5414612ccf57612caa600a60336121ef565b83612cd8612c1d565b1015612cea57612caa600e60326121ef565b600d54841115612d0057612caa600260346121ef565b50600d5483810390811115612d465760405162461bcd60e51b8152600401808060200182810382526024815260200180614bea6024913960400191505060405180910390fd5b600d819055600454612d61906001600160a01b0316856139fa565b91506000826010811115612d7157fe5b14612dad5760405162461bcd60e51b8152600401808060200182810382526023815260200180614a016023913960400191505060405180910390fd5b600454604080516001600160a01b03909216825260208201869052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e9181900360600190a16000949350505050565b6000805460010180825581612e1661130e565b90508015612e34576109d9816010811115612e2d57fe5b60276121ef565b6109eb33600086613a3c565b6001600160a01b038116600090815260116020526040812080548291829182918291612e77575060009450849350612eef92505050565b612e878160000154600b54613f45565b90945092506000846003811115612e9a57fe5b14612eaf575091935060009250612eef915050565b612ebd838260010154613f84565b90945091506000846003811115612ed057fe5b14612ee5575091935060009250612eef915050565b5060009450925050505b915091565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0846010811115612f2357fe5b84604d811115612f2f57fe5b604080519283526020830191909152818101859052519081900360600190a1836010811115610f9457fe5b4390565b600080838311612f75575060009050818303612c16565b50600390506000612c16565b6000612f8b6148da565b600080612f9c866000015186613f45565b90925090506000826003811115612faf57fe5b14612fce57506040805160208101909152600081529092509050612c16565b60408051602081019091529081526000969095509350505050565b60008083830184811061300157600092509050612c16565b506002915060009050612c16565b600080600061301c6148da565b6130268787612f81565b9092509050600082600381111561303957fe5b1461304a5750915060009050613063565b61305c61305682613598565b86612fe9565b9350935050505b935093915050565b600080546001018082558161307e61130e565b9050801561309c57611b3681601081111561309557fe5b600f6121ef565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156130d757600080fd5b505af11580156130eb573d6000803e3d6000fd5b505050506040513d602081101561310157600080fd5b50519050801561312157611b3681601081111561311a57fe5b60106121ef565b61312d33878787613faf565b9250506000548114610eb9576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b600061317d6148da565b600080613192670de0b6b3a764000087613f45565b909250905060008260038111156131a557fe5b146131c457506040805160208101909152600081529092509050612c16565b612c0f8186600001516134e8565b60006131dc6148da565b6000806131f186600001518660000151612f5e565b60408051602081019091529081529097909650945050505050565b60006132166148da565b60006132206148da565b61322a878761448b565b9092509050600082600381111561323d57fe5b1461324c579092509050613063565b61305c818661448b565b600080546001018082558161326961130e565b90508015613287576109d981601081111561328057fe5b60086121ef565b6109eb3385614574565b60008054600101808255816132a461130e565b905080156132bb576109d9816010811115612e2d57fe5b6109eb33856000613a3c565b60008054600101808255816132da61130e565b90508015613300576132f88160108111156132f157fe5b60356121ef565b925050611722565b61330b3386866135a7565b9250506000548114611765576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6004546000906001600160a01b0316331461337257610ef1600160476121ef565b61337a612f5a565b600a541461338e57610ef1600a60486121ef565b670de0b6b3a76400008211156133aa57610ef1600260496121ef565b6009805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a1600061123c565b6000336001600160a01b03841614613445576040805162461bcd60e51b815260206004820152600f60248201526e0e6cadcc8cae440dad2e6dac2e8c6d608b1b604482015290519081900360640190fd5b81341461348a576040805162461bcd60e51b815260206004820152600e60248201526d0ecc2d8eaca40dad2e6dac2e8c6d60931b604482015290519081900360640190fd5b50600092915050565b60008060006134a06148da565b612be08686613173565b6000806000806134ba8787612fe9565b909250905060008260038111156134cd57fe5b146134de5750915060009050613063565b61305c8186612f5e565b60006134f26148da565b60008061350786670de0b6b3a7640000613f45565b9092509050600082600381111561351a57fe5b1461353957506040805160208101909152600081529092509050612c16565b6000806135468388613f84565b9092509050600082600381111561355957fe5b1461357b57506040805160208101909152600081529094509250612c16915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b60065460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849316916324008a6291608480830192602092919082900301818787803b15801561360c57600080fd5b505af1158015613620573d6000803e3d6000fd5b505050506040513d602081101561363657600080fd5b5051905080156136555761364d6003603883612ef4565b91505061123c565b61365d612f5a565b600a54146136715761364d600a60396121ef565b613679614961565b6001600160a01b03851660009081526011602052604090206001015460608201526136a385612e40565b60808301819052602083018260038111156136ba57fe5b60038111156136c557fe5b90525060009050816020015160038111156136dc57fe5b14613701576136f860096037836020015160038111156114f957fe5b9250505061123c565b60001984141561371a5760808101516040820152613722565b604081018490525b6137308682604001516133f4565b8190601081111561373d57fe5b9081601081111561374a57fe5b90525060008151601081111561375c57fe5b1461376e5780516136f890603c6121ef565b61378081608001518260400151612f5e565b60a083018190526020830182600381111561379757fe5b60038111156137a257fe5b90525060009050816020015160038111156137b957fe5b146137d5576136f86009603a836020015160038111156114f957fe5b6137e5600c548260400151612f5e565b60c08301819052602083018260038111156137fc57fe5b600381111561380757fe5b905250600090508160200151600381111561381e57fe5b1461383a576136f86009603b836020015160038111156114f957fe5b6138488682604001516133f4565b8190601081111561385557fe5b9081601081111561386257fe5b90525060008151601081111561387457fe5b146138c6576040805162461bcd60e51b815260206004820152601f60248201527f726570617920626f72726f77207472616e7366657220696e206661696c656400604482015290519081900360640190fd5b60a080820180516001600160a01b03808916600081815260116020908152604091829020948555600b5460019095019490945560c0870151600c8190558188015195518251948e16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160065460408083015160608401518251631ededc9160e01b81523060048201526001600160a01b038b811660248301528a81166044830152606482019390935260848101919091529151921691631ededc919160a48082019260009290919082900301818387803b1580156139cf57600080fd5b505af11580156139e3573d6000803e3d6000fd5b50600092506139f0915050565b9695505050505050565b6040516000906001600160a01b0384169083156108fc0290849084818181858888f19350505050158015613a32573d6000803e3d6000fd5b5060009392505050565b6000821580613a49575081155b613a845760405162461bcd60e51b8152600401808060200182810382526034815260200180614bb66034913960400191505060405180910390fd5b613a8c614961565b613a9461269d565b6040830181905260208301826003811115613aab57fe5b6003811115613ab657fe5b9052506000905081602001516003811115613acd57fe5b14613ae95761364d6009602b836020015160038111156114f957fe5b8315613b6a576060810184905260408051602081018252908201518152613b109085612bc9565b6080830181905260208301826003811115613b2757fe5b6003811115613b3257fe5b9052506000905081602001516003811115613b4957fe5b14613b655761364d60096029836020015160038111156114f957fe5b613be3565b613b868360405180602001604052808460400151815250613493565b6060830181905260208301826003811115613b9d57fe5b6003811115613ba857fe5b9052506000905081602001516003811115613bbf57fe5b14613bdb5761364d6009602a836020015160038111156114f957fe5b608081018390525b60065460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b158015613c4857600080fd5b505af1158015613c5c573d6000803e3d6000fd5b505050506040513d6020811015613c7257600080fd5b505190508015613c89576136f86003602883612ef4565b613c91612f5a565b600a5414613ca5576136f8600a602c6121ef565b613cb5600e548360600151612f5e565b60a0840181905260208401826003811115613ccc57fe5b6003811115613cd757fe5b9052506000905082602001516003811115613cee57fe5b14613d0a576136f86009602e846020015160038111156114f957fe5b6001600160a01b0386166000908152600f60205260409020546060830151613d329190612f5e565b60c0840181905260208401826003811115613d4957fe5b6003811115613d5457fe5b9052506000905082602001516003811115613d6b57fe5b14613d87576136f86009602d846020015160038111156114f957fe5b8160800151613d94612c1d565b1015613da6576136f8600e602f6121ef565b613db48683608001516139fa565b82906010811115613dc157fe5b90816010811115613dce57fe5b905250600082516010811115613de057fe5b14613e32576040805162461bcd60e51b815260206004820152601a60248201527f72656465656d207472616e73666572206f7574206661696c6564000000000000604482015290519081900360640190fd5b60a0820151600e5560c08201516001600160a01b0387166000818152600f6020908152604091829020939093556060850151815190815290513093600080516020614b25833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160065460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b1580156139cf57600080fd5b60008083613f5857506000905080612c16565b83830283858281613f6557fe5b0414613f7957506002915060009050612c16565b600092509050612c16565b60008082613f985750600190506000612c16565b6000838581613fa357fe5b04915091509250929050565b60065460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384931691635fc7e71e9160a480830192602092919082900301818787803b15801561401c57600080fd5b505af1158015614030573d6000803e3d6000fd5b505050506040513d602081101561404657600080fd5b50519050801561405d576127f16003601283612ef4565b614065612f5a565b600a5414614079576127f1600a60166121ef565b614081612f5a565b836001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b1580156140ba57600080fd5b505afa1580156140ce573d6000803e3d6000fd5b505050506040513d60208110156140e457600080fd5b5051146140f7576127f1600a60116121ef565b856001600160a01b0316856001600160a01b0316141561411d576127f1600660176121ef565b8361412e576127f1600760156121ef565b600019841415614144576127f1600760146121ef565b6006546040805163c488847b60e01b81523060048201526001600160a01b038681166024830152604482018890528251600094859492169263c488847b926064808301939192829003018186803b15801561419e57600080fd5b505afa1580156141b2573d6000803e3d6000fd5b505050506040513d60408110156141c857600080fd5b508051602090910151909250905081156141f3576141e96004601384612ef4565b9350505050610f94565b846001600160a01b03166370a08231886040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561424957600080fd5b505afa15801561425d573d6000803e3d6000fd5b505050506040513d602081101561427357600080fd5b5051811115614288576141e9600d601d6121ef565b60006142958989896135a7565b905080156142be576142b38160108111156142ac57fe5b60186121ef565b945050505050610f94565b6040805163b2a02ff160e01b81526001600160a01b038b811660048301528a8116602483015260448201859052915160009289169163b2a02ff191606480830192602092919082900301818787803b15801561431957600080fd5b505af115801561432d573d6000803e3d6000fd5b505050506040513d602081101561434357600080fd5b505190508015614391576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808d168252808c1660208301528183018b9052891660608201526080810185905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a1600654604080516347ef3b3b60e01b81523060048201526001600160a01b038a811660248301528d811660448301528c81166064830152608482018c905260a48201879052915191909216916347ef3b3b9160c480830192600092919082900301818387803b15801561445c57600080fd5b505af1158015614470573d6000803e3d6000fd5b506000925061447d915050565b9a9950505050505050505050565b60006144956148da565b6000806144aa86600001518660000151613f45565b909250905060008260038111156144bd57fe5b146144dc57506040805160208101909152600081529092509050612c16565b6000806144f16706f05b59d3b2000084612fe9565b9092509050600082600381111561450457fe5b1461452657506040805160208101909152600081529094509250612c16915050565b60008061453b83670de0b6b3a7640000613f84565b9092509050600082600381111561454e57fe5b1461455557fe5b604080516020810190915290815260009a909950975050505050505050565b6006546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b1580156145d157600080fd5b505af11580156145e5573d6000803e3d6000fd5b505050506040513d60208110156145fb57600080fd5b505190508015614612576122f36003600e83612ef4565b61461a612f5a565b600a541461462d576122f3600a806121ef565b82614636612c1d565b1015614648576122f3600e60096121ef565b61465061499f565b61465985612e40565b604083018190526020830182600381111561467057fe5b600381111561467b57fe5b905250600090508160200151600381111561469257fe5b146146ae5761236760096007836020015160038111156114f957fe5b6146bc816040015185612fe9565b60608301819052602083018260038111156146d357fe5b60038111156146de57fe5b90525060009050816020015160038111156146f557fe5b14614711576123676009600c836020015160038111156114f957fe5b61471d600c5485612fe9565b608083018190526020830182600381111561473457fe5b600381111561473f57fe5b905250600090508160200151600381111561475657fe5b14614772576123676009600b836020015160038111156114f957fe5b61477c85856139fa565b8190601081111561478957fe5b9081601081111561479657fe5b9052506000815160108111156147a857fe5b146147fa576040805162461bcd60e51b815260206004820152601a60248201527f626f72726f77207472616e73666572206f7574206661696c6564000000000000604482015290519081900360640190fd5b606080820180516001600160a01b038816600081815260116020908152604091829020938455600b54600190940193909355608080870151600c819055945182519384529383018a9052828201939093529381019290925291517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab80929181900390910190a160065460408051635c77860560e01b81523060048201526001600160a01b0388811660248301526044820188905291519190921691635c77860591606480830192600092919082900301818387803b15801561267357600080fd5b6040518060200160405280600081525090565b6040805161014081019091528060008152602001600081526020016000815260200160008152602001600081526020016149256148da565b8152602001600081526020016000815260200160008152602001600081525090565b6040805160c0810190915280600081526020016000614925565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805160a08101909152806000815260200160008152602001600081526020016000815260200160008152509056fe737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720626f72726f7773506572206661696c6564726564756365207265736572766573207472616e73666572206f7574206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720737570706c7952617465206661696c6564626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720756e6465726c79696e67206661696c6564626f72726f7752617465506572426c6f636b3a20696e746572657374526174654d6f64656c2e626f72726f7752617465206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720626f72726f7752617465206661696c6564ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef737570706c7952617465506572426c6f636b3a2063616c63756c6174696e67206f6e654d696e757352657365727665466163746f72206661696c656465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65646f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f77a265627a7a72315820c083756c3e8a158a35e507d4a58773aa348c98009ad6c2d72645ca1023abe1a664736f6c63430005100032

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806394c393fc1161014f578063c37f68e2116100c1578063f2b3abbd1161007a578063f2b3abbd146108f7578063f3fdb15a1461092a578063f77c47911461093f578063f851a44014610954578063f8f9da2814610969578063fca7820b1461097e5761027d565b8063c37f68e2146107d4578063c5ebeaec1461082d578063db006a7514610857578063dd62ed3e14610881578063e5974619146108bc578063e9c714f2146108e25761027d565b8063aa5af0fd11610113578063aa5af0fd146106f1578063aae40a2a14610706578063ae9d70b014610734578063b2a02ff114610749578063b71d1a0c1461078c578063bd6d894d146107bf5761027d565b806394c393fc1461064657806395d89b411461065b57806395dd919314610670578063a6afed95146106a3578063a9059cbb146106b85761027d565b80633af9e669116101f35780636c540baf116101ac5780636c540baf1461057757806370a082311461058c57806373acee98146105bf57806383de424e146105d4578063852a12e3146106075780638f840ddd146106315761027d565b80633af9e669146104d35780633b1d21a21461050657806347bd37181461051b5780634e4d9fea14610530578063601a0bf114610538578063675d972c146105625761027d565b806318160ddd1161024557806318160ddd146103ed578063182df0f51461040257806323b872dd14610417578063267822471461045a5780632d7563591461048b578063313ce567146104be5761027d565b806306fdde03146102b4578063095ea7b31461033e5780631249c58b1461038b578063173b99041461039357806317bfdfbc146103ba575b6102b2610289346109a8565b6040518060400160405280600b81526020016a1b5a5b9d0819985a5b195960aa1b815250610a38565b005b3480156102c057600080fd5b506102c9610c38565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103035781810151838201526020016102eb565b50505050905090810190601f1680156103305780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034a57600080fd5b506103776004803603604081101561036157600080fd5b506001600160a01b038135169060200135610cc5565b604080519115158252519081900360200190f35b6102b2610d32565b34801561039f57600080fd5b506103a8610d40565b60408051918252519081900360200190f35b3480156103c657600080fd5b506103a8600480360360208110156103dd57600080fd5b50356001600160a01b0316610d46565b3480156103f957600080fd5b506103a8610df2565b34801561040e57600080fd5b506103a8610df8565b34801561042357600080fd5b506103776004803603606081101561043a57600080fd5b506001600160a01b03813581169160208101359091169060400135610e5b565b34801561046657600080fd5b5061046f610ec1565b604080516001600160a01b039092168252519081900360200190f35b34801561049757600080fd5b506103a8600480360360208110156104ae57600080fd5b50356001600160a01b0316610ed0565b3480156104ca57600080fd5b506103a8610f28565b3480156104df57600080fd5b506103a8600480360360208110156104f657600080fd5b50356001600160a01b0316610f2e565b34801561051257600080fd5b506103a8610f9c565b34801561052757600080fd5b506103a8610fab565b6102b2610fb1565b34801561054457600080fd5b506103a86004803603602081101561055b57600080fd5b5035610fed565b34801561056e57600080fd5b506103a8611027565b34801561058357600080fd5b506103a861102d565b34801561059857600080fd5b506103a8600480360360208110156105af57600080fd5b50356001600160a01b0316611033565b3480156105cb57600080fd5b506103a861104e565b3480156105e057600080fd5b506103a8600480360360208110156105f757600080fd5b50356001600160a01b03166110f8565b34801561061357600080fd5b506103a86004803603602081101561062a57600080fd5b5035611243565b34801561063d57600080fd5b506103a861124e565b34801561065257600080fd5b50610377611254565b34801561066757600080fd5b506102c9611259565b34801561067c57600080fd5b506103a86004803603602081101561069357600080fd5b50356001600160a01b03166112b1565b3480156106af57600080fd5b506103a861130e565b3480156106c457600080fd5b50610377600480360360408110156106db57600080fd5b506001600160a01b038135169060200135611707565b3480156106fd57600080fd5b506103a861176c565b6102b26004803603604081101561071c57600080fd5b506001600160a01b0381358116916020013516611772565b34801561074057600080fd5b506103a86117b4565b34801561075557600080fd5b506103a86004803603606081101561076c57600080fd5b506001600160a01b03813581169160208101359091169060400135611a7f565b34801561079857600080fd5b506103a8600480360360208110156107af57600080fd5b50356001600160a01b0316611d30565b3480156107cb57600080fd5b506103a8611db7565b3480156107e057600080fd5b50610807600480360360208110156107f757600080fd5b50356001600160a01b0316611e62565b604080519485526020850193909352838301919091526060830152519081900360800190f35b34801561083957600080fd5b506103a86004803603602081101561085057600080fd5b5035611ef7565b34801561086357600080fd5b506103a86004803603602081101561087a57600080fd5b5035611f02565b34801561088d57600080fd5b506103a8600480360360408110156108a457600080fd5b506001600160a01b0381358116916020013516611f0d565b6102b2600480360360208110156108d257600080fd5b50356001600160a01b0316611f38565b3480156108ee57600080fd5b506103a8611f83565b34801561090357600080fd5b506103a86004803603602081101561091a57600080fd5b50356001600160a01b0316612072565b34801561093657600080fd5b5061046f6120ac565b34801561094b57600080fd5b5061046f6120bb565b34801561096057600080fd5b5061046f6120ca565b34801561097557600080fd5b506103a86120d9565b34801561098a57600080fd5b506103a8600480360360208110156109a157600080fd5b50356121b5565b60008054600101808255816109bb61130e565b905080156109e1576109d98160108111156109d257fe5b601e6121ef565b9250506109ef565b6109eb3385612255565b9250505b6000548114610a32576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b50919050565b81610a4257610c34565b606081516005016040519080825280601f01601f191660200182016040528015610a73576020820181803883390190505b50905060005b8251811015610ac457828181518110610a8e57fe5b602001015160f81c60f81b828281518110610aa557fe5b60200101906001600160f81b031916908160001a905350600101610a79565b8151600160fd1b90839083908110610ad857fe5b60200101906001600160f81b031916908160001a905350602860f81b828260010181518110610b0357fe5b60200101906001600160f81b031916908160001a905350600a840460300160f81b828260020181518110610b3357fe5b60200101906001600160f81b031916908160001a905350600a840660300160f81b828260030181518110610b6357fe5b60200101906001600160f81b031916908160001a905350602960f81b828260040181518110610b8e57fe5b60200101906001600160f81b031916908160001a905350818415610c305760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610bf5578181015183820152602001610bdd565b50505050905090810190601f168015610c225780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5050505b5050565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610cbd5780601f10610c9257610100808354040283529160200191610cbd565b820191906000526020600020905b815481529060010190602001808311610ca057829003601f168201915b505050505081565b3360008181526010602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b610d3e610289346109a8565b565b60095481565b6000805460010180825581610d5961130e565b14610da4576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b610dad836112b1565b91506000548114610a32576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b600e5481565b6000806000610e0561269d565b90925090506000826003811115610e1857fe5b14610e545760405162461bcd60e51b8152600401808060200182810382526035815260200180614b816035913960400191505060405180910390fd5b9150505b90565b6000805460010180825581610e723387878761274b565b1491505b6000548114610eb9576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b509392505050565b6005546001600160a01b031681565b6004546000906001600160a01b03163314610ef857610ef1600a60416121ef565b9050610f23565b600780546001600160a01b0319166001600160a01b038481169190911791829055610a329116612a59565b919050565b60035481565b6000610f386148da565b6040518060200160405280610f4b611db7565b90526001600160a01b0384166000908152600f6020526040812054919250908190610f77908490612bc9565b90925090506000826003811115610f8a57fe5b14610f9457600080fd5b949350505050565b6000610fa6612c1d565b905090565b600c5481565b610d3e610fbd34612c49565b604051806040016040528060128152602001711c995c185e509bdc9c9bddc819985a5b195960721b815250610a38565b600080546001018082558161100061130e565b9050801561101e576109d981601081111561101757fe5b60306121ef565b6109eb84612c85565b60085481565b600a5481565b6001600160a01b03166000908152600f602052604090205490565b600080546001018082558161106161130e565b146110ac576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b600c54915060005481146110f4576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b5090565b6004546000906001600160a01b0316331461111957610ef16001603f6121ef565b60065460408051634e1647fb60e01b815290516001600160a01b0392831692851691634e1647fb916004808301926020929190829003018186803b15801561116057600080fd5b505afa158015611174573d6000803e3d6000fd5b505050506040513d602081101561118a57600080fd5b50516111dd576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517ff9b6a28700579d5c8fab50f0ac2dcaa52109b85c369c4f511fcc873330ab6cbb9281900390910190a160005b9392505050565b6000610d2c82612e03565b600d5481565b600181565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610cbd5780601f10610c9257610100808354040283529160200191610cbd565b60008060006112bf84612e40565b909250905060008260038111156112d257fe5b1461123c5760405162461bcd60e51b8152600401808060200182810382526037815260200180614a556037913960400191505060405180910390fd5b60006113186148ed565b6007546001600160a01b03166315f24053611331612c1d565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b15801561137857600080fd5b505afa15801561138c573d6000803e3d6000fd5b505050506040513d60408110156113a257600080fd5b50805160209182015160408401819052918301526601c6bf526340001015611411576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b6020810151156114345761142c600560028360200151612ef4565b915050610e58565b61143c612f5a565b60608201819052600a546114509190612f5e565b608083018190528282600381111561146457fe5b600381111561146f57fe5b905250600090508151600381111561148357fe5b1461148a57fe5b6114aa604051806020016040528083604001518152508260800151612f81565b60a08301819052828260038111156114be57fe5b60038111156114c957fe5b90525060009050815160038111156114dd57fe5b146114fe5761142c60096006836000015160038111156114f957fe5b612ef4565b61150e8160a00151600c54612bc9565b60c083018190528282600381111561152257fe5b600381111561152d57fe5b905250600090508151600381111561154157fe5b1461155d5761142c60096001836000015160038111156114f957fe5b61156d8160c00151600c54612fe9565b60e083018190528282600381111561158157fe5b600381111561158c57fe5b90525060009050815160038111156115a057fe5b146115bc5761142c60096004836000015160038111156114f957fe5b6115dd60405180602001604052806009548152508260c00151600d5461300f565b6101008301819052828260038111156115f257fe5b60038111156115fd57fe5b905250600090508151600381111561161157fe5b1461162d5761142c60096005836000015160038111156114f957fe5b6116408160a00151600b54600b5461300f565b61012083018190528282600381111561165557fe5b600381111561166057fe5b905250600090508151600381111561167457fe5b146116905761142c60096003836000015160038111156114f957fe5b606080820151600a55610120820151600b81905560e0830151600c819055610100840151600d5560c08401516040805191825260208201939093528083019190915290517f875352fb3fadeb8c0be7cbbe8ff761b308fa7033470cd0287f02f3436fd76cb9929181900390910190a1600091505090565b600080546001018082558161171e3333878761274b565b1491505b6000548114611765576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b5092915050565b600b5481565b610c3461178083348461306b565b604051806040016040528060168152602001751b1a5c5d5a59185d19509bdc9c9bddc819985a5b195960521b815250610a38565b6000806117bf610df8565b60075490915060009081906001600160a01b03166315f240536117e0612c1d565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b15801561182757600080fd5b505afa15801561183b573d6000803e3d6000fd5b505050506040513d604081101561185157600080fd5b5080516020909101519092509050811561189c5760405162461bcd60e51b8152600401808060200182810382526031815260200180614af46031913960400191505060405180910390fd5b60006118a66148da565b6118c0604051806020016040528087815250600e54612f81565b909250905060008260038111156118d357fe5b1461190f5760405162461bcd60e51b8152600401808060200182810382526031815260200180614a8c6031913960400191505060405180910390fd5b60006119196148da565b611925600c5484613173565b9092509050600082600381111561193857fe5b146119745760405162461bcd60e51b81526004018080602001828103825260318152602001806149d06031913960400191505060405180910390fd5b600061197e6148da565b6119ae6040518060200160405280670de0b6b3a764000081525060405180602001604052806009548152506131d2565b909250905060008260038111156119c157fe5b146119fd5760405162461bcd60e51b815260040180806020018281038252603c815260200180614b45603c913960400191505060405180910390fd5b6000611a076148da565b611a2060405180602001604052808b815250848761320c565b90925090506000826003811115611a3357fe5b14611a6f5760405162461bcd60e51b8152600401808060200182810382526031815260200180614a246031913960400191505060405180910390fd5b519a505050505050505050505090565b600080546001018082556006546040805163d02f735160e01b81523060048201523360248201526001600160a01b03888116604483015287811660648301526084820187905291518593929092169163d02f73519160a48082019260209290919082900301818787803b158015611af557600080fd5b505af1158015611b09573d6000803e3d6000fd5b505050506040513d6020811015611b1f57600080fd5b505190508015611b3e57611b366003601b83612ef4565b925050610e76565b856001600160a01b0316856001600160a01b03161415611b6457611b366006601c6121ef565b6001600160a01b0385166000908152600f602052604081205481908190611b8b9088612f5e565b90935091506000836003811115611b9e57fe5b14611bc157611bb66009601a8560038111156114f957fe5b955050505050610e76565b6001600160a01b0389166000908152600f6020526040902054611be49088612fe9565b90935090506000836003811115611bf757fe5b14611c0f57611bb6600960198560038111156114f957fe5b6001600160a01b038089166000818152600f60209081526040808320879055938d168083529184902085905583518b815293519193600080516020614b25833981519152929081900390910190a360065460408051636d35bf9160e01b81523060048201523360248201526001600160a01b038c811660448301528b81166064830152608482018b905291519190921691636d35bf919160a480830192600092919082900301818387803b158015611cc657600080fd5b505af1158015611cda573d6000803e3d6000fd5b5060009250611ce7915050565b9550505050506000548114610eb9576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6004546000906001600160a01b03163314611d5157610ef1600160456121ef565b600580546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a1600061123c565b6000805460010180825581611dca61130e565b14611e15576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b611e1d610df8565b915060005481146110f4576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6001600160a01b0381166000908152600f6020526040812054819081908190818080611e8d89612e40565b935090506000816003811115611e9f57fe5b14611ebd5760095b975060009650869550859450611ef09350505050565b611ec561269d565b925090506000816003811115611ed757fe5b14611ee3576009611ea7565b5060009650919450925090505b9193509193565b6000610d2c82613256565b6000610d2c82613291565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205490565b611f80611f4582346132c7565b6040518060400160405280601881526020017f7265706179426f72726f77426568616c66206661696c65640000000000000000815250610a38565b50565b6005546000906001600160a01b031633141580611f9e575033155b15611fb657611faf600160006121ef565b9050610e58565b60048054600580546001600160a01b038082166001600160a01b031980861682179687905590921690925560408051938316808552949092166020840152815190927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600554604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b60008061207d61130e565b905080156120a35761209b81601081111561209457fe5b60406121ef565b915050610f23565b61123c83612a59565b6007546001600160a01b031681565b6006546001600160a01b031681565b6004546001600160a01b031681565b600754600090819081906001600160a01b03166315f240536120f9612c1d565b600c54600d546040518463ffffffff1660e01b8152600401808481526020018381526020018281526020019350505050604080518083038186803b15801561214057600080fd5b505afa158015612154573d6000803e3d6000fd5b505050506040513d604081101561216a57600080fd5b50805160209091015190925090508115610e545760405162461bcd60e51b8152600401808060200182810382526037815260200180614abd6037913960400191505060405180910390fd5b60008054600101808255816121c861130e565b905080156121e6576109d98160108111156121df57fe5b60466121ef565b6109eb84613351565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561221e57fe5b83604d81111561222a57fe5b604080519283526020830191909152600082820152519081900360600190a182601081111561123c57fe5b60065460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384931691634ef4c3e191606480830192602092919082900301818787803b1580156122b257600080fd5b505af11580156122c6573d6000803e3d6000fd5b505050506040513d60208110156122dc57600080fd5b5051905080156122fb576122f36003601f83612ef4565b915050610d2c565b612303612f5a565b600a5414612317576122f3600a60226121ef565b61231f614947565b61232985856133f4565b8190601081111561233657fe5b9081601081111561234357fe5b90525060008151601081111561235557fe5b146123705780516123679060266121ef565b92505050610d2c565b61237861269d565b604083018190526020830182600381111561238f57fe5b600381111561239a57fe5b90525060009050816020015160038111156123b157fe5b146123cd5761236760096021836020015160038111156114f957fe5b6123e98460405180602001604052808460400151815250613493565b606083018190526020830182600381111561240057fe5b600381111561240b57fe5b905250600090508160200151600381111561242257fe5b1461243e5761236760096020836020015160038111156114f957fe5b61244e600e548260600151612fe9565b608083018190526020830182600381111561246557fe5b600381111561247057fe5b905250600090508160200151600381111561248757fe5b146124a35761236760096024836020015160038111156114f957fe5b6001600160a01b0385166000908152600f602052604090205460608201516124cb9190612fe9565b60a08301819052602083018260038111156124e257fe5b60038111156124ed57fe5b905250600090508160200151600381111561250457fe5b146125205761236760096023836020015160038111156114f957fe5b61252a85856133f4565b8190601081111561253757fe5b9081601081111561254457fe5b90525060008151601081111561255657fe5b146125685780516123679060256121ef565b6080810151600e5560a08101516001600160a01b0386166000818152600f602090815260409182902093909355606080850151825193845293830188905282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b038716913091600080516020614b258339815191529181900360200190a36006546060820151604080516341c728b960e01b81523060048201526001600160a01b038981166024830152604482018990526064820193909352905191909216916341c728b991608480830192600092919082900301818387803b15801561267357600080fd5b505af1158015612687573d6000803e3d6000fd5b5060009250612694915050565b95945050505050565b600080600e54600014156126b8575050600854600090612747565b60006126c2612c1d565b905060006126ce6148da565b60006126df84600c54600d546134aa565b9350905060008160038111156126f157fe5b146127055794506000935061274792505050565b61271183600e546134e8565b92509050600081600381111561272357fe5b146127375794506000935061274792505050565b5051600094509250612747915050565b9091565b600654604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b1580156127b057600080fd5b505af11580156127c4573d6000803e3d6000fd5b505050506040513d60208110156127da57600080fd5b5051905080156127f9576127f16003604a83612ef4565b915050610f94565b836001600160a01b0316856001600160a01b0316141561281f576127f16002604b6121ef565b60006001600160a01b03878116908716141561283e5750600019612866565b506001600160a01b038086166000908152601060209081526040808320938a16835292905220545b6000806000806128768589612f5e565b9094509250600084600381111561288957fe5b146128a75761289a6009604b6121ef565b9650505050505050610f94565b6001600160a01b038a166000908152600f60205260409020546128ca9089612f5e565b909450915060008460038111156128dd57fe5b146128ee5761289a6009604c6121ef565b6001600160a01b0389166000908152600f60205260409020546129119089612fe9565b9094509050600084600381111561292457fe5b146129355761289a6009604d6121ef565b6001600160a01b03808b166000908152600f6020526040808220859055918b16815220819055600019851461298d576001600160a01b03808b166000908152601060209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b0316600080516020614b258339815191528a6040518082815260200191505060405180910390a36006546040805163352b4a3f60e11b81523060048201526001600160a01b038d811660248301528c81166044830152606482018c905291519190921691636a56947e91608480830192600092919082900301818387803b158015612a2957600080fd5b505af1158015612a3d573d6000803e3d6000fd5b5060009250612a4a915050565b9b9a5050505050505050505050565b60045460009081906001600160a01b03163314612a7c5761209b600160426121ef565b612a84612f5a565b600a5414612a985761209b600a60416121ef565b600760009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b158015612ae957600080fd5b505afa158015612afd573d6000803e3d6000fd5b505050506040513d6020811015612b1357600080fd5b5051612b66576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a1600061123c565b6000806000612bd66148da565b612be08686612f81565b90925090506000826003811115612bf357fe5b14612c045750915060009050612c16565b6000612c0f82613598565b9350935050505b9250929050565b6000806000612c2c4734612f5e565b90925090506000826003811115612c3f57fe5b14610e5457600080fd5b6000805460010180825581612c5c61130e565b90508015612c7a576109d9816010811115612c7357fe5b60366121ef565b6109eb3333866135a7565b600454600090819081906001600160a01b03163314612cb357612caa600160316121ef565b92505050610f23565b612cbb612f5a565b600a5414612ccf57612caa600a60336121ef565b83612cd8612c1d565b1015612cea57612caa600e60326121ef565b600d54841115612d0057612caa600260346121ef565b50600d5483810390811115612d465760405162461bcd60e51b8152600401808060200182810382526024815260200180614bea6024913960400191505060405180910390fd5b600d819055600454612d61906001600160a01b0316856139fa565b91506000826010811115612d7157fe5b14612dad5760405162461bcd60e51b8152600401808060200182810382526023815260200180614a016023913960400191505060405180910390fd5b600454604080516001600160a01b03909216825260208201869052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e9181900360600190a16000949350505050565b6000805460010180825581612e1661130e565b90508015612e34576109d9816010811115612e2d57fe5b60276121ef565b6109eb33600086613a3c565b6001600160a01b038116600090815260116020526040812080548291829182918291612e77575060009450849350612eef92505050565b612e878160000154600b54613f45565b90945092506000846003811115612e9a57fe5b14612eaf575091935060009250612eef915050565b612ebd838260010154613f84565b90945091506000846003811115612ed057fe5b14612ee5575091935060009250612eef915050565b5060009450925050505b915091565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0846010811115612f2357fe5b84604d811115612f2f57fe5b604080519283526020830191909152818101859052519081900360600190a1836010811115610f9457fe5b4390565b600080838311612f75575060009050818303612c16565b50600390506000612c16565b6000612f8b6148da565b600080612f9c866000015186613f45565b90925090506000826003811115612faf57fe5b14612fce57506040805160208101909152600081529092509050612c16565b60408051602081019091529081526000969095509350505050565b60008083830184811061300157600092509050612c16565b506002915060009050612c16565b600080600061301c6148da565b6130268787612f81565b9092509050600082600381111561303957fe5b1461304a5750915060009050613063565b61305c61305682613598565b86612fe9565b9350935050505b935093915050565b600080546001018082558161307e61130e565b9050801561309c57611b3681601081111561309557fe5b600f6121ef565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156130d757600080fd5b505af11580156130eb573d6000803e3d6000fd5b505050506040513d602081101561310157600080fd5b50519050801561312157611b3681601081111561311a57fe5b60106121ef565b61312d33878787613faf565b9250506000548114610eb9576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b600061317d6148da565b600080613192670de0b6b3a764000087613f45565b909250905060008260038111156131a557fe5b146131c457506040805160208101909152600081529092509050612c16565b612c0f8186600001516134e8565b60006131dc6148da565b6000806131f186600001518660000151612f5e565b60408051602081019091529081529097909650945050505050565b60006132166148da565b60006132206148da565b61322a878761448b565b9092509050600082600381111561323d57fe5b1461324c579092509050613063565b61305c818661448b565b600080546001018082558161326961130e565b90508015613287576109d981601081111561328057fe5b60086121ef565b6109eb3385614574565b60008054600101808255816132a461130e565b905080156132bb576109d9816010811115612e2d57fe5b6109eb33856000613a3c565b60008054600101808255816132da61130e565b90508015613300576132f88160108111156132f157fe5b60356121ef565b925050611722565b61330b3386866135a7565b9250506000548114611765576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6004546000906001600160a01b0316331461337257610ef1600160476121ef565b61337a612f5a565b600a541461338e57610ef1600a60486121ef565b670de0b6b3a76400008211156133aa57610ef1600260496121ef565b6009805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a1600061123c565b6000336001600160a01b03841614613445576040805162461bcd60e51b815260206004820152600f60248201526e0e6cadcc8cae440dad2e6dac2e8c6d608b1b604482015290519081900360640190fd5b81341461348a576040805162461bcd60e51b815260206004820152600e60248201526d0ecc2d8eaca40dad2e6dac2e8c6d60931b604482015290519081900360640190fd5b50600092915050565b60008060006134a06148da565b612be08686613173565b6000806000806134ba8787612fe9565b909250905060008260038111156134cd57fe5b146134de5750915060009050613063565b61305c8186612f5e565b60006134f26148da565b60008061350786670de0b6b3a7640000613f45565b9092509050600082600381111561351a57fe5b1461353957506040805160208101909152600081529092509050612c16565b6000806135468388613f84565b9092509050600082600381111561355957fe5b1461357b57506040805160208101909152600081529094509250612c16915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b60065460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849316916324008a6291608480830192602092919082900301818787803b15801561360c57600080fd5b505af1158015613620573d6000803e3d6000fd5b505050506040513d602081101561363657600080fd5b5051905080156136555761364d6003603883612ef4565b91505061123c565b61365d612f5a565b600a54146136715761364d600a60396121ef565b613679614961565b6001600160a01b03851660009081526011602052604090206001015460608201526136a385612e40565b60808301819052602083018260038111156136ba57fe5b60038111156136c557fe5b90525060009050816020015160038111156136dc57fe5b14613701576136f860096037836020015160038111156114f957fe5b9250505061123c565b60001984141561371a5760808101516040820152613722565b604081018490525b6137308682604001516133f4565b8190601081111561373d57fe5b9081601081111561374a57fe5b90525060008151601081111561375c57fe5b1461376e5780516136f890603c6121ef565b61378081608001518260400151612f5e565b60a083018190526020830182600381111561379757fe5b60038111156137a257fe5b90525060009050816020015160038111156137b957fe5b146137d5576136f86009603a836020015160038111156114f957fe5b6137e5600c548260400151612f5e565b60c08301819052602083018260038111156137fc57fe5b600381111561380757fe5b905250600090508160200151600381111561381e57fe5b1461383a576136f86009603b836020015160038111156114f957fe5b6138488682604001516133f4565b8190601081111561385557fe5b9081601081111561386257fe5b90525060008151601081111561387457fe5b146138c6576040805162461bcd60e51b815260206004820152601f60248201527f726570617920626f72726f77207472616e7366657220696e206661696c656400604482015290519081900360640190fd5b60a080820180516001600160a01b03808916600081815260116020908152604091829020948555600b5460019095019490945560c0870151600c8190558188015195518251948e16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160065460408083015160608401518251631ededc9160e01b81523060048201526001600160a01b038b811660248301528a81166044830152606482019390935260848101919091529151921691631ededc919160a48082019260009290919082900301818387803b1580156139cf57600080fd5b505af11580156139e3573d6000803e3d6000fd5b50600092506139f0915050565b9695505050505050565b6040516000906001600160a01b0384169083156108fc0290849084818181858888f19350505050158015613a32573d6000803e3d6000fd5b5060009392505050565b6000821580613a49575081155b613a845760405162461bcd60e51b8152600401808060200182810382526034815260200180614bb66034913960400191505060405180910390fd5b613a8c614961565b613a9461269d565b6040830181905260208301826003811115613aab57fe5b6003811115613ab657fe5b9052506000905081602001516003811115613acd57fe5b14613ae95761364d6009602b836020015160038111156114f957fe5b8315613b6a576060810184905260408051602081018252908201518152613b109085612bc9565b6080830181905260208301826003811115613b2757fe5b6003811115613b3257fe5b9052506000905081602001516003811115613b4957fe5b14613b655761364d60096029836020015160038111156114f957fe5b613be3565b613b868360405180602001604052808460400151815250613493565b6060830181905260208301826003811115613b9d57fe5b6003811115613ba857fe5b9052506000905081602001516003811115613bbf57fe5b14613bdb5761364d6009602a836020015160038111156114f957fe5b608081018390525b60065460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b158015613c4857600080fd5b505af1158015613c5c573d6000803e3d6000fd5b505050506040513d6020811015613c7257600080fd5b505190508015613c89576136f86003602883612ef4565b613c91612f5a565b600a5414613ca5576136f8600a602c6121ef565b613cb5600e548360600151612f5e565b60a0840181905260208401826003811115613ccc57fe5b6003811115613cd757fe5b9052506000905082602001516003811115613cee57fe5b14613d0a576136f86009602e846020015160038111156114f957fe5b6001600160a01b0386166000908152600f60205260409020546060830151613d329190612f5e565b60c0840181905260208401826003811115613d4957fe5b6003811115613d5457fe5b9052506000905082602001516003811115613d6b57fe5b14613d87576136f86009602d846020015160038111156114f957fe5b8160800151613d94612c1d565b1015613da6576136f8600e602f6121ef565b613db48683608001516139fa565b82906010811115613dc157fe5b90816010811115613dce57fe5b905250600082516010811115613de057fe5b14613e32576040805162461bcd60e51b815260206004820152601a60248201527f72656465656d207472616e73666572206f7574206661696c6564000000000000604482015290519081900360640190fd5b60a0820151600e5560c08201516001600160a01b0387166000818152600f6020908152604091829020939093556060850151815190815290513093600080516020614b25833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160065460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b1580156139cf57600080fd5b60008083613f5857506000905080612c16565b83830283858281613f6557fe5b0414613f7957506002915060009050612c16565b600092509050612c16565b60008082613f985750600190506000612c16565b6000838581613fa357fe5b04915091509250929050565b60065460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384931691635fc7e71e9160a480830192602092919082900301818787803b15801561401c57600080fd5b505af1158015614030573d6000803e3d6000fd5b505050506040513d602081101561404657600080fd5b50519050801561405d576127f16003601283612ef4565b614065612f5a565b600a5414614079576127f1600a60166121ef565b614081612f5a565b836001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b1580156140ba57600080fd5b505afa1580156140ce573d6000803e3d6000fd5b505050506040513d60208110156140e457600080fd5b5051146140f7576127f1600a60116121ef565b856001600160a01b0316856001600160a01b0316141561411d576127f1600660176121ef565b8361412e576127f1600760156121ef565b600019841415614144576127f1600760146121ef565b6006546040805163c488847b60e01b81523060048201526001600160a01b038681166024830152604482018890528251600094859492169263c488847b926064808301939192829003018186803b15801561419e57600080fd5b505afa1580156141b2573d6000803e3d6000fd5b505050506040513d60408110156141c857600080fd5b508051602090910151909250905081156141f3576141e96004601384612ef4565b9350505050610f94565b846001600160a01b03166370a08231886040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561424957600080fd5b505afa15801561425d573d6000803e3d6000fd5b505050506040513d602081101561427357600080fd5b5051811115614288576141e9600d601d6121ef565b60006142958989896135a7565b905080156142be576142b38160108111156142ac57fe5b60186121ef565b945050505050610f94565b6040805163b2a02ff160e01b81526001600160a01b038b811660048301528a8116602483015260448201859052915160009289169163b2a02ff191606480830192602092919082900301818787803b15801561431957600080fd5b505af115801561432d573d6000803e3d6000fd5b505050506040513d602081101561434357600080fd5b505190508015614391576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808d168252808c1660208301528183018b9052891660608201526080810185905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a1600654604080516347ef3b3b60e01b81523060048201526001600160a01b038a811660248301528d811660448301528c81166064830152608482018c905260a48201879052915191909216916347ef3b3b9160c480830192600092919082900301818387803b15801561445c57600080fd5b505af1158015614470573d6000803e3d6000fd5b506000925061447d915050565b9a9950505050505050505050565b60006144956148da565b6000806144aa86600001518660000151613f45565b909250905060008260038111156144bd57fe5b146144dc57506040805160208101909152600081529092509050612c16565b6000806144f16706f05b59d3b2000084612fe9565b9092509050600082600381111561450457fe5b1461452657506040805160208101909152600081529094509250612c16915050565b60008061453b83670de0b6b3a7640000613f84565b9092509050600082600381111561454e57fe5b1461455557fe5b604080516020810190915290815260009a909950975050505050505050565b6006546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b1580156145d157600080fd5b505af11580156145e5573d6000803e3d6000fd5b505050506040513d60208110156145fb57600080fd5b505190508015614612576122f36003600e83612ef4565b61461a612f5a565b600a541461462d576122f3600a806121ef565b82614636612c1d565b1015614648576122f3600e60096121ef565b61465061499f565b61465985612e40565b604083018190526020830182600381111561467057fe5b600381111561467b57fe5b905250600090508160200151600381111561469257fe5b146146ae5761236760096007836020015160038111156114f957fe5b6146bc816040015185612fe9565b60608301819052602083018260038111156146d357fe5b60038111156146de57fe5b90525060009050816020015160038111156146f557fe5b14614711576123676009600c836020015160038111156114f957fe5b61471d600c5485612fe9565b608083018190526020830182600381111561473457fe5b600381111561473f57fe5b905250600090508160200151600381111561475657fe5b14614772576123676009600b836020015160038111156114f957fe5b61477c85856139fa565b8190601081111561478957fe5b9081601081111561479657fe5b9052506000815160108111156147a857fe5b146147fa576040805162461bcd60e51b815260206004820152601a60248201527f626f72726f77207472616e73666572206f7574206661696c6564000000000000604482015290519081900360640190fd5b606080820180516001600160a01b038816600081815260116020908152604091829020938455600b54600190940193909355608080870151600c819055945182519384529383018a9052828201939093529381019290925291517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab80929181900390910190a160065460408051635c77860560e01b81523060048201526001600160a01b0388811660248301526044820188905291519190921691635c77860591606480830192600092919082900301818387803b15801561267357600080fd5b6040518060200160405280600081525090565b6040805161014081019091528060008152602001600081526020016000815260200160008152602001600081526020016149256148da565b8152602001600081526020016000815260200160008152602001600081525090565b6040805160c0810190915280600081526020016000614925565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805160a08101909152806000815260200160008152602001600081526020016000815260200160008152509056fe737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720626f72726f7773506572206661696c6564726564756365207265736572766573207472616e73666572206f7574206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720737570706c7952617465206661696c6564626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720756e6465726c79696e67206661696c6564626f72726f7752617465506572426c6f636b3a20696e746572657374526174654d6f64656c2e626f72726f7752617465206661696c6564737570706c7952617465506572426c6f636b3a2063616c63756c6174696e6720626f72726f7752617465206661696c6564ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef737570706c7952617465506572426c6f636b3a2063616c63756c6174696e67206f6e654d696e757352657365727665466163746f72206661696c656465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65646f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f77a265627a7a72315820c083756c3e8a158a35e507d4a58773aa348c98009ad6c2d72645ca1023abe1a664736f6c63430005100032

Deployed Bytecode Sourcemap

90455:5381:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93307:54;93322:23;93335:9;93322:12;:23::i;:::-;93307:54;;;;;;;;;;;;;-1:-1:-1;;;93307:54:0;;;:14;:54::i;:::-;90455:5381;22570:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22570:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;22570:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31607:237;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31607:237:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;31607:237:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;90596:106;;;:::i;23843:33::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23843:33:0;;;:::i;:::-;;;;;;;;;;;;;;;;37315:224;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37315:224:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37315:224:0;-1:-1:-1;;;;;37315:224:0;;:::i;24479:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24479:26:0;;;:::i;40160:261::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40160:261:0;;;:::i;30942:195::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30942:195:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30942:195:0;;;;;;;;;;;;;;;;;:::i;23271:35::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23271:35:0;;;:::i;:::-;;;;-1:-1:-1;;;;;23271:35:0;;;;;;;;;;;;;;86733:477;;8:9:-1;5:2;;;30:1;27;20:12;5:2;86733:477:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;86733:477:0;-1:-1:-1;;;;;86733:477:0;;:::i;22766:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22766:20:0;;;:::i;32875:319::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32875:319:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32875:319:0;-1:-1:-1;;;;;32875:319:0;;:::i;41997:88::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41997:88:0;;;:::i;24243:24::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24243:24:0;;;:::i;92147:127::-;;;:::i;82814:571::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;82814:571:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;82814:571:0;;:::i;23707:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23707:39:0;;;:::i;23966:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23966:30:0;;;:::i;32507:112::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32507:112:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32507:112:0;-1:-1:-1;;;;;32507:112:0;;:::i;36832:192::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36832:192:0;;;:::i;79643:714::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;79643:714:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;79643:714:0;-1:-1:-1;;;;;79643:714:0;;:::i;91522:133::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;91522:133:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91522:133:0;;:::i;24373:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24373:25:0;;;:::i;22458:36::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22458:36:0;;;:::i;22666:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22666:20:0;;;:::i;37748:287::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37748:287:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37748:287:0;-1:-1:-1;;;;;37748:287:0;;:::i;42702:3644::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42702:3644:0;;;:::i;30450:185::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30450:185:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30450:185:0;;;;;;;;:::i;24108:23::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24108:23:0;;;:::i;92988:208::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;92988:208:0;;;;;;;;;;:::i;35188:1498::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35188:1498:0;;;:::i;75086:2117::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;75086:2117:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;75086:2117:0;;;;;;;;;;;;;;;;;:::i;77753:647::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;77753:647:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;77753:647:0;-1:-1:-1;;;;;77753:647:0;;:::i;39712:198::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39712:198:0;;;:::i;33539:703::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33539:703:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33539:703:0;-1:-1:-1;;;;;33539:703:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91923:113;;8:9:-1;5:2;;;30:1;27;20:12;5:2;91923:113:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91923:113:0;;:::i;91053:::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;91053:113:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91053:113:0;;:::i;32174:143::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32174:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;32174:143:0;;;;;;;;;;:::i;92465:171::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;92465:171:0;-1:-1:-1;;;;;92465:171:0;;:::i;78678:742::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;78678:742:0;;;:::i;86092:633::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;86092:633:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;86092:633:0;-1:-1:-1;;;;;86092:633:0;;:::i;23536:42::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23536:42:0;;;:::i;23397:37::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23397:37:0;;;:::i;23160:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23160:28:0;;;:::i;34670:342::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34670:342:0;;;:::i;80660:607::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;80660:607:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;80660:607:0;;:::i;46704:536::-;46774:4;21908:18;;21925:1;21908:18;;;;46774:4;46804:16;:14;:16::i;:::-;46791:29;-1:-1:-1;46835:29:0;;46831:247;;47007:59;47018:5;47012:12;;;;;;;;47026:39;47007:4;:59::i;:::-;47000:66;;;;;46831:247;47199:33;47209:10;47221;47199:9;:33::i;:::-;47192:40;;;21984:1;22020:13;;22004:12;:29;21996:52;;;;;-1:-1:-1;;;21996:52:0;;;;;;;;;;;;-1:-1:-1;;;21996:52:0;;;;;;;;;;;;;;;46704:536;;;;:::o;93876:712::-;93966:31;93962:70;;94014:7;;93962:70;94044:24;94087:7;94081:21;94105:1;94081:25;94071:36;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;94071:36:0;87:34:-1;135:17;;-1:-1;94071:36:0;-1:-1:-1;94044:63:0;-1:-1:-1;94118:6:0;94137:105;94159:7;94153:21;94149:1;:25;94137:105;;;94219:7;94228:1;94213:17;;;;;;;;;;;;;;;;94196:11;94208:1;94196:14;;;;;;;;;;;:34;-1:-1:-1;;;;;94196:34:0;;;;;;;;-1:-1:-1;94176:3:0;;94137:105;;;94254:16;;-1:-1:-1;;;94273:15:0;94254:11;;94266:1;;94254:16;;;;;;;;;:34;-1:-1:-1;;;;;94254:34:0;;;;;;;;;94329:2;94318:15;;94299:11;94311:1;94313;94311:3;94299:16;;;;;;;;;;;:34;-1:-1:-1;;;;;94299:34:0;;;;;;;;-1:-1:-1;94391:2:0;94381:7;:12;94374:2;:21;94363:34;;94344:11;94356:1;94358;94356:3;94344:16;;;;;;;;;;;:53;-1:-1:-1;;;;;94344:53:0;;;;;;;;-1:-1:-1;94455:2:0;94445:7;:12;94438:2;:21;94427:34;;94408:11;94420:1;94422;94420:3;94408:16;;;;;;;;;;;:53;-1:-1:-1;;;;;94408:53:0;;;;;;;;;94502:2;94491:15;;94472:11;94484:1;94486;94484:3;94472:16;;;;;;;;;;;:34;-1:-1:-1;;;;;94472:34:0;;;;;;;;-1:-1:-1;94567:11:0;94527:31;;94519:61;;;;-1:-1:-1;;;94519:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;94519:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93876:712;;;;;:::o;22570:18::-;;;;;;;;;;;;;;;-1:-1:-1;;22570:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31607:237::-;31706:10;31675:4;31727:23;;;:18;:23;;;;;;;;-1:-1:-1;;;;;31727:32:0;;;;;;;;;;;:41;;;31784:30;;;;;;;31675:4;;31706:10;31727:32;;31706:10;;31784:30;;;;;;;;;;;31832:4;31825:11;;;31607:237;;;;;:::o;90596:106::-;90640:54;90655:23;90668:9;90655:12;:23::i;90640:54::-;90596:106::o;23843:33::-;;;;:::o;37315:224::-;37393:4;21908:18;;21925:1;21908:18;;;;37393:4;37418:16;:14;:16::i;:::-;:40;37410:75;;;;;-1:-1:-1;;;37410:75:0;;;;;;;;;;;;-1:-1:-1;;;37410:75:0;;;;;;;;;;;;;;;37503:28;37523:7;37503:19;:28::i;:::-;37496:35;;22020:13;;22004:12;:29;21996:52;;;;;-1:-1:-1;;;21996:52:0;;;;;;;;;;;;-1:-1:-1;;;21996:52:0;;;;;;;;;;;;;;24479:26;;;;:::o;40160:261::-;40211:4;40229:13;40244:11;40259:28;:26;:28::i;:::-;40228:59;;-1:-1:-1;40228:59:0;-1:-1:-1;40313:18:0;40306:3;:25;;;;;;;;;40298:91;;;;-1:-1:-1;;;40298:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40407:6;-1:-1:-1;;40160:261:0;;:::o;30942:195::-;31037:4;21908:18;;21925:1;21908:18;;;;31037:4;31061:44;31076:10;31088:3;31093;31098:6;31061:14;:44::i;:::-;:68;31054:75;;21984:1;22020:13;;22004:12;:29;21996:52;;;;;-1:-1:-1;;;21996:52:0;;;;;;;;;;;;-1:-1:-1;;;21996:52:0;;;;;;;;;;;;;;;30942:195;;;;;;:::o;23271:35::-;;;-1:-1:-1;;;;;23271:35:0;;:::o;86733:477::-;86860:5;;86825:4;;-1:-1:-1;;;;;86860:5:0;86846:10;:19;86842:136;;86889:77;86894:22;86918:47;86889:4;:77::i;:::-;86882:84;;;;86842:136;87106:17;:40;;-1:-1:-1;;;;;;87106:40:0;-1:-1:-1;;;;;87106:40:0;;;;;;;;;;;87157:45;;87184:17;87157:26;:45::i;86733:477::-;;;;:::o;22766:20::-;;;;:::o;32875:319::-;32937:4;32954:23;;:::i;:::-;32980:38;;;;;;;;32995:21;:19;:21::i;:::-;32980:38;;-1:-1:-1;;;;;33094:20:0;;33030:14;33094:20;;;:13;:20;;;;;;32954:64;;-1:-1:-1;33030:14:0;;;33062:53;;32954:64;;33062:17;:53::i;:::-;33029:86;;-1:-1:-1;33029:86:0;-1:-1:-1;33142:18:0;33134:4;:26;;;;;;;;;33126:35;;;;;;33179:7;32875:319;-1:-1:-1;;;;32875:319:0:o;41997:88::-;42039:4;42063:14;:12;:14::i;:::-;42056:21;;41997:88;:::o;24243:24::-;;;;:::o;92147:127::-;92198:68;92213:30;92233:9;92213:19;:30::i;:::-;92198:68;;;;;;;;;;;;;-1:-1:-1;;;92198:68:0;;;:14;:68::i;82814:571::-;82889:4;21908:18;;21925:1;21908:18;;;;82889:4;82919:16;:14;:16::i;:::-;82906:29;-1:-1:-1;82950:29:0;;82946:277;;83141:70;83152:5;83146:12;;;;;;;;83160:50;83141:4;:70::i;82946:277::-;83343:34;83364:12;83343:20;:34::i;23707:39::-;;;;:::o;23966:30::-;;;;:::o;32507:112::-;-1:-1:-1;;;;;32591:20:0;32564:7;32591:20;;;:13;:20;;;;;;;32507:112::o;36832:192::-;36894:4;21908:18;;21925:1;21908:18;;;;36894:4;36919:16;:14;:16::i;:::-;:40;36911:75;;;;;-1:-1:-1;;;36911:75:0;;;;;;;;;;;;-1:-1:-1;;;36911:75:0;;;;;;;;;;;;;;;37004:12;;36997:19;;22020:13;;22004:12;:29;21996:52;;;;;-1:-1:-1;;;21996:52:0;;;;;;;;;;;;-1:-1:-1;;;21996:52:0;;;;;;;;;;;;;;;36832:192;;:::o;79643:714::-;79787:5;;79718:4;;-1:-1:-1;;;;;79787:5:0;79773:10;:19;79769:123;;79816:64;79821:18;79841:38;79816:4;:64::i;79769:123::-;79940:10;;80034:28;;;-1:-1:-1;;;80034:28:0;;;;-1:-1:-1;;;;;79940:10:0;;;;80034:26;;;;;:28;;;;;;;;;;;;;;:26;:28;;;5:2:-1;;;;30:1;27;20:12;5:2;80034:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;80034:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;80034:28:0;80026:69;;;;;-1:-1:-1;;;80026:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;80161:10;:26;;-1:-1:-1;;;;;;80161:26:0;-1:-1:-1;;;;;80161:26:0;;;;;;;;;80266:43;;;;;;;;;;;;;;;;;;;;;;;;;;;80334:14;80329:20;80322:27;79643:714;-1:-1:-1;;;79643:714:0:o;91522:133::-;91585:4;91609:38;91634:12;91609:24;:38::i;24373:25::-;;;;:::o;22458:36::-;22490:4;22458:36;:::o;22666:20::-;;;;;;;;;;;;;;-1:-1:-1;;22666:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37748:287;37815:4;37833:13;37848:11;37863:36;37891:7;37863:27;:36::i;:::-;37832:67;;-1:-1:-1;37832:67:0;-1:-1:-1;37925:18:0;37918:3;:25;;;;;;;;;37910:93;;;;-1:-1:-1;;;37910:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42702:3644;42744:4;42761:35;;:::i;:::-;42911:17;;-1:-1:-1;;;;;42911:17:0;:31;42943:14;:12;:14::i;:::-;42959:12;;42973:13;;42911:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42911:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42911:76:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42911:76:0;;;;;;;;42884:23;;42867:120;;;42868:14;;;42867:120;22929:4;-1:-1:-1;43006:48:0;42998:89;;;;;-1:-1:-1;;;42998:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;43102:14;;;;:19;43098:178;;43145:119;43156:31;43189:58;43249:4;:14;;;43145:10;:119::i;:::-;43138:126;;;;;43098:178;43363:16;:14;:16::i;:::-;43337:23;;;:42;;;43536:18;;43503:52;;43337:42;43503:7;:52::i;:::-;43484:15;;;43469:86;;;43470:4;43469:86;;;;;;;;;;;;;;;;;;;-1:-1:-1;43589:18:0;;-1:-1:-1;43573:12:0;;:34;;;;;;;;;43566:42;;;;44207:68;44217:40;;;;;;;;44232:4;:23;;;44217:40;;;44259:4;:15;;;44207:9;:68::i;:::-;44178:25;;;44163:112;;;44164:4;44163:112;;;;;;;;;;;;;;;;;;;-1:-1:-1;44306:18:0;;-1:-1:-1;44290:12:0;;:34;;;;;;;;;44286:193;;44348:119;44359:16;44377:69;44453:4;:12;;;44448:18;;;;;;;;44348:10;:119::i;44286:193::-;44534:58;44552:4;:25;;;44579:12;;44534:17;:58::i;:::-;44506:24;;;44491:101;;;44492:4;44491:101;;;;;;;;;;;;;;;;;;;-1:-1:-1;44623:18:0;;-1:-1:-1;44607:12:0;;:34;;;;;;;;;44603:191;;44665:117;44676:16;44694:67;44768:4;:12;;;44763:18;;;;;;;44603:191;44845:47;44853:4;:24;;;44879:12;;44845:7;:47::i;:::-;44821:20;;;44806:86;;;44807:4;44806:86;;;;;;;;;;;;;;;;;;;-1:-1:-1;44923:18:0;;-1:-1:-1;44907:12:0;;:34;;;;;;;;;44903:188;;44965:114;44976:16;44994:64;45065:4;:12;;;45060:18;;;;;;;44903:188;45143:105;45168:38;;;;;;;;45183:21;;45168:38;;;45208:4;:24;;;45234:13;;45143:24;:105::i;:::-;45118:21;;;45103:145;;;45104:4;45103:145;;;;;;;;;;;;;;;;;;;-1:-1:-1;45279:18:0;;-1:-1:-1;45263:12:0;;:34;;;;;;;;;45259:189;;45321:115;45332:16;45350:65;45422:4;:12;;;45417:18;;;;;;;45259:189;45498:77;45523:4;:25;;;45550:11;;45563;;45498:24;:77::i;:::-;45475:19;;;45460:115;;;45461:4;45460:115;;;;;;;;;;;;;;;;;;;-1:-1:-1;45606:18:0;;-1:-1:-1;45590:12:0;;:34;;;;;;;;;45586:187;;45648:113;45659:16;45677:63;45747:4;:12;;;45742:18;;;;;;;45586:187;45997:23;;;;;45976:18;:44;46045:19;;;;46031:11;:33;;;46090:20;;;;46075:12;:35;;;46137:21;;;;46121:13;:37;46238:24;;;;46223:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46323:14;46311:27;;;42702:3644;:::o;30450:185::-;30528:4;21908:18;;21925:1;21908:18;;;;30528:4;30552:51;30567:10;30579;30591:3;30596:6;30552:14;:51::i;:::-;:75;30545:82;;21984:1;22020:13;;22004:12;:29;21996:52;;;;;-1:-1:-1;;;21996:52:0;;;;;;;;;;;;-1:-1:-1;;;21996:52:0;;;;;;;;;;;;;;;30450:185;;;;;:::o;24108:23::-;;;;:::o;92988:208::-;93084:104;93099:62;93123:8;93133:9;93144:16;93099:23;:62::i;:::-;93084:104;;;;;;;;;;;;;-1:-1:-1;;;93084:104:0;;;:14;:104::i;35188:1498::-;35241:4;35492:25;35520:20;:18;:20::i;:::-;35590:17;;35492:48;;-1:-1:-1;35554:7:0;;;;-1:-1:-1;;;;;35590:17:0;:31;35622:14;:12;:14::i;:::-;35638:12;;35652:13;;35590:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35590:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35590:76:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35590:76:0;;;;;;;;;-1:-1:-1;35590:76:0;-1:-1:-1;35685:7:0;;35677:69;;;;-1:-1:-1;;;35677:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35775:12;35789:21;;:::i;:::-;35814:61;35824:37;;;;;;;;35839:20;35824:37;;;35863:11;;35814:9;:61::i;:::-;35774:101;;-1:-1:-1;35774:101:0;-1:-1:-1;35900:18:0;35894:2;:24;;;;;;;;;35886:86;;;;-1:-1:-1;;;35886:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35986:12;36000:21;;:::i;:::-;36025:40;36040:12;;36054:10;36025:14;:40::i;:::-;35985:80;;-1:-1:-1;35985:80:0;-1:-1:-1;36090:18:0;36084:2;:24;;;;;;;;;36076:86;;;;-1:-1:-1;;;36076:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36176:12;36190:32;;:::i;:::-;36226:76;36233:28;;;;;;;;11331:4;36233:28;;;36263:38;;;;;;;;36278:21;;36263:38;;;36226:6;:76::i;:::-;36175:127;;-1:-1:-1;36175:127:0;-1:-1:-1;36327:18:0;36321:2;:24;;;;;;;;;36313:97;;;;-1:-1:-1;;;36313:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36424:12;36438:21;;:::i;:::-;36463:79;36471:35;;;;;;;;36486:18;36471:35;;;36508:21;36531:10;36463:7;:79::i;:::-;36423:119;;-1:-1:-1;36423:119:0;-1:-1:-1;36567:18:0;36561:2;:24;;;;;;;;;36553:86;;;;-1:-1:-1;;;36553:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36659:19;;-1:-1:-1;;;;;;;;;;;35188:1498:0;:::o;75086:2117::-;75188:4;21908:18;;21925:1;21908:18;;;;75261:10;;:85;;;-1:-1:-1;;;75261:85:0;;75293:4;75261:85;;;;75300:10;75261:85;;;;-1:-1:-1;;;;;75261:85:0;;;;;;;;;;;;;;;;;;;;;;75188:4;;75261:10;;;;;:23;;:85;;;;;;;;;;;;;;;75188:4;75261:10;:85;;;5:2:-1;;;;30:1;27;20:12;5:2;75261:85:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;75261:85:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;75261:85:0;;-1:-1:-1;75361:12:0;;75357:149;;75397:97;75408:26;75436:48;75486:7;75397:10;:97::i;:::-;75390:104;;;;;75357:149;75579:10;-1:-1:-1;;;;;75567:22:0;:8;-1:-1:-1;;;;;75567:22:0;;75563:146;;;75613:84;75618:26;75646:50;75613:4;:84::i;75563:146::-;-1:-1:-1;;;;;76133:23:0;;75721:17;76133:23;;;:13;:23;;;;;;75721:17;;;;76125:45;;76158:11;76125:7;:45::i;:::-;76094:76;;-1:-1:-1;76094:76:0;-1:-1:-1;76196:18:0;76185:7;:29;;;;;;;;;76181:166;;76238:97;76249:16;76267:52;76326:7;76321:13;;;;;;;76238:97;76231:104;;;;;;;;76181:166;-1:-1:-1;;;;;76400:25:0;;;;;;:13;:25;;;;;;76392:47;;76427:11;76392:7;:47::i;:::-;76359:80;;-1:-1:-1;76359:80:0;-1:-1:-1;76465:18:0;76454:7;:29;;;;;;;;;76450:166;;76507:97;76518:16;76536:52;76595:7;76590:13;;;;;;;76450:166;-1:-1:-1;;;;;76819:23:0;;;;;;;:13;:23;;;;;;;;:43;;;76873:25;;;;;;;;;;:47;;;76975:43;;;;;;;76873:25;;-1:-1:-1;;;;;;;;;;;76975:43:0;;;;;;;;;;77071:10;;:84;;;-1:-1:-1;;;77071:84:0;;77102:4;77071:84;;;;77109:10;77071:84;;;;-1:-1:-1;;;;;77071:84:0;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:22;;:84;;;;;:10;;:84;;;;;;;:10;;:84;;;5:2:-1;;;;30:1;27;20:12;5:2;77071:84:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;77180:14:0;;-1:-1:-1;77175:20:0;;-1:-1:-1;;77175:20:0;;77168:27;;;;;;22020:13;;22004:12;:29;21996:52;;;;;-1:-1:-1;;;21996:52:0;;;;;;;;;;;;-1:-1:-1;;;21996:52:0;;;;;;;;;;;;;;77753:647;77898:5;;77830:4;;-1:-1:-1;;;;;77898:5:0;77884:10;:19;77880:126;;77927:67;77932:18;77952:41;77927:4;:67::i;77880:126::-;78105:12;;;-1:-1:-1;;;;;78188:30:0;;;-1:-1:-1;;;;;;78188:30:0;;;;;;;78303:49;;;78105:12;;;;78303:49;;;;;;;;;;;;;;;;;;;;;;;78377:14;78372:20;;39712:198;39772:4;21908:18;;21925:1;21908:18;;;;39772:4;39797:16;:14;:16::i;:::-;:40;39789:75;;;;;-1:-1:-1;;;39789:75:0;;;;;;;;;;;;-1:-1:-1;;;39789:75:0;;;;;;;;;;;;;;;39882:20;:18;:20::i;:::-;39875:27;;22020:13;;22004:12;:29;21996:52;;;;;-1:-1:-1;;;21996:52:0;;;;;;;;;;;;-1:-1:-1;;;21996:52:0;;;;;;;;;;;;;;33539:703;-1:-1:-1;;;;;33663:22:0;;33607:4;33663:22;;;:13;:22;;;;;;33607:4;;;;;;;;;33814:36;33677:7;33814:27;:36::i;:::-;33790:60;-1:-1:-1;33790:60:0;-1:-1:-1;33873:18:0;33865:4;:26;;;;;;;;;33861:99;;33921:16;33916:22;33908:40;-1:-1:-1;33940:1:0;;-1:-1:-1;33940:1:0;;-1:-1:-1;33940:1:0;;-1:-1:-1;33908:40:0;;-1:-1:-1;;;;33908:40:0;33861:99;34003:28;:26;:28::i;:::-;33972:59;-1:-1:-1;33972:59:0;-1:-1:-1;34054:18:0;34046:4;:26;;;;;;;;;34042:99;;34102:16;34097:22;;34042:99;-1:-1:-1;34166:14:0;;-1:-1:-1;34183:13:0;;-1:-1:-1;34198:13:0;-1:-1:-1;34198:13:0;-1:-1:-1;33539:703:0;;;;;;:::o;91923:113::-;91976:4;92000:28;92015:12;92000:14;:28::i;91053:113::-;91106:4;91130:28;91145:12;91130:14;:28::i;32174:143::-;-1:-1:-1;;;;;32275:25:0;;;32248:7;32275:25;;;:18;:25;;;;;;;;:34;;;;;;;;;;;;;32174:143::o;92465:171::-;92538:90;92553:46;92579:8;92589:9;92553:25;:46::i;:::-;92538:90;;;;;;;;;;;;;;;;;:14;:90::i;:::-;92465:171;:::o;78678:742::-;78828:12;;78720:4;;-1:-1:-1;;;;;78828:12:0;78814:10;:26;;;:54;;-1:-1:-1;78844:10:0;:24;78814:54;78810:164;;;78892:70;78897:18;78917:44;78892:4;:70::i;:::-;78885:77;;;;78810:164;79058:5;;;79100:12;;;-1:-1:-1;;;;;79100:12:0;;;-1:-1:-1;;;;;;79173:20:0;;;;;;;;;79242:25;;;;;;79285;;;79058:5;;;79285:25;;;79304:5;;;;79285:25;;;;;;79100:12;;79285:25;;;;;;;;;79359:12;;79326:46;;;-1:-1:-1;;;;;79326:46:0;;;;;79359:12;;;79326:46;;;;;;;;;;;;;;;;79397:14;79385:27;;;;78678:742;:::o;86092:633::-;86179:4;86196:10;86209:16;:14;:16::i;:::-;86196:29;-1:-1:-1;86240:29:0;;86236:298;;86444:78;86455:5;86449:12;;;;;;;;86463:58;86444:4;:78::i;:::-;86437:85;;;;;86236:298;86669:48;86696:20;86669:26;:48::i;23536:42::-;;;-1:-1:-1;;;;;23536:42:0;;:::o;23397:37::-;;;-1:-1:-1;;;;;23397:37:0;;:::o;23160:28::-;;;-1:-1:-1;;;;;23160:28:0;;:::o;34670:342::-;34784:17;;34723:4;;;;;;-1:-1:-1;;;;;34784:17:0;:31;34816:14;:12;:14::i;:::-;34832:12;;34846:13;;34784:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34784:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34784:76:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34784:76:0;;;;;;;;;-1:-1:-1;34784:76:0;-1:-1:-1;34879:14:0;;34871:82;;;;-1:-1:-1;;;34871:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80660:607;80749:4;21908:18;;21925:1;21908:18;;;;80749:4;80779:16;:14;:16::i;:::-;80766:29;-1:-1:-1;80810:29:0;;80806:286;;81007:73;81018:5;81012:12;;;;;;;;81026:53;81007:4;:73::i;80806:286::-;81211:48;81234:24;81211:22;:48::i;6741:153::-;6802:4;6824:33;6837:3;6832:9;;;;;;;;6848:4;6843:10;;;;;;;;6824:33;;;;;;;;;;;;;6855:1;6824:33;;;;;;;;;;;;;6882:3;6877:9;;;;;;;47878:3635;48020:10;;:57;;;-1:-1:-1;;;48020:57:0;;48051:4;48020:57;;;;-1:-1:-1;;;;;48020:57:0;;;;;;;;;;;;;;;47948:4;;;;48020:10;;:22;;:57;;;;;;;;;;;;;;47948:4;48020:10;:57;;;5:2:-1;;;;30:1;27;20:12;5:2;48020:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48020:57:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48020:57:0;;-1:-1:-1;48092:12:0;;48088:138;;48128:86;48139:26;48167:37;48206:7;48128:10;:86::i;:::-;48121:93;;;;;48088:138;48336:16;:14;:16::i;:::-;48314:18;;:38;48310:140;;48376:62;48381:22;48405:32;48376:4;:62::i;48310:140::-;48462:25;;:::i;:::-;48556:35;48572:6;48580:10;48556:15;:35::i;:::-;48545:4;;:46;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48618:14:0;48606:8;;:26;;;;;;;;;48602:123;;48661:8;;48656:57;;48671:41;48656:4;:57::i;:::-;48649:64;;;;;;48602:123;48953:28;:26;:28::i;:::-;48924:25;;;48909:72;;;48910:12;;;48909:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;49012:18:0;;-1:-1:-1;48996:4:0;:12;;;:34;;;;;;;;;48992:166;;49054:92;49065:16;49083:42;49132:4;:12;;;49127:18;;;;;;;48992:166;49204:78;49227:10;49239:42;;;;;;;;49254:4;:25;;;49239:42;;;49204:22;:78::i;:::-;49185:15;;;49170:112;;;49171:12;;;49170:112;;;;;;;;;;;;;;;;;;;-1:-1:-1;49313:18:0;;-1:-1:-1;49297:4:0;:12;;;:34;;;;;;;;;49293:168;;49355:94;49366:16;49384:44;49435:4;:12;;;49430:18;;;;;;;49293:168;49764:37;49772:11;;49785:4;:15;;;49764:7;:37::i;:::-;49741:19;;;49726:75;;;49727:12;;;49726:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;49832:18:0;;-1:-1:-1;49816:4:0;:12;;;:34;;;;;;;;;49812:176;;49874:102;49885:16;49903:52;49962:4;:12;;;49957:18;;;;;;;49812:176;-1:-1:-1;;;;;50048:21:0;;;;;;:13;:21;;;;;;50071:15;;;;50040:47;;50048:21;50040:7;:47::i;:::-;50015:21;;;50000:87;;;50001:12;;;50000:87;;;;;;;;;;;;;;;;;;;-1:-1:-1;50118:18:0;;-1:-1:-1;50102:4:0;:12;;;:34;;;;;;;;;50098:179;;50160:105;50171:16;50189:55;50251:4;:12;;;50246:18;;;;;;;50098:179;50831:32;50844:6;50852:10;50831:12;:32::i;:::-;50820:4;;:43;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50890:14:0;50878:8;;:26;;;;;;;;;50874:117;;50933:8;;50928:51;;50943:35;50928:4;:51::i;50874:117::-;51083:19;;;;51069:11;:33;51137:21;;;;-1:-1:-1;;;;;51113:21:0;;;;;;:13;:21;;;;;;;;;:45;;;;51259:15;;;;;51234:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51323:15;;;;51291:48;;;;;;;-1:-1:-1;;;;;51291:48:0;;;51308:4;;-1:-1:-1;;;;;;;;;;;51291:48:0;;;;;;;;51392:10;;51449:15;;;;51392:73;;;-1:-1:-1;;;51392:73:0;;51422:4;51392:73;;;;-1:-1:-1;;;;;51392:73:0;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:21;;:73;;;;;:10;;:73;;;;;;;:10;;:73;;;5:2:-1;;;;30:1;27;20:12;5:2;51392:73:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;51490:14:0;;-1:-1:-1;51485:20:0;;-1:-1:-1;;51485:20:0;;51478:27;47878:3635;-1:-1:-1;;;;;47878:3635:0:o;40685:1142::-;40746:9;40757:4;40778:11;;40793:1;40778:16;40774:1046;;;-1:-1:-1;;40971:27:0;;40951:18;;40943:56;;40774:1046;41181:14;41198;:12;:14::i;:::-;41181:31;;41227:33;41275:23;;:::i;:::-;41313:17;41389:54;41404:9;41415:12;;41429:13;;41389:14;:54::i;:::-;41347:96;-1:-1:-1;41347:96:0;-1:-1:-1;41473:18:0;41462:7;:29;;;;;;;;;41458:89;;41520:7;-1:-1:-1;41529:1:0;;-1:-1:-1;41512:19:0;;-1:-1:-1;;;41512:19:0;41458:89;41589:49;41596:28;41626:11;;41589:6;:49::i;:::-;41563:75;-1:-1:-1;41563:75:0;-1:-1:-1;41668:18:0;41657:7;:29;;;;;;;;;41653:89;;41715:7;-1:-1:-1;41724:1:0;;-1:-1:-1;41707:19:0;;-1:-1:-1;;;41707:19:0;41653:89;-1:-1:-1;41786:21:0;41766:18;;-1:-1:-1;41786:21:0;-1:-1:-1;41758:50:0;;-1:-1:-1;;41758:50:0;40774:1046;40685:1142;;:::o;27894:2295::-;28068:10;;:59;;;-1:-1:-1;;;28068:59:0;;28103:4;28068:59;;;;-1:-1:-1;;;;;28068:59:0;;;;;;;;;;;;;;;;;;;;;;27992:4;;;;28068:10;;:26;;:59;;;;;;;;;;;;;;27992:4;28068:10;:59;;;5:2:-1;;;;30:1;27;20:12;5:2;28068:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28068:59:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28068:59:0;;-1:-1:-1;28142:12:0;;28138:142;;28178:90;28189:26;28217:41;28260:7;28178:10;:90::i;:::-;28171:97;;;;;28138:142;28346:3;-1:-1:-1;;;;;28339:10:0;:3;-1:-1:-1;;;;;28339:10:0;;28335:105;;;28373:55;28378:15;28395:32;28373:4;:55::i;28335:105::-;28517:22;-1:-1:-1;;;;;28558:14:0;;;;;;;28554:160;;;-1:-1:-1;;;28554:160:0;;;-1:-1:-1;;;;;;28670:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;;28554:160;28792:17;28820;28848;28876;28932:34;28940:17;28959:6;28932:7;:34::i;:::-;28906:60;;-1:-1:-1;28906:60:0;-1:-1:-1;28992:18:0;28981:7;:29;;;;;;;;;28977:125;;29034:56;29039:16;29057:32;29034:4;:56::i;:::-;29027:63;;;;;;;;;;28977:125;-1:-1:-1;;;;;29148:18:0;;;;;;:13;:18;;;;;;29140:35;;29168:6;29140:7;:35::i;:::-;29114:61;;-1:-1:-1;29114:61:0;-1:-1:-1;29201:18:0;29190:7;:29;;;;;;;;;29186:124;;29243:55;29248:16;29266:31;29243:4;:55::i;29186:124::-;-1:-1:-1;;;;;29356:18:0;;;;;;:13;:18;;;;;;29348:35;;29376:6;29348:7;:35::i;:::-;29322:61;;-1:-1:-1;29322:61:0;-1:-1:-1;29409:18:0;29398:7;:29;;;;;;;;;29394:122;;29451:53;29456:16;29474:29;29451:4;:53::i;29394:122::-;-1:-1:-1;;;;;29649:18:0;;;;;;;:13;:18;;;;;;:33;;;29693:18;;;;;;:33;;;-1:-1:-1;;29799:29:0;;29795:109;;-1:-1:-1;;;;;29845:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;:47;;;29795:109;29975:3;-1:-1:-1;;;;;29961:26:0;29970:3;-1:-1:-1;;;;;29961:26:0;-1:-1:-1;;;;;;;;;;;29980:6:0;29961:26;;;;;;;;;;;;;;;;;;30083:10;;:58;;;-1:-1:-1;;;30083:58:0;;30117:4;30083:58;;;;-1:-1:-1;;;;;30083:58:0;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:25;;:58;;;;;:10;;:58;;;;;;;:10;;:58;;;5:2:-1;;;;30:1;27;20:12;5:2;30083:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;30166:14:0;;-1:-1:-1;30161:20:0;;-1:-1:-1;;30161:20:0;;30154:27;27894:2295;-1:-1:-1;;;;;;;;;;;27894:2295:0:o;87544:1352::-;87844:5;;87638:4;;;;-1:-1:-1;;;;;87844:5:0;87830:10;:19;87826:132;;87873:73;87878:18;87898:47;87873:4;:73::i;87826:132::-;88084:16;:14;:16::i;:::-;88062:18;;:38;88058:208;;88177:77;88182:22;88206:47;88177:4;:77::i;88058:208::-;88360:17;;;;;;;;;-1:-1:-1;;;;;88360:17:0;88337:40;;88480:20;-1:-1:-1;;;;;88480:40:0;;:42;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;88480:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;88480:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;88480:42:0;88472:83;;;;;-1:-1:-1;;;88472:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;88632:17;:40;;-1:-1:-1;;;;;;88632:40:0;-1:-1:-1;;;;;88632:40:0;;;;;;;;;88778:70;;;;;;;;;;;;;;;;;;;;;;;;;;;88873:14;88868:20;;12834:313;12911:9;12922:4;12940:13;12955:18;;:::i;:::-;12977:20;12987:1;12990:6;12977:9;:20::i;:::-;12939:58;;-1:-1:-1;12939:58:0;-1:-1:-1;13019:18:0;13012:3;:25;;;;;;;;;13008:73;;-1:-1:-1;13062:3:0;-1:-1:-1;13067:1:0;;-1:-1:-1;13054:15:0;;13008:73;13101:18;13121:17;13130:7;13121:8;:17::i;:::-;13093:46;;;;;;12834:313;;;;;;:::o;93637:231::-;93684:4;93702:13;93717:20;93741:41;93749:21;93772:9;93741:7;:41::i;:::-;93701:81;;-1:-1:-1;93701:81:0;-1:-1:-1;93808:18:0;93801:3;:25;;;;;;;;;93793:34;;;;;63486:561;63564:4;21908:18;;21925:1;21908:18;;;;63564:4;63594:16;:14;:16::i;:::-;63581:29;-1:-1:-1;63625:29:0;;63621:255;;63797:67;63808:5;63802:12;;;;;;;;63816:47;63797:4;:67::i;63621:255::-;63986:53;64003:10;64015;64027:11;63986:16;:53::i;83662:2061::-;83893:5;;83729:4;;;;;;-1:-1:-1;;;;;83893:5:0;83879:10;:19;83875:124;;83922:65;83927:18;83947:39;83922:4;:65::i;:::-;83915:72;;;;;;83875:124;84125:16;:14;:16::i;:::-;84103:18;;:38;84099:200;;84218:69;84223:22;84247:39;84218:4;:69::i;84099:200::-;84405:12;84388:14;:12;:14::i;:::-;:29;84384:152;;;84441:83;84446:29;84477:46;84441:4;:83::i;84384:152::-;84785:13;;84770:12;:28;84766:129;;;84822:61;84827:15;84844:38;84822:4;:61::i;84766:129::-;-1:-1:-1;85047:13:0;;:28;;;;85183:33;;;85175:82;;;;-1:-1:-1;;;85175:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85331:13;:32;;;85450:5;;85436:34;;-1:-1:-1;;;;;85450:5:0;85457:12;85436:13;:34::i;:::-;85430:40;-1:-1:-1;85549:14:0;85542:3;:21;;;;;;;;;85534:69;;;;-1:-1:-1;;;85534:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85637:5;;85621:54;;;-1:-1:-1;;;;;85637:5:0;;;85621:54;;;;;;;;;;;;;;;;;;;;;;;;85700:14;85688:27;83662:2061;-1:-1:-1;;;;83662:2061:0:o;52747:537::-;52831:4;21908:18;;21925:1;21908:18;;;;52831:4;52861:16;:14;:16::i;:::-;52848:29;-1:-1:-1;52892:29:0;;52888:249;;53064:61;53075:5;53069:12;;;;;;;;53083:41;53064:4;:61::i;52888:249::-;53236:40;53248:10;53260:1;53263:12;53236:11;:40::i;38289:1268::-;-1:-1:-1;;;;;38638:23:0;;38366:9;38638:23;;;:14;:23;;;;;38867:24;;38366:9;;;;;;;;38863:92;;-1:-1:-1;38921:18:0;;-1:-1:-1;38921:18:0;;-1:-1:-1;38913:30:0;;-1:-1:-1;;;38913:30:0;38863:92;39182:46;39190:14;:24;;;39216:11;;39182:7;:46::i;:::-;39149:79;;-1:-1:-1;39149:79:0;-1:-1:-1;39254:18:0;39243:7;:29;;;;;;;;;39239:81;;-1:-1:-1;39297:7:0;;-1:-1:-1;39306:1:0;;-1:-1:-1;39289:19:0;;-1:-1:-1;;39289:19:0;39239:81;39352:58;39360:19;39381:14;:28;;;39352:7;:58::i;:::-;39332:78;;-1:-1:-1;39332:78:0;-1:-1:-1;39436:18:0;39425:7;:29;;;;;;;;;39421:81;;-1:-1:-1;39479:7:0;;-1:-1:-1;39488:1:0;;-1:-1:-1;39471:19:0;;-1:-1:-1;;39471:19:0;39421:81;-1:-1:-1;39522:18:0;;-1:-1:-1;39542:6:0;-1:-1:-1;;;38289:1268:0;;;;:::o;6902:187::-;6987:4;7009:43;7022:3;7017:9;;;;;;;;7033:4;7028:10;;;;;;;;7009:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;7077:3;7072:9;;;;;;;34401:93;34474:12;34401:93;:::o;1443:236::-;1499:9;1510:4;1536:1;1531;:6;1527:145;;-1:-1:-1;1562:18:0;;-1:-1:-1;1582:5:0;;;1554:34;;1527:145;-1:-1:-1;1629:27:0;;-1:-1:-1;1658:1:0;1621:39;;12473:353;12542:9;12553:10;;:::i;:::-;12577:14;12593:19;12616:27;12624:1;:10;;;12636:6;12616:7;:27::i;:::-;12576:67;;-1:-1:-1;12576:67:0;-1:-1:-1;12666:18:0;12658:4;:26;;;;;;;;;12654:92;;-1:-1:-1;12715:18:0;;;;;;;;;-1:-1:-1;12715:18:0;;12709:4;;-1:-1:-1;12715:18:0;-1:-1:-1;12701:33:0;;12654:92;12786:31;;;;;;;;;;;;-1:-1:-1;;12786:31:0;;-1:-1:-1;12473:353:0;-1:-1:-1;;;;12473:353:0:o;1764:258::-;1820:9;;1857:5;;;1879:6;;;1875:140;;1910:18;;-1:-1:-1;1930:1:0;-1:-1:-1;1902:30:0;;1875:140;-1:-1:-1;1973:26:0;;-1:-1:-1;2001:1:0;;-1:-1:-1;1965:38:0;;13155:328;13252:9;13263:4;13281:13;13296:18;;:::i;:::-;13318:20;13328:1;13331:6;13318:9;:20::i;:::-;13280:58;;-1:-1:-1;13280:58:0;-1:-1:-1;13360:18:0;13353:3;:25;;;;;;;;;13349:73;;-1:-1:-1;13403:3:0;-1:-1:-1;13408:1:0;;-1:-1:-1;13395:15:0;;13349:73;13441:34;13449:17;13458:7;13449:8;:17::i;:::-;13468:6;13441:7;:34::i;:::-;13434:41;;;;;;13155:328;;;;;;;:::o;69813:969::-;69938:4;21908:18;;21925:1;21908:18;;;;69938:4;69968:16;:14;:16::i;:::-;69955:29;-1:-1:-1;69999:29:0;;69995:264;;70176:71;70187:5;70181:12;;;;;;;;70195:51;70176:4;:71::i;69995:264::-;70279:16;-1:-1:-1;;;;;70279:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;70279:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;70279:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;70279:33:0;;-1:-1:-1;70327:29:0;;70323:268;;70504:75;70515:5;70509:12;;;;;;;;70523:55;70504:4;:75::i;70323:268::-;70701:73;70722:10;70734:8;70744:11;70757:16;70701:20;:73::i;:::-;70694:80;;;22020:13;;22004:12;:29;21996:52;;;;;-1:-1:-1;;;21996:52:0;;;;;;;;;;;;-1:-1:-1;;;21996:52:0;;;;;;;;;;;;;;13856:620;13936:9;13947:10;;:::i;:::-;14254:14;14270;14288:25;11331:4;14306:6;14288:7;:25::i;:::-;14253:60;;-1:-1:-1;14253:60:0;-1:-1:-1;14336:18:0;14328:4;:26;;;;;;;;;14324:92;;-1:-1:-1;14385:18:0;;;;;;;;;-1:-1:-1;14385:18:0;;14379:4;;-1:-1:-1;14385:18:0;-1:-1:-1;14371:33:0;;14324:92;14433:35;14440:9;14451:7;:16;;;14433:6;:35::i;12240:225::-;12307:9;12318:10;;:::i;:::-;12342:15;12359:11;12374:31;12382:1;:10;;;12394:1;:10;;;12374:7;:31::i;:::-;12433:23;;;;;;;;;;;;12341:64;;12433:23;;-1:-1:-1;12240:225:0;-1:-1:-1;;;;;12240:225:0:o;16131:284::-;16213:9;16224:10;;:::i;:::-;16248:13;16263;;:::i;:::-;16280:12;16287:1;16290;16280:6;:12::i;:::-;16247:45;;-1:-1:-1;16247:45:0;-1:-1:-1;16314:18:0;16307:3;:25;;;;;;;;;16303:74;;16357:3;;-1:-1:-1;16362:2:0;-1:-1:-1;16349:16:0;;16303:74;16394:13;16401:2;16405:1;16394:6;:13::i;59143:524::-;59217:4;21908:18;;21925:1;21908:18;;;;59217:4;59247:16;:14;:16::i;:::-;59234:29;-1:-1:-1;59278:29:0;;59274:249;;59450:61;59461:5;59455:12;;;;;;;;59469:41;59450:4;:61::i;59274:249::-;59622:37;59634:10;59646:12;59622:11;:37::i;51864:527::-;51938:4;21908:18;;21925:1;21908:18;;;;51938:4;51968:16;:14;:16::i;:::-;51955:29;-1:-1:-1;51999:29:0;;51995:249;;52171:61;52182:5;52176:12;;;;;;;51995:249;52343:40;52355:10;52367:12;52381:1;52343:11;:40::i;64335:583::-;64437:4;21908:18;;21925:1;21908:18;;;;64437:4;64467:16;:14;:16::i;:::-;64454:29;-1:-1:-1;64498:29:0;;64494:255;;64670:67;64681:5;64675:12;;;;;;;;64689:47;64670:4;:67::i;:::-;64663:74;;;;;64494:255;64859:51;64876:10;64888:8;64898:11;64859:16;:51::i;:::-;64852:58;;;22020:13;;22004:12;:29;21996:52;;;;;-1:-1:-1;;;21996:52:0;;;;;;;;;;;;-1:-1:-1;;;21996:52:0;;;;;;;;;;;;;;81535:1026;81685:5;;81616:4;;-1:-1:-1;;;;;81685:5:0;81671:10;:19;81667:127;;81714:68;81719:18;81739:42;81714:4;:68::i;81667:127::-;81901:16;:14;:16::i;:::-;81879:18;;:38;81875:203;;81994:72;81999:22;82023:42;81994:4;:72::i;81875:203::-;23081:4;82150:24;:51;82146:157;;;82225:66;82230:15;82247:43;82225:4;:66::i;82146:157::-;82347:21;;;82379:48;;;;82445:68;;;;;;;;;;;;;;;;;;;;;;;;;82538:14;82533:20;;94876:262;94951:5;95003:10;-1:-1:-1;;;;;95003:18:0;;;94995:46;;;;;-1:-1:-1;;;94995:46:0;;;;;;;;;;;;-1:-1:-1;;;94995:46:0;;;;;;;;;;;;;;;95073:6;95060:9;:19;95052:46;;;;;-1:-1:-1;;;95052:46:0;;;;;;;;;;;;-1:-1:-1;;;95052:46:0;;;;;;;;;;;;;;;-1:-1:-1;95116:14:0;94876:262;;;;:::o;14484:337::-;14572:9;14583:4;14601:13;14616:19;;:::i;:::-;14639:31;14654:6;14662:7;14639:14;:31::i;2091:271::-;2162:9;2173:4;2191:14;2207:8;2219:13;2227:1;2230;2219:7;:13::i;:::-;2190:42;;-1:-1:-1;2190:42:0;-1:-1:-1;2257:18:0;2249:4;:26;;;;;;;;;2245:75;;-1:-1:-1;2300:4:0;-1:-1:-1;2306:1:0;;-1:-1:-1;2292:16:0;;2245:75;2339:15;2347:3;2352:1;2339:7;:15::i;11484:515::-;11545:9;11556:10;;:::i;:::-;11580:14;11596:20;11620:22;11628:3;11331:4;11620:7;:22::i;:::-;11579:63;;-1:-1:-1;11579:63:0;-1:-1:-1;11665:18:0;11657:4;:26;;;;;;;;;11653:92;;-1:-1:-1;11714:18:0;;;;;;;;;-1:-1:-1;11714:18:0;;11708:4;;-1:-1:-1;11714:18:0;-1:-1:-1;11700:33:0;;11653:92;11758:14;11774:13;11791:31;11799:15;11816:5;11791:7;:31::i;:::-;11757:65;;-1:-1:-1;11757:65:0;-1:-1:-1;11845:18:0;11837:4;:26;;;;;;;;;11833:92;;-1:-1:-1;11894:18:0;;;;;;;;;-1:-1:-1;11894:18:0;;11888:4;;-1:-1:-1;11894:18:0;-1:-1:-1;11880:33:0;;-1:-1:-1;;11880:33:0;11833:92;11965:25;;;;;;;;;;;;-1:-1:-1;;11965:25:0;;-1:-1:-1;11484:515:0;-1:-1:-1;;;;;;11484:515:0:o;16808:213::-;16990:12;11331:4;16990:23;;;16808:213::o;65545:3786::-;65719:10;;:74;;;-1:-1:-1;;;65719:74:0;;65757:4;65719:74;;;;-1:-1:-1;;;;;65719:74:0;;;;;;;;;;;;;;;;;;;;;;65640:4;;;;65719:10;;:29;;:74;;;;;;;;;;;;;;65640:4;65719:10;:74;;;5:2:-1;;;;30:1;27;20:12;5:2;65719:74:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;65719:74:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;65719:74:0;;-1:-1:-1;65808:12:0;;65804:146;;65844:94;65855:26;65883:45;65930:7;65844:10;:94::i;:::-;65837:101;;;;;65804:146;66060:16;:14;:16::i;:::-;66038:18;;:38;66034:148;;66100:70;66105:22;66129:40;66100:4;:70::i;66034:148::-;66194:32;;:::i;:::-;-1:-1:-1;;;;;66340:24:0;;;;;;:14;:24;;;;;:38;;;66319:18;;;:59;66509:37;66355:8;66509:27;:37::i;:::-;66486:19;;;66471:75;;;66472:12;;;66471:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;66577:18:0;;-1:-1:-1;66561:4:0;:12;;;:34;;;;;;;;;66557:187;;66619:113;66630:16;66648:63;66718:4;:12;;;66713:18;;;;;;;66619:113;66612:120;;;;;;66557:187;-1:-1:-1;;66826:11:0;:23;66822:157;;;66885:19;;;;66866:16;;;:38;66822:157;;;66937:16;;;:30;;;66822:157;67047:40;67063:5;67070:4;:16;;;67047:15;:40::i;:::-;67036:4;;:51;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67114:14:0;67102:8;;:26;;;;;;;;;67098:131;;67157:8;;67152:65;;67167:49;67152:4;:65::i;67098:131::-;67518:46;67526:4;:19;;;67547:4;:16;;;67518:7;:46::i;:::-;67492:22;;;67477:87;;;67478:12;;;67477:87;;;;;;;;;;;;;;;;;;;-1:-1:-1;67595:18:0;;-1:-1:-1;67579:4:0;:12;;;:34;;;;;;;;;67575:194;;67637:120;67648:16;67666:70;67743:4;:12;;;67738:18;;;;;;;67575:194;67820:39;67828:12;;67842:4;:16;;;67820:7;:39::i;:::-;67796:20;;;67781:78;;;67782:12;;;67781:78;;;;;;;;;;;;;;;;;;;-1:-1:-1;67890:18:0;;-1:-1:-1;67874:4:0;:12;;;:34;;;;;;;;;67870:185;;67932:111;67943:16;67961:61;68029:4;:12;;;68024:18;;;;;;;67870:185;68610:37;68623:5;68630:4;:16;;;68610:12;:37::i;:::-;68599:4;;:48;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68678:14:0;68666:8;;:26;;;;;;;;;68658:70;;;;;-1:-1:-1;;;68658:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;68848:22;;;;;;-1:-1:-1;;;;;68811:24:0;;;;;;;:14;:24;;;;;;;;;:59;;;68922:11;;68881:38;;;;:52;;;;68959:20;;;;68944:12;:35;;;69069:16;;;;69087:22;;69040:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69185:10;;69246:16;;;;;69264:18;;;;69185:98;;-1:-1:-1;;;69185:98:0;;69222:4;69185:98;;;;-1:-1:-1;;;;;69185:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:10;;;:28;;:98;;;;;:10;;:98;;;;;;;;:10;;:98;;;5:2:-1;;;;30:1;27;20:12;5:2;69185:98:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;69308:14:0;;-1:-1:-1;69303:20:0;;-1:-1:-1;;69303:20:0;;69296:27;65545:3786;-1:-1:-1;;;;;;65545:3786:0:o;95610:221::-;95772:19;;95684:5;;-1:-1:-1;;;;;95772:11:0;;;:19;;;;;95784:6;;95684:5;95772:19;95684:5;95772:19;95784:6;95772:11;:19;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;95809:14:0;;95610:221;-1:-1:-1;;;95610:221:0:o;54147:4728::-;54254:4;54279:19;;;:42;;-1:-1:-1;54302:19:0;;54279:42;54271:107;;;;-1:-1:-1;;;54271:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54391:27;;:::i;:::-;54535:28;:26;:28::i;:::-;54506:25;;;54491:72;;;54492:12;;;54491:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;54594:18:0;;-1:-1:-1;54578:4:0;:12;;;:34;;;;;;;;;54574:168;;54636:94;54647:16;54665:44;54716:4;:12;;;54711:18;;;;;;;54574:168;54796:18;;54792:1290;;55072:17;;;:34;;;55177:42;;;;;;;;55192:25;;;;55177:42;;55159:77;;55092:14;55159:17;:77::i;:::-;55138:17;;;55123:113;;;55124:12;;;55123:113;;;;;;;;;;;;;;;;;;;-1:-1:-1;55271:18:0;;-1:-1:-1;55255:4:0;:12;;;:34;;;;;;;;;55251:185;;55317:103;55328:16;55346:53;55406:4;:12;;;55401:18;;;;;;;55251:185;54792:1290;;;55738:82;55761:14;55777:42;;;;;;;;55792:4;:25;;;55777:42;;;55738:22;:82::i;:::-;55717:17;;;55702:118;;;55703:12;;;55702:118;;;;;;;;;;;;;;;;;;;-1:-1:-1;55855:18:0;;-1:-1:-1;55839:4:0;:12;;;:34;;;;;;;;;55835:185;;55901:103;55912:16;55930:53;55990:4;:12;;;55985:18;;;;;;;55835:185;56036:17;;;:34;;;54792:1290;56151:10;;56201:17;;;;56151:68;;;-1:-1:-1;;;56151:68:0;;56184:4;56151:68;;;;-1:-1:-1;;;;;56151:68:0;;;;;;;;;;;;;;;;56136:12;;56151:10;;;;;:24;;:68;;;;;;;;;;;;;;;56136:12;56151:10;:68;;;5:2:-1;;;;30:1;27;20:12;5:2;56151:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;56151:68:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;56151:68:0;;-1:-1:-1;56234:12:0;;56230:140;;56270:88;56281:26;56309:39;56350:7;56270:10;:88::i;56230:140::-;56480:16;:14;:16::i;:::-;56458:18;;:38;56454:142;;56520:64;56525:22;56549:34;56520:4;:64::i;56454:142::-;56891:39;56899:11;;56912:4;:17;;;56891:7;:39::i;:::-;56868:19;;;56853:77;;;56854:12;;;56853:77;;;;;;;;;;;;;;;;;;;-1:-1:-1;56961:18:0;;-1:-1:-1;56945:4:0;:12;;;:34;;;;;;;;;56941:178;;57003:104;57014:16;57032:54;57093:4;:12;;;57088:18;;;;;;;56941:178;-1:-1:-1;;;;;57179:23:0;;;;;;:13;:23;;;;;;57204:17;;;;57171:51;;57179:23;57171:7;:51::i;:::-;57146:21;;;57131:91;;;57132:12;;;57131:91;;;;;;;;;;;;;;;;;;;-1:-1:-1;57253:18:0;;-1:-1:-1;57237:4:0;:12;;;:34;;;;;;;;;57233:181;;57295:107;57306:16;57324:57;57388:4;:12;;;57383:18;;;;;;;57233:181;57512:4;:17;;;57495:14;:12;:14::i;:::-;:34;57491:155;;;57553:81;57558:29;57589:44;57553:4;:81::i;57491:155::-;58200:42;58214:8;58224:4;:17;;;58200:13;:42::i;:::-;58189:4;;:53;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58273:14:0;58261:8;;:26;;;;;;;;;58253:65;;;;;-1:-1:-1;;;58253:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;58411:19;;;;58397:11;:33;58467:21;;;;-1:-1:-1;;;;;58441:23:0;;;;;;:13;:23;;;;;;;;;:47;;;;58600:17;;;;58566:52;;;;;;;58593:4;;-1:-1:-1;;;;;;;;;;;58566:52:0;;;;;;;58651:17;;;;58670;;;;;58634:54;;;-1:-1:-1;;;;;58634:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58741:10;;58790:17;;;;58809;;;;58741:86;;;-1:-1:-1;;;58741:86:0;;58773:4;58741:86;;;;-1:-1:-1;;;;;58741:86:0;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:23;;:86;;;;;:10;;:86;;;;;;;:10;;:86;;;5:2:-1;;;;30:1;27;20:12;655:343:0;711:9;;743:6;739:69;;-1:-1:-1;774:18:0;;-1:-1:-1;774:18:0;766:30;;739:69;829:5;;;833:1;829;:5;:1;851:5;;;;;:10;847:144;;-1:-1:-1;886:26:0;;-1:-1:-1;914:1:0;;-1:-1:-1;878:38:0;;847:144;957:18;;-1:-1:-1;977:1:0;-1:-1:-1;949:30:0;;1093:215;1149:9;;1181:6;1177:77;;-1:-1:-1;1212:26:0;;-1:-1:-1;1240:1:0;1204:38;;1177:77;1274:18;1298:1;1294;:5;;;;;;1266:34;;;;1093:215;;;;;:::o;71349:3176::-;71555:10;;:110;;;-1:-1:-1;;;71555:110:0;;71597:4;71555:110;;;;-1:-1:-1;;;;;71555:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71478:4;;;;71555:10;;:33;;:110;;;;;;;;;;;;;;71478:4;71555:10;:110;;;5:2:-1;;;;30:1;27;20:12;5:2;71555:110:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;71555:110:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;71555:110:0;;-1:-1:-1;71680:12:0;;71676:143;;71716:91;71727:26;71755:42;71799:7;71716:10;:91::i;71676:143::-;71929:16;:14;:16::i;:::-;71907:18;;:38;71903:145;;71969:67;71974:22;71998:37;71969:4;:67::i;71903:145::-;72194:16;:14;:16::i;:::-;72153;-1:-1:-1;;;;;72153:35:0;;:37;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;72153:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;72153:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;72153:37:0;:57;72149:175;;72234:78;72239:22;72263:48;72234:4;:78::i;72149:175::-;72397:10;-1:-1:-1;;;;;72385:22:0;:8;-1:-1:-1;;;;;72385:22:0;;72381:140;;;72431:78;72436:26;72464:44;72431:4;:78::i;72381:140::-;72576:16;72572:142;;72616:86;72621:36;72659:42;72616:4;:86::i;72572:142::-;-1:-1:-1;;72770:11:0;:23;72766:153;;;72817:90;72822:36;72860:46;72817:4;:90::i;72766:153::-;73055:10;;:95;;;-1:-1:-1;;;73055:95:0;;73104:4;73055:95;;;;-1:-1:-1;;;;;73055:95:0;;;;;;;;;;;;;;;73012:21;;;;73055:10;;;:40;;:95;;;;;;;;;;;;:10;:95;;;5:2:-1;;;;30:1;27;20:12;5:2;73055:95:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;73055:95:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;73055:95:0;;;;;;;;;-1:-1:-1;73055:95:0;-1:-1:-1;73165:21:0;;73161:189;;73210:128;73221:34;73257:62;73321:16;73210:10;:128::i;:::-;73203:135;;;;;;;73161:189;73451:16;-1:-1:-1;;;;;73451:26:0;;73478:8;73451:36;;;;;;;;;;;;;-1:-1:-1;;;;;73451:36:0;-1:-1:-1;;;;;73451:36:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;73451:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;73451:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;73451:36:0;73437:50;;73433:166;;;73511:76;73516:32;73550:36;73511:4;:76::i;73433:166::-;73652:21;73676:51;73693:10;73705:8;73715:11;73676:16;:51::i;:::-;73652:75;-1:-1:-1;73742:40:0;;73738:158;;73806:78;73817:16;73811:23;;;;;;;;73836:47;73806:4;:78::i;:::-;73799:85;;;;;;;;73738:158;74012:57;;;-1:-1:-1;;;74012:57:0;;-1:-1:-1;;;;;74012:57:0;;;;;;;;;;;;;;;;;;;;;;73994:15;;74012:22;;;;;:57;;;;;;;;;;;;;;73994:15;74012:22;:57;;;5:2:-1;;;;30:1;27;20:12;5:2;74012:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;74012:57:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;74012:57:0;;-1:-1:-1;74088:34:0;;74080:67;;;;;-1:-1:-1;;;74080:67:0;;;;;;;;;;;;-1:-1:-1;;;74080:67:0;;;;;;;;;;;;;;;74212:90;;;-1:-1:-1;;;;;74212:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74355:10;;:122;;;-1:-1:-1;;;74355:122:0;;74396:4;74355:122;;;;-1:-1:-1;;;;;74355:122:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:32;;:122;;;;;:10;;:122;;;;;;;:10;;:122;;;5:2:-1;;;;30:1;27;20:12;5:2;74355:122:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;74502:14:0;;-1:-1:-1;74497:20:0;;-1:-1:-1;;74497:20:0;;74490:27;71349:3176;-1:-1:-1;;;;;;;;;;71349:3176:0:o;14829:1136::-;14896:9;14907:10;;:::i;:::-;14933:14;14949:24;14977:31;14985:1;:10;;;14997:1;:10;;;14977:7;:31::i;:::-;14932:76;;-1:-1:-1;14932:76:0;-1:-1:-1;15031:18:0;15023:4;:26;;;;;;;;;15019:92;;-1:-1:-1;15080:18:0;;;;;;;;;-1:-1:-1;15080:18:0;;15074:4;;-1:-1:-1;15080:18:0;-1:-1:-1;15066:33:0;;15019:92;15428:14;;15485:42;11371:10;15507:19;15485:7;:42::i;:::-;15427:100;;-1:-1:-1;15427:100:0;-1:-1:-1;15550:18:0;15542:4;:26;;;;;;;;;15538:92;;-1:-1:-1;15599:18:0;;;;;;;;;-1:-1:-1;15599:18:0;;15593:4;;-1:-1:-1;15599:18:0;-1:-1:-1;15585:33:0;;-1:-1:-1;;15585:33:0;15538:92;15643:14;15659:12;15675:51;15683:32;11331:4;15675:7;:51::i;:::-;15642:84;;-1:-1:-1;15642:84:0;-1:-1:-1;15872:18:0;15864:4;:26;;;;;;;;;15857:34;;;;15932:24;;;;;;;;;;;;-1:-1:-1;;15932:24:0;;-1:-1:-1;14829:1136:0;-1:-1:-1;;;;;;;;14829:1136:0:o;60114:3164::-;60272:10;;:63;;;-1:-1:-1;;;60272:63:0;;60305:4;60272:63;;;;-1:-1:-1;;;;;60272:63:0;;;;;;;;;;;;;;;60198:4;;;;60272:10;;:24;;:63;;;;;;;;;;;;;;60198:4;60272:10;:63;;;5:2:-1;;;;30:1;27;20:12;5:2;60272:63:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;60272:63:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;60272:63:0;;-1:-1:-1;60350:12:0;;60346:140;;60386:88;60397:26;60425:39;60466:7;60386:10;:88::i;60346:140::-;60596:16;:14;:16::i;:::-;60574:18;;:38;60570:142;;60636:64;60641:22;60665:34;60636:4;:64::i;60570:142::-;60821:12;60804:14;:12;:14::i;:::-;:29;60800:143;;;60857:74;60862:29;60893:37;60857:4;:74::i;60800:143::-;60955:27;;:::i;:::-;61270:37;61298:8;61270:27;:37::i;:::-;61247:19;;;61232:75;;;61233:12;;;61232:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;61338:18:0;;-1:-1:-1;61322:4:0;:12;;;:34;;;;;;;;;61318:181;;61380:107;61391:16;61409:57;61473:4;:12;;;61468:18;;;;;;;61318:181;61552:42;61560:4;:19;;;61581:12;61552:7;:42::i;:::-;61526:22;;;61511:83;;;61512:12;;;61511:83;;;;;;;;;;;;;;;;;;;-1:-1:-1;61625:18:0;;-1:-1:-1;61609:4:0;:12;;;:34;;;;;;;;;61605:188;;61667:114;61678:16;61696:64;61767:4;:12;;;61762:18;;;;;;;61605:188;61844:35;61852:12;;61866;61844:7;:35::i;:::-;61820:20;;;61805:74;;;61806:12;;;61805:74;;;;;;;;;;;;;;;;;;;-1:-1:-1;61910:18:0;;-1:-1:-1;61894:4:0;:12;;;:34;;;;;;;;;61890:179;;61952:105;61963:16;61981:55;62043:4;:12;;;62038:18;;;;;;;61890:179;62619:37;62633:8;62643:12;62619:13;:37::i;:::-;62608:4;;:48;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62687:14:0;62675:8;;:26;;;;;;;;;62667:65;;;;;-1:-1:-1;;;62667:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;62852:22;;;;;;-1:-1:-1;;;;;62815:24:0;;;;;;:14;:24;;;;;;;;;:59;;;62926:11;;62885:38;;;;:52;;;;62963:20;;;;;62948:12;:35;;;63070:22;;63039:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63168:10;;:62;;;-1:-1:-1;;;63168:62:0;;63200:4;63168:62;;;;-1:-1:-1;;;;;63168:62:0;;;;;;;;;;;;;;;:10;;;;;:23;;:62;;;;;:10;;:62;;;;;;;:10;;:62;;;5:2:-1;;;;30:1;27;20:12;90455:5381:0;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;90455:5381:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;90455:5381:0;;;;;;;;;;;;;;;;;;-1:-1:-1;90455:5381:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;90455:5381:0;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

bzzr://c083756c3e8a158a35e507d4a58773aa348c98009ad6c2d72645ca1023abe1a6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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