ETH Price: $3,967.53 (+1.94%)

Token

ERC-20: mushrooming veCRV-DAO yVault (myveCRV-DAO)
 

Overview

Max Total Supply

0.000000049661854142 myveCRV-DAO

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000005211144353 myveCRV-DAO

Value
$0.00
0x045617fe2b023634b153f779e0c161cc9d7ebdb9
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MMVault

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-27
*/

pragma solidity 0.6.12;


// 
interface IController {
    function vaults(address) external view returns (address);

    function rewards() external view returns (address);

    function devfund() external view returns (address);

    function treasury() external view returns (address);

    function balanceOf(address) external view returns (uint256);

    function withdraw(address, uint256) external;
    function withdraw(address, uint256, address) external;

    function earn(address, uint256) external;
}

// 
/**
 * @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, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 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(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // 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 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message 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(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// 
/*
 * @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: contracts/GSN/Context.sol
// 
// File: 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 (uint256);

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

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

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

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: 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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @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, uint256 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, uint256 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, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        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: 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 uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

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

    uint256 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        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, uint256 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 (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 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, uint256 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, uint256 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, uint256 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, uint256 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, uint256 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, uint256 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, uint256 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 {
        _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, uint256 amount) internal virtual { }
}

/**
 * @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 uint256;
    using Address for address;

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

    function safeTransferFrom(IERC20 token, address from, address to, uint256 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, uint256 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, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 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");
        }
    }
}

// 
// Code adapted from https://github.com/OpenZeppelin/openzeppelin-contracts/pull/2237/
/**
 * @dev Interface of the ERC2612 standard as defined in the EIP.
 *
 * Adds the {permit} method, which can be used to change one's
 * {IERC20-allowance} without having to send a transaction, by signing a
 * message. This allows users to spend tokens without having to hold Ether.
 *
 * See https://eips.ethereum.org/EIPS/eip-2612.
 */
interface IERC2612 {
    /**
     * @dev Sets `amount` as the allowance of `spender` over `owner`'s tokens,
     * given `owner`'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(address owner, address spender, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external;

    /**
     * @dev Returns the current ERC2612 nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);
}

// 
// Adapted from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/53516bc555a454862470e7860a9b5254db4d00f5/contracts/token/ERC20/ERC20Permit.sol
/**
 * @author Georgios Konstantopoulos
 * @dev Extension of {ERC20} that allows token holders to use their tokens
 * without sending any transactions by setting {IERC20-allowance} with a
 * signature using the {permit} method, and then spend them via
 * {IERC20-transferFrom}.
 *
 * The {permit} signature mechanism conforms to the {IERC2612} interface.
 */
abstract contract ERC20Permit is ERC20, IERC2612 {
    mapping (address => uint256) public override nonces;

    bytes32 public immutable PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    bytes32 public immutable DOMAIN_SEPARATOR;
    constructor(string memory name_, string memory symbol_) internal ERC20(name_, symbol_) {
        uint256 chainId;
        assembly {
            chainId := chainid()
        }

        DOMAIN_SEPARATOR = keccak256(
            abi.encode(
                keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
                keccak256(bytes(name_)),
                keccak256(bytes("1")),
                chainId,
                address(this)
            )
        );
    }

    /**
     * @dev See {IERC2612-permit}.
     *
     * In cases where the free option is not a concern, deadline can simply be
     * set to uint(-1), so it should be seen as an optional parameter
     */
    function permit(address owner, address spender, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public virtual override {
        require(deadline >= block.timestamp, "ERC20Permit: expired deadline");

        bytes32 hashStruct = keccak256(
            abi.encode(
                PERMIT_TYPEHASH,
                owner,
                spender,
                amount,
                nonces[owner]++,
                deadline
            )
        );

        bytes32 hash = keccak256(
            abi.encodePacked(
                '\x19\x01',
                DOMAIN_SEPARATOR,
                hashStruct
            )
        );

        address signer = ecrecover(hash, v, r, s);
        require(
            signer != address(0) && signer == owner,
            "ERC20Permit: invalid signature"
        );

        _approve(owner, spender, amount);
    }

}

// 
/**
 * @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].
 */
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.
    uint256 constant _NOT_ENTERED = 1;
    uint256 constant _ENTERED = 2;

    uint256 _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;
    }
}

interface IChiToken {
    function freeFromUpTo(address from, uint256 value) external returns (uint256 freed);

    function balanceOf(address account) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);
}

// 
interface IMasterchef {
    function BONUS_MULTIPLIER() external view returns (uint256);

    function add(
        uint256 _allocPoint,
        address _lpToken,
        bool _withUpdate
    ) external;

    function bonusEndBlock() external view returns (uint256);

    function deposit(uint256 _pid, uint256 _amount) external;

    function dev(address _devaddr) external;

    function devFundDivRate() external view returns (uint256);

    function devaddr() external view returns (address);

    function emergencyWithdraw(uint256 _pid) external;

    function getMultiplier(uint256 _from, uint256 _to)
        external
        view
        returns (uint256);

    function massUpdatePools() external;

    function owner() external view returns (address);

    function pendingMM(uint256 _pid, address _user)
        external
        view
        returns (uint256);

    function mm() external view returns (address);

    function mmPerBlock() external view returns (uint256);

    function poolInfo(uint256)
        external
        view
        returns (
            address lpToken,
            uint256 allocPoint,
            uint256 lastRewardBlock,
            uint256 accMMPerShare
        );

    function poolLength() external view returns (uint256);

    function renounceOwnership() external;

    function set(
        uint256 _pid,
        uint256 _allocPoint,
        bool _withUpdate
    ) external;

    function setBonusEndBlock(uint256 _bonusEndBlock) external;

    function setDevFundDivRate(uint256 _devFundDivRate) external;

    function setMMPerBlock(uint256 _mmPerBlock) external;

    function startBlock() external view returns (uint256);

    function totalAllocPoint() external view returns (uint256);

    function transferOwnership(address newOwner) external;

    function updatePool(uint256 _pid) external;

    function userInfo(uint256, address)
        external
        view
        returns (uint256 amount, uint256 rewardDebt);

    function withdraw(uint256 _pid, uint256 _amount) external;

    function notifyBuybackReward(uint256 _amount) external;
}

interface IERC3156FlashBorrower {
    function onFlashLoan(
        address initiator,
        address token,
        uint256 amount,
        uint256 fee,
        bytes calldata data
    ) external returns (bytes32);
}

interface IERC3156FlashLender {
    /**
     * @dev The amount of currency available to be lent.
     * @param token The loan currency.
     * @return The amount of `token` that can be borrowed.
     */
    function maxFlashLoan(
        address token
    ) external view returns (uint256);

    /**
     * @dev The fee to be charged for a given loan.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @return The amount of `token` to be charged for the loan, on top of the returned principal.
     */
    function flashFee(
        address token,
        uint256 amount
    ) external view returns (uint256);

    
    function flashLoan(
        IERC3156FlashBorrower receiver,
        address token,
        uint256 amount,
        bytes calldata data
    ) external returns (bool);
}

