Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0xad9233a58d18656cab81c9442da1e4cfb173b49b9c3c1f53917b1cd1f4a527a5 | 14388048 | 543 days 20 hrs ago | Beefy Finance: Deployer 2 | Contract Creation | 0 FTM |
[ Download CSV Export ]
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0x1266D675de4d88C402C1c738927f379d278D448c
Contract Name:
StrategyScream
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2021-08-12 */ // SPDX-License-Identifier: MIT 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/access/[email protected] 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/token/ERC20/[email protected] 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/[email protected] 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/[email protected] 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/[email protected] 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/[email protected] 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 @openzeppelin/contracts/utils/[email protected] 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/interfaces/common/IUniswapRouter.sol pragma solidity ^0.6.0; interface IUniswapRouter { function factory() external pure returns (address); function WBNB() external pure returns (address); 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 addLiquidityBNB( address token, uint amountTokenDesired, uint amountTokenMin, uint amountBNBMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountBNB, 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 removeLiquidityBNB( address token, uint liquidity, uint amountTokenMin, uint amountBNBMin, address to, uint deadline ) external returns (uint amountToken, uint amountBNB); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityBNBWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountBNBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountBNB); function removeLiquidityBNBSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountBNBMin, address to, uint deadline ) external returns (uint amountBNB); function removeLiquidityBNBWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountBNBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountBNB); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactBNBForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForBNBSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactBNBForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactBNB(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForBNB(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapBNBForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File contracts/BIFI/interfaces/lendhub/IComptroller.sol pragma solidity ^0.6.0; interface IComptroller { function claimComp(address holder, address[] calldata _iTokens) external; function claimComp(address holder) external; function enterMarkets(address[] memory _iTokens) external; function pendingComptrollerImplementation() view external returns (address implementation); } // File contracts/BIFI/interfaces/venus/IVToken.sol pragma solidity ^0.6.0; interface IVToken is IERC20 { function underlying() external returns (address); function mint(uint mintAmount) external returns (uint); function redeem(uint redeemTokens) external returns (uint); function redeemUnderlying(uint redeemAmount) external returns (uint); function borrow(uint borrowAmount) external returns (uint); function repayBorrow(uint repayAmount) external returns (uint); function balanceOfUnderlying(address owner) external returns (uint); function borrowBalanceCurrent(address account) external returns (uint); function comptroller() external returns (address); } // 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) public onlyManager { require(_fee <= WITHDRAWAL_FEE_CAP, "!cap"); withdrawalFee = _fee; } } // File contracts/BIFI/strategies/Scream/StrategyScream.sol pragma solidity ^0.6.12; //Lending Strategy contract StrategyScream is StratManager, FeeManager { using SafeERC20 for IERC20; using SafeMath for uint256; // Tokens used address public native; address public output; address public want; address public iToken; // Third party contracts address constant public comptroller = 0x260E596DAbE3AFc463e75B6CC05d8c46aCAcFB09; // Routes address[] public outputToNativeRoute; address[] public outputToWantRoute; address[] public markets; bool public harvestOnDeposit; /** * @dev Variables that can be changed to config profitability and risk: * {borrowRate} - What % of our collateral do we borrow per leverage level. * {borrowRateMax} - A limit on how much we can push borrow risk. * {borrowDepth} - How many levels of leverage do we take. * {minLeverage} - The minimum amount of collateral required to leverage. * {BORROW_DEPTH_MAX} - A limit on how many steps we can leverage. * {INTEREST_RATE_MODE} - The type of borrow debt. Stable: 1, Variable: 2. */ uint256 public borrowRate; uint256 public borrowRateMax; uint256 public borrowDepth; uint256 public minLeverage; uint256 constant public BORROW_DEPTH_MAX = 10; /** * @dev Helps to differentiate borrowed funds that shouldn't be used in functions like 'deposit()' * as they're required to deleverage correctly. */ uint256 public reserves; uint256 public balanceOfPool; /** * @dev Events that the contract emits */ event StratHarvest(address indexed harvester); event StratRebalance(uint256 _borrowRate, uint256 _borrowDepth); constructor( uint256 _borrowRate, uint256 _borrowRateMax, uint256 _borrowDepth, uint256 _minLeverage, address[] memory _outputToNativeRoute, address[] memory _outputToWantRoute, address[] memory _markets, address _vault, address _unirouter, address _keeper, address _strategist, address _beefyFeeRecipient ) StratManager(_keeper, _strategist, _unirouter, _vault, _beefyFeeRecipient) public { borrowRate = _borrowRate; borrowRateMax = _borrowRateMax; borrowDepth = _borrowDepth; minLeverage = _minLeverage; iToken = _markets[0]; markets = _markets; want = IVToken(iToken).underlying(); output = _outputToNativeRoute[0]; native = _outputToNativeRoute[_outputToNativeRoute.length - 1]; outputToNativeRoute = _outputToNativeRoute; require(_outputToWantRoute[0] == output, "outputToWantRoute[0] != output"); require(_outputToWantRoute[_outputToWantRoute.length - 1] == want, "outputToNativeRoute[last] != want"); outputToWantRoute = _outputToWantRoute; _giveAllowances(); super.setCallFee(11); IComptroller(comptroller).enterMarkets(markets); } // puts the funds to work function deposit() public whenNotPaused { uint256 wantBal = availableWant(); if (wantBal > 0) { _leverage(wantBal); } } /** * @dev Repeatedly supplies and borrows {want} following the configured {borrowRate} and {borrowDepth} * @param _amount amount of {want} to leverage */ function _leverage(uint256 _amount) internal { if (_amount < minLeverage) { return; } for (uint i = 0; i < borrowDepth; i++) { IVToken(iToken).mint(_amount); _amount = _amount.mul(borrowRate).div(100); IVToken(iToken).borrow(_amount); } reserves = reserves.add(_amount); updateBalance(); } /** * @dev Incrementally alternates between paying part of the debt and withdrawing part of the supplied * collateral. Continues to do this until it repays the entire debt and withdraws all the supplied {want} * from the system */ function _deleverage() internal { uint256 wantBal = IERC20(want).balanceOf(address(this)); uint256 borrowBal = IVToken(iToken).borrowBalanceCurrent(address(this)); while (wantBal < borrowBal) { IVToken(iToken).repayBorrow(wantBal); borrowBal = IVToken(iToken).borrowBalanceCurrent(address(this)); uint256 targetSupply = borrowBal.mul(100).div(borrowRate); uint256 supplyBal = IVToken(iToken).balanceOfUnderlying(address(this)); IVToken(iToken).redeemUnderlying(supplyBal.sub(targetSupply)); wantBal = IERC20(want).balanceOf(address(this)); } IVToken(iToken).repayBorrow(uint256(-1)); uint256 iTokenBal = IERC20(iToken).balanceOf(address(this)); IVToken(iToken).redeem(iTokenBal); reserves = 0; updateBalance(); } /** * @dev Extra safety measure that allows us to manually unwind one level. In case we somehow get into * as state where the cost of unwinding freezes the system. We can manually unwind a few levels * with this function and then 'rebalance()' with new {borrowRate} and {borrowConfig} values. * @param _borrowRate configurable borrow rate in case it's required to unwind successfully */ function deleverageOnce(uint _borrowRate) external onlyManager { require(_borrowRate <= borrowRateMax, "!safe"); uint256 wantBal = IERC20(want).balanceOf(address(this)); IVToken(iToken).repayBorrow(wantBal); uint256 borrowBal = IVToken(iToken).borrowBalanceCurrent(address(this)); uint256 targetSupply = borrowBal.mul(100).div(_borrowRate); uint256 supplyBal = IVToken(iToken).balanceOfUnderlying(address(this)); IVToken(iToken).redeemUnderlying(supplyBal.sub(targetSupply)); wantBal = IERC20(want).balanceOf(address(this)); reserves = wantBal; updateBalance(); } /** * @dev Updates the risk profile and rebalances the vault funds accordingly. * @param _borrowRate percent to borrow on each leverage level. * @param _borrowDepth how many levels to leverage the funds. */ function rebalance(uint256 _borrowRate, uint256 _borrowDepth) external onlyManager { require(_borrowRate <= borrowRateMax, "!rate"); require(_borrowDepth <= BORROW_DEPTH_MAX, "!depth"); _deleverage(); borrowRate = _borrowRate; borrowDepth = _borrowDepth; uint256 wantBal = IERC20(want).balanceOf(address(this)); _leverage(wantBal); StratRebalance(_borrowRate, _borrowDepth); } // compounds earnings and charges performance fee function harvest() public whenNotPaused { require(tx.origin == msg.sender || msg.sender == vault, "!contract"); if (IComptroller(comptroller).pendingComptrollerImplementation() == address(0)) { IComptroller(comptroller).claimComp(address(this), markets); chargeFees(); swapRewards(); deposit(); } else { panic(); } emit StratHarvest(msg.sender); } // performance fees function chargeFees() internal { uint256 toNative = IERC20(output).balanceOf(address(this)).mul(45).div(1000); IUniswapRouter(unirouter).swapExactTokensForTokens(toNative, 0, outputToNativeRoute, address(this), now); uint256 nativeBal = IERC20(native).balanceOf(address(this)); uint256 callFeeAmount = nativeBal.mul(callFee).div(MAX_FEE); IERC20(native).safeTransfer(tx.origin, callFeeAmount); uint256 beefyFeeAmount = nativeBal.mul(beefyFee).div(MAX_FEE); IERC20(native).safeTransfer(beefyFeeRecipient, beefyFeeAmount); uint256 strategistFee = nativeBal.mul(STRATEGIST_FEE).div(MAX_FEE); IERC20(native).safeTransfer(strategist, strategistFee); } // swap rewards to {want} function swapRewards() internal { uint256 outputBal = IERC20(output).balanceOf(address(this)); IUniswapRouter(unirouter).swapExactTokensForTokens(outputBal, 0, outputToWantRoute, address(this), now); } /** * @dev Withdraws funds and sends them back to the vault. It deleverages from venus first, * and then deposits again after the withdraw to make sure it mantains the desired ratio. * @param _amount How much {want} to withdraw. */ function withdraw(uint256 _amount) external { require(msg.sender == vault, "!vault"); uint256 wantBal = availableWant(); if (wantBal < _amount) { _deleverage(); 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)); } if (!paused()) { _leverage(availableWant()); } } /** * @dev Required for various functions that need to deduct {reserves} from total {want}. * @return how much {want} the contract holds without reserves */ function availableWant() public view returns (uint256) { uint256 wantBal = IERC20(want).balanceOf(address(this)); return wantBal.sub(reserves); } function beforeDeposit() external override { if (harvestOnDeposit) { harvest(); } updateBalance(); } // return supply and borrow balance function updateBalance() public { uint256 supplyBal = IVToken(iToken).balanceOfUnderlying(address(this)); uint256 borrowBal = IVToken(iToken).borrowBalanceCurrent(address(this)); balanceOfPool = supplyBal.sub(borrowBal); } // 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)); } function setHarvestOnDeposit(bool _harvest) external onlyManager { harvestOnDeposit = _harvest; if (harvestOnDeposit == true) { super.setWithdrawalFee(0); } else { super.setWithdrawalFee(10); } } // called as part of strat migration. Sends all the available funds back to the vault. function retireStrat() external { require(msg.sender == vault, "!vault"); _deleverage(); 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 { _deleverage(); pause(); } function pause() public onlyManager { _pause(); _removeAllowances(); } function unpause() external onlyManager { _unpause(); _giveAllowances(); deposit(); } function _giveAllowances() internal { IERC20(want).safeApprove(iToken, uint256(-1)); IERC20(output).safeApprove(unirouter, uint256(-1)); } function _removeAllowances() internal { IERC20(want).safeApprove(iToken, 0); IERC20(output).safeApprove(unirouter, 0); } function outputToNative() external view returns(address[] memory) { return outputToNativeRoute; } function outputToWant() external view returns(address[] memory) { return outputToWantRoute; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_borrowRate","type":"uint256"},{"internalType":"uint256","name":"_borrowRateMax","type":"uint256"},{"internalType":"uint256","name":"_borrowDepth","type":"uint256"},{"internalType":"uint256","name":"_minLeverage","type":"uint256"},{"internalType":"address[]","name":"_outputToNativeRoute","type":"address[]"},{"internalType":"address[]","name":"_outputToWantRoute","type":"address[]"},{"internalType":"address[]","name":"_markets","type":"address[]"},{"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":"uint256","name":"_borrowRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_borrowDepth","type":"uint256"}],"name":"StratRebalance","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BORROW_DEPTH_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"availableWant","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":"borrowDepth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"borrowRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"borrowRateMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"callFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"comptroller","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_borrowRate","type":"uint256"}],"name":"deleverageOnce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"nonpayable","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":"iToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"keeper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"markets","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minLeverage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"native","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"output","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"outputToNative","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToNativeRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"outputToWant","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToWantRoute","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":[{"internalType":"uint256","name":"_borrowRate","type":"uint256"},{"internalType":"uint256","name":"_borrowDepth","type":"uint256"}],"name":"rebalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"retireStrat","outputs":[],"stateMutability":"nonpayable","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":[{"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":"updateBalance","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"}]
Contract Creation Code
6080604052600a600655606f6007556103096008553480156200002157600080fd5b5060405162003fd038038062003fd083398181016040526101808110156200004857600080fd5b81516020830151604080850151606086015160808701805193519597949692959194919392820192846401000000008211156200008457600080fd5b9083019060208201858111156200009a57600080fd5b8251866020820283011164010000000082111715620000b857600080fd5b82525081516020918201928201910280838360005b83811015620000e7578181015183820152602001620000cd565b50505050905001604052602001805160405193929190846401000000008211156200011157600080fd5b9083019060208201858111156200012757600080fd5b82518660208202830111640100000000821117156200014557600080fd5b82525081516020918201928201910280838360005b83811015620001745781810151838201526020016200015a565b50505050905001604052602001805160405193929190846401000000008211156200019e57600080fd5b908301906020820185811115620001b457600080fd5b8251866020820283011164010000000082111715620001d257600080fd5b82525081516020918201928201910280838360005b8381101562000201578181015183820152602001620001e7565b505050509190910160409081526020830151908301516060840151608085015160a090950151929650909450929150828285878460006200024162000673565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000805460ff60a01b19168155600180546001600160a01b03199081166001600160a01b039889161790915560028054821696881696909617909555600380548616948716949094179093556004805485169286169290921790915560058054909316931692909217905560118d905560128c905560138b905560148a905586518791906200031657fe5b602090810291909101810151600c80546001600160a01b0319166001600160a01b0390921691909117905586516200035591600f919089019062000bb4565b50600c60009054906101000a90046001600160a01b03166001600160a01b0316636f307dc36040518163ffffffff1660e01b8152600401602060405180830381600087803b158015620003a757600080fd5b505af1158015620003bc573d6000803e3d6000fd5b505050506040513d6020811015620003d357600080fd5b5051600b80546001600160a01b0319166001600160a01b03909216919091179055875188906000906200040257fe5b6020026020010151600a60006101000a8154816001600160a01b0302191690836001600160a01b03160217905550876001895103815181106200044157fe5b602090810291909101810151600980546001600160a01b0319166001600160a01b0390921691909117905588516200048091600d91908b019062000bb4565b50600a5487516001600160a01b039091169088906000906200049e57fe5b60200260200101516001600160a01b03161462000502576040805162461bcd60e51b815260206004820152601e60248201527f6f7574707574546f57616e74526f7574655b305d20213d206f75747075740000604482015290519081900360640190fd5b600b5487516001600160a01b0390911690889060001981019081106200052457fe5b60200260200101516001600160a01b031614620005735760405162461bcd60e51b815260040180806020018281038252602181526020018062003f296021913960400191505060405180910390fd5b86516200058890600e9060208a019062000bb4565b506200059362000677565b620005aa600b620006d360201b620008b31760201c565b604051631853304760e31b8152602060048201908152600f80546024840181905273260e596dabe3afc463e75b6cc05d8c46acacfb099363c29982389391829160440190849080156200062757602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000608575b505092505050600060405180830381600087803b1580156200064857600080fd5b505af11580156200065d573d6000803e3d6000fd5b5050505050505050505050505050505062000c3f565b3390565b600c54600b54620006a4916001600160a01b03918216911660001962000792602090811b62001eba17901c565b600354600a54620006d1916001600160a01b03918216911660001962000792602090811b62001eba17901c565b565b620006dd620008b6565b6001600160a01b0316336001600160a01b031614806200070757506001546001600160a01b031633145b62000744576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b606f81111562000784576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600781905561037803600855565b8015806200081c575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015620007ec57600080fd5b505afa15801562000801573d6000803e3d6000fd5b505050506040513d60208110156200081857600080fd5b5051155b620008595760405162461bcd60e51b815260040180806020018281038252603681526020018062003f9a6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0390811663095ea7b360e01b17909152620008b1918591620008c516565b505050565b6000546001600160a01b031690565b606062000921826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166200098160201b62001fcd179092919060201c565b805190915015620008b1578080602001905160208110156200094257600080fd5b5051620008b15760405162461bcd60e51b815260040180806020018281038252602a81526020018062003f70602a913960400191505060405180910390fd5b60606200099284846000856200099c565b90505b9392505050565b606082471015620009df5760405162461bcd60e51b815260040180806020018281038252602681526020018062003f4a6026913960400191505060405180910390fd5b620009ea8562000b04565b62000a3c576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831062000a7d5780518252601f19909201916020918201910162000a5c565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811462000ae1576040519150601f19603f3d011682016040523d82523d6000602084013e62000ae6565b606091505b50909250905062000af982828662000b0a565b979650505050505050565b3b151590565b6060831562000b1b57508162000995565b82511562000b2c5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000b7857818101518382015260200162000b5e565b50505050905090810190601f16801562000ba65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b82805482825590600052602060002090810192821562000c0c579160200282015b8281111562000c0c57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000bd5565b5062000c1a92915062000c1e565b5090565b5b8082111562000c1a5780546001600160a01b031916815560010162000c1f565b6132da8062000c4f6000396000f3fe608060405234801561001057600080fd5b50600436106103835760003560e01c80638456cb59116101de578063be12a9781161010f578063d92f3d73116100ad578063f20eaeb81161007c578063f20eaeb81461071f578063f2fde38b14610727578063fb6177871461074d578063fbfa77cf1461075557610383565b8063d92f3d73146106b1578063dd93d6b3146106d7578063df8879b8146106f4578063dfbdc4371461071757610383565b8063c914b437116100e9578063c914b43714610691578063cc7cb29b14610699578063d0e30db0146106a1578063d3102589146106a957610383565b8063be12a97814610646578063c1a3d44c14610663578063c7b9d5301461066b57610383565b8063a68833e51161017c578063aced166111610156578063aced166114610611578063b1283e7714610619578063b4896ecc14610636578063bc063e1a1461063e57610383565b8063a68833e5146105c6578063a9559dd7146105ec578063ac1e5025146105f457610383565b80638da5cb5b116101b85780638da5cb5b146105a65780638e145459146105ae57806390321e1a146105b657806397684317146105be57610383565b80638456cb591461058e5780638912cb8b146105965780638bc7e8c41461059e57610383565b8063408cfe24116102b85780635fe3b56711610256578063722713f711610230578063722713f714610550578063748747e61461055857806375172a8b1461057e5780637d38ca651461058657610383565b80635fe3b5671461051a5780636817031b14610522578063715018a61461054857610383565b806354518b1a1161029257806354518b1a146104d1578063573fef0a146104d9578063586601ac146104e15780635c975abb146104fe57610383565b8063408cfe24146104b95780634641257d146104c15780634700d305146104c957610383565b806320f6f76f116103255780632ad5a53f116102ff5780632ad5a53f146104845780632e1a7d4d1461048c57806338efebd3146104a95780633f4ba83a146104b157610383565b806320f6f76f14610457578063257ae0de1461045f578063264658261461046757610383565b806311b0b42d1161036157806311b0b42d146103cb57806313e120b1146103ef5780631f1fcd51146104475780631fe4a6861461044f57610383565b80630e5ad9f1146103885780630e8fbb5a146103a257806311588086146103c3575b600080fd5b61039061075d565b60408051918252519081900360200190f35b6103c1600480360360208110156103b857600080fd5b50351515610763565b005b610390610809565b6103d361080f565b604080516001600160a01b039092168252519081900360200190f35b6103f761081e565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561043357818101518382015260200161041b565b505050509050019250505060405180910390f35b6103d3610880565b6103d361088f565b61039061089e565b6103d36108a4565b6103c16004803603602081101561047d57600080fd5b50356108b3565b61039061096d565b6103c1600480360360208110156104a257600080fd5b5035610972565b610390610b21565b6103c1610bb4565b6103d3610c3b565b6103c1610c4a565b6103c1610e8f565b610390610f0c565b6103c1610f12565b6103c1600480360360208110156104f757600080fd5b5035610f2d565b6105066112e3565b604080519115158252519081900360200190f35b6103d36112f3565b6103c16004803603602081101561053857600080fd5b50356001600160a01b031661130b565b6103c161138f565b61039061143b565b6103c16004803603602081101561056e57600080fd5b50356001600160a01b0316611456565b6103906114e5565b6103906114eb565b6103c16114f0565b61050661156d565b610390611576565b6103d361157c565b6103d361158b565b61039061159a565b6103906115a0565b6103c1600480360360208110156105dc57600080fd5b50356001600160a01b03166115a6565b6103c161162a565b6103c16004803603602081101561060a57600080fd5b5035611733565b6103d36117e4565b6103d36004803603602081101561062f57600080fd5b50356117f3565b61039061181a565b61039061181f565b6103d36004803603602081101561065c57600080fd5b5035611825565b610390611832565b6103c16004803603602081101561068157600080fd5b50356001600160a01b03166118ae565b61039061191d565b6103f7611923565b6103c1611983565b6103906119eb565b6103c1600480360360208110156106c757600080fd5b50356001600160a01b03166119f1565b6103d3600480360360208110156106ed57600080fd5b5035611a75565b6103c16004803603604081101561070a57600080fd5b5080359060200135611a82565b610390611c41565b6103d3611c46565b6103c16004803603602081101561073d57600080fd5b50356001600160a01b0316611c55565b6103c1611d57565b6103d3611eab565b60125481565b61076b61157c565b6001600160a01b0316336001600160a01b0316148061079457506001546001600160a01b031633145b6107d0576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6010805460ff1916821515179081905560ff161515600114156107fc576107f76000611733565b610806565b610806600a611733565b50565b60165481565b6009546001600160a01b031681565b6060600d80548060200260200160405190810160405280929190818152602001828054801561087657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610858575b5050505050905090565b600b546001600160a01b031681565b6002546001600160a01b031681565b60145481565b6003546001600160a01b031681565b6108bb61157c565b6001600160a01b0316336001600160a01b031614806108e457506001546001600160a01b031633145b610920576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b606f81111561095f576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600781905561037803600855565b606f81565b6004546001600160a01b031633146109ba576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b60006109c4610b21565b905081811015610a50576109d6611fe6565b600b54604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610a2157600080fd5b505afa158015610a35573d6000803e3d6000fd5b505050506040513d6020811015610a4b57600080fd5b505190505b81811115610a5b5750805b610a6361157c565b6001600160a01b0316326001600160a01b03161480610a855750610a856112e3565b15610aac57600454600b54610aa7916001600160a01b039182169116836124ec565b610b01565b6000610acf612710610ac96006548561253e90919063ffffffff16565b906125a0565b600454909150610aff906001600160a01b0316610aec8484612607565b600b546001600160a01b031691906124ec565b505b610b096112e3565b610b1d57610b1d610b18610b21565b612664565b5050565b600b54604080516370a0823160e01b8152306004820152905160009283926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015610b7157600080fd5b505afa158015610b85573d6000803e3d6000fd5b505050506040513d6020811015610b9b57600080fd5b5051601554909150610bae908290612607565b91505090565b610bbc61157c565b6001600160a01b0316336001600160a01b03161480610be557506001546001600160a01b031633145b610c21576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610c296127ad565b610c31612850565b610c39611983565b565b600c546001600160a01b031681565b610c526112e3565b15610c97576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b32331480610caf57506004546001600160a01b031633145b610cec576040805162461bcd60e51b81526020600482015260096024820152680858dbdb9d1c9858dd60ba1b604482015290519081900360640190fd5b60006001600160a01b031673260e596dabe3afc463e75b6cc05d8c46acacfb096001600160a01b031663dcfbc0c76040518163ffffffff1660e01b815260040160206040518083038186803b158015610d4457600080fd5b505afa158015610d58573d6000803e3d6000fd5b505050506040513d6020811015610d6e57600080fd5b50516001600160a01b03161415610e5a576040805162e1ed9760e51b8152306004820181815260248301938452600f80546044850181905273260e596dabe3afc463e75b6cc05d8c46acacfb0995631c3db2e095929392909160649091019084908015610e0457602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610de6575b50509350505050600060405180830381600087803b158015610e2557600080fd5b505af1158015610e39573d6000803e3d6000fd5b50505050610e4561288e565b610e4d612bd6565b610e55611983565b610e62565b610e62610e8f565b60405133907f577a37fdb49a88d66684922c6f913df5239b4f214b2b97c53ef8e3bbb2034cb590600090a2565b610e9761157c565b6001600160a01b0316336001600160a01b03161480610ec057506001546001600160a01b031633145b610efc576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610f04611fe6565b610c396114f0565b61271081565b60105460ff1615610f2557610f25610c4a565b610c3961162a565b610f3561157c565b6001600160a01b0316336001600160a01b03161480610f5e57506001546001600160a01b031633145b610f9a576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b601254811115610fd9576040805162461bcd60e51b8152602060048201526005602482015264217361666560d81b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561102457600080fd5b505afa158015611038573d6000803e3d6000fd5b505050506040513d602081101561104e57600080fd5b5051600c546040805163073a938160e11b81526004810184905290519293506001600160a01b0390911691630e752702916024808201926020929091908290030181600087803b1580156110a157600080fd5b505af11580156110b5573d6000803e3d6000fd5b505050506040513d60208110156110cb57600080fd5b5050600c54604080516305eff7ef60e21b815230600482015290516000926001600160a01b0316916317bfdfbc91602480830192602092919082900301818787803b15801561111957600080fd5b505af115801561112d573d6000803e3d6000fd5b505050506040513d602081101561114357600080fd5b50519050600061115884610ac984606461253e565b600c5460408051633af9e66960e01b815230600482015290519293506000926001600160a01b0390921691633af9e6699160248082019260209290919082900301818787803b1580156111aa57600080fd5b505af11580156111be573d6000803e3d6000fd5b505050506040513d60208110156111d457600080fd5b5051600c549091506001600160a01b031663852a12e36111f48385612607565b6040518263ffffffff1660e01b815260040180828152602001915050602060405180830381600087803b15801561122a57600080fd5b505af115801561123e573d6000803e3d6000fd5b505050506040513d602081101561125457600080fd5b5050600b54604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156112a157600080fd5b505afa1580156112b5573d6000803e3d6000fd5b505050506040513d60208110156112cb57600080fd5b5051601581905593506112dc61162a565b5050505050565b600054600160a01b900460ff1690565b73260e596dabe3afc463e75b6cc05d8c46acacfb0981565b611313612ddd565b6001600160a01b031661132461157c565b6001600160a01b03161461136d576040805162461bcd60e51b81526020600482018190526024820152600080516020613225833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b611397612ddd565b6001600160a01b03166113a861157c565b6001600160a01b0316146113f1576040805162461bcd60e51b81526020600482018190526024820152600080516020613225833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600061145160165461144b611832565b90612de1565b905090565b61145e61157c565b6001600160a01b0316336001600160a01b0316148061148757506001546001600160a01b031633145b6114c3576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60155481565b607081565b6114f861157c565b6001600160a01b0316336001600160a01b0316148061152157506001546001600160a01b031633145b61155d576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b611565612e3b565b610c39612ec4565b60105460ff1681565b60065481565b6000546001600160a01b031690565b6005546001600160a01b031681565b60075481565b60135481565b6115ae612ddd565b6001600160a01b03166115bf61157c565b6001600160a01b031614611608576040805162461bcd60e51b81526020600482018190526024820152600080516020613225833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b600c5460408051633af9e66960e01b815230600482015290516000926001600160a01b031691633af9e66991602480830192602092919082900301818787803b15801561167657600080fd5b505af115801561168a573d6000803e3d6000fd5b505050506040513d60208110156116a057600080fd5b5051600c54604080516305eff7ef60e21b815230600482015290519293506000926001600160a01b03909216916317bfdfbc9160248082019260209290919082900301818787803b1580156116f457600080fd5b505af1158015611708573d6000803e3d6000fd5b505050506040513d602081101561171e57600080fd5b5051905061172c8282612607565b6016555050565b61173b61157c565b6001600160a01b0316336001600160a01b0316148061176457506001546001600160a01b031633145b6117a0576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b60328111156117df576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600655565b6001546001600160a01b031681565b600f818154811061180057fe5b6000918252602090912001546001600160a01b0316905081565b600a81565b6103e881565b600d818154811061180057fe5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561187d57600080fd5b505afa158015611891573d6000803e3d6000fd5b505050506040513d60208110156118a757600080fd5b5051905090565b6002546001600160a01b031633146118fb576040805162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60115481565b6060600e805480602002602001604051908101604052809291908181526020018280548015610876576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610858575050505050905090565b61198b6112e3565b156119d0576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b60006119da610b21565b905080156108065761080681612664565b60085481565b6119f9612ddd565b6001600160a01b0316611a0a61157c565b6001600160a01b031614611a53576040805162461bcd60e51b81526020600482018190526024820152600080516020613225833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b600e818154811061180057fe5b611a8a61157c565b6001600160a01b0316336001600160a01b03161480611ab357506001546001600160a01b031633145b611aef576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b601254821115611b2e576040805162461bcd60e51b8152602060048201526005602482015264217261746560d81b604482015290519081900360640190fd5b600a811115611b6d576040805162461bcd60e51b8152602060048201526006602482015265042c8cae0e8d60d31b604482015290519081900360640190fd5b611b75611fe6565b60118290556013819055600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611bca57600080fd5b505afa158015611bde573d6000803e3d6000fd5b505050506040513d6020811015611bf457600080fd5b50519050611c0181612664565b604080518481526020810184905281517f418ded52272daf5ee4555f15b1771a3659ab7589290d11d7299e3c2564c98770929181900390910190a1505050565b603281565b600a546001600160a01b031681565b611c5d612ddd565b6001600160a01b0316611c6e61157c565b6001600160a01b031614611cb7576040805162461bcd60e51b81526020600482018190526024820152600080516020613225833981519152604482015290519081900360640190fd5b6001600160a01b038116611cfc5760405162461bcd60e51b81526004018080602001828103825260268152602001806131b86026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b03163314611d9f576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b611da7611fe6565b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611df257600080fd5b505afa158015611e06573d6000803e3d6000fd5b505050506040513d6020811015611e1c57600080fd5b5051600b54600480546040805163a9059cbb60e01b81526001600160a01b039283169381019390935260248301859052519394509091169163a9059cbb916044808201926020929091908290030181600087803b158015611e7c57600080fd5b505af1158015611e90573d6000803e3d6000fd5b505050506040513d6020811015611ea657600080fd5b505050565b6004546001600160a01b031681565b801580611f40575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015611f1257600080fd5b505afa158015611f26573d6000803e3d6000fd5b505050506040513d6020811015611f3c57600080fd5b5051155b611f7b5760405162461bcd60e51b815260040180806020018281038252603681526020018061326f6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052611ea6908490612f00565b6060611fdc8484600085612fb1565b90505b9392505050565b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561203157600080fd5b505afa158015612045573d6000803e3d6000fd5b505050506040513d602081101561205b57600080fd5b5051600c54604080516305eff7ef60e21b815230600482015290519293506000926001600160a01b03909216916317bfdfbc9160248082019260209290919082900301818787803b1580156120af57600080fd5b505af11580156120c3573d6000803e3d6000fd5b505050506040513d60208110156120d957600080fd5b505190505b8082101561237057600c546040805163073a938160e11b81526004810185905290516001600160a01b0390921691630e752702916024808201926020929091908290030181600087803b15801561213457600080fd5b505af1158015612148573d6000803e3d6000fd5b505050506040513d602081101561215e57600080fd5b5050600c54604080516305eff7ef60e21b815230600482015290516001600160a01b03909216916317bfdfbc916024808201926020929091908290030181600087803b1580156121ad57600080fd5b505af11580156121c1573d6000803e3d6000fd5b505050506040513d60208110156121d757600080fd5b50516011549091506000906121f190610ac984606461253e565b600c5460408051633af9e66960e01b815230600482015290519293506000926001600160a01b0390921691633af9e6699160248082019260209290919082900301818787803b15801561224357600080fd5b505af1158015612257573d6000803e3d6000fd5b505050506040513d602081101561226d57600080fd5b5051600c549091506001600160a01b031663852a12e361228d8385612607565b6040518263ffffffff1660e01b815260040180828152602001915050602060405180830381600087803b1580156122c357600080fd5b505af11580156122d7573d6000803e3d6000fd5b505050506040513d60208110156122ed57600080fd5b5050600b54604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561233a57600080fd5b505afa15801561234e573d6000803e3d6000fd5b505050506040513d602081101561236457600080fd5b505193506120de915050565b600c546040805163073a938160e11b8152600019600482015290516001600160a01b0390921691630e752702916024808201926020929091908290030181600087803b1580156123bf57600080fd5b505af11580156123d3573d6000803e3d6000fd5b505050506040513d60208110156123e957600080fd5b5050600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561243657600080fd5b505afa15801561244a573d6000803e3d6000fd5b505050506040513d602081101561246057600080fd5b5051600c546040805163db006a7560e01b81526004810184905290519293506001600160a01b039091169163db006a75916024808201926020929091908290030181600087803b1580156124b357600080fd5b505af11580156124c7573d6000803e3d6000fd5b505050506040513d60208110156124dd57600080fd5b50506000601555611ea661162a565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611ea6908490612f00565b60008261254d5750600061259a565b8282028284828161255a57fe5b04146125975760405162461bcd60e51b81526004018080602001828103825260218152602001806132046021913960400191505060405180910390fd5b90505b92915050565b60008082116125f6576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816125ff57fe5b049392505050565b60008282111561265e576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60145481101561267357610806565b60005b60135481101561279457600c546040805163140e25ad60e31b81526004810185905290516001600160a01b039092169163a0712d68916024808201926020929091908290030181600087803b1580156126ce57600080fd5b505af11580156126e2573d6000803e3d6000fd5b505050506040513d60208110156126f857600080fd5b505060115461270f90606490610ac990859061253e565b600c546040805163317afabb60e21b81526004810184905290519294506001600160a01b039091169163c5ebeaec916024808201926020929091908290030181600087803b15801561276057600080fd5b505af1158015612774573d6000803e3d6000fd5b505050506040513d602081101561278a57600080fd5b5050600101612676565b506015546127a29082612de1565b60155561080661162a565b6127b56112e3565b6127fd576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612833612ddd565b604080516001600160a01b039092168252519081900360200190a1565b600c54600b5461286f916001600160a01b039182169116600019611eba565b600354600a54610c39916001600160a01b039182169116600019611eba565b600a54604080516370a0823160e01b8152306004820152905160009261291d926103e892610ac992602d926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b1580156128eb57600080fd5b505afa1580156128ff573d6000803e3d6000fd5b505050506040513d602081101561291557600080fd5b50519061253e565b9050600360009054906101000a90046001600160a01b03166001600160a01b03166338ed1739826000600d30426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b0316815260200183815260200182810382528581815481526020019150805480156129c957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116129ab575b50509650505050505050600060405180830381600087803b1580156129ed57600080fd5b505af1158015612a01573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612a2a57600080fd5b8101908080516040519392919084640100000000821115612a4a57600080fd5b908301906020820185811115612a5f57600080fd5b8251866020820283011164010000000082111715612a7c57600080fd5b82525081516020918201928201910280838360005b83811015612aa9578181015183820152602001612a91565b505050509190910160408181526009546370a0823160e01b83523060048401529051600097506001600160a01b0390911695506370a08231945060248083019450602093509091829003018186803b158015612b0457600080fd5b505afa158015612b18573d6000803e3d6000fd5b505050506040513d6020811015612b2e57600080fd5b5051600754909150600090612b4c906103e890610ac990859061253e565b600954909150612b66906001600160a01b031632836124ec565b6000612b836103e8610ac96008548661253e90919063ffffffff16565b600554600954919250612ba3916001600160a01b039081169116836124ec565b6000612bb66103e8610ac986607061253e565b6002546009549192506112dc916001600160a01b039081169116836124ec565b600a54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015612c2157600080fd5b505afa158015612c35573d6000803e3d6000fd5b505050506040513d6020811015612c4b57600080fd5b50516003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a060448601908152600e805460a488018190529899506001600160a01b03909716976338ed1739978a979596909590929160c49091019086908015612cec57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612cce575b50509650505050505050600060405180830381600087803b158015612d1057600080fd5b505af1158015612d24573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612d4d57600080fd5b8101908080516040519392919084640100000000821115612d6d57600080fd5b908301906020820185811115612d8257600080fd5b8251866020820283011164010000000082111715612d9f57600080fd5b82525081516020918201928201910280838360005b83811015612dcc578181015183820152602001612db4565b505050509050016040525050505050565b3390565b600082820183811015612597576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b612e436112e3565b15612e88576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612833612ddd565b600c54600b54612ee2916001600160a01b0391821691166000611eba565b600354600a54610c39916001600160a01b0391821691166000611eba565b6060612f55826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611fcd9092919063ffffffff16565b805190915015611ea657808060200190516020811015612f7457600080fd5b5051611ea65760405162461bcd60e51b815260040180806020018281038252602a815260200180613245602a913960400191505060405180910390fd5b606082471015612ff25760405162461bcd60e51b81526004018080602001828103825260268152602001806131de6026913960400191505060405180910390fd5b612ffb8561310d565b61304c576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061308b5780518252601f19909201916020918201910161306c565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146130ed576040519150601f19603f3d011682016040523d82523d6000602084013e6130f2565b606091505b5091509150613102828286613113565b979650505050505050565b3b151590565b60608315613122575081611fdf565b8251156131325782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561317c578181015183820152602001613164565b50505050905090810190601f1680156131a95780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a26469706673582212207e2d0d93c2a620e5d1039f70a067aa8ce3bdb280883e5e89d369b79be4f25e0a64736f6c634300060c00336f7574707574546f4e6174697665526f7574655b6c6173745d20213d2077616e74416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c5361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000000000000000000000000000000000000000000000048000000000000000000000000000000000000000000000000000000000000004b000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000038d7ea4c68000000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000240000000000000000000000000a1b976b8b7ca8be064329be1d37fccd41969bd8f000000000000000000000000f491e7b69e4244ad4002bc14e878a34207e38c2900000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d000000000000000000000000010da5ff62b6e45f89fa7b2d8ced5a8b5754ec1b0000000000000000000000004f8865a1fce2877ccb55264600d4759d222e8feb0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000e0654c8e6fd4d733349ac7e09f6f23da256bf47500000000000000000000000021be370d5312f44cb42ce377bc9b8a0cef1a4c830000000000000000000000000000000000000000000000000000000000000002000000000000000000000000e0654c8e6fd4d733349ac7e09f6f23da256bf47500000000000000000000000074b23882a30290451a17c44f4f05243b6b58c76d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c772ba6c2c28859b7a0542faa162a56115ddce25
Deployed ByteCode Sourcemap
48760:12218:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49916:28;;;:::i;:::-;;;;;;;;;;;;;;;;59425:264;;;;;;;;;;;;;;;;-1:-1:-1;59425:264:0;;;;:::i;:::-;;50284:28;;;:::i;48907:21::-;;;:::i;:::-;;;;-1:-1:-1;;;;;48907:21:0;;;;;;;;;;;;;;60749:111;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48963:19;;;:::i;45202:25::-;;;:::i;49984:26::-;;;:::i;45234:24::-;;;:::i;48277:200::-;;;;;;;;;;;;;;;;-1:-1:-1;48277:200:0;;:::i;47989:39::-;;;:::i;57478:751::-;;;;;;;;;;;;;;;;-1:-1:-1;57478:751:0;;:::i;58417:168::-;;;:::i;60299:121::-;;;:::i;48989:21::-;;;:::i;55709:464::-;;;:::i;60102:86::-;;;:::i;48088:43::-;;;:::i;58593:145::-;;;:::i;54243:692::-;;;;;;;;;;;;;;;;-1:-1:-1;54243:692:0;;:::i;37480:86::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;49049:80;;;:::i;47212:86::-;;;;;;;;;;;;;;;;-1:-1:-1;47212:86:0;-1:-1:-1;;;;;47212:86:0;;:::i;2733:148::-;;;:::i;59121:111::-;;;:::i;46484:92::-;;;;;;;;;;;;;;;;-1:-1:-1;46484:92:0;-1:-1:-1;;;;;46484:92:0;;:::i;50248:23::-;;;:::i;47899:41::-;;;:::i;60196:95::-;;;:::i;49270:28::-;;;:::i;48140:30::-;;;:::i;2082:87::-;;;:::i;45292:32::-;;;:::i;48179:25::-;;;:::i;49951:26::-;;;:::i;47433:134::-;;;;;;;;;;;;;;;;-1:-1:-1;47433:134:0;-1:-1:-1;;;;;47433:134:0;;:::i;58791:254::-;;;:::i;48485:154::-;;;;;;;;;;;;;;;;-1:-1:-1;48485:154:0;;:::i;45174:21::-;;;:::i;49237:24::-;;;;;;;;;;;;;;;;-1:-1:-1;49237:24:0;;:::i;50017:45::-;;;:::i;47947:35::-;;;:::i;49153:36::-;;;;;;;;;;;;;;;;-1:-1:-1;49153:36:0;;:::i;59299:118::-;;;:::i;46721:155::-;;;;;;;;;;;;;;;;-1:-1:-1;46721:155:0;-1:-1:-1;;;;;46721:155:0;;:::i;49884:25::-;;;:::i;60868:107::-;;;:::i;51869:176::-;;;:::i;48211:57::-;;;:::i;47008:102::-;;;;;;;;;;;;;;;;-1:-1:-1;47008:102:0;-1:-1:-1;;;;;47008:102:0;;:::i;49196:34::-;;;;;;;;;;;;;;;;-1:-1:-1;49196:34:0;;:::i;55187:459::-;;;;;;;;;;;;;;;;-1:-1:-1;55187:459:0;;;;;;;:::i;48037:44::-;;;:::i;48935:21::-;;;:::i;3036:244::-;;;;;;;;;;;;;;;;-1:-1:-1;3036:244:0;-1:-1:-1;;;;;3036:244:0;;:::i;59789:231::-;;;:::i;45265:20::-;;;:::i;49916:28::-;;;;:::o;59425:264::-;46151:7;:5;:7::i;:::-;-1:-1:-1;;;;;46137:21:0;:10;-1:-1:-1;;;;;46137:21:0;;:45;;;-1:-1:-1;46176:6:0;;-1:-1:-1;;;;;46176:6:0;46162:10;:20;46137:45;46129:66;;;;;-1:-1:-1;;;46129:66:0;;;;;;;;;;;;-1:-1:-1;;;46129:66:0;;;;;;;;;;;;;;;59501:16:::1;:27:::0;;-1:-1:-1;;59501:27:0::1;::::0;::::1;;;::::0;;;;::::1;59545:16;:24;;-1:-1:-1::0;59545:24:0::1;59541:141;;;59586:25;59609:1;59586:22;:25::i;:::-;59541:141;;;59644:26;59667:2;59644:22;:26::i;:::-;59425:264:::0;:::o;50284:28::-;;;;:::o;48907:21::-;;;-1:-1:-1;;;;;48907:21:0;;:::o;60749:111::-;60797:16;60833:19;60826:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;60826:26:0;;;;;;;;;;;;;;;;;;;;;;;60749:111;:::o;48963:19::-;;;-1:-1:-1;;;;;48963:19:0;;:::o;45202:25::-;;;-1:-1:-1;;;;;45202:25:0;;:::o;49984:26::-;;;;:::o;45234:24::-;;;-1:-1:-1;;;;;45234:24:0;;:::o;48277:200::-;46151:7;:5;:7::i;:::-;-1:-1:-1;;;;;46137:21:0;:10;-1:-1:-1;;;;;46137:21:0;;:45;;;-1:-1:-1;46176:6:0;;-1:-1:-1;;;;;46176:6:0;46162:10;:20;46137:45;46129:66;;;;;-1:-1:-1;;;46129:66:0;;;;;;;;;;;;-1:-1:-1;;;46129:66:0;;;;;;;;;;;;;;;48025:3:::1;48349:4;:20;;48341:37;;;::::0;;-1:-1:-1;;;48341:37:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;48341:37:0;;;;;;;;;;;;;::::1;;48399:7;:14:::0;;;48435:24;:34:::1;48424:8;:45:::0;48277:200::o;47989:39::-;48025:3;47989:39;:::o;57478:751::-;57555:5;;-1:-1:-1;;;;;57555:5:0;57541:10;:19;57533:38;;;;;-1:-1:-1;;;57533:38:0;;;;;;;;;;;;-1:-1:-1;;;57533:38:0;;;;;;;;;;;;;;;57584:15;57602;:13;:15::i;:::-;57584:33;;57644:7;57634;:17;57630:125;;;57668:13;:11;:13::i;:::-;57713:4;;57706:37;;;-1:-1:-1;;;57706:37:0;;57737:4;57706:37;;;;;;-1:-1:-1;;;;;57713:4:0;;;;57706:22;;:37;;;;;;;;;;;;;;;57713:4;57706:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57706:37:0;;-1:-1:-1;57630:125:0;57781:7;57771;:17;57767:67;;;-1:-1:-1;57815:7:0;57767:67;57863:7;:5;:7::i;:::-;-1:-1:-1;;;;;57850:20:0;:9;-1:-1:-1;;;;;57850:20:0;;:32;;;;57874:8;:6;:8::i;:::-;57846:296;;;57925:5;;57906:4;;57899:41;;-1:-1:-1;;;;;57906:4:0;;;;57925:5;57932:7;57899:25;:41::i;:::-;57846:296;;;57973:27;58003:46;48126:5;58003:26;58015:13;;58003:7;:11;;:26;;;;:::i;:::-;:30;;:46::i;:::-;58090:5;;57973:76;;-1:-1:-1;58064:66:0;;-1:-1:-1;;;;;58090:5:0;58097:32;:7;57973:76;58097:11;:32::i;:::-;58071:4;;-1:-1:-1;;;;;58071:4:0;;58064:66;:25;:66::i;:::-;57846:296;;58159:8;:6;:8::i;:::-;58154:68;;58184:26;58194:15;:13;:15::i;:::-;58184:9;:26::i;:::-;57478:751;;:::o;58417:168::-;58508:4;;58501:37;;;-1:-1:-1;;;58501:37:0;;58532:4;58501:37;;;;;;58463:7;;;;-1:-1:-1;;;;;58508:4:0;;;;58501:22;;:37;;;;;;;;;;;;;;;58508:4;58501:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58501:37:0;58568:8;;58501:37;;-1:-1:-1;58556:21:0;;58501:37;;58556:11;:21::i;:::-;58549:28;;;58417:168;:::o;60299:121::-;46151:7;:5;:7::i;:::-;-1:-1:-1;;;;;46137:21:0;:10;-1:-1:-1;;;;;46137:21:0;;:45;;;-1:-1:-1;46176:6:0;;-1:-1:-1;;;;;46176:6:0;46162:10;:20;46137:45;46129:66;;;;;-1:-1:-1;;;46129:66:0;;;;;;;;;;;;-1:-1:-1;;;46129:66:0;;;;;;;;;;;;;;;60350:10:::1;:8;:10::i;:::-;60373:17;:15;:17::i;:::-;60403:9;:7;:9::i;:::-;60299:121::o:0;48989:21::-;;;-1:-1:-1;;;;;48989:21:0;;:::o;55709:464::-;37806:8;:6;:8::i;:::-;37805:9;37797:38;;;;;-1:-1:-1;;;37797:38:0;;;;;;;;;;;;-1:-1:-1;;;37797:38:0;;;;;;;;;;;;;;;55768:9:::1;55781:10;55768:23;::::0;:46:::1;;-1:-1:-1::0;55809:5:0::1;::::0;-1:-1:-1;;;;;55809:5:0::1;55795:10;:19;55768:46;55760:68;;;::::0;;-1:-1:-1;;;55760:68:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;55760:68:0;;;;;;;;;;;;;::::1;;55915:1;-1:-1:-1::0;;;;;55843:74:0::1;49087:42;-1:-1:-1::0;;;;;55843:58:0::1;;:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;55843:60:0;-1:-1:-1;;;;;55843:74:0::1;;55839:285;;;55934:59;::::0;;-1:-1:-1;;;55934:59:0;;55978:4:::1;55934:59;::::0;::::1;::::0;;;;;;;;;55985:7:::1;55934:59:::0;;;;;;;;49087:42:::1;::::0;55934:35:::1;::::0;55985:7;;55934:59;;;;;;;;55985:7;;55934:59;::::1;;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;55934:59:0::1;::::0;;;;;::::1;::::0;::::1;;::::0;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;56008:12;:10;:12::i;:::-;56035:13;:11;:13::i;:::-;56063:9;:7;:9::i;:::-;55839:285;;;56105:7;:5;:7::i;:::-;56141:24;::::0;56154:10:::1;::::0;56141:24:::1;::::0;;;::::1;55709:464::o:0;60102:86::-;46151:7;:5;:7::i;:::-;-1:-1:-1;;;;;46137:21:0;:10;-1:-1:-1;;;;;46137:21:0;;:45;;;-1:-1:-1;46176:6:0;;-1:-1:-1;;;;;46176:6:0;46162:10;:20;46137:45;46129:66;;;;;-1:-1:-1;;;46129:66:0;;;;;;;;;;;;-1:-1:-1;;;46129:66:0;;;;;;;;;;;;;;;60149:13:::1;:11;:13::i;:::-;60173:7;:5;:7::i;48088:43::-:0;48126:5;48088:43;:::o;58593:145::-;58651:16;;;;58647:58;;;58684:9;:7;:9::i;:::-;58715:15;:13;:15::i;54243:692::-;46151:7;:5;:7::i;:::-;-1:-1:-1;;;;;46137:21:0;:10;-1:-1:-1;;;;;46137:21:0;;:45;;;-1:-1:-1;46176:6:0;;-1:-1:-1;;;;;46176:6:0;46162:10;:20;46137:45;46129:66;;;;;-1:-1:-1;;;46129:66:0;;;;;;;;;;;;-1:-1:-1;;;46129:66:0;;;;;;;;;;;;;;;54340:13:::1;;54325:11;:28;;54317:46;;;::::0;;-1:-1:-1;;;54317:46:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;54317:46:0;;;;;;;;;;;;;::::1;;54401:4;::::0;54394:37:::1;::::0;;-1:-1:-1;;;54394:37:0;;54425:4:::1;54394:37;::::0;::::1;::::0;;;54376:15:::1;::::0;-1:-1:-1;;;;;54401:4:0::1;::::0;54394:22:::1;::::0;:37;;;;;::::1;::::0;;;;;;;;54401:4;54394:37;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;54394:37:0;54450:6:::1;::::0;54442:36:::1;::::0;;-1:-1:-1;;;54442:36:0;;::::1;::::0;::::1;::::0;;;;;54394:37;;-1:-1:-1;;;;;;54450:6:0;;::::1;::::0;54442:27:::1;::::0;:36;;;;;54394:37:::1;::::0;54442:36;;;;;;;;54450:6:::1;::::0;54442:36;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;54519:6:0::1;::::0;54511:51:::1;::::0;;-1:-1:-1;;;54511:51:0;;54556:4:::1;54511:51;::::0;::::1;::::0;;;54491:17:::1;::::0;-1:-1:-1;;;;;54519:6:0::1;::::0;54511:36:::1;::::0;:51;;;;;54442:36:::1;::::0;54511:51;;;;;;;54491:17;54519:6;54511:51;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;54511:51:0;;-1:-1:-1;54573:20:0::1;54596:35;54619:11:::0;54596:18:::1;54511:51:::0;54610:3:::1;54596:13;:18::i;:35::-;54680:6;::::0;54672:50:::1;::::0;;-1:-1:-1;;;54672:50:0;;54716:4:::1;54672:50;::::0;::::1;::::0;;;54573:58;;-1:-1:-1;54652:17:0::1;::::0;-1:-1:-1;;;;;54680:6:0;;::::1;::::0;54672:35:::1;::::0;:50;;;;;::::1;::::0;;;;;;;;;54652:17;54680:6;54672:50;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;54672:50:0;54741:6:::1;::::0;54672:50;;-1:-1:-1;;;;;;54741:6:0::1;54733:32;54766:27;54672:50:::0;54780:12;54766:13:::1;:27::i;:::-;54733:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;54832:4:0::1;::::0;54825:37:::1;::::0;;-1:-1:-1;;;54825:37:0;;54856:4:::1;54825:37;::::0;::::1;::::0;;;-1:-1:-1;;;;;54832:4:0;;::::1;::::0;54825:22:::1;::::0;:37;;;;;54733:61:::1;::::0;54825:37;;;;;;;;54832:4;54825:37;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;54825:37:0;54873:8:::1;:18:::0;;;54825:37;-1:-1:-1;54912:15:0::1;:13;:15::i;:::-;46206:1;;;;54243:692:::0;:::o;37480:86::-;37527:4;37551:7;-1:-1:-1;;;37551:7:0;;;;;37480:86::o;49049:80::-;49087:42;49049:80;:::o;47212:86::-;2313:12;:10;:12::i;:::-;-1:-1:-1;;;;;2302:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2302:23:0;;2294:68;;;;;-1:-1:-1;;;2294:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2294:68:0;;;;;;;;;;;;;;;47276:5:::1;:14:::0;;-1:-1:-1;;;;;;47276:14:0::1;-1:-1:-1::0;;;;;47276:14:0;;;::::1;::::0;;;::::1;::::0;;47212:86::o;2733:148::-;2313:12;:10;:12::i;:::-;-1:-1:-1;;;;;2302:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2302:23:0;;2294:68;;;;;-1:-1:-1;;;2294:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2294:68:0;;;;;;;;;;;;;;;2840:1:::1;2824:6:::0;;2803:40:::1;::::0;-1:-1:-1;;;;;2824:6:0;;::::1;::::0;2803:40:::1;::::0;2840:1;;2803:40:::1;2871:1;2854:19:::0;;-1:-1:-1;;;;;;2854:19:0::1;::::0;;2733:148::o;59121:111::-;59163:7;59190:34;59210:13;;59190:15;:13;:15::i;:::-;:19;;:34::i;:::-;59183:41;;59121:111;:::o;46484:92::-;46151:7;:5;:7::i;:::-;-1:-1:-1;;;;;46137:21:0;:10;-1:-1:-1;;;;;46137:21:0;;:45;;;-1:-1:-1;46176:6:0;;-1:-1:-1;;;;;46176:6:0;46162:10;:20;46137:45;46129:66;;;;;-1:-1:-1;;;46129:66:0;;;;;;;;;;;;-1:-1:-1;;;46129:66:0;;;;;;;;;;;;;;;46552:6:::1;:16:::0;;-1:-1:-1;;;;;;46552:16:0::1;-1:-1:-1::0;;;;;46552:16:0;;;::::1;::::0;;;::::1;::::0;;46484:92::o;50248:23::-;;;;:::o;47899:41::-;47937:3;47899:41;:::o;60196:95::-;46151:7;:5;:7::i;:::-;-1:-1:-1;;;;;46137:21:0;:10;-1:-1:-1;;;;;46137:21:0;;:45;;;-1:-1:-1;46176:6:0;;-1:-1:-1;;;;;46176:6:0;46162:10;:20;46137:45;46129:66;;;;;-1:-1:-1;;;46129:66:0;;;;;;;;;;;;-1:-1:-1;;;46129:66:0;;;;;;;;;;;;;;;60243:8:::1;:6;:8::i;:::-;60264:19;:17;:19::i;49270:28::-:0;;;;;;:::o;48140:30::-;;;;:::o;2082:87::-;2128:7;2155:6;-1:-1:-1;;;;;2155:6:0;2082:87;:::o;45292:32::-;;;-1:-1:-1;;;;;45292:32:0;;:::o;48179:25::-;;;;:::o;49951:26::-;;;;:::o;47433:134::-;2313:12;:10;:12::i;:::-;-1:-1:-1;;;;;2302:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2302:23:0;;2294:68;;;;;-1:-1:-1;;;2294:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2294:68:0;;;;;;;;;;;;;;;47521:17:::1;:38:::0;;-1:-1:-1;;;;;;47521:38:0::1;-1:-1:-1::0;;;;;47521:38:0;;;::::1;::::0;;;::::1;::::0;;47433:134::o;58791:254::-;58862:6;;58854:50;;;-1:-1:-1;;;58854:50:0;;58898:4;58854:50;;;;;;58834:17;;-1:-1:-1;;;;;58862:6:0;;58854:35;;:50;;;;;;;;;;;;;;58834:17;58862:6;58854:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58854:50:0;58943:6;;58935:51;;;-1:-1:-1;;;58935:51:0;;58980:4;58935:51;;;;;;58854:50;;-1:-1:-1;58915:17:0;;-1:-1:-1;;;;;58943:6:0;;;;58935:36;;:51;;;;;58854:50;;58935:51;;;;;;;;58915:17;58943:6;58935:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58935:51:0;;-1:-1:-1;59013:24:0;:9;58935:51;59013:13;:24::i;:::-;58997:13;:40;-1:-1:-1;;58791:254:0:o;48485:154::-;46151:7;:5;:7::i;:::-;-1:-1:-1;;;;;46137:21:0;:10;-1:-1:-1;;;;;46137:21:0;;:45;;;-1:-1:-1;46176:6:0;;-1:-1:-1;;;;;46176:6:0;46162:10;:20;46137:45;46129:66;;;;;-1:-1:-1;;;46129:66:0;;;;;;;;;;;;-1:-1:-1;;;46129:66:0;;;;;;;;;;;;;;;48079:2:::1;48563:4;:26;;48555:43;;;::::0;;-1:-1:-1;;;48555:43:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;48555:43:0;;;;;;;;;;;;;::::1;;48611:13;:20:::0;48485:154::o;45174:21::-;;;-1:-1:-1;;;;;45174:21:0;;:::o;49237:24::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49237:24:0;;-1:-1:-1;49237:24:0;:::o;50017:45::-;50060:2;50017:45;:::o;47947:35::-;47978:4;47947:35;:::o;49153:36::-;;;;;;;;;;59299:118;59379:4;;59372:37;;;-1:-1:-1;;;59372:37:0;;59403:4;59372:37;;;;;;59345:7;;-1:-1:-1;;;;;59379:4:0;;59372:22;;:37;;;;;;;;;;;;;;59379:4;59372:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59372:37:0;;-1:-1:-1;59299:118:0;:::o;46721:155::-;46807:10;;-1:-1:-1;;;;;46807:10:0;46793;:24;46785:48;;;;;-1:-1:-1;;;46785:48:0;;;;;;;;;;;;-1:-1:-1;;;46785:48:0;;;;;;;;;;;;;;;46844:10;:24;;-1:-1:-1;;;;;;46844:24:0;-1:-1:-1;;;;;46844:24:0;;;;;;;;;;46721:155::o;49884:25::-;;;;:::o;60868:107::-;60914:16;60950:17;60943:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;60943:24:0;;;;;;;;;;;;;;;;;;;;;;60868:107;:::o;51869:176::-;37806:8;:6;:8::i;:::-;37805:9;37797:38;;;;;-1:-1:-1;;;37797:38:0;;;;;;;;;;;;-1:-1:-1;;;37797:38:0;;;;;;;;;;;;;;;51920:15:::1;51938;:13;:15::i;:::-;51920:33:::0;-1:-1:-1;51970:11:0;;51966:62:::1;;51998:18;52008:7;51998:9;:18::i;48211:57::-:0;;;;:::o;47008:102::-;2313:12;:10;:12::i;:::-;-1:-1:-1;;;;;2302:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2302:23:0;;2294:68;;;;;-1:-1:-1;;;2294:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2294:68:0;;;;;;;;;;;;;;;47080:9:::1;:22:::0;;-1:-1:-1;;;;;;47080:22:0::1;-1:-1:-1::0;;;;;47080:22:0;;;::::1;::::0;;;::::1;::::0;;47008:102::o;49196:34::-;;;;;;;;;;55187:459;46151:7;:5;:7::i;:::-;-1:-1:-1;;;;;46137:21:0;:10;-1:-1:-1;;;;;46137:21:0;;:45;;;-1:-1:-1;46176:6:0;;-1:-1:-1;;;;;46176:6:0;46162:10;:20;46137:45;46129:66;;;;;-1:-1:-1;;;46129:66:0;;;;;;;;;;;;-1:-1:-1;;;46129:66:0;;;;;;;;;;;;;;;55304:13:::1;;55289:11;:28;;55281:46;;;::::0;;-1:-1:-1;;;55281:46:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;55281:46:0;;;;;;;;;;;;;::::1;;50060:2;55346:12;:32;;55338:51;;;::::0;;-1:-1:-1;;;55338:51:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;55338:51:0;;;;;;;;;;;;;::::1;;55402:13;:11;:13::i;:::-;55426:10;:24:::0;;;55461:11:::1;:26:::0;;;55525:4:::1;::::0;55518:37:::1;::::0;;-1:-1:-1;;;55518:37:0;;55549:4:::1;55518:37;::::0;::::1;::::0;;;-1:-1:-1;;;;;;;55525:4:0::1;::::0;55518:22:::1;::::0;:37;;;;;::::1;::::0;;;;;;;;55525:4;55518:37;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;55518:37:0;;-1:-1:-1;55566:18:0::1;55518:37:::0;55566:9:::1;:18::i;:::-;55597:41;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;;::::1;46206:1;55187:459:::0;;:::o;48037:44::-;48079:2;48037:44;:::o;48935:21::-;;;-1:-1:-1;;;;;48935:21:0;;:::o;3036:244::-;2313:12;:10;:12::i;:::-;-1:-1:-1;;;;;2302:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2302:23:0;;2294:68;;;;;-1:-1:-1;;;2294:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2294:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3125:22:0;::::1;3117:73;;;;-1:-1:-1::0;;;3117:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3227:6;::::0;;3206:38:::1;::::0;-1:-1:-1;;;;;3206:38:0;;::::1;::::0;3227:6;::::1;::::0;3206:38:::1;::::0;::::1;3255:6;:17:::0;;-1:-1:-1;;;;;;3255:17:0::1;-1:-1:-1::0;;;;;3255:17:0;;;::::1;::::0;;;::::1;::::0;;3036:244::o;59789:231::-;59854:5;;-1:-1:-1;;;;;59854:5:0;59840:10;:19;59832:38;;;;;-1:-1:-1;;;59832:38:0;;;;;;;;;;;;-1:-1:-1;;;59832:38:0;;;;;;;;;;;;;;;59883:13;:11;:13::i;:::-;59934:4;;59927:37;;;-1:-1:-1;;;59927:37:0;;59958:4;59927:37;;;;;;59909:15;;-1:-1:-1;;;;;59934:4:0;;59927:22;;:37;;;;;;;;;;;;;;59934:4;59927:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59927:37:0;59982:4;;59997:5;;;59975:37;;;-1:-1:-1;;;59975:37:0;;-1:-1:-1;;;;;59997:5:0;;;59975:37;;;;;;;;;;;;;;59927;;-1:-1:-1;59982:4:0;;;;59975:21;;:37;;;;;59927;;59975;;;;;;;;59982:4;;59975:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;59789:231:0:o;45265:20::-;;;-1:-1:-1;;;;;45265:20:0;;:::o;33975:622::-;34345:10;;;34344:62;;-1:-1:-1;34361:39:0;;;-1:-1:-1;;;34361:39:0;;34385:4;34361:39;;;;-1:-1:-1;;;;;34361:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34361:39:0;:44;34344:62;34336:152;;;;-1:-1:-1;;;34336:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34526:62;;;-1:-1:-1;;;;;34526:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34526:62:0;-1:-1:-1;;;34526:62:0;;;34499:90;;34519:5;;34499:19;:90::i;28309:195::-;28412:12;28444:52;28466:6;28474:4;28480:1;28483:12;28444:21;:52::i;:::-;28437:59;;28309:195;;;;;;:::o;52893:914::-;52961:4;;52954:37;;;-1:-1:-1;;;52954:37:0;;52985:4;52954:37;;;;;;52936:15;;-1:-1:-1;;;;;52961:4:0;;52954:22;;:37;;;;;;;;;;;;;;52961:4;52954:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52954:37:0;53030:6;;53022:51;;;-1:-1:-1;;;53022:51:0;;53067:4;53022:51;;;;;;52954:37;;-1:-1:-1;53002:17:0;;-1:-1:-1;;;;;53030:6:0;;;;53022:36;;:51;;;;;52954:37;;53022:51;;;;;;;;53002:17;53030:6;53022:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53022:51:0;;-1:-1:-1;53086:476:0;53103:9;53093:7;:19;53086:476;;;53137:6;;53129:36;;;-1:-1:-1;;;53129:36:0;;;;;;;;;;-1:-1:-1;;;;;53137:6:0;;;;53129:27;;:36;;;;;;;;;;;;;;;53137:6;;53129:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53202:6:0;;53194:51;;;-1:-1:-1;;;53194:51:0;;53239:4;53194:51;;;;;;-1:-1:-1;;;;;53202:6:0;;;;53194:36;;:51;;;;;53129:36;;53194:51;;;;;;;;53202:6;;53194:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53194:51:0;53306:10;;53194:51;;-1:-1:-1;53260:20:0;;53283:34;;:18;53194:51;53297:3;53283:13;:18::i;:34::-;53370:6;;53362:50;;;-1:-1:-1;;;53362:50:0;;53406:4;53362:50;;;;;;53260:57;;-1:-1:-1;53342:17:0;;-1:-1:-1;;;;;53370:6:0;;;;53362:35;;:50;;;;;;;;;;;;;;;53342:17;53370:6;53362:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53362:50:0;53435:6;;53362:50;;-1:-1:-1;;;;;;53435:6:0;53427:32;53460:27;53362:50;53474:12;53460:13;:27::i;:::-;53427:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53520:4:0;;53513:37;;;-1:-1:-1;;;53513:37:0;;53544:4;53513:37;;;;;;-1:-1:-1;;;;;53520:4:0;;;;53513:22;;:37;;;;;53427:61;;53513:37;;;;;;;;53520:4;53513:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53513:37:0;;-1:-1:-1;53086:476:0;;-1:-1:-1;;53086:476:0;;53582:6;;53574:40;;;-1:-1:-1;;;53574:40:0;;-1:-1:-1;;53574:40:0;;;;;;-1:-1:-1;;;;;53582:6:0;;;;53574:27;;:40;;;;;;;;;;;;;;;53582:6;;53574:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53662:6:0;;53655:39;;;-1:-1:-1;;;53655:39:0;;53688:4;53655:39;;;;;;53635:17;;-1:-1:-1;;;;;53662:6:0;;53655:24;;:39;;;;;53574:40;;53655:39;;;;;;;53662:6;53655:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53655:39:0;53713:6;;53705:33;;;-1:-1:-1;;;53705:33:0;;;;;;;;;;53655:39;;-1:-1:-1;;;;;;53713:6:0;;;;53705:22;;:33;;;;;53655:39;;53705:33;;;;;;;;53713:6;;53705:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53762:1:0;53751:8;:12;53784:15;:13;:15::i;33316:177::-;33426:58;;;-1:-1:-1;;;;;33426:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33426:58:0;-1:-1:-1;;;33426:58:0;;;33399:86;;33419:5;;33399:19;:86::i;9782:220::-;9840:7;9864:6;9860:20;;-1:-1:-1;9879:1:0;9872:8;;9860:20;9903:5;;;9907:1;9903;:5;:1;9927:5;;;;;:10;9919:56;;;;-1:-1:-1;;;9919:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9993:1;-1:-1:-1;9782:220:0;;;;;:::o;10480:153::-;10538:7;10570:1;10566;:5;10558:44;;;;;-1:-1:-1;;;10558:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;10624:1;10620;:5;;;;;;;10480:153;-1:-1:-1;;;10480:153:0:o;9365:158::-;9423:7;9456:1;9451;:6;;9443:49;;;;;-1:-1:-1;;;9443:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9510:5:0;;;9365:158::o;52231:392::-;52301:11;;52291:7;:21;52287:38;;;52316:7;;52287:38;52342:6;52337:198;52358:11;;52354:1;:15;52337:198;;;52399:6;;52391:29;;;-1:-1:-1;;;52391:29:0;;;;;;;;;;-1:-1:-1;;;;;52399:6:0;;;;52391:20;;:29;;;;;;;;;;;;;;;52399:6;;52391:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52457:10:0;;52445:32;;52473:3;;52445:23;;:7;;:11;:23::i;:32::-;52500:6;;52492:31;;;-1:-1:-1;;;52492:31:0;;;;;;;;;;52435:42;;-1:-1:-1;;;;;;52500:6:0;;;;52492:22;;:31;;;;;;;;;;;;;;;52500:6;;52492:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52371:3:0;;52337:198;;;-1:-1:-1;52558:8:0;;:21;;52571:7;52558:12;:21::i;:::-;52547:8;:32;52600:15;:13;:15::i;38539:120::-;38083:8;:6;:8::i;:::-;38075:41;;;;;-1:-1:-1;;;38075:41:0;;;;;;;;;;;;-1:-1:-1;;;38075:41:0;;;;;;;;;;;;;;;38608:5:::1;38598:15:::0;;-1:-1:-1;;;;38598:15:0::1;::::0;;38629:22:::1;38638:12;:10;:12::i;:::-;38629:22;::::0;;-1:-1:-1;;;;;38629:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;38539:120::o:0;60428:161::-;60500:6;;60482:4;;60475:45;;-1:-1:-1;;;;;60482:4:0;;;;60500:6;-1:-1:-1;;60475:24:0;:45::i;:::-;60558:9;;60538:6;;60531:50;;-1:-1:-1;;;;;60538:6:0;;;;60558:9;-1:-1:-1;;60531:26:0;:50::i;56206:740::-;56274:6;;56267:39;;;-1:-1:-1;;;56267:39:0;;56300:4;56267:39;;;;;;56248:16;;56267:57;;56319:4;;56267:47;;56311:2;;-1:-1:-1;;;;;56274:6:0;;;;56267:24;;:39;;;;;;;;;;;;;;;56274:6;56267:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56267:39:0;;:43;:47::i;:57::-;56248:76;;56350:9;;;;;;;;;-1:-1:-1;;;;;56350:9:0;-1:-1:-1;;;;;56335:50:0;;56386:8;56396:1;56399:19;56428:4;56435:3;56335:104;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56335:104:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56335:104:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56335:104:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56335:104:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;56335:104:0;;;;;;;;56479:6;;-1:-1:-1;;;56472:39:0;;56505:4;56472:39;;;;;;56452:17;;-1:-1:-1;;;;;;56479:6:0;;;;-1:-1:-1;56472:24:0;;-1:-1:-1;56472:39:0;;;;;-1:-1:-1;56472:39:0;;-1:-1:-1;56472:39:0;;;;;;;56479:6;56472:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56472:39:0;56562:7;;56472:39;;-1:-1:-1;56524:21:0;;56548:35;;47978:4;;56548:22;;56472:39;;56548:13;:22::i;:35::-;56601:6;;56524:59;;-1:-1:-1;56594:53:0;;-1:-1:-1;;;;;56601:6:0;56622:9;56524:59;56594:27;:53::i;:::-;56660:22;56685:36;47978:4;56685:23;56699:8;;56685:9;:13;;:23;;;;:::i;:36::-;56760:17;;56739:6;;56660:61;;-1:-1:-1;56732:62:0;;-1:-1:-1;;;;;56739:6:0;;;;56760:17;56660:61;56732:27;:62::i;:::-;56807:21;56831:42;47978:4;56831:29;:9;47937:3;56831:13;:29::i;:42::-;56912:10;;56891:6;;56807:66;;-1:-1:-1;56884:54:0;;-1:-1:-1;;;;;56891:6:0;;;;56912:10;56807:66;56884:27;:54::i;56985:224::-;57055:6;;57048:39;;;-1:-1:-1;;;57048:39:0;;57081:4;57048:39;;;;;;57028:17;;-1:-1:-1;;;;;57055:6:0;;57048:24;;:39;;;;;;;;;;;;;;57055:6;57048:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57048:39:0;57113:9;;57098:103;;-1:-1:-1;;;57098:103:0;;;;;;;;57113:9;57098:103;;;;;;57190:4;57098:103;;;;;;57197:3;57098:103;;;;;;;;;;;;;57163:17;57098:103;;;;;;;;57048:39;;-1:-1:-1;;;;;;57113:9:0;;;;57098:50;;57048:39;;57113:9;;57163:17;;57098:103;;;;;;;;57163:17;;57098:103;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57098:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57098:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57098:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56985:224;:::o;613:106::-;701:10;613:106;:::o;8903:179::-;8961:7;8993:5;;;9017:6;;;;9009:46;;;;;-1:-1:-1;;;9009:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;38280:118;37806:8;:6;:8::i;:::-;37805:9;37797:38;;;;;-1:-1:-1;;;37797:38:0;;;;;;;;;;;;-1:-1:-1;;;37797:38:0;;;;;;;;;;;;;;;38340:7:::1;:14:::0;;-1:-1:-1;;;;38340:14:0::1;-1:-1:-1::0;;;38340:14:0::1;::::0;;38370:20:::1;38377:12;:10;:12::i;60597:143::-:0;60671:6;;60653:4;;60646:35;;-1:-1:-1;;;;;60653:4:0;;;;60671:6;;60646:24;:35::i;:::-;60719:9;;60699:6;;60692:40;;-1:-1:-1;;;;;60699:6:0;;;;60719:9;;60692:26;:40::i;35621:761::-;36045:23;36071:69;36099:4;36071:69;;;;;;;;;;;;;;;;;36079:5;-1:-1:-1;;;;;36071:27:0;;;:69;;;;;:::i;:::-;36155:17;;36045:95;;-1:-1:-1;36155:21:0;36151:224;;36297:10;36286:30;;;;;;;;;;;;;;;-1:-1:-1;36286:30:0;36278:85;;;;-1:-1:-1;;;36278:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29361:530;29488:12;29546:5;29521:21;:30;;29513:81;;;;-1:-1:-1;;;29513:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29613:18;29624:6;29613:10;:18::i;:::-;29605:60;;;;;-1:-1:-1;;;29605:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29739:12;29753:23;29780:6;-1:-1:-1;;;;;29780:11:0;29800:5;29808:4;29780:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;29780:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29738:75;;;;29831:52;29849:7;29858:10;29870:12;29831:17;:52::i;:::-;29824:59;29361:530;-1:-1:-1;;;;;;;29361:530:0:o;25391:422::-;25758:20;25797:8;;;25391:422::o;31901:742::-;32016:12;32045:7;32041:595;;;-1:-1:-1;32076:10:0;32069:17;;32041:595;32190:17;;:21;32186:439;;32453:10;32447:17;32514:15;32501:10;32497:2;32493:19;32486:44;32401:148;32596:12;32589:20;;-1:-1:-1;;;32589:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://7e2d0d93c2a620e5d1039f70a067aa8ce3bdb280883e5e89d369b79be4f25e0a
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Validator ID :
0 FTM
Amount Staked
0
Amount Delegated
0
Staking Total
0
Staking Start Epoch
0
Staking Start Time
0
Proof of Importance
0
Origination Score
0
Validation Score
0
Active
0
Online
0
Downtime
0 s
Address | Amount | claimed Rewards | Created On Epoch | Created On |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.