ETH Price: $2,424.27 (-1.81%)
 

Overview

Max Total Supply

10.525551084083949072 uETH

Holders

33 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
sylvnco.eth
Balance
0.008969768067012702 uETH

Value
$0.00
0xeF2623fef4519158A93E47cc8BaF97e0B93cD40c
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The automated DeFi yield platform with staking services. All the convenience and none of the hassles for smarter access to DeFi yields.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ETHVault

Compiler Version
v0.6.11+commit.5ef660b1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU AGPLv3 license, Audited

Contract Source Code (Solidity)Audit Report

/**
 *Submitted for verification at Etherscan.io on 2021-03-11
*/

// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity 0.6.11;

// File: @openzeppelin/contracts/math/SafeMath.sol

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint a, uint b) internal pure returns (bool, uint) {
        uint c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint a, uint b) internal pure returns (bool, uint) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint a, uint b) internal pure returns (bool, uint) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint a, uint b) internal pure returns (bool, uint) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint a, uint b) internal pure returns (bool, uint) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint a, uint b) internal pure returns (uint) {
        uint c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint a, uint b) internal pure returns (uint) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint a, uint b) internal pure returns (uint) {
        if (a == 0) return 0;
        uint c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint a, uint b) internal pure returns (uint) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint a, uint b) internal pure returns (uint) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint a,
        uint b,
        string memory errorMessage
    ) internal pure returns (uint) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint a,
        uint b,
        string memory errorMessage
    ) internal pure returns (uint) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint a,
        uint b,
        string memory errorMessage
    ) internal pure returns (uint) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

// File: @openzeppelin/contracts/utils/ReentrancyGuard.sol

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint private constant _NOT_ENTERED = 1;
    uint private constant _ENTERED = 2;

    uint private _status;

    constructor() internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint amount
    ) external returns (bool);

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

// File: @openzeppelin/contracts/utils/Address.sol

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @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://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 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 {
    using SafeMath for uint;
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transfer.selector, to, value)
        );
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transferFrom.selector, from, to, value)
        );
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.approve.selector, spender, value)
        );
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint value
    ) internal {
        uint newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.approve.selector, spender, newAllowance)
        );
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint value
    ) internal {
        uint newAllowance =
            token.allowance(address(this), spender).sub(
                value,
                "SafeERC20: decreased allowance below zero"
            );
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.approve.selector, spender, newAllowance)
        );
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata =
            address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            // solhint-disable-next-line max-line-length
            require(
                abi.decode(returndata, (bool)),
                "SafeERC20: ERC20 operation did not succeed"
            );
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol

/*
 * @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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint;

    mapping(address => uint) private _balances;

    mapping(address => mapping(address => uint)) private _allowances;

    uint private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint)
    {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint amount
    ) internal virtual {}
}

// File: contracts/protocol/IStrategy.sol

/*
version 1.2.0

Changes

Changes listed here do not affect interaction with other contracts (Vault and Controller)
- removed function assets(address _token) external view returns (bool);
- remove function deposit(uint), declared in IStrategyERC20
- add function setSlippage(uint _slippage);
- add function setDelta(uint _delta);
*/

interface IStrategy {
    function admin() external view returns (address);

    function controller() external view returns (address);

    function vault() external view returns (address);

    /*
    @notice Returns address of underlying asset (ETH or ERC20)
    @dev Must return 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE for ETH strategy
    */
    function underlying() external view returns (address);

    /*
    @notice Returns total amount of underlying transferred from vault
    */
    function totalDebt() external view returns (uint);

    function performanceFee() external view returns (uint);

    function slippage() external view returns (uint);

    /* 
    @notice Multiplier used to check total underlying <= total debt * delta / DELTA_MIN
    */
    function delta() external view returns (uint);

    /*
    @dev Flag to force exit in case normal exit fails
    */
    function forceExit() external view returns (bool);

    function setAdmin(address _admin) external;

    function setController(address _controller) external;

    function setPerformanceFee(uint _fee) external;

    function setSlippage(uint _slippage) external;

    function setDelta(uint _delta) external;

    function setForceExit(bool _forceExit) external;

    /*
    @notice Returns amount of underlying asset locked in this contract
    @dev Output may vary depending on price of liquidity provider token
         where the underlying asset is invested
    */
    function totalAssets() external view returns (uint);

    /*
    @notice Withdraw `_amount` underlying asset
    @param amount Amount of underlying asset to withdraw
    */
    function withdraw(uint _amount) external;

    /*
    @notice Withdraw all underlying asset from strategy
    */
    function withdrawAll() external;

    /*
    @notice Sell any staking rewards for underlying and then deposit undelying
    */
    function harvest() external;

    /*
    @notice Increase total debt if profit > 0 and total assets <= max,
            otherwise transfers profit to vault.
    @dev Guard against manipulation of external price feed by checking that
         total assets is below factor of total debt
    */
    function skim() external;

    /*
    @notice Exit from strategy
    @dev Must transfer all underlying tokens back to vault
    */
    function exit() external;

    /*
    @notice Transfer token accidentally sent here to admin
    @param _token Address of token to transfer
    @dev _token must not be equal to underlying token
    */
    function sweep(address _token) external;
}

// File: contracts/protocol/IStrategyETH.sol

interface IStrategyETH is IStrategy {
    /*
    @notice Deposit ETH
    */
    function deposit() external payable;
}

// File: contracts/protocol/IVault.sol

/*
version 1.2.0

Changes
- function deposit(uint) declared in IERC20Vault
*/

interface IVault {
    function admin() external view returns (address);

    function controller() external view returns (address);

    function timeLock() external view returns (address);

    /*
    @notice For EthVault, must return 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE
    */
    function token() external view returns (address);

    function strategy() external view returns (address);

    function strategies(address _strategy) external view returns (bool);

    function reserveMin() external view returns (uint);

    function withdrawFee() external view returns (uint);

    function paused() external view returns (bool);

    function whitelist(address _addr) external view returns (bool);

    function setWhitelist(address _addr, bool _approve) external;

    function setAdmin(address _admin) external;

    function setController(address _controller) external;

    function setTimeLock(address _timeLock) external;

    function setPause(bool _paused) external;

    function setReserveMin(uint _reserveMin) external;

    function setWithdrawFee(uint _fee) external;

    /*
    @notice Returns the amount of asset (ETH or ERC20) in the vault
    */
    function balanceInVault() external view returns (uint);

    /*
    @notice Returns the estimate amount of asset in strategy
    @dev Output may vary depending on price of liquidity provider token
         where the underlying asset is invested
    */
    function balanceInStrategy() external view returns (uint);

    /*
    @notice Returns amount of tokens invested strategy
    */
    function totalDebtInStrategy() external view returns (uint);

    /*
    @notice Returns the total amount of asset in vault + total debt
    */
    function totalAssets() external view returns (uint);

    /*
    @notice Returns minimum amount of tokens that should be kept in vault for
            cheap withdraw
    @return Reserve amount
    */
    function minReserve() external view returns (uint);

    /*
    @notice Returns the amount of tokens available to be invested
    */
    function availableToInvest() external view returns (uint);

    /*
    @notice Approve strategy
    @param _strategy Address of strategy
    */
    function approveStrategy(address _strategy) external;

    /*
    @notice Revoke strategy
    @param _strategy Address of strategy
    */
    function revokeStrategy(address _strategy) external;

    /*
    @notice Set strategy
    @param _min Minimum undelying asset current strategy must return. Prevents slippage
    */
    function setStrategy(address _strategy, uint _min) external;

    /*
    @notice Transfers asset in vault to strategy
    */
    function invest() external;

    /*
    @notice Calculate amount of asset that can be withdrawn
    @param _shares Amount of shares
    @return Amount of asset that can be withdrawn
    */
    function getExpectedReturn(uint _shares) external view returns (uint);

    /*
    @notice Withdraw asset
    @param _shares Amount of shares to burn
    @param _min Minimum amount of asset expected to return
    */
    function withdraw(uint _shares, uint _min) external;

    /*
    @notice Transfer asset in vault to admin
    @param _token Address of asset to transfer
    @dev _token must not be equal to vault asset
    */
    function sweep(address _token) external;
}

// File: contracts/protocol/IETHVault.sol

interface IETHVault is IVault {
    /*
    @notice Deposit ETH into this vault
    */
    function deposit() external payable;
}

// File: contracts/protocol/IController.sol

interface IController {
    function ADMIN_ROLE() external view returns (bytes32);

    function HARVESTER_ROLE() external view returns (bytes32);

    function admin() external view returns (address);

    function treasury() external view returns (address);

    function setAdmin(address _admin) external;

    function setTreasury(address _treasury) external;

    function grantRole(bytes32 _role, address _addr) external;

    function revokeRole(bytes32 _role, address _addr) external;

    /*
    @notice Set strategy for vault
    @param _vault Address of vault
    @param _strategy Address of strategy
    @param _min Minimum undelying token current strategy must return. Prevents slippage
    */
    function setStrategy(
        address _vault,
        address _strategy,
        uint _min
    ) external;

    // calls to strategy
    /*
    @notice Invest token in vault into strategy
    @param _vault Address of vault
    */
    function invest(address _vault) external;

    function harvest(address _strategy) external;

    function skim(address _strategy) external;

    /*
    @notice Withdraw from strategy to vault
    @param _strategy Address of strategy
    @param _amount Amount of underlying token to withdraw
    @param _min Minimum amount of underlying token to withdraw
    */
    function withdraw(
        address _strategy,
        uint _amount,
        uint _min
    ) external;

    /*
    @notice Withdraw all from strategy to vault
    @param _strategy Address of strategy
    @param _min Minimum amount of underlying token to withdraw
    */
    function withdrawAll(address _strategy, uint _min) external;

    /*
    @notice Exit from strategy
    @param _strategy Address of strategy
    @param _min Minimum amount of underlying token to withdraw
    */
    function exit(address _strategy, uint _min) external;
}

// File: contracts/ETHVault.sol

/*
version 1.2.0
*/

