ETH Price: $2,951.02 (+0.11%)

Token

ERC20 ***

Overview

Max Total Supply

686.1105442 ERC20 ***

Holders

2,207

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
0.00000008 ERC20 ***

Value
$0.00
0xc415fc466633b3760db4bf0277b6c555a7313880
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
CEtherDelegator

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, BSD-3-Clause license
File 1 of 6 : CEtherDelegator.sol
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.10;

import "./CTokenInterfaces.sol";

/**
 * @title Lodestar's CEtherDelegator Contract
 * @notice CTokens which wrap native ETH and delegate to an implementation
 * @author Lodestar Finance
 */
contract CEtherDelegator is CTokenInterface, CEtherInterface, CDelegatorInterface {
    /**
     * @notice Construct a new money market
     * @param comptroller_ The address of the Comptroller
     * @param interestRateModel_ The address of the interest rate model
     * @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18
     * @param name_ ERC-20 name of this token
     * @param symbol_ ERC-20 symbol of this token
     * @param decimals_ ERC-20 decimal precision of this token
     * @param admin_ Address of the administrator of this token
     * @param implementation_ The address of the implementation the contract delegates to
     * @param becomeImplementationData The encoded args for becomeImplementation
     */
    constructor(
        ComptrollerInterface comptroller_,
        InterestRateModel interestRateModel_,
        uint initialExchangeRateMantissa_,
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        address payable admin_,
        address implementation_,
        bytes memory becomeImplementationData
    ) {
        // Creator of the contract is admin during initialization
        admin = payable(msg.sender);

        // First delegate gets to initialize the delegator (i.e. storage contract)
        delegateTo(
            implementation_,
            abi.encodeWithSignature(
                "initialize(address,address,uint256,string,string,uint8)",
                comptroller_,
                interestRateModel_,
                initialExchangeRateMantissa_,
                name_,
                symbol_,
                decimals_
            )
        );

        // New implementations always get set via the settor (post-initialize)
        _setImplementation(implementation_, false, becomeImplementationData);

        // Set the proper admin now that initialization is done
        admin = admin_;
    }

    /**
     * @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 override {
        require(msg.sender == admin, "CEtherDelegator::_setImplementation: Caller must be admin");

        if (allowResign) {
            delegateToImplementation(abi.encodeWithSignature("_resignImplementation()"));
        }

        address oldImplementation = implementation;
        implementation = implementation_;

        delegateToImplementation(abi.encodeWithSignature("_becomeImplementation(bytes)", becomeImplementationData));

        emit NewImplementation(oldImplementation, implementation);
    }

    /**
     * @notice Sender supplies assets into the market and receives cTokens in exchange
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     */
    function mint() external payable override {
        delegateToImplementation(abi.encodeWithSignature("mint()"));
    }

    /**
     * @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 override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("redeem(uint256)", redeemTokens));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Sender redeems cTokens in exchange for the underlying asset on behalf of a specified user
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param redeemTokens The number of cTokens to redeem into underlying
     * @param redeemee The user being redeemed on behalf of
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function redeemBehalf(uint redeemTokens, address redeemee) external override returns (uint) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("redeemBehalf(uint256,address)", redeemTokens, redeemee)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @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 override returns (uint) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("redeemUnderlying(uint256)", redeemAmount)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @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 override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("borrow(uint256)", borrowAmount));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Sender borrows assets from the protocol on behalf of another user
     * @param borrowAmount The amount of the underlying asset to borrow
     * @param borrowee the user to borrow for
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function borrowBehalf(uint borrowAmount, address borrowee) external override returns (uint) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("borrowBehalf(uint256,address)", borrowAmount, borrowee)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @notice Sender repays their own borrow
     */
    function repayBorrow() external payable override {
        delegateToImplementation(abi.encodeWithSignature("repayBorrow()"));
    }

    /**
     * @notice Sender repays a borrow belonging to borrower
     * @param borrower the account with the debt being payed off
     */
    function repayBorrowBehalf(address borrower) external payable override {
        delegateToImplementation(abi.encodeWithSignature("repayBorrowBehalf(address)", borrower));
    }

    /**
     * @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
     */
    function liquidateBorrow(address borrower, CTokenInterface cTokenCollateral) external payable override {
        delegateToImplementation(
            abi.encodeWithSignature("liquidateBorrow(address,address)", borrower, cTokenCollateral)
        );
    }

    /**
     * @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, uint amount) external override returns (bool) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("transfer(address,uint256)", dst, amount));
        return abi.decode(data, (bool));
    }

    /**
     * @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 override returns (bool) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("transferFrom(address,address,uint256)", src, dst, amount)
        );
        return abi.decode(data, (bool));
    }

    /**
     * @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 override returns (bool) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("approve(address,uint256)", spender, amount)
        );
        return abi.decode(data, (bool));
    }

    /**
     * @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 override returns (uint) {
        bytes memory data = delegateToViewImplementation(
            abi.encodeWithSignature("allowance(address,address)", owner, spender)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @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 override returns (uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("balanceOf(address)", owner));
        return abi.decode(data, (uint));
    }

    /**
     * @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 override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("balanceOfUnderlying(address)", owner));
        return abi.decode(data, (uint));
    }

    /**
     * @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 override returns (uint, uint, uint, uint) {
        bytes memory data = delegateToViewImplementation(
            abi.encodeWithSignature("getAccountSnapshot(address)", account)
        );
        return abi.decode(data, (uint, uint, uint, uint));
    }

    /**
     * @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 override returns (uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("borrowRatePerBlock()"));
        return abi.decode(data, (uint));
    }

    /**
     * @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 override returns (uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("supplyRatePerBlock()"));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Returns the current total borrows plus accrued interest
     * @return The total borrows with interest
     */
    function totalBorrowsCurrent() external override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("totalBorrowsCurrent()"));
        return abi.decode(data, (uint));
    }

    /**
     * @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 override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("borrowBalanceCurrent(address)", account));
        return abi.decode(data, (uint));
    }

    /**
     * @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 override returns (uint) {
        bytes memory data = delegateToViewImplementation(
            abi.encodeWithSignature("borrowBalanceStored(address)", account)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @notice Accrue interest then return the up-to-date exchange rate
     * @return Calculated exchange rate scaled by 1e18
     */
    function exchangeRateCurrent() public override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("exchangeRateCurrent()"));
        return abi.decode(data, (uint));
    }

    /**
     * @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 override returns (uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("exchangeRateStored()"));
        return abi.decode(data, (uint));
    }

    /**
     * @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 override returns (uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("getCash()"));
        return abi.decode(data, (uint));
    }

    /**
     * @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 override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("accrueInterest()"));
        return abi.decode(data, (uint));
    }

    /**
     * @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 override returns (uint) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("seize(address,address,uint256)", liquidator, borrower, seizeTokens)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @notice A public function to sweep accidental ERC-20 transfers to this contract. Tokens are sent to admin (timelock)
     * @param token The address of the ERC-20 token to sweep
     */
    function sweepToken(EIP20NonStandardInterface token) external override {
        delegateToImplementation(abi.encodeWithSignature("sweepToken(address)", token));
    }

    /*** 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 override returns (uint) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("_setPendingAdmin(address)", newPendingAdmin)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @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 override returns (uint) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("_setComptroller(address)", newComptroller)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @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 _setReserveGuardian(address payable newReserveGuardian) external override returns (uint) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("_setReserveGuardian(address)", newReserveGuardian)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @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 override returns (uint) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("_setReserveFactor(uint256)", newReserveFactorMantissa)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @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 override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("_acceptAdmin()"));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Accrues interest and adds reserves by transferring from admin
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _addReserves() external payable override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("_addReserves()"));
        return abi.decode(data, (uint));
    }

    /**
     * @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 override returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("_reduceReserves(uint256)", reduceAmount));
        return abi.decode(data, (uint));
    }

    /**
     * @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 override returns (uint) {
        bytes memory data = delegateToImplementation(
            abi.encodeWithSignature("_setInterestRateModel(address)", newInterestRateModel)
        );
        return abi.decode(data, (uint));
    }

    /**
     * @notice Internal method to delegate execution to another contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     * @param callee The contract to delegatecall
     * @param data The raw data to delegatecall
     * @return The returned bytes from the delegatecall
     */
    function delegateTo(address callee, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returnData) = callee.delegatecall(data);
        assembly {
            if eq(success, 0) {
                revert(add(returnData, 0x20), returndatasize())
            }
        }
        return returnData;
    }

    /**
     * @notice Delegates execution to the implementation contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     * @param data The raw data to delegatecall
     * @return The returned bytes from the delegatecall
     */
    function delegateToImplementation(bytes memory data) public returns (bytes memory) {
        return delegateTo(implementation, data);
    }

    /**
     * @notice Delegates execution to an implementation contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     *  There are an additional 2 prefix uints from the wrapper returndata, which we ignore since we make an extra hop.
     * @param data The raw data to delegatecall
     * @return The returned bytes from the delegatecall
     */
    function delegateToViewImplementation(bytes memory data) public view returns (bytes memory) {
        (bool success, bytes memory returnData) = address(this).staticcall(
            abi.encodeWithSignature("delegateToImplementation(bytes)", data)
        );
        assembly {
            if eq(success, 0) {
                revert(add(returnData, 0x20), returndatasize())
            }
        }
        return abi.decode(returnData, (bytes));
    }

    /**
     * @notice Delegates execution to an implementation contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     */
    fallback() external payable {
        require(msg.value == 0, "CEtherDelegator:fallback: cannot send value to fallback");

        // delegate all other functions to current implementation
        (bool success, ) = implementation.delegatecall(msg.data);

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

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

    /**
     * @notice Send Ether to CEther to mint
     */
    receive() external payable {
        delegateToImplementation(abi.encodeWithSignature("mint()"));
    }
}

