Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Contract Name:
StrategyCurveAaveRen
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-07-01 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol pragma solidity >=0.6.0 <0.8.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/IERC20.sol pragma solidity >=0.6.0 <0.8.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/math/SafeMath.sol pragma solidity >=0.6.0 <0.8.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, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { 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, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity >=0.6.0 <0.8.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; 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 virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. 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"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity >=0.6.0 <0.8.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: contracts/BIFI/interfaces/common/IUniswapRouterETH.sol pragma solidity ^0.6.0; interface IUniswapRouterETH { function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); } // File: contracts/BIFI/interfaces/curve/IRewardsGauge.sol pragma solidity ^0.6.0; interface IRewardsGauge { function balanceOf(address account) external view returns (uint256); function claim_rewards(address _addr) external; function deposit(uint256 _value) external; function withdraw(uint256 _value) external; } // File: contracts/BIFI/interfaces/curve/IStableSwapAave.sol pragma solidity ^0.6.0; interface IStableSwapAave { function add_liquidity(uint256[3] memory amounts, uint256 min_mint_amount, bool _use_underlying) external; } interface IStableSwapAave2 { function add_liquidity(uint256[2] memory amounts, uint256 min_mint_amount, bool _use_underlying) external; } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity >=0.6.0 <0.8.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. */ abstract 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 virtual 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: @openzeppelin/contracts/utils/Pausable.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: contracts/BIFI/strategies/Common/StratManager.sol pragma solidity ^0.6.12; contract StratManager is Ownable, Pausable { /** * @dev Beefy Contracts: * {keeper} - Address to manage a few lower risk features of the strat * {strategist} - Address of the strategy author/deployer where strategist fee will go. * {vault} - Address of the vault that controls the strategy's funds. * {unirouter} - Address of exchange to execute swaps. */ address public keeper; address public strategist; address public unirouter; address public vault; address public beefyFeeRecipient; /** * @dev Initializes the base strategy. * @param _keeper address to use as alternative owner. * @param _strategist address where strategist fees go. * @param _unirouter router to use for swaps * @param _vault address of parent vault. * @param _beefyFeeRecipient address where to send Beefy's fees. */ constructor( address _keeper, address _strategist, address _unirouter, address _vault, address _beefyFeeRecipient ) public { keeper = _keeper; strategist = _strategist; unirouter = _unirouter; vault = _vault; beefyFeeRecipient = _beefyFeeRecipient; } // checks that caller is either owner or keeper. modifier onlyManager() { require(msg.sender == owner() || msg.sender == keeper, "!manager"); _; } // verifies that the caller is not a contract. modifier onlyEOA() { require(msg.sender == tx.origin, "!EOA"); _; } /** * @dev Updates address of the strat keeper. * @param _keeper new keeper address. */ function setKeeper(address _keeper) external onlyManager { keeper = _keeper; } /** * @dev Updates address where strategist fee earnings will go. * @param _strategist new strategist address. */ function setStrategist(address _strategist) external { require(msg.sender == strategist, "!strategist"); strategist = _strategist; } /** * @dev Updates router that will be used for swaps. * @param _unirouter new unirouter address. */ function setUnirouter(address _unirouter) external onlyOwner { unirouter = _unirouter; } /** * @dev Updates parent vault. * @param _vault new vault address. */ function setVault(address _vault) external onlyOwner { vault = _vault; } /** * @dev Updates beefy fee recipient. * @param _beefyFeeRecipient new beefy fee recipient address. */ function setBeefyFeeRecipient(address _beefyFeeRecipient) external onlyOwner { beefyFeeRecipient = _beefyFeeRecipient; } /** * @dev Function to synchronize balances before new user deposit. * Can be overridden in the strategy. */ function beforeDeposit() external virtual {} } // File: contracts/BIFI/strategies/Common/FeeManager.sol pragma solidity ^0.6.12; abstract contract FeeManager is StratManager { uint constant public STRATEGIST_FEE = 112; uint constant public MAX_FEE = 1000; uint constant public MAX_CALL_FEE = 111; uint constant public WITHDRAWAL_FEE_CAP = 50; uint constant public WITHDRAWAL_MAX = 10000; uint public withdrawalFee = 10; uint public callFee = 111; uint public beefyFee = MAX_FEE - STRATEGIST_FEE - callFee; function setCallFee(uint256 _fee) public onlyManager { require(_fee <= MAX_CALL_FEE, "!cap"); callFee = _fee; beefyFee = MAX_FEE - STRATEGIST_FEE - callFee; } function setWithdrawalFee(uint256 _fee) external onlyManager { require(_fee <= WITHDRAWAL_FEE_CAP, "!cap"); withdrawalFee = _fee; } } // File: contracts/BIFI/strategies/Curve/StrategyCurveAaveRen.sol pragma solidity ^0.6.0; contract StrategyCurveAaveRen is StratManager, FeeManager { using SafeERC20 for IERC20; using SafeMath for uint256; // Tokens used address constant public wmatic = address(0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270); address constant public btc = address(0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6); address constant public crv = address(0x172370d5Cd63279eFa6d502DAB29171933a610AF); address constant public eth = address(0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619); address constant public want = address(0xf8a57c1d3b9629b77b6726a042ca48990A84Fb49); // Third party contracts address constant public swapToken = address(0xC2d95EEF97Ec6C17551d45e77B590dc1F9117C67); address constant public rewards = address(0xffbACcE0CC7C19d46132f1258FC16CF6871D153c); // Routes address[] public wmaticToBtcRoute = [wmatic, eth, btc]; address[] public crvToWmaticRoute = [crv, eth, wmatic]; bool public harvestOnDeposit = false; /** * @dev Event that is fired each time someone harvests the strat. */ event StratHarvest(address indexed harvester); constructor( address _vault, address _unirouter, address _keeper, address _strategist, address _beefyFeeRecipient ) StratManager(_keeper, _strategist, _unirouter, _vault, _beefyFeeRecipient) public { _giveAllowances(); } // puts the funds to work function deposit() public whenNotPaused { uint256 wantBal = IERC20(want).balanceOf(address(this)); if (wantBal > 0) { IRewardsGauge(rewards).deposit(wantBal); } } function withdraw(uint256 _amount) external { require(msg.sender == vault, "!vault"); uint256 wantBal = IERC20(want).balanceOf(address(this)); if (wantBal < _amount) { IRewardsGauge(rewards).withdraw(_amount.sub(wantBal)); wantBal = IERC20(want).balanceOf(address(this)); } if (wantBal > _amount) { wantBal = _amount; } if (tx.origin == owner() || paused()) { IERC20(want).safeTransfer(vault, wantBal); } else { uint256 withdrawalFeeAmount = wantBal.mul(withdrawalFee).div(WITHDRAWAL_MAX); IERC20(want).safeTransfer(vault, wantBal.sub(withdrawalFeeAmount)); } } function beforeDeposit() external override { if (harvestOnDeposit) { harvest(); } } // compounds earnings and charges performance fee function harvest() public whenNotPaused { require(tx.origin == msg.sender || msg.sender == vault, "!contract"); IRewardsGauge(rewards).claim_rewards(address(this)); uint256 crvBal = IERC20(crv).balanceOf(address(this)); uint256 wmaticBal = IERC20(wmatic).balanceOf(address(this)); if (wmaticBal > 0 || crvBal > 0) { chargeFees(); addLiquidity(); deposit(); emit StratHarvest(msg.sender); } } // performance fees function chargeFees() internal { uint256 crvBal = IERC20(crv).balanceOf(address(this)); if (crvBal > 0) { IUniswapRouterETH(unirouter).swapExactTokensForTokens(crvBal, 0, crvToWmaticRoute, address(this), block.timestamp); } uint256 wmaticFeeBal = IERC20(wmatic).balanceOf(address(this)).mul(45).div(1000); uint256 callFeeAmount = wmaticFeeBal.mul(callFee).div(MAX_FEE); IERC20(wmatic).safeTransfer(tx.origin, callFeeAmount); uint256 beefyFeeAmount = wmaticFeeBal.mul(beefyFee).div(MAX_FEE); IERC20(wmatic).safeTransfer(beefyFeeRecipient, beefyFeeAmount); uint256 strategistFee = wmaticFeeBal.mul(STRATEGIST_FEE).div(MAX_FEE); IERC20(wmatic).safeTransfer(strategist, strategistFee); } // Adds liquidity to AMM and gets more LP tokens. function addLiquidity() internal { uint256 wmaticBal = IERC20(wmatic).balanceOf(address(this)); IUniswapRouterETH(unirouter).swapExactTokensForTokens(wmaticBal, 0, wmaticToBtcRoute, address(this), block.timestamp); uint256 btcBal = IERC20(btc).balanceOf(address(this)); uint256[2] memory amounts = [btcBal, 0]; IStableSwapAave2(swapToken).add_liquidity(amounts, 0, true); } // calculate the total underlaying 'want' held by the strat. function balanceOf() public view returns (uint256) { return balanceOfWant().add(balanceOfPool()); } // it calculates how much 'want' this contract holds. function balanceOfWant() public view returns (uint256) { return IERC20(want).balanceOf(address(this)); } // it calculates how much 'want' the strategy has working in the farm. function balanceOfPool() public view returns (uint256) { return IRewardsGauge(rewards).balanceOf(address(this)); } function setHarvestOnDeposit(bool _harvest) external onlyManager { harvestOnDeposit = _harvest; } // called as part of strat migration. Sends all the available funds back to the vault. function retireStrat() external { require(msg.sender == vault, "!vault"); IRewardsGauge(rewards).withdraw(balanceOfPool()); uint256 wantBal = IERC20(want).balanceOf(address(this)); IERC20(want).transfer(vault, wantBal); } // pauses deposits and withdraws all funds from third party systems. function panic() public onlyManager { pause(); IRewardsGauge(rewards).withdraw(balanceOfPool()); } function pause() public onlyManager { _pause(); _removeAllowances(); } function unpause() external onlyManager { _unpause(); _giveAllowances(); deposit(); } function _giveAllowances() internal { IERC20(want).safeApprove(rewards, type(uint).max); IERC20(wmatic).safeApprove(unirouter, type(uint).max); IERC20(crv).safeApprove(unirouter, type(uint).max); IERC20(btc).safeApprove(swapToken, type(uint).max); } function _removeAllowances() internal { IERC20(want).safeApprove(rewards, 0); IERC20(wmatic).safeApprove(unirouter, 0); IERC20(crv).safeApprove(unirouter, 0); IERC20(btc).safeApprove(swapToken, 0); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_vault","type":"address"},{"internalType":"address","name":"_unirouter","type":"address"},{"internalType":"address","name":"_keeper","type":"address"},{"internalType":"address","name":"_strategist","type":"address"},{"internalType":"address","name":"_beefyFeeRecipient","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"harvester","type":"address"}],"name":"StratHarvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_CALL_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STRATEGIST_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_FEE_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfWant","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beefyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beefyFeeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beforeDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"btc","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"callFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crv","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"crvToWmaticRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"eth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvestOnDeposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"keeper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"panic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retireStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewards","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_beefyFeeRecipient","type":"address"}],"name":"setBeefyFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setCallFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_harvest","type":"bool"}],"name":"setHarvestOnDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"setKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_strategist","type":"address"}],"name":"setStrategist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_unirouter","type":"address"}],"name":"setUnirouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setWithdrawalFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strategist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unirouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"want","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wmatic","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"wmaticToBtcRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
600a600655606f60075561030960085560e0604052730d500b1d8e8ef31e21c99d1db9a6444d3adf12706080908152737ceb23fd6bc0add59e62ac25578270cff1b9f61960a052731bfd67037b42cf73acf2047067bd4f2c47d9bfd660c0526200006e90600990600362000724565b506040805160608101825273172370d5cd63279efa6d502dab29171933a610af8152737ceb23fd6bc0add59e62ac25578270cff1b9f6196020820152730d500b1d8e8ef31e21c99d1db9a6444d3adf127091810191909152620000d690600a90600362000724565b50600b805460ff19169055348015620000ee57600080fd5b50604051620030f8380380620030f8833981810160405260a08110156200011457600080fd5b5080516020820151604083015160608401516080909401519293919290919082828587846000620001446200020d565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000805460ff60a01b19169055600180546001600160a01b03199081166001600160a01b039788161790915560028054821695871695909517909455600380548516938616939093179092556004805484169185169190911790556005805490921692169190911790556200020262000211565b5050505050620007af565b3390565b6200025473f8a57c1d3b9629b77b6726a042ca48990a84fb4973ffbacce0cc7c19d46132f1258fc16cf6871d153c60001962000311602090811b6200182a17901c565b6003546200029090730d500b1d8e8ef31e21c99d1db9a6444d3adf1270906001600160a01b031660001962000311602090811b6200182a17901c565b600354620002cc9073172370d5cd63279efa6d502dab29171933a610af906001600160a01b031660001962000311602090811b6200182a17901c565b6200030f731bfd67037b42cf73acf2047067bd4f2c47d9bfd673c2d95eef97ec6c17551d45e77b590dc1f9117c6760001962000311602090811b6200182a17901c565b565b8015806200039b575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156200036b57600080fd5b505afa15801562000380573d6000803e3d6000fd5b505050506040513d60208110156200039757600080fd5b5051155b620003d85760405162461bcd60e51b8152600401808060200182810382526036815260200180620030c26036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0390811663095ea7b360e01b17909152620004309185916200043516565b505050565b606062000491826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316620004f160201b6200193d179092919060201c565b8051909150156200043057808060200190516020811015620004b257600080fd5b5051620004305760405162461bcd60e51b815260040180806020018281038252602a81526020018062003098602a913960400191505060405180910390fd5b60606200050284846000856200050c565b90505b9392505050565b6060824710156200054f5760405162461bcd60e51b8152600401808060200182810382526026815260200180620030726026913960400191505060405180910390fd5b6200055a8562000674565b620005ac576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310620005ed5780518252601f199092019160209182019101620005cc565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811462000651576040519150601f19603f3d011682016040523d82523d6000602084013e62000656565b606091505b509092509050620006698282866200067a565b979650505050505050565b3b151590565b606083156200068b57508162000505565b8251156200069c5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620006e8578181015183820152602001620006ce565b50505050905090810190601f168015620007165780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b8280548282559060005260206000209081019282156200077c579160200282015b828111156200077c57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000745565b506200078a9291506200078e565b5090565b5b808211156200078a5780546001600160a01b03191681556001016200078f565b6128b380620007bf6000396000f3fe608060405234801561001057600080fd5b506004361061028a5760003560e01c80638bc7e8c41161015c578063c1a3d44c116100ce578063dc73e49c11610087578063dc73e49c14610529578063dfbdc43714610531578063f2fde38b14610539578063fb41be161461055f578063fb61778714610567578063fbfa77cf1461056f5761028a565b8063c1a3d44c146104a8578063c7b9d530146104b0578063ca3de257146104d6578063d0e30db0146104f3578063d3102589146104fb578063d92f3d73146105035761028a565b80639ec5a894116101205780639ec5a89414610445578063a28d57d81461044d578063a68833e514610455578063ac1e50251461047b578063aced166114610498578063bc063e1a146104a05761028a565b80638bc7e8c41461041d5780638c7c9e0c146104255780638da5cb5b1461042d5780638e1454591461043557806390321e1a1461043d5761028a565b80634700d30511610200578063715018a6116101b9578063715018a6146103cf578063722713f7146103d7578063748747e6146103df5780637d38ca65146104055780638456cb591461040d5780638912cb8b146104155761028a565b80634700d3051461036d57806354518b1a14610375578063573fef0a1461037d5780635c975abb146103855780636817031b146103a15780636a4874a1146103c75761028a565b8063264658261161025257806326465826146102fe5780632ad5a53f1461031b5780632e1a7d4d14610323578063337f84a9146103405780633f4ba83a1461035d5780634641257d146103655761028a565b80630e8fbb5a1461028f57806311588086146102b05780631f1fcd51146102ca5780631fe4a686146102ee578063257ae0de146102f6575b600080fd5b6102ae600480360360208110156102a557600080fd5b50351515610577565b005b6102b86105f7565b60408051918252519081900360200190f35b6102d261067d565b604080516001600160a01b039092168252519081900360200190f35b6102d2610695565b6102d26106a4565b6102ae6004803603602081101561031457600080fd5b50356106b3565b6102b861076d565b6102ae6004803603602081101561033957600080fd5b5035610772565b6102d26004803603602081101561035657600080fd5b5035610a04565b6102ae610a2b565b6102ae610ab2565b6102ae610d1e565b6102b8610e05565b6102ae610e0b565b61038d610e1e565b604080519115158252519081900360200190f35b6102ae600480360360208110156103b757600080fd5b50356001600160a01b0316610e2e565b6102d2610eb2565b6102ae610eca565b6102b8610f76565b6102ae600480360360208110156103f557600080fd5b50356001600160a01b0316610f96565b6102b8611025565b6102ae61102a565b61038d6110a7565b6102b86110b0565b6102d26110b6565b6102d26110ce565b6102d26110dd565b6102b86110ec565b6102d26110f2565b6102d261110a565b6102ae6004803603602081101561046b57600080fd5b50356001600160a01b0316611122565b6102ae6004803603602081101561049157600080fd5b50356111a6565b6102d2611257565b6102b8611266565b6102b861126c565b6102ae600480360360208110156104c657600080fd5b50356001600160a01b03166112c1565b6102d2600480360360208110156104ec57600080fd5b5035611330565b6102ae61133d565b6102b8611489565b6102ae6004803603602081101561051957600080fd5b50356001600160a01b031661148f565b6102d2611513565b6102b861152b565b6102ae6004803603602081101561054f57600080fd5b50356001600160a01b0316611530565b6102d2611632565b6102ae61164a565b6102d261181b565b61057f6110ce565b6001600160a01b0316336001600160a01b031614806105a857506001546001600160a01b031633145b6105e4576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600b805460ff1916911515919091179055565b604080516370a0823160e01b8152306004820152905160009173ffbacce0cc7c19d46132f1258fc16cf6871d153c916370a0823191602480820192602092909190829003018186803b15801561064c57600080fd5b505afa158015610660573d6000803e3d6000fd5b505050506040513d602081101561067657600080fd5b5051905090565b73f8a57c1d3b9629b77b6726a042ca48990a84fb4981565b6002546001600160a01b031681565b6003546001600160a01b031681565b6106bb6110ce565b6001600160a01b0316336001600160a01b031614806106e457506001546001600160a01b031633145b610720576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b606f81111561075f576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600781905561037803600855565b606f81565b6004546001600160a01b031633146107ba576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b604080516370a0823160e01b8152306004820152905160009173f8a57c1d3b9629b77b6726a042ca48990a84fb49916370a0823191602480820192602092909190829003018186803b15801561080f57600080fd5b505afa158015610823573d6000803e3d6000fd5b505050506040513d602081101561083957600080fd5b50519050818110156109375773ffbacce0cc7c19d46132f1258fc16cf6871d153c632e1a7d4d6108698484611956565b6040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561089f57600080fd5b505af11580156108b3573d6000803e3d6000fd5b5050604080516370a0823160e01b8152306004820152905173f8a57c1d3b9629b77b6726a042ca48990a84fb4993506370a0823192506024808301926020929190829003018186803b15801561090857600080fd5b505afa15801561091c573d6000803e3d6000fd5b505050506040513d602081101561093257600080fd5b505190505b818111156109425750805b61094a6110ce565b6001600160a01b0316326001600160a01b0316148061096c575061096c610e1e565b156109a25760045461099d9073f8a57c1d3b9629b77b6726a042ca48990a84fb49906001600160a01b0316836119b8565b610a00565b60006109c56127106109bf60065485611a0a90919063ffffffff16565b90611a63565b6004549091506109fe906001600160a01b03166109e28484611956565b73f8a57c1d3b9629b77b6726a042ca48990a84fb4991906119b8565b505b5050565b60098181548110610a1157fe5b6000918252602090912001546001600160a01b0316905081565b610a336110ce565b6001600160a01b0316336001600160a01b03161480610a5c57506001546001600160a01b031633145b610a98576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610aa0611aca565b610aa8611b6d565b610ab061133d565b565b610aba610e1e565b15610aff576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b32331480610b1757506004546001600160a01b031633145b610b54576040805162461bcd60e51b81526020600482015260096024820152680858dbdb9d1c9858dd60ba1b604482015290519081900360640190fd5b60408051634274debf60e11b8152306004820152905173ffbacce0cc7c19d46132f1258fc16cf6871d153c916384e9bd7e91602480830192600092919082900301818387803b158015610ba657600080fd5b505af1158015610bba573d6000803e3d6000fd5b5050604080516370a0823160e01b815230600482015290516000935073172370d5cd63279efa6d502dab29171933a610af92506370a0823191602480820192602092909190829003018186803b158015610c1357600080fd5b505afa158015610c27573d6000803e3d6000fd5b505050506040513d6020811015610c3d57600080fd5b5051604080516370a0823160e01b81523060048201529051919250600091730d500b1d8e8ef31e21c99d1db9a6444d3adf1270916370a08231916024808301926020929190829003018186803b158015610c9657600080fd5b505afa158015610caa573d6000803e3d6000fd5b505050506040513d6020811015610cc057600080fd5b5051905080151580610cd25750600082115b15610a0057610cdf611c33565b610ce7611fb3565b610cef61133d565b60405133907f577a37fdb49a88d66684922c6f913df5239b4f214b2b97c53ef8e3bbb2034cb590600090a25050565b610d266110ce565b6001600160a01b0316336001600160a01b03161480610d4f57506001546001600160a01b031633145b610d8b576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610d9361102a565b73ffbacce0cc7c19d46132f1258fc16cf6871d153c632e1a7d4d610db56105f7565b6040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610deb57600080fd5b505af1158015610dff573d6000803e3d6000fd5b50505050565b61271081565b600b5460ff1615610ab057610ab0610ab2565b600054600160a01b900460ff1690565b610e36612312565b6001600160a01b0316610e476110ce565b6001600160a01b031614610e90576040805162461bcd60e51b815260206004820181905260248201526000805160206127fe833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b73172370d5cd63279efa6d502dab29171933a610af81565b610ed2612312565b6001600160a01b0316610ee36110ce565b6001600160a01b031614610f2c576040805162461bcd60e51b815260206004820181905260248201526000805160206127fe833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000610f91610f836105f7565b610f8b61126c565b90612316565b905090565b610f9e6110ce565b6001600160a01b0316336001600160a01b03161480610fc757506001546001600160a01b031633145b611003576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b607081565b6110326110ce565b6001600160a01b0316336001600160a01b0316148061105b57506001546001600160a01b031633145b611097576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b61109f612370565b610ab06123f9565b600b5460ff1681565b60065481565b737ceb23fd6bc0add59e62ac25578270cff1b9f61981565b6000546001600160a01b031690565b6005546001600160a01b031681565b60075481565b73ffbacce0cc7c19d46132f1258fc16cf6871d153c81565b731bfd67037b42cf73acf2047067bd4f2c47d9bfd681565b61112a612312565b6001600160a01b031661113b6110ce565b6001600160a01b031614611184576040805162461bcd60e51b815260206004820181905260248201526000805160206127fe833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6111ae6110ce565b6001600160a01b0316336001600160a01b031614806111d757506001546001600160a01b031633145b611213576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6032811115611252576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600655565b6001546001600160a01b031681565b6103e881565b604080516370a0823160e01b8152306004820152905160009173f8a57c1d3b9629b77b6726a042ca48990a84fb49916370a0823191602480820192602092909190829003018186803b15801561064c57600080fd5b6002546001600160a01b0316331461130e576040805162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b600a8181548110610a1157fe5b611345610e1e565b1561138a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b604080516370a0823160e01b8152306004820152905160009173f8a57c1d3b9629b77b6726a042ca48990a84fb49916370a0823191602480820192602092909190829003018186803b1580156113df57600080fd5b505afa1580156113f3573d6000803e3d6000fd5b505050506040513d602081101561140957600080fd5b5051905080156114865773ffbacce0cc7c19d46132f1258fc16cf6871d153c6001600160a01b031663b6b55f25826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561146d57600080fd5b505af1158015611481573d6000803e3d6000fd5b505050505b50565b60085481565b611497612312565b6001600160a01b03166114a86110ce565b6001600160a01b0316146114f1576040805162461bcd60e51b815260206004820181905260248201526000805160206127fe833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b73c2d95eef97ec6c17551d45e77b590dc1f9117c6781565b603281565b611538612312565b6001600160a01b03166115496110ce565b6001600160a01b031614611592576040805162461bcd60e51b815260206004820181905260248201526000805160206127fe833981519152604482015290519081900360640190fd5b6001600160a01b0381166115d75760405162461bcd60e51b81526004018080602001828103825260268152602001806127916026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b730d500b1d8e8ef31e21c99d1db9a6444d3adf127081565b6004546001600160a01b03163314611692576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b73ffbacce0cc7c19d46132f1258fc16cf6871d153c632e1a7d4d6116b46105f7565b6040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156116ea57600080fd5b505af11580156116fe573d6000803e3d6000fd5b5050604080516370a0823160e01b815230600482015290516000935073f8a57c1d3b9629b77b6726a042ca48990a84fb4992506370a0823191602480820192602092909190829003018186803b15801561175757600080fd5b505afa15801561176b573d6000803e3d6000fd5b505050506040513d602081101561178157600080fd5b5051600480546040805163a9059cbb60e01b81526001600160a01b039092169282019290925260248101839052905191925073f8a57c1d3b9629b77b6726a042ca48990a84fb499163a9059cbb916044808201926020929091908290030181600087803b1580156117f157600080fd5b505af1158015611805573d6000803e3d6000fd5b505050506040513d60208110156109fe57600080fd5b6004546001600160a01b031681565b8015806118b0575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561188257600080fd5b505afa158015611896573d6000803e3d6000fd5b505050506040513d60208110156118ac57600080fd5b5051155b6118eb5760405162461bcd60e51b81526004018080602001828103825260368152602001806128486036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526109fe9084906124bb565b606061194c848460008561256c565b90505b9392505050565b6000828211156119ad576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b508082035b92915050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526109fe9084906124bb565b600082611a19575060006119b2565b82820282848281611a2657fe5b041461194f5760405162461bcd60e51b81526004018080602001828103825260218152602001806127dd6021913960400191505060405180910390fd5b6000808211611ab9576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381611ac257fe5b049392505050565b611ad2610e1e565b611b1a576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611b50612312565b604080516001600160a01b039092168252519081900360200190a1565b611ba273f8a57c1d3b9629b77b6726a042ca48990a84fb4973ffbacce0cc7c19d46132f1258fc16cf6871d153c60001961182a565b600354611bd090730d500b1d8e8ef31e21c99d1db9a6444d3adf1270906001600160a01b031660001961182a565b600354611bfe9073172370d5cd63279efa6d502dab29171933a610af906001600160a01b031660001961182a565b610ab0731bfd67037b42cf73acf2047067bd4f2c47d9bfd673c2d95eef97ec6c17551d45e77b590dc1f9117c6760001961182a565b604080516370a0823160e01b8152306004820152905160009173172370d5cd63279efa6d502dab29171933a610af916370a0823191602480820192602092909190829003018186803b158015611c8857600080fd5b505afa158015611c9c573d6000803e3d6000fd5b505050506040513d6020811015611cb257600080fd5b505190508015611e45576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a060448601908152600a805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c49091019086908015611d5657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611d38575b50509650505050505050600060405180830381600087803b158015611d7a57600080fd5b505af1158015611d8e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611db757600080fd5b8101908080516040519392919084640100000000821115611dd757600080fd5b908301906020820185811115611dec57600080fd5b8251866020820283011164010000000082111715611e0957600080fd5b82525081516020918201928201910280838360005b83811015611e36578181015183820152602001611e1e565b50505050905001604052505050505b6000611ee56103e86109bf602d730d500b1d8e8ef31e21c99d1db9a6444d3adf12706001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611eb357600080fd5b505afa158015611ec7573d6000803e3d6000fd5b505050506040513d6020811015611edd57600080fd5b505190611a0a565b90506000611f046103e86109bf60075485611a0a90919063ffffffff16565b9050611f25730d500b1d8e8ef31e21c99d1db9a6444d3adf127032836119b8565b6000611f426103e86109bf60085486611a0a90919063ffffffff16565b600554909150611f7190730d500b1d8e8ef31e21c99d1db9a6444d3adf1270906001600160a01b0316836119b8565b6000611f846103e86109bf866070611a0a565b60025490915061148190730d500b1d8e8ef31e21c99d1db9a6444d3adf1270906001600160a01b0316836119b8565b604080516370a0823160e01b81523060048201529051600091730d500b1d8e8ef31e21c99d1db9a6444d3adf1270916370a0823191602480820192602092909190829003018186803b15801561200857600080fd5b505afa15801561201c573d6000803e3d6000fd5b505050506040513d602081101561203257600080fd5b50516003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526009805460a488018190529899506001600160a01b03909716976338ed1739978a979596909590929160c490910190869080156120d357602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116120b5575b50509650505050505050600060405180830381600087803b1580156120f757600080fd5b505af115801561210b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561213457600080fd5b810190808051604051939291908464010000000082111561215457600080fd5b90830190602082018581111561216957600080fd5b825186602082028301116401000000008211171561218657600080fd5b82525081516020918201928201910280838360005b838110156121b357818101518382015260200161219b565b505050509190910160408181526370a0823160e01b82523060048301525160009650731bfd67037b42cf73acf2047067bd4f2c47d9bfd695506370a08231945060248083019450602093509091829003018186803b15801561221457600080fd5b505afa158015612228573d6000803e3d6000fd5b505050506040513d602081101561223e57600080fd5b5051905061224a612772565b60405180604001604052808381526020016000815250905073c2d95eef97ec6c17551d45e77b590dc1f9117c676001600160a01b031663ee22be2382600060016040518463ffffffff1660e01b81526004018084600260200280838360005b838110156122c15781810151838201526020016122a9565b5050505090500183815260200182151581526020019350505050600060405180830381600087803b1580156122f557600080fd5b505af1158015612309573d6000803e3d6000fd5b50505050505050565b3390565b60008282018381101561194f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b612378610e1e565b156123bd576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b50612312565b61242d73f8a57c1d3b9629b77b6726a042ca48990a84fb4973ffbacce0cc7c19d46132f1258fc16cf6871d153c600061182a565b60035461245a90730d500b1d8e8ef31e21c99d1db9a6444d3adf1270906001600160a01b0316600061182a565b6003546124879073172370d5cd63279efa6d502dab29171933a610af906001600160a01b0316600061182a565b610ab0731bfd67037b42cf73acf2047067bd4f2c47d9bfd673c2d95eef97ec6c17551d45e77b590dc1f9117c67600061182a565b6060612510826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661193d9092919063ffffffff16565b8051909150156109fe5780806020019051602081101561252f57600080fd5b50516109fe5760405162461bcd60e51b815260040180806020018281038252602a81526020018061281e602a913960400191505060405180910390fd5b6060824710156125ad5760405162461bcd60e51b81526004018080602001828103825260268152602001806127b76026913960400191505060405180910390fd5b6125b6856126c8565b612607576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106126465780518252601f199092019160209182019101612627565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146126a8576040519150601f19603f3d011682016040523d82523d6000602084013e6126ad565b606091505b50915091506126bd8282866126ce565b979650505050505050565b3b151590565b606083156126dd57508161194f565b8251156126ed5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561273757818101518382015260200161271f565b50505050905090810190601f1680156127645780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040518060400160405280600290602082028036833750919291505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a264697066735822122068fc424c2b063239be781cb43e09707cab3bd10157727eabea7f7d0e66cd4fef64736f6c634300060c0033416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c5361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000000008c9d3bc4425773bd2f00c4a2ac105c5ad73c81410000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b4799750600000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d000000000000000000000000982f264ce97365864181df65df4931c593a515ad000000000000000000000000b66ca5319efc42fd1462693bab51ee0c9e452745
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008c9d3bc4425773bd2f00c4a2ac105c5ad73c81410000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b4799750600000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d000000000000000000000000982f264ce97365864181df65df4931c593a515ad000000000000000000000000b66ca5319efc42fd1462693bab51ee0c9e452745
-----Decoded View---------------
Arg [0] : _vault (address): 0x8c9d3bc4425773bd2f00c4a2ac105c5ad73c8141
Arg [1] : _unirouter (address): 0x1b02da8cb0d097eb8d57a175b88c7d8b47997506
Arg [2] : _keeper (address): 0x10aee6b5594942433e7fc2783598c979b030ef3d
Arg [3] : _strategist (address): 0x982f264ce97365864181df65df4931c593a515ad
Arg [4] : _beefyFeeRecipient (address): 0xb66ca5319efc42fd1462693bab51ee0c9e452745
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000008c9d3bc4425773bd2f00c4a2ac105c5ad73c8141
Arg [1] : 0000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b47997506
Arg [2] : 00000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d
Arg [3] : 000000000000000000000000982f264ce97365864181df65df4931c593a515ad
Arg [4] : 000000000000000000000000b66ca5319efc42fd1462693bab51ee0c9e452745
Deployed ByteCode Sourcemap
45325:6484:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50348:111;;;;;;;;;;;;;;;;-1:-1:-1;50348:111:0;;;;:::i;:::-;;50212:128;;;:::i;:::-;;;;;;;;;;;;;;;;45833:82;;;:::i;:::-;;;;-1:-1:-1;;;;;45833:82:0;;;;;;;;;;;;;;41762:25;;;:::i;41794:24::-;;;:::i;44840:200::-;;;;;;;;;;;;;;;;-1:-1:-1;44840:200:0;;:::i;44552:39::-;;;:::i;47009:733::-;;;;;;;;;;;;;;;;-1:-1:-1;47009:733:0;;:::i;46157:54::-;;;;;;;;;;;;;;;;-1:-1:-1;46157:54:0;;:::i;51139:121::-;;;:::i;47932:504::-;;;:::i;50907:121::-;;;:::i;44651:43::-;;;:::i;47750:119::-;;;:::i;40050:86::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;43772;;;;;;;;;;;;;;;;-1:-1:-1;43772:86:0;-1:-1:-1;;;;;43772:86:0;;:::i;45657:81::-;;;:::i;38409:148::-;;;:::i;49830:113::-;;;:::i;43044:92::-;;;;;;;;;;;;;;;;-1:-1:-1;43044:92:0;-1:-1:-1;;;;;43044:92:0;;:::i;44462:41::-;;;:::i;51036:95::-;;;:::i;46281:36::-;;;:::i;44703:30::-;;;:::i;45745:81::-;;;:::i;37758:87::-;;;:::i;41852:32::-;;;:::i;44742:25::-;;;:::i;46048:85::-;;;:::i;45569:81::-;;;:::i;43993:134::-;;;;;;;;;;;;;;;;-1:-1:-1;43993:134:0;-1:-1:-1;;;;;43993:134:0;;:::i;45048:156::-;;;;;;;;;;;;;;;;-1:-1:-1;45048:156:0;;:::i;41734:21::-;;;:::i;44510:35::-;;;:::i;50010:118::-;;;:::i;43281:155::-;;;;;;;;;;;;;;;;-1:-1:-1;43281:155:0;-1:-1:-1;;;;;43281:155:0;;:::i;46218:54::-;;;;;;;;;;;;;;;;-1:-1:-1;46218:54:0;;:::i;46792:209::-;;;:::i;44774:57::-;;;:::i;43568:102::-;;;;;;;;;;;;;;;;-1:-1:-1;43568:102:0;-1:-1:-1;;;;;43568:102:0;;:::i;45954:87::-;;;:::i;44600:44::-;;;:::i;38712:244::-;;;;;;;;;;;;;;;;-1:-1:-1;38712:244:0;-1:-1:-1;;;;;38712:244:0;;:::i;45478:84::-;;;:::i;50559:266::-;;;:::i;41825:20::-;;;:::i;50348:111::-;42711:7;:5;:7::i;:::-;-1:-1:-1;;;;;42697:21:0;:10;-1:-1:-1;;;;;42697:21:0;;:45;;;-1:-1:-1;42736:6:0;;-1:-1:-1;;;;;42736:6:0;42722:10;:20;42697:45;42689:66;;;;;-1:-1:-1;;;42689:66:0;;;;;;;;;;;;-1:-1:-1;;;42689:66:0;;;;;;;;;;;;;;;50424:16:::1;:27:::0;;-1:-1:-1;;50424:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50348:111::o;50212:128::-;50285:47;;;-1:-1:-1;;;50285:47:0;;50326:4;50285:47;;;;;;50258:7;;46090:42;;50285:32;;:47;;;;;;;;;;;;;;;46090:42;50285:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50285:47:0;;-1:-1:-1;50212:128:0;:::o;45833:82::-;45872:42;45833:82;:::o;41762:25::-;;;-1:-1:-1;;;;;41762:25:0;;:::o;41794:24::-;;;-1:-1:-1;;;;;41794:24:0;;:::o;44840:200::-;42711:7;:5;:7::i;:::-;-1:-1:-1;;;;;42697:21:0;:10;-1:-1:-1;;;;;42697:21:0;;:45;;;-1:-1:-1;42736:6:0;;-1:-1:-1;;;;;42736:6:0;42722:10;:20;42697:45;42689:66;;;;;-1:-1:-1;;;42689:66:0;;;;;;;;;;;;-1:-1:-1;;;42689:66:0;;;;;;;;;;;;;;;44588:3:::1;44912:4;:20;;44904:37;;;::::0;;-1:-1:-1;;;44904:37:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;44904:37:0;;;;;;;;;;;;;::::1;;44962:7;:14:::0;;;44998:24;:34:::1;44987:8;:45:::0;44840:200::o;44552:39::-;44588:3;44552:39;:::o;47009:733::-;47086:5;;-1:-1:-1;;;;;47086:5:0;47072:10;:19;47064:38;;;;;-1:-1:-1;;;47064:38:0;;;;;;;;;;;;-1:-1:-1;;;47064:38:0;;;;;;;;;;;;;;;47133:37;;;-1:-1:-1;;;47133:37:0;;47164:4;47133:37;;;;;;47115:15;;45872:42;;47133:22;;:37;;;;;;;;;;;;;;;45872:42;47133:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47133:37:0;;-1:-1:-1;47187:17:0;;;47183:165;;;46090:42;47221:31;47253:20;:7;47265;47253:11;:20::i;:::-;47221:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47299:37:0;;;-1:-1:-1;;;47299:37:0;;47330:4;47299:37;;;;;;45872:42;;-1:-1:-1;47299:22:0;;-1:-1:-1;47299:37:0;;;;;;;;;;;;;;45872:42;47299:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47299:37:0;;-1:-1:-1;47183:165:0;47374:7;47364;:17;47360:67;;;-1:-1:-1;47408:7:0;47360:67;47456:7;:5;:7::i;:::-;-1:-1:-1;;;;;47443:20:0;:9;-1:-1:-1;;;;;47443:20:0;;:32;;;;47467:8;:6;:8::i;:::-;47439:296;;;47518:5;;47492:41;;45872:42;;-1:-1:-1;;;;;47518:5:0;47525:7;47492:25;:41::i;:::-;47439:296;;;47566:27;47596:46;44689:5;47596:26;47608:13;;47596:7;:11;;:26;;;;:::i;:::-;:30;;:46::i;:::-;47683:5;;47566:76;;-1:-1:-1;47657:66:0;;-1:-1:-1;;;;;47683:5:0;47690:32;:7;47566:76;47690:11;:32::i;:::-;45872:42;;47657:66;:25;:66::i;:::-;47439:296;;47009:733;;:::o;46157:54::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46157:54:0;;-1:-1:-1;46157:54:0;:::o;51139:121::-;42711:7;:5;:7::i;:::-;-1:-1:-1;;;;;42697:21:0;:10;-1:-1:-1;;;;;42697:21:0;;:45;;;-1:-1:-1;42736:6:0;;-1:-1:-1;;;;;42736:6:0;42722:10;:20;42697:45;42689:66;;;;;-1:-1:-1;;;42689:66:0;;;;;;;;;;;;-1:-1:-1;;;42689:66:0;;;;;;;;;;;;;;;51190:10:::1;:8;:10::i;:::-;51213:17;:15;:17::i;:::-;51243:9;:7;:9::i;:::-;51139:121::o:0;47932:504::-;40376:8;:6;:8::i;:::-;40375:9;40367:38;;;;;-1:-1:-1;;;40367:38:0;;;;;;;;;;;;-1:-1:-1;;;40367:38:0;;;;;;;;;;;;;;;47991:9:::1;48004:10;47991:23;::::0;:46:::1;;-1:-1:-1::0;48032:5:0::1;::::0;-1:-1:-1;;;;;48032:5:0::1;48018:10;:19;47991:46;47983:68;;;::::0;;-1:-1:-1;;;47983:68:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;47983:68:0;;;;;;;;;;;;;::::1;;48062:51;::::0;;-1:-1:-1;;;48062:51:0;;48107:4:::1;48062:51;::::0;::::1;::::0;;;46090:42:::1;::::0;48062:36:::1;::::0;:51;;;;;-1:-1:-1;;48062:51:0;;;;;;;-1:-1:-1;46090:42:0;48062:51;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;48143:36:0::1;::::0;;-1:-1:-1;;;48143:36:0;;48173:4:::1;48143:36;::::0;::::1;::::0;;;48126:14:::1;::::0;-1:-1:-1;45695:42:0::1;::::0;-1:-1:-1;48143:21:0::1;::::0;:36;;;;;::::1;::::0;;;;;;;;;45695:42;48143:36;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;48143:36:0;48210:39:::1;::::0;;-1:-1:-1;;;48210:39:0;;48243:4:::1;48210:39;::::0;::::1;::::0;;;48143:36;;-1:-1:-1;48190:17:0::1;::::0;45519:42:::1;::::0;48210:24:::1;::::0;:39;;;;;48143:36:::1;::::0;48210:39;;;;;;;45519:42;48210:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;48210:39:0;;-1:-1:-1;48264:13:0;;;;:27:::1;;;48290:1;48281:6;:10;48264:27;48260:169;;;48308:12;:10;:12::i;:::-;48335:14;:12;:14::i;:::-;48364:9;:7;:9::i;:::-;48393:24;::::0;48406:10:::1;::::0;48393:24:::1;::::0;;;::::1;40416:1;;47932:504::o:0;50907:121::-;42711:7;:5;:7::i;:::-;-1:-1:-1;;;;;42697:21:0;:10;-1:-1:-1;;;;;42697:21:0;;:45;;;-1:-1:-1;42736:6:0;;-1:-1:-1;;;;;42736:6:0;42722:10;:20;42697:45;42689:66;;;;;-1:-1:-1;;;42689:66:0;;;;;;;;;;;;-1:-1:-1;;;42689:66:0;;;;;;;;;;;;;;;50954:7:::1;:5;:7::i;:::-;46090:42;50972:31;51004:15;:13;:15::i;:::-;50972:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;50907:121::o:0;44651:43::-;44689:5;44651:43;:::o;47750:119::-;47808:16;;;;47804:58;;;47841:9;:7;:9::i;40050:86::-;40097:4;40121:7;-1:-1:-1;;;40121:7:0;;;;;40050:86::o;43772:::-;37989:12;:10;:12::i;:::-;-1:-1:-1;;;;;37978:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37978:23:0;;37970:68;;;;;-1:-1:-1;;;37970:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;37970:68:0;;;;;;;;;;;;;;;43836:5:::1;:14:::0;;-1:-1:-1;;;;;;43836:14:0::1;-1:-1:-1::0;;;;;43836:14:0;;;::::1;::::0;;;::::1;::::0;;43772:86::o;45657:81::-;45695:42;45657:81;:::o;38409:148::-;37989:12;:10;:12::i;:::-;-1:-1:-1;;;;;37978:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37978:23:0;;37970:68;;;;;-1:-1:-1;;;37970:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;37970:68:0;;;;;;;;;;;;;;;38516:1:::1;38500:6:::0;;38479:40:::1;::::0;-1:-1:-1;;;;;38500:6:0;;::::1;::::0;38479:40:::1;::::0;38516:1;;38479:40:::1;38547:1;38530:19:::0;;-1:-1:-1;;;;;;38530:19:0::1;::::0;;38409:148::o;49830:113::-;49872:7;49899:36;49919:15;:13;:15::i;:::-;49899;:13;:15::i;:::-;:19;;:36::i;:::-;49892:43;;49830:113;:::o;43044:92::-;42711:7;:5;:7::i;:::-;-1:-1:-1;;;;;42697:21:0;:10;-1:-1:-1;;;;;42697:21:0;;:45;;;-1:-1:-1;42736:6:0;;-1:-1:-1;;;;;42736:6:0;42722:10;:20;42697:45;42689:66;;;;;-1:-1:-1;;;42689:66:0;;;;;;;;;;;;-1:-1:-1;;;42689:66:0;;;;;;;;;;;;;;;43112:6:::1;:16:::0;;-1:-1:-1;;;;;;43112:16:0::1;-1:-1:-1::0;;;;;43112:16:0;;;::::1;::::0;;;::::1;::::0;;43044:92::o;44462:41::-;44500:3;44462:41;:::o;51036:95::-;42711:7;:5;:7::i;:::-;-1:-1:-1;;;;;42697:21:0;:10;-1:-1:-1;;;;;42697:21:0;;:45;;;-1:-1:-1;42736:6:0;;-1:-1:-1;;;;;42736:6:0;42722:10;:20;42697:45;42689:66;;;;;-1:-1:-1;;;42689:66:0;;;;;;;;;;;;-1:-1:-1;;;42689:66:0;;;;;;;;;;;;;;;51083:8:::1;:6;:8::i;:::-;51104:19;:17;:19::i;46281:36::-:0;;;;;;:::o;44703:30::-;;;;:::o;45745:81::-;45783:42;45745:81;:::o;37758:87::-;37804:7;37831:6;-1:-1:-1;;;;;37831:6:0;37758:87;:::o;41852:32::-;;;-1:-1:-1;;;;;41852:32:0;;:::o;44742:25::-;;;;:::o;46048:85::-;46090:42;46048:85;:::o;45569:81::-;45607:42;45569:81;:::o;43993:134::-;37989:12;:10;:12::i;:::-;-1:-1:-1;;;;;37978:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37978:23:0;;37970:68;;;;;-1:-1:-1;;;37970:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;37970:68:0;;;;;;;;;;;;;;;44081:17:::1;:38:::0;;-1:-1:-1;;;;;;44081:38:0::1;-1:-1:-1::0;;;;;44081:38:0;;;::::1;::::0;;;::::1;::::0;;43993:134::o;45048:156::-;42711:7;:5;:7::i;:::-;-1:-1:-1;;;;;42697:21:0;:10;-1:-1:-1;;;;;42697:21:0;;:45;;;-1:-1:-1;42736:6:0;;-1:-1:-1;;;;;42736:6:0;42722:10;:20;42697:45;42689:66;;;;;-1:-1:-1;;;42689:66:0;;;;;;;;;;;;-1:-1:-1;;;42689:66:0;;;;;;;;;;;;;;;44642:2:::1;45128:4;:26;;45120:43;;;::::0;;-1:-1:-1;;;45120:43:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;45120:43:0;;;;;;;;;;;;;::::1;;45176:13;:20:::0;45048:156::o;41734:21::-;;;-1:-1:-1;;;;;41734:21:0;;:::o;44510:35::-;44541:4;44510:35;:::o;50010:118::-;50083:37;;;-1:-1:-1;;;50083:37:0;;50114:4;50083:37;;;;;;50056:7;;45872:42;;50083:22;;:37;;;;;;;;;;;;;;;45872:42;50083:37;;;;;;;;;;43281:155;43367:10;;-1:-1:-1;;;;;43367:10:0;43353;:24;43345:48;;;;;-1:-1:-1;;;43345:48:0;;;;;;;;;;;;-1:-1:-1;;;43345:48:0;;;;;;;;;;;;;;;43404:10;:24;;-1:-1:-1;;;;;;43404:24:0;-1:-1:-1;;;;;43404:24:0;;;;;;;;;;43281:155::o;46218:54::-;;;;;;;;;;46792:209;40376:8;:6;:8::i;:::-;40375:9;40367:38;;;;;-1:-1:-1;;;40367:38:0;;;;;;;;;;;;-1:-1:-1;;;40367:38:0;;;;;;;;;;;;;;;46861:37:::1;::::0;;-1:-1:-1;;;46861:37:0;;46892:4:::1;46861:37;::::0;::::1;::::0;;;46843:15:::1;::::0;45872:42:::1;::::0;46861:22:::1;::::0;:37;;;;;::::1;::::0;;;;;;;;;45872:42;46861:37;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;46861:37:0;;-1:-1:-1;46915:11:0;;46911:83:::1;;46090:42;-1:-1:-1::0;;;;;46943:30:0::1;;46974:7;46943:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;46911:83;40416:1;46792:209::o:0;44774:57::-;;;;:::o;43568:102::-;37989:12;:10;:12::i;:::-;-1:-1:-1;;;;;37978:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37978:23:0;;37970:68;;;;;-1:-1:-1;;;37970:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;37970:68:0;;;;;;;;;;;;;;;43640:9:::1;:22:::0;;-1:-1:-1;;;;;;43640:22:0::1;-1:-1:-1::0;;;;;43640:22:0;;;::::1;::::0;;;::::1;::::0;;43568:102::o;45954:87::-;45998:42;45954:87;:::o;44600:44::-;44642:2;44600:44;:::o;38712:244::-;37989:12;:10;:12::i;:::-;-1:-1:-1;;;;;37978:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37978:23:0;;37970:68;;;;;-1:-1:-1;;;37970:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;37970:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38801:22:0;::::1;38793:73;;;;-1:-1:-1::0;;;38793:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38903:6;::::0;;38882:38:::1;::::0;-1:-1:-1;;;;;38882:38:0;;::::1;::::0;38903:6;::::1;::::0;38882:38:::1;::::0;::::1;38931:6;:17:::0;;-1:-1:-1;;;;;;38931:17:0::1;-1:-1:-1::0;;;;;38931:17:0;;;::::1;::::0;;;::::1;::::0;;38712:244::o;45478:84::-;45519:42;45478:84;:::o;50559:266::-;50624:5;;-1:-1:-1;;;;;50624:5:0;50610:10;:19;50602:38;;;;;-1:-1:-1;;;50602:38:0;;;;;;;;;;;;-1:-1:-1;;;50602:38:0;;;;;;;;;;;;;;;46090:42;50653:31;50685:15;:13;:15::i;:::-;50653:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50732:37:0;;;-1:-1:-1;;;50732:37:0;;50763:4;50732:37;;;;;;50714:15;;-1:-1:-1;45872:42:0;;-1:-1:-1;50732:22:0;;:37;;;;;;;;;;;;;;;45872:42;50732:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50732:37:0;50802:5;;;50780:37;;;-1:-1:-1;;;50780:37:0;;-1:-1:-1;;;;;50802:5:0;;;50780:37;;;;;;;;;;;;;;;50732;;-1:-1:-1;45872:42:0;;50780:21;;:37;;;;;50732;;50780;;;;;;;;-1:-1:-1;45872:42:0;50780:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41825:20;;;-1:-1:-1;;;;;41825:20:0;;:::o;31685:622::-;32055:10;;;32054:62;;-1:-1:-1;32071:39:0;;;-1:-1:-1;;;32071:39:0;;32095:4;32071:39;;;;-1:-1:-1;;;;;32071:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32071:39:0;:44;32054:62;32046:152;;;;-1:-1:-1;;;32046:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32236:62;;;-1:-1:-1;;;;;32236:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32236:62:0;-1:-1:-1;;;32236:62:0;;;32209:90;;32229:5;;32209:19;:90::i;26021:195::-;26124:12;26156:52;26178:6;26186:4;26192:1;26195:12;26156:21;:52::i;:::-;26149:59;;26021:195;;;;;;:::o;7087:158::-;7145:7;7178:1;7173;:6;;7165:49;;;;;-1:-1:-1;;;7165:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7232:5:0;;;7087:158;;;;;:::o;31026:177::-;31136:58;;;-1:-1:-1;;;;;31136:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31136:58:0;-1:-1:-1;;;31136:58:0;;;31109:86;;31129:5;;31109:19;:86::i;7504:220::-;7562:7;7586:6;7582:20;;-1:-1:-1;7601:1:0;7594:8;;7582:20;7625:5;;;7629:1;7625;:5;:1;7649:5;;;;;:10;7641:56;;;;-1:-1:-1;;;7641:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8202:153;8260:7;8292:1;8288;:5;8280:44;;;;;-1:-1:-1;;;8280:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8346:1;8342;:5;;;;;;;8202:153;-1:-1:-1;;;8202:153:0:o;41109:120::-;40653:8;:6;:8::i;:::-;40645:41;;;;;-1:-1:-1;;;40645:41:0;;;;;;;;;;;;-1:-1:-1;;;40645:41:0;;;;;;;;;;;;;;;41178:5:::1;41168:15:::0;;-1:-1:-1;;;;41168:15:0::1;::::0;;41199:22:::1;41208:12;:10;:12::i;:::-;41199:22;::::0;;-1:-1:-1;;;;;41199:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;41109:120::o:0;51268:290::-;51315:49;45872:42;46090;-1:-1:-1;;51315:24:0;:49::i;:::-;51402:9;;51375:53;;45519:42;;-1:-1:-1;;;;;51402:9:0;-1:-1:-1;;51375:26:0;:53::i;:::-;51463:9;;51439:50;;45695:42;;-1:-1:-1;;;;;51463:9:0;-1:-1:-1;;51439:23:0;:50::i;:::-;51500;45607:42;45998;-1:-1:-1;;51500:23:0;:50::i;48469:799::-;48528:36;;;-1:-1:-1;;;48528:36:0;;48558:4;48528:36;;;;;;48511:14;;45695:42;;48528:21;;:36;;;;;;;;;;;;;;;45695:42;48528:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48528:36:0;;-1:-1:-1;48579:10:0;;48575:157;;48624:9;;48606:114;;-1:-1:-1;;;48606:114:0;;;;;;;;48624:9;48606:114;;;;;;48697:4;48606:114;;;;;;48704:15;48606:114;;;;;;;;;;;;;48671:16;48606:114;;;;;;;;-1:-1:-1;;;;;48624:9:0;;;;48606:53;;48660:6;;48671:16;;48697:4;48704:15;48606:114;;;;;;48671:16;;48606:114;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48606:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48606:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48606:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48575:157;48744:20;48767:57;48819:4;48767:47;48811:2;45519:42;-1:-1:-1;;;;;48767:24:0;;48800:4;48767:39;;;;;;;;;;;;;-1:-1:-1;;;;;48767:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48767:39:0;;:43;:47::i;:57::-;48744:80;;48837:21;48861:38;44541:4;48861:25;48878:7;;48861:12;:16;;:25;;;;:::i;:38::-;48837:62;-1:-1:-1;48910:53:0;45519:42;48938:9;48837:62;48910:27;:53::i;:::-;48976:22;49001:39;44541:4;49001:26;49018:8;;49001:12;:16;;:26;;;;:::i;:39::-;49079:17;;48976:64;;-1:-1:-1;49051:62:0;;45519:42;;-1:-1:-1;;;;;49079:17:0;48976:64;49051:27;:62::i;:::-;49126:21;49150:45;44541:4;49150:32;:12;44500:3;49150:16;:32::i;:45::-;49234:10;;49126:69;;-1:-1:-1;49206:54:0;;45519:42;;-1:-1:-1;;;;;49234:10:0;49126:69;49206:27;:54::i;49331:425::-;49395:39;;;-1:-1:-1;;;49395:39:0;;49428:4;49395:39;;;;;;49375:17;;45519:42;;49395:24;;:39;;;;;;;;;;;;;;;45519:42;49395:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49395:39:0;49463:9;;49445:117;;-1:-1:-1;;;49445:117:0;;;;;;;;49463:9;49445:117;;;;;;49539:4;49445:117;;;;;;49546:15;49445:117;;;;;;;;;;;;;49513:16;49445:117;;;;;;;;49395:39;;-1:-1:-1;;;;;;49463:9:0;;;;49445:53;;49395:39;;49463:9;;49513:16;;49445:117;;;;;;;;49513:16;;49445:117;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49445:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49445:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49445:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;49445:117:0;;;;;;;;-1:-1:-1;;;49592:36:0;;49622:4;49592:36;;;;;49575:14;;-1:-1:-1;45607:42:0;;-1:-1:-1;49592:21:0;;-1:-1:-1;49592:36:0;;;;;-1:-1:-1;49592:36:0;;-1:-1:-1;49592:36:0;;;;;;;45607:42;49592:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49592:36:0;;-1:-1:-1;49639:25:0;;:::i;:::-;:39;;;;;;;;49668:6;49639:39;;;;49676:1;49639:39;;;;;45998:42;-1:-1:-1;;;;;49689:41:0;;49731:7;49740:1;49743:4;49689:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49331:425;;;:::o;667:106::-;755:10;667:106;:::o;6625:179::-;6683:7;6715:5;;;6739:6;;;;6731:46;;;;;-1:-1:-1;;;6731:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;40850:118;40376:8;:6;:8::i;:::-;40375:9;40367:38;;;;;-1:-1:-1;;;40367:38:0;;;;;;;;;;;;-1:-1:-1;;;40367:38:0;;;;;;;;;;;;;;;40910:7:::1;:14:::0;;-1:-1:-1;;;;40910:14:0::1;-1:-1:-1::0;;;40910:14:0::1;::::0;;40940:20:::1;40947:12;:10;:12::i;51566:240::-:0;51615:36;45872:42;46090;51649:1;51615:24;:36::i;:::-;51689:9;;51662:40;;45519:42;;-1:-1:-1;;;;;51689:9:0;;51662:26;:40::i;:::-;51737:9;;51713:37;;45695:42;;-1:-1:-1;;;;;51737:9:0;;51713:23;:37::i;:::-;51761;45607:42;45998;51796:1;51761:23;:37::i;33331:761::-;33755:23;33781:69;33809:4;33781:69;;;;;;;;;;;;;;;;;33789:5;-1:-1:-1;;;;;33781:27:0;;;:69;;;;;:::i;:::-;33865:17;;33755:95;;-1:-1:-1;33865:21:0;33861:224;;34007:10;33996:30;;;;;;;;;;;;;;;-1:-1:-1;33996:30:0;33988:85;;;;-1:-1:-1;;;33988:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27073:530;27200:12;27258:5;27233:21;:30;;27225:81;;;;-1:-1:-1;;;27225:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27325:18;27336:6;27325:10;:18::i;:::-;27317:60;;;;;-1:-1:-1;;;27317:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27451:12;27465:23;27492:6;-1:-1:-1;;;;;27492:11:0;27512:5;27520:4;27492:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;27492:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27450:75;;;;27543:52;27561:7;27570:10;27582:12;27543:17;:52::i;:::-;27536:59;27073:530;-1:-1:-1;;;;;;;27073:530:0:o;23103:422::-;23470:20;23509:8;;;23103:422::o;29613:742::-;29728:12;29757:7;29753:595;;;-1:-1:-1;29788:10:0;29781:17;;29753:595;29902:17;;:21;29898:439;;30165:10;30159:17;30226:15;30213:10;30209:2;30205:19;30198:44;30113:148;30308:12;30301:20;;-1:-1:-1;;;30301:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://68fc424c2b063239be781cb43e09707cab3bd10157727eabea7f7d0e66cd4fef
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.