Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 4,716 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 14287974 | 1000 days ago | IN | 0 ETH | 0.00117541 | ||||
Transfer | 12895383 | 1217 days ago | IN | 0 ETH | 0.00032718 | ||||
Transfer | 12580548 | 1266 days ago | IN | 0 ETH | 0.00036354 | ||||
Transfer | 12541842 | 1272 days ago | IN | 0 ETH | 0.00054531 | ||||
Transfer | 12305753 | 1308 days ago | IN | 0 ETH | 0.00163647 | ||||
Transfer | 12224086 | 1321 days ago | IN | 0 ETH | 0.00303793 | ||||
Transfer | 12164960 | 1330 days ago | IN | 0 ETH | 0.0036899 | ||||
Transfer | 12154333 | 1332 days ago | IN | 0 ETH | 0.0074179 | ||||
Transfer | 12122252 | 1337 days ago | IN | 0 ETH | 0.00474484 | ||||
Transfer | 12060951 | 1346 days ago | IN | 0 ETH | 0.00421546 | ||||
Transfer | 12040297 | 1349 days ago | IN | 0 ETH | 0.00362725 | ||||
Transfer | 11991279 | 1357 days ago | IN | 0 ETH | 0.0048999 | ||||
Repay Borrow | 11951423 | 1363 days ago | IN | 0 ETH | 0.00595688 | ||||
Repay Borrow | 11951408 | 1363 days ago | IN | 0 ETH | 0.00574664 | ||||
Repay Borrow | 11951404 | 1363 days ago | IN | 0 ETH | 0.00532615 | ||||
Transfer | 11950940 | 1363 days ago | IN | 0 ETH | 0.00225312 | ||||
Transfer | 11950849 | 1363 days ago | IN | 0 ETH | 0.00241639 | ||||
Transfer | 11931219 | 1366 days ago | IN | 0 ETH | 0.00493256 | ||||
Transfer | 11931184 | 1366 days ago | IN | 0 ETH | 0.00395258 | ||||
Transfer | 11931016 | 1366 days ago | IN | 0 ETH | 0.0044442 | ||||
Transfer | 11930826 | 1366 days ago | IN | 0 ETH | 0.00479512 | ||||
Transfer | 11930348 | 1366 days ago | IN | 0 ETH | 0.00362592 | ||||
Transfer | 11927051 | 1367 days ago | IN | 0 ETH | 0.00696041 | ||||
Redeem Underlyin... | 11925857 | 1367 days ago | IN | 0 ETH | 0.00888473 | ||||
Redeem Underlyin... | 11925840 | 1367 days ago | IN | 0 ETH | 0.00951936 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
CErc20
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-18 */ //------------------------------------------ // File ErrorReporter.sol pragma solidity ^0.5.16; contract ComptrollerErrorReporter { enum Error { NO_ERROR, UNAUTHORIZED, COMPTROLLER_MISMATCH, INSUFFICIENT_SHORTFALL, INSUFFICIENT_LIQUIDITY, INVALID_CLOSE_FACTOR, INVALID_COLLATERAL_FACTOR, INVALID_LIQUIDATION_INCENTIVE, MARKET_NOT_ENTERED, // no longer possible MARKET_NOT_LISTED, MARKET_ALREADY_LISTED, MATH_ERROR, NONZERO_BORROW_BALANCE, PRICE_ERROR, REJECTION, SNAPSHOT_ERROR, TOO_MANY_ASSETS, TOO_MUCH_REPAY } enum FailureInfo { ACCEPT_ADMIN_PENDING_ADMIN_CHECK, ACCEPT_PENDING_IMPLEMENTATION_ADDRESS_CHECK, EXIT_MARKET_BALANCE_OWED, EXIT_MARKET_REJECTION, SET_CLOSE_FACTOR_OWNER_CHECK, SET_CLOSE_FACTOR_VALIDATION, SET_COLLATERAL_FACTOR_OWNER_CHECK, SET_COLLATERAL_FACTOR_NO_EXISTS, SET_COLLATERAL_FACTOR_VALIDATION, SET_COLLATERAL_FACTOR_WITHOUT_PRICE, SET_IMPLEMENTATION_OWNER_CHECK, SET_LIQUIDATION_INCENTIVE_OWNER_CHECK, SET_LIQUIDATION_INCENTIVE_VALIDATION, SET_MAX_ASSETS_OWNER_CHECK, SET_PENDING_ADMIN_OWNER_CHECK, SET_PENDING_IMPLEMENTATION_OWNER_CHECK, SET_PRICE_ORACLE_OWNER_CHECK, SUPPORT_MARKET_EXISTS, SUPPORT_MARKET_OWNER_CHECK, SET_PAUSE_GUARDIAN_OWNER_CHECK } /** * @dev `error` corresponds to enum Error; `info` corresponds to enum FailureInfo, and `detail` is an arbitrary * contract-specific code that enables us to report opaque error codes from upgradeable contracts. **/ event Failure(uint error, uint info, uint detail); /** * @dev use this when reporting a known error from the money market or a non-upgradeable collaborator */ function fail(Error err, FailureInfo info) internal returns (uint) { emit Failure(uint(err), uint(info), 0); return uint(err); } /** * @dev use this when reporting an opaque error from an upgradeable collaborator contract */ function failOpaque(Error err, FailureInfo info, uint opaqueError) internal returns (uint) { emit Failure(uint(err), uint(info), opaqueError); return uint(err); } } contract TokenErrorReporter { enum Error { NO_ERROR, UNAUTHORIZED, BAD_INPUT, COMPTROLLER_REJECTION, COMPTROLLER_CALCULATION_ERROR, INTEREST_RATE_MODEL_ERROR, INVALID_ACCOUNT_PAIR, INVALID_CLOSE_AMOUNT_REQUESTED, INVALID_COLLATERAL_FACTOR, MATH_ERROR, MARKET_NOT_FRESH, MARKET_NOT_LISTED, TOKEN_INSUFFICIENT_ALLOWANCE, TOKEN_INSUFFICIENT_BALANCE, TOKEN_INSUFFICIENT_CASH, TOKEN_TRANSFER_IN_FAILED, TOKEN_TRANSFER_OUT_FAILED } /* * Note: FailureInfo (but not Error) is kept in alphabetical order * This is because FailureInfo grows significantly faster, and * the order of Error has some meaning, while the order of FailureInfo * is entirely arbitrary. */ enum FailureInfo { ACCEPT_ADMIN_PENDING_ADMIN_CHECK, ACCRUE_INTEREST_ACCUMULATED_INTEREST_CALCULATION_FAILED, ACCRUE_INTEREST_BORROW_RATE_CALCULATION_FAILED, ACCRUE_INTEREST_NEW_BORROW_INDEX_CALCULATION_FAILED, ACCRUE_INTEREST_NEW_TOTAL_BORROWS_CALCULATION_FAILED, ACCRUE_INTEREST_NEW_TOTAL_RESERVES_CALCULATION_FAILED, ACCRUE_INTEREST_SIMPLE_INTEREST_FACTOR_CALCULATION_FAILED, BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED, BORROW_ACCRUE_INTEREST_FAILED, BORROW_CASH_NOT_AVAILABLE, BORROW_FRESHNESS_CHECK, BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED, BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED, BORROW_MARKET_NOT_LISTED, BORROW_COMPTROLLER_REJECTION, LIQUIDATE_ACCRUE_BORROW_INTEREST_FAILED, LIQUIDATE_ACCRUE_COLLATERAL_INTEREST_FAILED, LIQUIDATE_COLLATERAL_FRESHNESS_CHECK, LIQUIDATE_COMPTROLLER_REJECTION, LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED, LIQUIDATE_CLOSE_AMOUNT_IS_UINT_MAX, LIQUIDATE_CLOSE_AMOUNT_IS_ZERO, LIQUIDATE_FRESHNESS_CHECK, LIQUIDATE_LIQUIDATOR_IS_BORROWER, LIQUIDATE_REPAY_BORROW_FRESH_FAILED, LIQUIDATE_SEIZE_BALANCE_INCREMENT_FAILED, LIQUIDATE_SEIZE_BALANCE_DECREMENT_FAILED, LIQUIDATE_SEIZE_COMPTROLLER_REJECTION, LIQUIDATE_SEIZE_LIQUIDATOR_IS_BORROWER, LIQUIDATE_SEIZE_TOO_MUCH, MINT_ACCRUE_INTEREST_FAILED, MINT_COMPTROLLER_REJECTION, MINT_EXCHANGE_CALCULATION_FAILED, MINT_EXCHANGE_RATE_READ_FAILED, MINT_FRESHNESS_CHECK, MINT_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED, MINT_NEW_TOTAL_SUPPLY_CALCULATION_FAILED, MINT_TRANSFER_IN_FAILED, MINT_TRANSFER_IN_NOT_POSSIBLE, REDEEM_ACCRUE_INTEREST_FAILED, REDEEM_COMPTROLLER_REJECTION, REDEEM_EXCHANGE_TOKENS_CALCULATION_FAILED, REDEEM_EXCHANGE_AMOUNT_CALCULATION_FAILED, REDEEM_EXCHANGE_RATE_READ_FAILED, REDEEM_FRESHNESS_CHECK, REDEEM_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED, REDEEM_NEW_TOTAL_SUPPLY_CALCULATION_FAILED, REDEEM_TRANSFER_OUT_NOT_POSSIBLE, REDUCE_RESERVES_ACCRUE_INTEREST_FAILED, REDUCE_RESERVES_ADMIN_CHECK, REDUCE_RESERVES_CASH_NOT_AVAILABLE, REDUCE_RESERVES_FRESH_CHECK, REDUCE_RESERVES_VALIDATION, REPAY_BEHALF_ACCRUE_INTEREST_FAILED, REPAY_BORROW_ACCRUE_INTEREST_FAILED, REPAY_BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED, REPAY_BORROW_COMPTROLLER_REJECTION, REPAY_BORROW_FRESHNESS_CHECK, REPAY_BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED, REPAY_BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED, REPAY_BORROW_TRANSFER_IN_NOT_POSSIBLE, SET_COLLATERAL_FACTOR_OWNER_CHECK, SET_COLLATERAL_FACTOR_VALIDATION, SET_COMPTROLLER_OWNER_CHECK, SET_INTEREST_RATE_MODEL_ACCRUE_INTEREST_FAILED, SET_INTEREST_RATE_MODEL_FRESH_CHECK, SET_INTEREST_RATE_MODEL_OWNER_CHECK, SET_MAX_ASSETS_OWNER_CHECK, SET_ORACLE_MARKET_NOT_LISTED, SET_PENDING_ADMIN_OWNER_CHECK, SET_RESERVE_FACTOR_ACCRUE_INTEREST_FAILED, SET_RESERVE_FACTOR_ADMIN_CHECK, SET_RESERVE_FACTOR_FRESH_CHECK, SET_RESERVE_FACTOR_BOUNDS_CHECK, TRANSFER_COMPTROLLER_REJECTION, TRANSFER_NOT_ALLOWED, TRANSFER_NOT_ENOUGH, TRANSFER_TOO_MUCH, ADD_RESERVES_ACCRUE_INTEREST_FAILED, ADD_RESERVES_FRESH_CHECK, ADD_RESERVES_TRANSFER_IN_NOT_POSSIBLE } /** * @dev `error` corresponds to enum Error; `info` corresponds to enum FailureInfo, and `detail` is an arbitrary * contract-specific code that enables us to report opaque error codes from upgradeable contracts. **/ event Failure(uint error, uint info, uint detail); /** * @dev use this when reporting a known error from the money market or a non-upgradeable collaborator */ function fail(Error err, FailureInfo info) internal returns (uint) { emit Failure(uint(err), uint(info), 0); return uint(err); } /** * @dev use this when reporting an opaque error from an upgradeable collaborator contract */ function failOpaque(Error err, FailureInfo info, uint opaqueError) internal returns (uint) { emit Failure(uint(err), uint(info), opaqueError); return uint(err); } } //------------------------------------------ // File CarefulMath.sol pragma solidity ^0.5.16; /** * @title Careful Math * @author Compound * @notice Derived from OpenZeppelin's SafeMath library * https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/math/SafeMath.sol */ contract CarefulMath { /** * @dev Possible error codes that we can return */ enum MathError { NO_ERROR, DIVISION_BY_ZERO, INTEGER_OVERFLOW, INTEGER_UNDERFLOW } /** * @dev Multiplies two numbers, returns an error on overflow. */ function mulUInt(uint a, uint b) internal pure returns (MathError, uint) { if (a == 0) { return (MathError.NO_ERROR, 0); } uint c = a * b; if (c / a != b) { return (MathError.INTEGER_OVERFLOW, 0); } else { return (MathError.NO_ERROR, c); } } /** * @dev Integer division of two numbers, truncating the quotient. */ function divUInt(uint a, uint b) internal pure returns (MathError, uint) { if (b == 0) { return (MathError.DIVISION_BY_ZERO, 0); } return (MathError.NO_ERROR, a / b); } /** * @dev Subtracts two numbers, returns an error on overflow (i.e. if subtrahend is greater than minuend). */ function subUInt(uint a, uint b) internal pure returns (MathError, uint) { if (b <= a) { return (MathError.NO_ERROR, a - b); } else { return (MathError.INTEGER_UNDERFLOW, 0); } } /** * @dev Adds two numbers, returns an error on overflow. */ function addUInt(uint a, uint b) internal pure returns (MathError, uint) { uint c = a + b; if (c >= a) { return (MathError.NO_ERROR, c); } else { return (MathError.INTEGER_OVERFLOW, 0); } } /** * @dev add a and b and then subtract c */ function addThenSubUInt(uint a, uint b, uint c) internal pure returns (MathError, uint) { (MathError err0, uint sum) = addUInt(a, b); if (err0 != MathError.NO_ERROR) { return (err0, 0); } return subUInt(sum, c); } } //------------------------------------------ // File Exponential.sol pragma solidity ^0.5.16; /** * @title Exponential module for storing fixed-precision decimals * @author Compound * @notice Exp is a struct which stores decimals with a fixed precision of 18 decimal places. * Thus, if we wanted to store the 5.1, mantissa would store 5.1e18. That is: * `Exp({mantissa: 5100000000000000000})`. */ contract Exponential is CarefulMath { uint constant expScale = 1e18; uint constant doubleScale = 1e36; uint constant halfExpScale = expScale/2; uint constant mantissaOne = expScale; struct Exp { uint mantissa; } struct Double { uint mantissa; } /** * @dev Creates an exponential from numerator and denominator values. * Note: Returns an error if (`num` * 10e18) > MAX_INT, * or if `denom` is zero. */ function getExp(uint num, uint denom) pure internal returns (MathError, Exp memory) { (MathError err0, uint scaledNumerator) = mulUInt(num, expScale); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } (MathError err1, uint rational) = divUInt(scaledNumerator, denom); if (err1 != MathError.NO_ERROR) { return (err1, Exp({mantissa: 0})); } return (MathError.NO_ERROR, Exp({mantissa: rational})); } /** * @dev Adds two exponentials, returning a new exponential. */ function addExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) { (MathError error, uint result) = addUInt(a.mantissa, b.mantissa); return (error, Exp({mantissa: result})); } /** * @dev Subtracts two exponentials, returning a new exponential. */ function subExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) { (MathError error, uint result) = subUInt(a.mantissa, b.mantissa); return (error, Exp({mantissa: result})); } /** * @dev Multiply an Exp by a scalar, returning a new Exp. */ function mulScalar(Exp memory a, uint scalar) pure internal returns (MathError, Exp memory) { (MathError err0, uint scaledMantissa) = mulUInt(a.mantissa, scalar); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } return (MathError.NO_ERROR, Exp({mantissa: scaledMantissa})); } /** * @dev Multiply an Exp by a scalar, then truncate to return an unsigned integer. */ function mulScalarTruncate(Exp memory a, uint scalar) pure internal returns (MathError, uint) { (MathError err, Exp memory product) = mulScalar(a, scalar); if (err != MathError.NO_ERROR) { return (err, 0); } return (MathError.NO_ERROR, truncate(product)); } /** * @dev Multiply an Exp by a scalar, truncate, then add an to an unsigned integer, returning an unsigned integer. */ function mulScalarTruncateAddUInt(Exp memory a, uint scalar, uint addend) pure internal returns (MathError, uint) { (MathError err, Exp memory product) = mulScalar(a, scalar); if (err != MathError.NO_ERROR) { return (err, 0); } return addUInt(truncate(product), addend); } /** * @dev Divide an Exp by a scalar, returning a new Exp. */ function divScalar(Exp memory a, uint scalar) pure internal returns (MathError, Exp memory) { (MathError err0, uint descaledMantissa) = divUInt(a.mantissa, scalar); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } return (MathError.NO_ERROR, Exp({mantissa: descaledMantissa})); } /** * @dev Divide a scalar by an Exp, returning a new Exp. */ function divScalarByExp(uint scalar, Exp memory divisor) pure internal returns (MathError, Exp memory) { /* We are doing this as: getExp(mulUInt(expScale, scalar), divisor.mantissa) How it works: Exp = a / b; Scalar = s; `s / (a / b)` = `b * s / a` and since for an Exp `a = mantissa, b = expScale` */ (MathError err0, uint numerator) = mulUInt(expScale, scalar); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } return getExp(numerator, divisor.mantissa); } /** * @dev Divide a scalar by an Exp, then truncate to return an unsigned integer. */ function divScalarByExpTruncate(uint scalar, Exp memory divisor) pure internal returns (MathError, uint) { (MathError err, Exp memory fraction) = divScalarByExp(scalar, divisor); if (err != MathError.NO_ERROR) { return (err, 0); } return (MathError.NO_ERROR, truncate(fraction)); } /** * @dev Multiplies two exponentials, returning a new exponential. */ function mulExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) { (MathError err0, uint doubleScaledProduct) = mulUInt(a.mantissa, b.mantissa); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } // We add half the scale before dividing so that we get rounding instead of truncation. // See "Listing 6" and text above it at https://accu.org/index.php/journals/1717 // Without this change, a result like 6.6...e-19 will be truncated to 0 instead of being rounded to 1e-18. (MathError err1, uint doubleScaledProductWithHalfScale) = addUInt(halfExpScale, doubleScaledProduct); if (err1 != MathError.NO_ERROR) { return (err1, Exp({mantissa: 0})); } (MathError err2, uint product) = divUInt(doubleScaledProductWithHalfScale, expScale); // The only error `div` can return is MathError.DIVISION_BY_ZERO but we control `expScale` and it is not zero. assert(err2 == MathError.NO_ERROR); return (MathError.NO_ERROR, Exp({mantissa: product})); } /** * @dev Multiplies two exponentials given their mantissas, returning a new exponential. */ function mulExp(uint a, uint b) pure internal returns (MathError, Exp memory) { return mulExp(Exp({mantissa: a}), Exp({mantissa: b})); } /** * @dev Multiplies three exponentials, returning a new exponential. */ function mulExp3(Exp memory a, Exp memory b, Exp memory c) pure internal returns (MathError, Exp memory) { (MathError err, Exp memory ab) = mulExp(a, b); if (err != MathError.NO_ERROR) { return (err, ab); } return mulExp(ab, c); } /** * @dev Divides two exponentials, returning a new exponential. * (a/scale) / (b/scale) = (a/scale) * (scale/b) = a/b, * which we can scale as an Exp by calling getExp(a.mantissa, b.mantissa) */ function divExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) { return getExp(a.mantissa, b.mantissa); } /** * @dev Truncates the given exp to a whole number value. * For example, truncate(Exp{mantissa: 15 * expScale}) = 15 */ function truncate(Exp memory exp) pure internal returns (uint) { // Note: We are not using careful math here as we're performing a division that cannot fail return exp.mantissa / expScale; } /** * @dev Checks if first Exp is less than second Exp. */ function lessThanExp(Exp memory left, Exp memory right) pure internal returns (bool) { return left.mantissa < right.mantissa; } /** * @dev Checks if left Exp <= right Exp. */ function lessThanOrEqualExp(Exp memory left, Exp memory right) pure internal returns (bool) { return left.mantissa <= right.mantissa; } /** * @dev Checks if left Exp > right Exp. */ function greaterThanExp(Exp memory left, Exp memory right) pure internal returns (bool) { return left.mantissa > right.mantissa; } /** * @dev returns true if Exp is exactly zero */ function isZeroExp(Exp memory value) pure internal returns (bool) { return value.mantissa == 0; } function safe224(uint n, string memory errorMessage) pure internal returns (uint224) { require(n < 2**224, errorMessage); return uint224(n); } function safe32(uint n, string memory errorMessage) pure internal returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function add_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { return Exp({mantissa: add_(a.mantissa, b.mantissa)}); } function add_(Double memory a, Double memory b) pure internal returns (Double memory) { return Double({mantissa: add_(a.mantissa, b.mantissa)}); } function add_(uint a, uint b) pure internal returns (uint) { return add_(a, b, "addition overflow"); } function add_(uint a, uint b, string memory errorMessage) pure internal returns (uint) { uint c = a + b; require(c >= a, errorMessage); return c; } function sub_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { return Exp({mantissa: sub_(a.mantissa, b.mantissa)}); } function sub_(Double memory a, Double memory b) pure internal returns (Double memory) { return Double({mantissa: sub_(a.mantissa, b.mantissa)}); } function sub_(uint a, uint b) pure internal returns (uint) { return sub_(a, b, "subtraction underflow"); } function sub_(uint a, uint b, string memory errorMessage) pure internal returns (uint) { require(b <= a, errorMessage); return a - b; } function mul_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { return Exp({mantissa: mul_(a.mantissa, b.mantissa) / expScale}); } function mul_(Exp memory a, uint b) pure internal returns (Exp memory) { return Exp({mantissa: mul_(a.mantissa, b)}); } function mul_(uint a, Exp memory b) pure internal returns (uint) { return mul_(a, b.mantissa) / expScale; } function mul_(Double memory a, Double memory b) pure internal returns (Double memory) { return Double({mantissa: mul_(a.mantissa, b.mantissa) / doubleScale}); } function mul_(Double memory a, uint b) pure internal returns (Double memory) { return Double({mantissa: mul_(a.mantissa, b)}); } function mul_(uint a, Double memory b) pure internal returns (uint) { return mul_(a, b.mantissa) / doubleScale; } function mul_(uint a, uint b) pure internal returns (uint) { return mul_(a, b, "multiplication overflow"); } function mul_(uint a, uint b, string memory errorMessage) pure internal returns (uint) { if (a == 0 || b == 0) { return 0; } uint c = a * b; require(c / a == b, errorMessage); return c; } function div_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { return Exp({mantissa: div_(mul_(a.mantissa, expScale), b.mantissa)}); } function div_(Exp memory a, uint b) pure internal returns (Exp memory) { return Exp({mantissa: div_(a.mantissa, b)}); } function div_(uint a, Exp memory b) pure internal returns (uint) { return div_(mul_(a, expScale), b.mantissa); } function div_(Double memory a, Double memory b) pure internal returns (Double memory) { return Double({mantissa: div_(mul_(a.mantissa, doubleScale), b.mantissa)}); } function div_(Double memory a, uint b) pure internal returns (Double memory) { return Double({mantissa: div_(a.mantissa, b)}); } function div_(uint a, Double memory b) pure internal returns (uint) { return div_(mul_(a, doubleScale), b.mantissa); } function div_(uint a, uint b) pure internal returns (uint) { return div_(a, b, "divide by zero"); } function div_(uint a, uint b, string memory errorMessage) pure internal returns (uint) { require(b > 0, errorMessage); return a / b; } function fraction(uint a, uint b) pure internal returns (Double memory) { return Double({mantissa: div_(mul_(a, doubleScale), b)}); } } //------------------------------------------ // File ComptrollerInterface.sol pragma solidity ^0.5.16; contract ComptrollerInterface { /// @notice Indicator that this is a Comptroller contract (for inspection) bool public constant isComptroller = true; /*** Assets You Are In ***/ function enterMarkets(address[] calldata cTokens) external returns (uint[] memory); function exitMarket(address cToken) external returns (uint); /*** Policy Hooks ***/ function mintAllowed(address cToken, address minter, uint mintAmount) external returns (uint); function mintVerify(address cToken, address minter, uint mintAmount, uint mintTokens) external; function redeemAllowed(address cToken, address redeemer, uint redeemTokens) external returns (uint); function redeemVerify(address cToken, address redeemer, uint redeemAmount, uint redeemTokens) external; function borrowAllowed(address cToken, address borrower, uint borrowAmount) external returns (uint); function borrowVerify(address cToken, address borrower, uint borrowAmount) external; function repayBorrowAllowed( address cToken, address payer, address borrower, uint repayAmount) external returns (uint); function repayBorrowVerify( address cToken, address payer, address borrower, uint repayAmount, uint borrowerIndex) external; function liquidateBorrowAllowed( address cTokenBorrowed, address cTokenCollateral, address liquidator, address borrower, uint repayAmount) external returns (uint); function liquidateBorrowVerify( address cTokenBorrowed, address cTokenCollateral, address liquidator, address borrower, uint repayAmount, uint seizeTokens) external; function seizeAllowed( address cTokenCollateral, address cTokenBorrowed, address liquidator, address borrower, uint seizeTokens) external returns (uint); function seizeVerify( address cTokenCollateral, address cTokenBorrowed, address liquidator, address borrower, uint seizeTokens) external; function transferAllowed(address cToken, address src, address dst, uint transferTokens) external returns (uint); function transferVerify(address cToken, address src, address dst, uint transferTokens) external; /*** Liquidity/Liquidation Calculations ***/ function liquidateCalculateSeizeTokens( address cTokenBorrowed, address cTokenCollateral, uint repayAmount) external view returns (uint, uint); } //------------------------------------------ // File CTokenInterfaces.sol pragma solidity ^0.5.16; contract CTokenStorage { /** * @dev Guard variable for re-entrancy checks */ bool internal _notEntered; /** * @notice EIP-20 token name for this token */ string public name; /** * @notice EIP-20 token symbol for this token */ string public symbol; /** * @notice EIP-20 token decimals for this token */ uint8 public decimals; /** * @notice Maximum borrow rate that can ever be applied (.0005% / block) */ uint internal constant borrowRateMaxMantissa = 0.0005e16; /** * @notice Maximum fraction of interest that can be set aside for reserves */ uint internal constant reserveFactorMaxMantissa = 1e18; /** * @notice Administrator for this contract */ address payable public admin; /** * @notice Pending administrator for this contract */ address payable public pendingAdmin; /** * @notice Contract which oversees inter-cToken operations */ ComptrollerInterface public comptroller; /** * @notice Model which tells what the current interest rate should be */ InterestRateModel public interestRateModel; /** * @notice Initial exchange rate used when minting the first CTokens (used when totalSupply = 0) */ uint internal 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 the total earned interest rate 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 */ uint public totalSupply; /** * @notice Official record of token balances for each account */ mapping (address => uint) internal accountTokens; /** * @notice Approved token transfer amounts on behalf of others */ mapping (address => mapping (address => uint)) internal transferAllowances; /** * @notice Container for borrow balance information * @member principal Total balance (with accrued interest), after applying the most recent balance-changing action * @member interestIndex Global borrowIndex as of the most recent balance-changing action */ struct BorrowSnapshot { uint principal; uint interestIndex; } /** * @notice Mapping of account addresses to outstanding borrow balances */ mapping(address => BorrowSnapshot) internal accountBorrows; } contract CTokenInterface is CTokenStorage { /** * @notice Indicator that this is a CToken contract (for inspection) */ bool public constant isCToken = true; /*** Market Events ***/ /** * @notice Event emitted when interest is accrued */ event AccrueInterest(uint cashPrior, uint interestAccumulated, uint borrowIndex, uint totalBorrows); /** * @notice Event emitted when tokens are minted */ event Mint(address minter, uint mintAmount, uint mintTokens); /** * @notice Event emitted when tokens are redeemed */ event Redeem(address redeemer, uint redeemAmount, uint redeemTokens); /** * @notice Event emitted when underlying is borrowed */ event Borrow(address borrower, uint borrowAmount, uint accountBorrows, uint totalBorrows); /** * @notice Event emitted when a borrow is repaid */ event RepayBorrow(address payer, address borrower, uint repayAmount, uint accountBorrows, uint totalBorrows); /** * @notice Event emitted when a borrow is liquidated */ event LiquidateBorrow(address liquidator, address borrower, uint repayAmount, address cTokenCollateral, uint seizeTokens); /*** Admin Events ***/ /** * @notice Event emitted when pendingAdmin is changed */ event NewPendingAdmin(address oldPendingAdmin, address newPendingAdmin); /** * @notice Event emitted when pendingAdmin is accepted, which means admin is updated */ event NewAdmin(address oldAdmin, address newAdmin); /** * @notice Event emitted when comptroller is changed */ event NewComptroller(ComptrollerInterface oldComptroller, ComptrollerInterface newComptroller); /** * @notice Event emitted when interestRateModel is changed */ event NewMarketInterestRateModel(InterestRateModel oldInterestRateModel, InterestRateModel newInterestRateModel); /** * @notice Event emitted when the reserve factor is changed */ event NewReserveFactor(uint oldReserveFactorMantissa, uint newReserveFactorMantissa); /** * @notice Event emitted when the reserves are added */ event ReservesAdded(address benefactor, uint addAmount, uint newTotalReserves); /** * @notice Event emitted when the reserves are reduced */ event ReservesReduced(address admin, uint reduceAmount, uint newTotalReserves); /** * @notice EIP20 Transfer event */ event Transfer(address indexed from, address indexed to, uint amount); /** * @notice EIP20 Approval event */ event Approval(address indexed owner, address indexed spender, uint amount); /** * @notice Failure event */ event Failure(uint error, uint info, uint detail); /*** User Interface ***/ function transfer(address dst, uint amount) external returns (bool); function transferFrom(address src, address dst, uint amount) external returns (bool); function approve(address spender, uint amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint); function balanceOf(address owner) external view returns (uint); function balanceOfUnderlying(address owner) external returns (uint); function getAccountSnapshot(address account) external view returns (uint, uint, uint, uint); function borrowRatePerBlock() external view returns (uint); function supplyRatePerBlock() external view returns (uint); function totalBorrowsCurrent() external returns (uint); function borrowBalanceCurrent(address account) external returns (uint); function borrowBalanceStored(address account) public view returns (uint); function exchangeRateCurrent() public returns (uint); function exchangeRateStored() public view returns (uint); function getCash() external view returns (uint); function accrueInterest() public returns (uint); function seize(address liquidator, address borrower, uint seizeTokens) external returns (uint); /*** Admin Functions ***/ function _setPendingAdmin(address payable newPendingAdmin) external returns (uint); function _acceptAdmin() external returns (uint); function _setComptroller(ComptrollerInterface newComptroller) public returns (uint); function _setReserveFactor(uint newReserveFactorMantissa) external returns (uint); function _reduceReserves(uint reduceAmount) external returns (uint); function _setInterestRateModel(InterestRateModel newInterestRateModel) public returns (uint); } contract CErc20Storage { /** * @notice Underlying asset for this CToken */ address public underlying; } contract CErc20Interface is CErc20Storage { /*** User Interface ***/ function mint(uint mintAmount) external returns (uint); function redeem(uint redeemTokens) external returns (uint); function redeemUnderlying(uint redeemAmount) external returns (uint); function borrow(uint borrowAmount) external returns (uint); function repayBorrow(uint repayAmount) external returns (uint); function repayBorrowBehalf(address borrower, uint repayAmount) external returns (uint); function liquidateBorrow(address borrower, uint repayAmount, CTokenInterface cTokenCollateral) external returns (uint); /*** Admin Functions ***/ function _addReserves(uint addAmount) external returns (uint); } contract CDelegationStorage { /** * @notice Implementation address for this contract */ address public implementation; } contract CDelegatorInterface is CDelegationStorage { /** * @notice Emitted when implementation is changed */ event NewImplementation(address oldImplementation, address newImplementation); /** * @notice Called by the admin to update the implementation of the delegator * @param implementation_ The address of the new implementation for delegation * @param allowResign Flag to indicate whether to call _resignImplementation on the old implementation * @param becomeImplementationData The encoded bytes data to be passed to _becomeImplementation */ function _setImplementation(address implementation_, bool allowResign, bytes memory becomeImplementationData) public; } contract CDelegateInterface is CDelegationStorage { /** * @notice Called by the delegator on a delegate to initialize it for duty * @dev Should revert if any issues arise which make it unfit for delegation * @param data The encoded bytes data for any initialization */ function _becomeImplementation(bytes memory data) public; /** * @notice Called by the delegator on a delegate to forfeit its responsibility */ function _resignImplementation() public; } //------------------------------------------ // File EIP20Interface.sol pragma solidity ^0.5.16; /** * @title ERC 20 Token Standard Interface * https://eips.ethereum.org/EIPS/eip-20 */ interface EIP20Interface { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); /** * @notice Get the total number of tokens in circulation * @return The supply of tokens */ function totalSupply() external view returns (uint256); /** * @notice Gets the balance of the specified address * @param owner The address from which the balance will be retrieved * @return The balance */ function balanceOf(address owner) external view returns (uint256 balance); /** * @notice Transfer `amount` tokens from `msg.sender` to `dst` * @param dst The address of the destination account * @param amount The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transfer(address dst, uint256 amount) external returns (bool success); /** * @notice Transfer `amount` tokens from `src` to `dst` * @param src The address of the source account * @param dst The address of the destination account * @param amount The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transferFrom(address src, address dst, uint256 amount) external returns (bool success); /** * @notice Approve `spender` to transfer up to `amount` from `src` * @dev This will overwrite the approval amount for `spender` * and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve) * @param spender The address of the account which may transfer tokens * @param amount The number of tokens that are approved (-1 means infinite) * @return Whether or not the approval succeeded */ function approve(address spender, uint256 amount) external returns (bool success); /** * @notice Get the current allowance from `owner` for `spender` * @param owner The address of the account which owns the tokens to be spent * @param spender The address of the account which may transfer tokens * @return The number of tokens allowed to be spent (-1 means infinite) */ function allowance(address owner, address spender) external view returns (uint256 remaining); event Transfer(address indexed from, address indexed to, uint256 amount); event Approval(address indexed owner, address indexed spender, uint256 amount); } //------------------------------------------ // File EIP20NonStandardInterface.sol pragma solidity ^0.5.16; /** * @title EIP20NonStandardInterface * @dev Version of ERC20 with no return values for `transfer` and `transferFrom` * See https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca */ interface EIP20NonStandardInterface { /** * @notice Get the total number of tokens in circulation * @return The supply of tokens */ function totalSupply() external view returns (uint256); /** * @notice Gets the balance of the specified address * @param owner The address from which the balance will be retrieved * @return The balance */ function balanceOf(address owner) external view returns (uint256 balance); /// /// !!!!!!!!!!!!!! /// !!! NOTICE !!! `transfer` does not return a value, in violation of the ERC-20 specification /// !!!!!!!!!!!!!! /// /** * @notice Transfer `amount` tokens from `msg.sender` to `dst` * @param dst The address of the destination account * @param amount The number of tokens to transfer */ function transfer(address dst, uint256 amount) external; /// /// !!!!!!!!!!!!!! /// !!! NOTICE !!! `transferFrom` does not return a value, in violation of the ERC-20 specification /// !!!!!!!!!!!!!! /// /** * @notice Transfer `amount` tokens from `src` to `dst` * @param src The address of the source account * @param dst The address of the destination account * @param amount The number of tokens to transfer */ function transferFrom(address src, address dst, uint256 amount) external; /** * @notice Approve `spender` to transfer up to `amount` from `src` * @dev This will overwrite the approval amount for `spender` * and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve) * @param spender The address of the account which may transfer tokens * @param amount The number of tokens that are approved * @return Whether or not the approval succeeded */ function approve(address spender, uint256 amount) external returns (bool success); /** * @notice Get the current allowance from `owner` for `spender` * @param owner The address of the account which owns the tokens to be spent * @param spender The address of the account which may transfer tokens * @return The number of tokens allowed to be spent */ function allowance(address owner, address spender) external view returns (uint256 remaining); event Transfer(address indexed from, address indexed to, uint256 amount); event Approval(address indexed owner, address indexed spender, uint256 amount); } //------------------------------------------ // File InterestRateModel.sol pragma solidity ^0.5.16; /** * @title Compound's InterestRateModel Interface * @author Compound */ contract InterestRateModel { /// @notice Indicator that this is an InterestRateModel contract (for inspection) bool public constant isInterestRateModel = true; /** * @notice Calculates the current borrow interest rate per block * @param cash The total amount of cash the market has * @param borrows The total amount of borrows the market has outstanding * @param reserves The total amount of reserves the market has * @return The borrow rate per block (as a percentage, and scaled by 1e18) */ function getBorrowRate(uint cash, uint borrows, uint reserves) external view returns (uint); /** * @notice Calculates the current supply interest rate per block * @param cash The total amount of cash the market has * @param borrows The total amount of borrows the market has outstanding * @param reserves The total amount of reserves the market has * @param reserveFactorMantissa The current reserve factor the market has * @return The supply rate per block (as a percentage, and scaled by 1e18) */ function getSupplyRate(uint cash, uint borrows, uint reserves, uint reserveFactorMantissa) external view returns (uint); } //-------------------------------------------- // File: CToken.sol pragma solidity ^0.5.16; /** * @title Compound's CToken Contract * @notice Abstract base for CTokens * @author Compound */ contract CToken is CTokenInterface, Exponential, TokenErrorReporter { /** * @notice Initialize the money market * @param comptroller_ The address of the Comptroller * @param interestRateModel_ The address of the interest rate model * @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18 * @param name_ EIP-20 name of this token * @param symbol_ EIP-20 symbol of this token * @param decimals_ EIP-20 decimal precision of this token */ function initialize(ComptrollerInterface comptroller_, InterestRateModel interestRateModel_, uint initialExchangeRateMantissa_, string memory name_, string memory symbol_, uint8 decimals_) public { require(msg.sender == admin, "only admin may initialize the market"); require(accrualBlockNumber == 0 && borrowIndex == 0, "market may only be initialized once"); // Set initial exchange rate initialExchangeRateMantissa = initialExchangeRateMantissa_; require(initialExchangeRateMantissa > 0, "initial exchange rate must be greater than zero."); // Set the comptroller uint err = _setComptroller(comptroller_); require(err == uint(Error.NO_ERROR), "setting comptroller failed"); // Initialize block number and borrow index (block number mocks depend on comptroller being set) accrualBlockNumber = getBlockNumber(); borrowIndex = mantissaOne; // Set the interest rate model (depends on block number / borrow index) err = _setInterestRateModelFresh(interestRateModel_); require(err == uint(Error.NO_ERROR), "setting interest rate model failed"); name = name_; symbol = symbol_; decimals = decimals_; // The counter starts true to prevent changing it from zero to non-zero (i.e. smaller cost/refund) _notEntered = true; } /** * @notice Transfer `tokens` tokens from `src` to `dst` by `spender` * @dev Called by both `transfer` and `transferFrom` internally * @param spender The address of the account performing the transfer * @param src The address of the source account * @param dst The address of the destination account * @param tokens The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transferTokens(address spender, address src, address dst, uint tokens) internal returns (uint) { /* Fail if transfer not allowed */ uint allowed = comptroller.transferAllowed(address(this), src, dst, tokens); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.TRANSFER_COMPTROLLER_REJECTION, allowed); } /* Do not allow self-transfers */ if (src == dst) { return fail(Error.BAD_INPUT, FailureInfo.TRANSFER_NOT_ALLOWED); } /* Get the allowance, infinite for the account owner */ uint startingAllowance = 0; if (spender == src) { startingAllowance = uint(-1); } else { startingAllowance = transferAllowances[src][spender]; } /* Do the calculations, checking for {under,over}flow */ MathError mathErr; uint allowanceNew; uint srcTokensNew; uint dstTokensNew; (mathErr, allowanceNew) = subUInt(startingAllowance, tokens); if (mathErr != MathError.NO_ERROR) { return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_NOT_ALLOWED); } (mathErr, srcTokensNew) = subUInt(accountTokens[src], tokens); if (mathErr != MathError.NO_ERROR) { return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_NOT_ENOUGH); } (mathErr, dstTokensNew) = addUInt(accountTokens[dst], tokens); if (mathErr != MathError.NO_ERROR) { return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_TOO_MUCH); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) accountTokens[src] = srcTokensNew; accountTokens[dst] = dstTokensNew; /* Eat some of the allowance (if necessary) */ if (startingAllowance != uint(-1)) { transferAllowances[src][spender] = allowanceNew; } /* We emit a Transfer event */ emit Transfer(src, dst, tokens); comptroller.transferVerify(address(this), src, dst, tokens); return uint(Error.NO_ERROR); } /** * @notice Transfer `amount` tokens from `msg.sender` to `dst` * @param dst The address of the destination account * @param amount The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transfer(address dst, uint256 amount) external nonReentrant returns (bool) { return transferTokens(msg.sender, msg.sender, dst, amount) == uint(Error.NO_ERROR); } /** * @notice Transfer `amount` tokens from `src` to `dst` * @param src The address of the source account * @param dst The address of the destination account * @param amount The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transferFrom(address src, address dst, uint256 amount) external nonReentrant returns (bool) { return transferTokens(msg.sender, src, dst, amount) == uint(Error.NO_ERROR); } /** * @notice Approve `spender` to transfer up to `amount` from `src` * @dev This will overwrite the approval amount for `spender` * and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve) * @param spender The address of the account which may transfer tokens * @param amount The number of tokens that are approved (-1 means infinite) * @return Whether or not the approval succeeded */ function approve(address spender, uint256 amount) external returns (bool) { address src = msg.sender; transferAllowances[src][spender] = amount; emit Approval(src, spender, amount); return true; } /** * @notice Get the current allowance from `owner` for `spender` * @param owner The address of the account which owns the tokens to be spent * @param spender The address of the account which may transfer tokens * @return The number of tokens allowed to be spent (-1 means infinite) */ function allowance(address owner, address spender) external view returns (uint256) { return transferAllowances[owner][spender]; } /** * @notice Get the token balance of the `owner` * @param owner The address of the account to query * @return The number of tokens owned by `owner` */ function balanceOf(address owner) external view returns (uint256) { return accountTokens[owner]; } /** * @notice Get the underlying balance of the `owner` * @dev This also accrues interest in a transaction * @param owner The address of the account to query * @return The amount of underlying owned by `owner` */ function balanceOfUnderlying(address owner) external returns (uint) { Exp memory exchangeRate = Exp({mantissa: exchangeRateCurrent()}); (MathError mErr, uint balance) = mulScalarTruncate(exchangeRate, accountTokens[owner]); require(mErr == MathError.NO_ERROR, "balance could not be calculated"); return balance; } /** * @notice Get a snapshot of the account's balances, and the cached exchange rate * @dev This is used by comptroller to more efficiently perform liquidity checks. * @param account Address of the account to snapshot * @return (possible error, token balance, borrow balance, exchange rate mantissa) */ function getAccountSnapshot(address account) external view returns (uint, uint, uint, uint) { uint cTokenBalance = accountTokens[account]; uint borrowBalance; uint exchangeRateMantissa; MathError mErr; (mErr, borrowBalance) = borrowBalanceStoredInternal(account); if (mErr != MathError.NO_ERROR) { return (uint(Error.MATH_ERROR), 0, 0, 0); } (mErr, exchangeRateMantissa) = exchangeRateStoredInternal(); if (mErr != MathError.NO_ERROR) { return (uint(Error.MATH_ERROR), 0, 0, 0); } return (uint(Error.NO_ERROR), cTokenBalance, borrowBalance, exchangeRateMantissa); } /** * @dev Function to simply retrieve block number * This exists mainly for inheriting test contracts to stub this result. */ function getBlockNumber() internal view returns (uint) { return block.number; } /** * @notice Returns the current per-block borrow interest rate for this cToken * @return The borrow interest rate per block, scaled by 1e18 */ function borrowRatePerBlock() external view returns (uint) { return interestRateModel.getBorrowRate(getCashPrior(), totalBorrows, totalReserves); } /** * @notice Returns the current per-block supply interest rate for this cToken * @return The supply interest rate per block, scaled by 1e18 */ function supplyRatePerBlock() external view returns (uint) { return interestRateModel.getSupplyRate(getCashPrior(), totalBorrows, totalReserves, reserveFactorMantissa); } /** * @notice Returns the current total borrows plus accrued interest * @return The total borrows with interest */ function totalBorrowsCurrent() external nonReentrant returns (uint) { require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed"); return totalBorrows; } /** * @notice Accrue interest to updated borrowIndex and then calculate account's borrow balance using the updated borrowIndex * @param account The address whose balance should be calculated after updating borrowIndex * @return The calculated balance */ function borrowBalanceCurrent(address account) external nonReentrant returns (uint) { require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed"); return borrowBalanceStored(account); } /** * @notice Return the borrow balance of account based on stored data * @param account The address whose balance should be calculated * @return The calculated balance */ function borrowBalanceStored(address account) public view returns (uint) { (MathError err, uint result) = borrowBalanceStoredInternal(account); require(err == MathError.NO_ERROR, "borrowBalanceStored: borrowBalanceStoredInternal failed"); return result; } /** * @notice Return the borrow balance of account based on stored data * @param account The address whose balance should be calculated * @return (error code, the calculated balance or 0 if error code is non-zero) */ function borrowBalanceStoredInternal(address account) internal view returns (MathError, uint) { /* Note: we do not assert that the market is up to date */ MathError mathErr; uint principalTimesIndex; uint result; /* Get borrowBalance and borrowIndex */ BorrowSnapshot storage borrowSnapshot = accountBorrows[account]; /* If borrowBalance = 0 then borrowIndex is likely also 0. * Rather than failing the calculation with a division by 0, we immediately return 0 in this case. */ if (borrowSnapshot.principal == 0) { return (MathError.NO_ERROR, 0); } /* Calculate new borrow balance using the interest index: * recentBorrowBalance = borrower.borrowBalance * market.borrowIndex / borrower.borrowIndex */ (mathErr, principalTimesIndex) = mulUInt(borrowSnapshot.principal, borrowIndex); if (mathErr != MathError.NO_ERROR) { return (mathErr, 0); } (mathErr, result) = divUInt(principalTimesIndex, borrowSnapshot.interestIndex); if (mathErr != MathError.NO_ERROR) { return (mathErr, 0); } return (MathError.NO_ERROR, result); } /** * @notice Accrue interest then return the up-to-date exchange rate * @return Calculated exchange rate scaled by 1e18 */ function exchangeRateCurrent() public nonReentrant returns (uint) { require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed"); return exchangeRateStored(); } /** * @notice Calculates the exchange rate from the underlying to the CToken * @dev This function does not accrue interest before calculating the exchange rate * @return Calculated exchange rate scaled by 1e18 */ function exchangeRateStored() public view returns (uint) { (MathError err, uint result) = exchangeRateStoredInternal(); require(err == MathError.NO_ERROR, "exchangeRateStored: exchangeRateStoredInternal failed"); return result; } /** * @notice Calculates the exchange rate from the underlying to the CToken * @dev This function does not accrue interest before calculating the exchange rate * @return (error code, calculated exchange rate scaled by 1e18) */ function exchangeRateStoredInternal() internal view returns (MathError, uint) { uint _totalSupply = totalSupply; if (_totalSupply == 0) { /* * If there are no tokens minted: * exchangeRate = initialExchangeRate */ return (MathError.NO_ERROR, initialExchangeRateMantissa); } else { /* * Otherwise: * exchangeRate = (totalCash + totalBorrows - totalReserves) / totalSupply */ uint totalCash = getCashPrior(); uint cashPlusBorrowsMinusReserves; Exp memory exchangeRate; MathError mathErr; (mathErr, cashPlusBorrowsMinusReserves) = addThenSubUInt(totalCash, totalBorrows, totalReserves); if (mathErr != MathError.NO_ERROR) { return (mathErr, 0); } (mathErr, exchangeRate) = getExp(cashPlusBorrowsMinusReserves, _totalSupply); if (mathErr != MathError.NO_ERROR) { return (mathErr, 0); } return (MathError.NO_ERROR, exchangeRate.mantissa); } } /** * @notice Get cash balance of this cToken in the underlying asset * @return The quantity of underlying asset owned by this contract */ function getCash() external view returns (uint) { return getCashPrior(); } /** * @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) { /* Remember the initial block number */ uint currentBlockNumber = getBlockNumber(); uint accrualBlockNumberPrior = accrualBlockNumber; /* Short-circuit accumulating 0 interest */ if (accrualBlockNumberPrior == currentBlockNumber) { return uint(Error.NO_ERROR); } /* Read the previous values out of storage */ uint cashPrior = getCashPrior(); uint borrowsPrior = totalBorrows; uint reservesPrior = totalReserves; uint borrowIndexPrior = borrowIndex; /* Calculate the current borrow interest rate */ uint borrowRateMantissa = interestRateModel.getBorrowRate(cashPrior, borrowsPrior, reservesPrior); require(borrowRateMantissa <= borrowRateMaxMantissa, "borrow rate is absurdly high"); /* Calculate the number of blocks elapsed since the last accrual */ (MathError mathErr, uint blockDelta) = subUInt(currentBlockNumber, accrualBlockNumberPrior); require(mathErr == MathError.NO_ERROR, "could not calculate block delta"); /* * 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 */ Exp memory simpleInterestFactor; uint interestAccumulated; uint totalBorrowsNew; uint totalReservesNew; uint borrowIndexNew; (mathErr, simpleInterestFactor) = mulScalar(Exp({mantissa: borrowRateMantissa}), blockDelta); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_SIMPLE_INTEREST_FACTOR_CALCULATION_FAILED, uint(mathErr)); } (mathErr, interestAccumulated) = mulScalarTruncate(simpleInterestFactor, borrowsPrior); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_ACCUMULATED_INTEREST_CALCULATION_FAILED, uint(mathErr)); } (mathErr, totalBorrowsNew) = addUInt(interestAccumulated, borrowsPrior); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_NEW_TOTAL_BORROWS_CALCULATION_FAILED, uint(mathErr)); } (mathErr, totalReservesNew) = mulScalarTruncateAddUInt(Exp({mantissa: reserveFactorMantissa}), interestAccumulated, reservesPrior); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_NEW_TOTAL_RESERVES_CALCULATION_FAILED, uint(mathErr)); } (mathErr, borrowIndexNew) = mulScalarTruncateAddUInt(simpleInterestFactor, borrowIndexPrior, borrowIndexPrior); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_NEW_BORROW_INDEX_CALCULATION_FAILED, uint(mathErr)); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* We write the previously calculated values into storage */ accrualBlockNumber = currentBlockNumber; borrowIndex = borrowIndexNew; totalBorrows = totalBorrowsNew; totalReserves = totalReservesNew; /* We emit an AccrueInterest event */ emit AccrueInterest(cashPrior, interestAccumulated, borrowIndexNew, totalBorrowsNew); return uint(Error.NO_ERROR); } /** * @notice Sender supplies assets into the market and receives cTokens in exchange * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param mintAmount The amount of the underlying asset to supply * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual mint amount. */ function mintInternal(uint mintAmount) internal nonReentrant returns (uint, 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), 0); } // 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; uint actualMintAmount; } /** * @notice User supplies assets into the market and receives cTokens in exchange * @dev Assumes interest has already been accrued up to the current block * @param minter The address of the account which is supplying the assets * @param mintAmount The amount of the underlying asset to supply * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual mint amount. */ function mintFresh(address minter, uint mintAmount) internal returns (uint, uint) { /* Fail if mint not allowed */ uint allowed = comptroller.mintAllowed(address(this), minter, mintAmount); if (allowed != 0) { return (failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.MINT_COMPTROLLER_REJECTION, allowed), 0); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.MINT_FRESHNESS_CHECK), 0); } MintLocalVars memory vars; (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)), 0); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We call `doTransferIn` for the minter and the mintAmount. * Note: The cToken must handle variations between ERC-20 and ETH underlying. * `doTransferIn` reverts if anything goes wrong, since we can't be sure if * side-effects occurred. The function returns the amount actually transferred, * in case of a fee. On success, the cToken holds an additional `actualMintAmount` * of cash. */ vars.actualMintAmount = doTransferIn(minter, mintAmount); /* * We get the current exchange rate and calculate the number of cTokens to be minted: * mintTokens = actualMintAmount / exchangeRate */ (vars.mathErr, vars.mintTokens) = divScalarByExpTruncate(vars.actualMintAmount, Exp({mantissa: vars.exchangeRateMantissa})); require(vars.mathErr == MathError.NO_ERROR, "MINT_EXCHANGE_CALCULATION_FAILED"); /* * We calculate the new total supply of cTokens and minter token balance, checking for overflow: * totalSupplyNew = totalSupply + mintTokens * accountTokensNew = accountTokens[minter] + mintTokens */ (vars.mathErr, vars.totalSupplyNew) = addUInt(totalSupply, vars.mintTokens); require(vars.mathErr == MathError.NO_ERROR, "MINT_NEW_TOTAL_SUPPLY_CALCULATION_FAILED"); (vars.mathErr, vars.accountTokensNew) = addUInt(accountTokens[minter], vars.mintTokens); require(vars.mathErr == MathError.NO_ERROR, "MINT_NEW_ACCOUNT_BALANCE_CALCULATION_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, vars.actualMintAmount, vars.mintTokens); emit Transfer(address(this), minter, vars.mintTokens); /* We call the defense hook */ comptroller.mintVerify(address(this), minter, vars.actualMintAmount, vars.mintTokens); return (uint(Error.NO_ERROR), vars.actualMintAmount); } /** * @notice Sender redeems cTokens in exchange for the underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemTokens The number of cTokens to redeem into underlying * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemInternal(uint redeemTokens) internal nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted redeem failed return fail(Error(error), FailureInfo.REDEEM_ACCRUE_INTEREST_FAILED); } // redeemFresh emits redeem-specific logs on errors, so we don't need to return redeemFresh(msg.sender, redeemTokens, 0); } /** * @notice Sender redeems cTokens in exchange for a specified amount of underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemAmount The amount of underlying to receive from redeeming cTokens * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemUnderlyingInternal(uint redeemAmount) internal nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted redeem failed return fail(Error(error), FailureInfo.REDEEM_ACCRUE_INTEREST_FAILED); } // redeemFresh emits redeem-specific logs on errors, so we don't need to return redeemFresh(msg.sender, 0, redeemAmount); } struct RedeemLocalVars { Error err; MathError mathErr; uint exchangeRateMantissa; uint redeemTokens; uint redeemAmount; uint totalSupplyNew; uint accountTokensNew; } /** * @notice User redeems cTokens in exchange for the underlying asset * @dev Assumes interest has already been accrued up to the current block * @param redeemer The address of the account which is redeeming the tokens * @param redeemTokensIn The number of cTokens to redeem into underlying (only one of redeemTokensIn or redeemAmountIn may be non-zero) * @param redeemAmountIn The number of underlying tokens to receive from redeeming cTokens (only one of redeemTokensIn or redeemAmountIn may be non-zero) * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemFresh(address payable redeemer, uint redeemTokensIn, uint redeemAmountIn) internal returns (uint) { require(redeemTokensIn == 0 || redeemAmountIn == 0, "one of redeemTokensIn or redeemAmountIn must be zero"); RedeemLocalVars memory vars; /* exchangeRate = invoke Exchange Rate Stored() */ (vars.mathErr, vars.exchangeRateMantissa) = exchangeRateStoredInternal(); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_RATE_READ_FAILED, uint(vars.mathErr)); } /* If redeemTokensIn > 0: */ if (redeemTokensIn > 0) { /* * We calculate the exchange rate and the amount of underlying to be redeemed: * redeemTokens = redeemTokensIn * redeemAmount = redeemTokensIn x exchangeRateCurrent */ vars.redeemTokens = redeemTokensIn; (vars.mathErr, vars.redeemAmount) = mulScalarTruncate(Exp({mantissa: vars.exchangeRateMantissa}), redeemTokensIn); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_TOKENS_CALCULATION_FAILED, uint(vars.mathErr)); } } else { /* * We get the current exchange rate and calculate the amount to be redeemed: * redeemTokens = redeemAmountIn / exchangeRate * redeemAmount = redeemAmountIn */ (vars.mathErr, vars.redeemTokens) = divScalarByExpTruncate(redeemAmountIn, Exp({mantissa: vars.exchangeRateMantissa})); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_AMOUNT_CALCULATION_FAILED, uint(vars.mathErr)); } vars.redeemAmount = redeemAmountIn; } /* Fail if redeem not allowed */ uint allowed = comptroller.redeemAllowed(address(this), redeemer, vars.redeemTokens); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.REDEEM_COMPTROLLER_REJECTION, allowed); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.REDEEM_FRESHNESS_CHECK); } /* * We calculate the new total supply and redeemer balance, checking for underflow: * totalSupplyNew = totalSupply - redeemTokens * accountTokensNew = accountTokens[redeemer] - redeemTokens */ (vars.mathErr, vars.totalSupplyNew) = subUInt(totalSupply, vars.redeemTokens); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_NEW_TOTAL_SUPPLY_CALCULATION_FAILED, uint(vars.mathErr)); } (vars.mathErr, vars.accountTokensNew) = subUInt(accountTokens[redeemer], vars.redeemTokens); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } /* Fail gracefully if protocol has insufficient cash */ if (getCashPrior() < vars.redeemAmount) { return fail(Error.TOKEN_INSUFFICIENT_CASH, FailureInfo.REDEEM_TRANSFER_OUT_NOT_POSSIBLE); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We invoke doTransferOut for the redeemer and the redeemAmount. * Note: The cToken must handle variations between ERC-20 and ETH underlying. * On success, the cToken has redeemAmount less of cash. * doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred. */ doTransferOut(redeemer, vars.redeemAmount); /* We write previously calculated values into storage */ totalSupply = vars.totalSupplyNew; accountTokens[redeemer] = vars.accountTokensNew; /* We emit a Transfer event, and a Redeem event */ emit Transfer(redeemer, address(this), vars.redeemTokens); emit Redeem(redeemer, vars.redeemAmount, vars.redeemTokens); /* We call the defense hook */ comptroller.redeemVerify(address(this), redeemer, vars.redeemAmount, vars.redeemTokens); return uint(Error.NO_ERROR); } /** * @notice Sender borrows assets from the protocol to their own address * @param borrowAmount The amount of the underlying asset to borrow * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function borrowInternal(uint borrowAmount) internal nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed return fail(Error(error), FailureInfo.BORROW_ACCRUE_INTEREST_FAILED); } // borrowFresh emits borrow-specific logs on errors, so we don't need to return borrowFresh(msg.sender, borrowAmount); } struct BorrowLocalVars { MathError mathErr; uint accountBorrows; uint accountBorrowsNew; uint totalBorrowsNew; } /** * @notice Users borrow assets from the protocol to their own address * @param borrowAmount The amount of the underlying asset to borrow * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function borrowFresh(address payable borrower, uint borrowAmount) internal returns (uint) { /* Fail if borrow not allowed */ uint allowed = comptroller.borrowAllowed(address(this), borrower, borrowAmount); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.BORROW_COMPTROLLER_REJECTION, allowed); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.BORROW_FRESHNESS_CHECK); } /* Fail gracefully if protocol has insufficient underlying cash */ if (getCashPrior() < borrowAmount) { return fail(Error.TOKEN_INSUFFICIENT_CASH, FailureInfo.BORROW_CASH_NOT_AVAILABLE); } BorrowLocalVars memory vars; /* * We calculate the new borrower and total borrow balances, failing on overflow: * accountBorrowsNew = accountBorrows + borrowAmount * totalBorrowsNew = totalBorrows + borrowAmount */ (vars.mathErr, vars.accountBorrows) = borrowBalanceStoredInternal(borrower); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } (vars.mathErr, vars.accountBorrowsNew) = addUInt(vars.accountBorrows, borrowAmount); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } (vars.mathErr, vars.totalBorrowsNew) = addUInt(totalBorrows, borrowAmount); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We invoke doTransferOut for the borrower and the borrowAmount. * Note: The cToken must handle variations between ERC-20 and ETH underlying. * On success, the cToken borrowAmount less of cash. * doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred. */ doTransferOut(borrower, borrowAmount); /* We write the previously calculated values into storage */ accountBorrows[borrower].principal = vars.accountBorrowsNew; accountBorrows[borrower].interestIndex = borrowIndex; totalBorrows = vars.totalBorrowsNew; /* We emit a Borrow event */ emit Borrow(borrower, borrowAmount, vars.accountBorrowsNew, vars.totalBorrowsNew); /* We call the defense hook */ comptroller.borrowVerify(address(this), borrower, borrowAmount); return uint(Error.NO_ERROR); } /** * @notice Sender repays their own borrow * @param repayAmount The amount to repay * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function repayBorrowInternal(uint repayAmount) internal nonReentrant returns (uint, 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), 0); } // 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, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function repayBorrowBehalfInternal(address borrower, uint repayAmount) internal nonReentrant returns (uint, 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), 0); } // 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; uint actualRepayAmount; } /** * @notice Borrows are repaid by another user (possibly the borrower). * @param payer the account paying off the borrow * @param borrower the account with the debt being payed off * @param repayAmount the amount of undelrying tokens being returned * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function repayBorrowFresh(address payer, address borrower, uint repayAmount) internal returns (uint, uint) { /* Fail if repayBorrow not allowed */ uint allowed = comptroller.repayBorrowAllowed(address(this), payer, borrower, repayAmount); if (allowed != 0) { return (failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.REPAY_BORROW_COMPTROLLER_REJECTION, allowed), 0); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.REPAY_BORROW_FRESHNESS_CHECK), 0); } 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)), 0); } /* If repayAmount == -1, repayAmount = accountBorrows */ if (repayAmount == uint(-1)) { vars.repayAmount = vars.accountBorrows; } else { vars.repayAmount = repayAmount; } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We call doTransferIn for the payer and the repayAmount * Note: The cToken must handle variations between ERC-20 and ETH underlying. * On success, the cToken holds an additional repayAmount of cash. * doTransferIn reverts if anything goes wrong, since we can't be sure if side effects occurred. * it returns the amount actually transferred, in case of a fee. */ vars.actualRepayAmount = doTransferIn(payer, vars.repayAmount); /* * We calculate the new borrower and total borrow balances, failing on underflow: * accountBorrowsNew = accountBorrows - actualRepayAmount * totalBorrowsNew = totalBorrows - actualRepayAmount */ (vars.mathErr, vars.accountBorrowsNew) = subUInt(vars.accountBorrows, vars.actualRepayAmount); require(vars.mathErr == MathError.NO_ERROR, "REPAY_BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED"); (vars.mathErr, vars.totalBorrowsNew) = subUInt(totalBorrows, vars.actualRepayAmount); require(vars.mathErr == MathError.NO_ERROR, "REPAY_BORROW_NEW_TOTAL_BALANCE_CALCULATION_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.actualRepayAmount, vars.accountBorrowsNew, vars.totalBorrowsNew); /* We call the defense hook */ comptroller.repayBorrowVerify(address(this), payer, borrower, vars.actualRepayAmount, vars.borrowerIndex); return (uint(Error.NO_ERROR), vars.actualRepayAmount); } /** * @notice The sender liquidates the borrowers collateral. * The collateral seized is transferred to the liquidator. * @param borrower The borrower of this cToken to be liquidated * @param cTokenCollateral The market in which to seize collateral from the borrower * @param repayAmount The amount of the underlying borrowed asset to repay * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function liquidateBorrowInternal(address borrower, uint repayAmount, CTokenInterface cTokenCollateral) internal nonReentrant returns (uint, 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), 0); } error = cTokenCollateral.accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted liquidation failed return (fail(Error(error), FailureInfo.LIQUIDATE_ACCRUE_COLLATERAL_INTEREST_FAILED), 0); } // liquidateBorrowFresh emits borrow-specific logs on errors, so we don't need to return liquidateBorrowFresh(msg.sender, borrower, repayAmount, cTokenCollateral); } /** * @notice The liquidator liquidates the borrowers collateral. * The collateral seized is transferred to the liquidator. * @param borrower The borrower of this cToken to be liquidated * @param liquidator The address repaying the borrow and seizing collateral * @param cTokenCollateral The market in which to seize collateral from the borrower * @param repayAmount The amount of the underlying borrowed asset to repay * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function liquidateBorrowFresh(address liquidator, address borrower, uint repayAmount, CTokenInterface cTokenCollateral) internal returns (uint, uint) { /* Fail if liquidate not allowed */ uint allowed = comptroller.liquidateBorrowAllowed(address(this), address(cTokenCollateral), liquidator, borrower, repayAmount); if (allowed != 0) { return (failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.LIQUIDATE_COMPTROLLER_REJECTION, allowed), 0); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.LIQUIDATE_FRESHNESS_CHECK), 0); } /* Verify cTokenCollateral market's block number equals current block number */ if (cTokenCollateral.accrualBlockNumber() != getBlockNumber()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.LIQUIDATE_COLLATERAL_FRESHNESS_CHECK), 0); } /* Fail if borrower = liquidator */ if (borrower == liquidator) { return (fail(Error.INVALID_ACCOUNT_PAIR, FailureInfo.LIQUIDATE_LIQUIDATOR_IS_BORROWER), 0); } /* Fail if repayAmount = 0 */ if (repayAmount == 0) { return (fail(Error.INVALID_CLOSE_AMOUNT_REQUESTED, FailureInfo.LIQUIDATE_CLOSE_AMOUNT_IS_ZERO), 0); } /* Fail if repayAmount = -1 */ if (repayAmount == uint(-1)) { return (fail(Error.INVALID_CLOSE_AMOUNT_REQUESTED, FailureInfo.LIQUIDATE_CLOSE_AMOUNT_IS_UINT_MAX), 0); } /* Fail if repayBorrow fails */ (uint repayBorrowError, uint actualRepayAmount) = repayBorrowFresh(liquidator, borrower, repayAmount); if (repayBorrowError != uint(Error.NO_ERROR)) { return (fail(Error(repayBorrowError), FailureInfo.LIQUIDATE_REPAY_BORROW_FRESH_FAILED), 0); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* We calculate the number of collateral tokens that will be seized */ (uint amountSeizeError, uint seizeTokens) = comptroller.liquidateCalculateSeizeTokens(address(this), address(cTokenCollateral), actualRepayAmount); require(amountSeizeError == uint(Error.NO_ERROR), "LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED"); /* Revert if borrower collateral token balance < seizeTokens */ require(cTokenCollateral.balanceOf(borrower) >= seizeTokens, "LIQUIDATE_SEIZE_TOO_MUCH"); // If this is also the collateral, run seizeInternal to avoid re-entrancy, otherwise make an external call uint seizeError; if (address(cTokenCollateral) == address(this)) { seizeError = seizeInternal(address(this), liquidator, borrower, seizeTokens); } else { seizeError = cTokenCollateral.seize(liquidator, borrower, seizeTokens); } /* Revert if seize tokens fails (since we cannot be sure of side effects) */ require(seizeError == uint(Error.NO_ERROR), "token seizure failed"); /* We emit a LiquidateBorrow event */ emit LiquidateBorrow(liquidator, borrower, actualRepayAmount, address(cTokenCollateral), seizeTokens); /* We call the defense hook */ comptroller.liquidateBorrowVerify(address(this), address(cTokenCollateral), liquidator, borrower, actualRepayAmount, seizeTokens); return (uint(Error.NO_ERROR), actualRepayAmount); } /** * @notice Transfers collateral tokens (this market) to the liquidator. * @dev Will fail unless called by another cToken during the process of liquidation. * Its absolutely critical to use msg.sender as the borrowed cToken and not a parameter. * @param liquidator The account receiving seized collateral * @param borrower The account having collateral seized * @param seizeTokens The number of cTokens to seize * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function seize(address liquidator, address borrower, uint seizeTokens) external nonReentrant returns (uint) { return seizeInternal(msg.sender, liquidator, borrower, seizeTokens); } /** * @notice Transfers collateral tokens (this market) to the liquidator. * @dev Called only during an in-kind liquidation, or by liquidateBorrow during the liquidation of another CToken. * Its absolutely critical to use msg.sender as the seizer cToken and not a parameter. * @param seizerToken The contract seizing the collateral (i.e. borrowed cToken) * @param liquidator The account receiving seized collateral * @param borrower The account having collateral seized * @param seizeTokens The number of cTokens to seize * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function seizeInternal(address seizerToken, address liquidator, address borrower, uint seizeTokens) internal returns (uint) { /* Fail if seize not allowed */ uint allowed = comptroller.seizeAllowed(address(this), seizerToken, liquidator, borrower, seizeTokens); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.LIQUIDATE_SEIZE_COMPTROLLER_REJECTION, allowed); } /* Fail if borrower = liquidator */ if (borrower == liquidator) { return fail(Error.INVALID_ACCOUNT_PAIR, FailureInfo.LIQUIDATE_SEIZE_LIQUIDATOR_IS_BORROWER); } MathError mathErr; uint borrowerTokensNew; uint liquidatorTokensNew; /* * We calculate the new borrower and liquidator token balances, failing on underflow/overflow: * borrowerTokensNew = accountTokens[borrower] - seizeTokens * liquidatorTokensNew = accountTokens[liquidator] + seizeTokens */ (mathErr, borrowerTokensNew) = subUInt(accountTokens[borrower], seizeTokens); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.LIQUIDATE_SEIZE_BALANCE_DECREMENT_FAILED, uint(mathErr)); } (mathErr, liquidatorTokensNew) = addUInt(accountTokens[liquidator], seizeTokens); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.LIQUIDATE_SEIZE_BALANCE_INCREMENT_FAILED, uint(mathErr)); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* We write the previously calculated values into storage */ accountTokens[borrower] = borrowerTokensNew; accountTokens[liquidator] = liquidatorTokensNew; /* Emit a Transfer event */ emit Transfer(borrower, liquidator, seizeTokens); /* We call the defense hook */ comptroller.seizeVerify(address(this), seizerToken, 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) */ function _setPendingAdmin(address payable newPendingAdmin) external returns (uint) { // Check caller = admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.SET_PENDING_ADMIN_OWNER_CHECK); } // Save current value, if any, for inclusion in log address oldPendingAdmin = pendingAdmin; // Store pendingAdmin with value newPendingAdmin pendingAdmin = newPendingAdmin; // Emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin) emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin); return uint(Error.NO_ERROR); } /** * @notice Accepts transfer of admin rights. msg.sender must be pendingAdmin * @dev Admin function for pending admin to accept role and update admin * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _acceptAdmin() external returns (uint) { // Check caller is pendingAdmin and pendingAdmin ≠ address(0) if (msg.sender != pendingAdmin || msg.sender == address(0)) { return fail(Error.UNAUTHORIZED, FailureInfo.ACCEPT_ADMIN_PENDING_ADMIN_CHECK); } // Save current values for inclusion in log address oldAdmin = admin; address oldPendingAdmin = pendingAdmin; // Store admin with value pendingAdmin admin = pendingAdmin; // Clear the pending value pendingAdmin = address(0); emit NewAdmin(oldAdmin, admin); emit NewPendingAdmin(oldPendingAdmin, pendingAdmin); return uint(Error.NO_ERROR); } /** * @notice Sets a new comptroller for the market * @dev Admin function to set a new comptroller * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setComptroller(ComptrollerInterface newComptroller) public returns (uint) { // Check caller is admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.SET_COMPTROLLER_OWNER_CHECK); } ComptrollerInterface oldComptroller = comptroller; // Ensure invoke comptroller.isComptroller() returns true require(newComptroller.isComptroller(), "marker method returned false"); // Set market's comptroller to newComptroller comptroller = newComptroller; // Emit NewComptroller(oldComptroller, newComptroller) emit NewComptroller(oldComptroller, newComptroller); return uint(Error.NO_ERROR); } /** * @notice accrues interest and sets a new reserve factor for the protocol using _setReserveFactorFresh * @dev Admin function to accrue interest and set a new reserve factor * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setReserveFactor(uint newReserveFactorMantissa) external nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted reserve factor change failed. return fail(Error(error), FailureInfo.SET_RESERVE_FACTOR_ACCRUE_INTEREST_FAILED); } // _setReserveFactorFresh emits reserve-factor-specific logs on errors, so we don't need to. return _setReserveFactorFresh(newReserveFactorMantissa); } /** * @notice Sets a new reserve factor for the protocol (*requires fresh interest accrual) * @dev Admin function to set a new reserve factor * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setReserveFactorFresh(uint newReserveFactorMantissa) internal returns (uint) { // Check caller is admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.SET_RESERVE_FACTOR_ADMIN_CHECK); } // Verify market's block number equals current block number if (accrualBlockNumber != getBlockNumber()) { 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 from msg.sender * @param addAmount Amount of addition to reserves * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _addReservesInternal(uint addAmount) internal 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.ADD_RESERVES_ACCRUE_INTEREST_FAILED); } // _addReservesFresh emits reserve-addition-specific logs on errors, so we don't need to. (error, ) = _addReservesFresh(addAmount); return error; } /** * @notice Add reserves by transferring from caller * @dev Requires fresh interest accrual * @param addAmount Amount of addition to reserves * @return (uint, uint) An error code (0=success, otherwise a failure (see ErrorReporter.sol for details)) and the actual amount added, net token fees */ function _addReservesFresh(uint addAmount) internal returns (uint, uint) { // totalReserves + actualAddAmount uint totalReservesNew; uint actualAddAmount; // We fail gracefully unless market's block number equals current block number if (accrualBlockNumber != getBlockNumber()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.ADD_RESERVES_FRESH_CHECK), actualAddAmount); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We call doTransferIn for the caller and the addAmount * Note: The cToken must handle variations between ERC-20 and ETH underlying. * On success, the cToken holds an additional addAmount of cash. * doTransferIn reverts if anything goes wrong, since we can't be sure if side effects occurred. * it returns the amount actually transferred, in case of a fee. */ actualAddAmount = doTransferIn(msg.sender, addAmount); totalReservesNew = totalReserves + actualAddAmount; /* Revert on overflow */ require(totalReservesNew >= totalReserves, "add reserves unexpected overflow"); // Store reserves[n+1] = reserves[n] + actualAddAmount totalReserves = totalReservesNew; /* Emit NewReserves(admin, actualAddAmount, reserves[n+1]) */ emit ReservesAdded(msg.sender, actualAddAmount, totalReservesNew); /* Return (NO_ERROR, actualAddAmount) */ return (uint(Error.NO_ERROR), actualAddAmount); } /** * @notice Accrues interest and reduces reserves by transferring to admin * @param reduceAmount Amount of reduction to reserves * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _reduceReserves(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) { // 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()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.REDUCE_RESERVES_FRESH_CHECK); } // Fail gracefully if protocol has insufficient underlying cash if (getCashPrior() < reduceAmount) { return fail(Error.TOKEN_INSUFFICIENT_CASH, FailureInfo.REDUCE_RESERVES_CASH_NOT_AVAILABLE); } // Check reduceAmount ≤ reserves[n] (totalReserves) if (reduceAmount > totalReserves) { return fail(Error.BAD_INPUT, FailureInfo.REDUCE_RESERVES_VALIDATION); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) totalReservesNew = 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; // doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred. doTransferOut(admin, reduceAmount); emit ReservesReduced(admin, reduceAmount, totalReservesNew); return uint(Error.NO_ERROR); } /** * @notice accrues interest and updates the interest rate model using _setInterestRateModelFresh * @dev Admin function to accrue interest and update the interest rate model * @param newInterestRateModel the new interest rate model to use * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setInterestRateModel(InterestRateModel newInterestRateModel) public returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted change of interest rate model failed return fail(Error(error), FailureInfo.SET_INTEREST_RATE_MODEL_ACCRUE_INTEREST_FAILED); } // _setInterestRateModelFresh emits interest-rate-model-update-specific logs on errors, so we don't need to. return _setInterestRateModelFresh(newInterestRateModel); } /** * @notice updates the interest rate model (*requires fresh interest accrual) * @dev Admin function to update the interest rate model * @param newInterestRateModel the new interest rate model to use * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setInterestRateModelFresh(InterestRateModel newInterestRateModel) internal returns (uint) { // Used to store old model for use in the event that is emitted on success InterestRateModel oldInterestRateModel; // Check caller is admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.SET_INTEREST_RATE_MODEL_OWNER_CHECK); } // We fail gracefully unless market's block number equals current block number if (accrualBlockNumber != getBlockNumber()) { 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 Performs a transfer in, reverting upon failure. Returns the amount actually transferred to the protocol, in case of a fee. * This may revert due to insufficient balance or insufficient allowance. */ function doTransferIn(address from, uint amount) internal returns (uint); /** * @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; /*** Reentrancy Guard ***/ /** * @dev Prevents a contract from calling itself, directly or indirectly. */ modifier nonReentrant() { require(_notEntered, "re-entered"); _notEntered = false; _; _notEntered = true; // get a gas-refund post-Istanbul } } //-------------------------------------------- // File: CErc20.sol pragma solidity ^0.5.16; /** * @title Compound's CErc20 Contract * @notice CTokens which wrap an EIP-20 underlying * @author Compound */ contract CErc20 is CToken, CErc20Interface { /** * @notice Initialize the new money market * @param underlying_ The address of the underlying asset * @param comptroller_ The address of the Comptroller * @param interestRateModel_ The address of the interest rate model * @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18 * @param name_ ERC-20 name of this token * @param symbol_ ERC-20 symbol of this token * @param decimals_ ERC-20 decimal precision of this token */ function initialize(address underlying_, ComptrollerInterface comptroller_, InterestRateModel interestRateModel_, uint initialExchangeRateMantissa_, string memory name_, string memory symbol_, uint8 decimals_) public { // Creator of the contract is admin during initialization admin = msg.sender; // CToken initialize does the bulk of the work super.initialize(comptroller_, interestRateModel_, initialExchangeRateMantissa_, name_, symbol_, decimals_); // Set underlying and sanity check it underlying = underlying_; EIP20Interface(underlying).totalSupply(); } /*** User Interface ***/ /** * @notice Sender supplies assets into the market and receives cTokens in exchange * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param mintAmount The amount of the underlying asset to supply * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function mint(uint mintAmount) external returns (uint) { (uint err,) = mintInternal(mintAmount); return err; } /** * @notice Sender redeems cTokens in exchange for the underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemTokens The number of cTokens to redeem into underlying * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeem(uint redeemTokens) external returns (uint) { return redeemInternal(redeemTokens); } /** * @notice Sender redeems cTokens in exchange for a specified amount of underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemAmount The amount of underlying to redeem * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemUnderlying(uint redeemAmount) external returns (uint) { return redeemUnderlyingInternal(redeemAmount); } /** * @notice Sender borrows assets from the protocol to their own address * @param borrowAmount The amount of the underlying asset to borrow * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function borrow(uint borrowAmount) external returns (uint) { return borrowInternal(borrowAmount); } /** * @notice Sender repays their own borrow * @param repayAmount The amount to repay * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function repayBorrow(uint repayAmount) external returns (uint) { (uint err,) = repayBorrowInternal(repayAmount); return err; } /** * @notice Sender repays a borrow belonging to borrower * @param borrower the account with the debt being payed off * @param repayAmount The amount to repay * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function repayBorrowBehalf(address borrower, uint repayAmount) external returns (uint) { (uint err,) = repayBorrowBehalfInternal(borrower, repayAmount); return err; } /** * @notice The sender liquidates the borrowers collateral. * The collateral seized is transferred to the liquidator. * @param borrower The borrower of this cToken to be liquidated * @param repayAmount The amount of the underlying borrowed asset to repay * @param cTokenCollateral The market in which to seize collateral from the borrower * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function liquidateBorrow(address borrower, uint repayAmount, CTokenInterface cTokenCollateral) external returns (uint) { (uint err,) = liquidateBorrowInternal(borrower, repayAmount, cTokenCollateral); return err; } /** * @notice The sender adds to reserves. * @param addAmount The amount fo underlying token to add as reserves * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _addReserves(uint addAmount) external returns (uint) { return _addReservesInternal(addAmount); } /*** Safe Token ***/ /** * @notice Gets balance of this contract in terms of the underlying * @dev This excludes the value of the current message, if any * @return The quantity of underlying tokens owned by this contract */ function getCashPrior() internal view returns (uint) { EIP20Interface token = EIP20Interface(underlying); return token.balanceOf(address(this)); } /** * @dev Similar to EIP20 transfer, except it handles a False result from `transferFrom` and reverts in that case. * This will revert due to insufficient balance or insufficient allowance. * This function returns the actual amount received, * which may be less than `amount` if there is a fee attached to the transfer. * * Note: This wrapper safely handles non-standard ERC-20 tokens that do not return a value. * See here: https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca */ function doTransferIn(address from, uint amount) internal returns (uint) { EIP20NonStandardInterface token = EIP20NonStandardInterface(underlying); uint balanceBefore = EIP20Interface(underlying).balanceOf(address(this)); token.transferFrom(from, address(this), amount); bool success; assembly { switch returndatasize() case 0 { // This is a non-standard ERC-20 success := not(0) // set success to true } case 32 { // This is a compliant ERC-20 returndatacopy(0, 0, 32) success := mload(0) // Set `success = returndata` of external call } default { // This is an excessively non-compliant ERC-20, revert. revert(0, 0) } } require(success, "TOKEN_TRANSFER_IN_FAILED"); // Calculate the amount that was *actually* transferred uint balanceAfter = EIP20Interface(underlying).balanceOf(address(this)); require(balanceAfter >= balanceBefore, "TOKEN_TRANSFER_IN_OVERFLOW"); return balanceAfter - balanceBefore; // underflow already checked above, just subtract } /** * @dev Similar to EIP20 transfer, except it handles a False success from `transfer` and returns an explanatory * error code rather than reverting. If caller has not called checked protocol's balance, this may revert due to * insufficient cash held in this contract. If caller has checked protocol's balance prior to this call, and verified * it is >= amount, this should not revert in normal conditions. * * Note: This wrapper safely handles non-standard ERC-20 tokens that do not return a value. * See here: https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca */ function doTransferOut(address payable to, uint amount) internal { EIP20NonStandardInterface token = EIP20NonStandardInterface(underlying); token.transfer(to, amount); bool success; assembly { switch returndatasize() case 0 { // This is a non-standard ERC-20 success := not(0) // set success to true } case 32 { // This is a complaint ERC-20 returndatacopy(0, 0, 32) success := mload(0) // Set `success = returndata` of external call } default { // This is an excessively non-compliant ERC-20, revert. revert(0, 0) } } require(success, "TOKEN_TRANSFER_OUT_FAILED"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cashPrior","type":"uint256"},{"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":"cTokenCollateral","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 ComptrollerInterface","name":"oldComptroller","type":"address"},{"indexed":false,"internalType":"contract ComptrollerInterface","name":"newComptroller","type":"address"}],"name":"NewComptroller","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":"benefactor","type":"address"},{"indexed":false,"internalType":"uint256","name":"addAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalReserves","type":"uint256"}],"name":"ReservesAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"admin","type":"address"},{"indexed":false,"internalType":"uint256","name":"reduceAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalReserves","type":"uint256"}],"name":"ReservesReduced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[],"name":"_acceptAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"addAmount","type":"uint256"}],"name":"_addReserves","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 ComptrollerInterface","name":"newComptroller","type":"address"}],"name":"_setComptroller","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":"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":"comptroller","outputs":[{"internalType":"contract ComptrollerInterface","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":false,"inputs":[{"internalType":"address","name":"underlying_","type":"address"},{"internalType":"contract ComptrollerInterface","name":"comptroller_","type":"address"},{"internalType":"contract InterestRateModel","name":"interestRateModel_","type":"address"},{"internalType":"uint256","name":"initialExchangeRateMantissa_","type":"uint256"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract ComptrollerInterface","name":"comptroller_","type":"address"},{"internalType":"contract InterestRateModel","name":"interestRateModel_","type":"address"},{"internalType":"uint256","name":"initialExchangeRateMantissa_","type":"uint256"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"interestRateModel","outputs":[{"internalType":"contract InterestRateModel","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isCToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"repayAmount","type":"uint256"},{"internalType":"contract CTokenInterface","name":"cTokenCollateral","type":"address"}],"name":"liquidateBorrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingAdmin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"redeemUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"repayBorrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"repayBorrowBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"reserveFactorMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"liquidator","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"name":"seize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"supplyRatePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalBorrows","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"totalBorrowsCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"underlying","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50614f4c806100206000396000f3fe608060405234801561001057600080fd5b50600436106102a05760003560e01c80638f840ddd11610167578063c37f68e2116100ce578063f3fdb15a11610087578063f3fdb15a146109ef578063f5e3c462146109f7578063f851a44014610a2d578063f8f9da2814610a35578063fca7820b14610a3d578063fe9c44ae14610a5a576102a0565b8063c37f68e21461090d578063c5ebeaec14610959578063db006a7514610976578063dd62ed3e14610993578063e9c714f2146109c1578063f2b3abbd146109c9576102a0565b8063a9059cbb11610120578063a9059cbb1461086d578063aa5af0fd14610899578063ae9d70b0146108a1578063b2a02ff1146108a9578063b71d1a0c146108df578063bd6d894d14610905576102a0565b80638f840ddd146106c457806395d89b41146106cc57806395dd9193146106d457806399d8c1b4146106fa578063a0712d6814610848578063a6afed9514610865576102a0565b80633af9e6691161020b578063601a0bf1116101c4578063601a0bf11461064c5780636c540baf146106695780636f307dc31461067157806370a082311461067957806373acee981461069f578063852a12e3146106a7576102a0565b80633af9e669146105cb5780633b1d21a2146105f15780633e941010146105f95780634576b5db1461061657806347bd37181461063c5780635fe3b56714610644576102a0565b8063182df0f51161025d578063182df0f5146103c75780631a31d465146103cf57806323b872dd146105275780632608f8181461055d5780632678224714610589578063313ce567146105ad576102a0565b806306fdde03146102a5578063095ea7b3146103225780630e75270214610362578063173b99041461039157806317bfdfbc1461039957806318160ddd146103bf575b600080fd5b6102ad610a62565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e75781810151838201526020016102cf565b50505050905090810190601f1680156103145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61034e6004803603604081101561033857600080fd5b506001600160a01b038135169060200135610aef565b604080519115158252519081900360200190f35b61037f6004803603602081101561037857600080fd5b5035610b5c565b60408051918252519081900360200190f35b61037f610b72565b61037f600480360360208110156103af57600080fd5b50356001600160a01b0316610b78565b61037f610c38565b61037f610c3e565b610525600480360360e08110156103e557600080fd5b6001600160a01b03823581169260208101358216926040820135909216916060820135919081019060a081016080820135600160201b81111561042757600080fd5b82018360208201111561043957600080fd5b803590602001918460018302840111600160201b8311171561045a57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156104ac57600080fd5b8201836020820111156104be57600080fd5b803590602001918460018302840111600160201b831117156104df57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff169150610ca19050565b005b61034e6004803603606081101561053d57600080fd5b506001600160a01b03813581169160208101359091169060400135610d57565b61037f6004803603604081101561057357600080fd5b506001600160a01b038135169060200135610dc9565b610591610ddf565b604080516001600160a01b039092168252519081900360200190f35b6105b5610dee565b6040805160ff9092168252519081900360200190f35b61037f600480360360208110156105e157600080fd5b50356001600160a01b0316610df7565b61037f610ead565b61037f6004803603602081101561060f57600080fd5b5035610ebc565b61037f6004803603602081101561062c57600080fd5b50356001600160a01b0316610ec7565b61037f61101c565b610591611022565b61037f6004803603602081101561066257600080fd5b5035611031565b61037f6110cc565b6105916110d2565b61037f6004803603602081101561068f57600080fd5b50356001600160a01b03166110e1565b61037f6110fc565b61037f600480360360208110156106bd57600080fd5b50356111b2565b61037f6111bd565b6102ad6111c3565b61037f600480360360208110156106ea57600080fd5b50356001600160a01b031661121b565b610525600480360360c081101561071057600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561074a57600080fd5b82018360208201111561075c57600080fd5b803590602001918460018302840111600160201b8311171561077d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156107cf57600080fd5b8201836020820111156107e157600080fd5b803590602001918460018302840111600160201b8311171561080257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506112789050565b61037f6004803603602081101561085e57600080fd5b503561145f565b61037f61146b565b61034e6004803603604081101561088357600080fd5b506001600160a01b0381351690602001356117c3565b61037f611834565b61037f61183a565b61037f600480360360608110156108bf57600080fd5b506001600160a01b038135811691602081013590911690604001356118d9565b61037f600480360360208110156108f557600080fd5b50356001600160a01b031661194a565b61037f6119d6565b6109336004803603602081101561092357600080fd5b50356001600160a01b0316611a92565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61037f6004803603602081101561096f57600080fd5b5035611b27565b61037f6004803603602081101561098c57600080fd5b5035611b32565b61037f600480360360408110156109a957600080fd5b506001600160a01b0381358116916020013516611b3d565b61037f611b68565b61037f600480360360208110156109df57600080fd5b50356001600160a01b0316611c6b565b610591611ca5565b61037f60048036036060811015610a0d57600080fd5b506001600160a01b03813581169160208101359160409091013516611cb4565b610591611ccc565b61037f611ce0565b61037f60048036036020811015610a5357600080fd5b5035611d44565b61034e611dc2565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b600080610b6883611dc7565b509150505b919050565b60085481565b6000805460ff16610bbd576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610bcf61146b565b14610c1a576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b610c238261121b565b90505b6000805460ff19166001179055919050565b600d5481565b6000806000610c4b611e70565b90925090506000826003811115610c5e57fe5b14610c9a5760405162461bcd60e51b8152600401808060200182810382526035815260200180614e636035913960400191505060405180910390fd5b9150505b90565b60038054610100600160a81b0319163361010002179055610cc6868686868686611278565b601180546001600160a01b0319166001600160a01b038981169190911791829055604080516318160ddd60e01b8152905192909116916318160ddd91600480820192602092909190829003018186803b158015610d2257600080fd5b505afa158015610d36573d6000803e3d6000fd5b505050506040513d6020811015610d4c57600080fd5b505050505050505050565b6000805460ff16610d9c576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610db233868686611f1f565b1490506000805460ff191660011790559392505050565b600080610dd6848461222d565b50949350505050565b6004546001600160a01b031681565b60035460ff1681565b6000610e01614b51565b6040518060200160405280610e146119d6565b90526001600160a01b0384166000908152600e6020526040812054919250908190610e409084906122d8565b90925090506000826003811115610e5357fe5b14610ea5576040805162461bcd60e51b815260206004820152601f60248201527f62616c616e636520636f756c64206e6f742062652063616c63756c6174656400604482015290519081900360640190fd5b949350505050565b6000610eb761232c565b905090565b6000610b56826123ac565b60035460009061010090046001600160a01b03163314610ef457610eed6001603f612440565b9050610b6d565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b158015610f3957600080fd5b505afa158015610f4d573d6000803e3d6000fd5b505050506040513d6020811015610f6357600080fd5b5051610fb6576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b6005546001600160a01b031681565b6000805460ff16611076576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561108861146b565b905080156110ae576110a681601081111561109f57fe5b6030612440565b915050610c26565b6110b7836124a6565b9150506000805460ff19166001179055919050565b60095481565b6011546001600160a01b031681565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff16611141576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561115361146b565b1461119e576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b6000610b56826125d9565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610ae75780601f10610abc57610100808354040283529160200191610ae7565b60008060006112298461265a565b9092509050600082600381111561123c57fe5b146110155760405162461bcd60e51b8152600401808060200182810382526037815260200180614d6e6037913960400191505060405180910390fd5b60035461010090046001600160a01b031633146112c65760405162461bcd60e51b8152600401808060200182810382526024815260200180614caa6024913960400191505060405180910390fd5b6009541580156112d65750600a54155b6113115760405162461bcd60e51b8152600401808060200182810382526023815260200180614cce6023913960400191505060405180910390fd5b6007849055836113525760405162461bcd60e51b8152600401808060200182810382526030815260200180614cf16030913960400191505060405180910390fd5b600061135d87610ec7565b905080156113b2576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b6113ba61270e565b600955670de0b6b3a7640000600a556113d286612712565b905080156114115760405162461bcd60e51b8152600401808060200182810382526022815260200180614d216022913960400191505060405180910390fd5b8351611424906001906020870190614b64565b508251611438906002906020860190614b64565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b600080610b6883612887565b60008061147661270e565b6009549091508082141561148f57600092505050610c9e565b600061149961232c565b600b54600c54600a54600654604080516315f2405360e01b815260048101879052602481018690526044810185905290519596509394929391926000926001600160a01b03909216916315f24053916064808301926020929190829003018186803b15801561150757600080fd5b505afa15801561151b573d6000803e3d6000fd5b505050506040513d602081101561153157600080fd5b5051905065048c27395000811115611590576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b60008061159d8989612908565b909250905060008260038111156115b057fe5b14611602576040805162461bcd60e51b815260206004820152601f60248201527f636f756c64206e6f742063616c63756c61746520626c6f636b2064656c746100604482015290519081900360640190fd5b61160a614b51565b60008060008061162860405180602001604052808a8152508761292b565b9097509450600087600381111561163b57fe5b1461166d576116586009600689600381111561165357fe5b612993565b9e505050505050505050505050505050610c9e565b611677858c6122d8565b9097509350600087600381111561168a57fe5b146116a2576116586009600189600381111561165357fe5b6116ac848c6129f9565b909750925060008760038111156116bf57fe5b146116d7576116586009600489600381111561165357fe5b6116f26040518060200160405280600854815250858c612a1f565b9097509150600087600381111561170557fe5b1461171d576116586009600589600381111561165357fe5b611728858a8b612a1f565b9097509050600087600381111561173b57fe5b14611753576116586009600389600381111561165357fe5b60098e9055600a819055600b839055600c829055604080518d8152602081018690528082018390526060810185905290517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160009e50505050505050505050505050505090565b6000805460ff16611808576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561181e33338686611f1f565b1490506000805460ff1916600117905592915050565b600a5481565b6006546000906001600160a01b031663b816881661185661232c565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b1580156118a857600080fd5b505afa1580156118bc573d6000803e3d6000fd5b505050506040513d60208110156118d257600080fd5b5051905090565b6000805460ff1661191e576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916905561193433858585612a7b565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b0316331461197057610eed60016045612440565b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a16000611015565b6000805460ff16611a1b576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611a2d61146b565b14611a78576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b611a80610c3e565b90506000805460ff1916600117905590565b6001600160a01b0381166000908152600e6020526040812054819081908190818080611abd8961265a565b935090506000816003811115611acf57fe5b14611aed5760095b975060009650869550859450611b209350505050565b611af5611e70565b925090506000816003811115611b0757fe5b14611b13576009611ad7565b5060009650919450925090505b9193509193565b6000610b5682612ce1565b6000610b5682612d60565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b6004546000906001600160a01b031633141580611b83575033155b15611b9b57611b9460016000612440565b9050610c9e565b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b600080611c7661146b565b90508015611c9c57611c94816010811115611c8d57fe5b6040612440565b915050610b6d565b61101583612712565b6006546001600160a01b031681565b600080611cc2858585612dda565b5095945050505050565b60035461010090046001600160a01b031681565b6006546000906001600160a01b03166315f24053611cfc61232c565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b1580156118a857600080fd5b6000805460ff16611d89576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611d9b61146b565b90508015611db9576110a6816010811115611db257fe5b6046612440565b6110b783612f0c565b600181565b60008054819060ff16611e0e576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611e2061146b565b90508015611e4b57611e3e816010811115611e3757fe5b6036612440565b925060009150611e5c9050565b611e56333386612fb4565b92509250505b6000805460ff191660011790559092909150565b600d54600090819080611e8b57505060075460009150611f1b565b6000611e9561232c565b90506000611ea1614b51565b6000611eb284600b54600c54613399565b935090506000816003811115611ec457fe5b14611ed957955060009450611f1b9350505050565b611ee383866133d7565b925090506000816003811115611ef557fe5b14611f0a57955060009450611f1b9350505050565b5051600095509350611f1b92505050565b9091565b600554604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b158015611f8457600080fd5b505af1158015611f98573d6000803e3d6000fd5b505050506040513d6020811015611fae57600080fd5b505190508015611fcd57611fc56003604a83612993565b915050610ea5565b836001600160a01b0316856001600160a01b03161415611ff357611fc56002604b612440565b60006001600160a01b038781169087161415612012575060001961203a565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b60008060008061204a8589612908565b9094509250600084600381111561205d57fe5b1461207b5761206e6009604b612440565b9650505050505050610ea5565b6001600160a01b038a166000908152600e602052604090205461209e9089612908565b909450915060008460038111156120b157fe5b146120c25761206e6009604c612440565b6001600160a01b0389166000908152600e60205260409020546120e590896129f9565b909450905060008460038111156120f857fe5b146121095761206e6009604d612440565b6001600160a01b03808b166000908152600e6020526040808220859055918b168152208190556000198514612161576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b0316600080516020614ddf8339815191528a6040518082815260200191505060405180910390a36005546040805163352b4a3f60e11b81523060048201526001600160a01b038d811660248301528c81166044830152606482018c905291519190921691636a56947e91608480830192600092919082900301818387803b1580156121fd57600080fd5b505af1158015612211573d6000803e3d6000fd5b506000925061221e915050565b9b9a5050505050505050505050565b60008054819060ff16612274576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561228661146b565b905080156122b1576122a481601081111561229d57fe5b6035612440565b9250600091506122c29050565b6122bc338686612fb4565b92509250505b6000805460ff1916600117905590939092509050565b60008060006122e5614b51565b6122ef868661292b565b9092509050600082600381111561230257fe5b146123135750915060009050612325565b600061231e82613487565b9350935050505b9250929050565b601154604080516370a0823160e01b815230600482015290516000926001600160a01b03169182916370a0823191602480820192602092909190829003018186803b15801561237a57600080fd5b505afa15801561238e573d6000803e3d6000fd5b505050506040513d60208110156123a457600080fd5b505191505090565b6000805460ff166123f1576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561240361146b565b90508015612421576110a681601081111561241a57fe5b604e612440565b61242a83613496565b509150506000805460ff19166001179055919050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561246f57fe5b83605081111561247b57fe5b604080519283526020830191909152600082820152519081900360600190a182601081111561101557fe5b600354600090819061010090046001600160a01b031633146124ce57611c9460016031612440565b6124d661270e565b600954146124ea57611c94600a6033612440565b826124f361232c565b101561250557611c94600e6032612440565b600c5483111561251b57611c9460026034612440565b50600c54828103908111156125615760405162461bcd60e51b8152600401808060200182810382526024815260200180614ef46024913960400191505060405180910390fd5b600c8190556003546125819061010090046001600160a01b03168461357e565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a16000611015565b6000805460ff1661261e576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561263061146b565b9050801561264e576110a681601081111561264757fe5b6027612440565b6110b733600085613675565b6001600160a01b03811660009081526010602052604081208054829182918291829161269157506000945084935061270992505050565b6126a18160000154600a54613b3c565b909450925060008460038111156126b457fe5b146126c9575091935060009250612709915050565b6126d7838260010154613b7b565b909450915060008460038111156126ea57fe5b146126ff575091935060009250612709915050565b5060009450925050505b915091565b4390565b600354600090819061010090046001600160a01b0316331461273a57611c9460016042612440565b61274261270e565b6009541461275657611c94600a6041612440565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b1580156127a757600080fd5b505afa1580156127bb573d6000803e3d6000fd5b505050506040513d60208110156127d157600080fd5b5051612824576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a16000611015565b60008054819060ff166128ce576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556128e061146b565b905080156128fe57611e3e8160108111156128f757fe5b601e612440565b611e563385613ba6565b60008083831161291f575060009050818303612325565b50600390506000612325565b6000612935614b51565b600080612946866000015186613b3c565b9092509050600082600381111561295957fe5b1461297857506040805160208101909152600081529092509050612325565b60408051602081019091529081526000969095509350505050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa08460108111156129c257fe5b8460508111156129ce57fe5b604080519283526020830191909152818101859052519081900360600190a1836010811115610ea557fe5b600080838301848110612a1157600092509050612325565b506002915060009050612325565b6000806000612a2c614b51565b612a36878761292b565b90925090506000826003811115612a4957fe5b14612a5a5750915060009050612a73565b612a6c612a6682613487565b866129f9565b9350935050505b935093915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b158015612ae857600080fd5b505af1158015612afc573d6000803e3d6000fd5b505050506040513d6020811015612b1257600080fd5b505190508015612b2957611fc56003601b83612993565b846001600160a01b0316846001600160a01b03161415612b4f57611fc56006601c612440565b6001600160a01b0384166000908152600e602052604081205481908190612b769087612908565b90935091506000836003811115612b8957fe5b14612bac57612ba16009601a85600381111561165357fe5b945050505050610ea5565b6001600160a01b0388166000908152600e6020526040902054612bcf90876129f9565b90935090506000836003811115612be257fe5b14612bfa57612ba16009601985600381111561165357fe5b6001600160a01b038088166000818152600e60209081526040808320879055938c168083529184902085905583518a815293519193600080516020614ddf833981519152929081900390910190a360055460408051636d35bf9160e01b81523060048201526001600160a01b038c811660248301528b811660448301528a81166064830152608482018a905291519190921691636d35bf919160a480830192600092919082900301818387803b158015612cb357600080fd5b505af1158015612cc7573d6000803e3d6000fd5b5060009250612cd4915050565b9998505050505050505050565b6000805460ff16612d26576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612d3861146b565b90508015612d56576110a6816010811115612d4f57fe5b6008612440565b6110b73384614005565b6000805460ff16612da5576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612db761146b565b90508015612dce576110a681601081111561264757fe5b6110b733846000613675565b60008054819060ff16612e21576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612e3361146b565b90508015612e5e57612e51816010811115612e4a57fe5b600f612440565b925060009150612ef59050565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612e9957600080fd5b505af1158015612ead573d6000803e3d6000fd5b505050506040513d6020811015612ec357600080fd5b505190508015612ee357612e51816010811115612edc57fe5b6010612440565b612eef33878787614313565b92509250505b6000805460ff191660011790559094909350915050565b60035460009061010090046001600160a01b03163314612f3257610eed60016047612440565b612f3a61270e565b60095414612f4e57610eed600a6048612440565b670de0b6b3a7640000821115612f6a57610eed60026049612440565b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a16000611015565b60055460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849384939116916324008a629160848082019260209290919082900301818787803b15801561301d57600080fd5b505af1158015613031573d6000803e3d6000fd5b505050506040513d602081101561304757600080fd5b50519050801561306b5761305e6003603883612993565b925060009150612a739050565b61307361270e565b600954146130875761305e600a6039612440565b61308f614be2565b6001600160a01b03861660009081526010602052604090206001015460608201526130b98661265a565b60808301819052602083018260038111156130d057fe5b60038111156130db57fe5b90525060009050816020015160038111156130f257fe5b1461311c5761310e600960378360200151600381111561165357fe5b935060009250612a73915050565b600019851415613135576080810151604082015261313d565b604081018590525b61314b878260400151614896565b60e08201819052608082015161316091612908565b60a083018190526020830182600381111561317757fe5b600381111561318257fe5b905250600090508160200151600381111561319957fe5b146131d55760405162461bcd60e51b815260040180806020018281038252603a815260200180614da5603a913960400191505060405180910390fd5b6131e5600b548260e00151612908565b60c08301819052602083018260038111156131fc57fe5b600381111561320757fe5b905250600090508160200151600381111561321e57fe5b1461325a5760405162461bcd60e51b8152600401808060200182810382526031815260200180614dff6031913960400191505060405180910390fd5b60a080820180516001600160a01b03808a16600081815260106020908152604091829020948555600a5460019095019490945560c0870151600b81905560e088015195518251948f16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160055460e0820151606083015160408051631ededc9160e01b81523060048201526001600160a01b038c811660248301528b8116604483015260648201949094526084810192909252519190921691631ededc919160a480830192600092919082900301818387803b15801561336557600080fd5b505af1158015613379573d6000803e3d6000fd5b5060009250613386915050565b8160e00151935093505050935093915050565b6000806000806133a987876129f9565b909250905060008260038111156133bc57fe5b146133cd5750915060009050612a73565b612a6c8186612908565b60006133e1614b51565b6000806133f686670de0b6b3a7640000613b3c565b9092509050600082600381111561340957fe5b1461342857506040805160208101909152600081529092509050612325565b6000806134358388613b7b565b9092509050600082600381111561344857fe5b1461346a57506040805160208101909152600081529094509250612325915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b6000806000806134a461270e565b600954146134c3576134b8600a604f612440565b935091506127099050565b6134cd3386614896565b905080600c54019150600c5482101561352d576040805162461bcd60e51b815260206004820181905260248201527f61646420726573657276657320756e6578706563746564206f766572666c6f77604482015290519081900360640190fd5b600c829055604080513381526020810183905280820184905290517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a160009350915050915091565b6011546040805163a9059cbb60e01b81526001600160a01b0385811660048301526024820185905291519190921691829163a9059cbb9160448082019260009290919082900301818387803b1580156135d657600080fd5b505af11580156135ea573d6000803e3d6000fd5b5050505060003d60008114613606576020811461361057600080fd5b600019915061361c565b60206000803e60005191505b508061366f576040805162461bcd60e51b815260206004820152601960248201527f544f4b454e5f5452414e534645525f4f55545f4641494c454400000000000000604482015290519081900360640190fd5b50505050565b6000821580613682575081155b6136bd5760405162461bcd60e51b8152600401808060200182810382526034815260200180614ec06034913960400191505060405180910390fd5b6136c5614c28565b6136cd611e70565b60408301819052602083018260038111156136e457fe5b60038111156136ef57fe5b905250600090508160200151600381111561370657fe5b1461372a576137226009602b8360200151600381111561165357fe5b915050611015565b83156137ab57606081018490526040805160208101825290820151815261375190856122d8565b608083018190526020830182600381111561376857fe5b600381111561377357fe5b905250600090508160200151600381111561378a57fe5b146137a657613722600960298360200151600381111561165357fe5b613824565b6137c78360405180602001604052808460400151815250614ae0565b60608301819052602083018260038111156137de57fe5b60038111156137e957fe5b905250600090508160200151600381111561380057fe5b1461381c576137226009602a8360200151600381111561165357fe5b608081018390525b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b15801561388957600080fd5b505af115801561389d573d6000803e3d6000fd5b505050506040513d60208110156138b357600080fd5b5051905080156138d3576138ca6003602883612993565b92505050611015565b6138db61270e565b600954146138ef576138ca600a602c612440565b6138ff600d548360600151612908565b60a084018190526020840182600381111561391657fe5b600381111561392157fe5b905250600090508260200151600381111561393857fe5b14613954576138ca6009602e8460200151600381111561165357fe5b6001600160a01b0386166000908152600e6020526040902054606083015161397c9190612908565b60c084018190526020840182600381111561399357fe5b600381111561399e57fe5b90525060009050826020015160038111156139b557fe5b146139d1576138ca6009602d8460200151600381111561165357fe5b81608001516139de61232c565b10156139f0576138ca600e602f612440565b6139fe86836080015161357e565b60a0820151600d5560c08201516001600160a01b0387166000818152600e6020908152604091829020939093556060850151815190815290513093600080516020614ddf833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b158015613b1157600080fd5b505af1158015613b25573d6000803e3d6000fd5b5060009250613b32915050565b9695505050505050565b60008083613b4f57506000905080612325565b83830283858281613b5c57fe5b0414613b7057506002915060009050612325565b600092509050612325565b60008082613b8f5750600190506000612325565b6000838581613b9a57fe5b04915091509250929050565b60055460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384938493911691634ef4c3e19160648082019260209290919082900301818787803b158015613c0757600080fd5b505af1158015613c1b573d6000803e3d6000fd5b505050506040513d6020811015613c3157600080fd5b505190508015613c5557613c486003601f83612993565b9250600091506123259050565b613c5d61270e565b60095414613c7157613c48600a6022612440565b613c79614c28565b613c81611e70565b6040830181905260208301826003811115613c9857fe5b6003811115613ca357fe5b9052506000905081602001516003811115613cba57fe5b14613ce457613cd6600960218360200151600381111561165357fe5b935060009250612325915050565b613cee8686614896565b60c0820181905260408051602081018252908301518152613d0f9190614ae0565b6060830181905260208301826003811115613d2657fe5b6003811115613d3157fe5b9052506000905081602001516003811115613d4857fe5b14613d9a576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b613daa600d5482606001516129f9565b6080830181905260208301826003811115613dc157fe5b6003811115613dcc57fe5b9052506000905081602001516003811115613de357fe5b14613e1f5760405162461bcd60e51b8152600401808060200182810382526028815260200180614e986028913960400191505060405180910390fd5b6001600160a01b0386166000908152600e60205260409020546060820151613e4791906129f9565b60a0830181905260208301826003811115613e5e57fe5b6003811115613e6957fe5b9052506000905081602001516003811115613e8057fe5b14613ebc5760405162461bcd60e51b815260040180806020018281038252602b815260200180614d43602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0387166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b038816913091600080516020614ddf8339815191529181900360200190a360055460c08201516060830151604080516341c728b960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916341c728b991608480830192600092919082900301818387803b158015613fd257600080fd5b505af1158015613fe6573d6000803e3d6000fd5b5060009250613ff3915050565b8160c001519350935050509250929050565b6005546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b15801561406257600080fd5b505af1158015614076573d6000803e3d6000fd5b505050506040513d602081101561408c57600080fd5b5051905080156140ab576140a36003600e83612993565b915050610b56565b6140b361270e565b600954146140c6576140a3600a80612440565b826140cf61232c565b10156140e1576140a3600e6009612440565b6140e9614c66565b6140f28561265a565b602083018190528282600381111561410657fe5b600381111561411157fe5b905250600090508151600381111561412557fe5b1461414a57614141600960078360000151600381111561165357fe5b92505050610b56565b6141588160200151856129f9565b604083018190528282600381111561416c57fe5b600381111561417757fe5b905250600090508151600381111561418b57fe5b146141a7576141416009600c8360000151600381111561165357fe5b6141b3600b54856129f9565b60608301819052828260038111156141c757fe5b60038111156141d257fe5b90525060009050815160038111156141e657fe5b14614202576141416009600b8360000151600381111561165357fe5b61420c858561357e565b604080820180516001600160a01b03881660008181526010602090815290859020928355600a54600190930192909255606080860151600b81905593518551928352928201899052818501929092529081019190915290517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab809181900360800190a160055460408051635c77860560e01b81523060048201526001600160a01b0388811660248301526044820188905291519190921691635c77860591606480830192600092919082900301818387803b1580156142e957600080fd5b505af11580156142fd573d6000803e3d6000fd5b506000925061430a915050565b95945050505050565b60055460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384938493911691635fc7e71e9160a48082019260209290919082900301818787803b15801561438457600080fd5b505af1158015614398573d6000803e3d6000fd5b505050506040513d60208110156143ae57600080fd5b5051905080156143d2576143c56003601283612993565b92506000915061488d9050565b6143da61270e565b600954146143ee576143c5600a6016612440565b6143f661270e565b846001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b15801561442f57600080fd5b505afa158015614443573d6000803e3d6000fd5b505050506040513d602081101561445957600080fd5b50511461446c576143c5600a6011612440565b866001600160a01b0316866001600160a01b03161415614492576143c560066017612440565b846144a3576143c560076015612440565b6000198514156144b9576143c560076014612440565b6000806144c7898989612fb4565b909250905081156144f7576144e88260108111156144e157fe5b6018612440565b94506000935061488d92505050565b6005546040805163c488847b60e01b81523060048201526001600160a01b038981166024830152604482018590528251600094859492169263c488847b926064808301939192829003018186803b15801561455157600080fd5b505afa158015614565573d6000803e3d6000fd5b505050506040513d604081101561457b57600080fd5b508051602090910151909250905081156145c65760405162461bcd60e51b8152600401808060200182810382526033815260200180614e306033913960400191505060405180910390fd5b80886001600160a01b03166370a082318c6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561461d57600080fd5b505afa158015614631573d6000803e3d6000fd5b505050506040513d602081101561464757600080fd5b5051101561469c576040805162461bcd60e51b815260206004820152601860248201527f4c49515549444154455f5345495a455f544f4f5f4d5543480000000000000000604482015290519081900360640190fd5b60006001600160a01b0389163014156146c2576146bb308d8d85612a7b565b905061474c565b6040805163b2a02ff160e01b81526001600160a01b038e811660048301528d81166024830152604482018590529151918b169163b2a02ff1916064808201926020929091908290030181600087803b15801561471d57600080fd5b505af1158015614731573d6000803e3d6000fd5b505050506040513d602081101561474757600080fd5b505190505b8015614796576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808f168252808e1660208301528183018790528b1660608201526080810184905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a1600554604080516347ef3b3b60e01b81523060048201526001600160a01b038c811660248301528f811660448301528e811660648301526084820188905260a48201869052915191909216916347ef3b3b9160c480830192600092919082900301818387803b15801561486157600080fd5b505af1158015614875573d6000803e3d6000fd5b5060009250614882915050565b975092955050505050505b94509492505050565b601154604080516370a0823160e01b815230600482015290516000926001600160a01b031691839183916370a08231916024808301926020929190829003018186803b1580156148e557600080fd5b505afa1580156148f9573d6000803e3d6000fd5b505050506040513d602081101561490f57600080fd5b5051604080516323b872dd60e01b81526001600160a01b038881166004830152306024830152604482018890529151929350908416916323b872dd9160648082019260009290919082900301818387803b15801561496c57600080fd5b505af1158015614980573d6000803e3d6000fd5b5050505060003d6000811461499c57602081146149a657600080fd5b60001991506149b2565b60206000803e60005191505b5080614a05576040805162461bcd60e51b815260206004820152601860248201527f544f4b454e5f5452414e534645525f494e5f4641494c45440000000000000000604482015290519081900360640190fd5b601154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015614a5057600080fd5b505afa158015614a64573d6000803e3d6000fd5b505050506040513d6020811015614a7a57600080fd5b5051905082811015614ad3576040805162461bcd60e51b815260206004820152601a60248201527f544f4b454e5f5452414e534645525f494e5f4f564552464c4f57000000000000604482015290519081900360640190fd5b9190910395945050505050565b6000806000614aed614b51565b6122ef86866000614afc614b51565b600080614b11670de0b6b3a764000087613b3c565b90925090506000826003811115614b2457fe5b14614b4357506040805160208101909152600081529092509050612325565b61231e8186600001516133d7565b6040518060200160405280600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614ba557805160ff1916838001178555614bd2565b82800160010185558215614bd2579182015b82811115614bd2578251825591602001919060010190614bb7565b50614bde929150614c8f565b5090565b6040805161010081019091528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516080810190915280600081526020016000815260200160008152602001600081525090565b610c9e91905b80821115614bde5760008155600101614c9556fe6f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e6365696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c65644d494e545f4e45575f4143434f554e545f42414c414e43455f43414c43554c4154494f4e5f4641494c4544626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c656452455041595f424f52524f575f4e45575f4143434f554e545f424f52524f575f42414c414e43455f43414c43554c4154494f4e5f4641494c4544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef52455041595f424f52524f575f4e45575f544f54414c5f42414c414e43455f43414c43554c4154494f4e5f4641494c45444c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f4641494c454465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65644d494e545f4e45575f544f54414c5f535550504c595f43414c43554c4154494f4e5f4641494c45446f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f77a265627a7a723158201c83b7cc89e63644ea5a6effab8d9162fab13600efdc51906d528f2fd2158b3d64736f6c63430005110032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102a05760003560e01c80638f840ddd11610167578063c37f68e2116100ce578063f3fdb15a11610087578063f3fdb15a146109ef578063f5e3c462146109f7578063f851a44014610a2d578063f8f9da2814610a35578063fca7820b14610a3d578063fe9c44ae14610a5a576102a0565b8063c37f68e21461090d578063c5ebeaec14610959578063db006a7514610976578063dd62ed3e14610993578063e9c714f2146109c1578063f2b3abbd146109c9576102a0565b8063a9059cbb11610120578063a9059cbb1461086d578063aa5af0fd14610899578063ae9d70b0146108a1578063b2a02ff1146108a9578063b71d1a0c146108df578063bd6d894d14610905576102a0565b80638f840ddd146106c457806395d89b41146106cc57806395dd9193146106d457806399d8c1b4146106fa578063a0712d6814610848578063a6afed9514610865576102a0565b80633af9e6691161020b578063601a0bf1116101c4578063601a0bf11461064c5780636c540baf146106695780636f307dc31461067157806370a082311461067957806373acee981461069f578063852a12e3146106a7576102a0565b80633af9e669146105cb5780633b1d21a2146105f15780633e941010146105f95780634576b5db1461061657806347bd37181461063c5780635fe3b56714610644576102a0565b8063182df0f51161025d578063182df0f5146103c75780631a31d465146103cf57806323b872dd146105275780632608f8181461055d5780632678224714610589578063313ce567146105ad576102a0565b806306fdde03146102a5578063095ea7b3146103225780630e75270214610362578063173b99041461039157806317bfdfbc1461039957806318160ddd146103bf575b600080fd5b6102ad610a62565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e75781810151838201526020016102cf565b50505050905090810190601f1680156103145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61034e6004803603604081101561033857600080fd5b506001600160a01b038135169060200135610aef565b604080519115158252519081900360200190f35b61037f6004803603602081101561037857600080fd5b5035610b5c565b60408051918252519081900360200190f35b61037f610b72565b61037f600480360360208110156103af57600080fd5b50356001600160a01b0316610b78565b61037f610c38565b61037f610c3e565b610525600480360360e08110156103e557600080fd5b6001600160a01b03823581169260208101358216926040820135909216916060820135919081019060a081016080820135600160201b81111561042757600080fd5b82018360208201111561043957600080fd5b803590602001918460018302840111600160201b8311171561045a57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156104ac57600080fd5b8201836020820111156104be57600080fd5b803590602001918460018302840111600160201b831117156104df57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff169150610ca19050565b005b61034e6004803603606081101561053d57600080fd5b506001600160a01b03813581169160208101359091169060400135610d57565b61037f6004803603604081101561057357600080fd5b506001600160a01b038135169060200135610dc9565b610591610ddf565b604080516001600160a01b039092168252519081900360200190f35b6105b5610dee565b6040805160ff9092168252519081900360200190f35b61037f600480360360208110156105e157600080fd5b50356001600160a01b0316610df7565b61037f610ead565b61037f6004803603602081101561060f57600080fd5b5035610ebc565b61037f6004803603602081101561062c57600080fd5b50356001600160a01b0316610ec7565b61037f61101c565b610591611022565b61037f6004803603602081101561066257600080fd5b5035611031565b61037f6110cc565b6105916110d2565b61037f6004803603602081101561068f57600080fd5b50356001600160a01b03166110e1565b61037f6110fc565b61037f600480360360208110156106bd57600080fd5b50356111b2565b61037f6111bd565b6102ad6111c3565b61037f600480360360208110156106ea57600080fd5b50356001600160a01b031661121b565b610525600480360360c081101561071057600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561074a57600080fd5b82018360208201111561075c57600080fd5b803590602001918460018302840111600160201b8311171561077d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156107cf57600080fd5b8201836020820111156107e157600080fd5b803590602001918460018302840111600160201b8311171561080257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506112789050565b61037f6004803603602081101561085e57600080fd5b503561145f565b61037f61146b565b61034e6004803603604081101561088357600080fd5b506001600160a01b0381351690602001356117c3565b61037f611834565b61037f61183a565b61037f600480360360608110156108bf57600080fd5b506001600160a01b038135811691602081013590911690604001356118d9565b61037f600480360360208110156108f557600080fd5b50356001600160a01b031661194a565b61037f6119d6565b6109336004803603602081101561092357600080fd5b50356001600160a01b0316611a92565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61037f6004803603602081101561096f57600080fd5b5035611b27565b61037f6004803603602081101561098c57600080fd5b5035611b32565b61037f600480360360408110156109a957600080fd5b506001600160a01b0381358116916020013516611b3d565b61037f611b68565b61037f600480360360208110156109df57600080fd5b50356001600160a01b0316611c6b565b610591611ca5565b61037f60048036036060811015610a0d57600080fd5b506001600160a01b03813581169160208101359160409091013516611cb4565b610591611ccc565b61037f611ce0565b61037f60048036036020811015610a5357600080fd5b5035611d44565b61034e611dc2565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b600080610b6883611dc7565b509150505b919050565b60085481565b6000805460ff16610bbd576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610bcf61146b565b14610c1a576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b610c238261121b565b90505b6000805460ff19166001179055919050565b600d5481565b6000806000610c4b611e70565b90925090506000826003811115610c5e57fe5b14610c9a5760405162461bcd60e51b8152600401808060200182810382526035815260200180614e636035913960400191505060405180910390fd5b9150505b90565b60038054610100600160a81b0319163361010002179055610cc6868686868686611278565b601180546001600160a01b0319166001600160a01b038981169190911791829055604080516318160ddd60e01b8152905192909116916318160ddd91600480820192602092909190829003018186803b158015610d2257600080fd5b505afa158015610d36573d6000803e3d6000fd5b505050506040513d6020811015610d4c57600080fd5b505050505050505050565b6000805460ff16610d9c576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610db233868686611f1f565b1490506000805460ff191660011790559392505050565b600080610dd6848461222d565b50949350505050565b6004546001600160a01b031681565b60035460ff1681565b6000610e01614b51565b6040518060200160405280610e146119d6565b90526001600160a01b0384166000908152600e6020526040812054919250908190610e409084906122d8565b90925090506000826003811115610e5357fe5b14610ea5576040805162461bcd60e51b815260206004820152601f60248201527f62616c616e636520636f756c64206e6f742062652063616c63756c6174656400604482015290519081900360640190fd5b949350505050565b6000610eb761232c565b905090565b6000610b56826123ac565b60035460009061010090046001600160a01b03163314610ef457610eed6001603f612440565b9050610b6d565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b158015610f3957600080fd5b505afa158015610f4d573d6000803e3d6000fd5b505050506040513d6020811015610f6357600080fd5b5051610fb6576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b6005546001600160a01b031681565b6000805460ff16611076576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561108861146b565b905080156110ae576110a681601081111561109f57fe5b6030612440565b915050610c26565b6110b7836124a6565b9150506000805460ff19166001179055919050565b60095481565b6011546001600160a01b031681565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff16611141576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561115361146b565b1461119e576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b6000610b56826125d9565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610ae75780601f10610abc57610100808354040283529160200191610ae7565b60008060006112298461265a565b9092509050600082600381111561123c57fe5b146110155760405162461bcd60e51b8152600401808060200182810382526037815260200180614d6e6037913960400191505060405180910390fd5b60035461010090046001600160a01b031633146112c65760405162461bcd60e51b8152600401808060200182810382526024815260200180614caa6024913960400191505060405180910390fd5b6009541580156112d65750600a54155b6113115760405162461bcd60e51b8152600401808060200182810382526023815260200180614cce6023913960400191505060405180910390fd5b6007849055836113525760405162461bcd60e51b8152600401808060200182810382526030815260200180614cf16030913960400191505060405180910390fd5b600061135d87610ec7565b905080156113b2576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b6113ba61270e565b600955670de0b6b3a7640000600a556113d286612712565b905080156114115760405162461bcd60e51b8152600401808060200182810382526022815260200180614d216022913960400191505060405180910390fd5b8351611424906001906020870190614b64565b508251611438906002906020860190614b64565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b600080610b6883612887565b60008061147661270e565b6009549091508082141561148f57600092505050610c9e565b600061149961232c565b600b54600c54600a54600654604080516315f2405360e01b815260048101879052602481018690526044810185905290519596509394929391926000926001600160a01b03909216916315f24053916064808301926020929190829003018186803b15801561150757600080fd5b505afa15801561151b573d6000803e3d6000fd5b505050506040513d602081101561153157600080fd5b5051905065048c27395000811115611590576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b60008061159d8989612908565b909250905060008260038111156115b057fe5b14611602576040805162461bcd60e51b815260206004820152601f60248201527f636f756c64206e6f742063616c63756c61746520626c6f636b2064656c746100604482015290519081900360640190fd5b61160a614b51565b60008060008061162860405180602001604052808a8152508761292b565b9097509450600087600381111561163b57fe5b1461166d576116586009600689600381111561165357fe5b612993565b9e505050505050505050505050505050610c9e565b611677858c6122d8565b9097509350600087600381111561168a57fe5b146116a2576116586009600189600381111561165357fe5b6116ac848c6129f9565b909750925060008760038111156116bf57fe5b146116d7576116586009600489600381111561165357fe5b6116f26040518060200160405280600854815250858c612a1f565b9097509150600087600381111561170557fe5b1461171d576116586009600589600381111561165357fe5b611728858a8b612a1f565b9097509050600087600381111561173b57fe5b14611753576116586009600389600381111561165357fe5b60098e9055600a819055600b839055600c829055604080518d8152602081018690528082018390526060810185905290517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160009e50505050505050505050505050505090565b6000805460ff16611808576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561181e33338686611f1f565b1490506000805460ff1916600117905592915050565b600a5481565b6006546000906001600160a01b031663b816881661185661232c565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b1580156118a857600080fd5b505afa1580156118bc573d6000803e3d6000fd5b505050506040513d60208110156118d257600080fd5b5051905090565b6000805460ff1661191e576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916905561193433858585612a7b565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b0316331461197057610eed60016045612440565b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a16000611015565b6000805460ff16611a1b576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611a2d61146b565b14611a78576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b611a80610c3e565b90506000805460ff1916600117905590565b6001600160a01b0381166000908152600e6020526040812054819081908190818080611abd8961265a565b935090506000816003811115611acf57fe5b14611aed5760095b975060009650869550859450611b209350505050565b611af5611e70565b925090506000816003811115611b0757fe5b14611b13576009611ad7565b5060009650919450925090505b9193509193565b6000610b5682612ce1565b6000610b5682612d60565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b6004546000906001600160a01b031633141580611b83575033155b15611b9b57611b9460016000612440565b9050610c9e565b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b600080611c7661146b565b90508015611c9c57611c94816010811115611c8d57fe5b6040612440565b915050610b6d565b61101583612712565b6006546001600160a01b031681565b600080611cc2858585612dda565b5095945050505050565b60035461010090046001600160a01b031681565b6006546000906001600160a01b03166315f24053611cfc61232c565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b1580156118a857600080fd5b6000805460ff16611d89576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611d9b61146b565b90508015611db9576110a6816010811115611db257fe5b6046612440565b6110b783612f0c565b600181565b60008054819060ff16611e0e576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611e2061146b565b90508015611e4b57611e3e816010811115611e3757fe5b6036612440565b925060009150611e5c9050565b611e56333386612fb4565b92509250505b6000805460ff191660011790559092909150565b600d54600090819080611e8b57505060075460009150611f1b565b6000611e9561232c565b90506000611ea1614b51565b6000611eb284600b54600c54613399565b935090506000816003811115611ec457fe5b14611ed957955060009450611f1b9350505050565b611ee383866133d7565b925090506000816003811115611ef557fe5b14611f0a57955060009450611f1b9350505050565b5051600095509350611f1b92505050565b9091565b600554604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b158015611f8457600080fd5b505af1158015611f98573d6000803e3d6000fd5b505050506040513d6020811015611fae57600080fd5b505190508015611fcd57611fc56003604a83612993565b915050610ea5565b836001600160a01b0316856001600160a01b03161415611ff357611fc56002604b612440565b60006001600160a01b038781169087161415612012575060001961203a565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b60008060008061204a8589612908565b9094509250600084600381111561205d57fe5b1461207b5761206e6009604b612440565b9650505050505050610ea5565b6001600160a01b038a166000908152600e602052604090205461209e9089612908565b909450915060008460038111156120b157fe5b146120c25761206e6009604c612440565b6001600160a01b0389166000908152600e60205260409020546120e590896129f9565b909450905060008460038111156120f857fe5b146121095761206e6009604d612440565b6001600160a01b03808b166000908152600e6020526040808220859055918b168152208190556000198514612161576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b0316600080516020614ddf8339815191528a6040518082815260200191505060405180910390a36005546040805163352b4a3f60e11b81523060048201526001600160a01b038d811660248301528c81166044830152606482018c905291519190921691636a56947e91608480830192600092919082900301818387803b1580156121fd57600080fd5b505af1158015612211573d6000803e3d6000fd5b506000925061221e915050565b9b9a5050505050505050505050565b60008054819060ff16612274576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561228661146b565b905080156122b1576122a481601081111561229d57fe5b6035612440565b9250600091506122c29050565b6122bc338686612fb4565b92509250505b6000805460ff1916600117905590939092509050565b60008060006122e5614b51565b6122ef868661292b565b9092509050600082600381111561230257fe5b146123135750915060009050612325565b600061231e82613487565b9350935050505b9250929050565b601154604080516370a0823160e01b815230600482015290516000926001600160a01b03169182916370a0823191602480820192602092909190829003018186803b15801561237a57600080fd5b505afa15801561238e573d6000803e3d6000fd5b505050506040513d60208110156123a457600080fd5b505191505090565b6000805460ff166123f1576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561240361146b565b90508015612421576110a681601081111561241a57fe5b604e612440565b61242a83613496565b509150506000805460ff19166001179055919050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561246f57fe5b83605081111561247b57fe5b604080519283526020830191909152600082820152519081900360600190a182601081111561101557fe5b600354600090819061010090046001600160a01b031633146124ce57611c9460016031612440565b6124d661270e565b600954146124ea57611c94600a6033612440565b826124f361232c565b101561250557611c94600e6032612440565b600c5483111561251b57611c9460026034612440565b50600c54828103908111156125615760405162461bcd60e51b8152600401808060200182810382526024815260200180614ef46024913960400191505060405180910390fd5b600c8190556003546125819061010090046001600160a01b03168461357e565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a16000611015565b6000805460ff1661261e576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561263061146b565b9050801561264e576110a681601081111561264757fe5b6027612440565b6110b733600085613675565b6001600160a01b03811660009081526010602052604081208054829182918291829161269157506000945084935061270992505050565b6126a18160000154600a54613b3c565b909450925060008460038111156126b457fe5b146126c9575091935060009250612709915050565b6126d7838260010154613b7b565b909450915060008460038111156126ea57fe5b146126ff575091935060009250612709915050565b5060009450925050505b915091565b4390565b600354600090819061010090046001600160a01b0316331461273a57611c9460016042612440565b61274261270e565b6009541461275657611c94600a6041612440565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b1580156127a757600080fd5b505afa1580156127bb573d6000803e3d6000fd5b505050506040513d60208110156127d157600080fd5b5051612824576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a16000611015565b60008054819060ff166128ce576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556128e061146b565b905080156128fe57611e3e8160108111156128f757fe5b601e612440565b611e563385613ba6565b60008083831161291f575060009050818303612325565b50600390506000612325565b6000612935614b51565b600080612946866000015186613b3c565b9092509050600082600381111561295957fe5b1461297857506040805160208101909152600081529092509050612325565b60408051602081019091529081526000969095509350505050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa08460108111156129c257fe5b8460508111156129ce57fe5b604080519283526020830191909152818101859052519081900360600190a1836010811115610ea557fe5b600080838301848110612a1157600092509050612325565b506002915060009050612325565b6000806000612a2c614b51565b612a36878761292b565b90925090506000826003811115612a4957fe5b14612a5a5750915060009050612a73565b612a6c612a6682613487565b866129f9565b9350935050505b935093915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b158015612ae857600080fd5b505af1158015612afc573d6000803e3d6000fd5b505050506040513d6020811015612b1257600080fd5b505190508015612b2957611fc56003601b83612993565b846001600160a01b0316846001600160a01b03161415612b4f57611fc56006601c612440565b6001600160a01b0384166000908152600e602052604081205481908190612b769087612908565b90935091506000836003811115612b8957fe5b14612bac57612ba16009601a85600381111561165357fe5b945050505050610ea5565b6001600160a01b0388166000908152600e6020526040902054612bcf90876129f9565b90935090506000836003811115612be257fe5b14612bfa57612ba16009601985600381111561165357fe5b6001600160a01b038088166000818152600e60209081526040808320879055938c168083529184902085905583518a815293519193600080516020614ddf833981519152929081900390910190a360055460408051636d35bf9160e01b81523060048201526001600160a01b038c811660248301528b811660448301528a81166064830152608482018a905291519190921691636d35bf919160a480830192600092919082900301818387803b158015612cb357600080fd5b505af1158015612cc7573d6000803e3d6000fd5b5060009250612cd4915050565b9998505050505050505050565b6000805460ff16612d26576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612d3861146b565b90508015612d56576110a6816010811115612d4f57fe5b6008612440565b6110b73384614005565b6000805460ff16612da5576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612db761146b565b90508015612dce576110a681601081111561264757fe5b6110b733846000613675565b60008054819060ff16612e21576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612e3361146b565b90508015612e5e57612e51816010811115612e4a57fe5b600f612440565b925060009150612ef59050565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612e9957600080fd5b505af1158015612ead573d6000803e3d6000fd5b505050506040513d6020811015612ec357600080fd5b505190508015612ee357612e51816010811115612edc57fe5b6010612440565b612eef33878787614313565b92509250505b6000805460ff191660011790559094909350915050565b60035460009061010090046001600160a01b03163314612f3257610eed60016047612440565b612f3a61270e565b60095414612f4e57610eed600a6048612440565b670de0b6b3a7640000821115612f6a57610eed60026049612440565b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a16000611015565b60055460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849384939116916324008a629160848082019260209290919082900301818787803b15801561301d57600080fd5b505af1158015613031573d6000803e3d6000fd5b505050506040513d602081101561304757600080fd5b50519050801561306b5761305e6003603883612993565b925060009150612a739050565b61307361270e565b600954146130875761305e600a6039612440565b61308f614be2565b6001600160a01b03861660009081526010602052604090206001015460608201526130b98661265a565b60808301819052602083018260038111156130d057fe5b60038111156130db57fe5b90525060009050816020015160038111156130f257fe5b1461311c5761310e600960378360200151600381111561165357fe5b935060009250612a73915050565b600019851415613135576080810151604082015261313d565b604081018590525b61314b878260400151614896565b60e08201819052608082015161316091612908565b60a083018190526020830182600381111561317757fe5b600381111561318257fe5b905250600090508160200151600381111561319957fe5b146131d55760405162461bcd60e51b815260040180806020018281038252603a815260200180614da5603a913960400191505060405180910390fd5b6131e5600b548260e00151612908565b60c08301819052602083018260038111156131fc57fe5b600381111561320757fe5b905250600090508160200151600381111561321e57fe5b1461325a5760405162461bcd60e51b8152600401808060200182810382526031815260200180614dff6031913960400191505060405180910390fd5b60a080820180516001600160a01b03808a16600081815260106020908152604091829020948555600a5460019095019490945560c0870151600b81905560e088015195518251948f16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160055460e0820151606083015160408051631ededc9160e01b81523060048201526001600160a01b038c811660248301528b8116604483015260648201949094526084810192909252519190921691631ededc919160a480830192600092919082900301818387803b15801561336557600080fd5b505af1158015613379573d6000803e3d6000fd5b5060009250613386915050565b8160e00151935093505050935093915050565b6000806000806133a987876129f9565b909250905060008260038111156133bc57fe5b146133cd5750915060009050612a73565b612a6c8186612908565b60006133e1614b51565b6000806133f686670de0b6b3a7640000613b3c565b9092509050600082600381111561340957fe5b1461342857506040805160208101909152600081529092509050612325565b6000806134358388613b7b565b9092509050600082600381111561344857fe5b1461346a57506040805160208101909152600081529094509250612325915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b6000806000806134a461270e565b600954146134c3576134b8600a604f612440565b935091506127099050565b6134cd3386614896565b905080600c54019150600c5482101561352d576040805162461bcd60e51b815260206004820181905260248201527f61646420726573657276657320756e6578706563746564206f766572666c6f77604482015290519081900360640190fd5b600c829055604080513381526020810183905280820184905290517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a160009350915050915091565b6011546040805163a9059cbb60e01b81526001600160a01b0385811660048301526024820185905291519190921691829163a9059cbb9160448082019260009290919082900301818387803b1580156135d657600080fd5b505af11580156135ea573d6000803e3d6000fd5b5050505060003d60008114613606576020811461361057600080fd5b600019915061361c565b60206000803e60005191505b508061366f576040805162461bcd60e51b815260206004820152601960248201527f544f4b454e5f5452414e534645525f4f55545f4641494c454400000000000000604482015290519081900360640190fd5b50505050565b6000821580613682575081155b6136bd5760405162461bcd60e51b8152600401808060200182810382526034815260200180614ec06034913960400191505060405180910390fd5b6136c5614c28565b6136cd611e70565b60408301819052602083018260038111156136e457fe5b60038111156136ef57fe5b905250600090508160200151600381111561370657fe5b1461372a576137226009602b8360200151600381111561165357fe5b915050611015565b83156137ab57606081018490526040805160208101825290820151815261375190856122d8565b608083018190526020830182600381111561376857fe5b600381111561377357fe5b905250600090508160200151600381111561378a57fe5b146137a657613722600960298360200151600381111561165357fe5b613824565b6137c78360405180602001604052808460400151815250614ae0565b60608301819052602083018260038111156137de57fe5b60038111156137e957fe5b905250600090508160200151600381111561380057fe5b1461381c576137226009602a8360200151600381111561165357fe5b608081018390525b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b15801561388957600080fd5b505af115801561389d573d6000803e3d6000fd5b505050506040513d60208110156138b357600080fd5b5051905080156138d3576138ca6003602883612993565b92505050611015565b6138db61270e565b600954146138ef576138ca600a602c612440565b6138ff600d548360600151612908565b60a084018190526020840182600381111561391657fe5b600381111561392157fe5b905250600090508260200151600381111561393857fe5b14613954576138ca6009602e8460200151600381111561165357fe5b6001600160a01b0386166000908152600e6020526040902054606083015161397c9190612908565b60c084018190526020840182600381111561399357fe5b600381111561399e57fe5b90525060009050826020015160038111156139b557fe5b146139d1576138ca6009602d8460200151600381111561165357fe5b81608001516139de61232c565b10156139f0576138ca600e602f612440565b6139fe86836080015161357e565b60a0820151600d5560c08201516001600160a01b0387166000818152600e6020908152604091829020939093556060850151815190815290513093600080516020614ddf833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b158015613b1157600080fd5b505af1158015613b25573d6000803e3d6000fd5b5060009250613b32915050565b9695505050505050565b60008083613b4f57506000905080612325565b83830283858281613b5c57fe5b0414613b7057506002915060009050612325565b600092509050612325565b60008082613b8f5750600190506000612325565b6000838581613b9a57fe5b04915091509250929050565b60055460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384938493911691634ef4c3e19160648082019260209290919082900301818787803b158015613c0757600080fd5b505af1158015613c1b573d6000803e3d6000fd5b505050506040513d6020811015613c3157600080fd5b505190508015613c5557613c486003601f83612993565b9250600091506123259050565b613c5d61270e565b60095414613c7157613c48600a6022612440565b613c79614c28565b613c81611e70565b6040830181905260208301826003811115613c9857fe5b6003811115613ca357fe5b9052506000905081602001516003811115613cba57fe5b14613ce457613cd6600960218360200151600381111561165357fe5b935060009250612325915050565b613cee8686614896565b60c0820181905260408051602081018252908301518152613d0f9190614ae0565b6060830181905260208301826003811115613d2657fe5b6003811115613d3157fe5b9052506000905081602001516003811115613d4857fe5b14613d9a576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b613daa600d5482606001516129f9565b6080830181905260208301826003811115613dc157fe5b6003811115613dcc57fe5b9052506000905081602001516003811115613de357fe5b14613e1f5760405162461bcd60e51b8152600401808060200182810382526028815260200180614e986028913960400191505060405180910390fd5b6001600160a01b0386166000908152600e60205260409020546060820151613e4791906129f9565b60a0830181905260208301826003811115613e5e57fe5b6003811115613e6957fe5b9052506000905081602001516003811115613e8057fe5b14613ebc5760405162461bcd60e51b815260040180806020018281038252602b815260200180614d43602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0387166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b038816913091600080516020614ddf8339815191529181900360200190a360055460c08201516060830151604080516341c728b960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916341c728b991608480830192600092919082900301818387803b158015613fd257600080fd5b505af1158015613fe6573d6000803e3d6000fd5b5060009250613ff3915050565b8160c001519350935050509250929050565b6005546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b15801561406257600080fd5b505af1158015614076573d6000803e3d6000fd5b505050506040513d602081101561408c57600080fd5b5051905080156140ab576140a36003600e83612993565b915050610b56565b6140b361270e565b600954146140c6576140a3600a80612440565b826140cf61232c565b10156140e1576140a3600e6009612440565b6140e9614c66565b6140f28561265a565b602083018190528282600381111561410657fe5b600381111561411157fe5b905250600090508151600381111561412557fe5b1461414a57614141600960078360000151600381111561165357fe5b92505050610b56565b6141588160200151856129f9565b604083018190528282600381111561416c57fe5b600381111561417757fe5b905250600090508151600381111561418b57fe5b146141a7576141416009600c8360000151600381111561165357fe5b6141b3600b54856129f9565b60608301819052828260038111156141c757fe5b60038111156141d257fe5b90525060009050815160038111156141e657fe5b14614202576141416009600b8360000151600381111561165357fe5b61420c858561357e565b604080820180516001600160a01b03881660008181526010602090815290859020928355600a54600190930192909255606080860151600b81905593518551928352928201899052818501929092529081019190915290517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab809181900360800190a160055460408051635c77860560e01b81523060048201526001600160a01b0388811660248301526044820188905291519190921691635c77860591606480830192600092919082900301818387803b1580156142e957600080fd5b505af11580156142fd573d6000803e3d6000fd5b506000925061430a915050565b95945050505050565b60055460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384938493911691635fc7e71e9160a48082019260209290919082900301818787803b15801561438457600080fd5b505af1158015614398573d6000803e3d6000fd5b505050506040513d60208110156143ae57600080fd5b5051905080156143d2576143c56003601283612993565b92506000915061488d9050565b6143da61270e565b600954146143ee576143c5600a6016612440565b6143f661270e565b846001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b15801561442f57600080fd5b505afa158015614443573d6000803e3d6000fd5b505050506040513d602081101561445957600080fd5b50511461446c576143c5600a6011612440565b866001600160a01b0316866001600160a01b03161415614492576143c560066017612440565b846144a3576143c560076015612440565b6000198514156144b9576143c560076014612440565b6000806144c7898989612fb4565b909250905081156144f7576144e88260108111156144e157fe5b6018612440565b94506000935061488d92505050565b6005546040805163c488847b60e01b81523060048201526001600160a01b038981166024830152604482018590528251600094859492169263c488847b926064808301939192829003018186803b15801561455157600080fd5b505afa158015614565573d6000803e3d6000fd5b505050506040513d604081101561457b57600080fd5b508051602090910151909250905081156145c65760405162461bcd60e51b8152600401808060200182810382526033815260200180614e306033913960400191505060405180910390fd5b80886001600160a01b03166370a082318c6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561461d57600080fd5b505afa158015614631573d6000803e3d6000fd5b505050506040513d602081101561464757600080fd5b5051101561469c576040805162461bcd60e51b815260206004820152601860248201527f4c49515549444154455f5345495a455f544f4f5f4d5543480000000000000000604482015290519081900360640190fd5b60006001600160a01b0389163014156146c2576146bb308d8d85612a7b565b905061474c565b6040805163b2a02ff160e01b81526001600160a01b038e811660048301528d81166024830152604482018590529151918b169163b2a02ff1916064808201926020929091908290030181600087803b15801561471d57600080fd5b505af1158015614731573d6000803e3d6000fd5b505050506040513d602081101561474757600080fd5b505190505b8015614796576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808f168252808e1660208301528183018790528b1660608201526080810184905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a1600554604080516347ef3b3b60e01b81523060048201526001600160a01b038c811660248301528f811660448301528e811660648301526084820188905260a48201869052915191909216916347ef3b3b9160c480830192600092919082900301818387803b15801561486157600080fd5b505af1158015614875573d6000803e3d6000fd5b5060009250614882915050565b975092955050505050505b94509492505050565b601154604080516370a0823160e01b815230600482015290516000926001600160a01b031691839183916370a08231916024808301926020929190829003018186803b1580156148e557600080fd5b505afa1580156148f9573d6000803e3d6000fd5b505050506040513d602081101561490f57600080fd5b5051604080516323b872dd60e01b81526001600160a01b038881166004830152306024830152604482018890529151929350908416916323b872dd9160648082019260009290919082900301818387803b15801561496c57600080fd5b505af1158015614980573d6000803e3d6000fd5b5050505060003d6000811461499c57602081146149a657600080fd5b60001991506149b2565b60206000803e60005191505b5080614a05576040805162461bcd60e51b815260206004820152601860248201527f544f4b454e5f5452414e534645525f494e5f4641494c45440000000000000000604482015290519081900360640190fd5b601154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015614a5057600080fd5b505afa158015614a64573d6000803e3d6000fd5b505050506040513d6020811015614a7a57600080fd5b5051905082811015614ad3576040805162461bcd60e51b815260206004820152601a60248201527f544f4b454e5f5452414e534645525f494e5f4f564552464c4f57000000000000604482015290519081900360640190fd5b9190910395945050505050565b6000806000614aed614b51565b6122ef86866000614afc614b51565b600080614b11670de0b6b3a764000087613b3c565b90925090506000826003811115614b2457fe5b14614b4357506040805160208101909152600081529092509050612325565b61231e8186600001516133d7565b6040518060200160405280600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614ba557805160ff1916838001178555614bd2565b82800160010185558215614bd2579182015b82811115614bd2578251825591602001919060010190614bb7565b50614bde929150614c8f565b5090565b6040805161010081019091528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516080810190915280600081526020016000815260200160008152602001600081525090565b610c9e91905b80821115614bde5760008155600101614c9556fe6f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e6365696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c65644d494e545f4e45575f4143434f554e545f42414c414e43455f43414c43554c4154494f4e5f4641494c4544626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c656452455041595f424f52524f575f4e45575f4143434f554e545f424f52524f575f42414c414e43455f43414c43554c4154494f4e5f4641494c4544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef52455041595f424f52524f575f4e45575f544f54414c5f42414c414e43455f43414c43554c4154494f4e5f4641494c45444c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f4641494c454465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65644d494e545f4e45575f544f54414c5f535550504c595f43414c43554c4154494f4e5f4641494c45446f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f77a265627a7a723158201c83b7cc89e63644ea5a6effab8d9162fab13600efdc51906d528f2fd2158b3d64736f6c63430005110032
Deployed Bytecode Sourcemap
109244:9113:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;109244:9113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26166:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;26166:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49404:237;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;49404:237:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;112650:149;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;112650:149:0;;:::i;:::-;;;;;;;;;;;;;;;;27469:33;;;:::i;53653:224::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;53653:224:0;-1:-1:-1;;;;;53653:224:0;;:::i;28114:23::-;;;:::i;56498:261::-;;;:::i;109803:782::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;109803:782:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;109803:782:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;109803:782:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;109803:782:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;109803:782:0;;;;;;;;-1:-1:-1;109803:782:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;109803:782:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;109803:782:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;109803:782:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;109803:782:0;;-1:-1:-1;;;109803:782:0;;;;;-1:-1:-1;109803:782:0;;-1:-1:-1;109803:782:0:i;:::-;;48739:195;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;48739:195:0;;;;;;;;;;;;;;;;;:::i;113087:189::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;113087:189:0;;;;;;;;:::i;26893:35::-;;;:::i;:::-;;;;-1:-1:-1;;;;;26893:35:0;;;;;;;;;;;;;;26362:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;50672:354;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;50672:354:0;-1:-1:-1;;;;;50672:354:0;;:::i;58379:88::-;;;:::i;114229:119::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;114229:119:0;;:::i;96424:735::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;96424:735:0;-1:-1:-1;;;;;96424:735:0;;:::i;27878:24::-;;;:::i;27019:39::-;;;:::i;102382:571::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;102382:571:0;;:::i;27592:30::-;;;:::i;33788:25::-;;;:::i;50304:112::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;50304:112:0;-1:-1:-1;;;;;50304:112:0;;:::i;53170:192::-;;;:::i;111928:133::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;111928:133:0;;:::i;28008:25::-;;;:::i;26262:20::-;;;:::i;54086:287::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54086:287:0;-1:-1:-1;;;;;54086:287:0;;:::i;43778:1529::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;43778:1529:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;43778:1529:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;43778:1529:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;43778:1529:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;43778:1529:0;;;;;;;;-1:-1:-1;43778:1529:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;43778:1529:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;43778:1529:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;43778:1529:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;43778:1529:0;;-1:-1:-1;;;43778:1529:0;;;;;-1:-1:-1;43778:1529:0;;-1:-1:-1;43778:1529:0:i;110975:133::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;110975:133:0;;:::i;58715:3852::-;;;:::i;48247:185::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;48247:185:0;;;;;;;;:::i;27743:23::-;;;:::i;52840:184::-;;;:::i;91075:194::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;91075:194:0;;;;;;;;;;;;;;;;;:::i;94532:647::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;94532:647:0;-1:-1:-1;;;;;94532:647:0;;:::i;56050:198::-;;;:::i;51372:703::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51372:703:0;-1:-1:-1;;;;;51372:703:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112329:113;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;112329:113:0;;:::i;111459:::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;111459:113:0;;:::i;49971:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;49971:143:0;;;;;;;;;;:::i;95457:742::-;;;:::i;105346:633::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;105346:633:0;-1:-1:-1;;;;;105346:633:0;;:::i;27160:42::-;;;:::i;113758:237::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;113758:237:0;;;;;;;;;;;;;;;;;:::i;26782:28::-;;;:::i;52503:161::-;;;:::i;97462:607::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;97462:607:0;;:::i;29140:36::-;;;:::i;26166:18::-;;;;;;;;;;;;;;;-1:-1:-1;;26166:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49404:237::-;49503:10;49472:4;49524:23;;;:18;:23;;;;;;;;-1:-1:-1;;;;;49524:32:0;;;;;;;;;;;:41;;;49581:30;;;;;;;49472:4;;49503:10;49524:32;;49503:10;;49581:30;;;;;;;;;;;49629:4;49622:11;;;49404:237;;;;;:::o;112650:149::-;112707:4;112725:8;112738:32;112758:11;112738:19;:32::i;:::-;-1:-1:-1;112724:46:0;-1:-1:-1;;112650:149:0;;;;:::o;27469:33::-;;;;:::o;53653:224::-;53731:4;108875:11;;;;108867:34;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;;;;108926:5;108912:19;;-1:-1:-1;;108912:19:0;;;53756:16;:14;:16::i;:::-;:40;53748:75;;;;;-1:-1:-1;;;53748:75:0;;;;;;;;;;;;-1:-1:-1;;;53748:75:0;;;;;;;;;;;;;;;53841:28;53861:7;53841:19;:28::i;:::-;53834:35;;108942:1;108954:11;:18;;-1:-1:-1;;108954:18:0;108968:4;108954:18;;;53653:224;;-1:-1:-1;53653:224:0:o;28114:23::-;;;;:::o;56498:261::-;56549:4;56567:13;56582:11;56597:28;:26;:28::i;:::-;56566:59;;-1:-1:-1;56566:59:0;-1:-1:-1;56651:18:0;56644:3;:25;;;;;;;;;56636:91;;;;-1:-1:-1;;;56636:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56745:6;-1:-1:-1;;56498:261:0;;:::o;109803:782::-;110248:5;:18;;-1:-1:-1;;;;;;110248:18:0;110256:10;110248:18;;;;;110335:107;110352:12;110366:18;110386:28;110416:5;110423:7;110432:9;110335:16;:107::i;:::-;110502:10;:24;;-1:-1:-1;;;;;;110502:24:0;-1:-1:-1;;;;;110502:24:0;;;;;;;;;;;110537:40;;;-1:-1:-1;;;110537:40:0;;;;110552:10;;;;;110537:38;;:40;;;;;;;;;;;;;;;110552:10;110537:40;;;5:2:-1;;;;30:1;27;20:12;5:2;110537:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;110537:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;;;;109803:782:0:o;48739:195::-;48834:4;108875:11;;;;108867:34;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;;;;108926:5;108912:19;;-1:-1:-1;;108912:19:0;;;48858:44;48873:10;48885:3;48890;48895:6;48858:14;:44::i;:::-;:68;48851:75;;108954:11;:18;;-1:-1:-1;;108954:18:0;108968:4;108954:18;;;48739:195;;-1:-1:-1;;;48739:195:0:o;113087:189::-;113168:4;113186:8;113199:48;113225:8;113235:11;113199:25;:48::i;:::-;-1:-1:-1;113185:62:0;113087:189;-1:-1:-1;;;;113087:189:0:o;26893:35::-;;;-1:-1:-1;;;;;26893:35:0;;:::o;26362:21::-;;;;;;:::o;50672:354::-;50734:4;50751:23;;:::i;:::-;50777:38;;;;;;;;50792:21;:19;:21::i;:::-;50777:38;;-1:-1:-1;;;;;50891:20:0;;50827:14;50891:20;;;:13;:20;;;;;;50751:64;;-1:-1:-1;50827:14:0;;;50859:53;;50751:64;;50859:17;:53::i;:::-;50826:86;;-1:-1:-1;50826:86:0;-1:-1:-1;50939:18:0;50931:4;:26;;;;;;;;;50923:70;;;;;-1:-1:-1;;;50923:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;51011:7;50672:354;-1:-1:-1;;;;50672:354:0:o;58379:88::-;58421:4;58445:14;:12;:14::i;:::-;58438:21;;58379:88;:::o;114229:119::-;114285:4;114309:31;114330:9;114309:20;:31::i;96424:735::-;96571:5;;96502:4;;96571:5;;;-1:-1:-1;;;;;96571:5:0;96557:10;:19;96553:124;;96600:65;96605:18;96625:39;96600:4;:65::i;:::-;96593:72;;;;96553:124;96727:11;;96824:30;;;-1:-1:-1;;;96824:30:0;;;;-1:-1:-1;;;;;96727:11:0;;;;96824:28;;;;;:30;;;;;;;;;;;;;;:28;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;96824:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;96824:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;96824:30:0;96816:71;;;;;-1:-1:-1;;;96816:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;96955:11;:28;;-1:-1:-1;;;;;;96955:28:0;-1:-1:-1;;;;;96955:28:0;;;;;;;;;97065:46;;;;;;;;;;;;;;;;;;;;;;;;;;;97136:14;97131:20;97124:27;96424:735;-1:-1:-1;;;96424:735:0:o;27878:24::-;;;;:::o;27019:39::-;;;-1:-1:-1;;;;;27019:39:0;;:::o;102382:571::-;102457:4;108875:11;;;;108867:34;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;;;;108926:5;108912:19;;-1:-1:-1;;108912:19:0;;;102487:16;:14;:16::i;:::-;102474:29;-1:-1:-1;102518:29:0;;102514:277;;102709:70;102720:5;102714:12;;;;;;;;102728:50;102709:4;:70::i;:::-;102702:77;;;;;102514:277;102911:34;102932:12;102911:20;:34::i;:::-;102904:41;;;108954:11;:18;;-1:-1:-1;;108954:18:0;108968:4;108954:18;;;102382:571;;-1:-1:-1;102382:571:0:o;27592:30::-;;;;:::o;33788:25::-;;;-1:-1:-1;;;;;33788:25:0;;:::o;50304:112::-;-1:-1:-1;;;;;50388:20:0;50361:7;50388:20;;;:13;:20;;;;;;;50304:112::o;53170:192::-;53232:4;108875:11;;;;108867:34;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;;;;108926:5;108912:19;;-1:-1:-1;;108912:19:0;;;53257:16;:14;:16::i;:::-;:40;53249:75;;;;;-1:-1:-1;;;53249:75:0;;;;;;;;;;;;-1:-1:-1;;;53249:75:0;;;;;;;;;;;;;;;-1:-1:-1;53342:12:0;;108954:11;:18;;-1:-1:-1;;108954:18:0;108968:4;108954:18;;;53170:192;:::o;111928:133::-;111991:4;112015:38;112040:12;112015:24;:38::i;28008:25::-;;;;:::o;26262:20::-;;;;;;;;;;;;;;-1:-1:-1;;26262:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54086:287;54153:4;54171:13;54186:11;54201:36;54229:7;54201:27;:36::i;:::-;54170:67;;-1:-1:-1;54170:67:0;-1:-1:-1;54263:18:0;54256:3;:25;;;;;;;;;54248:93;;;;-1:-1:-1;;;54248:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43778:1529;44132:5;;;;;-1:-1:-1;;;;;44132:5:0;44118:10;:19;44110:68;;;;-1:-1:-1;;;44110:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44197:18;;:23;:43;;;;-1:-1:-1;44224:11:0;;:16;44197:43;44189:91;;;;-1:-1:-1;;;44189:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44331:27;:58;;;44408:31;44400:92;;;;-1:-1:-1;;;44400:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44537:8;44548:29;44564:12;44548:15;:29::i;:::-;44537:40;-1:-1:-1;44596:27:0;;44588:66;;;;;-1:-1:-1;;;44588:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;44794:16;:14;:16::i;:::-;44773:18;:37;10826:4;44821:11;:25;44946:46;44973:18;44946:26;:46::i;:::-;44940:52;-1:-1:-1;45011:27:0;;45003:74;;;;-1:-1:-1;;;45003:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45090:12;;;;:4;;:12;;;;;:::i;:::-;-1:-1:-1;45113:16:0;;;;:6;;:16;;;;;:::i;:::-;-1:-1:-1;;45140:8:0;:20;;;;;;-1:-1:-1;;45140:20:0;;;;;;:8;45281:18;;;;;45140:20;45281:18;;;-1:-1:-1;;;;;43778:1529:0:o;110975:133::-;111024:4;111042:8;111055:24;111068:10;111055:12;:24::i;58715:3852::-;58757:4;58823:23;58849:16;:14;:16::i;:::-;58907:18;;58823:42;;-1:-1:-1;58995:45:0;;;58991:105;;;59069:14;59057:27;;;;;;58991:105;59163:14;59180;:12;:14::i;:::-;59225:12;;59269:13;;59317:11;;59425:17;;:71;;;-1:-1:-1;;;59425:71:0;;;;;;;;;;;;;;;;;;;;;;59163:31;;-1:-1:-1;59225:12:0;;59269:13;;59317:11;;59205:17;;-1:-1:-1;;;;;59425:17:0;;;;:31;;:71;;;;;;;;;;;;;;:17;:71;;;5:2:-1;;;;30:1;27;20:12;5:2;59425:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;59425:71:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;59425:71:0;;-1:-1:-1;26537:9:0;59515:43;;;59507:84;;;;;-1:-1:-1;;;59507:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;59682:17;59701:15;59720:52;59728:18;59748:23;59720:7;:52::i;:::-;59681:91;;-1:-1:-1;59681:91:0;-1:-1:-1;59802:18:0;59791:7;:29;;;;;;;;;59783:73;;;;;-1:-1:-1;;;59783:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;60348:31;;:::i;:::-;60390:24;60425:20;60456:21;60488:19;60554:58;60564:35;;;;;;;;60579:18;60564:35;;;60601:10;60554:9;:58::i;:::-;60520:92;;-1:-1:-1;60520:92:0;-1:-1:-1;60638:18:0;60627:7;:29;;;;;;;;;60623:183;;60680:114;60691:16;60709:69;60785:7;60780:13;;;;;;;;60680:10;:114::i;:::-;60673:121;;;;;;;;;;;;;;;;;;60623:183;60851:53;60869:20;60891:12;60851:17;:53::i;:::-;60818:86;;-1:-1:-1;60818:86:0;-1:-1:-1;60930:18:0;60919:7;:29;;;;;;;;;60915:181;;60972:112;60983:16;61001:67;61075:7;61070:13;;;;;;;60915:181;61137:42;61145:19;61166:12;61137:7;:42::i;:::-;61108:71;;-1:-1:-1;61108:71:0;-1:-1:-1;61205:18:0;61194:7;:29;;;;;;;;;61190:178;;61247:109;61258:16;61276:64;61347:7;61342:13;;;;;;;61190:178;61410:100;61435:38;;;;;;;;61450:21;;61435:38;;;61475:19;61496:13;61410:24;:100::i;:::-;61380:130;;-1:-1:-1;61380:130:0;-1:-1:-1;61536:18:0;61525:7;:29;;;;;;;;;61521:179;;61578:110;61589:16;61607:65;61679:7;61674:13;;;;;;;61521:179;61740:82;61765:20;61787:16;61805;61740:24;:82::i;:::-;61712:110;;-1:-1:-1;61712:110:0;-1:-1:-1;61848:18:0;61837:7;:29;;;;;;;;;61833:177;;61890:108;61901:16;61919:63;61989:7;61984:13;;;;;;;61833:177;62213:18;:39;;;62263:11;:28;;;62302:12;:30;;;62343:13;:32;;;62440:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62544:14;62532:27;;;;;;;;;;;;;;;;58715:3852;:::o;48247:185::-;48325:4;108875:11;;;;108867:34;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;;;;108926:5;108912:19;;-1:-1:-1;;108912:19:0;;;48349:51;48364:10;48376;48388:3;48393:6;48349:14;:51::i;:::-;:75;48342:82;;108954:11;:18;;-1:-1:-1;;108954:18:0;108968:4;108954:18;;;48247:185;;-1:-1:-1;;48247:185:0:o;27743:23::-;;;;:::o;52840:184::-;52917:17;;52893:4;;-1:-1:-1;;;;;52917:17:0;:31;52949:14;:12;:14::i;:::-;52965:12;;52979:13;;52994:21;;52917:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52917:99:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;52917:99:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52917:99:0;;-1:-1:-1;52840:184:0;:::o;91075:194::-;91177:4;108875:11;;;;108867:34;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;;;;108926:5;108912:19;;-1:-1:-1;;108912:19:0;;;91201:60;91215:10;91227;91239:8;91249:11;91201:13;:60::i;:::-;91194:67;;108954:11;:18;;-1:-1:-1;;108954:18:0;108968:4;108954:18;;;91075:194;;-1:-1:-1;;;91075:194:0:o;94532:647::-;94677:5;;94609:4;;94677:5;;;-1:-1:-1;;;;;94677:5:0;94663:10;:19;94659:126;;94706:67;94711:18;94731:41;94706:4;:67::i;94659:126::-;94884:12;;;-1:-1:-1;;;;;94967:30:0;;;-1:-1:-1;;;;;;94967:30:0;;;;;;;95082:49;;;94884:12;;;;95082:49;;;;;;;;;;;;;;;;;;;;;;;95156:14;95151:20;;56050:198;56110:4;108875:11;;;;108867:34;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;;;;108926:5;108912:19;;-1:-1:-1;;108912:19:0;;;56135:16;:14;:16::i;:::-;:40;56127:75;;;;;-1:-1:-1;;;56127:75:0;;;;;;;;;;;;-1:-1:-1;;;56127:75:0;;;;;;;;;;;;;;;56220:20;:18;:20::i;:::-;56213:27;;108954:11;:18;;-1:-1:-1;;108954:18:0;108968:4;108954:18;;;56050:198;:::o;51372:703::-;-1:-1:-1;;;;;51496:22:0;;51440:4;51496:22;;;:13;:22;;;;;;51440:4;;;;;;;;;51647:36;51510:7;51647:27;:36::i;:::-;51623:60;-1:-1:-1;51623:60:0;-1:-1:-1;51706:18:0;51698:4;:26;;;;;;;;;51694:99;;51754:16;51749:22;51741:40;-1:-1:-1;51773:1:0;;-1:-1:-1;51773:1:0;;-1:-1:-1;51773:1:0;;-1:-1:-1;51741:40:0;;-1:-1:-1;;;;51741:40:0;51694:99;51836:28;:26;:28::i;:::-;51805:59;-1:-1:-1;51805:59:0;-1:-1:-1;51887:18:0;51879:4;:26;;;;;;;;;51875:99;;51935:16;51930:22;;51875:99;-1:-1:-1;51999:14:0;;-1:-1:-1;52016:13:0;;-1:-1:-1;52031:13:0;-1:-1:-1;52031:13:0;-1:-1:-1;51372:703:0;;;;;;:::o;112329:113::-;112382:4;112406:28;112421:12;112406:14;:28::i;111459:113::-;111512:4;111536:28;111551:12;111536:14;:28::i;49971:143::-;-1:-1:-1;;;;;50072:25:0;;;50045:7;50072:25;;;:18;:25;;;;;;;;:34;;;;;;;;;;;;;49971:143::o;95457:742::-;95607:12;;95499:4;;-1:-1:-1;;;;;95607:12:0;95593:10;:26;;;:54;;-1:-1:-1;95623:10:0;:24;95593:54;95589:164;;;95671:70;95676:18;95696:44;95671:4;:70::i;:::-;95664:77;;;;95589:164;95837:5;;;95879:12;;;-1:-1:-1;;;;;95879:12:0;;;95837:5;95952:20;;;-1:-1:-1;;;;;;95952:20:0;;;;;;;-1:-1:-1;;;;;;96021:25:0;;;;;;96064;;;95837:5;;;;;;96064:25;;;96083:5;;;;;96064:25;;;;;;95837:5;;95879:12;;96064:25;;;;;;;;;96138:12;;96105:46;;;-1:-1:-1;;;;;96105:46:0;;;;;96138:12;;;96105:46;;;;;;;;;;;;;;;;96176:14;96164:27;;;;95457:742;:::o;105346:633::-;105433:4;105450:10;105463:16;:14;:16::i;:::-;105450:29;-1:-1:-1;105494:29:0;;105490:298;;105698:78;105709:5;105703:12;;;;;;;;105717:58;105698:4;:78::i;:::-;105691:85;;;;;105490:298;105923:48;105950:20;105923:26;:48::i;27160:42::-;;;-1:-1:-1;;;;;27160:42:0;;:::o;113758:237::-;113871:4;113889:8;113902:64;113926:8;113936:11;113949:16;113902:23;:64::i;:::-;-1:-1:-1;113888:78:0;113758:237;-1:-1:-1;;;;;113758:237:0:o;26782:28::-;;;;;;-1:-1:-1;;;;;26782:28:0;;:::o;52503:161::-;52580:17;;52556:4;;-1:-1:-1;;;;;52580:17:0;:31;52612:14;:12;:14::i;:::-;52628:12;;52642:13;;52580:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;97462:607:0;97551:4;108875:11;;;;108867:34;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;;;;108926:5;108912:19;;-1:-1:-1;;108912:19:0;;;97581:16;:14;:16::i;:::-;97568:29;-1:-1:-1;97612:29:0;;97608:286;;97809:73;97820:5;97814:12;;;;;;;;97828:53;97809:4;:73::i;97608:286::-;98013:48;98036:24;98013:22;:48::i;29140:36::-;29172:4;29140:36;:::o;79186:572::-;79264:4;108875:11;;79264:4;;108875:11;;108867:34;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;;;;108926:5;108912:19;;-1:-1:-1;;108912:19:0;;;79300:16;:14;:16::i;:::-;79287:29;-1:-1:-1;79331:29:0;;79327:260;;79504:67;79515:5;79509:12;;;;;;;;79523:47;79504:4;:67::i;:::-;79496:79;-1:-1:-1;79573:1:0;;-1:-1:-1;79496:79:0;;-1:-1:-1;79496:79:0;79327:260;79697:53;79714:10;79726;79738:11;79697:16;:53::i;:::-;79690:60;;;;;108942:1;108954:11;:18;;-1:-1:-1;;108954:18:0;108968:4;108954:18;;;79186:572;;;;-1:-1:-1;79186:572:0:o;57023:1186::-;57132:11;;57084:9;;;;57158:17;57154:1048;;-1:-1:-1;;57352:27:0;;57332:18;;-1:-1:-1;57324:56:0;;57154:1048;57562:14;57579;:12;:14::i;:::-;57562:31;;57608:33;57656:23;;:::i;:::-;57694:17;57770:54;57785:9;57796:12;;57810:13;;57770:14;:54::i;:::-;57728:96;-1:-1:-1;57728:96:0;-1:-1:-1;57854:18:0;57843:7;:29;;;;;;;;;57839:89;;57901:7;-1:-1:-1;57910:1:0;;-1:-1:-1;57893:19:0;;-1:-1:-1;;;;57893:19:0;57839:89;57970:50;57977:28;58007:12;57970:6;:50::i;:::-;57944:76;-1:-1:-1;57944:76:0;-1:-1:-1;58050:18:0;58039:7;:29;;;;;;;;;58035:89;;58097:7;-1:-1:-1;58106:1:0;;-1:-1:-1;58089:19:0;;-1:-1:-1;;;;58089:19:0;58035:89;-1:-1:-1;58168:21:0;58148:18;;-1:-1:-1;58168:21:0;-1:-1:-1;58140:50:0;;-1:-1:-1;;;58140:50:0;57023:1186;;;:::o;45770:2216::-;45944:11;;:60;;;-1:-1:-1;;;45944:60:0;;45980:4;45944:60;;;;-1:-1:-1;;;;;45944:60:0;;;;;;;;;;;;;;;;;;;;;;45868:4;;;;45944:11;;:27;;:60;;;;;;;;;;;;;;45868:4;45944:11;:60;;;5:2:-1;;;;30:1;27;20:12;5:2;45944:60:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;45944:60:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45944:60:0;;-1:-1:-1;46019:12:0;;46015:144;;46055:92;46066:27;46095:42;46139:7;46055:10;:92::i;:::-;46048:99;;;;;46015:144;46225:3;-1:-1:-1;;;;;46218:10:0;:3;-1:-1:-1;;;;;46218:10:0;;46214:105;;;46252:55;46257:15;46274:32;46252:4;:55::i;46214:105::-;46396:22;-1:-1:-1;;;;;46437:14:0;;;;;;;46433:160;;;-1:-1:-1;;;46433:160:0;;;-1:-1:-1;;;;;;46549:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;;46433:160;46671:17;46699;46727;46755;46811:34;46819:17;46838:6;46811:7;:34::i;:::-;46785:60;;-1:-1:-1;46785:60:0;-1:-1:-1;46871:18:0;46860:7;:29;;;;;;;;;46856:125;;46913:56;46918:16;46936:32;46913:4;:56::i;:::-;46906:63;;;;;;;;;;46856:125;-1:-1:-1;;;;;47027:18:0;;;;;;:13;:18;;;;;;47019:35;;47047:6;47019:7;:35::i;:::-;46993:61;;-1:-1:-1;46993:61:0;-1:-1:-1;47080:18:0;47069:7;:29;;;;;;;;;47065:124;;47122:55;47127:16;47145:31;47122:4;:55::i;47065:124::-;-1:-1:-1;;;;;47235:18:0;;;;;;:13;:18;;;;;;47227:35;;47255:6;47227:7;:35::i;:::-;47201:61;;-1:-1:-1;47201:61:0;-1:-1:-1;47288:18:0;47277:7;:29;;;;;;;;;47273:122;;47330:53;47335:16;47353:29;47330:4;:53::i;47273:122::-;-1:-1:-1;;;;;47528:18:0;;;;;;;:13;:18;;;;;;:33;;;47572:18;;;;;;:33;;;-1:-1:-1;;47678:29:0;;47674:109;;-1:-1:-1;;;;;47724:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;:47;;;47674:109;47854:3;-1:-1:-1;;;;;47840:26:0;47849:3;-1:-1:-1;;;;;47840:26:0;-1:-1:-1;;;;;;;;;;;47859:6:0;47840:26;;;;;;;;;;;;;;;;;;47879:11;;:59;;;-1:-1:-1;;;47879:59:0;;47914:4;47879:59;;;;-1:-1:-1;;;;;47879:59:0;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:26;;:59;;;;;:11;;:59;;;;;;;:11;;:59;;;5:2:-1;;;;30:1;27;20:12;5:2;47879:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;47963:14:0;;-1:-1:-1;47958:20:0;;-1:-1:-1;;47958:20:0;;47951:27;45770:2216;-1:-1:-1;;;;;;;;;;;45770:2216:0:o;80091:594::-;80193:4;108875:11;;80193:4;;108875:11;;108867:34;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;;;;108926:5;108912:19;;-1:-1:-1;;108912:19:0;;;80229:16;:14;:16::i;:::-;80216:29;-1:-1:-1;80260:29:0;;80256:260;;80433:67;80444:5;80438:12;;;;;;;;80452:47;80433:4;:67::i;:::-;80425:79;-1:-1:-1;80502:1:0;;-1:-1:-1;80425:79:0;;-1:-1:-1;80425:79:0;80256:260;80626:51;80643:10;80655:8;80665:11;80626:16;:51::i;:::-;80619:58;;;;;108942:1;108954:11;:18;;-1:-1:-1;;108954:18:0;108968:4;108954:18;;;80091:594;;;;-1:-1:-1;80091:594:0;-1:-1:-1;80091:594:0:o;12980:313::-;13057:9;13068:4;13086:13;13101:18;;:::i;:::-;13123:20;13133:1;13136:6;13123:9;:20::i;:::-;13085:58;;-1:-1:-1;13085:58:0;-1:-1:-1;13165:18:0;13158:3;:25;;;;;;;;;13154:73;;-1:-1:-1;13208:3:0;-1:-1:-1;13213:1:0;;-1:-1:-1;13200:15:0;;13154:73;13247:18;13267:17;13276:7;13267:8;:17::i;:::-;13239:46;;;;;;12980:313;;;;;;:::o;114616:169::-;114718:10;;114747:30;;;-1:-1:-1;;;114747:30:0;;114771:4;114747:30;;;;;;114663:4;;-1:-1:-1;;;;;114718:10:0;;;;114747:15;;:30;;;;;;;;;;;;;;;114718:10;114747:30;;;5:2:-1;;;;30:1;27;20:12;5:2;114747:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;114747:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;114747:30:0;;-1:-1:-1;;114616:169:0;:::o;99566:590::-;99643:4;108875:11;;;;108867:34;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;;;;108926:5;108912:19;;-1:-1:-1;;108912:19:0;;;99673:16;:14;:16::i;:::-;99660:29;-1:-1:-1;99704:29:0;;99700:274;;99895:67;99906:5;99900:12;;;;;;;;99914:47;99895:4;:67::i;99700:274::-;100097:28;100115:9;100097:17;:28::i;:::-;-1:-1:-1;100085:40:0;-1:-1:-1;;108954:11:0;:18;;-1:-1:-1;;108954:18:0;108968:4;108954:18;;;99566:590;;-1:-1:-1;99566:590:0:o;7500:153::-;7561:4;7583:33;7596:3;7591:9;;;;;;;;7607:4;7602:10;;;;;;;;7583:33;;;;;;;;;;;;;7614:1;7583:33;;;;;;;;;;;;;7641:3;7636:9;;;;;;;103230:1747;103441:5;;103297:4;;;;103441:5;;;-1:-1:-1;;;;;103441:5:0;103427:10;:19;103423:124;;103470:65;103475:18;103495:39;103470:4;:65::i;103423:124::-;103673:16;:14;:16::i;:::-;103651:18;;:38;103647:147;;103713:69;103718:22;103742:39;103713:4;:69::i;103647:147::-;103900:12;103883:14;:12;:14::i;:::-;:29;103879:152;;;103936:83;103941:29;103972:46;103936:4;:83::i;103879:152::-;104125:13;;104110:12;:28;104106:129;;;104162:61;104167:15;104184:38;104162:4;:61::i;104106:129::-;-1:-1:-1;104387:13:0;;:28;;;;104523:33;;;104515:82;;;;-1:-1:-1;;;104515:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104671:13;:32;;;104837:5;;104823:34;;104837:5;;;-1:-1:-1;;;;;104837:5:0;104844:12;104823:13;:34::i;:::-;104891:5;;104875:54;;;104891:5;;;;-1:-1:-1;;;;;104891:5:0;104875:54;;;;;;;;;;;;;;;;;;;;;;;;;104954:14;104949:20;;68656:537;68740:4;108875:11;;;;108867:34;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;;;;108926:5;108912:19;;-1:-1:-1;;108912:19:0;;;68770:16;:14;:16::i;:::-;68757:29;-1:-1:-1;68801:29:0;;68797:249;;68973:61;68984:5;68978:12;;;;;;;;68992:41;68973:4;:61::i;68797:249::-;69145:40;69157:10;69169:1;69172:12;69145:11;:40::i;54627:1268::-;-1:-1:-1;;;;;54976:23:0;;54704:9;54976:23;;;:14;:23;;;;;55205:24;;54704:9;;;;;;;;55201:92;;-1:-1:-1;55259:18:0;;-1:-1:-1;55259:18:0;;-1:-1:-1;55251:30:0;;-1:-1:-1;;;55251:30:0;55201:92;55520:46;55528:14;:24;;;55554:11;;55520:7;:46::i;:::-;55487:79;;-1:-1:-1;55487:79:0;-1:-1:-1;55592:18:0;55581:7;:29;;;;;;;;;55577:81;;-1:-1:-1;55635:7:0;;-1:-1:-1;55644:1:0;;-1:-1:-1;55627:19:0;;-1:-1:-1;;55627:19:0;55577:81;55690:58;55698:19;55719:14;:28;;;55690:7;:58::i;:::-;55670:78;;-1:-1:-1;55670:78:0;-1:-1:-1;55774:18:0;55763:7;:29;;;;;;;;;55759:81;;-1:-1:-1;55817:7:0;;-1:-1:-1;55826:1:0;;-1:-1:-1;55809:19:0;;-1:-1:-1;;55809:19:0;55759:81;-1:-1:-1;55860:18:0;;-1:-1:-1;55880:6:0;-1:-1:-1;;;54627:1268:0;;;;:::o;52234:93::-;52307:12;52234:93;:::o;106309:1299::-;106609:5;;106403:4;;;;106609:5;;;-1:-1:-1;;;;;106609:5:0;106595:10;:19;106591:132;;106638:73;106643:18;106663:47;106638:4;:73::i;106591:132::-;106849:16;:14;:16::i;:::-;106827:18;;:38;106823:155;;106889:77;106894:22;106918:47;106889:4;:77::i;106823:155::-;107072:17;;;;;;;;;-1:-1:-1;;;;;107072:17:0;107049:40;;107192:20;-1:-1:-1;;;;;107192:40:0;;:42;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;107192:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;107192:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;107192:42:0;107184:83;;;;;-1:-1:-1;;;107184:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;107344:17;:40;;-1:-1:-1;;;;;;107344:40:0;-1:-1:-1;;;;;107344:40:0;;;;;;;;;107490:70;;;;;;;;;;;;;;;;;;;;;;;;;;;107585:14;107580:20;;62965:547;63035:4;108875:11;;63035:4;;108875:11;;108867:34;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;;;;108926:5;108912:19;;-1:-1:-1;;108912:19:0;;;63071:16;:14;:16::i;:::-;63058:29;-1:-1:-1;63102:29:0;;63098:252;;63275:59;63286:5;63280:12;;;;;;;;63294:39;63275:4;:59::i;63098:252::-;63471:33;63481:10;63493;63471:9;:33::i;9397:236::-;9453:9;9464:4;9490:1;9485;:6;9481:145;;-1:-1:-1;9516:18:0;;-1:-1:-1;9536:5:0;;;9508:34;;9481:145;-1:-1:-1;9583:27:0;;-1:-1:-1;9612:1:0;9575:39;;12514:353;12583:9;12594:10;;:::i;:::-;12618:14;12634:19;12657:27;12665:1;:10;;;12677:6;12657:7;:27::i;:::-;12617:67;;-1:-1:-1;12617:67:0;-1:-1:-1;12707:18:0;12699:4;:26;;;;;;;;;12695:92;;-1:-1:-1;12756:18:0;;;;;;;;;-1:-1:-1;12756:18:0;;12750:4;;-1:-1:-1;12756:18:0;-1:-1:-1;12742:33:0;;12695:92;12827:31;;;;;;;;;;;;-1:-1:-1;;12827:31:0;;-1:-1:-1;12514:353:0;-1:-1:-1;;;;12514:353:0:o;7776:187::-;7861:4;7883:43;7896:3;7891:9;;;;;;;;7907:4;7902:10;;;;;;;;7883:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;7951:3;7946:9;;;;;;;9718:258;9774:9;;9811:5;;;9833:6;;;9829:140;;9864:18;;-1:-1:-1;9884:1:0;-1:-1:-1;9856:30:0;;9829:140;-1:-1:-1;9927:26:0;;-1:-1:-1;9955:1:0;;-1:-1:-1;9919:38:0;;13438:328;13535:9;13546:4;13564:13;13579:18;;:::i;:::-;13601:20;13611:1;13614:6;13601:9;:20::i;:::-;13563:58;;-1:-1:-1;13563:58:0;-1:-1:-1;13643:18:0;13636:3;:25;;;;;;;;;13632:73;;-1:-1:-1;13686:3:0;-1:-1:-1;13691:1:0;;-1:-1:-1;13678:15:0;;13632:73;13724:34;13732:17;13741:7;13732:8;:17::i;:::-;13751:6;13724:7;:34::i;:::-;13717:41;;;;;;13438:328;;;;;;;:::o;91944:2139::-;92135:11;;:87;;;-1:-1:-1;;;92135:87:0;;92168:4;92135:87;;;;-1:-1:-1;;;;;92135:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92062:4;;;;92135:11;;:24;;:87;;;;;;;;;;;;;;92062:4;92135:11;:87;;;5:2:-1;;;;30:1;27;20:12;5:2;92135:87:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;92135:87:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;92135:87:0;;-1:-1:-1;92237:12:0;;92233:151;;92273:99;92284:27;92313:49;92364:7;92273:10;:99::i;92233:151::-;92457:10;-1:-1:-1;;;;;92445:22:0;:8;-1:-1:-1;;;;;92445:22:0;;92441:146;;;92491:84;92496:26;92524:50;92491:4;:84::i;92441:146::-;-1:-1:-1;;;;;93011:23:0;;92599:17;93011:23;;;:13;:23;;;;;;92599:17;;;;93003:45;;93036:11;93003:7;:45::i;:::-;92972:76;;-1:-1:-1;92972:76:0;-1:-1:-1;93074:18:0;93063:7;:29;;;;;;;;;93059:166;;93116:97;93127:16;93145:52;93204:7;93199:13;;;;;;;93116:97;93109:104;;;;;;;;93059:166;-1:-1:-1;;;;;93278:25:0;;;;;;:13;:25;;;;;;93270:47;;93305:11;93270:7;:47::i;:::-;93237:80;;-1:-1:-1;93237:80:0;-1:-1:-1;93343:18:0;93332:7;:29;;;;;;;;;93328:166;;93385:97;93396:16;93414:52;93473:7;93468:13;;;;;;;93328:166;-1:-1:-1;;;;;93697:23:0;;;;;;;:13;:23;;;;;;;;:43;;;93751:25;;;;;;;;;;:47;;;93853:43;;;;;;;93751:25;;-1:-1:-1;;;;;;;;;;;93853:43:0;;;;;;;;;;93949:11;;:86;;;-1:-1:-1;;;93949:86:0;;93981:4;93949:86;;;;-1:-1:-1;;;;;93949:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:23;;:86;;;;;:11;;:86;;;;;;;:11;;:86;;;5:2:-1;;;;30:1;27;20:12;5:2;93949:86:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;94060:14:0;;-1:-1:-1;94055:20:0;;-1:-1:-1;;94055:20:0;;94048:27;91944:2139;-1:-1:-1;;;;;;;;;91944:2139:0:o;74948:524::-;75022:4;108875:11;;;;108867:34;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;;;;108926:5;108912:19;;-1:-1:-1;;108912:19:0;;;75052:16;:14;:16::i;:::-;75039:29;-1:-1:-1;75083:29:0;;75079:249;;75255:61;75266:5;75260:12;;;;;;;;75274:41;75255:4;:61::i;75079:249::-;75427:37;75439:10;75451:12;75427:11;:37::i;67749:527::-;67823:4;108875:11;;;;108867:34;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;;;;108926:5;108912:19;;-1:-1:-1;;108912:19:0;;;67853:16;:14;:16::i;:::-;67840:29;-1:-1:-1;67884:29:0;;67880:249;;68056:61;68067:5;68061:12;;;;;;;67880:249;68228:40;68240:10;68252:12;68266:1;68228:11;:40::i;85326:994::-;85460:4;108875:11;;85460:4;;108875:11;;108867:34;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;-1:-1:-1;;;108867:34:0;;;;;;;;;;;;;;;108926:5;108912:19;;-1:-1:-1;;108912:19:0;;;85496:16;:14;:16::i;:::-;85483:29;-1:-1:-1;85527:29:0;;85523:269;;85705:71;85716:5;85710:12;;;;;;;;85724:51;85705:4;:71::i;:::-;85697:83;-1:-1:-1;85778:1:0;;-1:-1:-1;85697:83:0;;-1:-1:-1;85697:83:0;85523:269;85812:16;-1:-1:-1;;;;;85812:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;85812:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;85812:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;85812:33:0;;-1:-1:-1;85860:29:0;;85856:273;;86038:75;86049:5;86043:12;;;;;;;;86057:55;86038:4;:75::i;85856:273::-;86239:73;86260:10;86272:8;86282:11;86295:16;86239:20;:73::i;:::-;86232:80;;;;;108942:1;108954:11;:18;;-1:-1:-1;;108954:18:0;108968:4;108954:18;;;85326:994;;;;-1:-1:-1;85326:994:0;-1:-1:-1;;85326:994:0:o;98337:973::-;98487:5;;98418:4;;98487:5;;;-1:-1:-1;;;;;98487:5:0;98473:10;:19;98469:127;;98516:68;98521:18;98541:42;98516:4;:68::i;98469:127::-;98703:16;:14;:16::i;:::-;98681:18;;:38;98677:150;;98743:72;98748:22;98772:42;98743:4;:72::i;98677:150::-;26703:4;98899:24;:51;98895:157;;;98974:66;98979:15;98996:43;98974:4;:66::i;98895:157::-;99096:21;;;99128:48;;;;99194:68;;;;;;;;;;;;;;;;;;;;;;;;;99287:14;99282:20;;81390:3409;81570:11;;:75;;;-1:-1:-1;;;81570:75:0;;81609:4;81570:75;;;;-1:-1:-1;;;;;81570:75:0;;;;;;;;;;;;;;;;;;;;;;81485:4;;;;;;81570:11;;;:30;;:75;;;;;;;;;;;;;;;81485:4;81570:11;:75;;;5:2:-1;;;;30:1;27;20:12;5:2;81570:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;81570:75:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;81570:75:0;;-1:-1:-1;81660:12:0;;81656:153;;81697:96;81708:27;81737:46;81785:7;81697:10;:96::i;:::-;81689:108;-1:-1:-1;81795:1:0;;-1:-1:-1;81689:108:0;;-1:-1:-1;81689:108:0;81656:153;81919:16;:14;:16::i;:::-;81897:18;;:38;81893:153;;81960:70;81965:22;81989:40;81960:4;:70::i;81893:153::-;82058:32;;:::i;:::-;-1:-1:-1;;;;;82204:24:0;;;;;;:14;:24;;;;;:38;;;82183:18;;;:59;82373:37;82219:8;82373:27;:37::i;:::-;82350:19;;;82335:75;;;82336:12;;;82335:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;82441:18:0;;-1:-1:-1;82425:4:0;:12;;;:34;;;;;;;;;82421:192;;82484:113;82495:16;82513:63;82583:4;:12;;;82578:18;;;;;;;82484:113;82476:125;-1:-1:-1;82599:1:0;;-1:-1:-1;82476:125:0;;-1:-1:-1;;82476:125:0;82421:192;-1:-1:-1;;82695:11:0;:23;82691:157;;;82754:19;;;;82735:16;;;:38;82691:157;;;82806:16;;;:30;;;82691:157;83446:37;83459:5;83466:4;:16;;;83446:12;:37::i;:::-;83421:22;;;:62;;;83793:19;;;;83785:52;;:7;:52::i;:::-;83759:22;;;83744:93;;;83745:12;;;83744:93;;;;;;;;;;;;;;;;;;;-1:-1:-1;83872:18:0;;-1:-1:-1;83856:4:0;:12;;;:34;;;;;;;;;83848:105;;;;-1:-1:-1;;;83848:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84005:45;84013:12;;84027:4;:22;;;84005:7;:45::i;:::-;83981:20;;;83966:84;;;83967:12;;;83966:84;;;;;;;;;;;;;;;;;;;-1:-1:-1;84085:18:0;;-1:-1:-1;84069:4:0;:12;;;:34;;;;;;;;;84061:96;;;;-1:-1:-1;;;84061:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84277:22;;;;;;-1:-1:-1;;;;;84240:24:0;;;;;;;:14;:24;;;;;;;;;:59;;;84351:11;;84310:38;;;;:52;;;;84388:20;;;;84373:12;:35;;;84498:22;;;;84522;;84469:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84620:11;;84682:22;;;;84706:18;;;;84620:105;;;-1:-1:-1;;;84620:105:0;;84658:4;84620:105;;;;-1:-1:-1;;;;;84620:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:29;;:105;;;;;:11;;:105;;;;;;;:11;;:105;;;5:2:-1;;;;30:1;27;20:12;5:2;84620:105:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;84751:14:0;;-1:-1:-1;84746:20:0;;-1:-1:-1;;84746:20:0;;84768:4;:22;;;84738:53;;;;;;81390:3409;;;;;;:::o;10045:271::-;10116:9;10127:4;10145:14;10161:8;10173:13;10181:1;10184;10173:7;:13::i;:::-;10144:42;;-1:-1:-1;10144:42:0;-1:-1:-1;10211:18:0;10203:4;:26;;;;;;;;;10199:75;;-1:-1:-1;10254:4:0;-1:-1:-1;10260:1:0;;-1:-1:-1;10246:16:0;;10199:75;10293:15;10301:3;10306:1;10293:7;:15::i;11273:515::-;11334:9;11345:10;;:::i;:::-;11369:14;11385:20;11409:22;11417:3;10826:4;11409:7;:22::i;:::-;11368:63;;-1:-1:-1;11368:63:0;-1:-1:-1;11454:18:0;11446:4;:26;;;;;;;;;11442:92;;-1:-1:-1;11503:18:0;;;;;;;;;-1:-1:-1;11503:18:0;;11497:4;;-1:-1:-1;11503:18:0;-1:-1:-1;11489:33:0;;11442:92;11547:14;11563:13;11580:31;11588:15;11605:5;11580:7;:31::i;:::-;11546:65;;-1:-1:-1;11546:65:0;-1:-1:-1;11634:18:0;11626:4;:26;;;;;;;;;11622:92;;-1:-1:-1;11683:18:0;;;;;;;;;-1:-1:-1;11683:18:0;;11677:4;;-1:-1:-1;11683:18:0;-1:-1:-1;11669:33:0;;-1:-1:-1;;11669:33:0;11622:92;11754:25;;;;;;;;;;;;-1:-1:-1;;11754:25:0;;-1:-1:-1;11273:515:0;-1:-1:-1;;;;;;11273:515:0:o;17793:213::-;17975:12;10826:4;17975:23;;;17793:213::o;100496:1631::-;100557:4;100563;100624:21;100656:20;100803:16;:14;:16::i;:::-;100781:18;;:38;100777:163;;100844:66;100849:22;100873:36;100844:4;:66::i;:::-;100836:92;-1:-1:-1;100912:15:0;-1:-1:-1;100836:92:0;;-1:-1:-1;100836:92:0;100777:163;101529:35;101542:10;101554:9;101529:12;:35::i;:::-;101511:53;;101612:15;101596:13;;:31;101577:50;;101702:13;;101682:16;:33;;101674:78;;;;;-1:-1:-1;;;101674:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101829:13;:32;;;101950:60;;;101964:10;101950:60;;;;;;;;;;;;;;;;;;;;;;;;;102086:14;102073:46;-1:-1:-1;102103:15:0;-1:-1:-1;;100496:1631:0;;;:::o;117450:904::-;117586:10;;117608:26;;;-1:-1:-1;;;117608:26:0;;-1:-1:-1;;;;;117608:26:0;;;;;;;;;;;;;;;117586:10;;;;;;;117608:14;;:26;;;;;117526:31;;117608:26;;;;;;;;117526:31;117586:10;117608:26;;;5:2:-1;;;;30:1;27;20:12;5:2;117608:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;117608:26:0;;;;117647:12;117701:16;117740:1;117735:152;;;;117910:2;117905:219;;;;118259:1;118256;118249:12;117735:152;-1:-1:-1;;117830:6:0;-1:-1:-1;117735:152:0;;117905:219;118007:2;118004:1;118001;117986:24;118049:1;118043:8;118032:19;;117694:586;;118309:7;118301:45;;;;;-1:-1:-1;;;118301:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;117450:904;;;;:::o;70082:4598::-;70189:4;70214:19;;;:42;;-1:-1:-1;70237:19:0;;70214:42;70206:107;;;;-1:-1:-1;;;70206:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70326:27;;:::i;:::-;70470:28;:26;:28::i;:::-;70441:25;;;70426:72;;;70427:12;;;70426:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;70529:18:0;;-1:-1:-1;70513:4:0;:12;;;:34;;;;;;;;;70509:168;;70571:94;70582:16;70600:44;70651:4;:12;;;70646:18;;;;;;;70571:94;70564:101;;;;;70509:168;70731:18;;70727:1290;;71007:17;;;:34;;;71112:42;;;;;;;;71127:25;;;;71112:42;;71094:77;;71027:14;71094:17;:77::i;:::-;71073:17;;;71058:113;;;71059:12;;;71058:113;;;;;;;;;;;;;;;;;;;-1:-1:-1;71206:18:0;;-1:-1:-1;71190:4:0;:12;;;:34;;;;;;;;;71186:185;;71252:103;71263:16;71281:53;71341:4;:12;;;71336:18;;;;;;;71186:185;70727:1290;;;71673:82;71696:14;71712:42;;;;;;;;71727:4;:25;;;71712:42;;;71673:22;:82::i;:::-;71652:17;;;71637:118;;;71638:12;;;71637:118;;;;;;;;;;;;;;;;;;;-1:-1:-1;71790:18:0;;-1:-1:-1;71774:4:0;:12;;;:34;;;;;;;;;71770:185;;71836:103;71847:16;71865:53;71925:4;:12;;;71920:18;;;;;;;71770:185;71971:17;;;:34;;;70727:1290;72086:11;;72137:17;;;;72086:69;;;-1:-1:-1;;;72086:69:0;;72120:4;72086:69;;;;-1:-1:-1;;;;;72086:69:0;;;;;;;;;;;;;;;;72071:12;;72086:11;;;;;:25;;:69;;;;;;;;;;;;;;;72071:12;72086:11;:69;;;5:2:-1;;;;30:1;27;20:12;5:2;72086:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;72086:69:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;72086:69:0;;-1:-1:-1;72170:12:0;;72166:142;;72206:90;72217:27;72246:40;72288:7;72206:10;:90::i;:::-;72199:97;;;;;;72166:142;72418:16;:14;:16::i;:::-;72396:18;;:38;72392:142;;72458:64;72463:22;72487:34;72458:4;:64::i;72392:142::-;72829:39;72837:11;;72850:4;:17;;;72829:7;:39::i;:::-;72806:19;;;72791:77;;;72792:12;;;72791:77;;;;;;;;;;;;;;;;;;;-1:-1:-1;72899:18:0;;-1:-1:-1;72883:4:0;:12;;;:34;;;;;;;;;72879:178;;72941:104;72952:16;72970:54;73031:4;:12;;;73026:18;;;;;;;72879:178;-1:-1:-1;;;;;73117:23:0;;;;;;:13;:23;;;;;;73142:17;;;;73109:51;;73117:23;73109:7;:51::i;:::-;73084:21;;;73069:91;;;73070:12;;;73069:91;;;;;;;;;;;;;;;;;;;-1:-1:-1;73191:18:0;;-1:-1:-1;73175:4:0;:12;;;:34;;;;;;;;;73171:181;;73233:107;73244:16;73262:57;73326:4;:12;;;73321:18;;;;;;;73171:181;73450:4;:17;;;73433:14;:12;:14::i;:::-;:34;73429:155;;;73491:81;73496:29;73527:44;73491:4;:81::i;73429:155::-;74080:42;74094:8;74104:4;:17;;;74080:13;:42::i;:::-;74215:19;;;;74201:11;:33;74271:21;;;;-1:-1:-1;;;;;74245:23:0;;;;;;:13;:23;;;;;;;;;:47;;;;74404:17;;;;74370:52;;;;;;;74397:4;;-1:-1:-1;;;;;;;;;;;74370:52:0;;;;;;;74455:17;;;;74474;;;;;74438:54;;;-1:-1:-1;;;;;74438:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74545:11;;74595:17;;;;74614;;;;74545:87;;;-1:-1:-1;;;74545:87:0;;74578:4;74545:87;;;;-1:-1:-1;;;;;74545:87:0;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:24;;:87;;;;;:11;;:87;;;;;;;:11;;:87;;;5:2:-1;;;;30:1;27;20:12;5:2;74545:87:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;74657:14:0;;-1:-1:-1;74652:20:0;;-1:-1:-1;;74652:20:0;;74645:27;70082:4598;-1:-1:-1;;;;;;70082:4598:0:o;8609:343::-;8665:9;;8697:6;8693:69;;-1:-1:-1;8728:18:0;;-1:-1:-1;8728:18:0;8720:30;;8693:69;8783:5;;;8787:1;8783;:5;:1;8805:5;;;;;:10;8801:144;;-1:-1:-1;8840:26:0;;-1:-1:-1;8868:1:0;;-1:-1:-1;8832:38:0;;8801:144;8911:18;;-1:-1:-1;8931:1:0;-1:-1:-1;8903:30:0;;9047:215;9103:9;;9135:6;9131:77;;-1:-1:-1;9166:26:0;;-1:-1:-1;9194:1:0;9158:38;;9131:77;9228:18;9252:1;9248;:5;;;;;;9220:34;;;;9047:215;;;;;:::o;64222:3176::-;64370:11;;:58;;;-1:-1:-1;;;64370:58:0;;64402:4;64370:58;;;;-1:-1:-1;;;;;64370:58:0;;;;;;;;;;;;;;;64292:4;;;;;;64370:11;;;:23;;:58;;;;;;;;;;;;;;;64292:4;64370:11;:58;;;5:2:-1;;;;30:1;27;20:12;5:2;64370:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;64370:58:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;64370:58:0;;-1:-1:-1;64443:12:0;;64439:145;;64480:88;64491:27;64520:38;64560:7;64480:10;:88::i;:::-;64472:100;-1:-1:-1;64570:1:0;;-1:-1:-1;64472:100:0;;-1:-1:-1;64472:100:0;64439:145;64694:16;:14;:16::i;:::-;64672:18;;:38;64668:145;;64735:62;64740:22;64764:32;64735:4;:62::i;64668:145::-;64825:25;;:::i;:::-;64907:28;:26;:28::i;:::-;64878:25;;;64863:72;;;64864:12;;;64863:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;64966:18:0;;-1:-1:-1;64950:4:0;:12;;;:34;;;;;;;;;64946:171;;65009:92;65020:16;65038:42;65087:4;:12;;;65082:18;;;;;;;65009:92;65001:104;-1:-1:-1;65103:1:0;;-1:-1:-1;65001:104:0;;-1:-1:-1;;65001:104:0;64946:171;65749:32;65762:6;65770:10;65749:12;:32::i;:::-;65725:21;;;:56;;;66054:42;;;;;;;;66069:25;;;;66054:42;;66008:89;;65725:56;66008:22;:89::i;:::-;65989:15;;;65974:123;;;65975:12;;;65974:123;;;;;;;;;;;;;;;;;;;-1:-1:-1;66132:18:0;;-1:-1:-1;66116:4:0;:12;;;:34;;;;;;;;;66108:79;;;;;-1:-1:-1;;;66108:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66491:37;66499:11;;66512:4;:15;;;66491:7;:37::i;:::-;66468:19;;;66453:75;;;66454:12;;;66453:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;66563:18:0;;-1:-1:-1;66547:4:0;:12;;;:34;;;;;;;;;66539:87;;;;-1:-1:-1;;;66539:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;66687:21:0;;;;;;:13;:21;;;;;;66710:15;;;;66679:47;;66687:21;66679:7;:47::i;:::-;66654:21;;;66639:87;;;66640:12;;;66639:87;;;;;;;;;;;;;;;;;;;-1:-1:-1;66761:18:0;;-1:-1:-1;66745:4:0;:12;;;:34;;;;;;;;;66737:90;;;;-1:-1:-1;;;66737:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66920:19;;;;66906:11;:33;66974:21;;;;-1:-1:-1;;;;;66950:21:0;;;;;;:13;:21;;;;;;;;;:45;;;;67084:21;;;;67107:15;;;;;67071:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67171:15;;;;67139:48;;;;;;;-1:-1:-1;;;;;67139:48:0;;;67156:4;;-1:-1:-1;;;;;;;;;;;67139:48:0;;;;;;;;67240:11;;67286:21;;;;67309:15;;;;67240:85;;;-1:-1:-1;;;67240:85:0;;67271:4;67240:85;;;;-1:-1:-1;;;;;67240:85:0;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:22;;:85;;;;;:11;;:85;;;;;;;:11;;:85;;;5:2:-1;;;;30:1;27;20:12;5:2;67240:85:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;67351:14:0;;-1:-1:-1;67346:20:0;;-1:-1:-1;;67346:20:0;;67368:4;:21;;;67338:52;;;;;;64222:3176;;;;;:::o;75899:3034::-;76057:11;;:64;;;-1:-1:-1;;;76057:64:0;;76091:4;76057:64;;;;-1:-1:-1;;;;;76057:64:0;;;;;;;;;;;;;;;75983:4;;;;76057:11;;:25;;:64;;;;;;;;;;;;;;75983:4;76057:11;:64;;;5:2:-1;;;;30:1;27;20:12;5:2;76057:64:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;76057:64:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;76057:64:0;;-1:-1:-1;76136:12:0;;76132:142;;76172:90;76183:27;76212:40;76254:7;76172:10;:90::i;:::-;76165:97;;;;;76132:142;76384:16;:14;:16::i;:::-;76362:18;;:38;76358:142;;76424:64;76429:22;76453:34;76424:4;:64::i;76358:142::-;76609:12;76592:14;:12;:14::i;:::-;:29;76588:143;;;76645:74;76650:29;76681:37;76645:4;:74::i;76588:143::-;76743:27;;:::i;:::-;77058:37;77086:8;77058:27;:37::i;:::-;77035:19;;;77020:75;;;77021:4;77020:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;77126:18:0;;-1:-1:-1;77110:12:0;;:34;;;;;;;;;77106:181;;77168:107;77179:16;77197:57;77261:4;:12;;;77256:18;;;;;;;77168:107;77161:114;;;;;;77106:181;77340:42;77348:4;:19;;;77369:12;77340:7;:42::i;:::-;77314:22;;;77299:83;;;77300:4;77299:83;;;;;;;;;;;;;;;;;;;-1:-1:-1;77413:18:0;;-1:-1:-1;77397:12:0;;:34;;;;;;;;;77393:188;;77455:114;77466:16;77484:64;77555:4;:12;;;77550:18;;;;;;;77393:188;77632:35;77640:12;;77654;77632:7;:35::i;:::-;77608:20;;;77593:74;;;77594:4;77593:74;;;;;;;;;;;;;;;;;;;-1:-1:-1;77698:18:0;;-1:-1:-1;77682:12:0;;:34;;;;;;;;;77678:179;;77740:105;77751:16;77769:55;77831:4;:12;;;77826:18;;;;;;;77678:179;78349:37;78363:8;78373:12;78349:13;:37::i;:::-;78506:22;;;;;;-1:-1:-1;;;;;78469:24:0;;;;;;:14;:24;;;;;;;;:59;;;78580:11;;78539:38;;;;:52;;;;78617:20;;;;;78602:12;:35;;;78724:22;;78693:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78822:11;;:63;;;-1:-1:-1;;;78822:63:0;;78855:4;78822:63;;;;-1:-1:-1;;;;;78822:63:0;;;;;;;;;;;;;;;:11;;;;;:24;;:63;;;;;:11;;:63;;;;;;;:11;;:63;;;5:2:-1;;;;30:1;27;20:12;5:2;78822:63:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;78910:14:0;;-1:-1:-1;78905:20:0;;-1:-1:-1;;78905:20:0;;78898:27;75899:3034;-1:-1:-1;;;;;75899:3034:0:o;86932:3582::-;87153:11;;:111;;;-1:-1:-1;;;87153:111:0;;87196:4;87153:111;;;;-1:-1:-1;;;;;87153:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87070:4;;;;;;87153:11;;;:34;;:111;;;;;;;;;;;;;;;87070:4;87153:11;:111;;;5:2:-1;;;;30:1;27;20:12;5:2;87153:111:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;87153:111:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;87153:111:0;;-1:-1:-1;87279:12:0;;87275:150;;87316:93;87327:27;87356:43;87401:7;87316:10;:93::i;:::-;87308:105;-1:-1:-1;87411:1:0;;-1:-1:-1;87308:105:0;;-1:-1:-1;87308:105:0;87275:150;87535:16;:14;:16::i;:::-;87513:18;;:38;87509:150;;87576:67;87581:22;87605:37;87576:4;:67::i;87509:150::-;87805:16;:14;:16::i;:::-;87764;-1:-1:-1;;;;;87764:35:0;;:37;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;87764:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;87764:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;87764:37:0;:57;87760:180;;87846:78;87851:22;87875:48;87846:4;:78::i;87760:180::-;88013:10;-1:-1:-1;;;;;88001:22:0;:8;-1:-1:-1;;;;;88001:22:0;;87997:145;;;88048:78;88053:26;88081:44;88048:4;:78::i;87997:145::-;88197:16;88193:147;;88238:86;88243:36;88281:42;88238:4;:86::i;88193:147::-;-1:-1:-1;;88396:11:0;:23;88392:158;;;88444:90;88449:36;88487:46;88444:4;:90::i;88392:158::-;88606:21;88629:22;88655:51;88672:10;88684:8;88694:11;88655:16;:51::i;:::-;88605:101;;-1:-1:-1;88605:101:0;-1:-1:-1;88721:40:0;;88717:163;;88786:78;88797:16;88791:23;;;;;;;;88816:47;88786:4;:78::i;:::-;88778:90;-1:-1:-1;88866:1:0;;-1:-1:-1;88778:90:0;;-1:-1:-1;;;88778:90:0;88717:163;89137:11;;:102;;;-1:-1:-1;;;89137:102:0;;89187:4;89137:102;;;;-1:-1:-1;;;;;89137:102:0;;;;;;;;;;;;;;;89094:21;;;;89137:11;;;:41;;:102;;;;;;;;;;;;:11;:102;;;5:2:-1;;;;30:1;27;20:12;5:2;89137:102:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;89137:102:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;89137:102:0;;;;;;;;;-1:-1:-1;89137:102:0;-1:-1:-1;89258:40:0;;89250:104;;;;-1:-1:-1;;;89250:104:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89488:11;89448:16;-1:-1:-1;;;;;89448:26:0;;89475:8;89448:36;;;;;;;;;;;;;-1:-1:-1;;;;;89448:36:0;-1:-1:-1;;;;;89448:36:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;89448:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;89448:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;89448:36:0;:51;;89440:88;;;;;-1:-1:-1;;;89440:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;89657:15;-1:-1:-1;;;;;89687:42:0;;89724:4;89687:42;89683:254;;;89759:63;89781:4;89788:10;89800:8;89810:11;89759:13;:63::i;:::-;89746:76;;89683:254;;;89868:57;;;-1:-1:-1;;;89868:57:0;;-1:-1:-1;;;;;89868:57:0;;;;;;;;;;;;;;;;;;;;;;:22;;;;;;:57;;;;;;;;;;;;;;;-1:-1:-1;89868:22:0;:57;;;5:2:-1;;;;30:1;27;20:12;5:2;89868:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;89868:57:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;89868:57:0;;-1:-1:-1;89683:254:0;90043:34;;90035:67;;;;;-1:-1:-1;;;90035:67:0;;;;;;;;;;;;-1:-1:-1;;;90035:67:0;;;;;;;;;;;;;;;90167:96;;;-1:-1:-1;;;;;90167:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90316:11;;:129;;;-1:-1:-1;;;90316:129:0;;90358:4;90316:129;;;;-1:-1:-1;;;;;90316:129:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:33;;:129;;;;;:11;;:129;;;;;;;:11;;:129;;;5:2:-1;;;;30:1;27;20:12;5:2;90316:129:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;90471:14:0;;-1:-1:-1;90466:20:0;;-1:-1:-1;;90466:20:0;;90458:48;-1:-1:-1;90488:17:0;;-1:-1:-1;;;;;;86932:3582:0;;;;;;;;:::o;115402:1344::-;115546:10;;115589:51;;;-1:-1:-1;;;115589:51:0;;115634:4;115589:51;;;;;;115469:4;;-1:-1:-1;;;;;115546:10:0;;115469:4;;115546:10;;115589:36;;:51;;;;;;;;;;;;;;115546:10;115589:51;;;5:2:-1;;;;30:1;27;20:12;5:2;115589:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;115589:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;115589:51:0;115651:47;;;-1:-1:-1;;;115651:47:0;;-1:-1:-1;;;;;115651:47:0;;;;;;;115684:4;115651:47;;;;;;;;;;;;115589:51;;-1:-1:-1;115651:18:0;;;;;;:47;;;;;-1:-1:-1;;115651:47:0;;;;;;;;-1:-1:-1;115651:18:0;:47;;;5:2:-1;;;;30:1;27;20:12;5:2;115651:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;115651:47:0;;;;115711:12;115765:16;115804:1;115799:153;;;;115975:2;115970:220;;;;116326:1;116323;116316:12;115799:153;-1:-1:-1;;115895:6:0;-1:-1:-1;115799:153:0;;115970:220;116073:2;116070:1;116067;116052:24;116115:1;116109:8;116098:19;;115758:589;;116376:7;116368:44;;;;;-1:-1:-1;;;116368:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;116525:10;;116510:51;;;-1:-1:-1;;;116510:51:0;;116555:4;116510:51;;;;;;116490:17;;-1:-1:-1;;;;;116525:10:0;;116510:36;;:51;;;;;;;;;;;;;;116525:10;116510:51;;;5:2:-1;;;;30:1;27;20:12;5:2;116510:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;116510:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;116510:51:0;;-1:-1:-1;116580:29:0;;;;116572:68;;;;;-1:-1:-1;;;116572:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;116658:28;;;;;115402:1344;-1:-1:-1;;;;;115402:1344:0:o;15028:337::-;15116:9;15127:4;15145:13;15160:19;;:::i;:::-;15183:31;15198:6;15206:7;14377:9;14388:10;;:::i;:::-;14695:14;14711;14729:25;10826:4;14747:6;14729:7;:25::i;:::-;14694:60;;-1:-1:-1;14694:60:0;-1:-1:-1;14777:18:0;14769:4;:26;;;;;;;;;14765:92;;-1:-1:-1;14826:18:0;;;;;;;;;-1:-1:-1;14826:18:0;;14820:4;;-1:-1:-1;14826:18:0;-1:-1:-1;14812:33:0;;14765:92;14874:35;14881:9;14892:7;:16;;;14874:6;:35::i;109244:9113::-;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;109244:9113:0;;;-1:-1:-1;109244:9113:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;109244:9113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;109244:9113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;109244:9113:0;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://1c83b7cc89e63644ea5a6effab8d9162fab13600efdc51906d528f2fd2158b3d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.