File 2 of 6 : CTokenInterfaces.sol
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.10;

import "./ComptrollerInterface.sol";
import "./InterestRateModel.sol";
import "./EIP20NonStandardInterface.sol";
import "./ErrorReporter.sol";

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;

    // Maximum borrow rate that can ever be applied (.0005% / block)
    uint internal constant borrowRateMaxMantissa = 0.0005e16;

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

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

    // Official record of token balances for each account
    mapping(address => uint) internal accountTokens;

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

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

    /**
     * @notice Share of seized collateral that is added to reserves
     */
    uint public constant protocolSeizeShareMantissa = 2.8e16; //2.8%

    /**
     * @notice Address that is allowed to pull from reserves for staking (rewardRouter)
     */
    address payable public reserveGuardian;
}

abstract 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, uint borrowIndex);

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

    /**
     * @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 reserveGuardian is changed
     */
    event NewReserveGuardian(address oldReserveGuardian, address newReserveGuardian);

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

    /*** User Interface ***/

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

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

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

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

    function balanceOf(address owner) external view virtual returns (uint);

    function balanceOfUnderlying(address owner) external virtual returns (uint);

    function getAccountSnapshot(address account) external view virtual returns (uint, uint, uint, uint);

    function borrowRatePerBlock() external view virtual returns (uint);

    function supplyRatePerBlock() external view virtual returns (uint);

    function totalBorrowsCurrent() external virtual returns (uint);

    function borrowBalanceCurrent(address account) external virtual returns (uint);

    function borrowBalanceStored(address account) external view virtual returns (uint);

    function exchangeRateCurrent() external virtual returns (uint);

    function exchangeRateStored() external view virtual returns (uint);

    function getCash() external view virtual returns (uint);

    function accrueInterest() external virtual returns (uint);

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

    /*** Admin Functions ***/

    function _setPendingAdmin(address payable newPendingAdmin) external virtual returns (uint);

    function _acceptAdmin() external virtual returns (uint);

    function _setComptroller(ComptrollerInterface newComptroller) external virtual returns (uint);

    function _setReserveGuardian(address payable NewReserveGuardian) external virtual returns (uint);

    function _setReserveFactor(uint newReserveFactorMantissa) external virtual returns (uint);

    function _reduceReserves(uint reduceAmount) external virtual returns (uint);

    function _setInterestRateModel(InterestRateModel newInterestRateModel) external virtual returns (uint);
}

contract CErc20Storage {
    /**
     * @notice Underlying asset for this CToken
     */
    address public underlying;
}

abstract contract CErc20Interface is CErc20Storage {
    /*** User Interface ***/

    function mint(uint mintAmount) external virtual returns (uint);

    function redeem(uint redeemTokens) external virtual returns (uint);

    function redeemBehalf(uint redeemTokens, address redeemee) external virtual returns (uint);

    function redeemUnderlying(uint redeemAmount) external virtual returns (uint);

    function borrow(uint borrowAmount) external virtual returns (uint);

    function borrowBehalf(uint borrowAmount, address borrowee) external virtual returns (uint);

    function repayBorrow(uint repayAmount) external virtual returns (uint);

    function repayBorrowBehalf(address borrower, uint repayAmount) external virtual returns (uint);

    function liquidateBorrow(
        address borrower,
        uint repayAmount,
        CTokenInterface cTokenCollateral
    ) external virtual returns (uint);

    function sweepToken(EIP20NonStandardInterface token) external virtual;

    /*** Admin Functions ***/

    function _addReserves(uint addAmount) external virtual returns (uint);
}

abstract contract CEtherInterface {
    /*** User Interface ***/

    function mint() external payable virtual;

    function redeem(uint redeemTokens) external virtual returns (uint);

    function redeemBehalf(uint redeemTokens, address redeemee) external virtual returns (uint);

    function redeemUnderlying(uint redeemAmount) external virtual returns (uint);

    function borrow(uint borrowAmount) external virtual returns (uint);

    function borrowBehalf(uint borrowAmount, address borrowee) external virtual returns (uint);

    function repayBorrow() external payable virtual;

    function repayBorrowBehalf(address borrower) external payable virtual;

    function liquidateBorrow(address borrower, CTokenInterface cTokenCollateral) external payable virtual;

    function sweepToken(EIP20NonStandardInterface token) external virtual;

    /*** Admin Functions ***/

    function _addReserves() external payable virtual returns (uint);
}

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

