ETH Price: $2,491.84 (-1.03%)

Token

oneETH (oneETH)
 

Overview

Max Total Supply

468.004514449 oneETH

Holders

30 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
dench.eth
Balance
0.000316293 oneETH

Value
$0.00
0xda764491b90207dc2743f8efc5b28543dc5d857a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

oneETH is the stablecoin created for the wETH community. Backed by both a treasury of wETH and collateral of USDC this ERC-20 token can be redeemed for USDC at anytime and also provides a vote for governance of the wETH treasury.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
oneETH

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-01-22
*/

// File: @chainlink/contracts/src/v0.6/interfaces/AggregatorV3Interface.sol

pragma solidity >=0.6.0;

interface AggregatorV3Interface {

  function decimals() external view returns (uint8);
  function description() external view returns (string memory);
  function version() external view returns (uint256);

  // getRoundData and latestRoundData should both raise "No data present"
  // if they do not have data to report, instead of returning unset values
  // which could be misinterpreted as actual reported values.
  function getRoundData(uint80 _roundId)
    external
    view
    returns (
      uint80 roundId,
      int256 answer,
      uint256 startedAt,
      uint256 updatedAt,
      uint80 answeredInRound
    );
  function latestRoundData()
    external
    view
    returns (
      uint80 roundId,
      int256 answer,
      uint256 startedAt,
      uint256 updatedAt,
      uint80 answeredInRound
    );

}

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


pragma solidity ^0.6.0;

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

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


pragma solidity ^0.6.0;