// https://github.com/iearn-finance/vaults/blob/master/contracts/vaults/yVault.sol
contract MMVault is ReentrancyGuard, ERC20Permit, IERC3156FlashLender  {
    using SafeERC20 for IERC20;
    using Address for address;
    using SafeMath for uint256;

    IERC20 public immutable token;

    IChiToken public constant chi = IChiToken(0x0000000000004946c0e9F43F4Dee607b0eF1fA1c);

    uint256 public min = 9500;
    uint256 public constant max = 10000;

    uint256 public loanFee = 1;
    uint256 public constant loanFeeMax = 10000;
    bool public loanEnabled = true;

    address public governance;
    address public timelock;
    address public controller;

    mapping(address => bool) public keepers;
    mapping(address => bool) public reentrancyWhitelist;

    uint256 public constant DAY_SECONDS = 86400;
    uint256 public constant lockWindowBuffer = DAY_SECONDS/4;

    uint256 public lockStartTime;
    uint256 public lockWindow;
    uint256 public withdrawWindow;
    uint256 public earnedTimestamp;
    bool public lockEnabled = false;
    bool public earnOnceEnabled = false;

    event FlashLoan(address _initiator, address _token, address _receiver, uint256 _amount, uint256 _loanFee);

    modifier discountCHI() {
        uint256 gasStart = gasleft();
        _;
        uint256 gasSpent = 21000 + gasStart - gasleft() + 16 * msg.data.length;

        if(chi.balanceOf(msg.sender) > 0) {
            chi.freeFromUpTo(msg.sender, (gasSpent + 14154) / 41947);
        }
    }

    modifier onlyKeepers {
        require(
            keepers[msg.sender] ||
            msg.sender == governance,
            "!keepers"
        );
        _;
    }

    modifier onlyGovernance(){
        require(msg.sender == governance, "!governance");
        _;
    }

    modifier canEarn {
        if(lockEnabled){
            require(
                block.timestamp > lockStartTime,
                "!earnTime"
            );
            if(earnOnceEnabled){
                require(
                    block.timestamp.sub(earnedTimestamp) > lockWindow,
                     "!earnTwice");
                if(earnedTimestamp != 0){
                    lockStartTime = getLockCycleEndTime();
                }
                earnedTimestamp = block.timestamp;
            }
        }
        _;
    }

    modifier canWithdraw(uint256 _shares) {
        if(lockEnabled){
            //withdraw locker not work when withdraw amount less than available balance
            if(!withdrawableWithoutLock(_shares)){
                uint256 withdrawStartTimestamp = lockStartTime.add(lockWindow);
                require(
                    block.timestamp > withdrawStartTimestamp &&
                    block.timestamp < withdrawStartTimestamp.add(withdrawWindow),
                    "!withdrawTime"
                );
            }
        }
        _;
    }
	
    modifier nonReentrantWithWhitelist() {
        // only check if NOT in whitelist
        if (!reentrancyWhitelist[msg.sender]){
            // On the first call to nonReentrantWithWhitelist, _notEntered will be true
            require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
            // Any calls to nonReentrantWithWhitelist after this point will fail
            _status = _ENTERED;
        }

        _;	
        
        if (!reentrancyWhitelist[msg.sender]){
            // By storing the original value once again, a refund is triggered (see https://eips.ethereum.org/EIPS/eip-2200)
            _status = _NOT_ENTERED;	
        }
    }

    constructor(address _token, address _governance, address _timelock, address _controller)
        public
        ERC20Permit(
            string(abi.encodePacked("mushrooming ", ERC20(_token).name())),
            string(abi.encodePacked("m", ERC20(_token).symbol()))
        )
    {
        _setupDecimals(ERC20(_token).decimals());
        token = IERC20(_token);
        governance = _governance;
        timelock = _timelock;
        controller = _controller;

        //time line: [lockStartTime]|----lockWindow----|----withdrawWindow----|[lockStartTime]|----lockWindow---|........
        lockWindow = (14 * DAY_SECONDS) + lockWindowBuffer;
        withdrawWindow = DAY_SECONDS/2;
        lockStartTime = block.timestamp.add(withdrawWindow);
    }

    function getName() public pure returns(string memory){
        return "mmVaultV2";
    }

    function balance() public view returns (uint256) {
        return token.balanceOf(address(this)).add(IController(controller).balanceOf(address(token)));
    }

    function setMin(uint256 _min) external onlyGovernance{
        min = _min;
    }

    function setGovernance(address _governance) public onlyGovernance{
        governance = _governance;
    }

    function setTimelock(address _timelock) public {
        require(msg.sender == timelock, "!timelock");
        timelock = _timelock;
    }

    function setController(address _controller) public {
        require(msg.sender == timelock, "!timelock");
        controller = _controller;
    }

    function setLoanFee(uint256 _loanFee) public onlyGovernance{
        loanFee = _loanFee;
    }

    function setLoanEnabled(bool _loanEnabled) public onlyGovernance{
        loanEnabled = _loanEnabled;
    }

    function addKeeper(address _keeper) public onlyGovernance{
        keepers[_keeper] = true;
    }

    function removeKeeper(address _keeper) public onlyGovernance{
        keepers[_keeper] = false;
    }

    function addReentrancyWhitelist(address _whitelist) public onlyGovernance{
        reentrancyWhitelist[_whitelist] = true;
    }

    function removeReentrancyWhitelist(address _whitelist) public onlyGovernance{
        reentrancyWhitelist[_whitelist] = false;
    }

    function setLockWindow(uint256 _lockWindow) public onlyGovernance {
        lockWindow = _lockWindow.add(lockWindowBuffer);
    }

    function setWithdrawWindow(uint256 _withdrawWindow) public onlyGovernance {
        withdrawWindow = _withdrawWindow;
    }

    function setLockEnabled(bool _enabled) public onlyGovernance {
        lockEnabled = _enabled;
    }

    function setEarnOnceEnabled(bool _earnOnce) public onlyGovernance {
        earnOnceEnabled = _earnOnce;
    }

    function resetLockStartTime(uint256 _lockStartTime) public onlyGovernance{
        require(lockEnabled, "!lockEnabled");

        uint256 withdrawEndTime = getLockCycleEndTime();
        require(block.timestamp >= withdrawEndTime, "Last lock cycle not end");
        require(_lockStartTime > block.timestamp, "!_lockStartTime");
        lockStartTime = _lockStartTime;
    }

    function getLockCycleEndTime() public view returns (uint256){
        return lockStartTime.add(lockWindow).add(withdrawWindow);
    }

    function withdrawableWithoutLock(uint256 _shares) public view returns(bool){
        uint256 _withdrawAmount = (balance().mul(_shares)).div(totalSupply());
        return _withdrawAmount <= token.balanceOf(address(this));
    }

    // Custom logic in here for how much the vaults allows to be borrowed
    // Sets minimum required on-hand to keep small withdrawals cheap
    function available() public view returns (uint256) {
        return token.balanceOf(address(this)).mul(min).div(max);
    }

    function earn() public nonReentrant onlyKeepers canEarn {
        uint256 _bal = available();
        token.safeTransfer(controller, _bal);
        IController(controller).earn(address(token), _bal);
    }

    function depositAll() external {
        deposit(token.balanceOf(msg.sender));
    }

    function deposit(uint256 _approveAmount, uint256 _amount, uint256 _deadline, uint8 v, bytes32 r, bytes32 s) public {
        require(_approveAmount >= _amount, "!_approveAmount");
        IERC2612(address(token)).permit(msg.sender, address(this), _approveAmount, _deadline, v, r, s);
        deposit(_amount);
    }

    function deposit(uint256 _amount) public nonReentrant {
        uint256 _pool = balance();
        uint256 _before = token.balanceOf(address(this));
        token.safeTransferFrom(msg.sender, address(this), _amount);
        uint256 _after = token.balanceOf(address(this));
        _amount = _after.sub(_before); // Additional check for deflationary tokens
        uint256 shares = 0;
        if (totalSupply() == 0) {
            shares = _amount;
        } else {
            shares = (_amount.mul(totalSupply())).div(_pool);
        }
        _mint(msg.sender, shares);
    }

    function withdrawAll() external {
        withdraw(balanceOf(msg.sender));
    }

    // Used to swap any borrowed reserve over the debt limit to liquidate to 'token'
    function harvest(address reserve, uint256 amount)  external nonReentrant {
        require(msg.sender == controller, "!controller");
        require(reserve != address(token), "token");
        IERC20(reserve).safeTransfer(controller, amount);
    }

    // No rebalance implementation for lower fees and faster swaps
    function withdraw(uint256 _shares) public nonReentrant canWithdraw(_shares) {
        uint256 r = (balance().mul(_shares)).div(totalSupply());
        _burn(msg.sender, _shares);

        // Check balance
        uint256 b = token.balanceOf(address(this));
        if (b < r) {
            uint256 _withdraw = r.sub(b);
            IController(controller).withdraw(address(token), _withdraw); //,address(msg.sender));
            uint256 _after = token.balanceOf(address(this));
            uint256 _diff = _after.sub(b);
            if (_diff < _withdraw) {
                r = b.add(_diff);
            }
        }

        token.safeTransfer(msg.sender, r);
    }

    function getRatio() public view returns (uint256) {
        return balance().mul(1e18).div(totalSupply());
    }

    function maxFlashLoan(
        address _token
    ) external override view returns (uint256){
        require(address(_token) == address(token), "!_token");
        return token.balanceOf(address(this));
    }

    function flashFee(
        address _token,
        uint256 amount
    ) external override view returns (uint256){
        require(address(_token) == address(token), "!_token");
        return loanFee.mul(amount).div(loanFeeMax);
    }

    function flashLoan(IERC3156FlashBorrower _receiver, address _token, uint256 _amount, bytes memory _data) public override nonReentrantWithWhitelist discountCHI returns (bool){
        require(loanEnabled == true, "!loanEnabled");
        require(_amount > 0, "amount too small!");
        require(address(_token) == address(token), "!_token");
        uint256 beforeBalance = token.balanceOf(address(this));
        require(beforeBalance > _amount, "balance not enough!");

        //loanFee
        uint256 _fee = _amount.mul(loanFee).div(loanFeeMax);

        require(_fee > 0, "fee too small");

        //transfer token to _receiver
        token.safeTransfer(address(_receiver), _amount);

        //execute user's logic
        IERC3156FlashBorrower(_receiver).onFlashLoan(address(msg.sender), address(token), _amount, _fee, _data);

        uint256 afterBalance = token.balanceOf(address(this));

        require(afterBalance == beforeBalance.add(_fee), "payback amount incorrect!");

        emit FlashLoan(address(msg.sender), address(token), address(_receiver), _amount, _fee);
        return true;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_governance","type":"address"},{"internalType":"address","name":"_timelock","type":"address"},{"internalType":"address","name":"_controller","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":"_initiator","type":"address"},{"indexed":false,"internalType":"address","name":"_token","type":"address"},{"indexed":false,"internalType":"address","name":"_receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_loanFee","type":"uint256"}],"name":"FlashLoan","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":"DAY_SECONDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"addKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelist","type":"address"}],"name":"addReentrancyWhitelist","outputs":[],"stateMutability":"nonpayable","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":[],"name":"available","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balance","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":"chi","outputs":[{"internalType":"contract IChiToken","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_approveAmount","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earnOnceEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earnedTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"flashFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC3156FlashBorrower","name":"_receiver","type":"address"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"flashLoan","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getLockCycleEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"reserve","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"harvest","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"keepers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"loanEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"loanFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"loanFeeMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockWindow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockWindowBuffer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"maxFlashLoan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"min","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"reentrancyWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"removeKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelist","type":"address"}],"name":"removeReentrancyWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lockStartTime","type":"uint256"}],"name":"resetLockStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"setController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_earnOnce","type":"bool"}],"name":"setEarnOnceEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_loanEnabled","type":"bool"}],"name":"setLoanEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_loanFee","type":"uint256"}],"name":"setLoanFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setLockEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lockWindow","type":"uint256"}],"name":"setLockWindow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_min","type":"uint256"}],"name":"setMin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_timelock","type":"address"}],"name":"setTimelock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_withdrawWindow","type":"uint256"}],"name":"setWithdrawWindow","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":"contract IERC20","name":"","type":"address"}],"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":"uint256","name":"_shares","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawWindow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_shares","type":"uint256"}],"name":"withdrawableWithoutLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60e06040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960805261251c60085560016009819055600a805460ff191690911790556013805461ffff191690553480156200005a57600080fd5b50604051620041cf380380620041cf833981810160405260808110156200008057600080fd5b508051602082015160408084015160609094015181516306fdde0360e01b815291519394929390916001600160a01b038616916306fdde0391600480820192600092909190829003018186803b158015620000da57600080fd5b505afa158015620000ef573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156200011957600080fd5b81019080805160405193929190846401000000008211156200013a57600080fd5b9083019060208201858111156200015057600080fd5b82516401000000008111828201881017156200016b57600080fd5b82525081516020918201929091019080838360005b838110156200019a57818101518382015260200162000180565b50505050905090810190601f168015620001c85780820380516001836020036101000a031916815260200191505b5060405250505060405160200180806b036bab9b43937b7b6b4b733960a51b815250600c0182805190602001908083835b602083106200021a5780518252601f199092019160209182019101620001f9565b6001836020036101000a038019825116818451168082178552505050505050905001915050604051602081830303815290604052846001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b1580156200028857600080fd5b505afa1580156200029d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015620002c757600080fd5b8101908080516040519392919084640100000000821115620002e857600080fd5b908301906020820185811115620002fe57600080fd5b82516401000000008111828201881017156200031957600080fd5b82525081516020918201929091019080838360005b83811015620003485781810151838201526020016200032e565b50505050905090810190601f168015620003765780820380516001836020036101000a031916815260200191505b506040525050506040516020018080606d60f81b81525060010182805190602001908083835b60208310620003bd5780518252601f1990920191602091820191016200039c565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040528181600160008190555081600490805190602001906200041392919062000658565b5080516200042990600590602084019062000658565b50506006805460ff191660121790555050805160209182012060408051808201825260018152603160f81b9084015280517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81850152808201929092527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a08084019190915281518084038201815260c0840180845281519186019190912090915263313ce56760e01b90525162000549926001600160a01b0388169263313ce5679260c48083019392829003018186803b1580156200051557600080fd5b505afa1580156200052a573d6000803e3d6000fd5b505050506040513d60208110156200054157600080fd5b5051620005e0565b6001600160601b0319606085901b1660c052600a80546001600160a01b0385811661010002610100600160a81b031990921691909117909155600b80548483166001600160a01b031991821617909155600c8054928416929091169190911790556212c96060105561a8c06011819055620005d2904290620005f6602090811b62002eb917901c565b600f5550620006f492505050565b6006805460ff191660ff92909216919091179055565b60008282018381101562000651576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200069b57805160ff1916838001178555620006cb565b82800160010185558215620006cb579182015b82811115620006cb578251825591602001919060010190620006ae565b50620006d9929150620006dd565b5090565b5b80821115620006d95760008155600101620006de565b60805160a05160c05160601c613a24620007ab60003980610c1a5280610ffe52806110c6528061113e528061120b528061145e528061161a528061168c52806117e0528061181952806119505280611a335280611bf25280611c80528061213352806121d552806122a8528061234e528061237a528061279152806127d55280612aeb5280612c0d5280612cad5280612de15280612e975250806112fc528061292f52508061123f52806128c25250613a246000f3fe608060405234801561001057600080fd5b50600436106103e65760003560e01c8063853828b61161020a578063cb028a8311610125578063dd62ed3e116100b8578063f15bd9d511610087578063f15bd9d514610b43578063f1941abe14610b4b578063f77c479114610b68578063f889794514610b70578063fc0c546a14610b78576103e6565b8063dd62ed3e14610ae8578063de5f626814610b16578063ec1ebd7a14610b1e578063edcb208b14610b26576103e6565b8063d505accf116100f4578063d505accf14610a07578063d9207fd914610a58578063d9d98ce414610a7e578063db55118714610aaa576103e6565b8063cb028a83146109e7578063cd98f7f0146109ef578063d33219b4146109f7578063d389800f146109ff576103e6565b8063b32f2ea31161019d578063bc0ee6901161016c578063bc0ee6901461098b578063bdacb303146109b1578063c5e68f5b146109d7578063c92aecc4146109df576103e6565b8063b32f2ea31461093f578063b69ef8a814610947578063b6b55f251461094f578063bb10cbb51461096c576103e6565b80639bcb5572116101d95780639bcb5572146108b9578063a457c2d7146108c1578063a9059cbb146108ed578063ab033ea914610919576103e6565b8063853828b61461086657806392eefe9b1461086e57806395d89b41146108945780639bc1d87c1461089c576103e6565b80633644e515116103055780635cffe9de116102985780636aa4439f116102675780636aa4439f146107f35780636ac5db191461057157806370a08231146108125780637ecebe001461083857806384f313131461085e576103e6565b80635cffe9de146106e2578063613255ab146107a857806362c7fa76146107ce578063658f99b6146107d6576103e6565b806345dc3dd8116102d457806345dc3dd81461069157806348a0d754146106ae57806358e6d53c146106b65780635aa6e675146106be576103e6565b80633644e5151461061157806339509351146106195780633bbd64bc146106455780634032b72b1461066b576103e6565b8063287a0f771161037d5780633166b8481161034c5780633166b848146105bc578063316c71ed146105c45780633376f53a146105ea578063337e5024146105f2576103e6565b8063287a0f77146105715780632e1a7d4d1461057957806330adf81f14610596578063313ce5671461059e576103e6565b806314ae9f2e116103b957806314ae9f2e146104f357806317d7de7c1461051957806318160ddd1461052157806323b872dd1461053b576103e6565b8063018ee9b7146103eb57806302950d311461041957806306fdde0314610436578063095ea7b3146104b3575b600080fd5b6104176004803603604081101561040157600080fd5b506001600160a01b038135169060200135610b80565b005b6104176004803603602081101561042f57600080fd5b5035610caa565b61043e610d0e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610478578181015183820152602001610460565b50505050905090810190601f1680156104a55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104df600480360360408110156104c957600080fd5b506001600160a01b038135169060200135610da4565b604080519115158252519081900360200190f35b6104176004803603602081101561050957600080fd5b50356001600160a01b0316610dc2565b61043e610e35565b610529610e58565b60408051918252519081900360200190f35b6104df6004803603606081101561055157600080fd5b506001600160a01b03813581169160208101359091169060400135610e5e565b610529610ee5565b6104176004803603602081101561058f57600080fd5b5035610eeb565b61052961123d565b6105a6611261565b6040805160ff9092168252519081900360200190f35b6104df61126a565b6104df600480360360208110156105da57600080fd5b50356001600160a01b0316611273565b610529611288565b6104176004803603602081101561060857600080fd5b5035151561128e565b6105296112fa565b6104df6004803603604081101561062f57600080fd5b506001600160a01b03813516906020013561131e565b6104df6004803603602081101561065b57600080fd5b50356001600160a01b031661136c565b6104176004803603602081101561068157600080fd5b50356001600160a01b0316611381565b610417600480360360208110156106a757600080fd5b50356113f7565b61052961144e565b610529611500565b6106c6611507565b604080516001600160a01b039092168252519081900360200190f35b6104df600480360360808110156106f857600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561073357600080fd5b82018360208201111561074557600080fd5b8035906020019184600183028401116401000000008311171561076757600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061151b945050505050565b610529600480360360208110156107be57600080fd5b50356001600160a01b0316611bee565b610529611cf8565b610417600480360360208110156107ec57600080fd5b5035611cfe565b6104176004803603602081101561080957600080fd5b50351515611d55565b6105296004803603602081101561082857600080fd5b50356001600160a01b0316611dba565b6105296004803603602081101561084e57600080fd5b50356001600160a01b0316611dd5565b6104df611de7565b610417611df0565b6104176004803603602081101561088457600080fd5b50356001600160a01b0316611e03565b61043e611e70565b610417600480360360208110156108b257600080fd5b5035611ed1565b610529612016565b6104df600480360360408110156108d757600080fd5b506001600160a01b03813516906020013561201c565b6104df6004803603604081101561090357600080fd5b506001600160a01b038135169060200135612084565b6104176004803603602081101561092f57600080fd5b50356001600160a01b0316612098565b610529612112565b610529612118565b6104176004803603602081101561096557600080fd5b503561224d565b6104176004803603602081101561098257600080fd5b50351515612463565b610417600480360360208110156109a157600080fd5b50356001600160a01b03166124c8565b610417600480360360208110156109c757600080fd5b50356001600160a01b031661253b565b6105296125a8565b6106c66125cd565b6105296125df565b6105296125e5565b6106c66125eb565b6104176125fa565b610417600480360360e0811015610a1d57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135612843565b61041760048036036020811015610a6e57600080fd5b50356001600160a01b0316612a71565b61052960048036036040811015610a9457600080fd5b506001600160a01b038135169060200135612ae7565b610417600480360360c0811015610ac057600080fd5b5080359060208101359060408101359060ff6060820135169060808101359060a00135612b7b565b61052960048036036040811015610afe57600080fd5b506001600160a01b0381358116916020013516612c7d565b610417612ca8565b610529612d49565b61041760048036036020811015610b3c57600080fd5b5035612d6a565b6104df612dc1565b6104df60048036036020811015610b6157600080fd5b5035612dcf565b6106c6612e80565b610529612e8f565b6106c6612e95565b60026000541415610bc6576040805162461bcd60e51b815260206004820152601f6024820152600080516020613863833981519152604482015290519081900360640190fd5b6002600055600c546001600160a01b03163314610c18576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610c87576040805162461bcd60e51b81526020600482015260056024820152643a37b5b2b760d91b604482015290519081900360640190fd5b600c54610ca1906001600160a01b03848116911683612f13565b50506001600055565b600a5461010090046001600160a01b03163314610cfc576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b610d0881615460612eb9565b60105550565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d9a5780601f10610d6f57610100808354040283529160200191610d9a565b820191906000526020600020905b815481529060010190602001808311610d7d57829003601f168201915b5050505050905090565b6000610db8610db1612f6a565b8484612f6e565b5060015b92915050565b600a5461010090046001600160a01b03163314610e14576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152600d60205260409020805460ff19169055565b60408051808201909152600981526836b6ab30bab63a2b1960b91b602082015290565b60035490565b6000610e6b84848461305a565b610edb84610e77612f6a565b610ed68560405180606001604052806028815260200161390e602891396001600160a01b038a16600090815260026020526040812090610eb5612f6a565b6001600160a01b0316815260208101919091526040016000205491906131b7565b612f6e565b5060019392505050565b61271081565b60026000541415610f31576040805162461bcd60e51b815260206004820152601f6024820152600080516020613863833981519152604482015290519081900360640190fd5b6002600055601354819060ff1615610fc957610f4c81612dcf565b610fc9576000610f69601054600f54612eb990919063ffffffff16565b90508042118015610f865750601154610f83908290612eb9565b42105b610fc7576040805162461bcd60e51b815260206004820152600d60248201526c21776974686472617754696d6560981b604482015290519081900360640190fd5b505b6000610fee610fd6610e58565b610fe885610fe2612118565b9061324e565b906132a7565b9050610ffa33846132e9565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561106957600080fd5b505afa15801561107d573d6000803e3d6000fd5b505050506040513d602081101561109357600080fd5b50519050818110156111fe5760006110ab83836133e5565b600c546040805163f3fef3a360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260248201859052915193945091169163f3fef3a39160448082019260009290919082900301818387803b15801561112257600080fd5b505af1158015611136573d6000803e3d6000fd5b5050505060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156111a957600080fd5b505afa1580156111bd573d6000803e3d6000fd5b505050506040513d60208110156111d357600080fd5b5051905060006111e382856133e5565b9050828110156111fa576111f78482612eb9565b94505b5050505b6112326001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163384612f13565b505060016000555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60065460ff1690565b60135460ff1681565b600e6020526000908152604090205460ff1681565b60105481565b600a5461010090046001600160a01b031633146112e0576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b601380549115156101000261ff0019909216919091179055565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610db861132b612f6a565b84610ed6856002600061133c612f6a565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612eb9565b600d6020526000908152604090205460ff1681565b600a5461010090046001600160a01b031633146113d3576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152600d60205260409020805460ff19166001179055565b600a5461010090046001600160a01b03163314611449576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600855565b60006114fb612710610fe86008547f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156114c957600080fd5b505afa1580156114dd573d6000803e3d6000fd5b505050506040513d60208110156114f357600080fd5b50519061324e565b905090565b6201518081565b600a5461010090046001600160a01b031681565b336000908152600e602052604081205460ff1661157e5760026000541415611578576040805162461bcd60e51b815260206004820152601f6024820152600080516020613863833981519152604482015290519081900360640190fd5b60026000555b60005a600a5490915060ff1615156001146115cf576040805162461bcd60e51b815260206004820152600c60248201526b085b1bd85b915b98589b195960a21b604482015290519081900360640190fd5b60008411611618576040805162461bcd60e51b8152602060048201526011602482015270616d6f756e7420746f6f20736d616c6c2160781b604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614611688576040805162461bcd60e51b815260206004820152600760248201526610afba37b5b2b760c91b604482015290519081900360640190fd5b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156116f757600080fd5b505afa15801561170b573d6000803e3d6000fd5b505050506040513d602081101561172157600080fd5b5051905084811161176f576040805162461bcd60e51b815260206004820152601360248201527262616c616e6365206e6f7420656e6f7567682160681b604482015290519081900360640190fd5b600061178c612710610fe86009548961324e90919063ffffffff16565b9050600081116117d3576040805162461bcd60e51b815260206004820152600d60248201526c199959481d1bdbc81cdb585b1b609a1b604482015290519081900360640190fd5b6118076001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168988612f13565b876001600160a01b03166323e30c8b337f000000000000000000000000000000000000000000000000000000000000000089858a6040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156118b1578181015183820152602001611899565b50505050905090810190601f1680156118de5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561190157600080fd5b505af1158015611915573d6000803e3d6000fd5b505050506040513d602081101561192b57600080fd5b5050604080516370a0823160e01b815230600482015290516000916001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916370a0823191602480820192602092909190829003018186803b15801561199757600080fd5b505afa1580156119ab573d6000803e3d6000fd5b505050506040513d60208110156119c157600080fd5b505190506119cf8383612eb9565b8114611a22576040805162461bcd60e51b815260206004820152601960248201527f7061796261636b20616d6f756e7420696e636f72726563742100000000000000604482015290519081900360640190fd5b604080513381526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660208301528b1681830152606081018990526080810184905290517f3659d15bd4bb92ab352a8d35bc3119ec6e7e0ab48e4d46201c8a28e02b6a8a869181900360a00190a1600194505050506000601036025a83615208010301905060006d4946c0e9f43f4dee607b0ef1fa1c6001600160a01b03166370a08231336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611b0d57600080fd5b505afa158015611b21573d6000803e3d6000fd5b505050506040513d6020811015611b3757600080fd5b50511115611bc7576040805163079d229f60e01b815233600482015261a3db61374a840104602482015290516d4946c0e9f43f4dee607b0ef1fa1c9163079d229f9160448083019260209291908290030181600087803b158015611b9a57600080fd5b505af1158015611bae573d6000803e3d6000fd5b505050506040513d6020811015611bc457600080fd5b50505b5050336000908152600e602052604090205460ff16611be65760016000555b949350505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614611c60576040805162461bcd60e51b815260206004820152600760248201526610afba37b5b2b760c91b604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916370a08231916024808301926020929190829003018186803b158015611cc657600080fd5b505afa158015611cda573d6000803e3d6000fd5b505050506040513d6020811015611cf057600080fd5b505192915050565b600f5481565b600a5461010090046001600160a01b03163314611d50576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600955565b600a5461010090046001600160a01b03163314611da7576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6013805460ff1916911515919091179055565b6001600160a01b031660009081526001602052604090205490565b60076020526000908152604090205481565b600a5460ff1681565b611e01611dfc33611dba565b610eeb565b565b600b546001600160a01b03163314611e4e576040805162461bcd60e51b81526020600482015260096024820152682174696d656c6f636b60b81b604482015290519081900360640190fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60058054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d9a5780601f10610d6f57610100808354040283529160200191610d9a565b600a5461010090046001600160a01b03163314611f23576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b60135460ff16611f69576040805162461bcd60e51b815260206004820152600c60248201526b085b1bd8dad15b98589b195960a21b604482015290519081900360640190fd5b6000611f736125a8565b905080421015611fca576040805162461bcd60e51b815260206004820152601760248201527f4c617374206c6f636b206379636c65206e6f7420656e64000000000000000000604482015290519081900360640190fd5b428211612010576040805162461bcd60e51b815260206004820152600f60248201526e215f6c6f636b537461727454696d6560881b604482015290519081900360640190fd5b50600f55565b60095481565b6000610db8612029612f6a565b84610ed6856040518060600160405280602581526020016139ca6025913960026000612053612f6a565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906131b7565b6000610db8612091612f6a565b848461305a565b600a5461010090046001600160a01b031633146120ea576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600a80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b61546081565b600c54604080516370a0823160e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015291516000936114fb9316916370a08231916024808301926020929190829003018186803b15801561218957600080fd5b505afa15801561219d573d6000803e3d6000fd5b505050506040513d60208110156121b357600080fd5b5051604080516370a0823160e01b815230600482015290516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916370a08231916024808301926020929190829003018186803b15801561221b57600080fd5b505afa15801561222f573d6000803e3d6000fd5b505050506040513d602081101561224557600080fd5b505190612eb9565b60026000541415612293576040805162461bcd60e51b815260206004820152601f6024820152600080516020613863833981519152604482015290519081900360640190fd5b600260009081556122a2612118565b905060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561231357600080fd5b505afa158015612327573d6000803e3d6000fd5b505050506040513d602081101561233d57600080fd5b505190506123766001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333086613427565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156123e557600080fd5b505afa1580156123f9573d6000803e3d6000fd5b505050506040513d602081101561240f57600080fd5b5051905061241d81836133e5565b93506000612429610e58565b61243457508361244d565b61244a84610fe8612443610e58565b889061324e565b90505b6124573382613487565b50506001600055505050565b600a5461010090046001600160a01b031633146124b5576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600a805460ff1916911515919091179055565b600a5461010090046001600160a01b0316331461251a576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152600e60205260409020805460ff19169055565b600b546001600160a01b03163314612586576040805162461bcd60e51b81526020600482015260096024820152682174696d656c6f636b60b81b604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006114fb6011546125c7601054600f54612eb990919063ffffffff16565b90612eb9565b6d4946c0e9f43f4dee607b0ef1fa1c81565b60115481565b60125481565b600b546001600160a01b031681565b60026000541415612640576040805162461bcd60e51b815260206004820152601f6024820152600080516020613863833981519152604482015290519081900360640190fd5b60026000908155338152600d602052604090205460ff16806126715750600a5461010090046001600160a01b031633145b6126ad576040805162461bcd60e51b8152602060048201526008602482015267216b65657065727360c01b604482015290519081900360640190fd5b60135460ff161561277357600f5442116126fa576040805162461bcd60e51b8152602060048201526009602482015268216561726e54696d6560b81b604482015290519081900360640190fd5b601354610100900460ff16156127735760105460125461271b9042906133e5565b1161275a576040805162461bcd60e51b815260206004820152600a602482015269216561726e547769636560b01b604482015290519081900360640190fd5b6012541561276e5761276a6125a8565b600f555b426012555b600061277d61144e565b600c549091506127ba906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116911683612f13565b600c546040805163b02bf4b960e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152602482018590529151919092169163b02bf4b991604480830192600092919082900301818387803b15801561282f57600080fd5b505af1158015612457573d6000803e3d6000fd5b42841015612898576040805162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015290519081900360640190fd5b6001600160a01b0380881660008181526007602090815260408083208054600180820190925582517f00000000000000000000000000000000000000000000000000000000000000008186015280840196909652958c166060860152608085018b905260a085019590955260c08085018a90528151808603909101815260e08501825280519083012061190160f01b6101008601527f000000000000000000000000000000000000000000000000000000000000000061010286015261012280860182905282518087039091018152610142860180845281519185019190912090859052610162860180845281905260ff8a166101828701526101a286018990526101c2860188905291519095919491926101e2808401939192601f1981019281900390910190855afa1580156129d3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590612a095750896001600160a01b0316816001600160a01b0316145b612a5a576040805162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015290519081900360640190fd5b612a658a8a8a612f6e565b50505050505050505050565b600a5461010090046001600160a01b03163314612ac3576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614612b59576040805162461bcd60e51b815260206004820152600760248201526610afba37b5b2b760c91b604482015290519081900360640190fd5b612b74612710610fe88460095461324e90919063ffffffff16565b9392505050565b84861015612bc2576040805162461bcd60e51b815260206004820152600f60248201526e0857d85c1c1c9bdd99505b5bdd5b9d608a1b604482015290519081900360640190fd5b6040805163d505accf60e01b8152336004820152306024820152604481018890526064810186905260ff8516608482015260a4810184905260c4810183905290516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163d505accf9160e480830192600092919082900301818387803b158015612c5457600080fd5b505af1158015612c68573d6000803e3d6000fd5b50505050612c758561224d565b505050505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b611e017f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015612d1857600080fd5b505afa158015612d2c573d6000803e3d6000fd5b505050506040513d6020811015612d4257600080fd5b505161224d565b60006114fb612d56610e58565b610fe8670de0b6b3a7640000610fe2612118565b600a5461010090046001600160a01b03163314612dbc576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b601155565b601354610100900460ff1681565b600080612ddd610fd6610e58565b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015612e4c57600080fd5b505afa158015612e60573d6000803e3d6000fd5b505050506040513d6020811015612e7657600080fd5b5051101592915050565b600c546001600160a01b031681565b60085481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600082820183811015612b74576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052612f65908490613579565b505050565b3390565b6001600160a01b038316612fb35760405162461bcd60e51b815260040180806020018281038252602481526020018061397c6024913960400191505060405180910390fd5b6001600160a01b038216612ff85760405162461bcd60e51b81526004018080602001828103825260228152602001806138a56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661309f5760405162461bcd60e51b81526004018080602001828103825260258152602001806139576025913960400191505060405180910390fd5b6001600160a01b0382166130e45760405162461bcd60e51b81526004018080602001828103825260238152602001806138406023913960400191505060405180910390fd5b6130ef838383612f65565b61312c816040518060600160405280602681526020016138c7602691396001600160a01b03861660009081526001602052604090205491906131b7565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461315b9082612eb9565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156132465760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561320b5781810151838201526020016131f3565b50505050905090810190601f1680156132385780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008261325d57506000610dbc565b8282028284828161326a57fe5b0414612b745760405162461bcd60e51b81526004018080602001828103825260218152602001806138ed6021913960400191505060405180910390fd5b6000612b7483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061362a565b6001600160a01b03821661332e5760405162461bcd60e51b81526004018080602001828103825260218152602001806139366021913960400191505060405180910390fd5b61333a82600083612f65565b61337781604051806060016040528060228152602001613883602291396001600160a01b03851660009081526001602052604090205491906131b7565b6001600160a01b03831660009081526001602052604090205560035461339d90826133e5565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000612b7483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506131b7565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052613481908590613579565b50505050565b6001600160a01b0382166134e2576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6134ee60008383612f65565b6003546134fb9082612eb9565b6003556001600160a01b0382166000908152600160205260409020546135219082612eb9565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60606135ce826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661368f9092919063ffffffff16565b805190915015612f65578080602001905160208110156135ed57600080fd5b5051612f655760405162461bcd60e51b815260040180806020018281038252602a8152602001806139a0602a913960400191505060405180910390fd5b600081836136795760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561320b5781810151838201526020016131f3565b50600083858161368557fe5b0495945050505050565b6060611be6848460008560606136a485613806565b6136f5576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106137345780518252601f199092019160209182019101613715565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613796576040519150601f19603f3d011682016040523d82523d6000602084013e61379b565b606091505b509150915081156137af579150611be69050565b8051156137bf5780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561320b5781810151838201526020016131f3565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611be657505015159291505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735265656e7472616e637947756172643a207265656e7472616e742063616c6c0045524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b9c31a45e847b7be94278a4de93ddadae46b782bdc7d4cb46b528b6fce8150ec64736f6c634300060c0033000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a00000000000000000000000043229759e12efbe3e2a0fb0510b15e516d0464420000000000000000000000005dae9b27313670663b34ac8bffd18825bb9df7360000000000000000000000004bf5059065541a2b176500928e91fbfd0b121d07

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103e65760003560e01c8063853828b61161020a578063cb028a8311610125578063dd62ed3e116100b8578063f15bd9d511610087578063f15bd9d514610b43578063f1941abe14610b4b578063f77c479114610b68578063f889794514610b70578063fc0c546a14610b78576103e6565b8063dd62ed3e14610ae8578063de5f626814610b16578063ec1ebd7a14610b1e578063edcb208b14610b26576103e6565b8063d505accf116100f4578063d505accf14610a07578063d9207fd914610a58578063d9d98ce414610a7e578063db55118714610aaa576103e6565b8063cb028a83146109e7578063cd98f7f0146109ef578063d33219b4146109f7578063d389800f146109ff576103e6565b8063b32f2ea31161019d578063bc0ee6901161016c578063bc0ee6901461098b578063bdacb303146109b1578063c5e68f5b146109d7578063c92aecc4146109df576103e6565b8063b32f2ea31461093f578063b69ef8a814610947578063b6b55f251461094f578063bb10cbb51461096c576103e6565b80639bcb5572116101d95780639bcb5572146108b9578063a457c2d7146108c1578063a9059cbb146108ed578063ab033ea914610919576103e6565b8063853828b61461086657806392eefe9b1461086e57806395d89b41146108945780639bc1d87c1461089c576103e6565b80633644e515116103055780635cffe9de116102985780636aa4439f116102675780636aa4439f146107f35780636ac5db191461057157806370a08231146108125780637ecebe001461083857806384f313131461085e576103e6565b80635cffe9de146106e2578063613255ab146107a857806362c7fa76146107ce578063658f99b6146107d6576103e6565b806345dc3dd8116102d457806345dc3dd81461069157806348a0d754146106ae57806358e6d53c146106b65780635aa6e675146106be576103e6565b80633644e5151461061157806339509351146106195780633bbd64bc146106455780634032b72b1461066b576103e6565b8063287a0f771161037d5780633166b8481161034c5780633166b848146105bc578063316c71ed146105c45780633376f53a146105ea578063337e5024146105f2576103e6565b8063287a0f77146105715780632e1a7d4d1461057957806330adf81f14610596578063313ce5671461059e576103e6565b806314ae9f2e116103b957806314ae9f2e146104f357806317d7de7c1461051957806318160ddd1461052157806323b872dd1461053b576103e6565b8063018ee9b7146103eb57806302950d311461041957806306fdde0314610436578063095ea7b3146104b3575b600080fd5b6104176004803603604081101561040157600080fd5b506001600160a01b038135169060200135610b80565b005b6104176004803603602081101561042f57600080fd5b5035610caa565b61043e610d0e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610478578181015183820152602001610460565b50505050905090810190601f1680156104a55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104df600480360360408110156104c957600080fd5b506001600160a01b038135169060200135610da4565b604080519115158252519081900360200190f35b6104176004803603602081101561050957600080fd5b50356001600160a01b0316610dc2565b61043e610e35565b610529610e58565b60408051918252519081900360200190f35b6104df6004803603606081101561055157600080fd5b506001600160a01b03813581169160208101359091169060400135610e5e565b610529610ee5565b6104176004803603602081101561058f57600080fd5b5035610eeb565b61052961123d565b6105a6611261565b6040805160ff9092168252519081900360200190f35b6104df61126a565b6104df600480360360208110156105da57600080fd5b50356001600160a01b0316611273565b610529611288565b6104176004803603602081101561060857600080fd5b5035151561128e565b6105296112fa565b6104df6004803603604081101561062f57600080fd5b506001600160a01b03813516906020013561131e565b6104df6004803603602081101561065b57600080fd5b50356001600160a01b031661136c565b6104176004803603602081101561068157600080fd5b50356001600160a01b0316611381565b610417600480360360208110156106a757600080fd5b50356113f7565b61052961144e565b610529611500565b6106c6611507565b604080516001600160a01b039092168252519081900360200190f35b6104df600480360360808110156106f857600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561073357600080fd5b82018360208201111561074557600080fd5b8035906020019184600183028401116401000000008311171561076757600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061151b945050505050565b610529600480360360208110156107be57600080fd5b50356001600160a01b0316611bee565b610529611cf8565b610417600480360360208110156107ec57600080fd5b5035611cfe565b6104176004803603602081101561080957600080fd5b50351515611d55565b6105296004803603602081101561082857600080fd5b50356001600160a01b0316611dba565b6105296004803603602081101561084e57600080fd5b50356001600160a01b0316611dd5565b6104df611de7565b610417611df0565b6104176004803603602081101561088457600080fd5b50356001600160a01b0316611e03565b61043e611e70565b610417600480360360208110156108b257600080fd5b5035611ed1565b610529612016565b6104df600480360360408110156108d757600080fd5b506001600160a01b03813516906020013561201c565b6104df6004803603604081101561090357600080fd5b506001600160a01b038135169060200135612084565b6104176004803603602081101561092f57600080fd5b50356001600160a01b0316612098565b610529612112565b610529612118565b6104176004803603602081101561096557600080fd5b503561224d565b6104176004803603602081101561098257600080fd5b50351515612463565b610417600480360360208110156109a157600080fd5b50356001600160a01b03166124c8565b610417600480360360208110156109c757600080fd5b50356001600160a01b031661253b565b6105296125a8565b6106c66125cd565b6105296125df565b6105296125e5565b6106c66125eb565b6104176125fa565b610417600480360360e0811015610a1d57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135612843565b61041760048036036020811015610a6e57600080fd5b50356001600160a01b0316612a71565b61052960048036036040811015610a9457600080fd5b506001600160a01b038135169060200135612ae7565b610417600480360360c0811015610ac057600080fd5b5080359060208101359060408101359060ff6060820135169060808101359060a00135612b7b565b61052960048036036040811015610afe57600080fd5b506001600160a01b0381358116916020013516612c7d565b610417612ca8565b610529612d49565b61041760048036036020811015610b3c57600080fd5b5035612d6a565b6104df612dc1565b6104df60048036036020811015610b6157600080fd5b5035612dcf565b6106c6612e80565b610529612e8f565b6106c6612e95565b60026000541415610bc6576040805162461bcd60e51b815260206004820152601f6024820152600080516020613863833981519152604482015290519081900360640190fd5b6002600055600c546001600160a01b03163314610c18576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b7f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a6001600160a01b0316826001600160a01b03161415610c87576040805162461bcd60e51b81526020600482015260056024820152643a37b5b2b760d91b604482015290519081900360640190fd5b600c54610ca1906001600160a01b03848116911683612f13565b50506001600055565b600a5461010090046001600160a01b03163314610cfc576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b610d0881615460612eb9565b60105550565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d9a5780601f10610d6f57610100808354040283529160200191610d9a565b820191906000526020600020905b815481529060010190602001808311610d7d57829003601f168201915b5050505050905090565b6000610db8610db1612f6a565b8484612f6e565b5060015b92915050565b600a5461010090046001600160a01b03163314610e14576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152600d60205260409020805460ff19169055565b60408051808201909152600981526836b6ab30bab63a2b1960b91b602082015290565b60035490565b6000610e6b84848461305a565b610edb84610e77612f6a565b610ed68560405180606001604052806028815260200161390e602891396001600160a01b038a16600090815260026020526040812090610eb5612f6a565b6001600160a01b0316815260208101919091526040016000205491906131b7565b612f6e565b5060019392505050565b61271081565b60026000541415610f31576040805162461bcd60e51b815260206004820152601f6024820152600080516020613863833981519152604482015290519081900360640190fd5b6002600055601354819060ff1615610fc957610f4c81612dcf565b610fc9576000610f69601054600f54612eb990919063ffffffff16565b90508042118015610f865750601154610f83908290612eb9565b42105b610fc7576040805162461bcd60e51b815260206004820152600d60248201526c21776974686472617754696d6560981b604482015290519081900360640190fd5b505b6000610fee610fd6610e58565b610fe885610fe2612118565b9061324e565b906132a7565b9050610ffa33846132e9565b60007f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a6001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561106957600080fd5b505afa15801561107d573d6000803e3d6000fd5b505050506040513d602081101561109357600080fd5b50519050818110156111fe5760006110ab83836133e5565b600c546040805163f3fef3a360e01b81526001600160a01b037f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a8116600483015260248201859052915193945091169163f3fef3a39160448082019260009290919082900301818387803b15801561112257600080fd5b505af1158015611136573d6000803e3d6000fd5b5050505060007f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a6001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156111a957600080fd5b505afa1580156111bd573d6000803e3d6000fd5b505050506040513d60208110156111d357600080fd5b5051905060006111e382856133e5565b9050828110156111fa576111f78482612eb9565b94505b5050505b6112326001600160a01b037f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a163384612f13565b505060016000555050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60065460ff1690565b60135460ff1681565b600e6020526000908152604090205460ff1681565b60105481565b600a5461010090046001600160a01b031633146112e0576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b601380549115156101000261ff0019909216919091179055565b7f81ec987d63c385c676e80dadac952287456a7cef01709d7f9a994ac63d6fe7be81565b6000610db861132b612f6a565b84610ed6856002600061133c612f6a565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612eb9565b600d6020526000908152604090205460ff1681565b600a5461010090046001600160a01b031633146113d3576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152600d60205260409020805460ff19166001179055565b600a5461010090046001600160a01b03163314611449576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600855565b60006114fb612710610fe86008547f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a6001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156114c957600080fd5b505afa1580156114dd573d6000803e3d6000fd5b505050506040513d60208110156114f357600080fd5b50519061324e565b905090565b6201518081565b600a5461010090046001600160a01b031681565b336000908152600e602052604081205460ff1661157e5760026000541415611578576040805162461bcd60e51b815260206004820152601f6024820152600080516020613863833981519152604482015290519081900360640190fd5b60026000555b60005a600a5490915060ff1615156001146115cf576040805162461bcd60e51b815260206004820152600c60248201526b085b1bd85b915b98589b195960a21b604482015290519081900360640190fd5b60008411611618576040805162461bcd60e51b8152602060048201526011602482015270616d6f756e7420746f6f20736d616c6c2160781b604482015290519081900360640190fd5b7f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a6001600160a01b0316856001600160a01b031614611688576040805162461bcd60e51b815260206004820152600760248201526610afba37b5b2b760c91b604482015290519081900360640190fd5b60007f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a6001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156116f757600080fd5b505afa15801561170b573d6000803e3d6000fd5b505050506040513d602081101561172157600080fd5b5051905084811161176f576040805162461bcd60e51b815260206004820152601360248201527262616c616e6365206e6f7420656e6f7567682160681b604482015290519081900360640190fd5b600061178c612710610fe86009548961324e90919063ffffffff16565b9050600081116117d3576040805162461bcd60e51b815260206004820152600d60248201526c199959481d1bdbc81cdb585b1b609a1b604482015290519081900360640190fd5b6118076001600160a01b037f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a168988612f13565b876001600160a01b03166323e30c8b337f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a89858a6040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156118b1578181015183820152602001611899565b50505050905090810190601f1680156118de5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561190157600080fd5b505af1158015611915573d6000803e3d6000fd5b505050506040513d602081101561192b57600080fd5b5050604080516370a0823160e01b815230600482015290516000916001600160a01b037f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a16916370a0823191602480820192602092909190829003018186803b15801561199757600080fd5b505afa1580156119ab573d6000803e3d6000fd5b505050506040513d60208110156119c157600080fd5b505190506119cf8383612eb9565b8114611a22576040805162461bcd60e51b815260206004820152601960248201527f7061796261636b20616d6f756e7420696e636f72726563742100000000000000604482015290519081900360640190fd5b604080513381526001600160a01b037f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a811660208301528b1681830152606081018990526080810184905290517f3659d15bd4bb92ab352a8d35bc3119ec6e7e0ab48e4d46201c8a28e02b6a8a869181900360a00190a1600194505050506000601036025a83615208010301905060006d4946c0e9f43f4dee607b0ef1fa1c6001600160a01b03166370a08231336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611b0d57600080fd5b505afa158015611b21573d6000803e3d6000fd5b505050506040513d6020811015611b3757600080fd5b50511115611bc7576040805163079d229f60e01b815233600482015261a3db61374a840104602482015290516d4946c0e9f43f4dee607b0ef1fa1c9163079d229f9160448083019260209291908290030181600087803b158015611b9a57600080fd5b505af1158015611bae573d6000803e3d6000fd5b505050506040513d6020811015611bc457600080fd5b50505b5050336000908152600e602052604090205460ff16611be65760016000555b949350505050565b60007f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a6001600160a01b0316826001600160a01b031614611c60576040805162461bcd60e51b815260206004820152600760248201526610afba37b5b2b760c91b604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516001600160a01b037f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a16916370a08231916024808301926020929190829003018186803b158015611cc657600080fd5b505afa158015611cda573d6000803e3d6000fd5b505050506040513d6020811015611cf057600080fd5b505192915050565b600f5481565b600a5461010090046001600160a01b03163314611d50576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600955565b600a5461010090046001600160a01b03163314611da7576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6013805460ff1916911515919091179055565b6001600160a01b031660009081526001602052604090205490565b60076020526000908152604090205481565b600a5460ff1681565b611e01611dfc33611dba565b610eeb565b565b600b546001600160a01b03163314611e4e576040805162461bcd60e51b81526020600482015260096024820152682174696d656c6f636b60b81b604482015290519081900360640190fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60058054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d9a5780601f10610d6f57610100808354040283529160200191610d9a565b600a5461010090046001600160a01b03163314611f23576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b60135460ff16611f69576040805162461bcd60e51b815260206004820152600c60248201526b085b1bd8dad15b98589b195960a21b604482015290519081900360640190fd5b6000611f736125a8565b905080421015611fca576040805162461bcd60e51b815260206004820152601760248201527f4c617374206c6f636b206379636c65206e6f7420656e64000000000000000000604482015290519081900360640190fd5b428211612010576040805162461bcd60e51b815260206004820152600f60248201526e215f6c6f636b537461727454696d6560881b604482015290519081900360640190fd5b50600f55565b60095481565b6000610db8612029612f6a565b84610ed6856040518060600160405280602581526020016139ca6025913960026000612053612f6a565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906131b7565b6000610db8612091612f6a565b848461305a565b600a5461010090046001600160a01b031633146120ea576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600a80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b61546081565b600c54604080516370a0823160e01b81526001600160a01b037f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a8116600483015291516000936114fb9316916370a08231916024808301926020929190829003018186803b15801561218957600080fd5b505afa15801561219d573d6000803e3d6000fd5b505050506040513d60208110156121b357600080fd5b5051604080516370a0823160e01b815230600482015290516001600160a01b037f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a16916370a08231916024808301926020929190829003018186803b15801561221b57600080fd5b505afa15801561222f573d6000803e3d6000fd5b505050506040513d602081101561224557600080fd5b505190612eb9565b60026000541415612293576040805162461bcd60e51b815260206004820152601f6024820152600080516020613863833981519152604482015290519081900360640190fd5b600260009081556122a2612118565b905060007f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a6001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561231357600080fd5b505afa158015612327573d6000803e3d6000fd5b505050506040513d602081101561233d57600080fd5b505190506123766001600160a01b037f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a16333086613427565b60007f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a6001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156123e557600080fd5b505afa1580156123f9573d6000803e3d6000fd5b505050506040513d602081101561240f57600080fd5b5051905061241d81836133e5565b93506000612429610e58565b61243457508361244d565b61244a84610fe8612443610e58565b889061324e565b90505b6124573382613487565b50506001600055505050565b600a5461010090046001600160a01b031633146124b5576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600a805460ff1916911515919091179055565b600a5461010090046001600160a01b0316331461251a576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152600e60205260409020805460ff19169055565b600b546001600160a01b03163314612586576040805162461bcd60e51b81526020600482015260096024820152682174696d656c6f636b60b81b604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006114fb6011546125c7601054600f54612eb990919063ffffffff16565b90612eb9565b6d4946c0e9f43f4dee607b0ef1fa1c81565b60115481565b60125481565b600b546001600160a01b031681565b60026000541415612640576040805162461bcd60e51b815260206004820152601f6024820152600080516020613863833981519152604482015290519081900360640190fd5b60026000908155338152600d602052604090205460ff16806126715750600a5461010090046001600160a01b031633145b6126ad576040805162461bcd60e51b8152602060048201526008602482015267216b65657065727360c01b604482015290519081900360640190fd5b60135460ff161561277357600f5442116126fa576040805162461bcd60e51b8152602060048201526009602482015268216561726e54696d6560b81b604482015290519081900360640190fd5b601354610100900460ff16156127735760105460125461271b9042906133e5565b1161275a576040805162461bcd60e51b815260206004820152600a602482015269216561726e547769636560b01b604482015290519081900360640190fd5b6012541561276e5761276a6125a8565b600f555b426012555b600061277d61144e565b600c549091506127ba906001600160a01b037f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a8116911683612f13565b600c546040805163b02bf4b960e01b81526001600160a01b037f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a81166004830152602482018590529151919092169163b02bf4b991604480830192600092919082900301818387803b15801561282f57600080fd5b505af1158015612457573d6000803e3d6000fd5b42841015612898576040805162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015290519081900360640190fd5b6001600160a01b0380881660008181526007602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958c166060860152608085018b905260a085019590955260c08085018a90528151808603909101815260e08501825280519083012061190160f01b6101008601527f81ec987d63c385c676e80dadac952287456a7cef01709d7f9a994ac63d6fe7be61010286015261012280860182905282518087039091018152610142860180845281519185019190912090859052610162860180845281905260ff8a166101828701526101a286018990526101c2860188905291519095919491926101e2808401939192601f1981019281900390910190855afa1580156129d3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590612a095750896001600160a01b0316816001600160a01b0316145b612a5a576040805162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015290519081900360640190fd5b612a658a8a8a612f6e565b50505050505050505050565b600a5461010090046001600160a01b03163314612ac3576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b60007f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a6001600160a01b0316836001600160a01b031614612b59576040805162461bcd60e51b815260206004820152600760248201526610afba37b5b2b760c91b604482015290519081900360640190fd5b612b74612710610fe88460095461324e90919063ffffffff16565b9392505050565b84861015612bc2576040805162461bcd60e51b815260206004820152600f60248201526e0857d85c1c1c9bdd99505b5bdd5b9d608a1b604482015290519081900360640190fd5b6040805163d505accf60e01b8152336004820152306024820152604481018890526064810186905260ff8516608482015260a4810184905260c4810183905290516001600160a01b037f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a169163d505accf9160e480830192600092919082900301818387803b158015612c5457600080fd5b505af1158015612c68573d6000803e3d6000fd5b50505050612c758561224d565b505050505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b611e017f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a6001600160a01b03166370a08231336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015612d1857600080fd5b505afa158015612d2c573d6000803e3d6000fd5b505050506040513d6020811015612d4257600080fd5b505161224d565b60006114fb612d56610e58565b610fe8670de0b6b3a7640000610fe2612118565b600a5461010090046001600160a01b03163314612dbc576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b601155565b601354610100900460ff1681565b600080612ddd610fd6610e58565b90507f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a6001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015612e4c57600080fd5b505afa158015612e60573d6000803e3d6000fd5b505050506040513d6020811015612e7657600080fd5b5051101592915050565b600c546001600160a01b031681565b60085481565b7f000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a81565b600082820183811015612b74576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052612f65908490613579565b505050565b3390565b6001600160a01b038316612fb35760405162461bcd60e51b815260040180806020018281038252602481526020018061397c6024913960400191505060405180910390fd5b6001600160a01b038216612ff85760405162461bcd60e51b81526004018080602001828103825260228152602001806138a56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661309f5760405162461bcd60e51b81526004018080602001828103825260258152602001806139576025913960400191505060405180910390fd5b6001600160a01b0382166130e45760405162461bcd60e51b81526004018080602001828103825260238152602001806138406023913960400191505060405180910390fd5b6130ef838383612f65565b61312c816040518060600160405280602681526020016138c7602691396001600160a01b03861660009081526001602052604090205491906131b7565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461315b9082612eb9565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156132465760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561320b5781810151838201526020016131f3565b50505050905090810190601f1680156132385780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008261325d57506000610dbc565b8282028284828161326a57fe5b0414612b745760405162461bcd60e51b81526004018080602001828103825260218152602001806138ed6021913960400191505060405180910390fd5b6000612b7483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061362a565b6001600160a01b03821661332e5760405162461bcd60e51b81526004018080602001828103825260218152602001806139366021913960400191505060405180910390fd5b61333a82600083612f65565b61337781604051806060016040528060228152602001613883602291396001600160a01b03851660009081526001602052604090205491906131b7565b6001600160a01b03831660009081526001602052604090205560035461339d90826133e5565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000612b7483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506131b7565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052613481908590613579565b50505050565b6001600160a01b0382166134e2576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6134ee60008383612f65565b6003546134fb9082612eb9565b6003556001600160a01b0382166000908152600160205260409020546135219082612eb9565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60606135ce826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661368f9092919063ffffffff16565b805190915015612f65578080602001905160208110156135ed57600080fd5b5051612f655760405162461bcd60e51b815260040180806020018281038252602a8152602001806139a0602a913960400191505060405180910390fd5b600081836136795760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561320b5781810151838201526020016131f3565b50600083858161368557fe5b0495945050505050565b6060611be6848460008560606136a485613806565b6136f5576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106137345780518252601f199092019160209182019101613715565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613796576040519150601f19603f3d011682016040523d82523d6000602084013e61379b565b606091505b509150915081156137af579150611be69050565b8051156137bf5780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561320b5781810151838201526020016131f3565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611be657505015159291505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735265656e7472616e637947756172643a207265656e7472616e742063616c6c0045524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b9c31a45e847b7be94278a4de93ddadae46b782bdc7d4cb46b528b6fce8150ec64736f6c634300060c0033

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