contract ETHVault is IETHVault, ERC20, ReentrancyGuard {
    using SafeERC20 for IERC20;
    using SafeMath for uint;

    event SetStrategy(address strategy);
    event ApproveStrategy(address strategy);
    event RevokeStrategy(address strategy);
    event SetWhitelist(address addr, bool approved);

    // WARNING: not address of ETH, used as placeholder
    address private constant ETH = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;

    address public override admin;
    address public override controller;
    address public override timeLock;
    address public constant override token = ETH;
    address public override strategy;

    // mapping of approved strategies
    mapping(address => bool) public override strategies;

    // percentange of ETH reserved in vault for cheap withdraw
    uint public override reserveMin = 500;
    uint private constant RESERVE_MAX = 10000;

    // Denominator used to calculate fees
    uint private constant FEE_MAX = 10000;

    uint public override withdrawFee;
    uint private constant WITHDRAW_FEE_CAP = 500; // upper limit to withdrawFee

    bool public override paused;

    // whitelisted addresses
    // used to prevent flash loah attacks
    mapping(address => bool) public override whitelist;

    constructor(address _controller, address _timeLock)
        public
        ERC20("unagii_ETH", "uETH")
    {
        require(_controller != address(0), "controller = zero address");
        require(_timeLock != address(0), "time lock = zero address");

        // ETH decimals = 18 and ERC20 defaults to 18 decimals

        admin = msg.sender;
        controller = _controller;
        timeLock = _timeLock;
    }

    /*
    @dev Only allow ETH from current strategy
    @dev EOA cannot accidentally send ETH into this vault
    */
    receive() external payable {
        require(msg.sender == strategy, "msg.sender != strategy");
    }

    modifier onlyAdmin() {
        require(msg.sender == admin, "!admin");
        _;
    }

    modifier onlyTimeLock() {
        require(msg.sender == timeLock, "!time lock");
        _;
    }

    modifier onlyAdminOrController() {
        require(msg.sender == admin || msg.sender == controller, "!authorized");
        _;
    }

    modifier whenStrategyDefined() {
        require(strategy != address(0), "strategy = zero address");
        _;
    }

    modifier whenNotPaused() {
        require(!paused, "paused");
        _;
    }

    /*
    @dev modifier to prevent flash loan
    @dev caller is restricted to EOA or whitelisted contract
    @dev Warning: Users can have their funds stuck if shares is transferred to a contract
    */
    modifier guard() {
        require((msg.sender == tx.origin) || whitelist[msg.sender], "!whitelist");
        _;
    }

    function setAdmin(address _admin) external override onlyAdmin {
        require(_admin != address(0), "admin = zero address");
        admin = _admin;
    }

    function setController(address _controller) external override onlyAdmin {
        require(_controller != address(0), "controller = zero address");
        controller = _controller;
    }

    function setTimeLock(address _timeLock) external override onlyTimeLock {
        require(_timeLock != address(0), "time lock = zero address");
        timeLock = _timeLock;
    }

    function setPause(bool _paused) external override onlyAdmin {
        paused = _paused;
    }

    function setWhitelist(address _addr, bool _approve) external override onlyAdmin {
        whitelist[_addr] = _approve;
        emit SetWhitelist(_addr, _approve);
    }

    function setReserveMin(uint _reserveMin) external override onlyAdmin {
        require(_reserveMin <= RESERVE_MAX, "reserve min > max");
        reserveMin = _reserveMin;
    }

    function setWithdrawFee(uint _fee) external override onlyAdmin {
        require(_fee <= WITHDRAW_FEE_CAP, "withdraw fee > cap");
        withdrawFee = _fee;
    }

    function _balanceInVault() private view returns (uint) {
        return address(this).balance;
    }

    /*
    @notice Returns balance of ETH in vault
    @return Amount of ETH in vault
    */
    function balanceInVault() external view override returns (uint) {
        return _balanceInVault();
    }

    function _balanceInStrategy() private view returns (uint) {
        if (strategy == address(0)) {
            return 0;
        }

        return IStrategyETH(strategy).totalAssets();
    }

    /*
    @notice Returns the estimate amount of ETH in strategy
    @dev Output may vary depending on price of liquidity provider token
         where ETH is invested
    */
    function balanceInStrategy() external view override returns (uint) {
        return _balanceInStrategy();
    }

    function _totalDebtInStrategy() private view returns (uint) {
        if (strategy == address(0)) {
            return 0;
        }
        return IStrategyETH(strategy).totalDebt();
    }

    /*
    @notice Returns amount of ETH invested strategy
    */
    function totalDebtInStrategy() external view override returns (uint) {
        return _totalDebtInStrategy();
    }

    function _totalAssets() private view returns (uint) {
        return _balanceInVault().add(_totalDebtInStrategy());
    }

    /*
    @notice Returns the total amount of ETH in vault + total debt
    @return Total amount of ETH in vault + total debt
    */
    function totalAssets() external view override returns (uint) {
        return _totalAssets();
    }

    function _minReserve() private view returns (uint) {
        return _totalAssets().mul(reserveMin) / RESERVE_MAX;
    }

    /*
    @notice Returns minimum amount of ETH that should be kept in vault for
            cheap withdraw
    @return Reserve amount
    */
    function minReserve() external view override returns (uint) {
        return _minReserve();
    }

    function _availableToInvest() private view returns (uint) {
        if (strategy == address(0)) {
            return 0;
        }

        uint balInVault = _balanceInVault();
        uint reserve = _minReserve();

        if (balInVault <= reserve) {
            return 0;
        }

        return balInVault - reserve;
    }

    /*
    @notice Returns amount of ETH available to be invested into strategy
    @return Amount of ETH available to be invested into strategy
    */
    function availableToInvest() external view override returns (uint) {
        return _availableToInvest();
    }

    /*
    @notice Approve strategy
    @param _strategy Address of strategy to revoke
    */
    function approveStrategy(address _strategy) external override onlyTimeLock {
        require(_strategy != address(0), "strategy = zero address");
        strategies[_strategy] = true;

        emit ApproveStrategy(_strategy);
    }

    /*
    @notice Revoke strategy
    @param _strategy Address of strategy to revoke
    */
    function revokeStrategy(address _strategy) external override onlyAdmin {
        require(_strategy != address(0), "strategy = zero address");
        strategies[_strategy] = false;

        emit RevokeStrategy(_strategy);
    }

    /*
    @notice Set strategy to approved strategy
    @param _strategy Address of strategy used
    @param _min Minimum ETH current strategy must return. Prevents slippage
    */
    function setStrategy(address _strategy, uint _min)
        external
        override
        onlyAdminOrController
    {
        require(strategies[_strategy], "!approved");
        require(_strategy != strategy, "new strategy = current strategy");
        require(
            IStrategyETH(_strategy).underlying() == ETH,
            "strategy.underlying != ETH"
        );
        require(
            IStrategyETH(_strategy).vault() == address(this),
            "strategy.vault != vault"
        );

        // withdraw from current strategy
        if (strategy != address(0)) {
            uint balBefore = _balanceInVault();
            IStrategyETH(strategy).exit();
            uint balAfter = _balanceInVault();

            require(balAfter.sub(balBefore) >= _min, "withdraw < min");
        }

        strategy = _strategy;

        emit SetStrategy(strategy);
    }

    /*
    @notice Invest ETH from vault into strategy.
            Some ETH are kept in vault for cheap withdraw.
    */
    function invest()
        external
        override
        whenStrategyDefined
        whenNotPaused
        onlyAdminOrController
    {
        uint amount = _availableToInvest();
        require(amount > 0, "available = 0");

        IStrategyETH(strategy).deposit{value: amount}();
    }

    /*
    @notice Deposit ETH into vault
    */
    function deposit() external payable override whenNotPaused nonReentrant guard {
        require(msg.value > 0, "deposit = 0");

        /*
        need to subtract msg.value to get total ETH before deposit
        totalAssets >= msg.value, since address(this).balance >= msg.value
        */
        uint totalEth = _totalAssets() - msg.value;
        uint totalShares = totalSupply();

        /*
        s = shares to mint
        T = total shares before mint
        d = deposit amount
        A = total ETH in vault + strategy before deposit

        s / (T + s) = d / (A + d)
        s = d / A * T
        */
        uint shares;
        if (totalShares == 0) {
            shares = msg.value;
        } else {
            shares = msg.value.mul(totalShares).div(totalEth);
        }

        _mint(msg.sender, shares);
    }

    function _getExpectedReturn(
        uint _shares,
        uint _balInVault,
        uint _balInStrat
    ) private view returns (uint) {
        /*
        s = shares
        T = total supply of shares
        w = amount of ETH to withdraw
        E = total amount of redeemable ETH in vault + strategy

        s / T = w / E
        w = s / T * E
        */

        /*
        total ETH = ETH in vault + min(total debt, ETH in strat)
        if ETH in strat > total debt, redeemable = total debt
        else redeemable = ETH in strat
        */
        uint totalDebt = _totalDebtInStrategy();
        uint totalEth;
        if (_balInStrat > totalDebt) {
            totalEth = _balInVault.add(totalDebt);
        } else {
            totalEth = _balInVault.add(_balInStrat);
        }

        uint totalShares = totalSupply();
        if (totalShares > 0) {
            return _shares.mul(totalEth) / totalShares;
        }
        return 0;
    }

    /*
    @notice Calculate amount of ETH that can be withdrawn
    @param _shares Amount of shares
    @return Amount of ETH that can be withdrawn
    */
    function getExpectedReturn(uint _shares) external view override returns (uint) {
        uint balInVault = _balanceInVault();
        uint balInStrat = _balanceInStrategy();

        return _getExpectedReturn(_shares, balInVault, balInStrat);
    }

    /*
    @dev WARNING check `_to` is not zero address before calling this function
    */
    function _sendEth(address payable _to, uint _amount) private {
        (bool sent, ) = _to.call{value: _amount}("");
        require(sent, "Send ETH failed");
    }

    /*
    @notice Withdraw ETH
    @param _shares Amount of shares to burn
    @param _min Minimum amount of ETH to return
    @dev Keep `guard` modifier, else attacker can deposit and then use smart
         contract to attack from withdraw
    */
    function withdraw(uint _shares, uint _min) external override nonReentrant guard {
        require(_shares > 0, "shares = 0");

        uint balInVault = _balanceInVault();
        uint balInStrat = _balanceInStrategy();
        uint withdrawAmount = _getExpectedReturn(_shares, balInVault, balInStrat);

        // Must burn after calculating withdraw amount
        _burn(msg.sender, _shares);

        if (balInVault < withdrawAmount) {
            // maximize withdraw amount from strategy
            uint amountFromStrat = withdrawAmount;
            if (balInStrat < withdrawAmount) {
                amountFromStrat = balInStrat;
            }

            IStrategyETH(strategy).withdraw(amountFromStrat);

            uint balAfter = _balanceInVault();
            uint diff = balAfter.sub(balInVault);

            if (diff < amountFromStrat) {
                // withdraw amount - withdraw amount from strat = amount to withdraw from vault
                // diff = actual amount returned from strategy
                // NOTE: withdrawAmount >= amountFromStrat
                withdrawAmount = (withdrawAmount - amountFromStrat).add(diff);
            }

            // transfer to treasury
            uint fee = withdrawAmount.mul(withdrawFee) / FEE_MAX;
            if (fee > 0) {
                // treasury must be able to receive ETH
                address treasury = IController(controller).treasury();
                require(treasury != address(0), "treasury = zero address");

                withdrawAmount = withdrawAmount - fee;
                _sendEth(payable(treasury), fee);
            }
        }

        require(withdrawAmount >= _min, "withdraw < min");

        _sendEth(msg.sender, withdrawAmount);
    }

    /*
    @notice Transfer token in vault to admin
    @param _token Address of token to transfer
    @dev Used to transfer token that was accidentally sent to this vault
    */
    function sweep(address _token) external override onlyAdmin {
        IERC20(_token).safeTransfer(admin, IERC20(_token).balanceOf(address(this)));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_controller","type":"address"},{"internalType":"address","name":"_timeLock","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"strategy","type":"address"}],"name":"ApproveStrategy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"strategy","type":"address"}],"name":"RevokeStrategy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"strategy","type":"address"}],"name":"SetStrategy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"SetWhitelist","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"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","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":"_strategy","type":"address"}],"name":"approveStrategy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableToInvest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceInStrategy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceInVault","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_shares","type":"uint256"}],"name":"getExpectedReturn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"invest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserveMin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_strategy","type":"address"}],"name":"revokeStrategy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"setController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reserveMin","type":"uint256"}],"name":"setReserveMin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_strategy","type":"address"},{"internalType":"uint256","name":"_min","type":"uint256"}],"name":"setStrategy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_timeLock","type":"address"}],"name":"setTimeLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_approve","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setWithdrawFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"strategies","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"strategy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"sweep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeLock","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDebtInStrategy","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_shares","type":"uint256"},{"internalType":"uint256","name":"_min","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526101f4600c553480156200001757600080fd5b5060405162002f5338038062002f53833981810160405260408110156200003d57600080fd5b508051602091820151604080518082018252600a8152690eadcc2ced2d2be8aa8960b31b818601908152825180840190935260048352630ea8aa8960e31b958301959095528051939492939092620000999160039190620001b9565b508051620000af906004906020840190620001b9565b50506005805460ff191660121790555060016006556001600160a01b03821662000120576040805162461bcd60e51b815260206004820152601960248201527f636f6e74726f6c6c6572203d207a65726f206164647265737300000000000000604482015290519081900360640190fd5b6001600160a01b0381166200017c576040805162461bcd60e51b815260206004820152601860248201527f74696d65206c6f636b203d207a65726f20616464726573730000000000000000604482015290519081900360640190fd5b600780546001600160a01b03199081163317909155600880546001600160a01b03948516908316179055600980549290931691161790556200025e565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001fc57805160ff19168380011785556200022c565b828001600101855582156200022c579182015b828111156200022c5782518255916020019190600101906200020f565b506200023a9291506200023e565b5090565b6200025b91905b808211156200023a576000815560010162000245565b90565b612ce5806200026e6000396000f3fe6080604052600436106102555760003560e01c80637373bc5a11610139578063b6ac642a116100b6578063dd62ed3e1161007a578063dd62ed3e146108f4578063e8b5e51f1461092f578063e941fa7814610944578063f77c479114610959578063f851a4401461096e578063fc0c546a14610983576102b4565b8063b6ac642a1461084e578063bb994d4814610878578063bedb86fb146108ab578063d085835a146108d7578063d0e30db0146108ec576102b4565b80639b19251a116100fd5780639b19251a146107635780639c8234b314610796578063a457c2d7146107ab578063a8c62e76146107e4578063a9059cbb14610815576102b4565b80637373bc5a146106a9578063891682d2146106be57806392eefe9b146106f157806395d89b4114610724578063965c0f2814610739576102b4565b806339ebf823116101d2578063596252fc11610196578063596252fc146105da57806359c077d7146105ef5780635c975abb146106195780636cb64d8f1461062e578063704b6c021461064357806370a0823114610676576102b4565b806339ebf823146104d05780633b8ae39714610503578063441a3e701461053657806345d34def1461056657806353d6fd591461059f576102b4565b80631b4a2001116102195780631b4a2001146103ff578063232870211461041457806323b872dd14610429578063313ce5671461046c5780633950935114610497576102b4565b806301681a62146102b957806301e1d114146102ec57806306fdde0314610313578063095ea7b31461039d57806318160ddd146103ea576102b4565b366102b457600a546001600160a01b031633146102b2576040805162461bcd60e51b81526020600482015260166024820152756d73672e73656e64657220213d20737472617465677960501b604482015290519081900360640190fd5b005b600080fd5b3480156102c557600080fd5b506102b2600480360360208110156102dc57600080fd5b50356001600160a01b0316610998565b3480156102f857600080fd5b50610301610a79565b60408051918252519081900360200190f35b34801561031f57600080fd5b50610328610a89565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561036257818101518382015260200161034a565b50505050905090810190601f16801561038f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103a957600080fd5b506103d6600480360360408110156103c057600080fd5b506001600160a01b038135169060200135610b1f565b604080519115158252519081900360200190f35b3480156103f657600080fd5b50610301610b3d565b34801561040b57600080fd5b50610301610b43565b34801561042057600080fd5b50610301610b4d565b34801561043557600080fd5b506103d66004803603606081101561044c57600080fd5b506001600160a01b03813581169160208101359091169060400135610b53565b34801561047857600080fd5b50610481610be1565b6040805160ff9092168252519081900360200190f35b3480156104a357600080fd5b506103d6600480360360408110156104ba57600080fd5b506001600160a01b038135169060200135610bea565b3480156104dc57600080fd5b506103d6600480360360208110156104f357600080fd5b50356001600160a01b0316610c3e565b34801561050f57600080fd5b506102b26004803603602081101561052657600080fd5b50356001600160a01b0316610c53565b34801561054257600080fd5b506102b26004803603604081101561055957600080fd5b5080359060200135610d4f565b34801561057257600080fd5b506102b26004803603604081101561058957600080fd5b506001600160a01b03813516906020013561109a565b3480156105ab57600080fd5b506102b2600480360360408110156105c257600080fd5b506001600160a01b03813516906020013515156114a4565b3480156105e657600080fd5b50610301611550565b3480156105fb57600080fd5b506102b26004803603602081101561061257600080fd5b503561155a565b34801561062557600080fd5b506103d66115f2565b34801561063a57600080fd5b506103016115fb565b34801561064f57600080fd5b506102b26004803603602081101561066657600080fd5b50356001600160a01b0316611605565b34801561068257600080fd5b506103016004803603602081101561069957600080fd5b50356001600160a01b03166116c1565b3480156106b557600080fd5b506103016116dc565b3480156106ca57600080fd5b506102b2600480360360208110156106e157600080fd5b50356001600160a01b03166116e6565b3480156106fd57600080fd5b506102b26004803603602081101561071457600080fd5b50356001600160a01b03166117af565b34801561073057600080fd5b50610328611874565b34801561074557600080fd5b506103016004803603602081101561075c57600080fd5b50356118d5565b34801561076f57600080fd5b506103d66004803603602081101561078657600080fd5b50356001600160a01b0316611901565b3480156107a257600080fd5b50610301611916565b3480156107b757600080fd5b506103d6600480360360408110156107ce57600080fd5b506001600160a01b038135169060200135611920565b3480156107f057600080fd5b506107f961198e565b604080516001600160a01b039092168252519081900360200190f35b34801561082157600080fd5b506103d66004803603604081101561083857600080fd5b506001600160a01b03813516906020013561199d565b34801561085a57600080fd5b506102b26004803603602081101561087157600080fd5b50356119b1565b34801561088457600080fd5b506102b26004803603602081101561089b57600080fd5b50356001600160a01b0316611a4a565b3480156108b757600080fd5b506102b2600480360360208110156108ce57600080fd5b50351515611b3f565b3480156108e357600080fd5b506107f9611b9a565b6102b2611ba9565b34801561090057600080fd5b506103016004803603604081101561091757600080fd5b506001600160a01b0381358116916020013516611d44565b34801561093b57600080fd5b506102b2611d6f565b34801561095057600080fd5b50610301611f26565b34801561096557600080fd5b506107f9611f2c565b34801561097a57600080fd5b506107f9611f3b565b34801561098f57600080fd5b506107f9611f4a565b6007546001600160a01b031633146109e0576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b600754604080516370a0823160e01b81523060048201529051610a76926001600160a01b0390811692908516916370a0823191602480820192602092909190829003018186803b158015610a3357600080fd5b505afa158015610a47573d6000803e3d6000fd5b505050506040513d6020811015610a5d57600080fd5b50516001600160a01b038416919063ffffffff611f6216565b50565b6000610a83611fb9565b90505b90565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b155780601f10610aea57610100808354040283529160200191610b15565b820191906000526020600020905b815481529060010190602001808311610af857829003601f168201915b5050505050905090565b6000610b33610b2c611fda565b8484611fde565b5060015b92915050565b60025490565b6000610a836120ca565b600c5481565b6000610b608484846120f6565b610bd684610b6c611fda565b610bd185604051806060016040528060288152602001612bcf602891396001600160a01b038a16600090815260016020526040812090610baa611fda565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61225d16565b611fde565b5060015b9392505050565b60055460ff1690565b6000610b33610bf7611fda565b84610bd18560016000610c08611fda565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6122f416565b600b6020526000908152604090205460ff1681565b6009546001600160a01b03163314610c9f576040805162461bcd60e51b815260206004820152600a6024820152692174696d65206c6f636b60b01b604482015290519081900360640190fd5b6001600160a01b038116610cf4576040805162461bcd60e51b81526020600482015260176024820152767374726174656779203d207a65726f206164647265737360481b604482015290519081900360640190fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff19166001179055815192835290517f4c6d0fbb89373829bc56000a87d561331bca06f725fd8861d055215ed90f209b9281900390910190a150565b60026006541415610da7576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260065533321480610dc95750336000908152600f602052604090205460ff165b610e07576040805162461bcd60e51b815260206004820152600a602482015269085dda1a5d195b1a5cdd60b21b604482015290519081900360640190fd5b60008211610e49576040805162461bcd60e51b815260206004820152600a6024820152690736861726573203d20360b41b604482015290519081900360640190fd5b6000610e5361234e565b90506000610e5f612352565b90506000610e6e8584846123ec565b9050610e7a338661246f565b8083101561103e578080831015610e8e5750815b600a5460408051632e1a7d4d60e01b81526004810184905290516001600160a01b0390921691632e1a7d4d9160248082019260009290919082900301818387803b158015610edb57600080fd5b505af1158015610eef573d6000803e3d6000fd5b505050506000610efd61234e565b90506000610f11828763ffffffff61257716565b905082811015610f3057610f2d8385038263ffffffff6122f416565b93505b6000612710610f4a600d54876125d490919063ffffffff16565b81610f5157fe5b049050801561103957600854604080516361d027b360e01b815290516000926001600160a01b0316916361d027b3916004808301926020929190829003018186803b158015610f9f57600080fd5b505afa158015610fb3573d6000803e3d6000fd5b505050506040513d6020811015610fc957600080fd5b505190506001600160a01b038116611028576040805162461bcd60e51b815260206004820152601760248201527f7472656173757279203d207a65726f2061646472657373000000000000000000604482015290519081900360640190fd5b8186039550611037818361262d565b505b505050505b83811015611084576040805162461bcd60e51b815260206004820152600e60248201526d3bb4ba34323930bb901e1036b4b760911b604482015290519081900360640190fd5b61108e338261262d565b50506001600655505050565b6007546001600160a01b03163314806110bd57506008546001600160a01b031633145b6110fc576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b6001600160a01b0382166000908152600b602052604090205460ff16611155576040805162461bcd60e51b815260206004820152600960248201526808585c1c1c9bdd995960ba1b604482015290519081900360640190fd5b600a546001600160a01b03838116911614156111b8576040805162461bcd60e51b815260206004820152601f60248201527f6e6577207374726174656779203d2063757272656e7420737472617465677900604482015290519081900360640190fd5b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee6001600160a01b0316826001600160a01b0316636f307dc36040518163ffffffff1660e01b815260040160206040518083038186803b15801561120f57600080fd5b505afa158015611223573d6000803e3d6000fd5b505050506040513d602081101561123957600080fd5b50516001600160a01b031614611296576040805162461bcd60e51b815260206004820152601a60248201527f73747261746567792e756e6465726c79696e6720213d20455448000000000000604482015290519081900360640190fd5b306001600160a01b0316826001600160a01b031663fbfa77cf6040518163ffffffff1660e01b815260040160206040518083038186803b1580156112d957600080fd5b505afa1580156112ed573d6000803e3d6000fd5b505050506040513d602081101561130357600080fd5b50516001600160a01b031614611360576040805162461bcd60e51b815260206004820152601760248201527f73747261746567792e7661756c7420213d207661756c74000000000000000000604482015290519081900360640190fd5b600a546001600160a01b03161561144957600061137b61234e565b9050600a60009054906101000a90046001600160a01b03166001600160a01b031663e9fad8ee6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156113cd57600080fd5b505af11580156113e1573d6000803e3d6000fd5b5050505060006113ef61234e565b905082611402828463ffffffff61257716565b1015611446576040805162461bcd60e51b815260206004820152600e60248201526d3bb4ba34323930bb901e1036b4b760911b604482015290519081900360640190fd5b50505b600a80546001600160a01b0319166001600160a01b03848116919091179182905560408051929091168252517f3412691e1ea2503d6eec15597247048016213c19646b73d4320a20c790b67ee2916020908290030190a15050565b6007546001600160a01b031633146114ec576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915582519384529083015280517ff6019ec0a78d156d249a1ec7579e2321f6ac7521d6e1d2eacf90ba4a184dcceb9281900390910190a15050565b6000610a8361234e565b6007546001600160a01b031633146115a2576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6127108111156115ed576040805162461bcd60e51b81526020600482015260116024820152700e4cae6cae4ecca40dad2dc407c40dac2f607b1b604482015290519081900360640190fd5b600c55565b600e5460ff1681565b6000610a836126c5565b6007546001600160a01b0316331461164d576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6001600160a01b03811661169f576040805162461bcd60e51b815260206004820152601460248201527361646d696e203d207a65726f206164647265737360601b604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b6000610a83612352565b6009546001600160a01b03163314611732576040805162461bcd60e51b815260206004820152600a6024820152692174696d65206c6f636b60b01b604482015290519081900360640190fd5b6001600160a01b03811661178d576040805162461bcd60e51b815260206004820152601860248201527f74696d65206c6f636b203d207a65726f20616464726573730000000000000000604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b031633146117f7576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6001600160a01b038116611852576040805162461bcd60e51b815260206004820152601960248201527f636f6e74726f6c6c6572203d207a65726f206164647265737300000000000000604482015290519081900360640190fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b155780601f10610aea57610100808354040283529160200191610b15565b6000806118e061234e565b905060006118ec612352565b90506118f98483836123ec565b949350505050565b600f6020526000908152604090205460ff1681565b6000610a8361272e565b6000610b3361192d611fda565b84610bd185604051806060016040528060258152602001612c8b6025913960016000611957611fda565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61225d16565b600a546001600160a01b031681565b6000610b336119aa611fda565b84846120f6565b6007546001600160a01b031633146119f9576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6101f4811115611a45576040805162461bcd60e51b81526020600482015260126024820152710776974686472617720666565203e206361760741b604482015290519081900360640190fd5b600d55565b6007546001600160a01b03163314611a92576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6001600160a01b038116611ae7576040805162461bcd60e51b81526020600482015260176024820152767374726174656779203d207a65726f206164647265737360481b604482015290519081900360640190fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff19169055815192835290517f7d3e35e217272b8400fec8397b08eb8c60c4db9ae834af14ac0fc9c0bb914a8f9281900390910190a150565b6007546001600160a01b03163314611b87576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b600e805460ff1916911515919091179055565b6009546001600160a01b031681565b600e5460ff1615611bea576040805162461bcd60e51b81526020600482015260066024820152651c185d5cd95960d21b604482015290519081900360640190fd5b60026006541415611c42576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260065533321480611c645750336000908152600f602052604090205460ff165b611ca2576040805162461bcd60e51b815260206004820152600a602482015269085dda1a5d195b1a5cdd60b21b604482015290519081900360640190fd5b60003411611ce5576040805162461bcd60e51b815260206004820152600b60248201526a06465706f736974203d20360ac1b604482015290519081900360640190fd5b600034611cf0611fb9565b0390506000611cfd610b3d565b9050600081611d0d575034611d30565b611d2d83611d21348563ffffffff6125d416565b9063ffffffff61277a16565b90505b611d3a33826127e1565b5050600160065550565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600a546001600160a01b0316611dc6576040805162461bcd60e51b81526020600482015260176024820152767374726174656779203d207a65726f206164647265737360481b604482015290519081900360640190fd5b600e5460ff1615611e07576040805162461bcd60e51b81526020600482015260066024820152651c185d5cd95960d21b604482015290519081900360640190fd5b6007546001600160a01b0316331480611e2a57506008546001600160a01b031633145b611e69576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b6000611e7361272e565b905060008111611eba576040805162461bcd60e51b815260206004820152600d60248201526c0617661696c61626c65203d203609c1b604482015290519081900360640190fd5b600a60009054906101000a90046001600160a01b03166001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015611f0a57600080fd5b505af1158015611f1e573d6000803e3d6000fd5b505050505050565b600d5481565b6008546001600160a01b031681565b6007546001600160a01b031681565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee81565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611fb49084906128dd565b505050565b6000610a83611fc66126c5565b611fce61234e565b9063ffffffff6122f416565b3390565b6001600160a01b0383166120235760405162461bcd60e51b8152600401808060200182810382526024815260200180612c3d6024913960400191505060405180910390fd5b6001600160a01b0382166120685760405162461bcd60e51b8152600401808060200182810382526022815260200180612b666022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006127106120e9600c546120dd611fb9565b9063ffffffff6125d416565b816120f057fe5b04905090565b6001600160a01b03831661213b5760405162461bcd60e51b8152600401808060200182810382526025815260200180612c186025913960400191505060405180910390fd5b6001600160a01b0382166121805760405162461bcd60e51b8152600401808060200182810382526023815260200180612b216023913960400191505060405180910390fd5b61218b838383611fb4565b6121ce81604051806060016040528060268152602001612b88602691396001600160a01b038616600090815260208190526040902054919063ffffffff61225d16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612203908263ffffffff6122f416565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156122ec5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122b1578181015183820152602001612299565b50505050905090810190601f1680156122de5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610bda576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b4790565b600a546000906001600160a01b031661236d57506000610a86565b600a60009054906101000a90046001600160a01b03166001600160a01b03166301e1d1146040518163ffffffff1660e01b815260040160206040518083038186803b1580156123bb57600080fd5b505afa1580156123cf573d6000803e3d6000fd5b505050506040513d60208110156123e557600080fd5b5051905090565b6000806123f76126c5565b905060008184111561241a57612413858363ffffffff6122f416565b905061242d565b61242a858563ffffffff6122f416565b90505b6000612437610b3d565b905080156124625780612450888463ffffffff6125d416565b8161245757fe5b049350505050610bda565b5060009695505050505050565b6001600160a01b0382166124b45760405162461bcd60e51b8152600401808060200182810382526021815260200180612bf76021913960400191505060405180910390fd5b6124c082600083611fb4565b61250381604051806060016040528060228152602001612b44602291396001600160a01b038516600090815260208190526040902054919063ffffffff61225d16565b6001600160a01b03831660009081526020819052604090205560025461252f908263ffffffff61257716565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000828211156125ce576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000826125e357506000610b37565b828202828482816125f057fe5b0414610bda5760405162461bcd60e51b8152600401808060200182810382526021815260200180612bae6021913960400191505060405180910390fd5b6040516000906001600160a01b0384169083908381818185875af1925050503d8060008114612678576040519150601f19603f3d011682016040523d82523d6000602084013e61267d565b606091505b5050905080611fb4576040805162461bcd60e51b815260206004820152600f60248201526e14d95b99081155120819985a5b1959608a1b604482015290519081900360640190fd5b600a546000906001600160a01b03166126e057506000610a86565b600a60009054906101000a90046001600160a01b03166001600160a01b031663fc7b9c186040518163ffffffff1660e01b815260040160206040518083038186803b1580156123bb57600080fd5b600a546000906001600160a01b031661274957506000610a86565b600061275361234e565b9050600061275f6120ca565b905080821161277357600092505050610a86565b9003905090565b60008082116127d0576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816127d957fe5b049392505050565b6001600160a01b03821661283c576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61284860008383611fb4565b60025461285b908263ffffffff6122f416565b6002556001600160a01b038216600090815260208190526040902054612887908263ffffffff6122f416565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6060612932826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661298e9092919063ffffffff16565b805190915015611fb45780806020019051602081101561295157600080fd5b5051611fb45760405162461bcd60e51b815260040180806020018281038252602a815260200180612c61602a913960400191505060405180910390fd5b60606118f98484600085856129a285612ab4565b6129f3576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612a325780518252601f199092019160209182019101612a13565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612a94576040519150601f19603f3d011682016040523d82523d6000602084013e612a99565b606091505b5091509150612aa9828286612aba565b979650505050505050565b3b151590565b60608315612ac9575081610bda565b825115612ad95782518084602001fd5b60405162461bcd60e51b81526020600482018181528451602484015284518593919283926044019190850190808383600083156122b157818101518382015260200161229956fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122067f96b0ee37cc831ed14e3d0b881e67008de2fab526bb148998629e9d03c5bbb64736f6c634300060b00330000000000000000000000007d55c795359eb049ff482c8bd5e0523f0fb40b6f0000000000000000000000008dcb98361a49550593b57747ab2825983ef43662