abstract 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
    ) external virtual;
}

abstract 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) external virtual;

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

// SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.10;

abstract 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 virtual returns (uint[] memory);

    function exitMarket(address cToken) external virtual returns (uint);

    /*** Policy Hooks ***/

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

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

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

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

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

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

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

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

    function enableLooping(bool state) external virtual returns (bool);

    function isLoopingEnabled(address user) external view virtual returns (bool);

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.10;

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

// SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.10;

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 {
    uint public constant NO_ERROR = 0; // support legacy return codes

    error TransferComptrollerRejection(uint256 errorCode);
    error TransferNotAllowed();
    error TransferNotEnough();
    error TransferTooMuch();

    error MintComptrollerRejection(uint256 errorCode);
    error MintFreshnessCheck();

    error RedeemComptrollerRejection(uint256 errorCode);
    error RedeemFreshnessCheck();
    error RedeemTransferOutNotPossible();

    error BorrowComptrollerRejection(uint256 errorCode);
    error BorrowFreshnessCheck();
    error BorrowCashNotAvailable();

    error RepayBorrowComptrollerRejection(uint256 errorCode);
    error RepayBorrowFreshnessCheck();

    error LiquidateComptrollerRejection(uint256 errorCode);
    error LiquidateFreshnessCheck();
    error LiquidateCollateralFreshnessCheck();
    error LiquidateAccrueBorrowInterestFailed(uint256 errorCode);
    error LiquidateAccrueCollateralInterestFailed(uint256 errorCode);
    error LiquidateLiquidatorIsBorrower();
    error LiquidateCloseAmountIsZero();
    error LiquidateCloseAmountIsUintMax();
    error LiquidateRepayBorrowFreshFailed(uint256 errorCode);

    error LiquidateSeizeComptrollerRejection(uint256 errorCode);
    error LiquidateSeizeLiquidatorIsBorrower();

    error AcceptAdminPendingAdminCheck();

    error SetComptrollerOwnerCheck();
    error SetPendingAdminOwnerCheck();

    error SetReserveFactorAdminCheck();
    error SetReserveFactorFreshCheck();
    error SetReserveFactorBoundsCheck();

    error AddReservesFactorFreshCheck(uint256 actualAddAmount);

    error ReduceReservesAdminCheck();
    error ReduceReservesGuardianCheck();
    error ReduceReservesFreshCheck();
    error ReduceReservesCashNotAvailable();
    error ReduceReservesCashValidation();

    error SetInterestRateModelOwnerCheck();
    error SetInterestRateModelFreshCheck();
}

// SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.10;

/**
  * @title Compound's InterestRateModel Interface
  * @author Compound
  */
abstract 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) virtual 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) virtual external view returns (uint);
}

