S Price: $0.4687 (+0.17%)
    /

    Token

    Reward EUL (rEUL)

    Overview

    Max Total Supply

    27,176.788987477903027096 rEUL

    Holders

    836

    Market

    Price

    $6.02 @ 12.844049 S (-0.37%)

    Onchain Market Cap

    $163,604.27

    Circulating Supply Market Cap

    $112,393,170.00

    Other Info

    Token Contract (WITH 18 Decimals)

    Balance
    0.656932253930156971 rEUL

    Value
    $3.95 ( ~8.4276 S) [0.0024%]
    0xc45D05CDc809d20c7B14959E8cd4a1199E3e966F
    Loading...
    Loading
    Loading...
    Loading
    Loading...
    Loading

    OVERVIEW

    Euler is DeFi's first lending super app, rEUL is Euler's reward token.

    Market

    Volume (24H):$3,440,638.00
    Market Capitalization:$112,393,170.00
    Circulating Supply:18,685,531.00 rEUL
    Market Data Source: Coinmarketcap

    Contract Source Code Verified (Exact Match)

    Contract Name:
    RewardToken

    Compiler Version
    v0.8.24+commit.e11b9ed9

    Optimization Enabled:
    Yes with 20000 runs

    Other Settings:
    cancun EvmVersion
    File 1 of 21 : RewardToken.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity ^0.8.0;
    import {ERC20WrapperLocked} from "../implementation/ERC20WrapperLocked.sol";
    /// @title RewardToken
    /// @custom:security-contact security@euler.xyz
    /// @author Euler Labs (https://www.eulerlabs.com/)
    /// @notice A wrapper for locked ERC20 tokens that can be withdrawn as per the lock schedule.
    /// @dev This contract implements a specific unlock schedule for reward tokens. Tokens are unlocked over a 180-day
    /// period. 20% is unlocked immediately, and the remaining 80% unlocks linearly over 6 months, reaching full unlock at
    /// maturity. The linear unlock starts LOCK_NORMALIZATION_FACTOR after the lock is created.
    contract RewardToken is ERC20WrapperLocked {
    /// @notice Constructor for RewardToken
    /// @param _evc Address of the Ethereum Vault Connector
    /// @param _owner Address of the contract owner
    /// @param _receiver Address of the receiver
    /// @param _underlying Address of the underlying ERC20 token
    /// @param _name Name of the reward token
    /// @param _symbol Symbol of the reward token
    constructor(
    address _evc,
    address _owner,
    address _receiver,
    address _underlying,
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 21 : ERC20WrapperLocked.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity ^0.8.0;
    import {ERC20Wrapper, ERC20, IERC20, SafeERC20} from "openzeppelin-contracts/token/ERC20/extensions/ERC20Wrapper.sol";
    import {Ownable, Context} from "openzeppelin-contracts/access/Ownable.sol";
    import {EnumerableMap} from "openzeppelin-contracts/utils/structs/EnumerableMap.sol";
    import {EVCUtil} from "ethereum-vault-connector/utils/EVCUtil.sol";
    /// @title ERC20WrapperLocked
    /// @custom:security-contact security@euler.xyz
    /// @author Euler Labs (https://www.eulerlabs.com/)
    /// @notice A wrapper for locked ERC20 tokens that can be withdrawn as per the lock schedule.
    /// @dev Regular wrapping (`depositFor`), unwrapping (`withdrawTo`) are only supported for whitelisted callers with
    /// an ADMIN whitelist status. Regular ERC20 `transfer` and `transferFrom` are only supported between two whitelisted
    /// accounts. Under other circumstances, conditions apply; look at the `_update` function. If the account balance is
    /// non-whitelisted, their tokens can only be withdrawn as per the lock schedule and the remainder of the amount is
    /// transferred to the receiver address configured. If the account has a DISTRIBUTOR whitelist status, their tokens
    /// cannot be unwrapped by them, but in order to be unwrapped, they can only be transferred to the account that is not
    /// whitelisted and become a subject to the locking schedule or transferred to the account with an ADMIN whitelist
    /// status. A whitelisted account can always degrade their whitelist status and become a subject to the locking
    /// schedule.
    /// @dev Avoid giving an ADMIN whitelist status to untrusted addresses. They can be used by non-whitelisted accounts and
    /// accounts with the DISTRIBUTOR whitelist status to avoid the lock schedule.
    /// @dev Avoid giving approvals to untrusted spenders. If approved by both a whitelisted account and a non-whitelisted
    /// account, they can reset the non-whitelisted account's lock schedule.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 3 of 21 : ERC20Wrapper.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/ERC20Wrapper.sol)
    pragma solidity ^0.8.20;
    import {IERC20, IERC20Metadata, ERC20} from "../ERC20.sol";
    import {SafeERC20} from "../utils/SafeERC20.sol";
    /**
    * @dev Extension of the ERC-20 token contract to support token wrapping.
    *
    * Users can deposit and withdraw "underlying tokens" and receive a matching number of "wrapped tokens". This is useful
    * in conjunction with other modules. For example, combining this wrapping mechanism with {ERC20Votes} will allow the
    * wrapping of an existing "basic" ERC-20 into a governance token.
    *
    * WARNING: Any mechanism in which the underlying token changes the {balanceOf} of an account without an explicit transfer
    * may desynchronize this contract's supply and its underlying balance. Please exercise caution when wrapping tokens that
    * may undercollateralize the wrapper (i.e. wrapper's total supply is higher than its underlying balance). See {_recover}
    * for recovering value accrued to the wrapper.
    */
    abstract contract ERC20Wrapper is ERC20 {
    IERC20 private immutable _underlying;
    /**
    * @dev The underlying token couldn't be wrapped.
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 4 of 21 : Ownable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
    pragma solidity ^0.8.20;
    import {Context} from "../utils/Context.sol";
    /**
    * @dev Contract module which provides a basic access control mechanism, where
    * there is an account (an owner) that can be granted exclusive access to
    * specific functions.
    *
    * The initial owner is set to the address provided by the deployer. This can
    * later be changed with {transferOwnership}.
    *
    * This module is used through inheritance. It will make available the modifier
    * `onlyOwner`, which can be applied to your functions to restrict their use to
    * the owner.
    */
    abstract contract Ownable is Context {
    address private _owner;
    /**
    * @dev The caller account is not authorized to perform an operation.
    */
    error OwnableUnauthorizedAccount(address account);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 5 of 21 : EnumerableMap.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/structs/EnumerableMap.sol)
    // This file was procedurally generated from scripts/generate/templates/EnumerableMap.js.
    pragma solidity ^0.8.20;
    import {EnumerableSet} from "./EnumerableSet.sol";
    /**
    * @dev Library for managing an enumerable variant of Solidity's
    * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
    * type.
    *
    * Maps have the following properties:
    *
    * - Entries are added, removed, and checked for existence in constant time
    * (O(1)).
    * - Entries are enumerated in O(n). No guarantees are made on the ordering.
    *
    * ```solidity
    * contract Example {
    * // Add the library methods
    * using EnumerableMap for EnumerableMap.UintToAddressMap;
    *
    * // Declare a set state variable
    * EnumerableMap.UintToAddressMap private myMap;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 6 of 21 : EVCUtil.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.0;
    import {IEVC} from "../interfaces/IEthereumVaultConnector.sol";
    import {ExecutionContext, EC} from "../ExecutionContext.sol";
    /// @title EVCUtil
    /// @custom:security-contact security@euler.xyz
    /// @author Euler Labs (https://www.eulerlabs.com/)
    /// @notice This contract is an abstract base contract for interacting with the Ethereum Vault Connector (EVC).
    /// It provides utility functions for authenticating the callers in the context of the EVC, a pattern for enforcing the
    /// contracts to be called through the EVC.
    abstract contract EVCUtil {
    using ExecutionContext for EC;
    uint160 internal constant ACCOUNT_ID_OFFSET = 8;
    IEVC internal immutable evc;
    error EVC_InvalidAddress();
    error NotAuthorized();
    error ControllerDisabled();
    constructor(address _evc) {
    if (_evc == address(0)) revert EVC_InvalidAddress();
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 7 of 21 : ERC20.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol)
    pragma solidity ^0.8.20;
    import {IERC20} from "./IERC20.sol";
    import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
    import {Context} from "../../utils/Context.sol";
    import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";
    /**
    * @dev Implementation of the {IERC20} interface.
    *
    * This implementation is agnostic to the way tokens are created. This means
    * that a supply mechanism has to be added in a derived contract using {_mint}.
    *
    * TIP: For a detailed writeup see our guide
    * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
    * to implement supply mechanisms].
    *
    * The default value of {decimals} is 18. To change this, you should override
    * this function so it returns a different value.
    *
    * We have followed general OpenZeppelin Contracts guidelines: functions revert
    * instead returning `false` on failure. This behavior is nonetheless
    * conventional and does not conflict with the expectations of ERC-20
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 8 of 21 : SafeERC20.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/utils/SafeERC20.sol)
    pragma solidity ^0.8.20;
    import {IERC20} from "../IERC20.sol";
    import {IERC1363} from "../../../interfaces/IERC1363.sol";
    import {Address} from "../../../utils/Address.sol";
    /**
    * @title SafeERC20
    * @dev Wrappers around ERC-20 operations that throw on failure (when the token
    * contract returns false). Tokens that return no value (and instead revert or
    * throw on failure) are also supported, non-reverting calls are assumed to be
    * successful.
    * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
    * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
    */
    library SafeERC20 {
    /**
    * @dev An operation with an ERC-20 token failed.
    */
    error SafeERC20FailedOperation(address token);
    /**
    * @dev Indicates a failed `decreaseAllowance` request.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 9 of 21 : Context.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Provides information about the current execution context, including the
    * sender of the transaction and its data. While these are generally available
    * via msg.sender and msg.data, they should not be accessed in such a direct
    * manner, since when dealing with meta-transactions the account sending and
    * paying for execution may not be the actual sender (as far as an application
    * is concerned).
    *
    * This contract is only required for intermediate, library-like contracts.
    */
    abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
    return msg.sender;
    }
    function _msgData() internal view virtual returns (bytes calldata) {
    return msg.data;
    }
    function _contextSuffixLength() internal view virtual returns (uint256) {
    return 0;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 10 of 21 : EnumerableSet.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/structs/EnumerableSet.sol)
    // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.
    pragma solidity ^0.8.20;
    /**
    * @dev Library for managing
    * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
    * types.
    *
    * Sets have the following properties:
    *
    * - Elements are added, removed, and checked for existence in constant time
    * (O(1)).
    * - Elements are enumerated in O(n). No guarantees are made on the ordering.
    *
    * ```solidity
    * contract Example {
    * // Add the library methods
    * using EnumerableSet for EnumerableSet.AddressSet;
    *
    * // Declare a set state variable
    * EnumerableSet.AddressSet private mySet;
    * }
    * ```
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 11 of 21 : IEthereumVaultConnector.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.8.0;
    /// @title IEVC
    /// @custom:security-contact security@euler.xyz
    /// @author Euler Labs (https://www.eulerlabs.com/)
    /// @notice This interface defines the methods for the Ethereum Vault Connector.
    interface IEVC {
    /// @notice A struct representing a batch item.
    /// @dev Each batch item represents a single operation to be performed within a checks deferred context.
    struct BatchItem {
    /// @notice The target contract to be called.
    address targetContract;
    /// @notice The account on behalf of which the operation is to be performed. msg.sender must be authorized to
    /// act on behalf of this account. Must be address(0) if the target contract is the EVC itself.
    address onBehalfOfAccount;
    /// @notice The amount of value to be forwarded with the call. If the value is type(uint256).max, the whole
    /// balance of the EVC contract will be forwarded. Must be 0 if the target contract is the EVC itself.
    uint256 value;
    /// @notice The encoded data which is called on the target contract.
    bytes data;
    }
    /// @notice A struct representing the result of a batch item operation.
    /// @dev Used only for simulation purposes.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 12 of 21 : ExecutionContext.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity ^0.8.0;
    type EC is uint256;
    /// @title ExecutionContext
    /// @custom:security-contact security@euler.xyz
    /// @author Euler Labs (https://www.eulerlabs.com/)
    /// @notice This library provides functions for managing the execution context in the Ethereum Vault Connector.
    /// @dev The execution context is a bit field that stores the following information:
    /// @dev - on behalf of account - an account on behalf of which the currently executed operation is being performed
    /// @dev - checks deferred flag - used to indicate whether checks are deferred
    /// @dev - checks in progress flag - used to indicate that the account/vault status checks are in progress. This flag is
    /// used to prevent re-entrancy.
    /// @dev - control collateral in progress flag - used to indicate that the control collateral is in progress. This flag
    /// is used to prevent re-entrancy.
    /// @dev - operator authenticated flag - used to indicate that the currently executed operation is being performed by
    /// the account operator
    /// @dev - simulation flag - used to indicate that the currently executed batch call is a simulation
    /// @dev - stamp - dummy value for optimization purposes
    library ExecutionContext {
    uint256 internal constant ON_BEHALF_OF_ACCOUNT_MASK =
    0x000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
    uint256 internal constant CHECKS_DEFERRED_MASK = 0x0000000000000000000000FF0000000000000000000000000000000000000000;
    uint256 internal constant CHECKS_IN_PROGRESS_MASK =
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 13 of 21 : IERC20.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Interface of the ERC-20 standard as defined in the ERC.
    */
    interface IERC20 {
    /**
    * @dev Emitted when `value` tokens are moved from one account (`from`) to
    * another (`to`).
    *
    * Note that `value` may be zero.
    */
    event Transfer(address indexed from, address indexed to, uint256 value);
    /**
    * @dev Emitted when the allowance of a `spender` for an `owner` is set by
    * a call to {approve}. `value` is the new allowance.
    */
    event Approval(address indexed owner, address indexed spender, uint256 value);
    /**
    * @dev Returns the value of tokens in existence.
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 14 of 21 : IERC20Metadata.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)
    pragma solidity ^0.8.20;
    import {IERC20} from "../IERC20.sol";
    /**
    * @dev Interface for the optional metadata functions from the ERC-20 standard.
    */
    interface IERC20Metadata is IERC20 {
    /**
    * @dev Returns the name of the token.
    */
    function name() external view returns (string memory);
    /**
    * @dev Returns the symbol of the token.
    */
    function symbol() external view returns (string memory);
    /**
    * @dev Returns the decimals places of the token.
    */
    function decimals() external view returns (uint8);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 15 of 21 : draft-IERC6093.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Standard ERC-20 Errors
    * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
    */
    interface IERC20Errors {
    /**
    * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
    * @param sender Address whose tokens are being transferred.
    * @param balance Current balance for the interacting account.
    * @param needed Minimum amount required to perform a transfer.
    */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
    /**
    * @dev Indicates a failure with the token `sender`. Used in transfers.
    * @param sender Address whose tokens are being transferred.
    */
    error ERC20InvalidSender(address sender);
    /**
    * @dev Indicates a failure with the token `receiver`. Used in transfers.
    * @param receiver Address to which tokens are being transferred.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 16 of 21 : IERC1363.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC1363.sol)
    pragma solidity ^0.8.20;
    import {IERC20} from "./IERC20.sol";
    import {IERC165} from "./IERC165.sol";
    /**
    * @title IERC1363
    * @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].
    *
    * Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract
    * after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.
    */
    interface IERC1363 is IERC20, IERC165 {
    /*
    * Note: the ERC-165 identifier for this interface is 0xb0202a11.
    * 0xb0202a11 ===
    * bytes4(keccak256('transferAndCall(address,uint256)')) ^
    * bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^
    * bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^
    * bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) ^
    * bytes4(keccak256('approveAndCall(address,uint256)')) ^
    * bytes4(keccak256('approveAndCall(address,uint256,bytes)'))
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 17 of 21 : Address.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/Address.sol)
    pragma solidity ^0.8.20;
    import {Errors} from "./Errors.sol";
    /**
    * @dev Collection of functions related to the address type
    */
    library Address {
    /**
    * @dev There's no code at `target` (it is not a contract).
    */
    error AddressEmptyCode(address target);
    /**
    * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
    * `recipient`, forwarding all available gas and reverting on errors.
    *
    * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
    * of certain opcodes, possibly making contracts go over the 2300 gas limit
    * imposed by `transfer`, making them unable to receive funds via
    * `transfer`. {sendValue} removes this limitation.
    *
    * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 18 of 21 : IERC20.sol
    1
    2
    3
    4
    5
    6
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC20.sol)
    pragma solidity ^0.8.20;
    import {IERC20} from "../token/ERC20/IERC20.sol";
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 19 of 21 : IERC165.sol
    1
    2
    3
    4
    5
    6
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol)
    pragma solidity ^0.8.20;
    import {IERC165} from "../utils/introspection/IERC165.sol";
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 20 of 21 : Errors.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Collection of common custom errors used in multiple contracts
    *
    * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.
    * It is recommended to avoid relying on the error API for critical functionality.
    *
    * _Available since v5.1._
    */
    library Errors {
    /**
    * @dev The ETH balance of the account is not enough to perform the operation.
    */
    error InsufficientBalance(uint256 balance, uint256 needed);
    /**
    * @dev A call to an address target failed. The target may have reverted.
    */
    error FailedCall();
    /**
    * @dev The deployment failed.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 21 of 21 : IERC165.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Interface of the ERC-165 standard, as defined in the
    * https://eips.ethereum.org/EIPS/eip-165[ERC].
    *
    * Implementers can declare support of contract interfaces, which can then be
    * queried by others ({ERC165Checker}).
    *
    * For an implementation, see {ERC165}.
    */
    interface IERC165 {
    /**
    * @dev Returns true if this contract implements the interface defined by
    * `interfaceId`. See the corresponding
    * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]
    * to learn more about how these ids are created.
    *
    * This function call must use less than 30 000 gas.
    */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Settings
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    {
    "remappings": [
    "lib/euler-price-oracle:@openzeppelin/contracts/=lib/euler-price-oracle/lib/openzeppelin-contracts/contracts/",
    "lib/native-token-transfers/evm:openzeppelin-contracts/contracts/=lib/native-token-transfers/evm/lib/openzeppelin-contracts/contracts/",
    "lib/euler-earn:@openzeppelin/=lib/euler-earn/lib/openzeppelin-contracts/",
    "lib/euler-earn:@openzeppelin-upgradeable/=lib/euler-earn/lib/openzeppelin-contracts-upgradeable/contracts/",
    "lib/euler-earn:ethereum-vault-connector/=lib/euler-earn/lib/ethereum-vault-connector/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/",
    "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
    "ethereum-vault-connector/=lib/ethereum-vault-connector/src/",
    "evc/=lib/ethereum-vault-connector/src/",
    "evk/=lib/euler-vault-kit/src/",
    "evk-test/=lib/euler-vault-kit/test/",
    "euler-price-oracle/=lib/euler-price-oracle/src/",
    "euler-price-oracle-test/=lib/euler-price-oracle/test/",
    "fee-flow/=lib/fee-flow/src/",
    "reward-streams/=lib/reward-streams/src/",
    "@openzeppelin/=lib/openzeppelin-contracts/contracts/",
    "euler-earn/=lib/euler-earn/src/",
    "native-token-transfers/=lib/native-token-transfers/evm/src/",
    "@openzeppelin-upgradeable/=lib/euler-earn/lib/openzeppelin-contracts-upgradeable/contracts/",
    "@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
    "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
    "@pendle/core-v2/=lib/euler-price-oracle/lib/pendle-core-v2-public/contracts/",
    "@pyth/=lib/euler-price-oracle/lib/pyth-sdk-solidity/",
    "@redstone/evm-connector/=lib/euler-price-oracle/lib/redstone-oracles-monorepo/packages/evm-connector/contracts/",
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Contract Security Audit

    Contract ABI

    API
    [{"inputs":[{"internalType":"address","name":"_evc","type":"address"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"address","name":"_underlying","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ControllerDisabled","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"ERC20InvalidUnderlying","type":"error"},{"inputs":[],"name":"EVC_InvalidAddress","type":"error"},{"inputs":[{"internalType":"bytes32","name":"key","type":"bytes32"}],"name":"EnumerableMapNonexistentKey","type":"error"},{"inputs":[],"name":"InvalidWhitelistStatus","type":"error"},{"inputs":[],"name":"NotAuthorized","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"RemainderLossNotAllowed","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"lockTimestamp","type":"uint256"}],"name":"LockCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"lockTimestamp","type":"uint256"}],"name":"LockRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"remainderReceiver","type":"address"}],"name":"RemainderReceiverSet","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":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"status","type":"uint256"}],"name":"WhitelistStatusSet","type":"event"},{"inputs":[],"name":"EVC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_STATUS_ADMIN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_STATUS_DISTRIBUTOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_STATUS_NONE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositFor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"lockTimestamp","type":"uint256"}],"name":"getLockedAmountByLockTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getLockedAmounts","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getLockedAmountsLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getLockedAmountsLockTimestamps","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"lockTimestamp","type":"uint256"}],"name":"getWithdrawAmountsByLockTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainderReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_remainderReceiver","type":"address"}],"name":"setRemainderReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"status","type":"uint256"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"status","type":"uint256"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"underlying","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTo","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"lockTimestamp","type":"uint256"},{"internalType":"bool","name":"allowRemainderLoss","type":"bool"}],"name":"withdrawToByLockTimestamp","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"lockTimestamps","type":"uint256[]"},{"internalType":"bool","name":"allowRemainderLoss","type":"bool"}],"name":"withdrawToByLockTimestamps","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

    60c060405234801562000010575f80fd5b5060405162002ed338038062002ed383398101604081905262000033916200027f565b85858585858582828287896001600160a01b0381166200006657604051638133abd160e01b815260040160405180910390fd5b6001600160a01b0390811660805281166200009b57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620000a68162000153565b506004620000b58382620003b7565b506005620000c48282620003b7565b5050306001600160a01b038316039050620000f55760405163438d6fe360e01b815230600482015260240162000092565b6001600160a01b0390811660a052600680546001600160a01b03191691861691821790556040517fa2697f04f820814f2c44a4a80765636bd7cc0539020abdaccf5b959537c0a542905f90a250505050505050505050505062000483565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b0381168114620001b9575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112620001e2575f80fd5b81516001600160401b0380821115620001ff57620001ff620001be565b604051601f8301601f19908116603f011681019082821181831017156200022a576200022a620001be565b816040528381526020925086602085880101111562000247575f80fd5b5f91505b838210156200026a57858201830151818301840152908201906200024b565b5f602085830101528094505050505092915050565b5f805f805f8060c0878903121562000295575f80fd5b620002a087620001a2565b9550620002b060208801620001a2565b9450620002c060408801620001a2565b9350620002d060608801620001a2565b60808801519093506001600160401b0380821115620002ed575f80fd5b620002fb8a838b01620001d2565b935060a089015191508082111562000311575f80fd5b506200032089828a01620001d2565b9150509295509295509295565b600181811c908216806200034257607f821691505b6020821081036200036157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620003b257805f5260205f20601f840160051c810160208510156200038e5750805b601f840160051c820191505b81811015620003af575f81556001016200039a565b50505b505050565b81516001600160401b03811115620003d357620003d3620001be565b620003eb81620003e484546200032d565b8462000367565b602080601f83116001811462000421575f8415620004095750858301515b5f19600386901b1c1916600185901b1785556200047b565b5f85815260208120601f198616915b82811015620004515788860151825594840194600190910190840162000430565b50858210156200046f57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b60805160a0516129ef620004e45f395f81816103320152818161086801528181610b3901528181611430015261156101525f818161042101528181610e0901528181610e3201528181610fbc015281816117ca015261181e01526129ef5ff3fe608060405234801561000f575f80fd5b50600436106101dc575f3560e01c80636f307dc311610109578063a70354a11161009e578063ccaf1c4b1161006e578063ccaf1c4b14610467578063dd62ed3e14610486578063e1869352146104cb578063f2fde38b146104f3575f80fd5b8063a70354a11461041f578063a9059cbb14610445578063bd95c01714610458578063cac01cbc14610460575f80fd5b80638d2589b0116100d95780638d2589b0146103c75780638da5cb5b146103e7578063907974981461040457806395d89b4114610417575f80fd5b80636f307dc31461033057806370a0823114610377578063715018a6146103ac5780638a677c9f146103b4575f80fd5b8063224b8d6e1161017f578063313ce5671161014f578063313ce567146102cf578063421a10de146102e9578063612d793d146102fc57806367f747ef1461031d575f80fd5b8063224b8d6e14610276578063235d94f31461028957806323b872dd146102a95780632f4f21e2146102bc575f80fd5b806318160ddd116101ba57806318160ddd146102335780631ab27b951461023b5780631b70209a1461024e578063205c287814610263575f80fd5b8063015f011e146101e057806306fdde03146101fb578063095ea7b314610210575b5f80fd5b6101e8600181565b6040519081526020015b60405180910390f35b610203610506565b6040516101f2919061248d565b61022361021e366004612518565b610596565b60405190151581526020016101f2565b6003546101e8565b61022361024936600461255a565b6105b9565b61026161025c366004612518565b610610565b005b610223610271366004612518565b61065c565b610261610284366004612599565b6106d5565b61029c6102973660046125b0565b6107b8565b6040516101f29190612605565b6102236102b7366004612617565b6107e8565b6102236102ca366004612518565b6107f4565b6102d7610865565b60405160ff90911681526020016101f2565b6101e86102f7366004612518565b61091f565b61030f61030a3660046125b0565b61094f565b6040516101f2929190612655565b61026161032b3660046125b0565b610a33565b7f00000000000000000000000000000000000000000000000000000000000000005b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101f2565b6101e86103853660046125b0565b73ffffffffffffffffffffffffffffffffffffffff165f9081526001602052604090205490565b610261610ad7565b6101e86103c23660046125b0565b610b09565b6006546103529073ffffffffffffffffffffffffffffffffffffffff1681565b5f5473ffffffffffffffffffffffffffffffffffffffff16610352565b6102236104123660046126a6565b610b36565b610203610d29565b7f0000000000000000000000000000000000000000000000000000000000000000610352565b610223610453366004612518565b610d38565b6101e8600281565b6101e85f81565b6101e86104753660046125b0565b60076020525f908152604090205481565b6101e86104943660046127a1565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260026020908152604080832093909416825291909152205490565b6104de6104d9366004612518565b610d4a565b604080519283526020830191909152016101f2565b6102616105013660046125b0565b610dc7565b606060048054610515906127d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610541906127d8565b801561058c5780601f106105635761010080835404028352916020019161058c565b820191905f5260205f20905b81548152906001019060200180831161056f57829003601f168201915b5050505050905090565b5f806105a0610ddb565b90506105ad818585610de4565b60019150505b92915050565b6040805160018082528183019092525f918291906020808301908036833701905050905083815f815181106105f0576105f0612823565b602002602001018181525050610607858285610b36565b95945050505050565b61061a6001610df1565b506106236110c0565b73ffffffffffffffffffffffffffffffffffffffff82165f908152600760205260409020548114610658576106588282611171565b5050565b5f610665610ddb565b73ffffffffffffffffffffffffffffffffffffffff81165f908152600760205260409020546001146106c3576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106cd84846113b2565b949350505050565b6106dd610ddb565b73ffffffffffffffffffffffffffffffffffffffff81165f90815260076020526040902054610738576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f610741610ddb565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526007602052604090205490915083146107b357600183036107a9576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107b38184611171565b505050565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526008602052604090206060906105b39061145f565b5f6106cd84848461146b565b5f6107fd610ddb565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526007602052604090205460011461085b576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106cd8484611498565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561090b575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261090891810190612850565b60015b61091a5750601290565b905090565b919050565b73ffffffffffffffffffffffffffffffffffffffff82165f90815260086020526040812081906106079084611592565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526008602052604081206060918291906109828261145f565b90505f815167ffffffffffffffff81111561099f5761099f612679565b6040519080825280602002602001820160405280156109c8578160200160208202803683370190505b5090505f5b8251811015610a2757610a028382815181106109eb576109eb612823565b6020026020010151856115ad90919063ffffffff16565b828281518110610a1457610a14612823565b60209081029190910101526001016109cd565b50909590945092505050565b610a3d6001610df1565b50610a466110c0565b60065473ffffffffffffffffffffffffffffffffffffffff828116911614610ad457600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517fa2697f04f820814f2c44a4a80765636bd7cc0539020abdaccf5b959537c0a542905f90a25b50565b6040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81165f9081526008602052604081206105b3906115b8565b5f7f000000000000000000000000000000000000000000000000000000000000000081610b61610ddb565b90505f805f5b8751811015610c48575f888281518110610b8357610b83612823565b602002602001015190505f80610b998784610d4a565b73ffffffffffffffffffffffffffffffffffffffff89165f9081526008602052604090209193509150610bcc90846115c2565b15610c22578673ffffffffffffffffffffffffffffffffffffffff167f5981e4d35a45c9e8c96ae51ca0f24127eaad820537621c89bbe1ba8b1712b61b84604051610c1991815260200190565b60405180910390a25b610c2c828761289d565b9550610c38818661289d565b9450505050806001019050610b67565b50610c5c83610c57838561289d565b6115cd565b610c7d73ffffffffffffffffffffffffffffffffffffffff85168984611627565b8015610d1b5785610cba576040517f93c4aad800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065473ffffffffffffffffffffffffffffffffffffffff16610d198115610ce25781610cfb565b5f5473ffffffffffffffffffffffffffffffffffffffff165b73ffffffffffffffffffffffffffffffffffffffff87169084611627565b505b506001979650505050505050565b606060058054610515906127d8565b5f610d4383836116a8565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff82165f90815260086020526040812081908190610d7c9085611592565b9150505f610d89856116bf565b90505f670de0b6b3a7640000610d9f83856128b0565b610da991906128f4565b90505f610db68285612907565b9195509093505050505b9250929050565b610dd16001610df1565b50610ad481611751565b5f6109156117b1565b6107b383838360016118a2565b5f73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001633036110b9575f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16633a1a3a1d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e99573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ebd919061291a565b905077ff00000000000000000000000000000000000000000000008116151580610eff575076ff00000000000000000000000000000000000000000000811615155b80610f21575075ff000000000000000000000000000000000000000000811615155b15610f58576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81168315610d43576040517f442b172c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301525f917f00000000000000000000000000000000000000000000000000000000000000009091169063442b172c90602401602060405180830381865afa158015611003573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110279190612931565b905073ffffffffffffffffffffffffffffffffffffffff81161580159061107a57508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b156110b1576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b509392505050565b5033919050565b6110c8610ddb565b73ffffffffffffffffffffffffffffffffffffffff166110fc5f5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161461116f5761111f610ddb565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911660048201526024015b60405180910390fd5b565b60028111156111ac576040517fd5fb0c3c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806112705773ffffffffffffffffffffffffffffffffffffffff82165f90815260016020526040902054801561126a575f6111e56119e8565b73ffffffffffffffffffffffffffffffffffffffff85165f908152600860205260409020909150611217908284611a00565b508373ffffffffffffffffffffffffffffffffffffffff167f68f4429ffe70afd17cd51d3c12265a7698579e0dc36b7099e2f6d5263e739d398260405161126091815260200190565b60405180910390a2505b5061134d565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526008602052604081209061129e8261145f565b90505f5b8151811015611349576112d78282815181106112c0576112c0612823565b6020026020010151846115c290919063ffffffff16565b508473ffffffffffffffffffffffffffffffffffffffff167f5981e4d35a45c9e8c96ae51ca0f24127eaad820537621c89bbe1ba8b1712b61b83838151811061132257611322612823565b602002602001015160405161133991815260200190565b60405180910390a26001016112a2565b5050505b73ffffffffffffffffffffffffffffffffffffffff82165f8181526007602052604090819020839055517faa5d9115062744c4c316306720e23b83bac0a85ffd8fc0b0a43cb9e457fc62b3906113a69084815260200190565b60405180910390a25050565b5f3073ffffffffffffffffffffffffffffffffffffffff84160361141a576040517fec442f0500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84166004820152602401611166565b61142b611425610ddb565b836115cd565b6114567f00000000000000000000000000000000000000000000000000000000000000008484611627565b50600192915050565b60605f610d4383611a0c565b5f80611475610ddb565b9050611482858285611a17565b61148d858585611ade565b506001949350505050565b5f806114a2610ddb565b90503073ffffffffffffffffffffffffffffffffffffffff8216036114f5576040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152306004820152602401611166565b3073ffffffffffffffffffffffffffffffffffffffff85160361155c576040517fec442f0500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85166004820152602401611166565b6115887f0000000000000000000000000000000000000000000000000000000000000000823086611b87565b6105ad8484611bcd565b5f8080806115a08686611c27565b9097909650945050505050565b5f610d438383611c5f565b5f6105b382611cbe565b5f610d438383611cc8565b73ffffffffffffffffffffffffffffffffffffffff821661161c576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f6004820152602401611166565b610658825f83611ce4565b60405173ffffffffffffffffffffffffffffffffffffffff8381166024830152604482018390526107b391859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611fe2565b5f806116b2610ddb565b90506105ad818585611ade565b5f428211156116cf57505f919050565b428290036201518081116116ed57506702c68af0bb14000092915050565b62ed4e0081106117075750670de0b6b3a764000092915050565b62ebfc80670b1a2bc2ec5000007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeae80830102046702c68af0bb14000001915050919050565b50919050565b6117596110c0565b73ffffffffffffffffffffffffffffffffffffffff81166117a8576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f6004820152602401611166565b610ad481612081565b5f3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016810361091a576040517f18503a1e0000000000000000000000000000000000000000000000000000000081525f60048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906318503a1e906024016040805180830381865afa158015611877573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061189b919061294c565b5092915050565b73ffffffffffffffffffffffffffffffffffffffff84166118f1576040517fe602df050000000000000000000000000000000000000000000000000000000081525f6004820152602401611166565b73ffffffffffffffffffffffffffffffffffffffff8316611940576040517f94280d620000000000000000000000000000000000000000000000000000000081525f6004820152602401611166565b73ffffffffffffffffffffffffffffffffffffffff8085165f90815260026020908152604080832093871683529290522082905580156119e2578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516119d991815260200190565b60405180910390a35b50505050565b5f6119f66201518042612979565b6109159042612907565b5f6106cd8484846120f5565b60606105b382612111565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600260209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119e25781811015611ad0576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff841660048201526024810182905260448101839052606401611166565b6119e284848484035f6118a2565b73ffffffffffffffffffffffffffffffffffffffff8316611b2d576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f6004820152602401611166565b73ffffffffffffffffffffffffffffffffffffffff8216611b7c576040517fec442f050000000000000000000000000000000000000000000000000000000081525f6004820152602401611166565b6107b3838383611ce4565b60405173ffffffffffffffffffffffffffffffffffffffff84811660248301528381166044830152606482018390526119e29186918216906323b872dd90608401611661565b73ffffffffffffffffffffffffffffffffffffffff8216611c1c576040517fec442f050000000000000000000000000000000000000000000000000000000081525f6004820152602401611166565b6106585f8383611ce4565b5f818152600283016020526040812054819080611c5457611c48858561211d565b92505f9150610dc09050565b600192509050610dc0565b5f81815260028301602052604081205480158015611c845750611c82848461211d565b155b15610d43576040517f02b5668600000000000000000000000000000000000000000000000000000000815260048101849052602401611166565b5f6105b382612128565b5f8181526002830160205260408120819055610d438383612131565b8015611fd75773ffffffffffffffffffffffffffffffffffffffff8084165f81815260076020526040808220549386168252902054911515911515901580611d295750815b8015611d4a575073ffffffffffffffffffffffffffffffffffffffff841615155b8015611d54575080155b15611e0b5773ffffffffffffffffffffffffffffffffffffffff84165f90815260086020526040812090611d866119e8565b90505f611d938383611592565b9150611dad905082611da5888461289d565b859190611a00565b15611e03578673ffffffffffffffffffffffffffffffffffffffff167f68f4429ffe70afd17cd51d3c12265a7698579e0dc36b7099e2f6d5263e739d3983604051611dfa91815260200190565b60405180910390a25b505050611fd4565b81158015611e165750805b15611f4f5773ffffffffffffffffffffffffffffffffffffffff85165f90815260086020526040812090611e498261145f565b90505f805b8251811015611f46575f838281518110611e6a57611e6a612823565b602002602001015190505f611e8882876115ad90919063ffffffff16565b905088611e95828661289d565b1115611ec6575f611ea6858b612907565b9050611ebe83611eb68385612907565b899190611a00565b509050611f22565b611ed086836115c2565b508a73ffffffffffffffffffffffffffffffffffffffff167f5981e4d35a45c9e8c96ae51ca0f24127eaad820537621c89bbe1ba8b1712b61b83604051611f1991815260200190565b60405180910390a25b611f2c818561289d565b9350888410611f3c575050611f46565b5050600101611e4e565b50505050611fd4565b73ffffffffffffffffffffffffffffffffffffffff851615801590611f72575081155b8015611f93575073ffffffffffffffffffffffffffffffffffffffff841615155b8015611f9d575080155b15611fd4576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505b6107b383838361213c565b5f8060205f8451602086015f885af180612001576040513d5f823e3d81fd5b50505f513d91508115612018578060011415612032565b73ffffffffffffffffffffffffffffffffffffffff84163b155b156119e2576040517f5274afe700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85166004820152602401611166565b5f805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f82815260028401602052604081208290556106cd84846122e3565b60605f610d43836122ee565b5f610d438383612347565b5f6105b3825490565b5f610d43838361235e565b73ffffffffffffffffffffffffffffffffffffffff8316612173578060035f828254612168919061289d565b909155506122239050565b73ffffffffffffffffffffffffffffffffffffffff83165f90815260016020526040902054818110156121f8576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff851660048201526024810182905260448101839052606401611166565b73ffffffffffffffffffffffffffffffffffffffff84165f9081526001602052604090209082900390555b73ffffffffffffffffffffffffffffffffffffffff821661224c57600380548290039055612277565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526001602052604090208054820190555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516122d691815260200190565b60405180910390a3505050565b5f610d438383612441565b6060815f0180548060200260200160405190810160405280929190818152602001828054801561233b57602002820191905f5260205f20905b815481526020019060010190808311612327575b50505050509050919050565b5f8181526001830160205260408120541515610d43565b5f8181526001830160205260408120548015612438575f612380600183612907565b85549091505f9061239390600190612907565b90508082146123f2575f865f0182815481106123b1576123b1612823565b905f5260205f200154905080875f0184815481106123d1576123d1612823565b5f918252602080832090910192909255918252600188019052604090208390555b85548690806124035761240361298c565b600190038181905f5260205f20015f90559055856001015f8681526020019081526020015f205f9055600193505050506105b3565b5f9150506105b3565b5f81815260018301602052604081205461248657508154600181810184555f8481526020808220909301849055845484825282860190935260409020919091556105b3565b505f6105b3565b5f602080835283518060208501525f5b818110156124b95785810183015185820160400152820161249d565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610ad4575f80fd5b5f8060408385031215612529575f80fd5b8235612534816124f7565b946020939093013593505050565b8015158114610ad4575f80fd5b803561091a81612542565b5f805f6060848603121561256c575f80fd5b8335612577816124f7565b925060208401359150604084013561258e81612542565b809150509250925092565b5f602082840312156125a9575f80fd5b5035919050565b5f602082840312156125c0575f80fd5b8135610d43816124f7565b5f815180845260208085019450602084015f5b838110156125fa578151875295820195908201906001016125de565b509495945050505050565b602081525f610d4360208301846125cb565b5f805f60608486031215612629575f80fd5b8335612634816124f7565b92506020840135612644816124f7565b929592945050506040919091013590565b604081525f61266760408301856125cb565b828103602084015261060781856125cb565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f805f606084860312156126b8575f80fd5b83356126c3816124f7565b925060208481013567ffffffffffffffff808211156126e0575f80fd5b818701915087601f8301126126f3575f80fd5b81358181111561270557612705612679565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f8301168101818110858211171561274857612748612679565b60405291825284820192508381018501918a831115612765575f80fd5b938501935b828510156127835784358452938501939285019261276a565b8097505050505050506127986040850161254f565b90509250925092565b5f80604083850312156127b2575f80fd5b82356127bd816124f7565b915060208301356127cd816124f7565b809150509250929050565b600181811c908216806127ec57607f821691505b60208210810361174b577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60208284031215612860575f80fd5b815160ff81168114610d43575f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b808201808211156105b3576105b3612870565b80820281158282048414176105b3576105b3612870565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f82612902576129026128c7565b500490565b818103818111156105b3576105b3612870565b5f6020828403121561292a575f80fd5b5051919050565b5f60208284031215612941575f80fd5b8151610d43816124f7565b5f806040838503121561295d575f80fd5b8251612968816124f7565b60208401519092506127cd81612542565b5f82612987576129876128c7565b500690565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220621da20fd933d88e564e8fa81fccba5be2fb5b8f92f0f2087fc13dc453fedbc164736f6c634300081800330000000000000000000000004860c903f6ad709c3eda46d3d502943f184d4315000000000000000000000000b49f50798b7014034bd7804912cc40dde9ef82a2000000000000000000000000000000000000000000000000000000000000dead0000000000000000000000008e15c8d399e86d4fd7b427d42f06c60cdd9397e700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000a5265776172642045554c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047245554c00000000000000000000000000000000000000000000000000000000

    Deployed Bytecode

    0x608060405234801561000f575f80fd5b50600436106101dc575f3560e01c80636f307dc311610109578063a70354a11161009e578063ccaf1c4b1161006e578063ccaf1c4b14610467578063dd62ed3e14610486578063e1869352146104cb578063f2fde38b146104f3575f80fd5b8063a70354a11461041f578063a9059cbb14610445578063bd95c01714610458578063cac01cbc14610460575f80fd5b80638d2589b0116100d95780638d2589b0146103c75780638da5cb5b146103e7578063907974981461040457806395d89b4114610417575f80fd5b80636f307dc31461033057806370a0823114610377578063715018a6146103ac5780638a677c9f146103b4575f80fd5b8063224b8d6e1161017f578063313ce5671161014f578063313ce567146102cf578063421a10de146102e9578063612d793d146102fc57806367f747ef1461031d575f80fd5b8063224b8d6e14610276578063235d94f31461028957806323b872dd146102a95780632f4f21e2146102bc575f80fd5b806318160ddd116101ba57806318160ddd146102335780631ab27b951461023b5780631b70209a1461024e578063205c287814610263575f80fd5b8063015f011e146101e057806306fdde03146101fb578063095ea7b314610210575b5f80fd5b6101e8600181565b6040519081526020015b60405180910390f35b610203610506565b6040516101f2919061248d565b61022361021e366004612518565b610596565b60405190151581526020016101f2565b6003546101e8565b61022361024936600461255a565b6105b9565b61026161025c366004612518565b610610565b005b610223610271366004612518565b61065c565b610261610284366004612599565b6106d5565b61029c6102973660046125b0565b6107b8565b6040516101f29190612605565b6102236102b7366004612617565b6107e8565b6102236102ca366004612518565b6107f4565b6102d7610865565b60405160ff90911681526020016101f2565b6101e86102f7366004612518565b61091f565b61030f61030a3660046125b0565b61094f565b6040516101f2929190612655565b61026161032b3660046125b0565b610a33565b7f0000000000000000000000008e15c8d399e86d4fd7b427d42f06c60cdd9397e75b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101f2565b6101e86103853660046125b0565b73ffffffffffffffffffffffffffffffffffffffff165f9081526001602052604090205490565b610261610ad7565b6101e86103c23660046125b0565b610b09565b6006546103529073ffffffffffffffffffffffffffffffffffffffff1681565b5f5473ffffffffffffffffffffffffffffffffffffffff16610352565b6102236104123660046126a6565b610b36565b610203610d29565b7f0000000000000000000000004860c903f6ad709c3eda46d3d502943f184d4315610352565b610223610453366004612518565b610d38565b6101e8600281565b6101e85f81565b6101e86104753660046125b0565b60076020525f908152604090205481565b6101e86104943660046127a1565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260026020908152604080832093909416825291909152205490565b6104de6104d9366004612518565b610d4a565b604080519283526020830191909152016101f2565b6102616105013660046125b0565b610dc7565b606060048054610515906127d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610541906127d8565b801561058c5780601f106105635761010080835404028352916020019161058c565b820191905f5260205f20905b81548152906001019060200180831161056f57829003601f168201915b5050505050905090565b5f806105a0610ddb565b90506105ad818585610de4565b60019150505b92915050565b6040805160018082528183019092525f918291906020808301908036833701905050905083815f815181106105f0576105f0612823565b602002602001018181525050610607858285610b36565b95945050505050565b61061a6001610df1565b506106236110c0565b73ffffffffffffffffffffffffffffffffffffffff82165f908152600760205260409020548114610658576106588282611171565b5050565b5f610665610ddb565b73ffffffffffffffffffffffffffffffffffffffff81165f908152600760205260409020546001146106c3576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106cd84846113b2565b949350505050565b6106dd610ddb565b73ffffffffffffffffffffffffffffffffffffffff81165f90815260076020526040902054610738576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f610741610ddb565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526007602052604090205490915083146107b357600183036107a9576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107b38184611171565b505050565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526008602052604090206060906105b39061145f565b5f6106cd84848461146b565b5f6107fd610ddb565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526007602052604090205460011461085b576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106cd8484611498565b5f7f0000000000000000000000008e15c8d399e86d4fd7b427d42f06c60cdd9397e773ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561090b575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261090891810190612850565b60015b61091a5750601290565b905090565b919050565b73ffffffffffffffffffffffffffffffffffffffff82165f90815260086020526040812081906106079084611592565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526008602052604081206060918291906109828261145f565b90505f815167ffffffffffffffff81111561099f5761099f612679565b6040519080825280602002602001820160405280156109c8578160200160208202803683370190505b5090505f5b8251811015610a2757610a028382815181106109eb576109eb612823565b6020026020010151856115ad90919063ffffffff16565b828281518110610a1457610a14612823565b60209081029190910101526001016109cd565b50909590945092505050565b610a3d6001610df1565b50610a466110c0565b60065473ffffffffffffffffffffffffffffffffffffffff828116911614610ad457600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517fa2697f04f820814f2c44a4a80765636bd7cc0539020abdaccf5b959537c0a542905f90a25b50565b6040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81165f9081526008602052604081206105b3906115b8565b5f7f0000000000000000000000008e15c8d399e86d4fd7b427d42f06c60cdd9397e781610b61610ddb565b90505f805f5b8751811015610c48575f888281518110610b8357610b83612823565b602002602001015190505f80610b998784610d4a565b73ffffffffffffffffffffffffffffffffffffffff89165f9081526008602052604090209193509150610bcc90846115c2565b15610c22578673ffffffffffffffffffffffffffffffffffffffff167f5981e4d35a45c9e8c96ae51ca0f24127eaad820537621c89bbe1ba8b1712b61b84604051610c1991815260200190565b60405180910390a25b610c2c828761289d565b9550610c38818661289d565b9450505050806001019050610b67565b50610c5c83610c57838561289d565b6115cd565b610c7d73ffffffffffffffffffffffffffffffffffffffff85168984611627565b8015610d1b5785610cba576040517f93c4aad800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065473ffffffffffffffffffffffffffffffffffffffff16610d198115610ce25781610cfb565b5f5473ffffffffffffffffffffffffffffffffffffffff165b73ffffffffffffffffffffffffffffffffffffffff87169084611627565b505b506001979650505050505050565b606060058054610515906127d8565b5f610d4383836116a8565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff82165f90815260086020526040812081908190610d7c9085611592565b9150505f610d89856116bf565b90505f670de0b6b3a7640000610d9f83856128b0565b610da991906128f4565b90505f610db68285612907565b9195509093505050505b9250929050565b610dd16001610df1565b50610ad481611751565b5f6109156117b1565b6107b383838360016118a2565b5f73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000004860c903f6ad709c3eda46d3d502943f184d43151633036110b9575f7f0000000000000000000000004860c903f6ad709c3eda46d3d502943f184d431573ffffffffffffffffffffffffffffffffffffffff16633a1a3a1d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e99573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ebd919061291a565b905077ff00000000000000000000000000000000000000000000008116151580610eff575076ff00000000000000000000000000000000000000000000811615155b80610f21575075ff000000000000000000000000000000000000000000811615155b15610f58576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81168315610d43576040517f442b172c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301525f917f0000000000000000000000004860c903f6ad709c3eda46d3d502943f184d43159091169063442b172c90602401602060405180830381865afa158015611003573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110279190612931565b905073ffffffffffffffffffffffffffffffffffffffff81161580159061107a57508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b156110b1576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b509392505050565b5033919050565b6110c8610ddb565b73ffffffffffffffffffffffffffffffffffffffff166110fc5f5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161461116f5761111f610ddb565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911660048201526024015b60405180910390fd5b565b60028111156111ac576040517fd5fb0c3c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806112705773ffffffffffffffffffffffffffffffffffffffff82165f90815260016020526040902054801561126a575f6111e56119e8565b73ffffffffffffffffffffffffffffffffffffffff85165f908152600860205260409020909150611217908284611a00565b508373ffffffffffffffffffffffffffffffffffffffff167f68f4429ffe70afd17cd51d3c12265a7698579e0dc36b7099e2f6d5263e739d398260405161126091815260200190565b60405180910390a2505b5061134d565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526008602052604081209061129e8261145f565b90505f5b8151811015611349576112d78282815181106112c0576112c0612823565b6020026020010151846115c290919063ffffffff16565b508473ffffffffffffffffffffffffffffffffffffffff167f5981e4d35a45c9e8c96ae51ca0f24127eaad820537621c89bbe1ba8b1712b61b83838151811061132257611322612823565b602002602001015160405161133991815260200190565b60405180910390a26001016112a2565b5050505b73ffffffffffffffffffffffffffffffffffffffff82165f8181526007602052604090819020839055517faa5d9115062744c4c316306720e23b83bac0a85ffd8fc0b0a43cb9e457fc62b3906113a69084815260200190565b60405180910390a25050565b5f3073ffffffffffffffffffffffffffffffffffffffff84160361141a576040517fec442f0500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84166004820152602401611166565b61142b611425610ddb565b836115cd565b6114567f0000000000000000000000008e15c8d399e86d4fd7b427d42f06c60cdd9397e78484611627565b50600192915050565b60605f610d4383611a0c565b5f80611475610ddb565b9050611482858285611a17565b61148d858585611ade565b506001949350505050565b5f806114a2610ddb565b90503073ffffffffffffffffffffffffffffffffffffffff8216036114f5576040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152306004820152602401611166565b3073ffffffffffffffffffffffffffffffffffffffff85160361155c576040517fec442f0500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85166004820152602401611166565b6115887f0000000000000000000000008e15c8d399e86d4fd7b427d42f06c60cdd9397e7823086611b87565b6105ad8484611bcd565b5f8080806115a08686611c27565b9097909650945050505050565b5f610d438383611c5f565b5f6105b382611cbe565b5f610d438383611cc8565b73ffffffffffffffffffffffffffffffffffffffff821661161c576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f6004820152602401611166565b610658825f83611ce4565b60405173ffffffffffffffffffffffffffffffffffffffff8381166024830152604482018390526107b391859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611fe2565b5f806116b2610ddb565b90506105ad818585611ade565b5f428211156116cf57505f919050565b428290036201518081116116ed57506702c68af0bb14000092915050565b62ed4e0081106117075750670de0b6b3a764000092915050565b62ebfc80670b1a2bc2ec5000007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeae80830102046702c68af0bb14000001915050919050565b50919050565b6117596110c0565b73ffffffffffffffffffffffffffffffffffffffff81166117a8576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f6004820152602401611166565b610ad481612081565b5f3373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000004860c903f6ad709c3eda46d3d502943f184d431516810361091a576040517f18503a1e0000000000000000000000000000000000000000000000000000000081525f60048201527f0000000000000000000000004860c903f6ad709c3eda46d3d502943f184d431573ffffffffffffffffffffffffffffffffffffffff16906318503a1e906024016040805180830381865afa158015611877573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061189b919061294c565b5092915050565b73ffffffffffffffffffffffffffffffffffffffff84166118f1576040517fe602df050000000000000000000000000000000000000000000000000000000081525f6004820152602401611166565b73ffffffffffffffffffffffffffffffffffffffff8316611940576040517f94280d620000000000000000000000000000000000000000000000000000000081525f6004820152602401611166565b73ffffffffffffffffffffffffffffffffffffffff8085165f90815260026020908152604080832093871683529290522082905580156119e2578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516119d991815260200190565b60405180910390a35b50505050565b5f6119f66201518042612979565b6109159042612907565b5f6106cd8484846120f5565b60606105b382612111565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600260209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119e25781811015611ad0576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff841660048201526024810182905260448101839052606401611166565b6119e284848484035f6118a2565b73ffffffffffffffffffffffffffffffffffffffff8316611b2d576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f6004820152602401611166565b73ffffffffffffffffffffffffffffffffffffffff8216611b7c576040517fec442f050000000000000000000000000000000000000000000000000000000081525f6004820152602401611166565b6107b3838383611ce4565b60405173ffffffffffffffffffffffffffffffffffffffff84811660248301528381166044830152606482018390526119e29186918216906323b872dd90608401611661565b73ffffffffffffffffffffffffffffffffffffffff8216611c1c576040517fec442f050000000000000000000000000000000000000000000000000000000081525f6004820152602401611166565b6106585f8383611ce4565b5f818152600283016020526040812054819080611c5457611c48858561211d565b92505f9150610dc09050565b600192509050610dc0565b5f81815260028301602052604081205480158015611c845750611c82848461211d565b155b15610d43576040517f02b5668600000000000000000000000000000000000000000000000000000000815260048101849052602401611166565b5f6105b382612128565b5f8181526002830160205260408120819055610d438383612131565b8015611fd75773ffffffffffffffffffffffffffffffffffffffff8084165f81815260076020526040808220549386168252902054911515911515901580611d295750815b8015611d4a575073ffffffffffffffffffffffffffffffffffffffff841615155b8015611d54575080155b15611e0b5773ffffffffffffffffffffffffffffffffffffffff84165f90815260086020526040812090611d866119e8565b90505f611d938383611592565b9150611dad905082611da5888461289d565b859190611a00565b15611e03578673ffffffffffffffffffffffffffffffffffffffff167f68f4429ffe70afd17cd51d3c12265a7698579e0dc36b7099e2f6d5263e739d3983604051611dfa91815260200190565b60405180910390a25b505050611fd4565b81158015611e165750805b15611f4f5773ffffffffffffffffffffffffffffffffffffffff85165f90815260086020526040812090611e498261145f565b90505f805b8251811015611f46575f838281518110611e6a57611e6a612823565b602002602001015190505f611e8882876115ad90919063ffffffff16565b905088611e95828661289d565b1115611ec6575f611ea6858b612907565b9050611ebe83611eb68385612907565b899190611a00565b509050611f22565b611ed086836115c2565b508a73ffffffffffffffffffffffffffffffffffffffff167f5981e4d35a45c9e8c96ae51ca0f24127eaad820537621c89bbe1ba8b1712b61b83604051611f1991815260200190565b60405180910390a25b611f2c818561289d565b9350888410611f3c575050611f46565b5050600101611e4e565b50505050611fd4565b73ffffffffffffffffffffffffffffffffffffffff851615801590611f72575081155b8015611f93575073ffffffffffffffffffffffffffffffffffffffff841615155b8015611f9d575080155b15611fd4576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505b6107b383838361213c565b5f8060205f8451602086015f885af180612001576040513d5f823e3d81fd5b50505f513d91508115612018578060011415612032565b73ffffffffffffffffffffffffffffffffffffffff84163b155b156119e2576040517f5274afe700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85166004820152602401611166565b5f805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f82815260028401602052604081208290556106cd84846122e3565b60605f610d43836122ee565b5f610d438383612347565b5f6105b3825490565b5f610d43838361235e565b73ffffffffffffffffffffffffffffffffffffffff8316612173578060035f828254612168919061289d565b909155506122239050565b73ffffffffffffffffffffffffffffffffffffffff83165f90815260016020526040902054818110156121f8576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff851660048201526024810182905260448101839052606401611166565b73ffffffffffffffffffffffffffffffffffffffff84165f9081526001602052604090209082900390555b73ffffffffffffffffffffffffffffffffffffffff821661224c57600380548290039055612277565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526001602052604090208054820190555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516122d691815260200190565b60405180910390a3505050565b5f610d438383612441565b6060815f0180548060200260200160405190810160405280929190818152602001828054801561233b57602002820191905f5260205f20905b815481526020019060010190808311612327575b50505050509050919050565b5f8181526001830160205260408120541515610d43565b5f8181526001830160205260408120548015612438575f612380600183612907565b85549091505f9061239390600190612907565b90508082146123f2575f865f0182815481106123b1576123b1612823565b905f5260205f200154905080875f0184815481106123d1576123d1612823565b5f918252602080832090910192909255918252600188019052604090208390555b85548690806124035761240361298c565b600190038181905f5260205f20015f90559055856001015f8681526020019081526020015f205f9055600193505050506105b3565b5f9150506105b3565b5f81815260018301602052604081205461248657508154600181810184555f8481526020808220909301849055845484825282860190935260409020919091556105b3565b505f6105b3565b5f602080835283518060208501525f5b818110156124b95785810183015185820160400152820161249d565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610ad4575f80fd5b5f8060408385031215612529575f80fd5b8235612534816124f7565b946020939093013593505050565b8015158114610ad4575f80fd5b803561091a81612542565b5f805f6060848603121561256c575f80fd5b8335612577816124f7565b925060208401359150604084013561258e81612542565b809150509250925092565b5f602082840312156125a9575f80fd5b5035919050565b5f602082840312156125c0575f80fd5b8135610d43816124f7565b5f815180845260208085019450602084015f5b838110156125fa578151875295820195908201906001016125de565b509495945050505050565b602081525f610d4360208301846125cb565b5f805f60608486031215612629575f80fd5b8335612634816124f7565b92506020840135612644816124f7565b929592945050506040919091013590565b604081525f61266760408301856125cb565b828103602084015261060781856125cb565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f805f606084860312156126b8575f80fd5b83356126c3816124f7565b925060208481013567ffffffffffffffff808211156126e0575f80fd5b818701915087601f8301126126f3575f80fd5b81358181111561270557612705612679565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f8301168101818110858211171561274857612748612679565b60405291825284820192508381018501918a831115612765575f80fd5b938501935b828510156127835784358452938501939285019261276a565b8097505050505050506127986040850161254f565b90509250925092565b5f80604083850312156127b2575f80fd5b82356127bd816124f7565b915060208301356127cd816124f7565b809150509250929050565b600181811c908216806127ec57607f821691505b60208210810361174b577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60208284031215612860575f80fd5b815160ff81168114610d43575f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b808201808211156105b3576105b3612870565b80820281158282048414176105b3576105b3612870565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f82612902576129026128c7565b500490565b818103818111156105b3576105b3612870565b5f6020828403121561292a575f80fd5b5051919050565b5f60208284031215612941575f80fd5b8151610d43816124f7565b5f806040838503121561295d575f80fd5b8251612968816124f7565b60208401519092506127cd81612542565b5f82612987576129876128c7565b500690565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220621da20fd933d88e564e8fa81fccba5be2fb5b8f92f0f2087fc13dc453fedbc164736f6c63430008180033

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

    0000000000000000000000004860c903f6ad709c3eda46d3d502943f184d4315000000000000000000000000b49f50798b7014034bd7804912cc40dde9ef82a2000000000000000000000000000000000000000000000000000000000000dead0000000000000000000000008e15c8d399e86d4fd7b427d42f06c60cdd9397e700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000a5265776172642045554c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047245554c00000000000000000000000000000000000000000000000000000000

    -----Decoded View---------------
    Arg [0] : _evc (address): 0x4860C903f6Ad709c3eDA46D3D502943f184D4315
    Arg [1] : _owner (address): 0xb49F50798B7014034bd7804912CC40ddE9eF82A2
    Arg [2] : _receiver (address): 0x000000000000000000000000000000000000dEaD
    Arg [3] : _underlying (address): 0x8e15C8D399e86d4FD7B427D42f06c60cDD9397e7
    Arg [4] : _name (string): Reward EUL
    Arg [5] : _symbol (string): rEUL

    -----Encoded View---------------
    10 Constructor Arguments found :
    Arg [0] : 0000000000000000000000004860c903f6ad709c3eda46d3d502943f184d4315
    Arg [1] : 000000000000000000000000b49f50798b7014034bd7804912cc40dde9ef82a2
    Arg [2] : 000000000000000000000000000000000000000000000000000000000000dead
    Arg [3] : 0000000000000000000000008e15c8d399e86d4fd7b427d42f06c60cdd9397e7
    Arg [4] : 00000000000000000000000000000000000000000000000000000000000000c0
    Arg [5] : 0000000000000000000000000000000000000000000000000000000000000100
    Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
    Arg [7] : 5265776172642045554c00000000000000000000000000000000000000000000
    Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
    Arg [9] : 7245554c00000000000000000000000000000000000000000000000000000000


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