/**
 * @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: @openzeppelin/contracts/utils/Address.sol


pragma solidity ^0.6.2;

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

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

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, 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: @openzeppelin/contracts/token/ERC20/SafeERC20.sol


pragma solidity ^0.6.0;




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

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


pragma solidity ^0.6.0;

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

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

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


pragma solidity ^0.6.0;





/**
 * @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 virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override virtual 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 { }
}

// File: @openzeppelin/contracts/access/Ownable.sol


pragma solidity ^0.6.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/1-oneETH.sol

// SPDX-License-Identifier: No License
pragma solidity ^0.6.0;







// interface for the oneToken
interface OneToken {
    function getOneTokenUsd() external view returns (uint256);
}

// interface for CollateralOracle
interface IOracleInterface {
    function getLatestPrice() external view returns (uint256);
    function update() external;
    function changeInterval(uint256 seconds_) external;
}

interface IWETH {
    // This is used to auto-convert ETH into WETH.
    function deposit() external payable;
    function transfer(address to, uint value) external returns (bool);
    function withdraw(uint) external;
}

/// @title An overcollateralized stablecoin using ETH
/// @author Masanobu Fukuoka
contract oneETH is ERC20("oneETH", "oneETH"), Ownable, ReentrancyGuard {
    using SafeMath for uint256;

    uint256 public MAX_RESERVE_RATIO; // At 100% reserve ratio, each oneETH is backed 1-to-1 by $1 of existing stable coins
    uint256 private constant DECIMALS = 9;
    uint256 public lastRefreshReserve; // The last time the reserve ratio was updated by the contract
    uint256 public minimumRefreshTime; // The time between reserve ratio refreshes

    address public stimulus; // oneETH builds a stimulus fund in ETH.
    uint256 public stimulusDecimals; // used to calculate oracle rate of Uniswap Pair

    address public oneTokenOracle; // oracle for the oneETH stable coin
    bool public oneTokenOracleHasUpdate; //if oneETH token oracle requires update
    address public stimulusOracle;  // oracle for a stimulus 
    bool public stimulusOracleHasUpdate; //if stimulus oracle requires update

    // Only governance should cause the coin to go fully agorithmic by changing the minimum reserve
    // ratio.  For now, we will set a conservative minimum reserve ratio.
    uint256 public MIN_RESERVE_RATIO;
    uint256 public MIN_DELAY;

    // Makes sure that you can't send coins to a 0 address and prevents coins from being sent to the
    // contract address. I want to protect your funds!
    modifier validRecipient(address to) {
        require(to != address(0x0));
        require(to != address(this));
        _;
    }

    uint256 private _totalSupply;
    mapping(address => uint256) private _oneBalances;
    mapping(address => uint256) private _lastCall;  // used as a record to prevent flash loan attacks
    mapping (address => mapping (address => uint256)) private _allowedOne; // allowance to spend one

    address public wethAddress; // used for uniswap oracle consults
    address public gov; // who has admin rights over certain functions
    address public pendingGov;  // allows you to transfer the governance to a different user - they must accept it!
    uint256 public reserveStepSize; // step size of update of reserve rate (e.g. 5 * 10 ** 8 = 0.5%)
    uint256 public reserveRatio;    // a number between 0 and 100 * 10 ** 9.
                                    // 0 = 0%
                                    // 100 * 10 ** 9 = 100%

    // map of acceptable collaterals
    mapping (address => bool) public acceptedCollateral;
    mapping (address => uint256) public collateralMintFee; // minting fee for different collaterals (100 * 10 ** 9 = 100% fee)
    address[] public collateralArray; // array of collateral - used to iterate while updating certain things like oracle intervals for TWAP

    // modifier to allow auto update of TWAP oracle prices
    // also updates reserves rate programatically
    modifier updateProtocol() {
        if (address(oneTokenOracle) != address(0)) {

            // this is always updated because we always need stablecoin oracle price
            if (oneTokenOracleHasUpdate) IOracleInterface(oneTokenOracle).update();

            if (stimulusOracleHasUpdate) IOracleInterface(stimulusOracle).update();

            for (uint i = 0; i < collateralArray.length; i++){
                if (acceptedCollateral[collateralArray[i]] && !oneCoinCollateralOracle[collateralArray[i]]) IOracleInterface(collateralOracle[collateralArray[i]]).update();
            }

            // update reserve ratio if enough time has passed
            if (block.timestamp - lastRefreshReserve >= minimumRefreshTime) {
                // $Z / 1 one token
                if (getOneTokenUsd() > 1 * 10 ** 9) {
                    setReserveRatio(reserveRatio.sub(reserveStepSize));
                } else {
                    setReserveRatio(reserveRatio.add(reserveStepSize));
                }

                lastRefreshReserve = block.timestamp;
            }
        }

        _;
    }

    // events for off-chain record keeping
    event NewPendingGov(address oldPendingGov, address newPendingGov);
    event NewGov(address oldGov, address newGov);
    event NewReserveRate(uint256 reserveRatio);
    event Mint(address stimulus, address receiver, address collateral, uint256 collateralAmount, uint256 stimulusAmount, uint256 oneAmount);
    event Withdraw(address stimulus, address receiver, address collateral, uint256 collateralAmount, uint256 stimulusAmount, uint256 oneAmount);
    event NewMinimumRefreshTime(uint256 minimumRefreshTime);
    event ExecuteTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature,  bytes data);

    modifier onlyIchiGov() {
        require(msg.sender == gov, "ACCESS: only Ichi governance");
        _;
    }

    bytes4 private constant SELECTOR = bytes4(keccak256(bytes('transfer(address,uint256)')));  // shortcut for calling transfer
    mapping (address => uint256) public collateralDecimals;     // needed to be able to convert from different collaterals
    mapping (address => bool) public oneCoinCollateralOracle;   // if true, we query the one token contract's usd price
    mapping (address => bool) public previouslySeenCollateral;  // used to allow users to withdraw collateral, even if the collateral has since been deprecated
                                                                // previouslySeenCollateral lets the contract know if a collateral has been used before - this also
                                                                // prevents attacks where uses add a custom address as collateral, but that custom address is actually 
                                                                // their own malicious smart contract. Read peckshield blog for more info.
    mapping (address => address) public collateralOracle;       // address of the Collateral-ETH Uniswap Price
    mapping (address => bool) public collateralOracleHasUpdate; // if collatoral oracle requires an update

    // default to 0
    uint256 public mintFee;
    uint256 public withdrawFee;

    // fee to charge when minting oneETH - this will go into collateral
    event MintFee(uint256 fee_);
    // fee to charge when redeeming oneETH - this will go into collateral
    event WithdrawFee(uint256 fee_);

    // set governance access to only oneETH - ETH pool multisig (elected after rewards)
    modifier ethLPGov() {
        require(msg.sender == lpGov, "ACCESS: only ethLP governance");
        _;
    }

    address public lpGov;
    address public pendingLPGov;

    event NewPendingLPGov(address oldPendingLPGov, address newPendingLPGov);
    event NewLPGov(address oldLPGov, address newLPGov);
    event NewMintFee(address collateral, uint256 oldFee, uint256 newFee);

    mapping (address => uint256) private _burnedStablecoin; // maps user to burned oneETH

    // important: make sure changeInterval is a function to allow the interval of update to change
    function addCollateral(address collateral_, uint256 collateralDecimal_, address oracleAddress_, bool oneCoinOracle, bool oracleHasUpdate)
        external
        ethLPGov
    {
        // only add collateral once
        if (!previouslySeenCollateral[collateral_]) collateralArray.push(collateral_);

        previouslySeenCollateral[collateral_] = true;
        acceptedCollateral[collateral_] = true;
        oneCoinCollateralOracle[collateral_] = oneCoinOracle;
        collateralDecimals[collateral_] = collateralDecimal_;
        collateralOracle[collateral_] = oracleAddress_;
        collateralMintFee[collateral_] = 0;
        collateralOracleHasUpdate[collateral_]= oracleHasUpdate;
    }


    function setCollateralMintFee(address collateral_, uint256 fee_)
        external
        ethLPGov
    {
        require(acceptedCollateral[collateral_], "invalid collateral");
        require(fee_ <= 100 * 10 ** 9, "Fee must be valid");
        emit NewMintFee(collateral_, collateralMintFee[collateral_], fee_);
        collateralMintFee[collateral_] = fee_;
    }

    // step size = how much the reserve rate updates per update cycle
    function setReserveStepSize(uint256 stepSize_)
        external
        ethLPGov
    {
        reserveStepSize = stepSize_;
    }

    // changes the oracle for a given collaterarl
    function setCollateralOracle(address collateral_, address oracleAddress_, bool oneCoinOracle_, bool oracleHasUpdate)
        external
        ethLPGov
    {
        require(acceptedCollateral[collateral_], "invalid collateral");
        oneCoinCollateralOracle[collateral_] = oneCoinOracle_;
        collateralOracle[collateral_] = oracleAddress_;
        collateralOracleHasUpdate[collateral_] = oracleHasUpdate;
    }

    // removes a collateral from minting. Still allows withdrawals however
    function removeCollateral(address collateral_)
        external
        ethLPGov
    {
        acceptedCollateral[collateral_] = false;
    }

    // used for querying
    function getBurnedStablecoin(address _user)
        public
        view
        returns (uint256)
    {
        return _burnedStablecoin[_user];
    }

    // returns 10 ** 9 price of collateral
    function getCollateralUsd(address collateral_) public view returns (uint256) {
        require(previouslySeenCollateral[collateral_], "must be an existing collateral");

        if (oneCoinCollateralOracle[collateral_]) return OneToken(collateral_).getOneTokenUsd();
        
        return IOracleInterface(collateralOracle[collateral_]).getLatestPrice();
    }

    function globalCollateralValue() public view returns (uint256) {
        uint256 totalCollateralUsd = 0;

        for (uint i = 0; i < collateralArray.length; i++){
            // Exclude null addresses
            if (collateralArray[i] != address(0)){
                totalCollateralUsd += IERC20(collateralArray[i]).balanceOf(address(this)).mul(10 ** 9).div(10 ** collateralDecimals[collateralArray[i]]).mul(getCollateralUsd(collateralArray[i])).div(10 ** 9); // add stablecoin balance
            }

        }
        return totalCollateralUsd;
    }

    // return price of oneETH in 10 ** 9 decimal
    function getOneTokenUsd()
        public
        view
        returns (uint256)
    {
        return IOracleInterface(oneTokenOracle).getLatestPrice();
    }

    /**
     * @return The total number of oneETH.
     */
    function totalSupply()
        public
        override
        view
        returns (uint256)
    {
        return _totalSupply;
    }

    /**
     * @param who The address to query.
     * @return The balance of the specified address.
     */
    function balanceOf(address who)
        public
        override
        view
        returns (uint256)
    {
        return _oneBalances[who];
    }

    /**
     * @dev Transfer tokens to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return True on success, false otherwise.
     */
    function transfer(address to, uint256 value)
        public
        override
        validRecipient(to)
        updateProtocol()
        returns (bool)
    {
        _oneBalances[msg.sender] = _oneBalances[msg.sender].sub(value);
        _oneBalances[to] = _oneBalances[to].add(value);
        emit Transfer(msg.sender, to, value);

        return true;
    }

    /**
     * @dev Function to check the amount of tokens that an owner has allowed to a spender.
     * @param owner_ The address which owns the funds.
     * @param spender The address which will spend the funds.
     * @return The number of tokens still available for the spender.
     */
    function allowance(address owner_, address spender)
        public
        override
        view
        returns (uint256)
    {
        return _allowedOne[owner_][spender];
    }

    /**
     * @dev Transfer tokens from one address to another.
     * @param from The address you want to send tokens from.
     * @param to The address you want to transfer to.
     * @param value The amount of tokens to be transferred.
     */
    function transferFrom(address from, address to, uint256 value)
        public
        override
        validRecipient(to)
        updateProtocol()
        returns (bool)
    {
        _allowedOne[from][msg.sender] = _allowedOne[from][msg.sender].sub(value);

        _oneBalances[from] = _oneBalances[from].sub(value);
        _oneBalances[to] = _oneBalances[to].add(value);
        emit Transfer(from, to, value);

        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of
     * msg.sender. This method is included for ERC20 compatibility.
     * increaseAllowance and decreaseAllowance should be used instead.
     * Changing an allowance with this method brings the risk that someone may transfer both
     * the old and the new allowance - if they are both greater than zero - if a transfer
     * transaction is mined before the later approve() call is mined.
     *
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value)
        public
        override
        validRecipient(spender)
        updateProtocol()
        returns (bool)
    {
        _allowedOne[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner has allowed to a spender.
     * This method should be used instead of approve() to avoid the double approval vulnerability
     * described above.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        override
        returns (bool)
    {
        _allowedOne[msg.sender][spender] = _allowedOne[msg.sender][spender].add(addedValue);
        emit Approval(msg.sender, spender, _allowedOne[msg.sender][spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner has allowed to a spender.
     *
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        override
        returns (bool)
    {
        uint256 oldValue = _allowedOne[msg.sender][spender];
        if (subtractedValue >= oldValue) {
            _allowedOne[msg.sender][spender] = 0;
        } else {
            _allowedOne[msg.sender][spender] = oldValue.sub(subtractedValue);
        }
        emit Approval(msg.sender, spender, _allowedOne[msg.sender][spender]);
        return true;
    }

    function setOneTokenOracle(address oracle_, bool hasUpdate)
        external
        ethLPGov
        returns (bool)
    {
        oneTokenOracle = oracle_;
        oneTokenOracleHasUpdate = hasUpdate;

        return true;
    }

    function setStimulusOracle(address oracle_, bool hasUpdate)
        external
        ethLPGov
        returns (bool)
    {
        stimulusOracle = oracle_;
        stimulusOracleHasUpdate = hasUpdate;

        return true;
    }

    // oracle rate is 10 ** 9 decimals
    // returns $Z / Stimulus
    function getStimulusUSD()
        public
        view
        returns (uint256)
    {
        return IOracleInterface(stimulusOracle).getLatestPrice();
       
    }

    // minimum amount of block time (seconds) required for an update in reserve ratio
    function setMinimumRefreshTime(uint256 val_)
        external
        ethLPGov
        returns (bool)
    {
        require(val_ != 0, "minimum refresh time must be valid");

        minimumRefreshTime = val_;

        // change collateral array
        for (uint i = 0; i < collateralArray.length; i++){
            if (acceptedCollateral[collateralArray[i]] && !oneCoinCollateralOracle[collateralArray[i]] && collateralOracleHasUpdate[collateralArray[i]]) IOracleInterface(collateralOracle[collateralArray[i]]).changeInterval(val_);
        }

        if (oneTokenOracleHasUpdate) IOracleInterface(oneTokenOracle).changeInterval(val_);

        if (stimulusOracleHasUpdate) IOracleInterface(stimulusOracle).changeInterval(val_);

        // change all the oracles (collateral, stimulus, oneToken)

        emit NewMinimumRefreshTime(val_);
        return true;
    }

    constructor(
        uint256 reserveRatio_,
        address stimulus_,
        uint256 stimulusDecimals_,
        address wethAddress_
    )
        public
    {
        _setupDecimals(uint8(9));
        stimulus = stimulus_;
        minimumRefreshTime = 3600 * 1; // 1 hour by default
        stimulusDecimals = stimulusDecimals_;
        reserveStepSize = 2 * 10 ** 8;  // 0.2% by default
        MIN_RESERVE_RATIO = 90 * 10 ** 9;
        MAX_RESERVE_RATIO = 100 * 10 ** 9;
        wethAddress = wethAddress_;
        MIN_DELAY = 3;             // 3 blocks
        withdrawFee = 1 * 10 ** 8; // 0.1% fee at first, remains in collateral
        gov = msg.sender;
        lpGov = msg.sender;
        reserveRatio = reserveRatio_;
        _totalSupply = 10 ** 9;

        _oneBalances[msg.sender] = 10 ** 9;
        emit Transfer(address(0x0), msg.sender, 10 ** 9);
    }

    function setMinimumReserveRatio(uint256 val_)
        external
        ethLPGov
    {
        MIN_RESERVE_RATIO = val_;
        if (MIN_RESERVE_RATIO > reserveRatio) setReserveRatio(MIN_RESERVE_RATIO);
    }

    function setMaximumReserveRatio(uint256 val_)
        external
        ethLPGov
    {
        MAX_RESERVE_RATIO = val_;
        if (MAX_RESERVE_RATIO < reserveRatio) setReserveRatio(MAX_RESERVE_RATIO);
    }

    function setMinimumDelay(uint256 val_)
        external
        ethLPGov
    {
        MIN_DELAY = val_;
    }

    // LP pool governance ====================================
    function setPendingLPGov(address pendingLPGov_)
        external
        ethLPGov
    {
        address oldPendingLPGov = pendingLPGov;
        pendingLPGov = pendingLPGov_;
        emit NewPendingLPGov(oldPendingLPGov, pendingLPGov_);
    }

    function acceptLPGov()
        external
    {
        require(msg.sender == pendingLPGov, "!pending");
        address oldLPGov = lpGov; // that
        lpGov = pendingLPGov;
        pendingLPGov = address(0);
        emit NewGov(oldLPGov, lpGov);
    }

    // over-arching protocol level governance  ===============
    function setPendingGov(address pendingGov_)
        external
        onlyIchiGov
    {
        address oldPendingGov = pendingGov;
        pendingGov = pendingGov_;
        emit NewPendingGov(oldPendingGov, pendingGov_);
    }

    function acceptGov()
        external
    {
        require(msg.sender == pendingGov, "!pending");
        address oldGov = gov;
        gov = pendingGov;
        pendingGov = address(0);
        emit NewGov(oldGov, gov);
    }
    // ======================================================

    // calculates how much you will need to send in order to mint oneETH, depending on current market prices + reserve ratio
    // oneAmount: the amount of oneETH you want to mint
    // collateral: the collateral you want to use to pay
    // also works in the reverse direction, i.e. how much collateral + stimulus to receive when you burn One
    function consultOneDeposit(uint256 oneAmount, address collateral)
        public
        view
        returns (uint256, uint256)
    {
        require(oneAmount != 0, "must use valid oneAmount");
        require(acceptedCollateral[collateral], "must be an accepted collateral");

        // convert to correct decimals for collateral
        uint256 collateralAmount = oneAmount.mul(reserveRatio).div(MAX_RESERVE_RATIO).mul(10 ** collateralDecimals[collateral]).div(10 ** DECIMALS);
        collateralAmount = collateralAmount.mul(10 ** 9).div(getCollateralUsd(collateral));

        if (address(oneTokenOracle) == address(0)) return (collateralAmount, 0);

        uint256 stimulusUsd = getStimulusUSD();     // 10 ** 9

        uint256 stimulusAmountInOneStablecoin = oneAmount.mul(MAX_RESERVE_RATIO.sub(reserveRatio)).div(MAX_RESERVE_RATIO);

        uint256 stimulusAmount = stimulusAmountInOneStablecoin.mul(10 ** 9).div(stimulusUsd).mul(10 ** stimulusDecimals).div(10 ** DECIMALS); // must be 10 ** stimulusDecimals

        return (collateralAmount, stimulusAmount);
    }

    function consultOneWithdraw(uint256 oneAmount, address collateral)
        public
        view
        returns (uint256, uint256)
    {
        require(oneAmount != 0, "must use valid oneAmount");
        require(previouslySeenCollateral[collateral], "must be an accepted collateral");

        uint256 collateralAmount = oneAmount.sub(oneAmount.mul(withdrawFee).div(100 * 10 ** DECIMALS)).mul(10 ** collateralDecimals[collateral]).div(10 ** DECIMALS);
        collateralAmount = collateralAmount.mul(10 ** 9).div(getCollateralUsd(collateral));

        return (collateralAmount, 0);
    }

    // @title: deposit collateral + stimulus token
    // collateral: address of the collateral to deposit (USDC, DAI, TUSD, etc)
    function mint(
        uint256 oneAmount,
        address collateral
    )
        public
        payable
        nonReentrant
    {
        require(acceptedCollateral[collateral], "must be an accepted collateral");
        require(oneAmount != 0, "must mint non-zero amount");

        // wait 3 blocks to avoid flash loans
        require((_lastCall[msg.sender] + MIN_DELAY) <= block.number, "action too soon - please wait a few more blocks");

        // validate input amounts are correct
        (uint256 collateralAmount, uint256 stimulusAmount) = consultOneDeposit(oneAmount, collateral);
        require(collateralAmount <= IERC20(collateral).balanceOf(msg.sender), "sender has insufficient collateral balance");
        
        // auto convert ETH to WETH if needed
        bool convertedWeth = false;
        if (stimulus == wethAddress && IERC20(stimulus).balanceOf(msg.sender) < stimulusAmount) {
            // enough ETH
            if (address(msg.sender).balance >= msg.value && msg.value >= stimulusAmount) {
                uint256 currentwETHBalance = IERC20(stimulus).balanceOf(address(this));
                IWETH(wethAddress).deposit{value: msg.value}();
                require(IERC20(stimulus).balanceOf(address(this)) == currentwETHBalance.add(msg.value),"insufficient stimulus deposited");
                assert(IWETH(wethAddress).transfer(msg.sender, msg.value.sub(stimulusAmount)));
                convertedWeth = true;
            } else {
                require(stimulusAmount <= IERC20(stimulus).balanceOf(msg.sender), "sender has insufficient stimulus balance");
            }
        }

        // checks passed, so transfer tokens
        SafeERC20.safeTransferFrom(IERC20(collateral), msg.sender, address(this), collateralAmount);
        if (!convertedWeth) {
            SafeERC20.safeTransferFrom(IERC20(stimulus), msg.sender, address(this), stimulusAmount);

            (bool success,) = address(msg.sender).call{value:msg.value}(new bytes(0));
            require(success, 'ETH_TRANSFER_FAILED');
        }

        oneAmount = oneAmount.sub(oneAmount.mul(mintFee).div(100 * 10 ** DECIMALS));                            // apply mint fee
        oneAmount = oneAmount.sub(oneAmount.mul(collateralMintFee[collateral]).div(100 * 10 ** DECIMALS));      // apply collateral fee

        _totalSupply = _totalSupply.add(oneAmount);
        _oneBalances[msg.sender] = _oneBalances[msg.sender].add(oneAmount);

        emit Transfer(address(0x0), msg.sender, oneAmount);

        _lastCall[msg.sender] = block.number;

        emit Mint(stimulus, msg.sender, collateral, collateralAmount, stimulusAmount, oneAmount);
    }

    // fee_ should be 10 ** 9 decimals (e.g. 10% = 10 * 10 ** 9)
    function editMintFee(uint256 fee_)
        external
        onlyIchiGov
    {
        require(fee_ <= 100 * 10 ** 9, "Fee must be valid");
        mintFee = fee_;
        emit MintFee(fee_);
    }

    // fee_ should be 10 ** 9 decimals (e.g. 10% = 10 * 10 ** 9)
    function editWithdrawFee(uint256 fee_)
        external
        onlyIchiGov
    {
        withdrawFee = fee_;
        emit WithdrawFee(fee_);
    }

    /// burns stablecoin and increments _burnedStablecoin mapping for user
    ///         user can claim collateral in a 2nd step below
    function withdraw(
        uint256 oneAmount,
        address collateral
    )
        public
        nonReentrant
        updateProtocol()
    {
        require(oneAmount != 0, "must withdraw non-zero amount");
        require(oneAmount <= _oneBalances[msg.sender], "insufficient balance");
        require(previouslySeenCollateral[collateral], "must be an existing collateral");
        require((_lastCall[msg.sender] + MIN_DELAY) <= block.number, "action too soon - please wait a few blocks");

        // burn oneAmount
        _totalSupply = _totalSupply.sub(oneAmount);
        _oneBalances[msg.sender] = _oneBalances[msg.sender].sub(oneAmount);

        _burnedStablecoin[msg.sender] = _burnedStablecoin[msg.sender].add(oneAmount);

        _lastCall[msg.sender] = block.number;
        emit Transfer(msg.sender, address(0x0), oneAmount);
    }

    // 2nd step for withdrawal of collateral
    // this 2 step withdrawal is important for prevent flash-loan style attacks
    // flash-loan style attacks try to use loops/complex arbitrage strategies to
    // drain collateral so adding a 2-step process prevents any potential attacks
    // because all flash-loans must be repaid within 1 tx and 1 block

    /// @notice If you are interested, I would recommend reading: https://slowmist.medium.com/
    ///         also https://cryptobriefing.com/50-million-lost-the-top-19-defi-cryptocurrency-hacks-2020/
    function withdrawFinal(address collateral, uint256 amount)
        public
        nonReentrant
        updateProtocol()
    {
        require(previouslySeenCollateral[collateral], "must be an existing collateral");
        require((_lastCall[msg.sender] + MIN_DELAY) <= block.number, "action too soon - please wait a few blocks");

        uint256 oneAmount = _burnedStablecoin[msg.sender];
        require(oneAmount != 0, "insufficient oneETH to redeem");
        require(amount <= oneAmount, "insufficient oneETH to redeem");

        _burnedStablecoin[msg.sender] = _burnedStablecoin[msg.sender].sub(amount);

        // send collateral - fee (convert to collateral decimals too)
        uint256 collateralAmount = amount.sub(amount.mul(withdrawFee).div(100 * 10 ** DECIMALS)).mul(10 ** collateralDecimals[collateral]).div(10 ** DECIMALS);
        collateralAmount = collateralAmount.mul(10 ** 9).div(getCollateralUsd(collateral));

        uint256 stimulusAmount = 0;

        // check enough reserves - don't want to burn one coin if we cannot fulfill withdrawal
        require(collateralAmount <= IERC20(collateral).balanceOf(address(this)), "insufficient collateral reserves - try another collateral");

        SafeERC20.safeTransfer(IERC20(collateral), msg.sender, collateralAmount);

        _lastCall[msg.sender] = block.number;

        emit Withdraw(stimulus, msg.sender, collateral, collateralAmount, stimulusAmount, amount);
    }

    // internal function used to set the reserve ratio of the token
    // must be between MIN / MAX Reserve Ratio, which are constants
    // cannot be 0
    function setReserveRatio(uint256 newRatio_)
        internal
    {
        require(newRatio_ >= 0, "positive reserve ratio");

        if (newRatio_ <= MAX_RESERVE_RATIO && newRatio_ >= MIN_RESERVE_RATIO) {
            reserveRatio = newRatio_;
            emit NewReserveRate(reserveRatio);
        }
    }

    /// @notice easy function transfer ETH (not WETH)
    function safeTransferETH(address to, uint value)
        public
        ethLPGov
    {
        (bool success,) = to.call{value:value}(new bytes(0));
        require(success, 'ETH_TRANSFER_FAILED');
    }

    /// @notice easy funtion to move stimulus to a new location
    //  location: address to send to
    //  amount: amount of stimulus to send (use full decimals)
    function moveStimulus(
        address location,
        uint256 amount
    )
        public
        ethLPGov
    {
        SafeERC20.safeTransfer(IERC20(stimulus), location, amount);
    }

    // can execute any abstract transaction on this smart contrat
    // target: address / smart contract you are interracting with
    // value: msg.value (amount of eth in WEI you are sending. Most of the time it is 0)
    // signature: the function signature (name of the function and the types of the arguments).
    //            for example: "transfer(address,uint256)", or "approve(address,uint256)"
    // data: abi-encodeded byte-code of the parameter values you are sending. See "./encode.js" for Ether.js library function to make this easier
    function executeTransaction(address target, uint value, string memory signature, bytes memory data) public payable ethLPGov returns (bytes memory) {
        bytes memory callData;

        if (bytes(signature).length == 0) {
            callData = data;
        } else {
            callData = abi.encodePacked(bytes4(keccak256(bytes(signature))), data);
        }

        // solium-disable-next-line security/no-call-value
        (bool success, bytes memory returnData) = target.call.value(value)(callData);
        require(success, "oneETH::executeTransaction: Transaction execution reverted.");

        return returnData;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"reserveRatio_","type":"uint256"},{"internalType":"address","name":"stimulus_","type":"address"},{"internalType":"uint256","name":"stimulusDecimals_","type":"uint256"},{"internalType":"address","name":"wethAddress_","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":true,"internalType":"bytes32","name":"txHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"string","name":"signature","type":"string"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"ExecuteTransaction","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"stimulus","type":"address"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"address","name":"collateral","type":"address"},{"indexed":false,"internalType":"uint256","name":"collateralAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stimulusAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oneAmount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee_","type":"uint256"}],"name":"MintFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldGov","type":"address"},{"indexed":false,"internalType":"address","name":"newGov","type":"address"}],"name":"NewGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldLPGov","type":"address"},{"indexed":false,"internalType":"address","name":"newLPGov","type":"address"}],"name":"NewLPGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minimumRefreshTime","type":"uint256"}],"name":"NewMinimumRefreshTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"collateral","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"NewMintFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPendingGov","type":"address"},{"indexed":false,"internalType":"address","name":"newPendingGov","type":"address"}],"name":"NewPendingGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPendingLPGov","type":"address"},{"indexed":false,"internalType":"address","name":"newPendingLPGov","type":"address"}],"name":"NewPendingLPGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reserveRatio","type":"uint256"}],"name":"NewReserveRate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"stimulus","type":"address"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"address","name":"collateral","type":"address"},{"indexed":false,"internalType":"uint256","name":"collateralAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stimulusAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oneAmount","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee_","type":"uint256"}],"name":"WithdrawFee","type":"event"},{"inputs":[],"name":"MAX_RESERVE_RATIO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_DELAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_RESERVE_RATIO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptGov","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"acceptLPGov","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"acceptedCollateral","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collateral_","type":"address"},{"internalType":"uint256","name":"collateralDecimal_","type":"uint256"},{"internalType":"address","name":"oracleAddress_","type":"address"},{"internalType":"bool","name":"oneCoinOracle","type":"bool"},{"internalType":"bool","name":"oracleHasUpdate","type":"bool"}],"name":"addCollateral","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"collateralArray","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"collateralDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"collateralMintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"collateralOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"collateralOracleHasUpdate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"oneAmount","type":"uint256"},{"internalType":"address","name":"collateral","type":"address"}],"name":"consultOneDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"oneAmount","type":"uint256"},{"internalType":"address","name":"collateral","type":"address"}],"name":"consultOneWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"fee_","type":"uint256"}],"name":"editMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee_","type":"uint256"}],"name":"editWithdrawFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"string","name":"signature","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"executeTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getBurnedStablecoin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collateral_","type":"address"}],"name":"getCollateralUsd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOneTokenUsd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStimulusUSD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"globalCollateralValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gov","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastRefreshReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpGov","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumRefreshTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"oneAmount","type":"uint256"},{"internalType":"address","name":"collateral","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"location","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"moveStimulus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"oneCoinCollateralOracle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oneTokenOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oneTokenOracleHasUpdate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingGov","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingLPGov","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"previouslySeenCollateral","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collateral_","type":"address"}],"name":"removeCollateral","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserveStepSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"safeTransferETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collateral_","type":"address"},{"internalType":"uint256","name":"fee_","type":"uint256"}],"name":"setCollateralMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collateral_","type":"address"},{"internalType":"address","name":"oracleAddress_","type":"address"},{"internalType":"bool","name":"oneCoinOracle_","type":"bool"},{"internalType":"bool","name":"oracleHasUpdate","type":"bool"}],"name":"setCollateralOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val_","type":"uint256"}],"name":"setMaximumReserveRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val_","type":"uint256"}],"name":"setMinimumDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val_","type":"uint256"}],"name":"setMinimumRefreshTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val_","type":"uint256"}],"name":"setMinimumReserveRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"oracle_","type":"address"},{"internalType":"bool","name":"hasUpdate","type":"bool"}],"name":"setOneTokenOracle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pendingGov_","type":"address"}],"name":"setPendingGov","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pendingLPGov_","type":"address"}],"name":"setPendingLPGov","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"stepSize_","type":"uint256"}],"name":"setReserveStepSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"oracle_","type":"address"},{"internalType":"bool","name":"hasUpdate","type":"bool"}],"name":"setStimulusOracle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stimulus","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stimulusDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stimulusOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stimulusOracleHasUpdate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wethAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"oneAmount","type":"uint256"},{"internalType":"address","name":"collateral","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collateral","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFinal","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620057bd380380620057bd833981810160405260808110156200003757600080fd5b508051602080830151604080850151606090950151815180830183526006808252650dedcca8aa8960d31b8287018181528551808701909652918552958401959095528051959693959394919390929162000096916003919062000224565b508051620000ac90600490602084019062000224565b50506005805460ff19166012179055506000620000c86200020a565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060016006556200012f60096200020e565b600a80546001600160a01b038086166001600160a01b031992831617909255610e10600955600b849055630bebc2006017556414f46b0400600e5564174876e80060075560148054928416928216929092179091556003600f556305f5e100602255601580548216339081179091556023805490921681179091556018859055633b9aca006010819055600082815260116020908152604080832084905580519384525191927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a350505050620002c0565b3390565b6005805460ff191660ff92909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200026757805160ff191683800117855562000297565b8280016001018555821562000297579182015b82811115620002975782518255916020019190600101906200027a565b50620002a5929150620002a9565b5090565b5b80821115620002a55760008155600101620002aa565b6154ed80620002d06000396000f3fe60806040526004361061041a5760003560e01c80638da5cb5b1161021e578063d494d58611610123578063eb7afed0116100ab578063f20505851161007a578063f205058514611042578063f2fde38b1461108f578063f6cad255146110c2578063fcc6ce76146110f5578063fdec254f1461110a5761041a565b8063eb7afed014610f7f578063efdf0bb014610fa9578063f196d01814610fdc578063f1ae3c7f1461100f5761041a565b8063e2ceebd1116100f2578063e2ceebd114610ea1578063e56df6c614610eda578063e581890a14610f04578063e9144e7314610f37578063e941fa7814610f6a5761041a565b8063d494d58614610deb578063da2b9bfa14610e1e578063dd62ed3e14610e33578063e2b11a6414610e6e5761041a565b80639f81aed7116101a6578063c522e74f11610175578063c522e74f14610d1c578063c99d3a0614610d46578063ca7f171a14610d79578063d00e3a3a14610da3578063d2d97b0614610dd65761041a565b80639f81aed714610c5c578063a457c2d714610c71578063a9059cbb14610caa578063c072ea4314610ce35761041a565b806395d89b41116101ed57806395d89b4114610b91578063962442c114610ba657806399b16efd14610bf757806399e3291014610c0c5780639bf7451914610c475761041a565b80638da5cb5b14610b265780638fe605ad14610b3b57806393fab9ee14610b5057806394bf804d14610b655761041a565b8063395093511161032457806370a08231116102ac5780637bc6729b1161027b5780637bc6729b14610a605780637c365e1b14610a755780637c4368c114610aae5780638028faa214610ae757806389a604eb14610b115761041a565b806370a08231146109d9578063715018a614610a0c57806375e8ef5c14610a2157806379baca1514610a4b5761041a565b80634f0e0ef3116102f35780634f0e0ef31461092e578063545886371461094357806357288d00146109585780635f72a2a7146109915780636ca2fc1b146109a65761041a565b806339509351146108725780633a1b9147146108ab5780634ba8f7a1146108e65780634d7efed7146109195761041a565b806317d33845116103a757806323b872dd1161037657806323b872dd146107b057806324552f33146107f35780632524081014610808578063313ce5671461081d57806333d5327c146108485761041a565b806317d33845146105f257806318160ddd146106075780631cf3cf311461061c5780632224fa251461066e5761041a565b80630c7d5cd8116103ee5780630c7d5cd81461055b5780630ed2dff0146105825780631190016c146105b357806312d43a51146105c857806313966db5146105dd5761041a565b8062f714ce1461041f57806306fdde031461045a578063095ea7b3146104e45780630acac95e14610531575b600080fd5b34801561042b57600080fd5b506104586004803603604081101561044257600080fd5b50803590602001356001600160a01b031661111f565b005b34801561046657600080fd5b5061046f61160c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104a9578181015183820152602001610491565b50505050905090810190601f1680156104d65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104f057600080fd5b5061051d6004803603604081101561050757600080fd5b506001600160a01b0381351690602001356116a2565b604080519115158252519081900360200190f35b34801561053d57600080fd5b5061051d6004803603602081101561055457600080fd5b50356119b9565b34801561056757600080fd5b50610570611cdc565b60408051918252519081900360200190f35b34801561058e57600080fd5b50610597611ce2565b604080516001600160a01b039092168252519081900360200190f35b3480156105bf57600080fd5b50610570611cf1565b3480156105d457600080fd5b50610597611cf7565b3480156105e957600080fd5b50610570611d06565b3480156105fe57600080fd5b50610570611d0c565b34801561061357600080fd5b50610570611d12565b34801561062857600080fd5b506106556004803603604081101561063f57600080fd5b50803590602001356001600160a01b0316611d18565b6040805192835260208301919091528051918290030190f35b61046f6004803603608081101561068457600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156106b457600080fd5b8201836020820111156106c657600080fd5b803590602001918460018302840111640100000000831117156106e857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561073b57600080fd5b82018360208201111561074d57600080fd5b8035906020019184600183028401116401000000008311171561076f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611e59945050505050565b3480156107bc57600080fd5b5061051d600480360360608110156107d357600080fd5b506001600160a01b03813581169160208101359091169060400135612033565b3480156107ff57600080fd5b506105706123ca565b34801561081457600080fd5b506105976123d0565b34801561082957600080fd5b506108326123df565b6040805160ff9092168252519081900360200190f35b34801561085457600080fd5b506104586004803603602081101561086b57600080fd5b50356123e8565b34801561087e57600080fd5b5061051d6004803603604081101561089557600080fd5b506001600160a01b038135169060200135612452565b3480156108b757600080fd5b5061051d600480360360408110156108ce57600080fd5b506001600160a01b03813516906020013515156124e6565b3480156108f257600080fd5b5061051d6004803603602081101561090957600080fd5b50356001600160a01b0316612570565b34801561092557600080fd5b50610597612585565b34801561093a57600080fd5b50610597612594565b34801561094f57600080fd5b506105976125a3565b34801561096457600080fd5b506104586004803603604081101561097b57600080fd5b506001600160a01b0381351690602001356125b2565b34801561099d57600080fd5b5061051d612bd7565b3480156109b257600080fd5b50610570600480360360208110156109c957600080fd5b50356001600160a01b0316612be7565b3480156109e557600080fd5b50610570600480360360208110156109fc57600080fd5b50356001600160a01b0316612c02565b348015610a1857600080fd5b50610458612c1d565b348015610a2d57600080fd5b5061045860048036036020811015610a4457600080fd5b5035612cdc565b348015610a5757600080fd5b50610570612d43565b348015610a6c57600080fd5b50610458612db9565b348015610a8157600080fd5b5061045860048036036040811015610a9857600080fd5b506001600160a01b038135169060200135612e71565b348015610aba57600080fd5b5061045860048036036040811015610ad157600080fd5b506001600160a01b038135169060200135612ed9565b348015610af357600080fd5b5061045860048036036020811015610b0a57600080fd5b503561302a565b348015610b1d57600080fd5b5061057061307c565b348015610b3257600080fd5b50610597613082565b348015610b4757600080fd5b50610570613096565b348015610b5c57600080fd5b506105706130db565b61045860048036036040811015610b7b57600080fd5b50803590602001356001600160a01b03166130e1565b348015610b9d57600080fd5b5061046f613935565b348015610bb257600080fd5b50610458600480360360a0811015610bc957600080fd5b506001600160a01b038135811691602081013591604082013516906060810135151590608001351515613996565b348015610c0357600080fd5b50610597613aea565b348015610c1857600080fd5b5061051d60048036036040811015610c2f57600080fd5b506001600160a01b0381351690602001351515613af9565b348015610c5357600080fd5b50610458613b83565b348015610c6857600080fd5b50610570613c3b565b348015610c7d57600080fd5b5061051d60048036036040811015610c9457600080fd5b506001600160a01b038135169060200135613c41565b348015610cb657600080fd5b5061051d60048036036040811015610ccd57600080fd5b506001600160a01b038135169060200135613d2a565b348015610cef57600080fd5b5061065560048036036040811015610d0657600080fd5b50803590602001356001600160a01b031661406c565b348015610d2857600080fd5b5061059760048036036020811015610d3f57600080fd5b503561421a565b348015610d5257600080fd5b5061045860048036036020811015610d6957600080fd5b50356001600160a01b0316614241565b348015610d8557600080fd5b5061045860048036036020811015610d9c57600080fd5b50356142af565b348015610daf57600080fd5b5061051d60048036036020811015610dc657600080fd5b50356001600160a01b0316614349565b348015610de257600080fd5b5061057061435d565b348015610df757600080fd5b5061057060048036036020811015610e0e57600080fd5b50356001600160a01b03166144d2565b348015610e2a57600080fd5b5061059761464f565b348015610e3f57600080fd5b5061057060048036036040811015610e5657600080fd5b506001600160a01b038135811691602001351661465e565b348015610e7a57600080fd5b5061051d60048036036020811015610e9157600080fd5b50356001600160a01b0316614689565b348015610ead57600080fd5b5061045860048036036040811015610ec457600080fd5b506001600160a01b03813516906020013561469e565b348015610ee657600080fd5b5061045860048036036020811015610efd57600080fd5b503561480e565b348015610f1057600080fd5b5061057060048036036020811015610f2757600080fd5b50356001600160a01b03166148f6565b348015610f4357600080fd5b5061059760048036036020811015610f5a57600080fd5b50356001600160a01b0316614908565b348015610f7657600080fd5b50610570614923565b348015610f8b57600080fd5b5061045860048036036020811015610fa257600080fd5b5035614929565b348015610fb557600080fd5b5061045860048036036020811015610fcc57600080fd5b50356001600160a01b031661497b565b348015610fe857600080fd5b5061045860048036036020811015610fff57600080fd5b50356001600160a01b0316614a3d565b34801561101b57600080fd5b506105706004803603602081101561103257600080fd5b50356001600160a01b0316614aed565b34801561104e57600080fd5b506104586004803603608081101561106557600080fd5b506001600160a01b0381358116916020810135909116906040810135151590606001351515614aff565b34801561109b57600080fd5b50610458600480360360208110156110b257600080fd5b50356001600160a01b0316614c0d565b3480156110ce57600080fd5b5061051d600480360360208110156110e557600080fd5b50356001600160a01b0316614d28565b34801561110157600080fd5b5061051d614d3d565b34801561111657600080fd5b50610570614d4d565b60026006541415611177576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600c546001600160a01b03161561140457600c54600160a01b900460ff161561120857600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156111ef57600080fd5b505af1158015611203573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff161561128357600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561126a57600080fd5b505af115801561127e573d6000803e3d6000fd5b505050505b60005b601b548110156113a05760196000601b83815481106112a157fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16801561130b5750601d6000601b83815481106112e157fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b1561139857601f6000601b838154811061132157fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b15801561137f57600080fd5b505af1158015611393573d6000803e3d6000fd5b505050505b600101611286565b5060095460085442031061140457633b9aca006113bb613096565b11156113e5576113e06113db601754601854614d5390919063ffffffff16565b614d9c565b6113ff565b6113ff6113db601754601854614df090919063ffffffff16565b426008555b81611456576040805162461bcd60e51b815260206004820152601d60248201527f6d757374207769746864726177206e6f6e2d7a65726f20616d6f756e74000000604482015290519081900360640190fd5b336000908152601160205260409020548211156114b1576040805162461bcd60e51b8152602060048201526014602482015273696e73756666696369656e742062616c616e636560601b604482015290519081900360640190fd5b6001600160a01b0381166000908152601e602052604090205460ff1661151e576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e206578697374696e6720636f6c6c61746572616c0000604482015290519081900360640190fd5b600f543360009081526012602052604090205443910111156115715760405162461bcd60e51b815260040180806020018281038252602a81526020018061548e602a913960400191505060405180910390fd5b60105461157e9083614d53565b6010553360009081526011602052604090205461159b9083614d53565b336000908152601160209081526040808320939093556025905220546115c19083614df0565b33600081815260256020908152604080832094909455601281528382204390558351868152935191936000805160206153b0833981519152929081900390910190a350506001600655565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156116985780601f1061166d57610100808354040283529160200191611698565b820191906000526020600020905b81548152906001019060200180831161167b57829003601f168201915b5050505050905090565b6000826001600160a01b0381166116b857600080fd5b6001600160a01b0381163014156116ce57600080fd5b600c546001600160a01b03161561195157600c54600160a01b900460ff161561175a57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561174157600080fd5b505af1158015611755573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff16156117d557600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156117bc57600080fd5b505af11580156117d0573d6000803e3d6000fd5b505050505b60005b601b548110156118f25760196000601b83815481106117f357fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16801561185d5750601d6000601b838154811061183357fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b156118ea57601f6000601b838154811061187357fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b1580156118d157600080fd5b505af11580156118e5573d6000803e3d6000fd5b505050505b6001016117d8565b5060095460085442031061195157633b9aca0061190d613096565b11156119325761192d6113db601754601854614d5390919063ffffffff16565b61194c565b61194c6113db601754601854614df090919063ffffffff16565b426008555b3360008181526013602090815260408083206001600160a01b03891680855290835292819020879055805187815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6023546000906001600160a01b03163314611a09576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b81611a455760405162461bcd60e51b815260040180806020018281038252602281526020018061534d6022913960400191505060405180910390fd5b600982905560005b601b54811015611baf5760196000601b8381548110611a6857fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff168015611ad25750601d6000601b8381548110611aa857fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b8015611b13575060206000601b8381548110611aea57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff165b15611ba757601f6000601b8381548110611b2957fe5b60009182526020808320909101546001600160a01b03908116845290830193909352604091820181205482516363c7560760e01b81526004810188905292519316926363c7560792602480820193929182900301818387803b158015611b8e57600080fd5b505af1158015611ba2573d6000803e3d6000fd5b505050505b600101611a4d565b50600c54600160a01b900460ff1615611c2857600c54604080516363c7560760e01b81526004810185905290516001600160a01b03909216916363c756079160248082019260009290919082900301818387803b158015611c0f57600080fd5b505af1158015611c23573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff1615611ca057600d54604080516363c7560760e01b81526004810185905290516001600160a01b03909216916363c756079160248082019260009290919082900301818387803b158015611c8757600080fd5b505af1158015611c9b573d6000803e3d6000fd5b505050505b6040805183815290517ff96993476642ad4471e701dee382f1d8b7947acb089dba94a2f49e477e85c8799181900360200190a15060015b919050565b60185481565b600d546001600160a01b031681565b60075481565b6015546001600160a01b031681565b60215481565b600b5481565b60105490565b60008083611d68576040805162461bcd60e51b81526020600482015260186024820152771b5d5cdd081d5cd9481d985b1a59081bdb99505b5bdd5b9d60421b604482015290519081900360640190fd5b6001600160a01b0383166000908152601e602052604090205460ff16611dd5576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e20616363657074656420636f6c6c61746572616c0000604482015290519081900360640190fd5b6001600160a01b0383166000908152601c6020526040812054602254611e2e91633b9aca0091611e1b91600a0a90611e2890611e219064174876e8009085908d90614e4a565b90614ea3565b8a90614d53565b90614e4a565b9050611e4a611e3c856144d2565b611e1b83633b9aca00614e4a565b925060009150505b9250929050565b6023546060906001600160a01b03163314611ea9576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b6060835160001415611ebc575081611f3f565b83805190602001208360405160200180836001600160e01b031916815260040182805190602001908083835b60208310611f075780518252601f199092019160209182019101611ee8565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405290505b60006060876001600160a01b031687846040518082805190602001908083835b60208310611f7e5780518252601f199092019160209182019101611f5f565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611fe0576040519150601f19603f3d011682016040523d82523d6000602084013e611fe5565b606091505b5091509150816120265760405162461bcd60e51b815260040180806020018281038252603b815260200180615453603b913960400191505060405180910390fd5b925050505b949350505050565b6000826001600160a01b03811661204957600080fd5b6001600160a01b03811630141561205f57600080fd5b600c546001600160a01b0316156122e257600c54600160a01b900460ff16156120eb57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156120d257600080fd5b505af11580156120e6573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff161561216657600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561214d57600080fd5b505af1158015612161573d6000803e3d6000fd5b505050505b60005b601b548110156122835760196000601b838154811061218457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1680156121ee5750601d6000601b83815481106121c457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b1561227b57601f6000601b838154811061220457fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b15801561226257600080fd5b505af1158015612276573d6000803e3d6000fd5b505050505b600101612169565b506009546008544203106122e257633b9aca0061229e613096565b11156122c3576122be6113db601754601854614d5390919063ffffffff16565b6122dd565b6122dd6113db601754601854614df090919063ffffffff16565b426008555b6001600160a01b03851660009081526013602090815260408083203384529091529020546123109084614d53565b6001600160a01b03861660008181526013602090815260408083203384528252808320949094559181526011909152205461234b9084614d53565b6001600160a01b03808716600090815260116020526040808220939093559086168152205461237a9084614df0565b6001600160a01b0380861660008181526011602090815260409182902094909455805187815290519193928916926000805160206153b083398151915292918290030190a3506001949350505050565b600e5481565b6016546001600160a01b031681565b60055460ff1690565b6023546001600160a01b03163314612435576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b600781905560185481101561244f5761244f600754614d9c565b50565b3360009081526013602090815260408083206001600160a01b03861684529091528120546124809083614df0565b3360008181526013602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a35060015b92915050565b6023546000906001600160a01b03163314612536576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b50600c80546001600160a01b0319166001600160a01b03939093169290921760ff60a01b1916600160a01b91151591909102179055600190565b601d6020526000908152604090205460ff1681565b6024546001600160a01b031681565b6014546001600160a01b031681565b600c546001600160a01b031681565b6002600654141561260a576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600c546001600160a01b03161561289257600c54600160a01b900460ff161561269b57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561268257600080fd5b505af1158015612696573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff161561271657600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126fd57600080fd5b505af1158015612711573d6000803e3d6000fd5b505050505b60005b601b548110156128335760196000601b838154811061273457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16801561279e5750601d6000601b838154811061277457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b1561282b57601f6000601b83815481106127b457fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b15801561281257600080fd5b505af1158015612826573d6000803e3d6000fd5b505050505b600101612719565b5060095460085442031061289257633b9aca0061284e613096565b11156128735761286e6113db601754601854614d5390919063ffffffff16565b61288d565b61288d6113db601754601854614df090919063ffffffff16565b426008555b6001600160a01b0382166000908152601e602052604090205460ff166128ff576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e206578697374696e6720636f6c6c61746572616c0000604482015290519081900360640190fd5b600f543360009081526012602052604090205443910111156129525760405162461bcd60e51b815260040180806020018281038252602a81526020018061548e602a913960400191505060405180910390fd5b33600090815260256020526040902054806129b4576040805162461bcd60e51b815260206004820152601d60248201527f696e73756666696369656e74206f6e6545544820746f2072656465656d000000604482015290519081900360640190fd5b80821115612a09576040805162461bcd60e51b815260206004820152601d60248201527f696e73756666696369656e74206f6e6545544820746f2072656465656d000000604482015290519081900360640190fd5b33600090815260256020526040902054612a239083614d53565b336000908152602560209081526040808320939093556001600160a01b0386168252601c905290812054602254612a8191633b9aca0091611e1b91600a0a90611e2890612a7a9064174876e8009085908b90614e4a565b8890614d53565b9050612a8f611e3c856144d2565b90506000846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015612ae057600080fd5b505afa158015612af4573d6000803e3d6000fd5b505050506040513d6020811015612b0a57600080fd5b5051821115612b4a5760405162461bcd60e51b81526004018080602001828103825260398152602001806152ec6039913960400191505060405180910390fd5b612b55853384614ee5565b33600081815260126020908152604091829020439055600a5482516001600160a01b0391821681529182019390935291871682820152606082018490526080820183905260a08201869052517fbbbdee62287b5bf3bee13cab60a29ad729cf38109bccbd2a986a11c99b8ca7049181900360c00190a150506001600655505050565b600c54600160a01b900460ff1681565b6001600160a01b031660009081526025602052604090205490565b6001600160a01b031660009081526011602052604090205490565b612c25614f37565b60055461010090046001600160a01b03908116911614612c8c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6023546001600160a01b03163314612d29576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b600e81905560185481111561244f5761244f600e54614d9c565b600d5460408051638e15f47360e01b815290516000926001600160a01b031691638e15f473916004808301926020929190829003018186803b158015612d8857600080fd5b505afa158015612d9c573d6000803e3d6000fd5b505050506040513d6020811015612db257600080fd5b5051905090565b6016546001600160a01b03163314612e03576040805162461bcd60e51b81526020600482015260086024820152672170656e64696e6760c01b604482015290519081900360640190fd5b60158054601680546001600160a01b03198084166001600160a01b03838116919091179586905591169091556040805192821680845293909116602083015280517f1f14cfc03e486d23acee577b07bc0b3b23f4888c91fcdba5e0fef5a2549d55239281900390910190a150565b6023546001600160a01b03163314612ebe576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b600a54612ed5906001600160a01b03168383614ee5565b5050565b6023546001600160a01b03163314612f26576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b60208310612f725780518252601f199092019160209182019101612f53565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612fd4576040519150601f19603f3d011682016040523d82523d6000602084013e612fd9565b606091505b5050905080613025576040805162461bcd60e51b815260206004820152601360248201527211551217d514905394d1915497d19052531151606a1b604482015290519081900360640190fd5b505050565b6023546001600160a01b03163314613077576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b600f55565b60175481565b60055461010090046001600160a01b031690565b600c5460408051638e15f47360e01b815290516000926001600160a01b031691638e15f473916004808301926020929190829003018186803b158015612d8857600080fd5b60085481565b60026006541415613139576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60026006556001600160a01b03811660009081526019602052604090205460ff166131ab576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e20616363657074656420636f6c6c61746572616c0000604482015290519081900360640190fd5b816131fd576040805162461bcd60e51b815260206004820152601960248201527f6d757374206d696e74206e6f6e2d7a65726f20616d6f756e7400000000000000604482015290519081900360640190fd5b600f543360009081526012602052604090205443910111156132505760405162461bcd60e51b815260040180806020018281038252602f8152602001806153d0602f913960400191505060405180910390fd5b60008061325d848461406c565b91509150826001600160a01b03166370a08231336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156132ae57600080fd5b505afa1580156132c2573d6000803e3d6000fd5b505050506040513d60208110156132d857600080fd5b50518211156133185760405162461bcd60e51b815260040180806020018281038252602a8152602001806153ff602a913960400191505060405180910390fd5b601454600a546000916001600160a01b0391821691161480156133ae5750600a54604080516370a0823160e01b8152336004820152905184926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561338057600080fd5b505afa158015613394573d6000803e3d6000fd5b505050506040513d60208110156133aa57600080fd5b5051105b156136d257343331108015906133c45750813410155b1561361d57600a54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561341457600080fd5b505afa158015613428573d6000803e3d6000fd5b505050506040513d602081101561343e57600080fd5b505160145460408051630d0e30db60e41b815290519293506001600160a01b039091169163d0e30db0913491600480830192600092919082900301818588803b15801561348a57600080fd5b505af115801561349e573d6000803e3d6000fd5b50505050506134b63482614df090919063ffffffff16565b600a54604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561350157600080fd5b505afa158015613515573d6000803e3d6000fd5b505050506040513d602081101561352b57600080fd5b50511461357f576040805162461bcd60e51b815260206004820152601f60248201527f696e73756666696369656e74207374696d756c7573206465706f736974656400604482015290519081900360640190fd5b6014546001600160a01b031663a9059cbb3361359b3487614d53565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156135e157600080fd5b505af11580156135f5573d6000803e3d6000fd5b505050506040513d602081101561360b57600080fd5b505161361357fe5b60019150506136d2565b600a54604080516370a0823160e01b815233600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561366857600080fd5b505afa15801561367c573d6000803e3d6000fd5b505050506040513d602081101561369257600080fd5b50518211156136d25760405162461bcd60e51b81526004018080602001828103825260288152602001806153256028913960400191505060405180910390fd5b6136de84333086614f3b565b806137f357600a546136fb906001600160a01b0316333085614f3b565b60408051600080825260208201909252339034906040518082805190602001908083835b6020831061373e5780518252601f19909201916020918201910161371f565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146137a0576040519150601f19603f3d011682016040523d82523d6000602084013e6137a5565b606091505b50509050806137f1576040805162461bcd60e51b815260206004820152601360248201527211551217d514905394d1915497d19052531151606a1b604482015290519081900360640190fd5b505b602154613817906138109064174876e80090611e1b908990614e4a565b8690614d53565b6001600160a01b0385166000908152601a602052604090205490955061384d906138109064174876e80090611e1b908990614e4a565b60105490955061385d9086614df0565b6010553360009081526011602052604090205461387a9086614df0565b3360008181526011602090815260408083209490945583518981529351929391926000805160206153b08339815191529281900390910190a333600081815260126020908152604091829020439055600a5482516001600160a01b0391821681529182019390935291861682820152606082018590526080820184905260a08201879052517feca801b067fae3d181506c21fb55d44a644d16cdb863595643131a7e105b5f019181900360c00190a150506001600655505050565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156116985780601f1061166d57610100808354040283529160200191611698565b6023546001600160a01b031633146139e3576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b6001600160a01b0385166000908152601e602052604090205460ff16613a4f57601b80546001810182556000919091527f3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc10180546001600160a01b0319166001600160a01b0387161790555b6001600160a01b039485166000908152601e602090815260408083208054600160ff1991821681179092556019845282852080548216909217909155601d83528184208054821696151596909617909555601c825280832096909655601f815285822080546001600160a01b0319169590971694909417909555601a8352838520859055918052919092208054909116911515919091179055565b600a546001600160a01b031681565b6023546000906001600160a01b03163314613b49576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b50600d80546001600160a01b0319166001600160a01b03939093169290921760ff60a01b1916600160a01b91151591909102179055600190565b6024546001600160a01b03163314613bcd576040805162461bcd60e51b81526020600482015260086024820152672170656e64696e6760c01b604482015290519081900360640190fd5b60238054602480546001600160a01b03198084166001600160a01b03838116919091179586905591169091556040805192821680845293909116602083015280517f1f14cfc03e486d23acee577b07bc0b3b23f4888c91fcdba5e0fef5a2549d55239281900390910190a150565b600f5481565b3360009081526013602090815260408083206001600160a01b0386168452909152812054808310613c95573360009081526013602090815260408083206001600160a01b0388168452909152812055613cc4565b613c9f8184614d53565b3360009081526013602090815260408083206001600160a01b03891684529091529020555b3360008181526013602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000826001600160a01b038116613d4057600080fd5b6001600160a01b038116301415613d5657600080fd5b600c546001600160a01b031615613fd957600c54600160a01b900460ff1615613de257600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613dc957600080fd5b505af1158015613ddd573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff1615613e5d57600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e4457600080fd5b505af1158015613e58573d6000803e3d6000fd5b505050505b60005b601b54811015613f7a5760196000601b8381548110613e7b57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff168015613ee55750601d6000601b8381548110613ebb57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b15613f7257601f6000601b8381548110613efb57fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b158015613f5957600080fd5b505af1158015613f6d573d6000803e3d6000fd5b505050505b600101613e60565b50600954600854420310613fd957633b9aca00613f95613096565b1115613fba57613fb56113db601754601854614d5390919063ffffffff16565b613fd4565b613fd46113db601754601854614df090919063ffffffff16565b426008555b33600090815260116020526040902054613ff39084614d53565b33600090815260116020526040808220929092556001600160a01b0386168152205461401f9084614df0565b6001600160a01b0385166000818152601160209081526040918290209390935580518681529051919233926000805160206153b08339815191529281900390910190a35060019392505050565b600080836140bc576040805162461bcd60e51b81526020600482015260186024820152771b5d5cdd081d5cd9481d985b1a59081bdb99505b5bdd5b9d60421b604482015290519081900360640190fd5b6001600160a01b03831660009081526019602052604090205460ff16614129576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e20616363657074656420636f6c6c61746572616c0000604482015290519081900360640190fd5b600061417a6009600a0a611e1b601c6000886001600160a01b03166001600160a01b0316815260200190815260200160002054600a0a611e28600754611e1b6018548c614e4a90919063ffffffff16565b9050614188611e3c856144d2565b600c549091506001600160a01b03166141a657915060009050611e52565b60006141b0612d43565b905060006141db600754611e1b6141d4601854600754614d5390919063ffffffff16565b8a90614e4a565b9050600061420b6009600a0a611e1b600b54600a0a611e2887611e1b633b9aca0089614e4a90919063ffffffff16565b93989397509295505050505050565b601b818154811061422757fe5b6000918252602090912001546001600160a01b0316905081565b6023546001600160a01b0316331461428e576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152601960205260409020805460ff19169055565b6015546001600160a01b0316331461430e576040805162461bcd60e51b815260206004820152601c60248201527f4143434553533a206f6e6c79204963686920676f7665726e616e636500000000604482015290519081900360640190fd5b60228190556040805182815290517fa01cb43de193eb3a80b373fb949c09d0eedb01f39f3b6063ace0cb6b067cc1239181900360200190a150565b602080526000908152604090205460ff1681565b600080805b601b548110156144cc5760006001600160a01b0316601b828154811061438457fe5b6000918252602090912001546001600160a01b0316146144c4576144bf633b9aca00611e1b6143d3601b85815481106143b957fe5b6000918252602090912001546001600160a01b03166144d2565b611e28601c6000601b88815481106143e757fe5b9060005260206000200160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002054600a0a611e1b633b9aca00601b898154811061443e57fe5b60009182526020918290200154604080516370a0823160e01b815230600482015290516001600160a01b03909216926370a0823192602480840193829003018186803b15801561448d57600080fd5b505afa1580156144a1573d6000803e3d6000fd5b505050506040513d60208110156144b757600080fd5b505190614e4a565b820191505b600101614362565b50905090565b6001600160a01b0381166000908152601e602052604081205460ff1661453f576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e206578697374696e6720636f6c6c61746572616c0000604482015290519081900360640190fd5b6001600160a01b0382166000908152601d602052604090205460ff16156145cc57816001600160a01b0316638fe605ad6040518163ffffffff1660e01b815260040160206040518083038186803b15801561459957600080fd5b505afa1580156145ad573d6000803e3d6000fd5b505050506040513d60208110156145c357600080fd5b50519050611cd7565b6001600160a01b038083166000908152601f6020908152604091829020548251638e15f47360e01b81529251931692638e15f473926004808201939291829003018186803b15801561461d57600080fd5b505afa158015614631573d6000803e3d6000fd5b505050506040513d602081101561464757600080fd5b505192915050565b6023546001600160a01b031681565b6001600160a01b03918216600090815260136020908152604080832093909416825291909152205490565b601e6020526000908152604090205460ff1681565b6023546001600160a01b031633146146eb576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526019602052604090205460ff1661474d576040805162461bcd60e51b81526020600482015260126024820152711a5b9d985b1a590818dbdb1b185d195c985b60721b604482015290519081900360640190fd5b64174876e80081111561479b576040805162461bcd60e51b8152602060048201526011602482015270119959481b5d5cdd081899481d985b1a59607a1b604482015290519081900360640190fd5b6001600160a01b0382166000818152601a602090815260409182902054825193845290830152818101839052517fcf85a5b7f4f21d4a913cf58eebe5679c7313cc3a20de1d2cd87f22a210e05fab9181900360600190a16001600160a01b039091166000908152601a6020526040902055565b6015546001600160a01b0316331461486d576040805162461bcd60e51b815260206004820152601c60248201527f4143434553533a206f6e6c79204963686920676f7665726e616e636500000000604482015290519081900360640190fd5b64174876e8008111156148bb576040805162461bcd60e51b8152602060048201526011602482015270119959481b5d5cdd081899481d985b1a59607a1b604482015290519081900360640190fd5b60218190556040805182815290517f6f87524b705f31734b7940b88671f37a3291d7b961b69da31bcabf882b2531da9181900360200190a150565b601a6020526000908152604090205481565b601f602052600090815260409020546001600160a01b031681565b60225481565b6023546001600160a01b03163314614976576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b601755565b6015546001600160a01b031633146149da576040805162461bcd60e51b815260206004820152601c60248201527f4143434553533a206f6e6c79204963686920676f7665726e616e636500000000604482015290519081900360640190fd5b601680546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517f6163d5b9efd962645dd649e6e48a61bcb0f9df00997a2398b80d135a9ab0c61e929181900390910190a15050565b6023546001600160a01b03163314614a8a576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b602480546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517f6ea9654b538fab06e45f7940f0aa88b14cb8aca48a29d4e0b7626009fb7dc514929181900390910190a15050565b601c6020526000908152604090205481565b6023546001600160a01b03163314614b4c576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526019602052604090205460ff16614bae576040805162461bcd60e51b81526020600482015260126024820152711a5b9d985b1a590818dbdb1b185d195c985b60721b604482015290519081900360640190fd5b6001600160a01b039384166000908152601d60209081526040808320805495151560ff19968716179055601f82528083208054969097166001600160a01b03199096169590951790955593805291909220805491151591909216179055565b614c15614f37565b60055461010090046001600160a01b03908116911614614c7c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116614cc15760405162461bcd60e51b81526004018080602001828103825260268152602001806152c66026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60196020526000908152604090205460ff1681565b600d54600160a01b900460ff1681565b60095481565b6000614d9583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614f9b565b9392505050565b6007548111158015614db05750600e548110155b1561244f5760188190556040805182815290517f2fbb30255fd6bab4bd8c21173ab8290d05fcef04343b7d0190495d90e6866c569181900360200190a150565b600082820183811015614d95576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082614e59575060006124e0565b82820282848281614e6657fe5b0414614d955760405162461bcd60e51b815260040180806020018281038252602181526020018061538f6021913960400191505060405180910390fd5b6000614d9583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250615032565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052613025908490615097565b3390565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052614f95908590615097565b50505050565b6000818484111561502a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614fef578181015183820152602001614fd7565b50505050905090810190601f16801561501c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836150815760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315614fef578181015183820152602001614fd7565b50600083858161508d57fe5b0495945050505050565b60606150ec826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166151489092919063ffffffff16565b8051909150156130255780806020019051602081101561510b57600080fd5b50516130255760405162461bcd60e51b815260040180806020018281038252602a815260200180615429602a913960400191505060405180910390fd5b606061202b8484600085606061515d856152bf565b6151ae576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106151ed5780518252601f1990920191602091820191016151ce565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461524f576040519150601f19603f3d011682016040523d82523d6000602084013e615254565b606091505b5091509150811561526857915061202b9050565b8051156152785780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315614fef578181015183820152602001614fd7565b3b15159056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373696e73756666696369656e7420636f6c6c61746572616c207265736572766573202d2074727920616e6f7468657220636f6c6c61746572616c73656e6465722068617320696e73756666696369656e74207374696d756c75732062616c616e63656d696e696d756d20726566726573682074696d65206d7573742062652076616c69644143434553533a206f6e6c79206574684c5020676f7665726e616e6365000000536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef616374696f6e20746f6f20736f6f6e202d20706c656173652077616974206120666577206d6f726520626c6f636b7373656e6465722068617320696e73756666696369656e7420636f6c6c61746572616c2062616c616e63655361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565646f6e654554483a3a657865637574655472616e73616374696f6e3a205472616e73616374696f6e20657865637574696f6e2072657665727465642e616374696f6e20746f6f20736f6f6e202d20706c65617365207761697420612066657720626c6f636b73a264697066735822122067662bba1343f91b22f9f06e07b66333f93d7cee61f2c43fe194f8b4df9eaa2564736f6c634300060c0033000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000012000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2

Deployed Bytecode

0x60806040526004361061041a5760003560e01c80638da5cb5b1161021e578063d494d58611610123578063eb7afed0116100ab578063f20505851161007a578063f205058514611042578063f2fde38b1461108f578063f6cad255146110c2578063fcc6ce76146110f5578063fdec254f1461110a5761041a565b8063eb7afed014610f7f578063efdf0bb014610fa9578063f196d01814610fdc578063f1ae3c7f1461100f5761041a565b8063e2ceebd1116100f2578063e2ceebd114610ea1578063e56df6c614610eda578063e581890a14610f04578063e9144e7314610f37578063e941fa7814610f6a5761041a565b8063d494d58614610deb578063da2b9bfa14610e1e578063dd62ed3e14610e33578063e2b11a6414610e6e5761041a565b80639f81aed7116101a6578063c522e74f11610175578063c522e74f14610d1c578063c99d3a0614610d46578063ca7f171a14610d79578063d00e3a3a14610da3578063d2d97b0614610dd65761041a565b80639f81aed714610c5c578063a457c2d714610c71578063a9059cbb14610caa578063c072ea4314610ce35761041a565b806395d89b41116101ed57806395d89b4114610b91578063962442c114610ba657806399b16efd14610bf757806399e3291014610c0c5780639bf7451914610c475761041a565b80638da5cb5b14610b265780638fe605ad14610b3b57806393fab9ee14610b5057806394bf804d14610b655761041a565b8063395093511161032457806370a08231116102ac5780637bc6729b1161027b5780637bc6729b14610a605780637c365e1b14610a755780637c4368c114610aae5780638028faa214610ae757806389a604eb14610b115761041a565b806370a08231146109d9578063715018a614610a0c57806375e8ef5c14610a2157806379baca1514610a4b5761041a565b80634f0e0ef3116102f35780634f0e0ef31461092e578063545886371461094357806357288d00146109585780635f72a2a7146109915780636ca2fc1b146109a65761041a565b806339509351146108725780633a1b9147146108ab5780634ba8f7a1146108e65780634d7efed7146109195761041a565b806317d33845116103a757806323b872dd1161037657806323b872dd146107b057806324552f33146107f35780632524081014610808578063313ce5671461081d57806333d5327c146108485761041a565b806317d33845146105f257806318160ddd146106075780631cf3cf311461061c5780632224fa251461066e5761041a565b80630c7d5cd8116103ee5780630c7d5cd81461055b5780630ed2dff0146105825780631190016c146105b357806312d43a51146105c857806313966db5146105dd5761041a565b8062f714ce1461041f57806306fdde031461045a578063095ea7b3146104e45780630acac95e14610531575b600080fd5b34801561042b57600080fd5b506104586004803603604081101561044257600080fd5b50803590602001356001600160a01b031661111f565b005b34801561046657600080fd5b5061046f61160c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104a9578181015183820152602001610491565b50505050905090810190601f1680156104d65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104f057600080fd5b5061051d6004803603604081101561050757600080fd5b506001600160a01b0381351690602001356116a2565b604080519115158252519081900360200190f35b34801561053d57600080fd5b5061051d6004803603602081101561055457600080fd5b50356119b9565b34801561056757600080fd5b50610570611cdc565b60408051918252519081900360200190f35b34801561058e57600080fd5b50610597611ce2565b604080516001600160a01b039092168252519081900360200190f35b3480156105bf57600080fd5b50610570611cf1565b3480156105d457600080fd5b50610597611cf7565b3480156105e957600080fd5b50610570611d06565b3480156105fe57600080fd5b50610570611d0c565b34801561061357600080fd5b50610570611d12565b34801561062857600080fd5b506106556004803603604081101561063f57600080fd5b50803590602001356001600160a01b0316611d18565b6040805192835260208301919091528051918290030190f35b61046f6004803603608081101561068457600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156106b457600080fd5b8201836020820111156106c657600080fd5b803590602001918460018302840111640100000000831117156106e857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561073b57600080fd5b82018360208201111561074d57600080fd5b8035906020019184600183028401116401000000008311171561076f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611e59945050505050565b3480156107bc57600080fd5b5061051d600480360360608110156107d357600080fd5b506001600160a01b03813581169160208101359091169060400135612033565b3480156107ff57600080fd5b506105706123ca565b34801561081457600080fd5b506105976123d0565b34801561082957600080fd5b506108326123df565b6040805160ff9092168252519081900360200190f35b34801561085457600080fd5b506104586004803603602081101561086b57600080fd5b50356123e8565b34801561087e57600080fd5b5061051d6004803603604081101561089557600080fd5b506001600160a01b038135169060200135612452565b3480156108b757600080fd5b5061051d600480360360408110156108ce57600080fd5b506001600160a01b03813516906020013515156124e6565b3480156108f257600080fd5b5061051d6004803603602081101561090957600080fd5b50356001600160a01b0316612570565b34801561092557600080fd5b50610597612585565b34801561093a57600080fd5b50610597612594565b34801561094f57600080fd5b506105976125a3565b34801561096457600080fd5b506104586004803603604081101561097b57600080fd5b506001600160a01b0381351690602001356125b2565b34801561099d57600080fd5b5061051d612bd7565b3480156109b257600080fd5b50610570600480360360208110156109c957600080fd5b50356001600160a01b0316612be7565b3480156109e557600080fd5b50610570600480360360208110156109fc57600080fd5b50356001600160a01b0316612c02565b348015610a1857600080fd5b50610458612c1d565b348015610a2d57600080fd5b5061045860048036036020811015610a4457600080fd5b5035612cdc565b348015610a5757600080fd5b50610570612d43565b348015610a6c57600080fd5b50610458612db9565b348015610a8157600080fd5b5061045860048036036040811015610a9857600080fd5b506001600160a01b038135169060200135612e71565b348015610aba57600080fd5b5061045860048036036040811015610ad157600080fd5b506001600160a01b038135169060200135612ed9565b348015610af357600080fd5b5061045860048036036020811015610b0a57600080fd5b503561302a565b348015610b1d57600080fd5b5061057061307c565b348015610b3257600080fd5b50610597613082565b348015610b4757600080fd5b50610570613096565b348015610b5c57600080fd5b506105706130db565b61045860048036036040811015610b7b57600080fd5b50803590602001356001600160a01b03166130e1565b348015610b9d57600080fd5b5061046f613935565b348015610bb257600080fd5b50610458600480360360a0811015610bc957600080fd5b506001600160a01b038135811691602081013591604082013516906060810135151590608001351515613996565b348015610c0357600080fd5b50610597613aea565b348015610c1857600080fd5b5061051d60048036036040811015610c2f57600080fd5b506001600160a01b0381351690602001351515613af9565b348015610c5357600080fd5b50610458613b83565b348015610c6857600080fd5b50610570613c3b565b348015610c7d57600080fd5b5061051d60048036036040811015610c9457600080fd5b506001600160a01b038135169060200135613c41565b348015610cb657600080fd5b5061051d60048036036040811015610ccd57600080fd5b506001600160a01b038135169060200135613d2a565b348015610cef57600080fd5b5061065560048036036040811015610d0657600080fd5b50803590602001356001600160a01b031661406c565b348015610d2857600080fd5b5061059760048036036020811015610d3f57600080fd5b503561421a565b348015610d5257600080fd5b5061045860048036036020811015610d6957600080fd5b50356001600160a01b0316614241565b348015610d8557600080fd5b5061045860048036036020811015610d9c57600080fd5b50356142af565b348015610daf57600080fd5b5061051d60048036036020811015610dc657600080fd5b50356001600160a01b0316614349565b348015610de257600080fd5b5061057061435d565b348015610df757600080fd5b5061057060048036036020811015610e0e57600080fd5b50356001600160a01b03166144d2565b348015610e2a57600080fd5b5061059761464f565b348015610e3f57600080fd5b5061057060048036036040811015610e5657600080fd5b506001600160a01b038135811691602001351661465e565b348015610e7a57600080fd5b5061051d60048036036020811015610e9157600080fd5b50356001600160a01b0316614689565b348015610ead57600080fd5b5061045860048036036040811015610ec457600080fd5b506001600160a01b03813516906020013561469e565b348015610ee657600080fd5b5061045860048036036020811015610efd57600080fd5b503561480e565b348015610f1057600080fd5b5061057060048036036020811015610f2757600080fd5b50356001600160a01b03166148f6565b348015610f4357600080fd5b5061059760048036036020811015610f5a57600080fd5b50356001600160a01b0316614908565b348015610f7657600080fd5b50610570614923565b348015610f8b57600080fd5b5061045860048036036020811015610fa257600080fd5b5035614929565b348015610fb557600080fd5b5061045860048036036020811015610fcc57600080fd5b50356001600160a01b031661497b565b348015610fe857600080fd5b5061045860048036036020811015610fff57600080fd5b50356001600160a01b0316614a3d565b34801561101b57600080fd5b506105706004803603602081101561103257600080fd5b50356001600160a01b0316614aed565b34801561104e57600080fd5b506104586004803603608081101561106557600080fd5b506001600160a01b0381358116916020810135909116906040810135151590606001351515614aff565b34801561109b57600080fd5b50610458600480360360208110156110b257600080fd5b50356001600160a01b0316614c0d565b3480156110ce57600080fd5b5061051d600480360360208110156110e557600080fd5b50356001600160a01b0316614d28565b34801561110157600080fd5b5061051d614d3d565b34801561111657600080fd5b50610570614d4d565b60026006541415611177576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600c546001600160a01b03161561140457600c54600160a01b900460ff161561120857600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156111ef57600080fd5b505af1158015611203573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff161561128357600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561126a57600080fd5b505af115801561127e573d6000803e3d6000fd5b505050505b60005b601b548110156113a05760196000601b83815481106112a157fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16801561130b5750601d6000601b83815481106112e157fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b1561139857601f6000601b838154811061132157fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b15801561137f57600080fd5b505af1158015611393573d6000803e3d6000fd5b505050505b600101611286565b5060095460085442031061140457633b9aca006113bb613096565b11156113e5576113e06113db601754601854614d5390919063ffffffff16565b614d9c565b6113ff565b6113ff6113db601754601854614df090919063ffffffff16565b426008555b81611456576040805162461bcd60e51b815260206004820152601d60248201527f6d757374207769746864726177206e6f6e2d7a65726f20616d6f756e74000000604482015290519081900360640190fd5b336000908152601160205260409020548211156114b1576040805162461bcd60e51b8152602060048201526014602482015273696e73756666696369656e742062616c616e636560601b604482015290519081900360640190fd5b6001600160a01b0381166000908152601e602052604090205460ff1661151e576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e206578697374696e6720636f6c6c61746572616c0000604482015290519081900360640190fd5b600f543360009081526012602052604090205443910111156115715760405162461bcd60e51b815260040180806020018281038252602a81526020018061548e602a913960400191505060405180910390fd5b60105461157e9083614d53565b6010553360009081526011602052604090205461159b9083614d53565b336000908152601160209081526040808320939093556025905220546115c19083614df0565b33600081815260256020908152604080832094909455601281528382204390558351868152935191936000805160206153b0833981519152929081900390910190a350506001600655565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156116985780601f1061166d57610100808354040283529160200191611698565b820191906000526020600020905b81548152906001019060200180831161167b57829003601f168201915b5050505050905090565b6000826001600160a01b0381166116b857600080fd5b6001600160a01b0381163014156116ce57600080fd5b600c546001600160a01b03161561195157600c54600160a01b900460ff161561175a57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561174157600080fd5b505af1158015611755573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff16156117d557600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156117bc57600080fd5b505af11580156117d0573d6000803e3d6000fd5b505050505b60005b601b548110156118f25760196000601b83815481106117f357fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16801561185d5750601d6000601b838154811061183357fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b156118ea57601f6000601b838154811061187357fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b1580156118d157600080fd5b505af11580156118e5573d6000803e3d6000fd5b505050505b6001016117d8565b5060095460085442031061195157633b9aca0061190d613096565b11156119325761192d6113db601754601854614d5390919063ffffffff16565b61194c565b61194c6113db601754601854614df090919063ffffffff16565b426008555b3360008181526013602090815260408083206001600160a01b03891680855290835292819020879055805187815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6023546000906001600160a01b03163314611a09576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b81611a455760405162461bcd60e51b815260040180806020018281038252602281526020018061534d6022913960400191505060405180910390fd5b600982905560005b601b54811015611baf5760196000601b8381548110611a6857fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff168015611ad25750601d6000601b8381548110611aa857fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b8015611b13575060206000601b8381548110611aea57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff165b15611ba757601f6000601b8381548110611b2957fe5b60009182526020808320909101546001600160a01b03908116845290830193909352604091820181205482516363c7560760e01b81526004810188905292519316926363c7560792602480820193929182900301818387803b158015611b8e57600080fd5b505af1158015611ba2573d6000803e3d6000fd5b505050505b600101611a4d565b50600c54600160a01b900460ff1615611c2857600c54604080516363c7560760e01b81526004810185905290516001600160a01b03909216916363c756079160248082019260009290919082900301818387803b158015611c0f57600080fd5b505af1158015611c23573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff1615611ca057600d54604080516363c7560760e01b81526004810185905290516001600160a01b03909216916363c756079160248082019260009290919082900301818387803b158015611c8757600080fd5b505af1158015611c9b573d6000803e3d6000fd5b505050505b6040805183815290517ff96993476642ad4471e701dee382f1d8b7947acb089dba94a2f49e477e85c8799181900360200190a15060015b919050565b60185481565b600d546001600160a01b031681565b60075481565b6015546001600160a01b031681565b60215481565b600b5481565b60105490565b60008083611d68576040805162461bcd60e51b81526020600482015260186024820152771b5d5cdd081d5cd9481d985b1a59081bdb99505b5bdd5b9d60421b604482015290519081900360640190fd5b6001600160a01b0383166000908152601e602052604090205460ff16611dd5576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e20616363657074656420636f6c6c61746572616c0000604482015290519081900360640190fd5b6001600160a01b0383166000908152601c6020526040812054602254611e2e91633b9aca0091611e1b91600a0a90611e2890611e219064174876e8009085908d90614e4a565b90614ea3565b8a90614d53565b90614e4a565b9050611e4a611e3c856144d2565b611e1b83633b9aca00614e4a565b925060009150505b9250929050565b6023546060906001600160a01b03163314611ea9576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b6060835160001415611ebc575081611f3f565b83805190602001208360405160200180836001600160e01b031916815260040182805190602001908083835b60208310611f075780518252601f199092019160209182019101611ee8565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405290505b60006060876001600160a01b031687846040518082805190602001908083835b60208310611f7e5780518252601f199092019160209182019101611f5f565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611fe0576040519150601f19603f3d011682016040523d82523d6000602084013e611fe5565b606091505b5091509150816120265760405162461bcd60e51b815260040180806020018281038252603b815260200180615453603b913960400191505060405180910390fd5b925050505b949350505050565b6000826001600160a01b03811661204957600080fd5b6001600160a01b03811630141561205f57600080fd5b600c546001600160a01b0316156122e257600c54600160a01b900460ff16156120eb57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156120d257600080fd5b505af11580156120e6573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff161561216657600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561214d57600080fd5b505af1158015612161573d6000803e3d6000fd5b505050505b60005b601b548110156122835760196000601b838154811061218457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1680156121ee5750601d6000601b83815481106121c457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b1561227b57601f6000601b838154811061220457fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b15801561226257600080fd5b505af1158015612276573d6000803e3d6000fd5b505050505b600101612169565b506009546008544203106122e257633b9aca0061229e613096565b11156122c3576122be6113db601754601854614d5390919063ffffffff16565b6122dd565b6122dd6113db601754601854614df090919063ffffffff16565b426008555b6001600160a01b03851660009081526013602090815260408083203384529091529020546123109084614d53565b6001600160a01b03861660008181526013602090815260408083203384528252808320949094559181526011909152205461234b9084614d53565b6001600160a01b03808716600090815260116020526040808220939093559086168152205461237a9084614df0565b6001600160a01b0380861660008181526011602090815260409182902094909455805187815290519193928916926000805160206153b083398151915292918290030190a3506001949350505050565b600e5481565b6016546001600160a01b031681565b60055460ff1690565b6023546001600160a01b03163314612435576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b600781905560185481101561244f5761244f600754614d9c565b50565b3360009081526013602090815260408083206001600160a01b03861684529091528120546124809083614df0565b3360008181526013602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a35060015b92915050565b6023546000906001600160a01b03163314612536576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b50600c80546001600160a01b0319166001600160a01b03939093169290921760ff60a01b1916600160a01b91151591909102179055600190565b601d6020526000908152604090205460ff1681565b6024546001600160a01b031681565b6014546001600160a01b031681565b600c546001600160a01b031681565b6002600654141561260a576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600c546001600160a01b03161561289257600c54600160a01b900460ff161561269b57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561268257600080fd5b505af1158015612696573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff161561271657600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126fd57600080fd5b505af1158015612711573d6000803e3d6000fd5b505050505b60005b601b548110156128335760196000601b838154811061273457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16801561279e5750601d6000601b838154811061277457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b1561282b57601f6000601b83815481106127b457fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b15801561281257600080fd5b505af1158015612826573d6000803e3d6000fd5b505050505b600101612719565b5060095460085442031061289257633b9aca0061284e613096565b11156128735761286e6113db601754601854614d5390919063ffffffff16565b61288d565b61288d6113db601754601854614df090919063ffffffff16565b426008555b6001600160a01b0382166000908152601e602052604090205460ff166128ff576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e206578697374696e6720636f6c6c61746572616c0000604482015290519081900360640190fd5b600f543360009081526012602052604090205443910111156129525760405162461bcd60e51b815260040180806020018281038252602a81526020018061548e602a913960400191505060405180910390fd5b33600090815260256020526040902054806129b4576040805162461bcd60e51b815260206004820152601d60248201527f696e73756666696369656e74206f6e6545544820746f2072656465656d000000604482015290519081900360640190fd5b80821115612a09576040805162461bcd60e51b815260206004820152601d60248201527f696e73756666696369656e74206f6e6545544820746f2072656465656d000000604482015290519081900360640190fd5b33600090815260256020526040902054612a239083614d53565b336000908152602560209081526040808320939093556001600160a01b0386168252601c905290812054602254612a8191633b9aca0091611e1b91600a0a90611e2890612a7a9064174876e8009085908b90614e4a565b8890614d53565b9050612a8f611e3c856144d2565b90506000846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015612ae057600080fd5b505afa158015612af4573d6000803e3d6000fd5b505050506040513d6020811015612b0a57600080fd5b5051821115612b4a5760405162461bcd60e51b81526004018080602001828103825260398152602001806152ec6039913960400191505060405180910390fd5b612b55853384614ee5565b33600081815260126020908152604091829020439055600a5482516001600160a01b0391821681529182019390935291871682820152606082018490526080820183905260a08201869052517fbbbdee62287b5bf3bee13cab60a29ad729cf38109bccbd2a986a11c99b8ca7049181900360c00190a150506001600655505050565b600c54600160a01b900460ff1681565b6001600160a01b031660009081526025602052604090205490565b6001600160a01b031660009081526011602052604090205490565b612c25614f37565b60055461010090046001600160a01b03908116911614612c8c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6023546001600160a01b03163314612d29576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b600e81905560185481111561244f5761244f600e54614d9c565b600d5460408051638e15f47360e01b815290516000926001600160a01b031691638e15f473916004808301926020929190829003018186803b158015612d8857600080fd5b505afa158015612d9c573d6000803e3d6000fd5b505050506040513d6020811015612db257600080fd5b5051905090565b6016546001600160a01b03163314612e03576040805162461bcd60e51b81526020600482015260086024820152672170656e64696e6760c01b604482015290519081900360640190fd5b60158054601680546001600160a01b03198084166001600160a01b03838116919091179586905591169091556040805192821680845293909116602083015280517f1f14cfc03e486d23acee577b07bc0b3b23f4888c91fcdba5e0fef5a2549d55239281900390910190a150565b6023546001600160a01b03163314612ebe576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b600a54612ed5906001600160a01b03168383614ee5565b5050565b6023546001600160a01b03163314612f26576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b60208310612f725780518252601f199092019160209182019101612f53565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612fd4576040519150601f19603f3d011682016040523d82523d6000602084013e612fd9565b606091505b5050905080613025576040805162461bcd60e51b815260206004820152601360248201527211551217d514905394d1915497d19052531151606a1b604482015290519081900360640190fd5b505050565b6023546001600160a01b03163314613077576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b600f55565b60175481565b60055461010090046001600160a01b031690565b600c5460408051638e15f47360e01b815290516000926001600160a01b031691638e15f473916004808301926020929190829003018186803b158015612d8857600080fd5b60085481565b60026006541415613139576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60026006556001600160a01b03811660009081526019602052604090205460ff166131ab576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e20616363657074656420636f6c6c61746572616c0000604482015290519081900360640190fd5b816131fd576040805162461bcd60e51b815260206004820152601960248201527f6d757374206d696e74206e6f6e2d7a65726f20616d6f756e7400000000000000604482015290519081900360640190fd5b600f543360009081526012602052604090205443910111156132505760405162461bcd60e51b815260040180806020018281038252602f8152602001806153d0602f913960400191505060405180910390fd5b60008061325d848461406c565b91509150826001600160a01b03166370a08231336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156132ae57600080fd5b505afa1580156132c2573d6000803e3d6000fd5b505050506040513d60208110156132d857600080fd5b50518211156133185760405162461bcd60e51b815260040180806020018281038252602a8152602001806153ff602a913960400191505060405180910390fd5b601454600a546000916001600160a01b0391821691161480156133ae5750600a54604080516370a0823160e01b8152336004820152905184926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561338057600080fd5b505afa158015613394573d6000803e3d6000fd5b505050506040513d60208110156133aa57600080fd5b5051105b156136d257343331108015906133c45750813410155b1561361d57600a54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561341457600080fd5b505afa158015613428573d6000803e3d6000fd5b505050506040513d602081101561343e57600080fd5b505160145460408051630d0e30db60e41b815290519293506001600160a01b039091169163d0e30db0913491600480830192600092919082900301818588803b15801561348a57600080fd5b505af115801561349e573d6000803e3d6000fd5b50505050506134b63482614df090919063ffffffff16565b600a54604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561350157600080fd5b505afa158015613515573d6000803e3d6000fd5b505050506040513d602081101561352b57600080fd5b50511461357f576040805162461bcd60e51b815260206004820152601f60248201527f696e73756666696369656e74207374696d756c7573206465706f736974656400604482015290519081900360640190fd5b6014546001600160a01b031663a9059cbb3361359b3487614d53565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156135e157600080fd5b505af11580156135f5573d6000803e3d6000fd5b505050506040513d602081101561360b57600080fd5b505161361357fe5b60019150506136d2565b600a54604080516370a0823160e01b815233600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561366857600080fd5b505afa15801561367c573d6000803e3d6000fd5b505050506040513d602081101561369257600080fd5b50518211156136d25760405162461bcd60e51b81526004018080602001828103825260288152602001806153256028913960400191505060405180910390fd5b6136de84333086614f3b565b806137f357600a546136fb906001600160a01b0316333085614f3b565b60408051600080825260208201909252339034906040518082805190602001908083835b6020831061373e5780518252601f19909201916020918201910161371f565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146137a0576040519150601f19603f3d011682016040523d82523d6000602084013e6137a5565b606091505b50509050806137f1576040805162461bcd60e51b815260206004820152601360248201527211551217d514905394d1915497d19052531151606a1b604482015290519081900360640190fd5b505b602154613817906138109064174876e80090611e1b908990614e4a565b8690614d53565b6001600160a01b0385166000908152601a602052604090205490955061384d906138109064174876e80090611e1b908990614e4a565b60105490955061385d9086614df0565b6010553360009081526011602052604090205461387a9086614df0565b3360008181526011602090815260408083209490945583518981529351929391926000805160206153b08339815191529281900390910190a333600081815260126020908152604091829020439055600a5482516001600160a01b0391821681529182019390935291861682820152606082018590526080820184905260a08201879052517feca801b067fae3d181506c21fb55d44a644d16cdb863595643131a7e105b5f019181900360c00190a150506001600655505050565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156116985780601f1061166d57610100808354040283529160200191611698565b6023546001600160a01b031633146139e3576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b6001600160a01b0385166000908152601e602052604090205460ff16613a4f57601b80546001810182556000919091527f3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc10180546001600160a01b0319166001600160a01b0387161790555b6001600160a01b039485166000908152601e602090815260408083208054600160ff1991821681179092556019845282852080548216909217909155601d83528184208054821696151596909617909555601c825280832096909655601f815285822080546001600160a01b0319169590971694909417909555601a8352838520859055918052919092208054909116911515919091179055565b600a546001600160a01b031681565b6023546000906001600160a01b03163314613b49576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b50600d80546001600160a01b0319166001600160a01b03939093169290921760ff60a01b1916600160a01b91151591909102179055600190565b6024546001600160a01b03163314613bcd576040805162461bcd60e51b81526020600482015260086024820152672170656e64696e6760c01b604482015290519081900360640190fd5b60238054602480546001600160a01b03198084166001600160a01b03838116919091179586905591169091556040805192821680845293909116602083015280517f1f14cfc03e486d23acee577b07bc0b3b23f4888c91fcdba5e0fef5a2549d55239281900390910190a150565b600f5481565b3360009081526013602090815260408083206001600160a01b0386168452909152812054808310613c95573360009081526013602090815260408083206001600160a01b0388168452909152812055613cc4565b613c9f8184614d53565b3360009081526013602090815260408083206001600160a01b03891684529091529020555b3360008181526013602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000826001600160a01b038116613d4057600080fd5b6001600160a01b038116301415613d5657600080fd5b600c546001600160a01b031615613fd957600c54600160a01b900460ff1615613de257600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613dc957600080fd5b505af1158015613ddd573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff1615613e5d57600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e4457600080fd5b505af1158015613e58573d6000803e3d6000fd5b505050505b60005b601b54811015613f7a5760196000601b8381548110613e7b57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff168015613ee55750601d6000601b8381548110613ebb57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b15613f7257601f6000601b8381548110613efb57fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b158015613f5957600080fd5b505af1158015613f6d573d6000803e3d6000fd5b505050505b600101613e60565b50600954600854420310613fd957633b9aca00613f95613096565b1115613fba57613fb56113db601754601854614d5390919063ffffffff16565b613fd4565b613fd46113db601754601854614df090919063ffffffff16565b426008555b33600090815260116020526040902054613ff39084614d53565b33600090815260116020526040808220929092556001600160a01b0386168152205461401f9084614df0565b6001600160a01b0385166000818152601160209081526040918290209390935580518681529051919233926000805160206153b08339815191529281900390910190a35060019392505050565b600080836140bc576040805162461bcd60e51b81526020600482015260186024820152771b5d5cdd081d5cd9481d985b1a59081bdb99505b5bdd5b9d60421b604482015290519081900360640190fd5b6001600160a01b03831660009081526019602052604090205460ff16614129576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e20616363657074656420636f6c6c61746572616c0000604482015290519081900360640190fd5b600061417a6009600a0a611e1b601c6000886001600160a01b03166001600160a01b0316815260200190815260200160002054600a0a611e28600754611e1b6018548c614e4a90919063ffffffff16565b9050614188611e3c856144d2565b600c549091506001600160a01b03166141a657915060009050611e52565b60006141b0612d43565b905060006141db600754611e1b6141d4601854600754614d5390919063ffffffff16565b8a90614e4a565b9050600061420b6009600a0a611e1b600b54600a0a611e2887611e1b633b9aca0089614e4a90919063ffffffff16565b93989397509295505050505050565b601b818154811061422757fe5b6000918252602090912001546001600160a01b0316905081565b6023546001600160a01b0316331461428e576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152601960205260409020805460ff19169055565b6015546001600160a01b0316331461430e576040805162461bcd60e51b815260206004820152601c60248201527f4143434553533a206f6e6c79204963686920676f7665726e616e636500000000604482015290519081900360640190fd5b60228190556040805182815290517fa01cb43de193eb3a80b373fb949c09d0eedb01f39f3b6063ace0cb6b067cc1239181900360200190a150565b602080526000908152604090205460ff1681565b600080805b601b548110156144cc5760006001600160a01b0316601b828154811061438457fe5b6000918252602090912001546001600160a01b0316146144c4576144bf633b9aca00611e1b6143d3601b85815481106143b957fe5b6000918252602090912001546001600160a01b03166144d2565b611e28601c6000601b88815481106143e757fe5b9060005260206000200160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002054600a0a611e1b633b9aca00601b898154811061443e57fe5b60009182526020918290200154604080516370a0823160e01b815230600482015290516001600160a01b03909216926370a0823192602480840193829003018186803b15801561448d57600080fd5b505afa1580156144a1573d6000803e3d6000fd5b505050506040513d60208110156144b757600080fd5b505190614e4a565b820191505b600101614362565b50905090565b6001600160a01b0381166000908152601e602052604081205460ff1661453f576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e206578697374696e6720636f6c6c61746572616c0000604482015290519081900360640190fd5b6001600160a01b0382166000908152601d602052604090205460ff16156145cc57816001600160a01b0316638fe605ad6040518163ffffffff1660e01b815260040160206040518083038186803b15801561459957600080fd5b505afa1580156145ad573d6000803e3d6000fd5b505050506040513d60208110156145c357600080fd5b50519050611cd7565b6001600160a01b038083166000908152601f6020908152604091829020548251638e15f47360e01b81529251931692638e15f473926004808201939291829003018186803b15801561461d57600080fd5b505afa158015614631573d6000803e3d6000fd5b505050506040513d602081101561464757600080fd5b505192915050565b6023546001600160a01b031681565b6001600160a01b03918216600090815260136020908152604080832093909416825291909152205490565b601e6020526000908152604090205460ff1681565b6023546001600160a01b031633146146eb576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526019602052604090205460ff1661474d576040805162461bcd60e51b81526020600482015260126024820152711a5b9d985b1a590818dbdb1b185d195c985b60721b604482015290519081900360640190fd5b64174876e80081111561479b576040805162461bcd60e51b8152602060048201526011602482015270119959481b5d5cdd081899481d985b1a59607a1b604482015290519081900360640190fd5b6001600160a01b0382166000818152601a602090815260409182902054825193845290830152818101839052517fcf85a5b7f4f21d4a913cf58eebe5679c7313cc3a20de1d2cd87f22a210e05fab9181900360600190a16001600160a01b039091166000908152601a6020526040902055565b6015546001600160a01b0316331461486d576040805162461bcd60e51b815260206004820152601c60248201527f4143434553533a206f6e6c79204963686920676f7665726e616e636500000000604482015290519081900360640190fd5b64174876e8008111156148bb576040805162461bcd60e51b8152602060048201526011602482015270119959481b5d5cdd081899481d985b1a59607a1b604482015290519081900360640190fd5b60218190556040805182815290517f6f87524b705f31734b7940b88671f37a3291d7b961b69da31bcabf882b2531da9181900360200190a150565b601a6020526000908152604090205481565b601f602052600090815260409020546001600160a01b031681565b60225481565b6023546001600160a01b03163314614976576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b601755565b6015546001600160a01b031633146149da576040805162461bcd60e51b815260206004820152601c60248201527f4143434553533a206f6e6c79204963686920676f7665726e616e636500000000604482015290519081900360640190fd5b601680546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517f6163d5b9efd962645dd649e6e48a61bcb0f9df00997a2398b80d135a9ab0c61e929181900390910190a15050565b6023546001600160a01b03163314614a8a576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b602480546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517f6ea9654b538fab06e45f7940f0aa88b14cb8aca48a29d4e0b7626009fb7dc514929181900390910190a15050565b601c6020526000908152604090205481565b6023546001600160a01b03163314614b4c576040805162461bcd60e51b815260206004820152601d602482015260008051602061536f833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526019602052604090205460ff16614bae576040805162461bcd60e51b81526020600482015260126024820152711a5b9d985b1a590818dbdb1b185d195c985b60721b604482015290519081900360640190fd5b6001600160a01b039384166000908152601d60209081526040808320805495151560ff19968716179055601f82528083208054969097166001600160a01b03199096169590951790955593805291909220805491151591909216179055565b614c15614f37565b60055461010090046001600160a01b03908116911614614c7c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116614cc15760405162461bcd60e51b81526004018080602001828103825260268152602001806152c66026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60196020526000908152604090205460ff1681565b600d54600160a01b900460ff1681565b60095481565b6000614d9583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614f9b565b9392505050565b6007548111158015614db05750600e548110155b1561244f5760188190556040805182815290517f2fbb30255fd6bab4bd8c21173ab8290d05fcef04343b7d0190495d90e6866c569181900360200190a150565b600082820183811015614d95576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082614e59575060006124e0565b82820282848281614e6657fe5b0414614d955760405162461bcd60e51b815260040180806020018281038252602181526020018061538f6021913960400191505060405180910390fd5b6000614d9583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250615032565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052613025908490615097565b3390565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052614f95908590615097565b50505050565b6000818484111561502a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614fef578181015183820152602001614fd7565b50505050905090810190601f16801561501c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836150815760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315614fef578181015183820152602001614fd7565b50600083858161508d57fe5b0495945050505050565b60606150ec826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166151489092919063ffffffff16565b8051909150156130255780806020019051602081101561510b57600080fd5b50516130255760405162461bcd60e51b815260040180806020018281038252602a815260200180615429602a913960400191505060405180910390fd5b606061202b8484600085606061515d856152bf565b6151ae576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106151ed5780518252601f1990920191602091820191016151ce565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461524f576040519150601f19603f3d011682016040523d82523d6000602084013e615254565b606091505b5091509150811561526857915061202b9050565b8051156152785780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315614fef578181015183820152602001614fd7565b3b15159056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373696e73756666696369656e7420636f6c6c61746572616c207265736572766573202d2074727920616e6f7468657220636f6c6c61746572616c73656e6465722068617320696e73756666696369656e74207374696d756c75732062616c616e63656d696e696d756d20726566726573682074696d65206d7573742062652076616c69644143434553533a206f6e6c79206574684c5020676f7665726e616e6365000000536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef616374696f6e20746f6f20736f6f6e202d20706c656173652077616974206120666577206d6f726520626c6f636b7373656e6465722068617320696e73756666696369656e7420636f6c6c61746572616c2062616c616e63655361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565646f6e654554483a3a657865637574655472616e73616374696f6e3a205472616e73616374696f6e20657865637574696f6e2072657665727465642e616374696f6e20746f6f20736f6f6e202d20706c65617365207761697420612066657720626c6f636b73a264697066735822122067662bba1343f91b22f9f06e07b66333f93d7cee61f2c43fe194f8b4df9eaa2564736f6c634300060c0033

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

000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000012000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2

-----Decoded View---------------
Arg [0] : reserveRatio_ (uint256): 100000000000
Arg [1] : stimulus_ (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [2] : stimulusDecimals_ (uint256): 18
Arg [3] : wethAddress_ (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000174876e800
Arg [1] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2


Deployed Bytecode Sourcemap

36666:30338:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61736:872;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61736:872:0;;;;;;-1:-1:-1;;;;;61736:872:0;;:::i;:::-;;24773:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49993:304;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49993:304:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;52605:890;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52605:890:0;;:::i;38801:27::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;37453:29;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;37453:29:0;;;;;;;;;;;;;;36779:32;;;;;;;;;;;;;:::i;38510:18::-;;;;;;;;;;;;;:::i;42664:22::-;;;;;;;;;;;;;:::i;37208:31::-;;;;;;;;;;;;;:::i;47126:141::-;;;;;;;;;;;;;:::i;57630:601::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57630:601:0;;;;;;-1:-1:-1;;;;;57630:601:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;66352:647;;;;;;;;;;;;;;;;-1:-1:-1;;;;;66352:647:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66352:647:0;;;;;;;;-1:-1:-1;66352:647:0;;-1:-1:-1;;66352:647:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66352:647:0;;-1:-1:-1;66352:647:0;;-1:-1:-1;;;;;66352:647:0:i;48895:456::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;48895:456:0;;;;;;;;;;;;;;;;;:::i;37773:32::-;;;;;;;;;;;;;:::i;38582:25::-;;;;;;;;;;;;;:::i;25700:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54627:213;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54627:213:0;;:::i;50670:330::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50670:330:0;;;;;;;;:::i;51776:238::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;51776:238:0;;;;;;;;;;:::i;41665:56::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41665:56:0;-1:-1:-1;;;;;41665:56:0;;:::i;43186:27::-;;;;;;;;;;;;;:::i;38441:26::-;;;;;;;;;;;;;:::i;37297:29::-;;;;;;;;;;;;;:::i;63185:1474::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;63185:1474:0;;;;;;;;:::i;37370:35::-;;;;;;;;;;;;;:::i;45686:156::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45686:156:0;-1:-1:-1;;;;;45686:156:0;;:::i;47388:155::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47388:155:0;-1:-1:-1;;;;;47388:155:0;;:::i;35338:148::-;;;;;;;;;;;;;:::i;54406:213::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54406:213:0;;:::i;52338:172::-;;;;;;;;;;;;;:::i;55865:235::-;;;;;;;;;;;;;:::i;65588:197::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;65588:197:0;;;;;;;;:::i;65204:209::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;65204:209:0;;;;;;;;:::i;54848:115::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54848:115:0;;:::i;38699:30::-;;;;;;;;;;;;;:::i;34696:79::-;;;;;;;;;;;;;:::i;46893:163::-;;;;;;;;;;;;;:::i;36948:33::-;;;;;;;;;;;;;:::i;58371:2714::-;;;;;;;;;;;;;;;;-1:-1:-1;58371:2714:0;;;;;;-1:-1:-1;;;;;58371:2714:0;;:::i;24975:87::-;;;;;;;;;;;;;:::i;43627:712::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;43627:712:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;37137:23::-;;;;;;;;;;;;;:::i;52022:238::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;52022:238:0;;;;;;;;;;:::i;55291:261::-;;;;;;;;;;;;;:::i;37812:24::-;;;;;;;;;;;;;:::i;51262:506::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;51262:506:0;;;;;;;;:::i;47769:371::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;47769:371:0;;;;;;;;:::i;56522:1100::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56522:1100:0;;;;;;-1:-1:-1;;;;;56522:1100:0;;:::i;39213:32::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39213:32:0;;:::i;45506:146::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45506:146:0;-1:-1:-1;;;;;45506:146:0;;:::i;61436:153::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61436:153:0;;:::i;42533:58::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42533:58:0;-1:-1:-1;;;;;42533:58:0;;:::i;46270:565::-;;;;;;;;;;;;;:::i;45894:368::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45894:368:0;-1:-1:-1;;;;;45894:368:0;;:::i;43159:20::-;;;;;;;;;;;;;:::i;48447:186::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;48447:186:0;;;;;;;;;;:::i;41786:57::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41786:57:0;-1:-1:-1;;;;;41786:57:0;;:::i;44349:374::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44349:374:0;;;;;;;;:::i;61159:203::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61159:203:0;;:::i;39085:53::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39085:53:0;-1:-1:-1;;;;;39085:53:0;;:::i;42421:52::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42421:52:0;-1:-1:-1;;;;;42421:52:0;;:::i;42693:26::-;;;;;;;;;;;;;:::i;44802:134::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44802:134:0;;:::i;55624:233::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55624:233:0;-1:-1:-1;;;;;55624:233:0;;:::i;55035:248::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55035:248:0;-1:-1:-1;;;;;55035:248:0;;:::i;41541:54::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41541:54:0;-1:-1:-1;;;;;41541:54:0;;:::i;44995:427::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44995:427:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;35641:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35641:244:0;-1:-1:-1;;;;;35641:244:0;;:::i;39027:51::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39027:51:0;-1:-1:-1;;;;;39027:51:0;;:::i;37516:35::-;;;;;;;;;;;;;:::i;37051:33::-;;;;;;;;;;;;;:::i;61736:872::-;20652:1;21258:7;;:19;;21250:63;;;;;-1:-1:-1;;;21250:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20652:1;21391:7;:18;39516:14:::1;::::0;-1:-1:-1;;;;;39516:14:0::1;39508:37:::0;39504:1069:::1;;39654:23;::::0;-1:-1:-1;;;39654:23:0;::::1;;;39650:70;;;39696:14;;;;;;;;;-1:-1:-1::0;;;;;39696:14:0::1;-1:-1:-1::0;;;;;39679:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39650:70;39741:23;::::0;-1:-1:-1;;;39741:23:0;::::1;;;39737:70;;;39783:14;;;;;;;;;-1:-1:-1::0;;;;;39783:14:0::1;-1:-1:-1::0;;;;;39766:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39737:70;39829:6;39824:239;39845:15;:22:::0;39841:26;::::1;39824:239;;;39896:18;:38;39915:15;39931:1;39915:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;39915:18:0::1;39896:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;39939:23;:43;39963:15;39979:1;39963:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;39963:18:0::1;39939:43:::0;;;::::1;::::0;;;;;;;;;::::1;;39938:44;39896:86;39892:155;;;40001:16;:36;40018:15;40034:1;40018:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40018:18:0;;::::1;40001:36:::0;;;;::::1;::::0;;;;;;;;;;;39984:63;;-1:-1:-1;;;39984:63:0;;;;40001:36;::::1;::::0;39984:61:::1;::::0;:63:::1;::::0;;::::1;::::0;40018:18;39984:63;;;;;;40018:18;40001:36;39984:63;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39892:155;39869:3;;39824:239;;;;40186:18;;40164;;40146:15;:36;:58;40142:420;;40285:11;40266:16;:14;:16::i;:::-;:30;40262:228;;;40321:50;40337:33;40354:15;;40337:12;;:16;;:33;;;;:::i;:::-;40321:15;:50::i;:::-;40262:228;;;40420:50;40436:33;40453:15;;40436:12;;:16;;:33;;;;:::i;40420:50::-;40531:15;40510:18;:36:::0;40142:420:::1;61906:14:::0;61898:56:::2;;;::::0;;-1:-1:-1;;;61898:56:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;61999:10;61986:24;::::0;;;:12:::2;:24;::::0;;;;;61973:37;::::2;;61965:70;;;::::0;;-1:-1:-1;;;61965:70:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;61965:70:0;;;;;;;;;;;;;::::2;;-1:-1:-1::0;;;;;62054:36:0;::::2;;::::0;;;:24:::2;:36;::::0;;;;;::::2;;62046:79;;;::::0;;-1:-1:-1;;;62046:79:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;62169:9;::::0;62155:10:::2;62145:21;::::0;;;:9:::2;:21;::::0;;;;;62183:12:::2;62145:33:::0;::::2;62144:51;;62136:106;;;;-1:-1:-1::0;;;62136:106:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62297:12;::::0;:27:::2;::::0;62314:9;62297:16:::2;:27::i;:::-;62282:12;:42:::0;62375:10:::2;62362:24;::::0;;;:12:::2;:24;::::0;;;;;:39:::2;::::0;62391:9;62362:28:::2;:39::i;:::-;62348:10;62335:24;::::0;;;:12:::2;:24;::::0;;;;;;;:66;;;;62446:17:::2;:29:::0;;;;:44:::2;::::0;62480:9;62446:33:::2;:44::i;:::-;62432:10;62414:29;::::0;;;:17:::2;:29;::::0;;;;;;;:76;;;;62503:9:::2;:21:::0;;;;;62527:12:::2;62503:36:::0;;62555:45;;;;;;;62414:29;;-1:-1:-1;;;;;;;;;;;62555:45:0;;;;;;;;;::::2;-1:-1:-1::0;;20608:1:0;21570:7;:22;61736:872::o;24773:83::-;24843:5;24836:12;;;;;;;;-1:-1:-1;;24836:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24810:13;;24836:12;;24843:5;;24836:12;;24843:5;24836:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24773:83;:::o;49993:304::-;50153:4;50100:7;-1:-1:-1;;;;;38058:18:0;;38050:27;;;;;;-1:-1:-1;;;;;38096:19:0;;38110:4;38096:19;;38088:28;;;;;;39516:14:::1;::::0;-1:-1:-1;;;;;39516:14:0::1;39508:37:::0;39504:1069:::1;;39654:23;::::0;-1:-1:-1;;;39654:23:0;::::1;;;39650:70;;;39696:14;;;;;;;;;-1:-1:-1::0;;;;;39696:14:0::1;-1:-1:-1::0;;;;;39679:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39650:70;39741:23;::::0;-1:-1:-1;;;39741:23:0;::::1;;;39737:70;;;39783:14;;;;;;;;;-1:-1:-1::0;;;;;39783:14:0::1;-1:-1:-1::0;;;;;39766:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39737:70;39829:6;39824:239;39845:15;:22:::0;39841:26;::::1;39824:239;;;39896:18;:38;39915:15;39931:1;39915:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;39915:18:0::1;39896:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;39939:23;:43;39963:15;39979:1;39963:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;39963:18:0::1;39939:43:::0;;;::::1;::::0;;;;;;;;;::::1;;39938:44;39896:86;39892:155;;;40001:16;:36;40018:15;40034:1;40018:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40018:18:0;;::::1;40001:36:::0;;;;::::1;::::0;;;;;;;;;;;39984:63;;-1:-1:-1;;;39984:63:0;;;;40001:36;::::1;::::0;39984:61:::1;::::0;:63:::1;::::0;;::::1;::::0;40018:18;39984:63;;;;;;40018:18;40001:36;39984:63;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39892:155;39869:3;;39824:239;;;;40186:18;;40164;;40146:15;:36;:58;40142:420;;40285:11;40266:16;:14;:16::i;:::-;:30;40262:228;;;40321:50;40337:33;40354:15;;40337:12;;:16;;:33;;;;:::i;40321:50::-;40262:228;;;40420:50;40436:33;40453:15;;40436:12;;:16;;:33;;;;:::i;40420:50::-;40531:15;40510:18;:36:::0;40142:420:::1;50187:10:::2;50175:23;::::0;;;:11:::2;:23;::::0;;;;;;;-1:-1:-1;;;;;50175:32:0;::::2;::::0;;;;;;;;;;:40;;;50231:36;;;;;;;50175:32;;50187:10;50231:36:::2;::::0;;;;;;;;;::::2;-1:-1:-1::0;50285:4:0::2;::::0;49993:304;-1:-1:-1;;;49993:304:0:o;52605:890::-;43092:5;;52704:4;;-1:-1:-1;;;;;43092:5:0;43078:10;:19;43070:61;;;;;-1:-1:-1;;;43070:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43070:61:0;;;;;;;;;;;;;;;52734:9;52726:56:::1;;;;-1:-1:-1::0;;;52726:56:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52795:18;:25:::0;;;52874:6:::1;52869:292;52890:15;:22:::0;52886:26;::::1;52869:292;;;52937:18;:38;52956:15;52972:1;52956:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;52956:18:0::1;52937:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;52980:23;:43;53004:15;53020:1;53004:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;53004:18:0::1;52980:43:::0;;;::::1;::::0;;;;;;;;;::::1;;52979:44;52937:86;:135;;;;;53027:25;:45;53053:15;53069:1;53053:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;53053:18:0::1;53027:45:::0;;;::::1;::::0;;;;;;;;;::::1;;52937:135;52933:216;;;53091:16;:36;53108:15;53124:1;53108:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;53108:18:0;;::::1;53091:36:::0;;;;::::1;::::0;;;;;;;;;;;53074:75;;-1:-1:-1;;;53074:75:0;;::::1;::::0;::::1;::::0;;;;;53091:36;::::1;::::0;53074:69:::1;::::0;:75;;;;;53108:18;53074:75;;;;;;53108:18;53091:36;53074:75;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52933:216;52914:3;;52869:292;;;-1:-1:-1::0;53177:23:0::1;::::0;-1:-1:-1;;;53177:23:0;::::1;;;53173:82;;;53219:14;::::0;53202:53:::1;::::0;;-1:-1:-1;;;53202:53:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;53219:14:0;;::::1;::::0;53202:47:::1;::::0;:53;;;;;53219:14:::1;::::0;53202:53;;;;;;;;53219:14;;53202:53;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53173:82;53272:23;::::0;-1:-1:-1;;;53272:23:0;::::1;;;53268:82;;;53314:14;::::0;53297:53:::1;::::0;;-1:-1:-1;;;53297:53:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;53314:14:0;;::::1;::::0;53297:47:::1;::::0;:53;;;;;53314:14:::1;::::0;53297:53;;;;;;;;53314:14;;53297:53;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53268:82;53438:27;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;-1:-1:-1::0;53483:4:0::1;43142:1;52605:890:::0;;;:::o;38801:27::-;;;;:::o;37453:29::-;;;-1:-1:-1;;;;;37453:29:0;;:::o;36779:32::-;;;;:::o;38510:18::-;;;-1:-1:-1;;;;;38510:18:0;;:::o;42664:22::-;;;;:::o;37208:31::-;;;;:::o;47126:141::-;47247:12;;47126:141;:::o;57630:601::-;57745:7;;57787:14;57779:51;;;;;-1:-1:-1;;;57779:51:0;;;;;;;;;;;;-1:-1:-1;;;57779:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;57849:36:0;;;;;;:24;:36;;;;;;;;57841:79;;;;;-1:-1:-1;;;57841:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;58038:30:0;;57933:24;58038:30;;;:18;:30;;;;;;57988:11;;57960:129;;58074:14;;57960:109;;58074:2;58032:36;;57960:67;;57974:52;;58005:20;;57960:109;;57974:9;;:13;:26::i;:::-;:30;;:52::i;:::-;57960:9;;:13;:67::i;:::-;:71;;:109::i;:129::-;57933:156;;58119:63;58153:28;58170:10;58153:16;:28::i;:::-;58119:29;:16;58140:7;58119:20;:29::i;:63::-;58100:82;-1:-1:-1;58221:1:0;;-1:-1:-1;;57630:601:0;;;;;;:::o;66352:647::-;43092:5;;66485:12;;-1:-1:-1;;;;;43092:5:0;43078:10;:19;43070:61;;;;;-1:-1:-1;;;43070:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43070:61:0;;;;;;;;;;;;;;;66510:21:::1;66554:9;66548:23;66575:1;66548:28;66544:179;;;-1:-1:-1::0;66604:4:0;66544:179:::1;;;66692:9;66676:27;;;;;;66706:4;66652:59;;;;;;-1:-1:-1::0;;;;;66652:59:0::1;;;;;;;;;;;;;;;;;;;;;;::::0;;;;-1:-1:-1;;66652:59:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66641:70;;66544:179;66796:12;66810:23;66837:6;-1:-1:-1::0;;;;;66837:11:0::1;66855:5;66862:8;66837:34;;;;;;;;;;;;;;;;;;;::::0;;;;-1:-1:-1;;66837:34:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66795:76;;;;66890:7;66882:79;;;;-1:-1:-1::0;;;66882:79:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66981:10:::0;-1:-1:-1;;;43142:1:0::1;66352:647:::0;;;;;;:::o;48895:456::-;49064:4;49016:2;-1:-1:-1;;;;;38058:18:0;;38050:27;;;;;;-1:-1:-1;;;;;38096:19:0;;38110:4;38096:19;;38088:28;;;;;;39516:14:::1;::::0;-1:-1:-1;;;;;39516:14:0::1;39508:37:::0;39504:1069:::1;;39654:23;::::0;-1:-1:-1;;;39654:23:0;::::1;;;39650:70;;;39696:14;;;;;;;;;-1:-1:-1::0;;;;;39696:14:0::1;-1:-1:-1::0;;;;;39679:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39650:70;39741:23;::::0;-1:-1:-1;;;39741:23:0;::::1;;;39737:70;;;39783:14;;;;;;;;;-1:-1:-1::0;;;;;39783:14:0::1;-1:-1:-1::0;;;;;39766:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39737:70;39829:6;39824:239;39845:15;:22:::0;39841:26;::::1;39824:239;;;39896:18;:38;39915:15;39931:1;39915:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;39915:18:0::1;39896:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;39939:23;:43;39963:15;39979:1;39963:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;39963:18:0::1;39939:43:::0;;;::::1;::::0;;;;;;;;;::::1;;39938:44;39896:86;39892:155;;;40001:16;:36;40018:15;40034:1;40018:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40018:18:0;;::::1;40001:36:::0;;;;::::1;::::0;;;;;;;;;;;39984:63;;-1:-1:-1;;;39984:63:0;;;;40001:36;::::1;::::0;39984:61:::1;::::0;:63:::1;::::0;;::::1;::::0;40018:18;39984:63;;;;;;40018:18;40001:36;39984:63;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39892:155;39869:3;;39824:239;;;;40186:18;;40164;;40146:15;:36;:58;40142:420;;40285:11;40266:16;:14;:16::i;:::-;:30;40262:228;;;40321:50;40337:33;40354:15;;40337:12;;:16;;:33;;;;:::i;40321:50::-;40262:228;;;40420:50;40436:33;40453:15;;40436:12;;:16;;:33;;;;:::i;40420:50::-;40531:15;40510:18;:36:::0;40142:420:::1;-1:-1:-1::0;;;;;49118:17:0;::::2;;::::0;;;:11:::2;:17;::::0;;;;;;;49136:10:::2;49118:29:::0;;;;;;;;:40:::2;::::0;49152:5;49118:33:::2;:40::i;:::-;-1:-1:-1::0;;;;;49086:17:0;::::2;;::::0;;;:11:::2;:17;::::0;;;;;;;49104:10:::2;49086:29:::0;;;;;;;:72;;;;49192:18;;;:12:::2;:18:::0;;;;;:29:::2;::::0;49215:5;49192:22:::2;:29::i;:::-;-1:-1:-1::0;;;;;49171:18:0;;::::2;;::::0;;;:12:::2;:18;::::0;;;;;:50;;;;49251:16;;::::2;::::0;;;;:27:::2;::::0;49272:5;49251:20:::2;:27::i;:::-;-1:-1:-1::0;;;;;49232:16:0;;::::2;;::::0;;;:12:::2;:16;::::0;;;;;;;;:46;;;;49294:25;;;;;;;49232:16;;49294:25;;::::2;::::0;-1:-1:-1;;;;;;;;;;;49294:25:0;;;;;;;::::2;-1:-1:-1::0;49339:4:0::2;::::0;48895:456;-1:-1:-1;;;;48895:456:0:o;37773:32::-;;;;:::o;38582:25::-;;;-1:-1:-1;;;;;38582:25:0;;:::o;25700:83::-;25766:9;;;;25700:83;:::o;54627:213::-;43092:5;;-1:-1:-1;;;;;43092:5:0;43078:10;:19;43070:61;;;;;-1:-1:-1;;;43070:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43070:61:0;;;;;;;;;;;;;;;54725:17:::1;:24:::0;;;54784:12:::1;::::0;54764:32;::::1;54760:72;;;54798:34;54814:17;;54798:15;:34::i;:::-;54627:213:::0;:::o;50670:330::-;50855:10;50786:4;50843:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;50843:32:0;;;;;;;;;;:48;;50880:10;50843:36;:48::i;:::-;50820:10;50808:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;50808:32:0;;;;;;;;;;;;:83;;;50907:63;;;;;;50808:32;;50907:63;;;;;;;;;;;-1:-1:-1;50988:4:0;50670:330;;;;;:::o;51776:238::-;43092:5;;51890:4;;-1:-1:-1;;;;;43092:5:0;43078:10;:19;43070:61;;;;;-1:-1:-1;;;43070:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43070:61:0;;;;;;;;;;;;;;;-1:-1:-1;51912:14:0::1;:24:::0;;-1:-1:-1;;;;;;51912:24:0::1;-1:-1:-1::0;;;;;51912:24:0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;51947:35:0::1;-1:-1:-1::0;;;51947:35:0;::::1;;::::0;;;::::1;;::::0;;-1:-1:-1;;51776:238:0:o;41665:56::-;;;;;;;;;;;;;;;:::o;43186:27::-;;;-1:-1:-1;;;;;43186:27:0;;:::o;38441:26::-;;;-1:-1:-1;;;;;38441:26:0;;:::o;37297:29::-;;;-1:-1:-1;;;;;37297:29:0;;:::o;63185:1474::-;20652:1;21258:7;;:19;;21250:63;;;;;-1:-1:-1;;;21250:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20652:1;21391:7;:18;39516:14:::1;::::0;-1:-1:-1;;;;;39516:14:0::1;39508:37:::0;39504:1069:::1;;39654:23;::::0;-1:-1:-1;;;39654:23:0;::::1;;;39650:70;;;39696:14;;;;;;;;;-1:-1:-1::0;;;;;39696:14:0::1;-1:-1:-1::0;;;;;39679:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39650:70;39741:23;::::0;-1:-1:-1;;;39741:23:0;::::1;;;39737:70;;;39783:14;;;;;;;;;-1:-1:-1::0;;;;;39783:14:0::1;-1:-1:-1::0;;;;;39766:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39737:70;39829:6;39824:239;39845:15;:22:::0;39841:26;::::1;39824:239;;;39896:18;:38;39915:15;39931:1;39915:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;39915:18:0::1;39896:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;39939:23;:43;39963:15;39979:1;39963:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;39963:18:0::1;39939:43:::0;;;::::1;::::0;;;;;;;;;::::1;;39938:44;39896:86;39892:155;;;40001:16;:36;40018:15;40034:1;40018:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40018:18:0;;::::1;40001:36:::0;;;;::::1;::::0;;;;;;;;;;;39984:63;;-1:-1:-1;;;39984:63:0;;;;40001:36;::::1;::::0;39984:61:::1;::::0;:63:::1;::::0;;::::1;::::0;40018:18;39984:63;;;;;;40018:18;40001:36;39984:63;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39892:155;39869:3;;39824:239;;;;40186:18;;40164;;40146:15;:36;:58;40142:420;;40285:11;40266:16;:14;:16::i;:::-;:30;40262:228;;;40321:50;40337:33;40354:15;;40337:12;;:16;;:33;;;;:::i;40321:50::-;40262:228;;;40420:50;40436:33;40453:15;;40436:12;;:16;;:33;;;;:::i;40420:50::-;40531:15;40510:18;:36:::0;40142:420:::1;-1:-1:-1::0;;;;;63332:36:0;::::2;;::::0;;;:24:::2;:36;::::0;;;;;::::2;;63324:79;;;::::0;;-1:-1:-1;;;63324:79:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;63447:9;::::0;63433:10:::2;63423:21;::::0;;;:9:::2;:21;::::0;;;;;63461:12:::2;63423:33:::0;::::2;63422:51;;63414:106;;;;-1:-1:-1::0;;;63414:106:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63571:10;63533:17;63553:29:::0;;;:17:::2;:29;::::0;;;;;63601:14;63593:56:::2;;;::::0;;-1:-1:-1;;;63593:56:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;63678:9;63668:6;:19;;63660:61;;;::::0;;-1:-1:-1;;;63660:61:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;63784:10;63766:29;::::0;;;:17:::2;:29;::::0;;;;;:41:::2;::::0;63800:6;63766:33:::2;:41::i;:::-;63752:10;63734:29;::::0;;;:17:::2;:29;::::0;;;;;;;:73;;;;-1:-1:-1;;;;;63990:30:0;::::2;::::0;;:18:::2;:30:::0;;;;;;63940:11:::2;::::0;63918:123:::2;::::0;64026:14;;63918:103:::2;::::0;64026:2:::2;63984:36;::::0;63918:61:::2;::::0;63929:49:::2;::::0;63957:20;;63918:103;;63929:6;;:10:::2;:23::i;:49::-;63918:6:::0;;:10:::2;:61::i;:123::-;63891:150;;64071:63;64105:28;64122:10;64105:16;:28::i;64071:63::-;64052:82;;64147:22;64317:10;-1:-1:-1::0;;;;;64310:28:0::2;;64347:4;64310:43;;;;;;;;;;;;;-1:-1:-1::0;;;;;64310:43:0::2;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;64310:43:0;64290:63;::::2;;64282:133;;;;-1:-1:-1::0;;;64282:133:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64428:72;64458:10;64471;64483:16;64428:22;:72::i;:::-;64523:10;64513:21;::::0;;;:9:::2;:21;::::0;;;;;;;;64537:12:::2;64513:36:::0;;64576:8:::2;::::0;64567:84;;-1:-1:-1;;;;;64576:8:0;;::::2;64567:84:::0;;;;::::2;::::0;;;;;;::::2;::::0;;;;;;;;;;;;;;;;;;;;;;;::::2;::::0;;;;;;;::::2;-1:-1:-1::0;;20608:1:0;21570:7;:22;-1:-1:-1;;;63185:1474:0:o;37370:35::-;;;-1:-1:-1;;;37370:35:0;;;;;:::o;45686:156::-;-1:-1:-1;;;;;45810:24:0;45778:7;45810:24;;;:17;:24;;;;;;;45686:156::o;47388:155::-;-1:-1:-1;;;;;47518:17:0;47486:7;47518:17;;;:12;:17;;;;;;;47388:155::o;35338:148::-;34918:12;:10;:12::i;:::-;34908:6;;;;;-1:-1:-1;;;;;34908:6:0;;;:22;;;34900:67;;;;;-1:-1:-1;;;34900:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35429:6:::1;::::0;35408:40:::1;::::0;35445:1:::1;::::0;35429:6:::1;::::0;::::1;-1:-1:-1::0;;;;;35429:6:0::1;::::0;35408:40:::1;::::0;35445:1;;35408:40:::1;35459:6;:19:::0;;-1:-1:-1;;;;;;35459:19:0::1;::::0;;35338:148::o;54406:213::-;43092:5;;-1:-1:-1;;;;;43092:5:0;43078:10;:19;43070:61;;;;;-1:-1:-1;;;43070:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43070:61:0;;;;;;;;;;;;;;;54504:17:::1;:24:::0;;;54563:12:::1;::::0;54543:32;::::1;54539:72;;;54577:34;54593:17;;54577:15;:34::i;52338:172::-:0;52461:14;;52444:49;;;-1:-1:-1;;;52444:49:0;;;;52412:7;;-1:-1:-1;;;;;52461:14:0;;52444:47;;:49;;;;;;;;;;;;;;52461:14;52444:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52444:49:0;;-1:-1:-1;52338:172:0;:::o;55865:235::-;55942:10;;-1:-1:-1;;;;;55942:10:0;55928;:24;55920:45;;;;;-1:-1:-1;;;55920:45:0;;;;;;;;;;;;-1:-1:-1;;;55920:45:0;;;;;;;;;;;;;;;55993:3;;;56013:10;;;-1:-1:-1;;;;;;56007:16:0;;;-1:-1:-1;;;;;56013:10:0;;;56007:16;;;;;;;;56034:23;;;;;56073:19;;;55993:3;;;56073:19;;;56088:3;;;;56073:19;;;;;;;;;;;;;;;;55865:235;:::o;65588:197::-;43092:5;;-1:-1:-1;;;;;43092:5:0;43078:10;:19;43070:61;;;;;-1:-1:-1;;;43070:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43070:61:0;;;;;;;;;;;;;;;65749:8:::1;::::0;65719:58:::1;::::0;-1:-1:-1;;;;;65749:8:0::1;65760::::0;65770:6;65719:22:::1;:58::i;:::-;65588:197:::0;;:::o;65204:209::-;43092:5;;-1:-1:-1;;;;;43092:5:0;43078:10;:19;43070:61;;;;;-1:-1:-1;;;43070:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43070:61:0;;;;;;;;;;;;;;;65342:12:::1;::::0;;65304::::1;65342::::0;;;::::1;::::0;::::1;::::0;;;-1:-1:-1;;;;;65321:7:0;::::1;::::0;65335:5;;65321:34:::1;;;;;;;;;;;;;;;;;;;::::0;;;;-1:-1:-1;;65321:34:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65303:52;;;65374:7;65366:39;;;::::0;;-1:-1:-1;;;65366:39:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;65366:39:0;;;;;;;;;;;;;::::1;;43142:1;65204:209:::0;;:::o;54848:115::-;43092:5;;-1:-1:-1;;;;;43092:5:0;43078:10;:19;43070:61;;;;;-1:-1:-1;;;43070:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43070:61:0;;;;;;;;;;;;;;;54939:9:::1;:16:::0;54848:115::o;38699:30::-;;;;:::o;34696:79::-;34761:6;;;;;-1:-1:-1;;;;;34761:6:0;;34696:79::o;46893:163::-;47016:14;;46999:49;;;-1:-1:-1;;;46999:49:0;;;;46967:7;;-1:-1:-1;;;;;47016:14:0;;46999:47;;:49;;;;;;;;;;;;;;47016:14;46999:49;;;;;;;;;;36948:33;;;;:::o;58371:2714::-;20652:1;21258:7;;:19;;21250:63;;;;;-1:-1:-1;;;21250:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20652:1;21391:7;:18;-1:-1:-1;;;;;58528:30:0;::::1;;::::0;;;:18:::1;:30;::::0;;;;;::::1;;58520:73;;;::::0;;-1:-1:-1;;;58520:73:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;58612:14:::0;58604:52:::1;;;::::0;;-1:-1:-1;;;58604:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;58749:9;::::0;58735:10:::1;58725:21;::::0;;;:9:::1;:21;::::0;;;;;58763:12:::1;58725:33:::0;::::1;58724:51;;58716:111;;;;-1:-1:-1::0;;;58716:111:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58888:24;58914:22:::0;58940:40:::1;58958:9;58969:10;58940:17;:40::i;:::-;58887:93;;;;59026:10;-1:-1:-1::0;;;;;59019:28:0::1;;59048:10;59019:40;;;;;;;;;;;;;-1:-1:-1::0;;;;;59019:40:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;59019:40:0;58999:60;::::1;;58991:115;;;;-1:-1:-1::0;;;58991:115:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59227:11;::::0;59215:8:::1;::::0;59174:18:::1;::::0;-1:-1:-1;;;;;59215:8:0;;::::1;59227:11:::0;::::1;59215:23;:82:::0;::::1;;;-1:-1:-1::0;59249:8:0::1;::::0;59242:38:::1;::::0;;-1:-1:-1;;;59242:38:0;;59269:10:::1;59242:38;::::0;::::1;::::0;;;59283:14;;-1:-1:-1;;;;;59249:8:0::1;::::0;59242:26:::1;::::0;:38;;;;;::::1;::::0;;;;;;;;59249:8;59242:38;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;59242:38:0;:55:::1;59215:82;59211:814;;;59376:9;59353:10;59345:27;:40;::::0;::::1;::::0;:71:::1;;;59402:14;59389:9;:27;;59345:71;59341:673;;;59473:8;::::0;59466:41:::1;::::0;;-1:-1:-1;;;59466:41:0;;59501:4:::1;59466:41;::::0;::::1;::::0;;;59437:26:::1;::::0;-1:-1:-1;;;;;59473:8:0::1;::::0;59466:26:::1;::::0;:41;;;;;::::1;::::0;;;;;;;;59473:8;59466:41;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;59466:41:0;59532:11:::1;::::0;59526:46:::1;::::0;;-1:-1:-1;;;59526:46:0;;;;59466:41;;-1:-1:-1;;;;;;59532:11:0;;::::1;::::0;59526:26:::1;::::0;59560:9:::1;::::0;59526:46:::1;::::0;;::::1;::::0;59532:11:::1;::::0;59526:46;;;;;;;59560:9;59532:11;59526:46;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;59644:33;59667:9;59644:18;:22;;:33;;;;:::i;:::-;59606:8;::::0;59599:41:::1;::::0;;-1:-1:-1;;;59599:41:0;;59634:4:::1;59599:41;::::0;::::1;::::0;;;-1:-1:-1;;;;;59606:8:0;;::::1;::::0;59599:26:::1;::::0;:41;;;;;::::1;::::0;;;;;;;;;59606:8;59599:41;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;59599:41:0;:78:::1;59591:121;;;::::0;;-1:-1:-1;;;59591:121:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;59744:11;::::0;-1:-1:-1;;;;;59744:11:0::1;59738:27;59766:10;59778:29;:9;59792:14:::0;59778:13:::1;:29::i;:::-;59738:70;;;;;;;;;;;;;-1:-1:-1::0;;;;;59738:70:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;59738:70:0;59731:78:::1;;;;59844:4;59828:20;;59341:673;;;;59922:8;::::0;59915:38:::1;::::0;;-1:-1:-1;;;59915:38:0;;59942:10:::1;59915:38;::::0;::::1;::::0;;;-1:-1:-1;;;;;59922:8:0;;::::1;::::0;59915:26:::1;::::0;:38;;;;;::::1;::::0;;;;;;;;;59922:8;59915:38;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;59915:38:0;59897:56;::::1;;59889:109;;;;-1:-1:-1::0;;;59889:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60083:91;60117:10;60130;60150:4;60157:16;60083:26;:91::i;:::-;60190:13;60185:278;;60254:8;::::0;60220:87:::1;::::0;-1:-1:-1;;;;;60254:8:0::1;60265:10;60285:4;60292:14:::0;60220:26:::1;:87::i;:::-;60384:12;::::0;;60325::::1;60384::::0;;;::::1;::::0;::::1;::::0;;;60350:10:::1;::::0;60373:9:::1;::::0;60342:55:::1;;;;;;;;;;;;;;;;;;;::::0;;;;-1:-1:-1;;60342:55:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60324:73;;;60420:7;60412:39;;;::::0;;-1:-1:-1;;;60412:39:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;60412:39:0;;;;;;;;;;;;;::::1;;60185:278;;60515:7;::::0;60487:63:::1;::::0;60501:48:::1;::::0;60528:20;;60501:22:::1;::::0;:9;;:13:::1;:22::i;:48::-;60487:9:::0;;:13:::1;:63::i;:::-;-1:-1:-1::0;;;;;60646:29:0;::::1;;::::0;;;:17:::1;:29;::::0;;;;;60475:75;;-1:-1:-1;60618:85:0::1;::::0;60632:70:::1;::::0;60681:20;;60632:44:::1;::::0;60475:75;;60632:13:::1;:44::i;60618:85::-;60760:12;::::0;60606:97;;-1:-1:-1;60760:27:0::1;::::0;60606:97;60760:16:::1;:27::i;:::-;60745:12;:42:::0;60838:10:::1;60825:24;::::0;;;:12:::1;:24;::::0;;;;;:39:::1;::::0;60854:9;60825:28:::1;:39::i;:::-;60811:10;60798:24;::::0;;;:12:::1;:24;::::0;;;;;;;:66;;;;60882:45;;;;;;;60811:10;;60798:24;;-1:-1:-1;;;;;;;;;;;60882:45:0;;;;;;;;::::1;60950:10;60940:21;::::0;;;:9:::1;:21;::::0;;;;;;;;60964:12:::1;60940:36:::0;;60999:8:::1;::::0;60994:83;;-1:-1:-1;;;;;60999:8:0;;::::1;60994:83:::0;;;;::::1;::::0;;;;;;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;20608:1:0;21570:7;:22;-1:-1:-1;;;58371:2714:0:o;24975:87::-;25047:7;25040:14;;;;;;;;-1:-1:-1;;25040:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25014:13;;25040:14;;25047:7;;25040:14;;25047:7;25040:14;;;;;;;;;;;;;;;;;;;;;;;;43627:712;43092:5;;-1:-1:-1;;;;;43092:5:0;43078:10;:19;43070:61;;;;;-1:-1:-1;;;43070:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43070:61:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;43859:37:0;::::1;;::::0;;;:24:::1;:37;::::0;;;;;::::1;;43854:77;;43898:15;:33:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;43898:33:0;;;;;::::1;::::0;;-1:-1:-1;;;;;;43898:33:0::1;-1:-1:-1::0;;;;;43898:33:0;::::1;;::::0;;43854:77:::1;-1:-1:-1::0;;;;;43944:37:0;;::::1;;::::0;;;:24:::1;:37;::::0;;;;;;;:44;;43984:4:::1;-1:-1:-1::0;;43944:44:0;;::::1;::::0;::::1;::::0;;;43999:18:::1;:31:::0;;;;;:38;;;::::1;::::0;;::::1;::::0;;;44048:23:::1;:36:::0;;;;;:52;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;;44111:18:::1;:31:::0;;;;;:52;;;;44174:16:::1;:29:::0;;;;;:46;;-1:-1:-1;;;;;;44174:46:0::1;::::0;;;::::1;::::0;;;::::1;::::0;;;44231:17:::1;:30:::0;;;;;:34;;;44276:38;;;;;;;:55;;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;43627:712::o;37137:23::-;;;-1:-1:-1;;;;;37137:23:0;;:::o;52022:238::-;43092:5;;52136:4;;-1:-1:-1;;;;;43092:5:0;43078:10;:19;43070:61;;;;;-1:-1:-1;;;43070:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43070:61:0;;;;;;;;;;;;;;;-1:-1:-1;52158:14:0::1;:24:::0;;-1:-1:-1;;;;;;52158:24:0::1;-1:-1:-1::0;;;;;52158:24:0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;52193:35:0::1;-1:-1:-1::0;;;52193:35:0;::::1;;::::0;;;::::1;;::::0;;-1:-1:-1;;52022:238:0:o;55291:261::-;55370:12;;-1:-1:-1;;;;;55370:12:0;55356:10;:26;55348:47;;;;;-1:-1:-1;;;55348:47:0;;;;;;;;;;;;-1:-1:-1;;;55348:47:0;;;;;;;;;;;;;;;55425:5;;;55457:12;;;-1:-1:-1;;;;;;55449:20:0;;;-1:-1:-1;;;;;55457:12:0;;;55449:20;;;;;;;;55480:25;;;;;55521:23;;;55425:5;;;55521:23;;;55538:5;;;;55521:23;;;;;;;;;;;;;;;;55291:261;:::o;37812:24::-;;;;:::o;51262:506::-;51436:10;51383:4;51424:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;51424:32:0;;;;;;;;;;51471:27;;;51467:193;;51527:10;51550:1;51515:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;51515:32:0;;;;;;;;;:36;51467:193;;;51619:29;:8;51632:15;51619:12;:29::i;:::-;51596:10;51584:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;51584:32:0;;;;;;;;;:64;51467:193;51684:10;51705:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;51675:63:0;;51705:32;;;;;;;;;;;51675:63;;;;;;;;;51684:10;51675:63;;;;;;;;;;;-1:-1:-1;51756:4:0;;51262:506;-1:-1:-1;;;51262:506:0:o;47769:371::-;47920:4;47872:2;-1:-1:-1;;;;;38058:18:0;;38050:27;;;;;;-1:-1:-1;;;;;38096:19:0;;38110:4;38096:19;;38088:28;;;;;;39516:14:::1;::::0;-1:-1:-1;;;;;39516:14:0::1;39508:37:::0;39504:1069:::1;;39654:23;::::0;-1:-1:-1;;;39654:23:0;::::1;;;39650:70;;;39696:14;;;;;;;;;-1:-1:-1::0;;;;;39696:14:0::1;-1:-1:-1::0;;;;;39679:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39650:70;39741:23;::::0;-1:-1:-1;;;39741:23:0;::::1;;;39737:70;;;39783:14;;;;;;;;;-1:-1:-1::0;;;;;39783:14:0::1;-1:-1:-1::0;;;;;39766:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39737:70;39829:6;39824:239;39845:15;:22:::0;39841:26;::::1;39824:239;;;39896:18;:38;39915:15;39931:1;39915:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;39915:18:0::1;39896:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;39939:23;:43;39963:15;39979:1;39963:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;39963:18:0::1;39939:43:::0;;;::::1;::::0;;;;;;;;;::::1;;39938:44;39896:86;39892:155;;;40001:16;:36;40018:15;40034:1;40018:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40018:18:0;;::::1;40001:36:::0;;;;::::1;::::0;;;;;;;;;;;39984:63;;-1:-1:-1;;;39984:63:0;;;;40001:36;::::1;::::0;39984:61:::1;::::0;:63:::1;::::0;;::::1;::::0;40018:18;39984:63;;;;;;40018:18;40001:36;39984:63;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39892:155;39869:3;;39824:239;;;;40186:18;;40164;;40146:15;:36;:58;40142:420;;40285:11;40266:16;:14;:16::i;:::-;:30;40262:228;;;40321:50;40337:33;40354:15;;40337:12;;:16;;:33;;;;:::i;40321:50::-;40262:228;;;40420:50;40436:33;40453:15;;40436:12;;:16;;:33;;;;:::i;40420:50::-;40531:15;40510:18;:36:::0;40142:420:::1;47982:10:::2;47969:24;::::0;;;:12:::2;:24;::::0;;;;;:35:::2;::::0;47998:5;47969:28:::2;:35::i;:::-;47955:10;47942:24;::::0;;;:12:::2;:24;::::0;;;;;:62;;;;-1:-1:-1;;;;;48034:16:0;::::2;::::0;;;;:27:::2;::::0;48055:5;48034:20:::2;:27::i;:::-;-1:-1:-1::0;;;;;48015:16:0;::::2;;::::0;;;:12:::2;:16;::::0;;;;;;;;:46;;;;48077:31;;;;;;;48015:16;;48086:10:::2;::::0;-1:-1:-1;;;;;;;;;;;48077:31:0;;;;;;;;::::2;-1:-1:-1::0;48128:4:0::2;::::0;47769:371;-1:-1:-1;;;47769:371:0:o;56522:1100::-;56636:7;;56678:14;56670:51;;;;;-1:-1:-1;;;56670:51:0;;;;;;;;;;;;-1:-1:-1;;;56670:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;56740:30:0;;;;;;:18;:30;;;;;;;;56732:73;;;;;-1:-1:-1;;;56732:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;56873:24;56900:112;36940:1;56997:2;:14;56900:92;56961:18;:30;56980:10;-1:-1:-1;;;;;56961:30:0;-1:-1:-1;;;;;56961:30:0;;;;;;;;;;;;;56955:2;:36;56900:50;56932:17;;56900:27;56914:12;;56900:9;:13;;:27;;;;:::i;:112::-;56873:139;;57042:63;57076:28;57093:10;57076:16;:28::i;57042:63::-;57130:14;;57023:82;;-1:-1:-1;;;;;;57130:14:0;57118:71;;57169:16;-1:-1:-1;57187:1:0;;-1:-1:-1;57161:28:0;;57118:71;57202:19;57224:16;:14;:16::i;:::-;57202:38;;57268:37;57308:73;57363:17;;57308:50;57322:35;57344:12;;57322:17;;:21;;:35;;;;:::i;:::-;57308:9;;:13;:50::i;:73::-;57268:113;;57394:22;57419:107;36940:1;57511:2;:14;57419:87;57489:16;;57483:2;:22;57419:59;57466:11;57419:42;57453:7;57419:29;:33;;:42;;;;:::i;:107::-;57581:16;;;;-1:-1:-1;56522:1100:0;;-1:-1:-1;;;;;;56522:1100:0:o;39213:32::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39213:32:0;;-1:-1:-1;39213:32:0;:::o;45506:146::-;43092:5;;-1:-1:-1;;;;;43092:5:0;43078:10;:19;43070:61;;;;;-1:-1:-1;;;43070:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43070:61:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;45605:31:0::1;45639:5;45605:31:::0;;;:18:::1;:31;::::0;;;;:39;;-1:-1:-1;;45605:39:0::1;::::0;;45506:146::o;61436:153::-;41348:3;;-1:-1:-1;;;;;41348:3:0;41334:10;:17;41326:58;;;;;-1:-1:-1;;;41326:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;61530:11:::1;:18:::0;;;61564:17:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;61436:153:::0;:::o;42533:58::-;;;;;;;;;;;;;;;:::o;46270:565::-;46324:7;;;46387:405;46408:15;:22;46404:26;;46387:405;;;46524:1;-1:-1:-1;;;;;46494:32:0;:15;46510:1;46494:18;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46494:18:0;:32;46490:289;;46568:169;46729:7;46568:156;46687:36;46704:15;46720:1;46704:18;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46704:18:0;46687:16;:36::i;:::-;46568:114;46643:18;:38;46662:15;46678:1;46662:18;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46662:18:0;-1:-1:-1;;;;;46643:38:0;-1:-1:-1;;;;;46643:38:0;;;;;;;;;;;;;46637:2;:44;46568:64;46624:7;46575:15;46591:1;46575:18;;;;;;;;;;;;;;;;;;;46568:51;;;-1:-1:-1;;;46568:51:0;;46613:4;46568:51;;;;;;-1:-1:-1;;;;;46575:18:0;;;;46568:36;;:51;;;;;;;;;;46575:18;46568:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46568:51:0;;:55;:64::i;:169::-;46546:191;;;;46490:289;46432:3;;46387:405;;;-1:-1:-1;46809:18:0;-1:-1:-1;46270:565:0;:::o;45894:368::-;-1:-1:-1;;;;;45990:37:0;;45962:7;45990:37;;;:24;:37;;;;;;;;45982:80;;;;;-1:-1:-1;;;45982:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46079:36:0;;;;;;:23;:36;;;;;;;;46075:87;;;46133:11;-1:-1:-1;;;;;46124:36:0;;:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46124:38:0;;-1:-1:-1;46117:45:0;;46075:87;-1:-1:-1;;;;;46207:29:0;;;;;;;:16;:29;;;;;;;;;;46190:64;;-1:-1:-1;;;46190:64:0;;;;46207:29;;;46190:62;;:64;;;;;46207:29;46190:64;;;;;;46207:29;46190:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46190:64:0;;45894:368;-1:-1:-1;;45894:368:0:o;43159:20::-;;;-1:-1:-1;;;;;43159:20:0;;:::o;48447:186::-;-1:-1:-1;;;;;48597:19:0;;;48565:7;48597:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;48447:186::o;41786:57::-;;;;;;;;;;;;;;;:::o;44349:374::-;43092:5;;-1:-1:-1;;;;;43092:5:0;43078:10;:19;43070:61;;;;;-1:-1:-1;;;43070:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43070:61:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;44474:31:0;::::1;;::::0;;;:18:::1;:31;::::0;;;;;::::1;;44466:62;;;::::0;;-1:-1:-1;;;44466:62:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44466:62:0;;;;;;;;;;;;;::::1;;44555:13;44547:4;:21;;44539:51;;;::::0;;-1:-1:-1;;;44539:51:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44539:51:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;44630:30:0;::::1;;::::0;;;:17:::1;:30;::::0;;;;;;;;;44606:61;;;;;;;::::1;::::0;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;;;;44678:30:0;;::::1;;::::0;;;:17:::1;:30;::::0;;;;:37;44349:374::o;61159:203::-;41348:3;;-1:-1:-1;;;;;41348:3:0;41334:10;:17;41326:58;;;;;-1:-1:-1;;;41326:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;61265:13:::1;61257:4;:21;;61249:51;;;::::0;;-1:-1:-1;;;61249:51:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;61249:51:0;;;;;;;;;;;;;::::1;;61311:7;:14:::0;;;61341:13:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;61159:203:::0;:::o;39085:53::-;;;;;;;;;;;;;:::o;42421:52::-;;;;;;;;;;;;-1:-1:-1;;;;;42421:52:0;;:::o;42693:26::-;;;;:::o;44802:134::-;43092:5;;-1:-1:-1;;;;;43092:5:0;43078:10;:19;43070:61;;;;;-1:-1:-1;;;43070:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43070:61:0;;;;;;;;;;;;;;;44901:15:::1;:27:::0;44802:134::o;55624:233::-;41348:3;;-1:-1:-1;;;;;41348:3:0;41334:10;:17;41326:58;;;;;-1:-1:-1;;;41326:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;55747:10:::1;::::0;;-1:-1:-1;;;;;55768:24:0;;::::1;-1:-1:-1::0;;;;;;55768:24:0;::::1;::::0;::::1;::::0;;;55808:41:::1;::::0;;55747:10;;;::::1;55808:41:::0;;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;;;;;;;;;::::1;41395:1;55624:233:::0;:::o;55035:248::-;43092:5;;-1:-1:-1;;;;;43092:5:0;43078:10;:19;43070:61;;;;;-1:-1:-1;;;43070:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43070:61:0;;;;;;;;;;;;;;;55161:12:::1;::::0;;-1:-1:-1;;;;;55184:28:0;;::::1;-1:-1:-1::0;;;;;;55184:28:0;::::1;::::0;::::1;::::0;;;55228:47:::1;::::0;;55161:12;;;::::1;55228:47:::0;;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;;;;;;;;;::::1;43142:1;55035:248:::0;:::o;41541:54::-;;;;;;;;;;;;;:::o;44995:427::-;43092:5;;-1:-1:-1;;;;;43092:5:0;43078:10;:19;43070:61;;;;;-1:-1:-1;;;43070:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43070:61:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;45172:31:0;::::1;;::::0;;;:18:::1;:31;::::0;;;;;::::1;;45164:62;;;::::0;;-1:-1:-1;;;45164:62:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;45164:62:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;45237:36:0;;::::1;;::::0;;;:23:::1;:36;::::0;;;;;;;:53;;;::::1;;-1:-1:-1::0;;45237:53:0;;::::1;;::::0;;45301:16:::1;:29:::0;;;;;:46;;;;;::::1;-1:-1:-1::0;;;;;;45301:46:0;;::::1;::::0;;;::::1;::::0;;;45358:38;;;;;;;:56;;;::::1;;::::0;;;::::1;;::::0;;44995:427::o;35641:244::-;34918:12;:10;:12::i;:::-;34908:6;;;;;-1:-1:-1;;;;;34908:6:0;;;:22;;;34900:67;;;;;-1:-1:-1;;;34900:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35730:22:0;::::1;35722:73;;;;-1:-1:-1::0;;;35722:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35832:6;::::0;35811:38:::1;::::0;-1:-1:-1;;;;;35811:38:0;;::::1;::::0;35832:6:::1;::::0;::::1;;::::0;35811:38:::1;::::0;;;::::1;35860:6;:17:::0;;-1:-1:-1;;;;;35860:17:0;;::::1;;;-1:-1:-1::0;;;;;;35860:17:0;;::::1;::::0;;;::::1;::::0;;35641:244::o;39027:51::-;;;;;;;;;;;;;;;:::o;37516:35::-;;;-1:-1:-1;;;37516:35:0;;;;;:::o;37051:33::-;;;;:::o;2348:136::-;2406:7;2433:43;2437:1;2440;2433:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2426:50;2348:136;-1:-1:-1;;;2348:136:0:o;64825:316::-;64982:17;;64969:9;:30;;:64;;;;;65016:17;;65003:9;:30;;64969:64;64965:169;;;65050:12;:24;;;65094:28;;;;;;;;;;;;;;;;;64825:316;:::o;1884:181::-;1942:7;1974:5;;;1998:6;;;;1990:46;;;;;-1:-1:-1;;;1990:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3238:471;3296:7;3541:6;3537:47;;-1:-1:-1;3571:1:0;3564:8;;3537:47;3608:5;;;3612:1;3608;:5;:1;3632:5;;;;;:10;3624:56;;;;-1:-1:-1;;;3624:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4185:132;4243:7;4270:39;4274:1;4277;4270:39;;;;;;;;;;;;;;;;;:3;:39::i;15846:177::-;15956:58;;;-1:-1:-1;;;;;15956:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15956:58:0;-1:-1:-1;;;15956:58:0;;;15929:86;;15949:5;;15929:19;:86::i;22231:106::-;22319:10;22231:106;:::o;16031:205::-;16159:68;;;-1:-1:-1;;;;;16159:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16159:68:0;-1:-1:-1;;;16159:68:0;;;16132:96;;16152:5;;16132:19;:96::i;:::-;16031:205;;;;:::o;2787:192::-;2873:7;2909:12;2901:6;;;;2893:29;;;;-1:-1:-1;;;2893:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2945:5:0;;;2787:192::o;4813:278::-;4899:7;4934:12;4927:5;4919:28;;;;-1:-1:-1;;;4919:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4958:9;4974:1;4970;:5;;;;;;;4813:278;-1:-1:-1;;;;;4813:278:0:o;18151:761::-;18575:23;18601:69;18629:4;18601:69;;;;;;;;;;;;;;;;;18609:5;-1:-1:-1;;;;;18601:27:0;;;:69;;;;;:::i;:::-;18685:17;;18575:95;;-1:-1:-1;18685:21:0;18681:224;;18827:10;18816:30;;;;;;;;;;;;;;;-1:-1:-1;18816:30:0;18808:85;;;;-1:-1:-1;;;18808:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12827:196;12930:12;12962:53;12985:6;12993:4;12999:1;13002:12;14334;14367:18;14378:6;14367:10;:18::i;:::-;14359:60;;;;;-1:-1:-1;;;14359:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14493:12;14507:23;14534:6;-1:-1:-1;;;;;14534:11:0;14554:8;14565:4;14534:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14534:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14492:78;;;;14585:7;14581:595;;;14616:10;-1:-1:-1;14609:17:0;;-1:-1:-1;14609:17:0;14581:595;14730:17;;:21;14726:439;;14993:10;14987:17;15054:15;15041:10;15037:2;15033:19;15026:44;14941:148;15129:20;;-1:-1:-1;;;15129:20:0;;;;;;;;;;;;;;;;;15136:12;;15129:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9909:422;10276:20;10315:8;;;9909:422::o

Swarm Source

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