Settings
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"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"},{"internalType":"address payable","name":"admin_","type":"address"},{"internalType":"address","name":"implementation_","type":"address"},{"internalType":"bytes","name":"becomeImplementationData","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"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"},{"indexed":false,"internalType":"uint256","name":"borrowIndex","type":"uint256"}],"name":"Borrow","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":"address","name":"oldImplementation","type":"address"},{"indexed":false,"internalType":"address","name":"newImplementation","type":"address"}],"name":"NewImplementation","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":"oldReserveGuardian","type":"address"},{"indexed":false,"internalType":"address","name":"newReserveGuardian","type":"address"}],"name":"NewReserveGuardian","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"},{"indexed":false,"internalType":"uint256","name":"borrowIndex","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"_acceptAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_addReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reduceAmount","type":"uint256"}],"name":"_reduceReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ComptrollerInterface","name":"newComptroller","type":"address"}],"name":"_setComptroller","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"implementation_","type":"address"},{"internalType":"bool","name":"allowResign","type":"bool"},{"internalType":"bytes","name":"becomeImplementationData","type":"bytes"}],"name":"_setImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract InterestRateModel","name":"newInterestRateModel","type":"address"}],"name":"_setInterestRateModel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newPendingAdmin","type":"address"}],"name":"_setPendingAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newReserveFactorMantissa","type":"uint256"}],"name":"_setReserveFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newReserveGuardian","type":"address"}],"name":"_setReserveGuardian","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"accrualBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accrueInterest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"borrowAmount","type":"uint256"}],"name":"borrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"borrowBalanceCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"borrowBalanceStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"borrowAmount","type":"uint256"},{"internalType":"address","name":"borrowee","type":"address"}],"name":"borrowBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"borrowIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"borrowRatePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"comptroller","outputs":[{"internalType":"contract ComptrollerInterface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"delegateToImplementation","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"delegateToViewImplementation","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"exchangeRateCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exchangeRateStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"interestRateModel","outputs":[{"internalType":"contract InterestRateModel","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"contract CTokenInterface","name":"cTokenCollateral","type":"address"}],"name":"liquidateBorrow","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingAdmin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolSeizeShareMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"redeemTokens","type":"uint256"},{"internalType":"address","name":"redeemee","type":"address"}],"name":"redeemBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"redeemUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"repayBorrow","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"repayBorrowBehalf","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"reserveFactorMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserveGuardian","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyRatePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract EIP20NonStandardInterface","name":"token","type":"address"}],"name":"sweepToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBorrows","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBorrowsCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b50604051620022f9380380620022f9833981016040819052620000349162000417565b60038054610100600160a81b0319163361010002179055604051620000a39083906200006f908c908c908c908c908c908c906024016200053f565b60408051601f198184030181529190526020810180516001600160e01b03908116632676306d60e21b17909152620000e716565b50620000b28260008362000166565b5050600380546001600160a01b0390921661010002610100600160a81b031990921691909117905550620005d9945050505050565b6060600080846001600160a01b0316846040516200010691906200059f565b600060405180830381855af49150503d806000811462000143576040519150601f19603f3d011682016040523d82523d6000602084013e62000148565b606091505b509150915060008214156200015e573d60208201fd5b949350505050565b60035461010090046001600160a01b03163314620001f05760405162461bcd60e51b815260206004820152603960248201527f43457468657244656c656761746f723a3a5f736574496d706c656d656e74617460448201527f696f6e3a2043616c6c6572206d7573742062652061646d696e00000000000000606482015260840160405180910390fd5b811562000232576040805160048152602481019091526020810180516001600160e01b0390811663153ab50560e01b17909152620002309190620002ed16565b505b601280546001600160a01b038581166001600160a01b03198316179092556040519116906200029f906200026b908490602401620005bd565b60408051601f198184030181529190526020810180516001600160e01b03908116630adccee560e31b17909152620002ed16565b50601254604080516001600160a01b03808516825290921660208301527fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a910160405180910390a150505050565b60125460609062000308906001600160a01b031683620000e7565b92915050565b80516001600160a01b03811681146200032657600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b838110156200035e57818101518382015260200162000344565b838111156200036e576000848401525b50505050565b600082601f8301126200038657600080fd5b81516001600160401b0380821115620003a357620003a36200032b565b604051601f8301601f19908116603f01168101908282118183101715620003ce57620003ce6200032b565b81604052838152866020858801011115620003e857600080fd5b620003fb84602083016020890162000341565b9695505050505050565b805160ff811681146200032657600080fd5b60008060008060008060008060006101208a8c0312156200043757600080fd5b620004428a6200030e565b98506200045260208b016200030e565b60408b015160608c015191995097506001600160401b03808211156200047757600080fd5b620004858d838e0162000374565b975060808c01519150808211156200049c57600080fd5b620004aa8d838e0162000374565b9650620004ba60a08d0162000405565b9550620004ca60c08d016200030e565b9450620004da60e08d016200030e565b93506101008c0151915080821115620004f257600080fd5b50620005018c828d0162000374565b9150509295985092959850929598565b600081518084526200052b81602086016020860162000341565b601f01601f19169290920160200192915050565b6001600160a01b038781168252861660208201526040810185905260c060608201819052600090620005749083018662000511565b828103608084015262000588818662000511565b91505060ff831660a0830152979650505050505050565b60008251620005b381846020870162000341565b9190910192915050565b602081526000620005d2602083018462000511565b9392505050565b611d1080620005e96000396000f3fe6080604052600436106103545760003560e01c806373acee98116101c6578063c39b127f116100f7578063f2b3abbd11610095578063f8f9da281161006f578063f8f9da2814610a73578063fca7820b14610a88578063fcb6414714610aa8578063fe9c44ae14610ab05761038e565b8063f2b3abbd14610a0e578063f3fdb15a14610a2e578063f851a44014610a4e5761038e565b8063dd62ed3e116100d1578063dd62ed3e146109a6578063de3c77eb146109c6578063e5974619146109e6578063e9c714f2146109f95761038e565b8063c39b127f14610946578063c5ebeaec14610966578063db006a75146109865761038e565b8063aa5af0fd11610164578063b2a02ff11161013e578063b2a02ff1146108b1578063b71d1a0c146108d1578063bd6d894d146108f1578063c37f68e2146109065761038e565b8063aa5af0fd14610873578063aae40a2a14610889578063ae9d70b01461089c5761038e565b806395d89b41116101a057806395d89b411461080957806395dd91931461081e578063a6afed951461083e578063a9059cbb146108535761038e565b806373acee98146107be578063852a12e3146107d35780638f840ddd146107f35761038e565b80633af9e669116102a05780635c60da1b1161023e57806360a7cf201161021857806360a7cf201461074d5780636752e7021461076d5780636c540baf1461078857806370a082311461079e5761038e565b80635c60da1b146106ed5780635fe3b5671461070d578063601a0bf11461072d5761038e565b80634576b5db1161027a5780634576b5db1461068f57806347bd3718146106af5780634e4d9fea146106c5578063555bcc40146106cd5761038e565b80633af9e6691461063a5780633b1d21a21461065a5780634487152f1461066f5761038e565b806317bfdfbc1161030d5780631be19560116102e75780631be19560146105ae57806323b872dd146105ce57806326782247146105ee578063313ce5671461060e5761038e565b806317bfdfbc1461056357806318160ddd14610583578063182df0f5146105995761038e565b806306fdde03146104825780630933c1ed146104ad578063095ea7b3146104cd5780630d983cc6146104fd5780631249c58b14610535578063173b99041461053f5761038e565b3661038e576040805160048152602481019091526020810180516001600160e01b0316631249c58b60e01b17905261038b90610ac5565b50005b34156104075760405162461bcd60e51b815260206004820152603760248201527f43457468657244656c656761746f723a66616c6c6261636b3a2063616e6e6f7460448201527f2073656e642076616c756520746f2066616c6c6261636b00000000000000000060648201526084015b60405180910390fd5b6012546040516000916001600160a01b03169061042790839036906118aa565b600060405180830381855af49150503d8060008114610462576040519150601f19603f3d011682016040523d82523d6000602084013e610467565b606091505b505090506040513d6000823e81801561047e573d82f35b3d82fd5b34801561048e57600080fd5b50610497610ae4565b6040516104a49190611916565b60405180910390f35b3480156104b957600080fd5b506104976104c83660046119ee565b610ac5565b3480156104d957600080fd5b506104ed6104e8366004611a38565b610b72565b60405190151581526020016104a4565b34801561050957600080fd5b5060115461051d906001600160a01b031681565b6040516001600160a01b0390911681526020016104a4565b61053d610be4565b005b34801561054b57600080fd5b5061055560085481565b6040519081526020016104a4565b34801561056f57600080fd5b5061055561057e366004611a64565b610c19565b34801561058f57600080fd5b50610555600d5481565b3480156105a557600080fd5b50610555610c83565b3480156105ba57600080fd5b5061053d6105c9366004611a64565b610cd6565b3480156105da57600080fd5b506104ed6105e9366004611a81565b610d21565b3480156105fa57600080fd5b5060045461051d906001600160a01b031681565b34801561061a57600080fd5b506003546106289060ff1681565b60405160ff90911681526020016104a4565b34801561064657600080fd5b50610555610655366004611a64565b610d9c565b34801561066657600080fd5b50610555610de9565b34801561067b57600080fd5b5061049761068a3660046119ee565b610e1c565b34801561069b57600080fd5b506105556106aa366004611a64565b610eda565b3480156106bb57600080fd5b50610555600b5481565b61053d610f27565b3480156106d957600080fd5b5061053d6106e8366004611ad0565b610f59565b3480156106f957600080fd5b5060125461051d906001600160a01b031681565b34801561071957600080fd5b5060055461051d906001600160a01b031681565b34801561073957600080fd5b50610555610748366004611b32565b6110cb565b34801561075957600080fd5b50610555610768366004611b4b565b611113565b34801561077957600080fd5b50610555666379da05b6000081565b34801561079457600080fd5b5061055560095481565b3480156107aa57600080fd5b506105556107b9366004611a64565b61117d565b3480156107ca57600080fd5b506105556111ca565b3480156107df57600080fd5b506105556107ee366004611b32565b611201565b3480156107ff57600080fd5b50610555600c5481565b34801561081557600080fd5b50610497611249565b34801561082a57600080fd5b50610555610839366004611a64565b611256565b34801561084a57600080fd5b506105556112a3565b34801561085f57600080fd5b506104ed61086e366004611a38565b6112da565b34801561087f57600080fd5b50610555600a5481565b61053d610897366004611b7b565b61132e565b3480156108a857600080fd5b50610555611383565b3480156108bd57600080fd5b506105556108cc366004611a81565b6113ba565b3480156108dd57600080fd5b506105556108ec366004611a64565b61142c565b3480156108fd57600080fd5b50610555611479565b34801561091257600080fd5b50610926610921366004611a64565b6114b0565b6040805194855260208501939093529183015260608201526080016104a4565b34801561095257600080fd5b50610555610961366004611a64565b611530565b34801561097257600080fd5b50610555610981366004611b32565b61157d565b34801561099257600080fd5b506105556109a1366004611b32565b6115c5565b3480156109b257600080fd5b506105556109c1366004611b7b565b61160d565b3480156109d257600080fd5b506105556109e1366004611b4b565b611662565b61053d6109f4366004611a64565b6116b6565b348015610a0557600080fd5b506105556116fe565b348015610a1a57600080fd5b50610555610a29366004611a64565b611735565b348015610a3a57600080fd5b5060065461051d906001600160a01b031681565b348015610a5a57600080fd5b5060035461051d9061010090046001600160a01b031681565b348015610a7f57600080fd5b50610555611782565b348015610a9457600080fd5b50610555610aa3366004611b32565b6117b9565b610555611801565b348015610abc57600080fd5b506104ed600181565b601254606090610ade906001600160a01b031683611838565b92915050565b60018054610af190611ba9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1d90611ba9565b8015610b6a5780601f10610b3f57610100808354040283529160200191610b6a565b820191906000526020600020905b815481529060010190602001808311610b4d57829003601f168201915b505050505081565b6040516001600160a01b0383166024820152604481018290526000908190610bc69060640160408051601f198184030181529190526020810180516001600160e01b031663095ea7b360e01b179052610ac5565b905080806020019051810190610bdc9190611be4565b949350505050565b6040805160048152602481019091526020810180516001600160e01b0316631249c58b60e01b179052610c1690610ac5565b50565b6040516001600160a01b03821660248201526000908190610c669060440160408051601f198184030181529190526020810180516001600160e01b03166305eff7ef60e21b179052610ac5565b905080806020019051810190610c7c9190611c01565b9392505050565b6040805160048152602481019091526020810180516001600160e01b031663182df0f560e01b1790526000908190610cba90610e1c565b905080806020019051810190610cd09190611c01565b91505090565b6040516001600160a01b0382166024820152610d1d9060440160408051601f198184030181529190526020810180516001600160e01b031662df0cab60e51b179052610ac5565b5050565b6040516001600160a01b03808516602483015283166044820152606481018290526000908190610d7d9060840160408051601f198184030181529190526020810180516001600160e01b03166323b872dd60e01b179052610ac5565b905080806020019051810190610d939190611be4565b95945050505050565b6040516001600160a01b03821660248201526000908190610c669060440160408051601f198184030181529190526020810180516001600160e01b0316633af9e66960e01b179052610ac5565b6040805160048152602481019091526020810180516001600160e01b0316631d8e90d160e11b1790526000908190610cba905b6060600080306001600160a01b031684604051602401610e3c9190611916565b60408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b17905251610e719190611c1a565b600060405180830381855afa9150503d8060008114610eac576040519150601f19603f3d011682016040523d82523d6000602084013e610eb1565b606091505b50915091506000821415610ec6573d60208201fd5b80806020019051810190610bdc9190611c36565b6040516001600160a01b03821660248201526000908190610c669060440160408051601f198184030181529190526020810180516001600160e01b0316634576b5db60e01b179052610ac5565b6040805160048152602481019091526020810180516001600160e01b0316632726cff560e11b179052610c1690610ac5565b60035461010090046001600160a01b03163314610fde5760405162461bcd60e51b815260206004820152603960248201527f43457468657244656c656761746f723a3a5f736574496d706c656d656e74617460448201527f696f6e3a2043616c6c6572206d7573742062652061646d696e0000000000000060648201526084016103fe565b8115611018576040805160048152602481019091526020810180516001600160e01b031663153ab50560e01b17905261101690610ac5565b505b601280546001600160a01b038581166001600160a01b031983161790925560405191169061107d9061104e908490602401611916565b60408051601f198184030181529190526020810180516001600160e01b0316630adccee560e31b179052610ac5565b50601254604080516001600160a01b03808516825290921660208301527fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a910160405180910390a150505050565b600080610c66836040516024016110e491815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663601a0bf160e01b179052610ac5565b604051602481018390526001600160a01b038216604482015260009081906111679060640160408051601f198184030181529190526020810180516001600160e01b03166303053e7960e51b179052610ac5565b905080806020019051810190610bdc9190611c01565b6040516001600160a01b03821660248201526000908190610c669060440160408051601f198184030181529190526020810180516001600160e01b03166370a0823160e01b179052610e1c565b6040805160048152602481019091526020810180516001600160e01b0316630e759dd360e31b1790526000908190610cba90610ac5565b600080610c668360405160240161121a91815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663852a12e360e01b179052610ac5565b60028054610af190611ba9565b6040516001600160a01b03821660248201526000908190610c669060440160408051601f198184030181529190526020810180516001600160e01b03166395dd919360e01b179052610e1c565b6040805160048152602481019091526020810180516001600160e01b031663a6afed9560e01b1790526000908190610cba90610ac5565b6040516001600160a01b0383166024820152604481018290526000908190610bc69060640160408051601f198184030181529190526020810180516001600160e01b031663a9059cbb60e01b179052610ac5565b6040516001600160a01b0380841660248301528216604482015261137e9060640160408051601f198184030181529190526020810180516001600160e01b0316635572051560e11b179052610ac5565b505050565b6040805160048152602481019091526020810180516001600160e01b0316630ae9d70b60e41b1790526000908190610cba90610e1c565b6040516001600160a01b038085166024830152831660448201526064810182905260009081906114169060840160408051601f198184030181529190526020810180516001600160e01b031663b2a02ff160e01b179052610ac5565b905080806020019051810190610d939190611c01565b6040516001600160a01b03821660248201526000908190610c669060440160408051601f198184030181529190526020810180516001600160e01b0316632dc7468360e21b179052610ac5565b6040805160048152602481019091526020810180516001600160e01b031663bd6d894d60e01b1790526000908190610cba90610ac5565b600080600080600061150a866040516024016114db91906001600160a01b0391909116815260200190565b60408051601f198184030181529190526020810180516001600160e01b03166361bfb47160e11b179052610e1c565b9050808060200190518101906115209190611ca4565b9450945094509450509193509193565b6040516001600160a01b03821660248201526000908190610c669060440160408051601f198184030181529190526020810180516001600160e01b031663c39b127f60e01b179052610ac5565b600080610c668360405160240161159691815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663317afabb60e21b179052610ac5565b600080610c66836040516024016115de91815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663db006a7560e01b179052610ac5565b6040516001600160a01b0380841660248301528216604482015260009081906111679060640160408051601f198184030181529190526020810180516001600160e01b0316636eb1769f60e11b179052610e1c565b604051602481018390526001600160a01b038216604482015260009081906111679060640160408051601f198184030181529190526020810180516001600160e01b031663de3c77eb60e01b179052610ac5565b6040516001600160a01b0382166024820152610d1d9060440160408051601f198184030181529190526020810180516001600160e01b031663e597461960e01b179052610ac5565b6040805160048152602481019091526020810180516001600160e01b03166374e38a7960e11b1790526000908190610cba90610ac5565b6040516001600160a01b03821660248201526000908190610c669060440160408051601f198184030181529190526020810180516001600160e01b031663f2b3abbd60e01b179052610ac5565b6040805160048152602481019091526020810180516001600160e01b0316631f1f3b4560e31b1790526000908190610cba90610e1c565b600080610c66836040516024016117d291815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663fca7820b60e01b179052610ac5565b6040805160048152602481019091526020810180516001600160e01b031663fcb6414760e01b1790526000908190610cba90610ac5565b6060600080846001600160a01b0316846040516118559190611c1a565b600060405180830381855af49150503d8060008114611890576040519150601f19603f3d011682016040523d82523d6000602084013e611895565b606091505b50915091506000821415610bdc573d60208201fd5b8183823760009101908152919050565b60005b838110156118d55781810151838201526020016118bd565b838111156118e4576000848401525b50505050565b600081518084526119028160208601602086016118ba565b601f01601f19169290920160200192915050565b602081526000610c7c60208301846118ea565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561196857611968611929565b604052919050565b600067ffffffffffffffff82111561198a5761198a611929565b50601f01601f191660200190565b600082601f8301126119a957600080fd5b81356119bc6119b782611970565b61193f565b8181528460208386010111156119d157600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215611a0057600080fd5b813567ffffffffffffffff811115611a1757600080fd5b610bdc84828501611998565b6001600160a01b0381168114610c1657600080fd5b60008060408385031215611a4b57600080fd5b8235611a5681611a23565b946020939093013593505050565b600060208284031215611a7657600080fd5b8135610c7c81611a23565b600080600060608486031215611a9657600080fd5b8335611aa181611a23565b92506020840135611ab181611a23565b929592945050506040919091013590565b8015158114610c1657600080fd5b600080600060608486031215611ae557600080fd5b8335611af081611a23565b92506020840135611b0081611ac2565b9150604084013567ffffffffffffffff811115611b1c57600080fd5b611b2886828701611998565b9150509250925092565b600060208284031215611b4457600080fd5b5035919050565b60008060408385031215611b5e57600080fd5b823591506020830135611b7081611a23565b809150509250929050565b60008060408385031215611b8e57600080fd5b8235611b9981611a23565b91506020830135611b7081611a23565b600181811c90821680611bbd57607f821691505b60208210811415611bde57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611bf657600080fd5b8151610c7c81611ac2565b600060208284031215611c1357600080fd5b5051919050565b60008251611c2c8184602087016118ba565b9190910192915050565b600060208284031215611c4857600080fd5b815167ffffffffffffffff811115611c5f57600080fd5b8201601f81018413611c7057600080fd5b8051611c7e6119b782611970565b818152856020838501011115611c9357600080fd5b610d938260208301602086016118ba565b60008060008060808587031215611cba57600080fd5b50508251602084015160408501516060909501519196909550909250905056fea26469706673582212203a32616e1c39689287978563b6d8ff52351852ffc7389d1fe9ffb0053d2d03d364736f6c634300080a0033000000000000000000000000a86dd95c210dd186fa7639f93e4177e97d057576000000000000000000000000fd1e2ef456f0aefde3ed719cbc82c5adab4ba37a000000000000000000000000000000000000000000a56fa5b99019a5c80000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f01756bc6183994d90773c8f22e3f44355ffa0e000000000000000000000000f96bc59fc200b485fe5a84cc077529de3627b24b00000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000e4c6f64657374617220457468657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046c455448000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103545760003560e01c806373acee98116101c6578063c39b127f116100f7578063f2b3abbd11610095578063f8f9da281161006f578063f8f9da2814610a73578063fca7820b14610a88578063fcb6414714610aa8578063fe9c44ae14610ab05761038e565b8063f2b3abbd14610a0e578063f3fdb15a14610a2e578063f851a44014610a4e5761038e565b8063dd62ed3e116100d1578063dd62ed3e146109a6578063de3c77eb146109c6578063e5974619146109e6578063e9c714f2146109f95761038e565b8063c39b127f14610946578063c5ebeaec14610966578063db006a75146109865761038e565b8063aa5af0fd11610164578063b2a02ff11161013e578063b2a02ff1146108b1578063b71d1a0c146108d1578063bd6d894d146108f1578063c37f68e2146109065761038e565b8063aa5af0fd14610873578063aae40a2a14610889578063ae9d70b01461089c5761038e565b806395d89b41116101a057806395d89b411461080957806395dd91931461081e578063a6afed951461083e578063a9059cbb146108535761038e565b806373acee98146107be578063852a12e3146107d35780638f840ddd146107f35761038e565b80633af9e669116102a05780635c60da1b1161023e57806360a7cf201161021857806360a7cf201461074d5780636752e7021461076d5780636c540baf1461078857806370a082311461079e5761038e565b80635c60da1b146106ed5780635fe3b5671461070d578063601a0bf11461072d5761038e565b80634576b5db1161027a5780634576b5db1461068f57806347bd3718146106af5780634e4d9fea146106c5578063555bcc40146106cd5761038e565b80633af9e6691461063a5780633b1d21a21461065a5780634487152f1461066f5761038e565b806317bfdfbc1161030d5780631be19560116102e75780631be19560146105ae57806323b872dd146105ce57806326782247146105ee578063313ce5671461060e5761038e565b806317bfdfbc1461056357806318160ddd14610583578063182df0f5146105995761038e565b806306fdde03146104825780630933c1ed146104ad578063095ea7b3146104cd5780630d983cc6146104fd5780631249c58b14610535578063173b99041461053f5761038e565b3661038e576040805160048152602481019091526020810180516001600160e01b0316631249c58b60e01b17905261038b90610ac5565b50005b34156104075760405162461bcd60e51b815260206004820152603760248201527f43457468657244656c656761746f723a66616c6c6261636b3a2063616e6e6f7460448201527f2073656e642076616c756520746f2066616c6c6261636b00000000000000000060648201526084015b60405180910390fd5b6012546040516000916001600160a01b03169061042790839036906118aa565b600060405180830381855af49150503d8060008114610462576040519150601f19603f3d011682016040523d82523d6000602084013e610467565b606091505b505090506040513d6000823e81801561047e573d82f35b3d82fd5b34801561048e57600080fd5b50610497610ae4565b6040516104a49190611916565b60405180910390f35b3480156104b957600080fd5b506104976104c83660046119ee565b610ac5565b3480156104d957600080fd5b506104ed6104e8366004611a38565b610b72565b60405190151581526020016104a4565b34801561050957600080fd5b5060115461051d906001600160a01b031681565b6040516001600160a01b0390911681526020016104a4565b61053d610be4565b005b34801561054b57600080fd5b5061055560085481565b6040519081526020016104a4565b34801561056f57600080fd5b5061055561057e366004611a64565b610c19565b34801561058f57600080fd5b50610555600d5481565b3480156105a557600080fd5b50610555610c83565b3480156105ba57600080fd5b5061053d6105c9366004611a64565b610cd6565b3480156105da57600080fd5b506104ed6105e9366004611a81565b610d21565b3480156105fa57600080fd5b5060045461051d906001600160a01b031681565b34801561061a57600080fd5b506003546106289060ff1681565b60405160ff90911681526020016104a4565b34801561064657600080fd5b50610555610655366004611a64565b610d9c565b34801561066657600080fd5b50610555610de9565b34801561067b57600080fd5b5061049761068a3660046119ee565b610e1c565b34801561069b57600080fd5b506105556106aa366004611a64565b610eda565b3480156106bb57600080fd5b50610555600b5481565b61053d610f27565b3480156106d957600080fd5b5061053d6106e8366004611ad0565b610f59565b3480156106f957600080fd5b5060125461051d906001600160a01b031681565b34801561071957600080fd5b5060055461051d906001600160a01b031681565b34801561073957600080fd5b50610555610748366004611b32565b6110cb565b34801561075957600080fd5b50610555610768366004611b4b565b611113565b34801561077957600080fd5b50610555666379da05b6000081565b34801561079457600080fd5b5061055560095481565b3480156107aa57600080fd5b506105556107b9366004611a64565b61117d565b3480156107ca57600080fd5b506105556111ca565b3480156107df57600080fd5b506105556107ee366004611b32565b611201565b3480156107ff57600080fd5b50610555600c5481565b34801561081557600080fd5b50610497611249565b34801561082a57600080fd5b50610555610839366004611a64565b611256565b34801561084a57600080fd5b506105556112a3565b34801561085f57600080fd5b506104ed61086e366004611a38565b6112da565b34801561087f57600080fd5b50610555600a5481565b61053d610897366004611b7b565b61132e565b3480156108a857600080fd5b50610555611383565b3480156108bd57600080fd5b506105556108cc366004611a81565b6113ba565b3480156108dd57600080fd5b506105556108ec366004611a64565b61142c565b3480156108fd57600080fd5b50610555611479565b34801561091257600080fd5b50610926610921366004611a64565b6114b0565b6040805194855260208501939093529183015260608201526080016104a4565b34801561095257600080fd5b50610555610961366004611a64565b611530565b34801561097257600080fd5b50610555610981366004611b32565b61157d565b34801561099257600080fd5b506105556109a1366004611b32565b6115c5565b3480156109b257600080fd5b506105556109c1366004611b7b565b61160d565b3480156109d257600080fd5b506105556109e1366004611b4b565b611662565b61053d6109f4366004611a64565b6116b6565b348015610a0557600080fd5b506105556116fe565b348015610a1a57600080fd5b50610555610a29366004611a64565b611735565b348015610a3a57600080fd5b5060065461051d906001600160a01b031681565b348015610a5a57600080fd5b5060035461051d9061010090046001600160a01b031681565b348015610a7f57600080fd5b50610555611782565b348015610a9457600080fd5b50610555610aa3366004611b32565b6117b9565b610555611801565b348015610abc57600080fd5b506104ed600181565b601254606090610ade906001600160a01b031683611838565b92915050565b60018054610af190611ba9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1d90611ba9565b8015610b6a5780601f10610b3f57610100808354040283529160200191610b6a565b820191906000526020600020905b815481529060010190602001808311610b4d57829003601f168201915b505050505081565b6040516001600160a01b0383166024820152604481018290526000908190610bc69060640160408051601f198184030181529190526020810180516001600160e01b031663095ea7b360e01b179052610ac5565b905080806020019051810190610bdc9190611be4565b949350505050565b6040805160048152602481019091526020810180516001600160e01b0316631249c58b60e01b179052610c1690610ac5565b50565b6040516001600160a01b03821660248201526000908190610c669060440160408051601f198184030181529190526020810180516001600160e01b03166305eff7ef60e21b179052610ac5565b905080806020019051810190610c7c9190611c01565b9392505050565b6040805160048152602481019091526020810180516001600160e01b031663182df0f560e01b1790526000908190610cba90610e1c565b905080806020019051810190610cd09190611c01565b91505090565b6040516001600160a01b0382166024820152610d1d9060440160408051601f198184030181529190526020810180516001600160e01b031662df0cab60e51b179052610ac5565b5050565b6040516001600160a01b03808516602483015283166044820152606481018290526000908190610d7d9060840160408051601f198184030181529190526020810180516001600160e01b03166323b872dd60e01b179052610ac5565b905080806020019051810190610d939190611be4565b95945050505050565b6040516001600160a01b03821660248201526000908190610c669060440160408051601f198184030181529190526020810180516001600160e01b0316633af9e66960e01b179052610ac5565b6040805160048152602481019091526020810180516001600160e01b0316631d8e90d160e11b1790526000908190610cba905b6060600080306001600160a01b031684604051602401610e3c9190611916565b60408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b17905251610e719190611c1a565b600060405180830381855afa9150503d8060008114610eac576040519150601f19603f3d011682016040523d82523d6000602084013e610eb1565b606091505b50915091506000821415610ec6573d60208201fd5b80806020019051810190610bdc9190611c36565b6040516001600160a01b03821660248201526000908190610c669060440160408051601f198184030181529190526020810180516001600160e01b0316634576b5db60e01b179052610ac5565b6040805160048152602481019091526020810180516001600160e01b0316632726cff560e11b179052610c1690610ac5565b60035461010090046001600160a01b03163314610fde5760405162461bcd60e51b815260206004820152603960248201527f43457468657244656c656761746f723a3a5f736574496d706c656d656e74617460448201527f696f6e3a2043616c6c6572206d7573742062652061646d696e0000000000000060648201526084016103fe565b8115611018576040805160048152602481019091526020810180516001600160e01b031663153ab50560e01b17905261101690610ac5565b505b601280546001600160a01b038581166001600160a01b031983161790925560405191169061107d9061104e908490602401611916565b60408051601f198184030181529190526020810180516001600160e01b0316630adccee560e31b179052610ac5565b50601254604080516001600160a01b03808516825290921660208301527fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a910160405180910390a150505050565b600080610c66836040516024016110e491815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663601a0bf160e01b179052610ac5565b604051602481018390526001600160a01b038216604482015260009081906111679060640160408051601f198184030181529190526020810180516001600160e01b03166303053e7960e51b179052610ac5565b905080806020019051810190610bdc9190611c01565b6040516001600160a01b03821660248201526000908190610c669060440160408051601f198184030181529190526020810180516001600160e01b03166370a0823160e01b179052610e1c565b6040805160048152602481019091526020810180516001600160e01b0316630e759dd360e31b1790526000908190610cba90610ac5565b600080610c668360405160240161121a91815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663852a12e360e01b179052610ac5565b60028054610af190611ba9565b6040516001600160a01b03821660248201526000908190610c669060440160408051601f198184030181529190526020810180516001600160e01b03166395dd919360e01b179052610e1c565b6040805160048152602481019091526020810180516001600160e01b031663a6afed9560e01b1790526000908190610cba90610ac5565b6040516001600160a01b0383166024820152604481018290526000908190610bc69060640160408051601f198184030181529190526020810180516001600160e01b031663a9059cbb60e01b179052610ac5565b6040516001600160a01b0380841660248301528216604482015261137e9060640160408051601f198184030181529190526020810180516001600160e01b0316635572051560e11b179052610ac5565b505050565b6040805160048152602481019091526020810180516001600160e01b0316630ae9d70b60e41b1790526000908190610cba90610e1c565b6040516001600160a01b038085166024830152831660448201526064810182905260009081906114169060840160408051601f198184030181529190526020810180516001600160e01b031663b2a02ff160e01b179052610ac5565b905080806020019051810190610d939190611c01565b6040516001600160a01b03821660248201526000908190610c669060440160408051601f198184030181529190526020810180516001600160e01b0316632dc7468360e21b179052610ac5565b6040805160048152602481019091526020810180516001600160e01b031663bd6d894d60e01b1790526000908190610cba90610ac5565b600080600080600061150a866040516024016114db91906001600160a01b0391909116815260200190565b60408051601f198184030181529190526020810180516001600160e01b03166361bfb47160e11b179052610e1c565b9050808060200190518101906115209190611ca4565b9450945094509450509193509193565b6040516001600160a01b03821660248201526000908190610c669060440160408051601f198184030181529190526020810180516001600160e01b031663c39b127f60e01b179052610ac5565b600080610c668360405160240161159691815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663317afabb60e21b179052610ac5565b600080610c66836040516024016115de91815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663db006a7560e01b179052610ac5565b6040516001600160a01b0380841660248301528216604482015260009081906111679060640160408051601f198184030181529190526020810180516001600160e01b0316636eb1769f60e11b179052610e1c565b604051602481018390526001600160a01b038216604482015260009081906111679060640160408051601f198184030181529190526020810180516001600160e01b031663de3c77eb60e01b179052610ac5565b6040516001600160a01b0382166024820152610d1d9060440160408051601f198184030181529190526020810180516001600160e01b031663e597461960e01b179052610ac5565b6040805160048152602481019091526020810180516001600160e01b03166374e38a7960e11b1790526000908190610cba90610ac5565b6040516001600160a01b03821660248201526000908190610c669060440160408051601f198184030181529190526020810180516001600160e01b031663f2b3abbd60e01b179052610ac5565b6040805160048152602481019091526020810180516001600160e01b0316631f1f3b4560e31b1790526000908190610cba90610e1c565b600080610c66836040516024016117d291815260200190565b60408051601f198184030181529190526020810180516001600160e01b031663fca7820b60e01b179052610ac5565b6040805160048152602481019091526020810180516001600160e01b031663fcb6414760e01b1790526000908190610cba90610ac5565b6060600080846001600160a01b0316846040516118559190611c1a565b600060405180830381855af49150503d8060008114611890576040519150601f19603f3d011682016040523d82523d6000602084013e611895565b606091505b50915091506000821415610bdc573d60208201fd5b8183823760009101908152919050565b60005b838110156118d55781810151838201526020016118bd565b838111156118e4576000848401525b50505050565b600081518084526119028160208601602086016118ba565b601f01601f19169290920160200192915050565b602081526000610c7c60208301846118ea565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561196857611968611929565b604052919050565b600067ffffffffffffffff82111561198a5761198a611929565b50601f01601f191660200190565b600082601f8301126119a957600080fd5b81356119bc6119b782611970565b61193f565b8181528460208386010111156119d157600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215611a0057600080fd5b813567ffffffffffffffff811115611a1757600080fd5b610bdc84828501611998565b6001600160a01b0381168114610c1657600080fd5b60008060408385031215611a4b57600080fd5b8235611a5681611a23565b946020939093013593505050565b600060208284031215611a7657600080fd5b8135610c7c81611a23565b600080600060608486031215611a9657600080fd5b8335611aa181611a23565b92506020840135611ab181611a23565b929592945050506040919091013590565b8015158114610c1657600080fd5b600080600060608486031215611ae557600080fd5b8335611af081611a23565b92506020840135611b0081611ac2565b9150604084013567ffffffffffffffff811115611b1c57600080fd5b611b2886828701611998565b9150509250925092565b600060208284031215611b4457600080fd5b5035919050565b60008060408385031215611b5e57600080fd5b823591506020830135611b7081611a23565b809150509250929050565b60008060408385031215611b8e57600080fd5b8235611b9981611a23565b91506020830135611b7081611a23565b600181811c90821680611bbd57607f821691505b60208210811415611bde57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611bf657600080fd5b8151610c7c81611ac2565b600060208284031215611c1357600080fd5b5051919050565b60008251611c2c8184602087016118ba565b9190910192915050565b600060208284031215611c4857600080fd5b815167ffffffffffffffff811115611c5f57600080fd5b8201601f81018413611c7057600080fd5b8051611c7e6119b782611970565b818152856020838501011115611c9357600080fd5b610d938260208301602086016118ba565b60008060008060808587031215611cba57600080fd5b50508251602084015160408501516060909501519196909550909250905056fea26469706673582212203a32616e1c39689287978563b6d8ff52351852ffc7389d1fe9ffb0053d2d03d364736f6c634300080a0033

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