Deployed Bytecode

0x6080604052600436106102555760003560e01c80637373bc5a11610139578063b6ac642a116100b6578063dd62ed3e1161007a578063dd62ed3e146108f4578063e8b5e51f1461092f578063e941fa7814610944578063f77c479114610959578063f851a4401461096e578063fc0c546a14610983576102b4565b8063b6ac642a1461084e578063bb994d4814610878578063bedb86fb146108ab578063d085835a146108d7578063d0e30db0146108ec576102b4565b80639b19251a116100fd5780639b19251a146107635780639c8234b314610796578063a457c2d7146107ab578063a8c62e76146107e4578063a9059cbb14610815576102b4565b80637373bc5a146106a9578063891682d2146106be57806392eefe9b146106f157806395d89b4114610724578063965c0f2814610739576102b4565b806339ebf823116101d2578063596252fc11610196578063596252fc146105da57806359c077d7146105ef5780635c975abb146106195780636cb64d8f1461062e578063704b6c021461064357806370a0823114610676576102b4565b806339ebf823146104d05780633b8ae39714610503578063441a3e701461053657806345d34def1461056657806353d6fd591461059f576102b4565b80631b4a2001116102195780631b4a2001146103ff578063232870211461041457806323b872dd14610429578063313ce5671461046c5780633950935114610497576102b4565b806301681a62146102b957806301e1d114146102ec57806306fdde0314610313578063095ea7b31461039d57806318160ddd146103ea576102b4565b366102b457600a546001600160a01b031633146102b2576040805162461bcd60e51b81526020600482015260166024820152756d73672e73656e64657220213d20737472617465677960501b604482015290519081900360640190fd5b005b600080fd5b3480156102c557600080fd5b506102b2600480360360208110156102dc57600080fd5b50356001600160a01b0316610998565b3480156102f857600080fd5b50610301610a79565b60408051918252519081900360200190f35b34801561031f57600080fd5b50610328610a89565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561036257818101518382015260200161034a565b50505050905090810190601f16801561038f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103a957600080fd5b506103d6600480360360408110156103c057600080fd5b506001600160a01b038135169060200135610b1f565b604080519115158252519081900360200190f35b3480156103f657600080fd5b50610301610b3d565b34801561040b57600080fd5b50610301610b43565b34801561042057600080fd5b50610301610b4d565b34801561043557600080fd5b506103d66004803603606081101561044c57600080fd5b506001600160a01b03813581169160208101359091169060400135610b53565b34801561047857600080fd5b50610481610be1565b6040805160ff9092168252519081900360200190f35b3480156104a357600080fd5b506103d6600480360360408110156104ba57600080fd5b506001600160a01b038135169060200135610bea565b3480156104dc57600080fd5b506103d6600480360360208110156104f357600080fd5b50356001600160a01b0316610c3e565b34801561050f57600080fd5b506102b26004803603602081101561052657600080fd5b50356001600160a01b0316610c53565b34801561054257600080fd5b506102b26004803603604081101561055957600080fd5b5080359060200135610d4f565b34801561057257600080fd5b506102b26004803603604081101561058957600080fd5b506001600160a01b03813516906020013561109a565b3480156105ab57600080fd5b506102b2600480360360408110156105c257600080fd5b506001600160a01b03813516906020013515156114a4565b3480156105e657600080fd5b50610301611550565b3480156105fb57600080fd5b506102b26004803603602081101561061257600080fd5b503561155a565b34801561062557600080fd5b506103d66115f2565b34801561063a57600080fd5b506103016115fb565b34801561064f57600080fd5b506102b26004803603602081101561066657600080fd5b50356001600160a01b0316611605565b34801561068257600080fd5b506103016004803603602081101561069957600080fd5b50356001600160a01b03166116c1565b3480156106b557600080fd5b506103016116dc565b3480156106ca57600080fd5b506102b2600480360360208110156106e157600080fd5b50356001600160a01b03166116e6565b3480156106fd57600080fd5b506102b26004803603602081101561071457600080fd5b50356001600160a01b03166117af565b34801561073057600080fd5b50610328611874565b34801561074557600080fd5b506103016004803603602081101561075c57600080fd5b50356118d5565b34801561076f57600080fd5b506103d66004803603602081101561078657600080fd5b50356001600160a01b0316611901565b3480156107a257600080fd5b50610301611916565b3480156107b757600080fd5b506103d6600480360360408110156107ce57600080fd5b506001600160a01b038135169060200135611920565b3480156107f057600080fd5b506107f961198e565b604080516001600160a01b039092168252519081900360200190f35b34801561082157600080fd5b506103d66004803603604081101561083857600080fd5b506001600160a01b03813516906020013561199d565b34801561085a57600080fd5b506102b26004803603602081101561087157600080fd5b50356119b1565b34801561088457600080fd5b506102b26004803603602081101561089b57600080fd5b50356001600160a01b0316611a4a565b3480156108b757600080fd5b506102b2600480360360208110156108ce57600080fd5b50351515611b3f565b3480156108e357600080fd5b506107f9611b9a565b6102b2611ba9565b34801561090057600080fd5b506103016004803603604081101561091757600080fd5b506001600160a01b0381358116916020013516611d44565b34801561093b57600080fd5b506102b2611d6f565b34801561095057600080fd5b50610301611f26565b34801561096557600080fd5b506107f9611f2c565b34801561097a57600080fd5b506107f9611f3b565b34801561098f57600080fd5b506107f9611f4a565b6007546001600160a01b031633146109e0576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b600754604080516370a0823160e01b81523060048201529051610a76926001600160a01b0390811692908516916370a0823191602480820192602092909190829003018186803b158015610a3357600080fd5b505afa158015610a47573d6000803e3d6000fd5b505050506040513d6020811015610a5d57600080fd5b50516001600160a01b038416919063ffffffff611f6216565b50565b6000610a83611fb9565b90505b90565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b155780601f10610aea57610100808354040283529160200191610b15565b820191906000526020600020905b815481529060010190602001808311610af857829003601f168201915b5050505050905090565b6000610b33610b2c611fda565b8484611fde565b5060015b92915050565b60025490565b6000610a836120ca565b600c5481565b6000610b608484846120f6565b610bd684610b6c611fda565b610bd185604051806060016040528060288152602001612bcf602891396001600160a01b038a16600090815260016020526040812090610baa611fda565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61225d16565b611fde565b5060015b9392505050565b60055460ff1690565b6000610b33610bf7611fda565b84610bd18560016000610c08611fda565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6122f416565b600b6020526000908152604090205460ff1681565b6009546001600160a01b03163314610c9f576040805162461bcd60e51b815260206004820152600a6024820152692174696d65206c6f636b60b01b604482015290519081900360640190fd5b6001600160a01b038116610cf4576040805162461bcd60e51b81526020600482015260176024820152767374726174656779203d207a65726f206164647265737360481b604482015290519081900360640190fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff19166001179055815192835290517f4c6d0fbb89373829bc56000a87d561331bca06f725fd8861d055215ed90f209b9281900390910190a150565b60026006541415610da7576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260065533321480610dc95750336000908152600f602052604090205460ff165b610e07576040805162461bcd60e51b815260206004820152600a602482015269085dda1a5d195b1a5cdd60b21b604482015290519081900360640190fd5b60008211610e49576040805162461bcd60e51b815260206004820152600a6024820152690736861726573203d20360b41b604482015290519081900360640190fd5b6000610e5361234e565b90506000610e5f612352565b90506000610e6e8584846123ec565b9050610e7a338661246f565b8083101561103e578080831015610e8e5750815b600a5460408051632e1a7d4d60e01b81526004810184905290516001600160a01b0390921691632e1a7d4d9160248082019260009290919082900301818387803b158015610edb57600080fd5b505af1158015610eef573d6000803e3d6000fd5b505050506000610efd61234e565b90506000610f11828763ffffffff61257716565b905082811015610f3057610f2d8385038263ffffffff6122f416565b93505b6000612710610f4a600d54876125d490919063ffffffff16565b81610f5157fe5b049050801561103957600854604080516361d027b360e01b815290516000926001600160a01b0316916361d027b3916004808301926020929190829003018186803b158015610f9f57600080fd5b505afa158015610fb3573d6000803e3d6000fd5b505050506040513d6020811015610fc957600080fd5b505190506001600160a01b038116611028576040805162461bcd60e51b815260206004820152601760248201527f7472656173757279203d207a65726f2061646472657373000000000000000000604482015290519081900360640190fd5b8186039550611037818361262d565b505b505050505b83811015611084576040805162461bcd60e51b815260206004820152600e60248201526d3bb4ba34323930bb901e1036b4b760911b604482015290519081900360640190fd5b61108e338261262d565b50506001600655505050565b6007546001600160a01b03163314806110bd57506008546001600160a01b031633145b6110fc576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b6001600160a01b0382166000908152600b602052604090205460ff16611155576040805162461bcd60e51b815260206004820152600960248201526808585c1c1c9bdd995960ba1b604482015290519081900360640190fd5b600a546001600160a01b03838116911614156111b8576040805162461bcd60e51b815260206004820152601f60248201527f6e6577207374726174656779203d2063757272656e7420737472617465677900604482015290519081900360640190fd5b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee6001600160a01b0316826001600160a01b0316636f307dc36040518163ffffffff1660e01b815260040160206040518083038186803b15801561120f57600080fd5b505afa158015611223573d6000803e3d6000fd5b505050506040513d602081101561123957600080fd5b50516001600160a01b031614611296576040805162461bcd60e51b815260206004820152601a60248201527f73747261746567792e756e6465726c79696e6720213d20455448000000000000604482015290519081900360640190fd5b306001600160a01b0316826001600160a01b031663fbfa77cf6040518163ffffffff1660e01b815260040160206040518083038186803b1580156112d957600080fd5b505afa1580156112ed573d6000803e3d6000fd5b505050506040513d602081101561130357600080fd5b50516001600160a01b031614611360576040805162461bcd60e51b815260206004820152601760248201527f73747261746567792e7661756c7420213d207661756c74000000000000000000604482015290519081900360640190fd5b600a546001600160a01b03161561144957600061137b61234e565b9050600a60009054906101000a90046001600160a01b03166001600160a01b031663e9fad8ee6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156113cd57600080fd5b505af11580156113e1573d6000803e3d6000fd5b5050505060006113ef61234e565b905082611402828463ffffffff61257716565b1015611446576040805162461bcd60e51b815260206004820152600e60248201526d3bb4ba34323930bb901e1036b4b760911b604482015290519081900360640190fd5b50505b600a80546001600160a01b0319166001600160a01b03848116919091179182905560408051929091168252517f3412691e1ea2503d6eec15597247048016213c19646b73d4320a20c790b67ee2916020908290030190a15050565b6007546001600160a01b031633146114ec576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915582519384529083015280517ff6019ec0a78d156d249a1ec7579e2321f6ac7521d6e1d2eacf90ba4a184dcceb9281900390910190a15050565b6000610a8361234e565b6007546001600160a01b031633146115a2576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6127108111156115ed576040805162461bcd60e51b81526020600482015260116024820152700e4cae6cae4ecca40dad2dc407c40dac2f607b1b604482015290519081900360640190fd5b600c55565b600e5460ff1681565b6000610a836126c5565b6007546001600160a01b0316331461164d576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6001600160a01b03811661169f576040805162461bcd60e51b815260206004820152601460248201527361646d696e203d207a65726f206164647265737360601b604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b6000610a83612352565b6009546001600160a01b03163314611732576040805162461bcd60e51b815260206004820152600a6024820152692174696d65206c6f636b60b01b604482015290519081900360640190fd5b6001600160a01b03811661178d576040805162461bcd60e51b815260206004820152601860248201527f74696d65206c6f636b203d207a65726f20616464726573730000000000000000604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b031633146117f7576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6001600160a01b038116611852576040805162461bcd60e51b815260206004820152601960248201527f636f6e74726f6c6c6572203d207a65726f206164647265737300000000000000604482015290519081900360640190fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b155780601f10610aea57610100808354040283529160200191610b15565b6000806118e061234e565b905060006118ec612352565b90506118f98483836123ec565b949350505050565b600f6020526000908152604090205460ff1681565b6000610a8361272e565b6000610b3361192d611fda565b84610bd185604051806060016040528060258152602001612c8b6025913960016000611957611fda565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61225d16565b600a546001600160a01b031681565b6000610b336119aa611fda565b84846120f6565b6007546001600160a01b031633146119f9576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6101f4811115611a45576040805162461bcd60e51b81526020600482015260126024820152710776974686472617720666565203e206361760741b604482015290519081900360640190fd5b600d55565b6007546001600160a01b03163314611a92576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6001600160a01b038116611ae7576040805162461bcd60e51b81526020600482015260176024820152767374726174656779203d207a65726f206164647265737360481b604482015290519081900360640190fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff19169055815192835290517f7d3e35e217272b8400fec8397b08eb8c60c4db9ae834af14ac0fc9c0bb914a8f9281900390910190a150565b6007546001600160a01b03163314611b87576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b600e805460ff1916911515919091179055565b6009546001600160a01b031681565b600e5460ff1615611bea576040805162461bcd60e51b81526020600482015260066024820152651c185d5cd95960d21b604482015290519081900360640190fd5b60026006541415611c42576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260065533321480611c645750336000908152600f602052604090205460ff165b611ca2576040805162461bcd60e51b815260206004820152600a602482015269085dda1a5d195b1a5cdd60b21b604482015290519081900360640190fd5b60003411611ce5576040805162461bcd60e51b815260206004820152600b60248201526a06465706f736974203d20360ac1b604482015290519081900360640190fd5b600034611cf0611fb9565b0390506000611cfd610b3d565b9050600081611d0d575034611d30565b611d2d83611d21348563ffffffff6125d416565b9063ffffffff61277a16565b90505b611d3a33826127e1565b5050600160065550565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600a546001600160a01b0316611dc6576040805162461bcd60e51b81526020600482015260176024820152767374726174656779203d207a65726f206164647265737360481b604482015290519081900360640190fd5b600e5460ff1615611e07576040805162461bcd60e51b81526020600482015260066024820152651c185d5cd95960d21b604482015290519081900360640190fd5b6007546001600160a01b0316331480611e2a57506008546001600160a01b031633145b611e69576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b6000611e7361272e565b905060008111611eba576040805162461bcd60e51b815260206004820152600d60248201526c0617661696c61626c65203d203609c1b604482015290519081900360640190fd5b600a60009054906101000a90046001600160a01b03166001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015611f0a57600080fd5b505af1158015611f1e573d6000803e3d6000fd5b505050505050565b600d5481565b6008546001600160a01b031681565b6007546001600160a01b031681565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee81565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611fb49084906128dd565b505050565b6000610a83611fc66126c5565b611fce61234e565b9063ffffffff6122f416565b3390565b6001600160a01b0383166120235760405162461bcd60e51b8152600401808060200182810382526024815260200180612c3d6024913960400191505060405180910390fd5b6001600160a01b0382166120685760405162461bcd60e51b8152600401808060200182810382526022815260200180612b666022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006127106120e9600c546120dd611fb9565b9063ffffffff6125d416565b816120f057fe5b04905090565b6001600160a01b03831661213b5760405162461bcd60e51b8152600401808060200182810382526025815260200180612c186025913960400191505060405180910390fd5b6001600160a01b0382166121805760405162461bcd60e51b8152600401808060200182810382526023815260200180612b216023913960400191505060405180910390fd5b61218b838383611fb4565b6121ce81604051806060016040528060268152602001612b88602691396001600160a01b038616600090815260208190526040902054919063ffffffff61225d16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612203908263ffffffff6122f416565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156122ec5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122b1578181015183820152602001612299565b50505050905090810190601f1680156122de5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610bda576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b4790565b600a546000906001600160a01b031661236d57506000610a86565b600a60009054906101000a90046001600160a01b03166001600160a01b03166301e1d1146040518163ffffffff1660e01b815260040160206040518083038186803b1580156123bb57600080fd5b505afa1580156123cf573d6000803e3d6000fd5b505050506040513d60208110156123e557600080fd5b5051905090565b6000806123f76126c5565b905060008184111561241a57612413858363ffffffff6122f416565b905061242d565b61242a858563ffffffff6122f416565b90505b6000612437610b3d565b905080156124625780612450888463ffffffff6125d416565b8161245757fe5b049350505050610bda565b5060009695505050505050565b6001600160a01b0382166124b45760405162461bcd60e51b8152600401808060200182810382526021815260200180612bf76021913960400191505060405180910390fd5b6124c082600083611fb4565b61250381604051806060016040528060228152602001612b44602291396001600160a01b038516600090815260208190526040902054919063ffffffff61225d16565b6001600160a01b03831660009081526020819052604090205560025461252f908263ffffffff61257716565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000828211156125ce576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000826125e357506000610b37565b828202828482816125f057fe5b0414610bda5760405162461bcd60e51b8152600401808060200182810382526021815260200180612bae6021913960400191505060405180910390fd5b6040516000906001600160a01b0384169083908381818185875af1925050503d8060008114612678576040519150601f19603f3d011682016040523d82523d6000602084013e61267d565b606091505b5050905080611fb4576040805162461bcd60e51b815260206004820152600f60248201526e14d95b99081155120819985a5b1959608a1b604482015290519081900360640190fd5b600a546000906001600160a01b03166126e057506000610a86565b600a60009054906101000a90046001600160a01b03166001600160a01b031663fc7b9c186040518163ffffffff1660e01b815260040160206040518083038186803b1580156123bb57600080fd5b600a546000906001600160a01b031661274957506000610a86565b600061275361234e565b9050600061275f6120ca565b905080821161277357600092505050610a86565b9003905090565b60008082116127d0576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816127d957fe5b049392505050565b6001600160a01b03821661283c576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61284860008383611fb4565b60025461285b908263ffffffff6122f416565b6002556001600160a01b038216600090815260208190526040902054612887908263ffffffff6122f416565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6060612932826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661298e9092919063ffffffff16565b805190915015611fb45780806020019051602081101561295157600080fd5b5051611fb45760405162461bcd60e51b815260040180806020018281038252602a815260200180612c61602a913960400191505060405180910390fd5b60606118f98484600085856129a285612ab4565b6129f3576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612a325780518252601f199092019160209182019101612a13565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612a94576040519150601f19603f3d011682016040523d82523d6000602084013e612a99565b606091505b5091509150612aa9828286612aba565b979650505050505050565b3b151590565b60608315612ac9575081610bda565b825115612ad95782518084602001fd5b60405162461bcd60e51b81526020600482018181528451602484015284518593919283926044019190850190808383600083156122b157818101518382015260200161229956fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122067f96b0ee37cc831ed14e3d0b881e67008de2fab526bb148998629e9d03c5bbb64736f6c634300060b0033

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