000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a00000000000000000000000043229759e12efbe3e2a0fb0510b15e516d0464420000000000000000000000005dae9b27313670663b34ac8bffd18825bb9df7360000000000000000000000004bf5059065541a2b176500928e91fbfd0b121d07

-----Decoded View---------------
Arg [0] : _token (address): 0xc5bDdf9843308380375a611c18B50Fb9341f502A
Arg [1] : _governance (address): 0x43229759E12eFbe3e2A0fB0510B15e516d046442
Arg [2] : _timelock (address): 0x5DAe9B27313670663B34Ac8BfFD18825bB9Df736
Arg [3] : _controller (address): 0x4bF5059065541A2B176500928e91FBfD0B121d07

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000c5bddf9843308380375a611c18b50fb9341f502a
Arg [1] : 00000000000000000000000043229759e12efbe3e2a0fb0510b15e516d046442
Arg [2] : 0000000000000000000000005dae9b27313670663b34ac8bffd18825bb9df736
Arg [3] : 0000000000000000000000004bf5059065541a2b176500928e91fbfd0b121d07


Deployed Bytecode Sourcemap

40885:11555:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49686:253;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49686:253:0;;;;;;;;:::i;:::-;;46723:131;;;;;;;;;;;;;;;;-1:-1:-1;46723:131:0;;:::i;17871:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19977:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19977:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46332:103;;;;;;;;;;;;;;;;-1:-1:-1;46332:103:0;-1:-1:-1;;;;;46332:103:0;;:::i;45226:90::-;;;:::i;18946:100::-;;;:::i;:::-;;;;;;;;;;;;;;;;20620:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20620:321:0;;;;;;;;;;;;;;;;;:::i;41304:42::-;;;:::i;50015:683::-;;;;;;;;;;;;;;;;-1:-1:-1;50015:683:0;;:::i;32805:138::-;;;:::i;18798:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41849:31;;;:::i;41534:51::-;;;;;;;;;;;;;;;;-1:-1:-1;41534:51:0;-1:-1:-1;;;;;41534:51:0;;:::i;41744:25::-;;;:::i;47105:112::-;;;;;;;;;;;;;;;;-1:-1:-1;47105:112:0;;;;:::i;32950:41::-;;;:::i;21350:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21350:218:0;;;;;;;;:::i;41488:39::-;;;;;;;;;;;;;;;;-1:-1:-1;41488:39:0;-1:-1:-1;;;;;41488:39:0;;:::i;46225:99::-;;;;;;;;;;;;;;;;-1:-1:-1;46225:99:0;-1:-1:-1;;;;;46225:99:0;;:::i;45492:82::-;;;;;;;;;;;;;;;;-1:-1:-1;45492:82:0;;:::i;48140:125::-;;;:::i;41594:43::-;;;:::i;41392:25::-;;;:::i;:::-;;;;-1:-1:-1;;;;;41392:25:0;;;;;;;;;;;;;;51298:1137;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51298:1137:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51298:1137:0;;-1:-1:-1;51298:1137:0;;-1:-1:-1;;;;;51298:1137:0:i;50828:214::-;;;;;;;;;;;;;;;;-1:-1:-1;50828:214:0;-1:-1:-1;;;;;50828:214:0;;:::i;41709:28::-;;;:::i;46004:96::-;;;;;;;;;;;;;;;;-1:-1:-1;46004:96:0;;:::i;46995:102::-;;;;;;;;;;;;;;;;-1:-1:-1;46995:102:0;;;;:::i;19109:119::-;;;;;;;;;;;;;;;;-1:-1:-1;19109:119:0;-1:-1:-1;;;;;19109:119:0;;:::i;32745:51::-;;;;;;;;;;;;;;;;-1:-1:-1;32745:51:0;-1:-1:-1;;;;;32745:51:0;;:::i;41353:30::-;;;:::i;49510:82::-;;;:::i;45847:149::-;;;;;;;;;;;;;;;;-1:-1:-1;45847:149:0;-1:-1:-1;;;;;45847:149:0;;:::i;18073:87::-;;;:::i;47225:381::-;;;;;;;;;;;;;;;;-1:-1:-1;47225:381:0;;:::i;41271:26::-;;;:::i;22071:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22071:269:0;;;;;;;;:::i;19441:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19441:175:0;;;;;;;;:::i;45582:108::-;;;;;;;;;;;;;;;;-1:-1:-1;45582:108:0;-1:-1:-1;;;;;45582:108:0;;:::i;41644:56::-;;;:::i;45324:160::-;;;:::i;48911:591::-;;;;;;;;;;;;;;;;-1:-1:-1;48911:591:0;;:::i;46108:109::-;;;;;;;;;;;;;;;;-1:-1:-1;46108:109:0;;;;:::i;46581:134::-;;;;;;;;;;;;;;;;-1:-1:-1;46581:134:0;-1:-1:-1;;;;;46581:134:0;;:::i;45698:141::-;;;;;;;;;;;;;;;;-1:-1:-1;45698:141:0;-1:-1:-1;;;;;45698:141:0;;:::i;47614:135::-;;;:::i;41101:85::-;;;:::i;41776:29::-;;;:::i;41812:30::-;;;:::i;41424:23::-;;;:::i;48273:209::-;;;:::i;33751:905::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33751:905:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;46443:130::-;;;;;;;;;;;;;;;;-1:-1:-1;46443:130:0;-1:-1:-1;;;;;46443:130:0;;:::i;51050:240::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;51050:240:0;;;;;;;;:::i;48584:319::-;;;;;;;;;;;;;;;;-1:-1:-1;48584:319:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;19679:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19679:151:0;;;;;;;;;;:::i;48490:86::-;;;:::i;50706:114::-;;;:::i;46862:125::-;;;;;;;;;;;;;;;;-1:-1:-1;46862:125:0;;:::i;41887:35::-;;;:::i;47757:230::-;;;;;;;;;;;;;;;;-1:-1:-1;47757:230:0;;:::i;41454:25::-;;;:::i;41195:::-;;;:::i;41063:29::-;;;:::i;49686:253::-;36296:1;36894:7;;:19;;36886:63;;;;;-1:-1:-1;;;36886:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;36886:63:0;;;;;;;;;;;;;;;36296:1;37027:7;:18;49792:10:::1;::::0;-1:-1:-1;;;;;49792:10:0::1;49778;:24;49770:48;;;::::0;;-1:-1:-1;;;49770:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;49770:48:0;;;;;;;;;;;;;::::1;;49856:5;-1:-1:-1::0;;;;;49837:25:0::1;:7;-1:-1:-1::0;;;;;49837:25:0::1;;;49829:43;;;::::0;;-1:-1:-1;;;49829:43:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;49829:43:0;;;;;;;;;;;;;::::1;;49912:10;::::0;49883:48:::1;::::0;-1:-1:-1;;;;;49883:28:0;;::::1;::::0;49912:10:::1;49924:6:::0;49883:28:::1;:48::i;:::-;-1:-1:-1::0;;36260:1:0;37206:7;:22;49686:253::o;46723:131::-;42581:10;;;;;-1:-1:-1;;;;;42581:10:0;42567;:24;42559:48;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;;;;46813:33:::1;:11:::0;41687:13;46813:15:::1;:33::i;:::-;46800:10;:46:::0;-1:-1:-1;46723:131:0:o;17871:83::-;17941:5;17934:12;;;;;;;;-1:-1:-1;;17934:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17908:13;;17934:12;;17941:5;;17934:12;;17941:5;17934:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17871:83;:::o;19977:169::-;20060:4;20077:39;20086:12;:10;:12::i;:::-;20100:7;20109:6;20077:8;:39::i;:::-;-1:-1:-1;20134:4:0;19977:169;;;;;:::o;46332:103::-;42581:10;;;;;-1:-1:-1;;;;;42581:10:0;42567;:24;42559:48;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46403:16:0::1;46422:5;46403:16:::0;;;:7:::1;:16;::::0;;;;:24;;-1:-1:-1;;46403:24:0::1;::::0;;46332:103::o;45226:90::-;45290:18;;;;;;;;;;;;-1:-1:-1;;;45290:18:0;;;;45226:90;:::o;18946:100::-;19026:12;;18946:100;:::o;20620:321::-;20726:4;20743:36;20753:6;20761:9;20772:6;20743:9;:36::i;:::-;20790:121;20799:6;20807:12;:10;:12::i;:::-;20821:89;20859:6;20821:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20821:19:0;;;;;;:11;:19;;;;;;20841:12;:10;:12::i;:::-;-1:-1:-1;;;;;20821:33:0;;;;;;;;;;;;-1:-1:-1;20821:33:0;;;:89;:37;:89::i;:::-;20790:8;:121::i;:::-;-1:-1:-1;20929:4:0;20620:321;;;;;:::o;41304:42::-;41341:5;41304:42;:::o;50015:683::-;36296:1;36894:7;;:19;;36886:63;;;;;-1:-1:-1;;;36886:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;36886:63:0;;;;;;;;;;;;;;;36296:1;37027:7;:18;43244:11:::1;::::0;50082:7;;43244:11:::1;;43241:495;;;43364:32;43388:7;43364:23;:32::i;:::-;43360:365;;43416:30;43449:29;43467:10;;43449:13;;:17;;:29;;;;:::i;:::-;43416:62;;43545:22;43527:15;:40;:125;;;;-1:-1:-1::0;43637:14:0::1;::::0;43610:42:::1;::::0;:22;;:26:::1;:42::i;:::-;43592:15;:60;43527:125;43497:212;;;::::0;;-1:-1:-1;;;43497:212:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;43497:212:0;;;;;;;;;;;;;::::1;;43360:365;;50102:9:::2;50114:43;50143:13;:11;:13::i;:::-;50115:22;50129:7;50115:9;:7;:9::i;:::-;:13:::0;::::2;:22::i;:::-;50114:28:::0;::::2;:43::i;:::-;50102:55;;50168:26;50174:10;50186:7;50168:5;:26::i;:::-;50233:9;50245:5;-1:-1:-1::0;;;;;50245:15:0::2;;50269:4;50245:30;;;;;;;;;;;;;-1:-1:-1::0;;;;;50245:30:0::2;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;50245:30:0;;-1:-1:-1;50290:5:0;;::::2;50286:359;;;50312:17;50332:8;:1:::0;50338;50332:5:::2;:8::i;:::-;50367:10;::::0;50355:59:::2;::::0;;-1:-1:-1;;;50355:59:0;;-1:-1:-1;;;;;50396:5:0::2;50355:59:::0;::::2;;::::0;::::2;::::0;;;;;;;;;;;-1:-1:-1;50367:10:0;::::2;::::0;50355:32:::2;::::0;:59;;;;;-1:-1:-1;;50355:59:0;;;;;;;;-1:-1:-1;50367:10:0;50355:59;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;50454:14;50471:5;-1:-1:-1::0;;;;;50471:15:0::2;;50495:4;50471:30;;;;;;;;;;;;;-1:-1:-1::0;;;;;50471:30:0::2;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;50471:30:0;;-1:-1:-1;50516:13:0::2;50532;50471:30:::0;50543:1;50532:10:::2;:13::i;:::-;50516:29;;50572:9;50564:5;:17;50560:74;;;50606:12;:1:::0;50612:5;50606::::2;:12::i;:::-;50602:16;;50560:74;50286:359;;;;50657:33;-1:-1:-1::0;;;;;50657:5:0::2;:18;50676:10;50688:1:::0;50657:18:::2;:33::i;:::-;-1:-1:-1::0;;36260:1:0;37206:7;:22;-1:-1:-1;;50015:683:0:o;32805:138::-;;;:::o;18798:83::-;18864:9;;;;18798:83;:::o;41849:31::-;;;;;;:::o;41534:51::-;;;;;;;;;;;;;;;:::o;41744:25::-;;;;:::o;47105:112::-;42581:10;;;;;-1:-1:-1;;;;;42581:10:0;42567;:24;42559:48;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;;;;47182:15:::1;:27:::0;;;::::1;;;;-1:-1:-1::0;;47182:27:0;;::::1;::::0;;;::::1;::::0;;47105:112::o;32950:41::-;;;:::o;21350:218::-;21438:4;21455:83;21464:12;:10;:12::i;:::-;21478:7;21487:50;21526:10;21487:11;:25;21499:12;:10;:12::i;:::-;-1:-1:-1;;;;;21487:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21487:25:0;;;:34;;;;;;;;;;;:38;:50::i;41488:39::-;;;;;;;;;;;;;;;:::o;46225:99::-;42581:10;;;;;-1:-1:-1;;;;;42581:10:0;42567;:24;42559:48;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46293:16:0::1;;::::0;;;:7:::1;:16;::::0;;;;:23;;-1:-1:-1;;46293:23:0::1;46312:4;46293:23;::::0;;46225:99::o;45492:82::-;42581:10;;;;;-1:-1:-1;;;;;42581:10:0;42567;:24;42559:48;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;;;;45556:3:::1;:10:::0;45492:82::o;48140:125::-;48182:7;48209:48;41257:5;48209:39;48244:3;;48209:5;-1:-1:-1;;;;;48209:15:0;;48233:4;48209:30;;;;;;;;;;;;;-1:-1:-1;;;;;48209:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48209:30:0;;:34;:39::i;:48::-;48202:55;;48140:125;:::o;41594:43::-;41632:5;41594:43;:::o;41392:25::-;;;;;;-1:-1:-1;;;;;41392:25:0;;:::o;51298:1137::-;43880:10;51466:4;43860:31;;;:19;:31;;;;;;;;43855:331;;36296:1;44004:7;;:19;;43996:63;;;;;-1:-1:-1;;;43996:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43996:63:0;;;;;;;;;;;;;;;36296:1;44156:7;:18;43855:331;42079:16:::1;42098:9;51490:11:::2;::::0;42079:28;;-1:-1:-1;51490:11:0::2;;:19;;:11:::0;:19:::2;51482:44;;;::::0;;-1:-1:-1;;;51482:44:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;51482:44:0;;;;;;;;;;;;;::::2;;51555:1;51545:7;:11;51537:41;;;::::0;;-1:-1:-1;;;51537:41:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;51537:41:0;;;;;;;;;;;;;::::2;;51624:5;-1:-1:-1::0;;;;;51597:33:0::2;51605:6;-1:-1:-1::0;;;;;51597:33:0::2;;51589:53;;;::::0;;-1:-1:-1;;;51589:53:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;51589:53:0;;;;;;;;;;;;;::::2;;51653:21;51677:5;-1:-1:-1::0;;;;;51677:15:0::2;;51701:4;51677:30;;;;;;;;;;;;;-1:-1:-1::0;;;;;51677:30:0::2;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;51677:30:0;;-1:-1:-1;51726:23:0;;::::2;51718:55;;;::::0;;-1:-1:-1;;;51718:55:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;51718:55:0;;;;;;;;;;;;;::::2;;51805:12;51820:36;41341:5;51820:20;51832:7;;51820;:11;;:20;;;;:::i;:36::-;51805:51;;51884:1;51877:4;:8;51869:34;;;::::0;;-1:-1:-1;;;51869:34:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;51869:34:0;;;;;;;;;;;;;::::2;;51955:47;-1:-1:-1::0;;;;;51955:5:0::2;:18;51982:9:::0;51994:7;51955:18:::2;:47::i;:::-;52069:9;-1:-1:-1::0;;;;;52047:44:0::2;;52100:10;52121:5;52129:7;52138:4;52144:5;52047:103;;;;;;;;;;;;;-1:-1:-1::0;;;;;52047:103:0::2;;;;;;-1:-1:-1::0;;;;;52047:103:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::2;::::0;;;::::2;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;;52186:30:0::2;::::0;;-1:-1:-1;;;52186:30:0;;52210:4:::2;52186:30;::::0;::::2;::::0;;;52163:20:::2;::::0;-1:-1:-1;;;;;52186:5:0::2;:15;::::0;::::2;::::0;:30;;;;;52047:103:::2;::::0;52186:30;;;;;;;;:15;:30;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;52186:30:0;;-1:-1:-1;52253:23:0::2;:13:::0;52271:4;52253:17:::2;:23::i;:::-;52237:12;:39;52229:77;;;::::0;;-1:-1:-1;;;52229:77:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;52324:81;::::0;;52342:10:::2;52324:81:::0;;-1:-1:-1;;;;;52363:5:0::2;52324:81:::0;::::2;;::::0;::::2;::::0;;::::2;::::0;;;;;;;;;;;;;;;;;;::::2;::::0;;;;;;;::::2;52423:4;52416:11;;;;;42130:16:::1;42180:2;42185:8;42180:20;42168:9;42157:8;42149:5;:16;:28;:51;42130:70;;42244:1;41143:42;-1:-1:-1::0;;;;;42216:13:0::1;;42230:10;42216:25;;;;;;;;;;;;;-1:-1:-1::0;;;;;42216:25:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;42216:25:0;:29:::1;42213:117;;;42262:56;::::0;;-1:-1:-1;;;42262:56:0;;42279:10:::1;42262:56;::::0;::::1;::::0;42312:5:::1;42303;42292:16:::0;::::1;42291:26;42262:56:::0;;;;;;41143:42:::1;::::0;42262:16:::1;::::0;:56;;;;;::::1;::::0;;;;;;;;-1:-1:-1;41143:42:0;42262:56;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;42213:117:0::1;-1:-1:-1::0;;44246:10:0;44226:31;;;;:19;:31;;;;;;;;44221:213;;36260:1;44399:7;:22;44221:213;51298:1137;;;;;;:::o;50828:214::-;50914:7;50968:5;-1:-1:-1;;;;;50941:33:0;50949:6;-1:-1:-1;;;;;50941:33:0;;50933:53;;;;;-1:-1:-1;;;50933:53:0;;;;;;;;;;;;-1:-1:-1;;;50933:53:0;;;;;;;;;;;;;;;51004:30;;;-1:-1:-1;;;51004:30:0;;51028:4;51004:30;;;;;;-1:-1:-1;;;;;51004:5:0;:15;;;;:30;;;;;;;;;;;;;;:15;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51004:30:0;;50828:214;-1:-1:-1;;50828:214:0:o;41709:28::-;;;;:::o;46004:96::-;42581:10;;;;;-1:-1:-1;;;;;42581:10:0;42567;:24;42559:48;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;;;;46074:7:::1;:18:::0;46004:96::o;46995:102::-;42581:10;;;;;-1:-1:-1;;;;;42581:10:0;42567;:24;42559:48;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;;;;47067:11:::1;:22:::0;;-1:-1:-1;;47067:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46995:102::o;19109:119::-;-1:-1:-1;;;;;19202:18:0;19175:7;19202:18;;;:9;:18;;;;;;;19109:119::o;32745:51::-;;;;;;;;;;;;;:::o;41353:30::-;;;;;;:::o;49510:82::-;49553:31;49562:21;49572:10;49562:9;:21::i;:::-;49553:8;:31::i;:::-;49510:82::o;45847:149::-;45931:8;;-1:-1:-1;;;;;45931:8:0;45917:10;:22;45909:44;;;;;-1:-1:-1;;;45909:44:0;;;;;;;;;;;;-1:-1:-1;;;45909:44:0;;;;;;;;;;;;;;;45964:10;:24;;-1:-1:-1;;;;;;45964:24:0;-1:-1:-1;;;;;45964:24:0;;;;;;;;;;45847:149::o;18073:87::-;18145:7;18138:14;;;;;;;;-1:-1:-1;;18138:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18112:13;;18138:14;;18145:7;;18138:14;;18145:7;18138:14;;;;;;;;;;;;;;;;;;;;;;;;47225:381;42581:10;;;;;-1:-1:-1;;;;;42581:10:0;42567;:24;42559:48;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;;;;47317:11:::1;::::0;::::1;;47309:36;;;::::0;;-1:-1:-1;;;47309:36:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;47309:36:0;;;;;;;;;;;;;::::1;;47358:23;47384:21;:19;:21::i;:::-;47358:47;;47443:15;47424;:34;;47416:70;;;::::0;;-1:-1:-1;;;47416:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;47522:15;47505:14;:32;47497:60;;;::::0;;-1:-1:-1;;;47497:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;47497:60:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;47568:13:0::1;:30:::0;47225:381::o;41271:26::-;;;;:::o;22071:269::-;22164:4;22181:129;22190:12;:10;:12::i;:::-;22204:7;22213:96;22252:15;22213:96;;;;;;;;;;;;;;;;;:11;:25;22225:12;:10;:12::i;:::-;-1:-1:-1;;;;;22213:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22213:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;19441:175::-;19527:4;19544:42;19554:12;:10;:12::i;:::-;19568:9;19579:6;19544:9;:42::i;45582:108::-;42581:10;;;;;-1:-1:-1;;;;;42581:10:0;42567;:24;42559:48;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;;;;45658:10:::1;:24:::0;;-1:-1:-1;;;;;45658:24:0;;::::1;;;-1:-1:-1::0;;;;;;45658:24:0;;::::1;::::0;;;::::1;::::0;;45582:108::o;41644:56::-;41687:13;41644:56;:::o;45324:160::-;45438:10;;45426:49;;;-1:-1:-1;;;45426:49:0;;-1:-1:-1;;;;;45468:5:0;45426:49;;;;;;;;-1:-1:-1;;45391:85:0;;45438:10;;45426:33;;:49;;;;;;;;;;;;;;45438:10;45426:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45426:49:0;45391:30;;;-1:-1:-1;;;45391:30:0;;45415:4;45391:30;;;;;;-1:-1:-1;;;;;45391:5:0;:15;;;;:30;;;;;45426:49;;45391:30;;;;;;;:15;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45391:30:0;;:34;:85::i;48911:591::-;36296:1;36894:7;;:19;;36886:63;;;;;-1:-1:-1;;;36886:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;36886:63:0;;;;;;;;;;;;;;;36296:1;37027:7;:18;;;48992:9:::1;:7;:9::i;:::-;48976:25;;49012:15;49030:5;-1:-1:-1::0;;;;;49030:15:0::1;;49054:4;49030:30;;;;;;;;;;;;;-1:-1:-1::0;;;;;49030:30:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;49030:30:0;;-1:-1:-1;49071:58:0::1;-1:-1:-1::0;;;;;49071:5:0::1;:22;49094:10;49114:4;49121:7:::0;49071:22:::1;:58::i;:::-;49140:14;49157:5;-1:-1:-1::0;;;;;49157:15:0::1;;49181:4;49157:30;;;;;;;;;;;;;-1:-1:-1::0;;;;;49157:30:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;49157:30:0;;-1:-1:-1;49208:19:0::1;49157:30:::0;49219:7;49208:10:::1;:19::i;:::-;49198:29;;49282:14;49315:13;:11;:13::i;:::-;49311:148;;-1:-1:-1::0;49359:7:0;49311:148:::1;;;49408:39;49441:5;49409:26;49421:13;:11;:13::i;:::-;49409:7:::0;;:11:::1;:26::i;49408:39::-;49399:48;;49311:148;49469:25;49475:10;49487:6;49469:5;:25::i;:::-;-1:-1:-1::0;;36260:1:0;37206:7;:22;-1:-1:-1;;;48911:591:0:o;46108:109::-;42581:10;;;;;-1:-1:-1;;;;;42581:10:0;42567;:24;42559:48;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;;;;46183:11:::1;:26:::0;;-1:-1:-1;;46183:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46108:109::o;46581:134::-;42581:10;;;;;-1:-1:-1;;;;;42581:10:0;42567;:24;42559:48;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46668:31:0::1;46702:5;46668:31:::0;;;:19:::1;:31;::::0;;;;:39;;-1:-1:-1;;46668:39:0::1;::::0;;46581:134::o;45698:141::-;45778:8;;-1:-1:-1;;;;;45778:8:0;45764:10;:22;45756:44;;;;;-1:-1:-1;;;45756:44:0;;;;;;;;;;;;-1:-1:-1;;;45756:44:0;;;;;;;;;;;;;;;45811:8;:20;;-1:-1:-1;;;;;;45811:20:0;-1:-1:-1;;;;;45811:20:0;;;;;;;;;;45698:141::o;47614:135::-;47666:7;47692:49;47726:14;;47692:29;47710:10;;47692:13;;:17;;:29;;;;:::i;:::-;:33;;:49::i;41101:85::-;41143:42;41101:85;:::o;41776:29::-;;;;:::o;41812:30::-;;;;:::o;41424:23::-;;;-1:-1:-1;;;;;41424:23:0;;:::o;48273:209::-;36296:1;36894:7;;:19;;36886:63;;;;;-1:-1:-1;;;36886:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;36886:63:0;;;;;;;;;;;;;;;36296:1;37027:7;:18;;;42407:10:::1;42399:19:::0;;:7:::1;:19;::::0;;;;;::::1;;::::0;:60:::1;;-1:-1:-1::0;42449:10:0::1;::::0;::::1;::::0;::::1;-1:-1:-1::0;;;;;42449:10:0::1;42435;:24;42399:60;42377:118;;;::::0;;-1:-1:-1;;;42377:118:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;42377:118:0;;;;;;;;;;;;;::::1;;42666:11:::2;::::0;::::2;;42663:502;;;42737:13;;42719:15;:31;42693:102;;;::::0;;-1:-1:-1;;;42693:102:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;42693:102:0;;;;;;;;;;;;;::::2;;42813:15;::::0;::::2;::::0;::::2;;;42810:344;;;42917:10;::::0;42898:15:::2;::::0;42878:36:::2;::::0;:15:::2;::::0;:19:::2;:36::i;:::-;:49;42848:116;;;::::0;;-1:-1:-1;;;42848:116:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;42848:116:0;;;;;;;;;;;;;::::2;;42986:15;::::0;:20;42983:104:::2;;43046:21;:19;:21::i;:::-;43030:13;:37:::0;42983:104:::2;43123:15;43105;:33:::0;42810:344:::2;48340:12:::3;48355:11;:9;:11::i;:::-;48396:10;::::0;48340:26;;-1:-1:-1;48377:36:0::3;::::0;-1:-1:-1;;;;;48377:5:0::3;:18:::0;::::3;::::0;48396:10:::3;48340:26:::0;48377:18:::3;:36::i;:::-;48436:10;::::0;48424:50:::3;::::0;;-1:-1:-1;;;48424:50:0;;-1:-1:-1;;;;;48461:5:0::3;48424:50:::0;::::3;;::::0;::::3;::::0;;;;;;;;;48436:10;;;::::3;::::0;48424:28:::3;::::0;:50;;;;;-1:-1:-1;;48424:50:0;;;;;;;-1:-1:-1;48436:10:0;48424:50;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;33751:905:::0;33919:15;33907:8;:27;;33899:69;;;;;-1:-1:-1;;;33899:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34164:13:0;;;33981:18;34164:13;;;:6;:13;;;;;;;;:15;;;;;;;;;34026:195;;34055:15;34026:195;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34002:230;;;;;;-1:-1:-1;;;34284:124:0;;;;34348:16;34284:124;;;;;;;;;;;;;;;;;;;;;;;;;;;34260:159;;;;;;;;;34449:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34002:230;;34260:159;;34164:15;;34449:24;;;;;34164:13;;-1:-1:-1;;34449:24:0;;;;;;;;;;34164:15;34449:24;;;;;;;;;;;;;;;-1:-1:-1;;34449:24:0;;-1:-1:-1;;34449:24:0;;;-1:-1:-1;;;;;;;34506:20:0;;;;;;:39;;;34540:5;-1:-1:-1;;;;;34530:15:0;:6;-1:-1:-1;;;;;34530:15:0;;34506:39;34484:119;;;;;-1:-1:-1;;;34484:119:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34616:32;34625:5;34632:7;34641:6;34616:8;:32::i;:::-;33751:905;;;;;;;;;;:::o;46443:130::-;42581:10;;;;;-1:-1:-1;;;;;42581:10:0;42567;:24;42559:48;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46527:31:0::1;;::::0;;;:19:::1;:31;::::0;;;;:38;;-1:-1:-1;;46527:38:0::1;46561:4;46527:38;::::0;;46443:130::o;51050:240::-;51157:7;51211:5;-1:-1:-1;;;;;51184:33:0;51192:6;-1:-1:-1;;;;;51184:33:0;;51176:53;;;;;-1:-1:-1;;;51176:53:0;;;;;;;;;;;;-1:-1:-1;;;51176:53:0;;;;;;;;;;;;;;;51247:35;41341:5;51247:19;51259:6;51247:7;;:11;;:19;;;;:::i;:35::-;51240:42;51050:240;-1:-1:-1;;;51050:240:0:o;48584:319::-;48736:7;48718:14;:25;;48710:53;;;;;-1:-1:-1;;;48710:53:0;;;;;;;;;;;;-1:-1:-1;;;48710:53:0;;;;;;;;;;;;;;;48774:94;;;-1:-1:-1;;;48774:94:0;;48806:10;48774:94;;;;48826:4;48774:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48791:5:0;48774:31;;;;:94;;;;;-1:-1:-1;;48774:94:0;;;;;;;-1:-1:-1;48774:31:0;:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48879:16;48887:7;48879;:16::i;:::-;48584:319;;;;;;:::o;19679:151::-;-1:-1:-1;;;;;19795:18:0;;;19768:7;19795:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19679:151::o;48490:86::-;48532:36;48540:5;-1:-1:-1;;;;;48540:15:0;;48556:10;48540:27;;;;;;;;;;;;;-1:-1:-1;;;;;48540:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48540:27:0;48532:7;:36::i;50706:114::-;50747:7;50774:38;50798:13;:11;:13::i;:::-;50774:19;50788:4;50774:9;:7;:9::i;46862:125::-;42581:10;;;;;-1:-1:-1;;;;;42581:10:0;42567;:24;42559:48;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;-1:-1:-1;;;42559:48:0;;;;;;;;;;;;;;;46947:14:::1;:32:::0;46862:125::o;41887:35::-;;;;;;;;;:::o;47757:230::-;47827:4;47843:23;47869:43;47898:13;:11;:13::i;47869:43::-;47843:69;;47949:5;-1:-1:-1;;;;;47949:15:0;;47973:4;47949:30;;;;;;;;;;;;;-1:-1:-1;;;;;47949:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47949:30:0;-1:-1:-1;47930:49:0;;47757:230;-1:-1:-1;;47757:230:0:o;41454:25::-;;;-1:-1:-1;;;;;41454:25:0;;:::o;41195:::-;;;;:::o;41063:29::-;;;:::o;1380:181::-;1438:7;1470:5;;;1494:6;;;;1486:46;;;;;-1:-1:-1;;;1486:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;27245:177;27355:58;;;-1:-1:-1;;;;;27355:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27355:58:0;-1:-1:-1;;;27355:58:0;;;27328:86;;27348:5;;27328:19;:86::i;:::-;27245:177;;;:::o;6388:106::-;6476:10;6388:106;:::o;25216:346::-;-1:-1:-1;;;;;25318:19:0;;25310:68;;;;-1:-1:-1;;;25310:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25397:21:0;;25389:68;;;;-1:-1:-1;;;25389:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25470:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25522:32;;;;;;;;;;;;;;;;;25216:346;;;:::o;22830:539::-;-1:-1:-1;;;;;22936:20:0;;22928:70;;;;-1:-1:-1;;;22928:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23017:23:0;;23009:71;;;;-1:-1:-1;;;23009:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23093:47;23114:6;23122:9;23133:6;23093:20;:47::i;:::-;23173:71;23195:6;23173:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23173:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;23153:17:0;;;;;;;:9;:17;;;;;;:91;;;;23278:20;;;;;;;:32;;23303:6;23278:24;:32::i;:::-;-1:-1:-1;;;;;23255:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;23326:35;;;;;;;23255:20;;23326:35;;;;;;;;;;;;;22830:539;;;:::o;2283:192::-;2369:7;2405:12;2397:6;;;;2389:29;;;;-1:-1:-1;;;2389:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2441:5:0;;;2283:192::o;2734:471::-;2792:7;3037:6;3033:47;;-1:-1:-1;3067:1:0;3060:8;;3033:47;3104:5;;;3108:1;3104;:5;:1;3128:5;;;;;:10;3120:56;;;;-1:-1:-1;;;3120:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3681:132;3739:7;3766:39;3770:1;3773;3766:39;;;;;;;;;;;;;;;;;:3;:39::i;24360:418::-;-1:-1:-1;;;;;24444:21:0;;24436:67;;;;-1:-1:-1;;;24436:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24516:49;24537:7;24554:1;24558:6;24516:20;:49::i;:::-;24599:68;24622:6;24599:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24599:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;24578:18:0;;;;;;:9;:18;;;;;:89;24693:12;;:24;;24710:6;24693:16;:24::i;:::-;24678:12;:39;24733:37;;;;;;;;24759:1;;-1:-1:-1;;;;;24733:37:0;;;;;;;;;;;;24360:418;;:::o;1844:136::-;1902:7;1929:43;1933:1;1936;1929:43;;;;;;;;;;;;;;;;;:3;:43::i;27430:205::-;27558:68;;;-1:-1:-1;;;;;27558:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27558:68:0;-1:-1:-1;;;27558:68:0;;;27531:96;;27551:5;;27531:19;:96::i;:::-;27430:205;;;;:::o;23650:378::-;-1:-1:-1;;;;;23734:21:0;;23726:65;;;;;-1:-1:-1;;;23726:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23804:49;23833:1;23837:7;23846:6;23804:20;:49::i;:::-;23881:12;;:24;;23898:6;23881:16;:24::i;:::-;23866:12;:39;-1:-1:-1;;;;;23937:18:0;;;;;;:9;:18;;;;;;:30;;23960:6;23937:22;:30::i;:::-;-1:-1:-1;;;;;23916:18:0;;;;;;:9;:18;;;;;;;;:51;;;;23983:37;;;;;;;23916:18;;;;23983:37;;;;;;;;;;23650:378;;:::o;29550:761::-;29974:23;30000:69;30028:4;30000:69;;;;;;;;;;;;;;;;;30008:5;-1:-1:-1;;;;;30000:27:0;;;:69;;;;;:::i;:::-;30084:17;;29974:95;;-1:-1:-1;30084:21:0;30080:224;;30226:10;30215:30;;;;;;;;;;;;;;;-1:-1:-1;30215:30:0;30207:85;;;;-1:-1:-1;;;30207:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4309:278;4395:7;4430:12;4423:5;4415:28;;;;-1:-1:-1;;;4415:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4454:9;4470:1;4466;:5;;;;;;;4309:278;-1:-1:-1;;;;;4309:278:0:o;13373:196::-;13476:12;13508:53;13531:6;13539:4;13545:1;13548:12;14880;14913:18;14924:6;14913:10;:18::i;:::-;14905:60;;;;;-1:-1:-1;;;14905:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15039:12;15053:23;15080:6;-1:-1:-1;;;;;15080:11:0;15100:8;15111:4;15080:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;15080:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15038:78;;;;15131:7;15127:595;;;15162:10;-1:-1:-1;15155:17:0;;-1:-1:-1;15155:17:0;15127:595;15276:17;;:21;15272:439;;15539:10;15533:17;15600:15;15587:10;15583:2;15579:19;15572:44;15487:148;15675:20;;-1:-1:-1;;;15675:20:0;;;;;;;;;;;;;;;;;15682:12;;15675:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10258:619;10318:4;10786:20;;10629:66;10826:23;;;;;;:42;;-1:-1:-1;;10853:15:0;;;10818:51;-1:-1:-1;;10258:619:0:o

Swarm Source

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