000000000000000000000000a86dd95c210dd186fa7639f93e4177e97d057576000000000000000000000000fd1e2ef456f0aefde3ed719cbc82c5adab4ba37a000000000000000000000000000000000000000000a56fa5b99019a5c80000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f01756bc6183994d90773c8f22e3f44355ffa0e000000000000000000000000f96bc59fc200b485fe5a84cc077529de3627b24b00000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000e4c6f64657374617220457468657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046c455448000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : comptroller_ (address): 0xa86DD95c210dd186Fa7639F93E4177E97d057576
Arg [1] : interestRateModel_ (address): 0xfd1e2ef456f0AEFDE3eD719CBC82C5aDab4bA37A
Arg [2] : initialExchangeRateMantissa_ (uint256): 200000000000000000000000000
Arg [3] : name_ (string): Lodestar Ether
Arg [4] : symbol_ (string): lETH
Arg [5] : decimals_ (uint8): 8
Arg [6] : admin_ (address): 0x0f01756Bc6183994d90773C8f22E3f44355fFa0E
Arg [7] : implementation_ (address): 0xf96Bc59fC200B485fE5A84Cc077529De3627b24B
Arg [8] : becomeImplementationData (bytes): 0x

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 000000000000000000000000a86dd95c210dd186fa7639f93e4177e97d057576
Arg [1] : 000000000000000000000000fd1e2ef456f0aefde3ed719cbc82c5adab4ba37a
Arg [2] : 000000000000000000000000000000000000000000a56fa5b99019a5c8000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 0000000000000000000000000f01756bc6183994d90773c8f22e3f44355ffa0e
Arg [7] : 000000000000000000000000f96bc59fc200b485fe5a84cc077529de3627b24b
Arg [8] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [10] : 4c6f646573746172204574686572000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [12] : 6c45544800000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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