0000000000000000000000007d55c795359eb049ff482c8bd5e0523f0fb40b6f0000000000000000000000008dcb98361a49550593b57747ab2825983ef43662

-----Decoded View---------------
Arg [0] : _controller (address): 0x7D55C795359eB049FF482c8Bd5E0523F0fB40B6f
Arg [1] : _timeLock (address): 0x8dcb98361a49550593B57747Ab2825983EF43662

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007d55c795359eb049ff482c8bd5e0523f0fb40b6f
Arg [1] : 0000000000000000000000008dcb98361a49550593b57747ab2825983ef43662


Deployed Bytecode Sourcemap

47178:13887:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49093:8;;-1:-1:-1;;;;;49093:8:0;49079:10;:22;49071:57;;;;;-1:-1:-1;;;49071:57:0;;;;;;;;;;;;-1:-1:-1;;;49071:57:0;;;;;;;;;;;;;;;47178:13887;;;;;60909:153;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60909:153:0;-1:-1:-1;;;;;60909:153:0;;:::i;52737:101::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28674:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30899:207;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30899:207:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29773:105;;;;;;;;;;;;;:::i;53123:99::-;;;;;;;;;;;;;:::i;48004:37::-;;;;;;;;;;;;;:::i;31588:451::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31588:451:0;;;;;;;;;;;;;;;;;:::i;29617:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32448:297;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32448:297:0;;;;;;;;:::i;47880:51::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47880:51:0;-1:-1:-1;;;;;47880:51:0;;:::i;53953:236::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53953:236:0;-1:-1:-1;;;;;53953:236:0;;:::i;58932:1785::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58932:1785:0;;;;;;;:::i;54721:906::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;54721:906:0;;;;;;;;:::i;50706:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50706:171:0;;;;;;;;;;:::i;51453:107::-;;;;;;;;;;;;;:::i;50885:179::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50885:179:0;;:::i;48309:27::-;;;;;;;;;;;;;:::i;52343:117::-;;;;;;;;;;;;;:::i;50050:159::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50050:159:0;-1:-1:-1;;;;;50050:159:0;;:::i;29941:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29941:124:0;-1:-1:-1;;;;;29941:124:0;;:::i;51952:113::-;;;;;;;;;;;;;:::i;50414:181::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50414:181:0;-1:-1:-1;;;;;50414:181:0;;:::i;50217:189::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50217:189:0;-1:-1:-1;;;;;50217:189:0;;:::i;28884:95::-;;;;;;;;;;;;;:::i;58144:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58144:253:0;;:::i;48418:50::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48418:50:0;-1:-1:-1;;;;;48418:50:0;;:::i;53734:113::-;;;;;;;;;;;;;:::i;33248:397::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33248:397:0;;;;;;;;:::i;47800:32::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;47800:32:0;;;;;;;;;;;;;;30278:213;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30278:213:0;;;;;;;;:::i;51072:166::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51072:166:0;;:::i;54294:232::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54294:232:0;-1:-1:-1;;;;;54294:232:0;;:::i;50603:95::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50603:95:0;;;;:::i;47710:32::-;;;;;;;;;;;;;:::i;56123:857::-;;;:::i;30554:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30554:198:0;;;;;;;;;;:::i;55761:302::-;;;;;;;;;;;;;:::i;48187:32::-;;;;;;;;;;;;;:::i;47669:34::-;;;;;;;;;;;;;:::i;47633:29::-;;;;;;;;;;;;;:::i;47749:44::-;;;;;;;;;;;;;:::i;60909:153::-;49198:5;;-1:-1:-1;;;;;49198:5:0;49184:10;:19;49176:38;;;;;-1:-1:-1;;;49176:38:0;;;;;;;;;;;;-1:-1:-1;;;49176:38:0;;;;;;;;;;;;;;;61007:5:::1;::::0;61014:39:::1;::::0;;-1:-1:-1;;;61014:39:0;;61047:4:::1;61014:39;::::0;::::1;::::0;;;60979:75:::1;::::0;-1:-1:-1;;;;;61007:5:0;;::::1;::::0;61014:24;;::::1;::::0;::::1;::::0;:39;;;;;::::1;::::0;;;;;;;;;:24;:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;61014:39:0;-1:-1:-1;;;;;60979:27:0;::::1;::::0;:75;::::1;:27;:75;:::i;:::-;60909:153:::0;:::o;52737:101::-;52792:4;52816:14;:12;:14::i;:::-;52809:21;;52737:101;;:::o;28674:91::-;28752:5;28745:12;;;;;;;;-1:-1:-1;;28745:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28719:13;;28745:12;;28752:5;;28745:12;;28752:5;28745:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28674:91;:::o;30899:207::-;31015:4;31037:39;31046:12;:10;:12::i;:::-;31060:7;31069:6;31037:8;:39::i;:::-;-1:-1:-1;31094:4:0;30899:207;;;;;:::o;29773:105::-;29858:12;;29773:105;:::o;53123:99::-;53177:4;53201:13;:11;:13::i;48004:37::-;;;;:::o;31588:451::-;31725:4;31742:36;31752:6;31760:9;31771:6;31742:9;:36::i;:::-;31789:220;31812:6;31833:12;:10;:12::i;:::-;31860:138;31916:6;31860:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31860:19:0;;;;;;:11;:19;;;;;;31880:12;:10;:12::i;:::-;-1:-1:-1;;;;;31860:33:0;;;;;;;;;;;;-1:-1:-1;31860:33:0;;;:138;;:37;:138;:::i;:::-;31789:8;:220::i;:::-;-1:-1:-1;32027:4:0;31588:451;;;;;;:::o;29617:91::-;29691:9;;;;29617:91;:::o;32448:297::-;32560:4;32582:133;32605:12;:10;:12::i;:::-;32632:7;32654:50;32693:10;32654:11;:25;32666:12;:10;:12::i;:::-;-1:-1:-1;;;;;32654:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;32654:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;47880:51::-;;;;;;;;;;;;;;;:::o;53953:236::-;49299:8;;-1:-1:-1;;;;;49299:8:0;49285:10;:22;49277:45;;;;;-1:-1:-1;;;49277:45:0;;;;;;;;;;;;-1:-1:-1;;;49277:45:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;54047:23:0;::::1;54039:59;;;::::0;;-1:-1:-1;;;54039:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;54039:59:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;54109:21:0;::::1;;::::0;;;:10:::1;:21;::::0;;;;;;;;:28;;-1:-1:-1;;54109:28:0::1;54133:4;54109:28;::::0;;54155:26;;;;;;;::::1;::::0;;;;;;;;::::1;53953:236:::0;:::o;58932:1785::-;9179:1;9781:7;;:19;;9773:63;;;;;-1:-1:-1;;;9773:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9179:1;9914:7;:18;49958:10:::1;49972:9;49958:23;::::0;49957:50:::1;;-1:-1:-1::0;49996:10:0::1;49986:21;::::0;;;:9:::1;:21;::::0;;;;;::::1;;49957:50;49949:73;;;::::0;;-1:-1:-1;;;49949:73:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;49949:73:0;;;;;;;;;;;;;::::1;;59041:1:::2;59031:7;:11;59023:34;;;::::0;;-1:-1:-1;;;59023:34:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;59023:34:0;;;;;;;;;;;;;::::2;;59070:15;59088:17;:15;:17::i;:::-;59070:35;;59116:15;59134:20;:18;:20::i;:::-;59116:38;;59165:19;59187:51;59206:7;59215:10;59227;59187:18;:51::i;:::-;59165:73;;59307:26;59313:10;59325:7;59307:5;:26::i;:::-;59363:14;59350:10;:27;59346:1253;;;59472:14:::0;59505:27;;::::2;59501:96;;;-1:-1:-1::0;59571:10:0;59501:96:::2;59626:8;::::0;59613:48:::2;::::0;;-1:-1:-1;;;59613:48:0;;::::2;::::0;::::2;::::0;;;;;-1:-1:-1;;;;;59626:8:0;;::::2;::::0;59613:31:::2;::::0;:48;;;;;59626:8:::2;::::0;59613:48;;;;;;;;59626:8;;59613:48;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;59678:13;59694:17;:15;:17::i;:::-;59678:33:::0;-1:-1:-1;59726:9:0::2;59738:24;59678:33:::0;59751:10;59738:24:::2;:12;:24;:::i;:::-;59726:36;;59790:15;59783:4;:22;59779:345;;;60064:44;60065:32:::0;;::::2;60103:4:::0;60064:44:::2;:38;:44;:::i;:::-;60047:61;;59779:345;60177:8;48173:5;60188:31;60207:11;;60188:14;:18;;:31;;;;:::i;:::-;:41;;;;;;::::0;-1:-1:-1;60248:7:0;;60244:344:::2;;60364:10;::::0;60352:34:::2;::::0;;-1:-1:-1;;;60352:34:0;;;;60333:16:::2;::::0;-1:-1:-1;;;;;60364:10:0::2;::::0;60352:32:::2;::::0;:34:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;60364:10;60352:34;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;60352:34:0;;-1:-1:-1;;;;;;60413:22:0;::::2;60405:58;;;::::0;;-1:-1:-1;;;60405:58:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;60518:3;60501:14;:20;60484:37;;60540:32;60557:8;60568:3;60540:8;:32::i;:::-;60244:344;;59346:1253;;;;;60637:4;60619:14;:22;;60611:49;;;::::0;;-1:-1:-1;;;60611:49:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;60611:49:0;;;;;;;;;;;;;::::2;;60673:36;60682:10;60694:14;60673:8;:36::i;:::-;-1:-1:-1::0;;9138:1:0;10093:7;:22;-1:-1:-1;;;58932:1785:0:o;54721:906::-;49416:5;;-1:-1:-1;;;;;49416:5:0;49402:10;:19;;:47;;-1:-1:-1;49439:10:0;;-1:-1:-1;;;;;49439:10:0;49425;:24;49402:47;49394:71;;;;;-1:-1:-1;;;49394:71:0;;;;;;;;;;;;-1:-1:-1;;;49394:71:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;54863:21:0;::::1;;::::0;;;:10:::1;:21;::::0;;;;;::::1;;54855:43;;;::::0;;-1:-1:-1;;;54855:43:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;54855:43:0;;;;;;;;;;;;;::::1;;54930:8;::::0;-1:-1:-1;;;;;54917:21:0;;::::1;54930:8:::0;::::1;54917:21;;54909:65;;;::::0;;-1:-1:-1;;;54909:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;47582:42;-1:-1:-1::0;;;;;55007:43:0::1;55020:9;-1:-1:-1::0;;;;;55007:34:0::1;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;55007:36:0;-1:-1:-1;;;;;55007:43:0::1;;54985:119;;;::::0;;-1:-1:-1;;;54985:119:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;55180:4;-1:-1:-1::0;;;;;55137:48:0::1;55150:9;-1:-1:-1::0;;;;;55137:29:0::1;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;55137:31:0;-1:-1:-1;;;;;55137:48:0::1;;55115:121;;;::::0;;-1:-1:-1;;;55115:121:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;55296:8;::::0;-1:-1:-1;;;;;55296:8:0::1;:22:::0;55292:256:::1;;55335:14;55352:17;:15;:17::i;:::-;55335:34;;55397:8;;;;;;;;;-1:-1:-1::0;;;;;55397:8:0::1;-1:-1:-1::0;;;;;55384:27:0::1;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;55428:13;55444:17;:15;:17::i;:::-;55428:33:::0;-1:-1:-1;55513:4:0;55486:23:::1;55428:33:::0;55499:9;55486:23:::1;:12;:23;:::i;:::-;:31;;55478:58;;;::::0;;-1:-1:-1;;;55478:58:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;55478:58:0;;;;;;;;;;;;;::::1;;55292:256;;;55560:8;:20:::0;;-1:-1:-1;;;;;;55560:20:0::1;-1:-1:-1::0;;;;;55560:20:0;;::::1;::::0;;;::::1;::::0;;;;55598:21:::1;::::0;;55610:8;;;::::1;55598:21:::0;;;::::1;::::0;::::1;::::0;;;;;;::::1;54721:906:::0;;:::o;50706:171::-;49198:5;;-1:-1:-1;;;;;49198:5:0;49184:10;:19;49176:38;;;;;-1:-1:-1;;;49176:38:0;;;;;;;;;;;;-1:-1:-1;;;49176:38:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;50797:16:0;::::1;;::::0;;;:9:::1;:16;::::0;;;;;;;;:27;;-1:-1:-1;;50797:27:0::1;::::0;::::1;;::::0;;::::1;::::0;;;50840:29;;;;;;;::::1;::::0;;;::::1;::::0;;;;;;;;::::1;50706:171:::0;;:::o;51453:107::-;51511:4;51535:17;:15;:17::i;50885:179::-;49198:5;;-1:-1:-1;;;;;49198:5:0;49184:10;:19;49176:38;;;;;-1:-1:-1;;;49176:38:0;;;;;;;;;;;;-1:-1:-1;;;49176:38:0;;;;;;;;;;;;;;;48084:5:::1;50973:11;:26;;50965:56;;;::::0;;-1:-1:-1;;;50965:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;50965:56:0;;;;;;;;;;;;;::::1;;51032:10;:24:::0;50885:179::o;48309:27::-;;;;;;:::o;52343:117::-;52406:4;52430:22;:20;:22::i;50050:159::-;49198:5;;-1:-1:-1;;;;;49198:5:0;49184:10;:19;49176:38;;;;;-1:-1:-1;;;49176:38:0;;;;;;;;;;;;-1:-1:-1;;;49176:38:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;50131:20:0;::::1;50123:53;;;::::0;;-1:-1:-1;;;50123:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;50123:53:0;;;;;;;;;;;;;::::1;;50187:5;:14:::0;;-1:-1:-1;;;;;;50187:14:0::1;-1:-1:-1::0;;;;;50187:14:0;;;::::1;::::0;;;::::1;::::0;;50050:159::o;29941:124::-;-1:-1:-1;;;;;30039:18:0;30015:4;30039:18;;;;;;;;;;;;29941:124::o;51952:113::-;52013:4;52037:20;:18;:20::i;50414:181::-;49299:8;;-1:-1:-1;;;;;49299:8:0;49285:10;:22;49277:45;;;;;-1:-1:-1;;;49277:45:0;;;;;;;;;;;;-1:-1:-1;;;49277:45:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;50504:23:0;::::1;50496:60;;;::::0;;-1:-1:-1;;;50496:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;50567:8;:20:::0;;-1:-1:-1;;;;;;50567:20:0::1;-1:-1:-1::0;;;;;50567:20:0;;;::::1;::::0;;;::::1;::::0;;50414:181::o;50217:189::-;49198:5;;-1:-1:-1;;;;;49198:5:0;49184:10;:19;49176:38;;;;;-1:-1:-1;;;49176:38:0;;;;;;;;;;;;-1:-1:-1;;;49176:38:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;50308:25:0;::::1;50300:63;;;::::0;;-1:-1:-1;;;50300:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;50374:10;:24:::0;;-1:-1:-1;;;;;;50374:24:0::1;-1:-1:-1::0;;;;;50374:24:0;;;::::1;::::0;;;::::1;::::0;;50217:189::o;28884:95::-;28964:7;28957:14;;;;;;;;-1:-1:-1;;28957:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28931:13;;28957:14;;28964:7;;28957:14;;28964:7;28957:14;;;;;;;;;;;;;;;;;;;;;;;;58144:253;58217:4;58234:15;58252:17;:15;:17::i;:::-;58234:35;;58280:15;58298:20;:18;:20::i;:::-;58280:38;;58338:51;58357:7;58366:10;58378;58338:18;:51::i;:::-;58331:58;58144:253;-1:-1:-1;;;;58144:253:0:o;48418:50::-;;;;;;;;;;;;;;;:::o;53734:113::-;53795:4;53819:20;:18;:20::i;33248:397::-;33365:4;33387:228;33410:12;:10;:12::i;:::-;33437:7;33459:145;33516:15;33459:145;;;;;;;;;;;;;;;;;:11;:25;33471:12;:10;:12::i;:::-;-1:-1:-1;;;;;33459:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;33459:25:0;;;:34;;;;;;;;;;;:145;;:38;:145;:::i;47800:32::-;;;-1:-1:-1;;;;;47800:32:0;;:::o;30278:213::-;30397:4;30419:42;30429:12;:10;:12::i;:::-;30443:9;30454:6;30419:9;:42::i;51072:166::-;49198:5;;-1:-1:-1;;;;;49198:5:0;49184:10;:19;49176:38;;;;;-1:-1:-1;;;49176:38:0;;;;;;;;;;;;-1:-1:-1;;;49176:38:0;;;;;;;;;;;;;;;48267:3:::1;51154:4;:24;;51146:55;;;::::0;;-1:-1:-1;;;51146:55:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;51146:55:0;;;;;;;;;;;;;::::1;;51212:11;:18:::0;51072:166::o;54294:232::-;49198:5;;-1:-1:-1;;;;;49198:5:0;49184:10;:19;49176:38;;;;;-1:-1:-1;;;49176:38:0;;;;;;;;;;;;-1:-1:-1;;;49176:38:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;54384:23:0;::::1;54376:59;;;::::0;;-1:-1:-1;;;54376:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;54376:59:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;54446:21:0;::::1;54470:5;54446:21:::0;;;:10:::1;:21;::::0;;;;;;;;:29;;-1:-1:-1;;54446:29:0::1;::::0;;54493:25;;;;;;;::::1;::::0;;;;;;;;::::1;54294:232:::0;:::o;50603:95::-;49198:5;;-1:-1:-1;;;;;49198:5:0;49184:10;:19;49176:38;;;;;-1:-1:-1;;;49176:38:0;;;;;;;;;;;;-1:-1:-1;;;49176:38:0;;;;;;;;;;;;;;;50674:6:::1;:16:::0;;-1:-1:-1;;50674:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50603:95::o;47710:32::-;;;-1:-1:-1;;;;;47710:32:0;;:::o;56123:857::-;49666:6;;;;49665:7;49657:26;;;;;-1:-1:-1;;;49657:26:0;;;;;;;;;;;;-1:-1:-1;;;49657:26:0;;;;;;;;;;;;;;;9179:1:::1;9781:7;;:19;;9773:63;;;::::0;;-1:-1:-1;;;9773:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;9179:1;9914:7;:18:::0;49958:10:::2;49972:9;49958:23;::::0;49957:50:::2;;-1:-1:-1::0;49996:10:0::2;49986:21;::::0;;;:9:::2;:21;::::0;;;;;::::2;;49957:50;49949:73;;;::::0;;-1:-1:-1;;;49949:73:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;49949:73:0;;;;;;;;;;;;;::::2;;56232:1:::3;56220:9;:13;56212:37;;;::::0;;-1:-1:-1;;;56212:37:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;-1:-1:-1;;;56212:37:0;;;;;;;;;;;;;::::3;;56430:13;56463:9;56446:14;:12;:14::i;:::-;:26;56430:42;;56483:16;56502:13;:11;:13::i;:::-;56483:32:::0;-1:-1:-1;56764:11:0::3;56790:16:::0;56786:149:::3;;-1:-1:-1::0;56832:9:0::3;56786:149;;;56883:40;56914:8:::0;56883:26:::3;:9;56897:11:::0;56883:26:::3;:13;:26;:::i;:::-;:30:::0;:40:::3;:30;:40;:::i;:::-;56874:49;;56786:149;56947:25;56953:10;56965:6;56947:5;:25::i;:::-;-1:-1:-1::0;;9138:1:0::1;10093:7;:22:::0;-1:-1:-1;56123:857:0:o;30554:198::-;-1:-1:-1;;;;;30717:18:0;;;30688:4;30717:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30554:198::o;55761:302::-;49543:8;;-1:-1:-1;;;;;49543:8:0;49535:58;;;;;-1:-1:-1;;;49535:58:0;;;;;;;;;;;;-1:-1:-1;;;49535:58:0;;;;;;;;;;;;;;;49666:6:::1;::::0;::::1;;49665:7;49657:26;;;::::0;;-1:-1:-1;;;49657:26:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;49657:26:0;;;;;;;;;;;;;::::1;;49416:5:::2;::::0;-1:-1:-1;;;;;49416:5:0::2;49402:10;:19;::::0;:47:::2;;-1:-1:-1::0;49439:10:0::2;::::0;-1:-1:-1;;;;;49439:10:0::2;49425;:24;49402:47;49394:71;;;::::0;;-1:-1:-1;;;49394:71:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;49394:71:0;;;;;;;;;;;;;::::2;;55914:11:::3;55928:20;:18;:20::i;:::-;55914:34;;55976:1;55967:6;:10;55959:36;;;::::0;;-1:-1:-1;;;55959:36:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;-1:-1:-1;;;55959:36:0;;;;;;;;;;;;;::::3;;56021:8;;;;;;;;;-1:-1:-1::0;;;;;56021:8:0::3;-1:-1:-1::0;;;;;56008:30:0::3;;56046:6;56008:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;49476:1;55761:302::o:0;48187:32::-;;;;:::o;47669:34::-;;;-1:-1:-1;;;;;47669:34:0;;:::o;47633:29::-;;;-1:-1:-1;;;;;47633:29:0;;:::o;47749:44::-;47582:42;47749:44;:::o;22049:245::-;22217:58;;;-1:-1:-1;;;;;22217:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22217:58:0;-1:-1:-1;;;22217:58:0;;;22163:123;;22197:5;;22163:19;:123::i;:::-;22049:245;;;:::o;52468:123::-;52514:4;52538:45;52560:22;:20;:22::i;:::-;52538:17;:15;:17::i;:::-;:21;:45;:21;:45;:::i;26213:106::-;26301:10;26213:106;:::o;36622:377::-;-1:-1:-1;;;;;36755:19:0;;36747:68;;;;-1:-1:-1;;;36747:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36834:21:0;;36826:68;;;;-1:-1:-1;;;36826:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36907:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36959:32;;;;;;;;;;;;;;;;;36622:377;;;:::o;52846:121::-;52891:4;48084:5;52915:30;52934:10;;52915:14;:12;:14::i;:::-;:18;:30;:18;:30;:::i;:::-;:44;;;;;;52908:51;;52846:121;:::o;34135:607::-;-1:-1:-1;;;;;34272:20:0;;34264:70;;;;-1:-1:-1;;;34264:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34353:23:0;;34345:71;;;;-1:-1:-1;;;34345:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34429:47;34450:6;34458:9;34469:6;34429:20;:47::i;:::-;34509:108;34545:6;34509:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34509:17:0;;:9;:17;;;;;;;;;;;;:108;;:21;:108;:::i;:::-;-1:-1:-1;;;;;34489:17:0;;;:9;:17;;;;;;;;;;;:128;;;;34651:20;;;;;;;:32;;34676:6;34651:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;34628:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;34699:35;;;;;;;34628:20;;34699:35;;;;;;;;;;;;;34135:607;;;:::o;5557:191::-;5671:4;5704:12;5696:6;;;;5688:29;;;;-1:-1:-1;;;5688:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5735:5:0;;;5557:191::o;2781:167::-;2833:4;2859:5;;;2883:6;;;;2875:46;;;;;-1:-1:-1;;;2875:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;51246:102;51319:21;51246:102;:::o;51568:195::-;51641:8;;51620:4;;-1:-1:-1;;;;;51641:8:0;51637:63;;-1:-1:-1;51687:1:0;51680:8;;51637:63;51732:8;;;;;;;;;-1:-1:-1;;;;;51732:8:0;-1:-1:-1;;;;;51719:34:0;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51719:36:0;;-1:-1:-1;51568:195:0;:::o;56988:987::-;57122:4;57565:14;57582:22;:20;:22::i;:::-;57565:39;;57615:13;57657:9;57643:11;:23;57639:165;;;57694:26;:11;57710:9;57694:26;:15;:26;:::i;:::-;57683:37;;57639:165;;;57764:28;:11;57780;57764:28;:15;:28;:::i;:::-;57753:39;;57639:165;57816:16;57835:13;:11;:13::i;:::-;57816:32;-1:-1:-1;57863:15:0;;57859:90;;57926:11;57902:21;:7;57914:8;57902:21;:11;:21;:::i;:::-;:35;;;;;;57895:42;;;;;;;57859:90;-1:-1:-1;57966:1:0;;56988:987;-1:-1:-1;;;;;;56988:987:0:o;35732:452::-;-1:-1:-1;;;;;35813:21:0;;35805:67;;;;-1:-1:-1;;;35805:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35885:49;35906:7;35923:1;35927:6;35885:20;:49::i;:::-;35968:105;36005:6;35968:105;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35968:18:0;;:9;:18;;;;;;;;;;;;:105;;:22;:105;:::i;:::-;-1:-1:-1;;;;;35947:18:0;;:9;:18;;;;;;;;;;:126;36099:12;;:24;;36116:6;36099:24;:16;:24;:::i;:::-;36084:12;:39;36139:37;;;;;;;;36165:1;;-1:-1:-1;;;;;36139:37:0;;;;;;;;;;;;35732:452;;:::o;3231:149::-;3283:4;3313:1;3308;:6;;3300:49;;;;;-1:-1:-1;;;3300:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3367:5:0;;;3231:149::o;3639:208::-;3691:4;3712:6;3708:20;;-1:-1:-1;3727:1:0;3720:8;;3708:20;3748:5;;;3752:1;3748;:5;:1;3772:5;;;;;:10;3764:56;;;;-1:-1:-1;;;3764:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58500:167;58588:28;;58573:9;;-1:-1:-1;;;;;58588:8:0;;;58604:7;;58573:9;58588:28;58573:9;58588:28;58604:7;58588:8;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58572:44;;;58635:4;58627:32;;;;;-1:-1:-1;;;58627:32:0;;;;;;;;;;;;-1:-1:-1;;;58627:32:0;;;;;;;;;;;;;;52073:193;52148:8;;52127:4;;-1:-1:-1;;;;;52148:8:0;52144:63;;-1:-1:-1;52194:1:0;52187:8;;52144:63;52237:8;;;;;;;;;-1:-1:-1;;;;;52237:8:0;-1:-1:-1;;;;;52224:32:0;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53230:340;53303:8;;53282:4;;-1:-1:-1;;;;;53303:8:0;53299:63;;-1:-1:-1;53349:1:0;53342:8;;53299:63;53374:15;53392:17;:15;:17::i;:::-;53374:35;;53420:12;53435:13;:11;:13::i;:::-;53420:28;;53479:7;53465:10;:21;53461:62;;53510:1;53503:8;;;;;;53461:62;53542:20;;;-1:-1:-1;53230:340:0;:::o;4325:144::-;4377:4;4406:1;4402;:5;4394:44;;;;;-1:-1:-1;;;4394:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4460:1;4456;:5;;;;;;;4325:144;-1:-1:-1;;;4325:144:0:o;35024:375::-;-1:-1:-1;;;;;35105:21:0;;35097:65;;;;;-1:-1:-1;;;35097:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35175:49;35204:1;35208:7;35217:6;35175:20;:49::i;:::-;35252:12;;:24;;35269:6;35252:24;:16;:24;:::i;:::-;35237:12;:39;-1:-1:-1;;;;;35308:18:0;;:9;:18;;;;;;;;;;;:30;;35331:6;35308:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;35287:18:0;;:9;:18;;;;;;;;;;;:51;;;;35354:37;;;;;;;35287:18;;:9;;35354:37;;;;;;;;;;35024:375;;:::o;24773:836::-;25197:23;25236:69;25264:4;25236:69;;;;;;;;;;;;;;;;;25244:5;-1:-1:-1;;;;;25236:27:0;;;:69;;;;;:::i;:::-;25320:17;;25197:108;;-1:-1:-1;25320:21:0;25316:286;;25493:10;25482:30;;;;;;;;;;;;;;;-1:-1:-1;25482:30:0;25456:134;;;;-1:-1:-1;;;25456:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16604:229;16741:12;16773:52;16795:6;16803:4;16809:1;16812:12;16741;18146:18;18157:6;18146:10;:18::i;:::-;18138:60;;;;;-1:-1:-1;;;18138:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18272:12;18286:23;18313:6;-1:-1:-1;;;;;18313:11:0;18332:5;18339:4;18313:31;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18313:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18271:73;;;;18362:52;18380:7;18389:10;18401:12;18362:17;:52::i;:::-;18355:59;17817:605;-1:-1:-1;;;;;;;17817:605:0:o;13647:441::-;14024:20;14072:8;;;13647:441::o;20647:777::-;20797:12;20826:7;20822:595;;;-1:-1:-1;20857:10:0;20850:17;;20822:595;20971:17;;:21;20967:439;;21234:10;21228:17;21295:15;21282:10;21278:2;21274:19;21267:44;21182:148;21370:20;;-1:-1:-1;;;21370:20:0;;;;;;;;;;;;;;;;;21377:12;;21370:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://67f96b0ee37cc831ed14e3d0b881e67008de2fab526bb148998629e9d03c5bbb
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.