Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0xbba3ccc3c74c10947c7480324155e933133997a9
Contract Name:
StrategyBenqiWbtcE
Compiler Version
v0.6.7+commit.b8d736ae
Contract Source Code (Solidity)
/** *Submitted for verification at snowtrace.io on 2022-01-20 */ // Sources flattened with hardhat v2.8.0 https://hardhat.org // File contracts/lib/safe-math.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File contracts/lib/context.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File contracts/lib/erc20.sol // File: contracts/GSN/Context.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; // File: contracts/token/ERC20/IERC20.sol /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: contracts/utils/Address.sol /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // 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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: contracts/token/ERC20/ERC20.sol /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File contracts/lib/careful-math.sol pragma solidity ^0.6.0; /** * @title Careful Math * @author Compound * @notice Derived from OpenZeppelin's SafeMath library * https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/math/SafeMath.sol */ contract CarefulMath { /** * @dev Possible error codes that we can return */ enum MathError { NO_ERROR, DIVISION_BY_ZERO, INTEGER_OVERFLOW, INTEGER_UNDERFLOW } /** * @dev Multiplies two numbers, returns an error on overflow. */ function mulUInt(uint a, uint b) internal pure returns (MathError, uint) { if (a == 0) { return (MathError.NO_ERROR, 0); } uint c = a * b; if (c / a != b) { return (MathError.INTEGER_OVERFLOW, 0); } else { return (MathError.NO_ERROR, c); } } /** * @dev Integer division of two numbers, truncating the quotient. */ function divUInt(uint a, uint b) internal pure returns (MathError, uint) { if (b == 0) { return (MathError.DIVISION_BY_ZERO, 0); } return (MathError.NO_ERROR, a / b); } /** * @dev Subtracts two numbers, returns an error on overflow (i.e. if subtrahend is greater than minuend). */ function subUInt(uint a, uint b) internal pure returns (MathError, uint) { if (b <= a) { return (MathError.NO_ERROR, a - b); } else { return (MathError.INTEGER_UNDERFLOW, 0); } } /** * @dev Adds two numbers, returns an error on overflow. */ function addUInt(uint a, uint b) internal pure returns (MathError, uint) { uint c = a + b; if (c >= a) { return (MathError.NO_ERROR, c); } else { return (MathError.INTEGER_OVERFLOW, 0); } } /** * @dev add a and b and then subtract c */ function addThenSubUInt(uint a, uint b, uint c) internal pure returns (MathError, uint) { (MathError err0, uint sum) = addUInt(a, b); if (err0 != MathError.NO_ERROR) { return (err0, 0); } return subUInt(sum, c); } } // File contracts/lib/exponential.sol pragma solidity ^0.6.0; /** * @title Exponential module for storing fixed-precision decimals * @author Compound * @notice Exp is a struct which stores decimals with a fixed precision of 18 decimal places. * Thus, if we wanted to store the 5.1, mantissa would store 5.1e18. That is: * `Exp({mantissa: 5100000000000000000})`. */ contract Exponential is CarefulMath { uint constant expScale = 1e18; uint constant doubleScale = 1e36; uint constant halfExpScale = expScale/2; uint constant mantissaOne = expScale; struct Exp { uint mantissa; } struct Double { uint mantissa; } /** * @dev Creates an exponential from numerator and denominator values. * Note: Returns an error if (`num` * 10e18) > MAX_INT, * or if `denom` is zero. */ function getExp(uint num, uint denom) pure internal returns (MathError, Exp memory) { (MathError err0, uint scaledNumerator) = mulUInt(num, expScale); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } (MathError err1, uint rational) = divUInt(scaledNumerator, denom); if (err1 != MathError.NO_ERROR) { return (err1, Exp({mantissa: 0})); } return (MathError.NO_ERROR, Exp({mantissa: rational})); } /** * @dev Adds two exponentials, returning a new exponential. */ function addExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) { (MathError error, uint result) = addUInt(a.mantissa, b.mantissa); return (error, Exp({mantissa: result})); } /** * @dev Subtracts two exponentials, returning a new exponential. */ function subExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) { (MathError error, uint result) = subUInt(a.mantissa, b.mantissa); return (error, Exp({mantissa: result})); } /** * @dev Multiply an Exp by a scalar, returning a new Exp. */ function mulScalar(Exp memory a, uint scalar) pure internal returns (MathError, Exp memory) { (MathError err0, uint scaledMantissa) = mulUInt(a.mantissa, scalar); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } return (MathError.NO_ERROR, Exp({mantissa: scaledMantissa})); } /** * @dev Multiply an Exp by a scalar, then truncate to return an unsigned integer. */ function mulScalarTruncate(Exp memory a, uint scalar) pure internal returns (MathError, uint) { (MathError err, Exp memory product) = mulScalar(a, scalar); if (err != MathError.NO_ERROR) { return (err, 0); } return (MathError.NO_ERROR, truncate(product)); } /** * @dev Multiply an Exp by a scalar, truncate, then add an to an unsigned integer, returning an unsigned integer. */ function mulScalarTruncateAddUInt(Exp memory a, uint scalar, uint addend) pure internal returns (MathError, uint) { (MathError err, Exp memory product) = mulScalar(a, scalar); if (err != MathError.NO_ERROR) { return (err, 0); } return addUInt(truncate(product), addend); } /** * @dev Divide an Exp by a scalar, returning a new Exp. */ function divScalar(Exp memory a, uint scalar) pure internal returns (MathError, Exp memory) { (MathError err0, uint descaledMantissa) = divUInt(a.mantissa, scalar); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } return (MathError.NO_ERROR, Exp({mantissa: descaledMantissa})); } /** * @dev Divide a scalar by an Exp, returning a new Exp. */ function divScalarByExp(uint scalar, Exp memory divisor) pure internal returns (MathError, Exp memory) { /* We are doing this as: getExp(mulUInt(expScale, scalar), divisor.mantissa) How it works: Exp = a / b; Scalar = s; `s / (a / b)` = `b * s / a` and since for an Exp `a = mantissa, b = expScale` */ (MathError err0, uint numerator) = mulUInt(expScale, scalar); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } return getExp(numerator, divisor.mantissa); } /** * @dev Divide a scalar by an Exp, then truncate to return an unsigned integer. */ function divScalarByExpTruncate(uint scalar, Exp memory divisor) pure internal returns (MathError, uint) { (MathError err, Exp memory fraction) = divScalarByExp(scalar, divisor); if (err != MathError.NO_ERROR) { return (err, 0); } return (MathError.NO_ERROR, truncate(fraction)); } /** * @dev Multiplies two exponentials, returning a new exponential. */ function mulExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) { (MathError err0, uint doubleScaledProduct) = mulUInt(a.mantissa, b.mantissa); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } // We add half the scale before dividing so that we get rounding instead of truncation. // See "Listing 6" and text above it at https://accu.org/index.php/journals/1717 // Without this change, a result like 6.6...e-19 will be truncated to 0 instead of being rounded to 1e-18. (MathError err1, uint doubleScaledProductWithHalfScale) = addUInt(halfExpScale, doubleScaledProduct); if (err1 != MathError.NO_ERROR) { return (err1, Exp({mantissa: 0})); } (MathError err2, uint product) = divUInt(doubleScaledProductWithHalfScale, expScale); // The only error `div` can return is MathError.DIVISION_BY_ZERO but we control `expScale` and it is not zero. assert(err2 == MathError.NO_ERROR); return (MathError.NO_ERROR, Exp({mantissa: product})); } /** * @dev Multiplies two exponentials given their mantissas, returning a new exponential. */ function mulExp(uint a, uint b) pure internal returns (MathError, Exp memory) { return mulExp(Exp({mantissa: a}), Exp({mantissa: b})); } /** * @dev Multiplies three exponentials, returning a new exponential. */ function mulExp3(Exp memory a, Exp memory b, Exp memory c) pure internal returns (MathError, Exp memory) { (MathError err, Exp memory ab) = mulExp(a, b); if (err != MathError.NO_ERROR) { return (err, ab); } return mulExp(ab, c); } /** * @dev Divides two exponentials, returning a new exponential. * (a/scale) / (b/scale) = (a/scale) * (scale/b) = a/b, * which we can scale as an Exp by calling getExp(a.mantissa, b.mantissa) */ function divExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) { return getExp(a.mantissa, b.mantissa); } /** * @dev Truncates the given exp to a whole number value. * For example, truncate(Exp{mantissa: 15 * expScale}) = 15 */ function truncate(Exp memory exp) pure internal returns (uint) { // Note: We are not using careful math here as we're performing a division that cannot fail return exp.mantissa / expScale; } /** * @dev Checks if first Exp is less than second Exp. */ function lessThanExp(Exp memory left, Exp memory right) pure internal returns (bool) { return left.mantissa < right.mantissa; } /** * @dev Checks if left Exp <= right Exp. */ function lessThanOrEqualExp(Exp memory left, Exp memory right) pure internal returns (bool) { return left.mantissa <= right.mantissa; } /** * @dev Checks if left Exp > right Exp. */ function greaterThanExp(Exp memory left, Exp memory right) pure internal returns (bool) { return left.mantissa > right.mantissa; } /** * @dev returns true if Exp is exactly zero */ function isZeroExp(Exp memory value) pure internal returns (bool) { return value.mantissa == 0; } function safe224(uint n, string memory errorMessage) pure internal returns (uint224) { require(n < 2**224, errorMessage); return uint224(n); } function safe32(uint n, string memory errorMessage) pure internal returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function add_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { return Exp({mantissa: add_(a.mantissa, b.mantissa)}); } function add_(Double memory a, Double memory b) pure internal returns (Double memory) { return Double({mantissa: add_(a.mantissa, b.mantissa)}); } function add_(uint a, uint b) pure internal returns (uint) { return add_(a, b, "addition overflow"); } function add_(uint a, uint b, string memory errorMessage) pure internal returns (uint) { uint c = a + b; require(c >= a, errorMessage); return c; } function sub_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { return Exp({mantissa: sub_(a.mantissa, b.mantissa)}); } function sub_(Double memory a, Double memory b) pure internal returns (Double memory) { return Double({mantissa: sub_(a.mantissa, b.mantissa)}); } function sub_(uint a, uint b) pure internal returns (uint) { return sub_(a, b, "subtraction underflow"); } function sub_(uint a, uint b, string memory errorMessage) pure internal returns (uint) { require(b <= a, errorMessage); return a - b; } function mul_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { return Exp({mantissa: mul_(a.mantissa, b.mantissa) / expScale}); } function mul_(Exp memory a, uint b) pure internal returns (Exp memory) { return Exp({mantissa: mul_(a.mantissa, b)}); } function mul_(uint a, Exp memory b) pure internal returns (uint) { return mul_(a, b.mantissa) / expScale; } function mul_(Double memory a, Double memory b) pure internal returns (Double memory) { return Double({mantissa: mul_(a.mantissa, b.mantissa) / doubleScale}); } function mul_(Double memory a, uint b) pure internal returns (Double memory) { return Double({mantissa: mul_(a.mantissa, b)}); } function mul_(uint a, Double memory b) pure internal returns (uint) { return mul_(a, b.mantissa) / doubleScale; } function mul_(uint a, uint b) pure internal returns (uint) { return mul_(a, b, "multiplication overflow"); } function mul_(uint a, uint b, string memory errorMessage) pure internal returns (uint) { if (a == 0 || b == 0) { return 0; } uint c = a * b; require(c / a == b, errorMessage); return c; } function div_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { return Exp({mantissa: div_(mul_(a.mantissa, expScale), b.mantissa)}); } function div_(Exp memory a, uint b) pure internal returns (Exp memory) { return Exp({mantissa: div_(a.mantissa, b)}); } function div_(uint a, Exp memory b) pure internal returns (uint) { return div_(mul_(a, expScale), b.mantissa); } function div_(Double memory a, Double memory b) pure internal returns (Double memory) { return Double({mantissa: div_(mul_(a.mantissa, doubleScale), b.mantissa)}); } function div_(Double memory a, uint b) pure internal returns (Double memory) { return Double({mantissa: div_(a.mantissa, b)}); } function div_(uint a, Double memory b) pure internal returns (uint) { return div_(mul_(a, doubleScale), b.mantissa); } function div_(uint a, uint b) pure internal returns (uint) { return div_(a, b, "divide by zero"); } function div_(uint a, uint b, string memory errorMessage) pure internal returns (uint) { require(b > 0, errorMessage); return a / b; } function fraction(uint a, uint b) pure internal returns (Double memory) { return Double({mantissa: div_(mul_(a, doubleScale), b)}); } } // File contracts/interfaces/globe.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; interface IGlobe is IERC20 { function token() external view returns (address); function claimInsurance() external; // NOTE: Only yDelegatedVault implements this function getRatio() external view returns (uint256); function depositAll() external; function deposit(uint256) external; function withdrawAll() external; function withdraw(uint256) external; function earn() external; function decimals() external view returns (uint8); } // File contracts/interfaces/staking-rewards.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; interface IStakingRewards { function balanceOf(address account) external view returns (uint256); function earned(address account) external view returns (uint256); function exit() external; function getReward() external; function getRewardForDuration() external view returns (uint256); function lastTimeRewardApplicable() external view returns (uint256); function lastUpdateTime() external view returns (uint256); function notifyRewardAmount(uint256 reward) external; function periodFinish() external view returns (uint256); function rewardPerToken() external view returns (uint256); function rewardPerTokenStored() external view returns (uint256); function rewardRate() external view returns (uint256); function rewards(address) external view returns (uint256); function rewardsDistribution() external view returns (address); function rewardsDuration() external view returns (uint256); function rewardsToken() external view returns (address); function stake(uint256 amount) external; function stakeWithPermit( uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; function stakingToken() external view returns (address); function totalSupply() external view returns (uint256); function userRewardPerTokenPaid(address) external view returns (uint256); function withdraw(uint256 amount) external; } interface IStakingRewardsFactory { function deploy(address stakingToken, uint256 rewardAmount) external; function isOwner() external view returns (bool); function notifyRewardAmount(address stakingToken) external; function notifyRewardAmounts() external; function owner() external view returns (address); function renounceOwnership() external; function rewardsToken() external view returns (address); function stakingRewardsGenesis() external view returns (uint256); function stakingRewardsInfoByStakingToken(address) external view returns (address stakingRewards, uint256 rewardAmount); function stakingTokens(uint256) external view returns (address); function transferOwnership(address newOwner) external; } // File contracts/interfaces/icequeen.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.7; interface IIcequeen { function BONUS_MULTIPLIER() external view returns (uint256); function add( uint256 _allocPoint, address _lpToken, bool _withUpdate ) external; function bonusEndBlock() external view returns (uint256); function deposit(uint256 _pid, uint256 _amount) external; function dev(address _devaddr) external; function devFundDivRate() external view returns (uint256); function devaddr() external view returns (address); function emergencyWithdraw(uint256 _pid) external; function getMultiplier(uint256 _from, uint256 _to) external view returns (uint256); function massUpdatePools() external; function owner() external view returns (address); function pendingSnowball(uint256 _pid, address _user) external view returns (uint256); function snowball() external view returns (address); function snowballPerBlock() external view returns (uint256); function poolInfo(uint256) external view returns ( address lpToken, uint256 allocPoint, uint256 lastRewardBlock, uint256 accSnowballPerShare ); function poolLength() external view returns (uint256); function renounceOwnership() external; function set( uint256 _pid, uint256 _allocPoint, bool _withUpdate ) external; function setBonusEndBlock(uint256 _bonusEndBlock) external; function setDevFundDivRate(uint256 _devFundDivRate) external; function setSnowballPerBlock(uint256 _snowballPerBlock) external; function startBlock() external view returns (uint256); function totalAllocPoint() external view returns (uint256); function transferOwnership(address newOwner) external; function updatePool(uint256 _pid) external; function userInfo(uint256, address) external view returns (uint256 amount, uint256 rewardDebt); function withdraw(uint256 _pid, uint256 _amount) external; } // File contracts/interfaces/pangolin.sol // SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; interface IPangolinRouter { function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityAVAX( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountAVAXMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountAVAX, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); function swapAVAXForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapExactAVAXForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); } interface IPangolinPair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; } interface IPangolinFactory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function createPair(address tokenA, address tokenB) external returns (address pair); } // File contracts/interfaces/controller.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; interface IController { function globes(address) external view returns (address); function rewards() external view returns (address); function devfund() external view returns (address); function treasury() external view returns (address); function balanceOf(address) external view returns (uint256); function withdraw(address, uint256) external; function earn(address, uint256) external; // For Big Green Button: function setGlobe(address _token, address _globe) external; function approveStrategy(address _token, address _strategy) external; function revokeStrategy(address _token, address _strategy) external; function setStrategy(address _token, address _strategy) external; function setStrategist(address _strategist) external; function setGovernance(address _governance) external; function setTimelock(address _timelock) external; } // File contracts/strategies/strategy-base.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.7; // Strategy Contract Basics abstract contract StrategyBase { using SafeERC20 for IERC20; using Address for address; using SafeMath for uint256; // Tokens address public want; address public constant wavax = 0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7; address public constant png = 0x60781C2586D68229fde47564546784ab3fACA982; address public constant snob = 0xC38f41A296A4493Ff429F1238e030924A1542e50; // Dex address public pangolinRouter = 0xE54Ca86531e17Ef3616d22Ca28b0D458b6C89106; address public feeDistributor = 0xAd86ef5fD2eBc25bb9Db41A1FE8d0f2a322c7839; // Perfomance fees - start with 10% uint256 public performanceTreasuryFee = 0; uint256 public constant performanceTreasuryMax = 10000; uint256 public performanceDevFee = 0; uint256 public constant performanceDevMax = 10000; // How many rewards tokens to keep? uint256 public keep = 1000; uint256 public constant keepMax = 10000; uint256 public revenueShare = 3000; uint256 public constant revenueShareMax = 10000; // Withdrawal fee 0% // - 0% to treasury // - 0% to dev fund uint256 public withdrawalTreasuryFee = 0; uint256 public constant withdrawalTreasuryMax = 100000; uint256 public withdrawalDevFundFee = 0; uint256 public constant withdrawalDevFundMax = 100000; // User accounts address public governance; address public controller; address public strategist; address public timelock; mapping(address => bool) public harvesters; constructor( address _want, address _governance, address _strategist, address _controller, address _timelock ) public { require(_want != address(0)); require(_governance != address(0)); require(_strategist != address(0)); require(_controller != address(0)); require(_timelock != address(0)); want = _want; governance = _governance; strategist = _strategist; controller = _controller; timelock = _timelock; } // **** Modifiers **** // modifier onlyBenevolent { require( harvesters[msg.sender] || msg.sender == governance || msg.sender == strategist ); _; } // **** Views **** // function balanceOfWant() public view returns (uint256) { return IERC20(want).balanceOf(address(this)); } function balanceOfPool() public virtual view returns (uint256); function balanceOf() public view returns (uint256) { return balanceOfWant().add(balanceOfPool()); } function getName() external virtual pure returns (string memory); // **** Setters **** // function setKeep(uint256 _keep) external { require(msg.sender == timelock, "!timelock"); keep = _keep; } function setRevenueShare(uint256 _share) external { require(msg.sender == timelock, "!timelock"); revenueShare = _share; } function whitelistHarvester(address _harvester) external { require(msg.sender == governance || msg.sender == strategist, "not authorized"); harvesters[_harvester] = true; } function revokeHarvester(address _harvester) external { require(msg.sender == governance || msg.sender == strategist, "not authorized"); harvesters[_harvester] = false; } function setFeeDistributor(address _feeDistributor) external { require(msg.sender == governance, "not authorized"); feeDistributor = _feeDistributor; } function setWithdrawalDevFundFee(uint256 _withdrawalDevFundFee) external { require(msg.sender == timelock, "!timelock"); withdrawalDevFundFee = _withdrawalDevFundFee; } function setWithdrawalTreasuryFee(uint256 _withdrawalTreasuryFee) external { require(msg.sender == timelock, "!timelock"); withdrawalTreasuryFee = _withdrawalTreasuryFee; } function setPerformanceDevFee(uint256 _performanceDevFee) external { require(msg.sender == timelock, "!timelock"); performanceDevFee = _performanceDevFee; } function setPerformanceTreasuryFee(uint256 _performanceTreasuryFee) external { require(msg.sender == timelock, "!timelock"); performanceTreasuryFee = _performanceTreasuryFee; } function setStrategist(address _strategist) external { require(msg.sender == governance, "!governance"); strategist = _strategist; } function setGovernance(address _governance) external { require(msg.sender == governance, "!governance"); governance = _governance; } function setTimelock(address _timelock) external { require(msg.sender == timelock, "!timelock"); timelock = _timelock; } function setController(address _controller) external { require(msg.sender == timelock, "!timelock"); controller = _controller; } // **** State mutations **** // function deposit() public virtual; // Controller only function for creating additional rewards from dust function withdraw(IERC20 _asset) external returns (uint256 balance) { require(msg.sender == controller, "!controller"); require(want != address(_asset), "want"); balance = _asset.balanceOf(address(this)); _asset.safeTransfer(controller, balance); } // Withdraw partial funds, normally used with a globe withdrawal function withdraw(uint256 _amount) external { require(msg.sender == controller, "!controller"); uint256 _balance = IERC20(want).balanceOf(address(this)); if (_balance < _amount) { _amount = _withdrawSome(_amount.sub(_balance)); _amount = _amount.add(_balance); } uint256 _feeDev = _amount.mul(withdrawalDevFundFee).div( withdrawalDevFundMax ); IERC20(want).safeTransfer(IController(controller).devfund(), _feeDev); uint256 _feeTreasury = _amount.mul(withdrawalTreasuryFee).div( withdrawalTreasuryMax ); IERC20(want).safeTransfer( IController(controller).treasury(), _feeTreasury ); address _globe = IController(controller).globes(address(want)); require(_globe != address(0), "!globe"); // additional protection so we don't burn the funds IERC20(want).safeTransfer(_globe, _amount.sub(_feeDev).sub(_feeTreasury)); } // Withdraw funds, used to swap between strategies function withdrawForSwap(uint256 _amount) external returns (uint256 balance) { require(msg.sender == controller, "!controller"); _withdrawSome(_amount); balance = IERC20(want).balanceOf(address(this)); address _globe = IController(controller).globes(address(want)); require(_globe != address(0), "!globe"); IERC20(want).safeTransfer(_globe, balance); } // Withdraw all funds, normally used when migrating strategies function withdrawAll() external returns (uint256 balance) { require(msg.sender == controller, "!controller"); _withdrawAll(); balance = IERC20(want).balanceOf(address(this)); address _globe = IController(controller).globes(address(want)); require(_globe != address(0), "!globe"); // additional protection so we don't burn the funds IERC20(want).safeTransfer(_globe, balance); } function _withdrawAll() internal { _withdrawSome(balanceOfPool()); } function _withdrawSome(uint256 _amount) internal virtual returns (uint256); function harvest() public virtual; // **** Emergency functions **** function execute(address _target, bytes memory _data) public payable returns (bytes memory response) { require(msg.sender == timelock, "!timelock"); require(_target != address(0), "!target"); // call contract in current context assembly { let succeeded := delegatecall( sub(gas(), 5000), _target, add(_data, 0x20), mload(_data), 0, 0 ) let size := returndatasize() response := mload(0x40) mstore( 0x40, add(response, and(add(add(size, 0x20), 0x1f), not(0x1f))) ) mstore(response, size) returndatacopy(add(response, 0x20), 0, size) switch iszero(succeeded) case 1 { // throw if delegatecall failed revert(add(response, 0x20), size) } } } // **** Internal functions **** function _swapPangolin( address _from, address _to, uint256 _amount ) internal { require(_to != address(0)); // Swap with Pangolin IERC20(_from).safeApprove(pangolinRouter, 0); IERC20(_from).safeApprove(pangolinRouter, _amount); address[] memory path; if (_from == png || _to == png) { path = new address[](2); path[0] = _from; path[1] = _to; } else if (_from == wavax || _to == wavax) { path = new address[](2); path[0] = _from; path[1] = _to; } else { path = new address[](3); path[0] = _from; path[1] = png; path[2] = _to; } IPangolinRouter(pangolinRouter).swapExactTokensForTokens( _amount, 0, path, address(this), now.add(60) ); } function _swapPangolinWithPath( address[] memory path, uint256 _amount ) internal { require(path[1] != address(0)); IPangolinRouter(pangolinRouter).swapExactTokensForTokens( _amount, 0, path, address(this), now.add(60) ); } function _distributePerformanceFeesAndDeposit() internal { uint256 _want = IERC20(want).balanceOf(address(this)); if (_want > 0) { // Treasury fees IERC20(want).safeTransfer( IController(controller).treasury(), _want.mul(performanceTreasuryFee).div(performanceTreasuryMax) ); // Performance fee IERC20(want).safeTransfer( IController(controller).devfund(), _want.mul(performanceDevFee).div(performanceDevMax) ); deposit(); } } function _takeFeeWavaxToSnob(uint256 _keep) internal { IERC20(wavax).safeApprove(pangolinRouter, 0); IERC20(wavax).safeApprove(pangolinRouter, _keep); _swapPangolin(wavax, snob, _keep); uint _snob = IERC20(snob).balanceOf(address(this)); uint256 _share = _snob.mul(revenueShare).div(revenueShareMax); IERC20(snob).safeTransfer( feeDistributor, _share ); IERC20(snob).safeTransfer( IController(controller).treasury(), _snob.sub(_share) ); } } // File contracts/interfaces/benqi.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; interface IQiToken { function totalSupply() external view returns (uint256); function totalBorrows() external returns (uint256); function borrowIndex() external returns (uint256); function repayBorrow(uint256 repayAmount) external returns (uint256); function redeemUnderlying(uint256 redeemAmount) external returns (uint256); function borrow(uint256 borrowAmount) external returns (uint256); function mint(uint256 mintAmount) external returns (uint256); function transfer(address dst, uint256 amount) external returns (bool); function transferFrom( address src, address dst, uint256 amount ) external returns (bool); function approve(address spender, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function balanceOfUnderlying(address owner) external returns (uint256); function getAccountSnapshot(address account) external view returns ( uint256, uint256, uint256, uint256 ); function borrowRatePerBlock() external view returns (uint256); function supplyRatePerBlock() external view returns (uint256); function totalBorrowsCurrent() external returns (uint256); function borrowBalanceCurrent(address account) external returns (uint256); function borrowBalanceStored(address account) external view returns (uint256); function exchangeRateCurrent() external returns (uint256); function exchangeRateStored() external view returns (uint256); function getCash() external view returns (uint256); function accrueInterest() external returns (uint256); function seize( address liquidator, address borrower, uint256 seizeTokens ) external returns (uint256); } interface IQiAvax { function mint() external payable; /** * @notice Sender redeems qiTokens in exchange for the underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemTokens The number of qiTokens to redeem into underlying * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeem(uint256 redeemTokens) external returns (uint256); /** * @notice Sender redeems qiTokens in exchange for a specified amount of underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemAmount The amount of underlying to redeem * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemUnderlying(uint256 redeemAmount) external returns (uint256); /** * @notice Sender borrows assets from the protocol to their own address * @param borrowAmount The amount of the underlying asset to borrow * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function borrow(uint256 borrowAmount) external returns (uint256); /** * @notice Sender repays their own borrow * @dev Reverts upon any failure */ function repayBorrow() external payable; /** * @notice Sender repays a borrow belonging to borrower * @dev Reverts upon any failure * @param borrower the account with the debt being payed off */ function repayBorrowBehalf(address borrower) external payable; /** * @notice The sender liquidates the borrowers collateral. * The collateral seized is transferred to the liquidator. * @dev Reverts upon any failure * @param borrower The borrower of this qiToken to be liquidated * @param qiTokenCollateral The market in which to seize collateral from the borrower */ function liquidateBorrow(address borrower, address qiTokenCollateral) external payable; } interface IComptroller { function rewardAccrued(uint8 rewardType, address holder) external view returns (uint); function rewardSupplyState(uint8 rewardType, address holder) external view returns (uint224 index, uint32 timestamp); function rewardBorrowState(uint8 rewardType, address holder) external view returns (uint224 index, uint32 timestamp); function rewardSupplierIndex(uint8 rewardType, address qiContractAddress, address holder) external view returns (uint supplierIndex); function rewardBorrowerIndex(uint8 rewardType, address qiContractAddress, address holder) external view returns (uint borrowerIndex); /*** Assets You Are In ***/ function enterMarkets(address[] calldata qiTokens) external returns (uint256[] memory); function exitMarket(address qiToken) external returns (uint256); /*** Policy Hooks ***/ function mintAllowed( address qiToken, address minter, uint256 mintAmount ) external returns (uint256); function mintVerify( address qiToken, address minter, uint256 mintAmount, uint256 mintTokens ) external; function redeemAllowed( address qiToken, address redeemer, uint256 redeemTokens ) external returns (uint256); function redeemVerify( address qiToken, address redeemer, uint256 redeemAmount, uint256 redeemTokens ) external; function borrowAllowed( address qiToken, address borrower, uint256 borrowAmount ) external returns (uint256); function borrowVerify( address qiToken, address borrower, uint256 borrowAmount ) external; function repayBorrowAllowed( address qiToken, address payer, address borrower, uint256 repayAmount ) external returns (uint256); function repayBorrowVerify( address qiToken, address payer, address borrower, uint256 repayAmount, uint256 borrowerIndex ) external; function liquidateBorrowAllowed( address qiTokenBorrowed, address qiTokenCollateral, address liquidator, address borrower, uint256 repayAmount ) external returns (uint256); function liquidateBorrowVerify( address qiTokenBorrowed, address qiTokenCollateral, address liquidator, address borrower, uint256 repayAmount, uint256 seizeTokens ) external; function seizeAllowed( address qiTokenCollateral, address qiTokenBorrowed, address liquidator, address borrower, uint256 seizeTokens ) external returns (uint256); function seizeVerify( address qiTokenCollateral, address qiTokenBorrowed, address liquidator, address borrower, uint256 seizeTokens ) external; function transferAllowed( address qiToken, address src, address dst, uint256 transferTokens ) external returns (uint256); function transferVerify( address qiToken, address src, address dst, uint256 transferTokens ) external; /*** Liquidity/Liquidation Calculations ***/ function liquidateCalculateSeizeTokens( address qiTokenBorrowed, address qiTokenCollateral, uint256 repayAmount ) external view returns (uint256, uint256); // Claim all the Reward Token accrued by holder in all markets function claimReward(uint8 rewardId, address holder) external; // Claim all the Reward Token accrued by holder in specific markets function claimReward(uint8 rewardId, address holder, address[] calldata qiTokens) external; // Claim all the Reward Token accrued by specific holders in specific markets for their supplies and/or borrows function claimReward(uint8 rewardId, address[] calldata holders, address[] calldata qiTokens, bool borrowers, bool suppliers ) external; function markets(address qiTokenAddress) external view returns (bool, uint256); } interface IBenqiLens { function getQiBalanceMetadataExt( address qi, address comptroller, address account ) external returns ( uint256 balance, uint256 votes, address delegate, uint256 allocated ); } // File contracts/interfaces/wavax.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; interface WAVAX { function name() external view returns (string memory); function approve(address guy, uint256 wad) external returns (bool); function totalSupply() external view returns (uint256); function transferFrom( address src, address dst, uint256 wad ) external returns (bool); function withdraw(uint256 wad) external; function decimals() external view returns (uint8); function balanceOf(address) external view returns (uint256); function symbol() external view returns (string memory); function transfer(address dst, uint256 wad) external returns (bool); function deposit() external payable; function allowance(address, address) external view returns (uint256); } // File contracts/strategies/strategy-qi-farm-base.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; abstract contract StrategyQiFarmBase is StrategyBase, Exponential { address public constant comptroller = 0x486Af39519B4Dc9a7fCcd318217352830E8AD9b4; // Through UniTroller Address address public constant benqi = 0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5; //Qi Token address public qiToken; // Require a 0.04 buffer between // market collateral factor and strategy's collateral factor // when leveraging. uint256 colFactorLeverageBuffer = 40; uint256 colFactorLeverageBufferMax = 1000; // Allow a 0.03 buffer // between market collateral factor and strategy's collateral factor // until we have to deleverage // This is so we can hit max leverage and keep accruing interest uint256 colFactorSyncBuffer = 30; uint256 colFactorSyncBufferMax = 1000; // Keeper bots // Maintain leverage within buffer mapping(address => bool) keepers; constructor( address _token, address _qiToken, address _governance, address _strategist, address _controller, address _timelock ) public StrategyBase(_token, _governance, _strategist, _controller, _timelock) { qiToken = _qiToken; // Enter qiToken Market address[] memory qitokens = new address[](1); qitokens[0] = qiToken; IComptroller(comptroller).enterMarkets(qitokens); } // **** Modifiers **** // modifier onlyKeepers { require( keepers[msg.sender] || msg.sender == address(this) || msg.sender == strategist || msg.sender == governance, "!keepers" ); _; } // **** Views **** // function getSuppliedView() public view returns (uint256) { (, uint256 qiTokenBal, , uint256 exchangeRate) = IQiToken(qiToken) .getAccountSnapshot(address(this) ); (, uint256 bal) = mulScalarTruncate( Exp({mantissa: exchangeRate}), qiTokenBal ); return bal; } function getBorrowedView() public view returns (uint256) { return IQiToken(qiToken).borrowBalanceStored(address(this)); } function balanceOfPool() public override view returns (uint256) { uint256 supplied = getSuppliedView(); uint256 borrowed = getBorrowedView(); return supplied.sub(borrowed); } // Given an unleveraged supply balance, return the target // leveraged supply balance which is still within the safety buffer function getLeveragedSupplyTarget(uint256 supplyBalance) public view returns (uint256) { uint256 leverage = getMaxLeverage(); return supplyBalance.mul(leverage).div(1e18); } function getSafeLeverageColFactor() public view returns (uint256) { uint256 colFactor = getMarketColFactor(); // Collateral factor within the buffer uint256 safeColFactor = colFactor.sub( colFactorLeverageBuffer.mul(1e18).div(colFactorLeverageBufferMax) ); return safeColFactor; } function getSafeSyncColFactor() public view returns (uint256) { uint256 colFactor = getMarketColFactor(); // Collateral factor within the buffer uint256 safeColFactor = colFactor.sub( colFactorSyncBuffer.mul(1e18).div(colFactorSyncBufferMax) ); return safeColFactor; } function getMarketColFactor() public view returns (uint256) { (, uint256 colFactor) = IComptroller(comptroller).markets(qiToken); return colFactor; } // Max leverage we can go up to, w.r.t safe buffer function getMaxLeverage() public view returns (uint256) { uint256 safeLeverageColFactor = getSafeLeverageColFactor(); // Infinite geometric series uint256 leverage = uint256(1e36).div(1e18 - safeLeverageColFactor); return leverage; } // **** Pseudo-view functions (use `callStatic` on these) **** // /* The reason why these exists is because of the nature of the interest accruing supply + borrow balance. The "view" methods are technically snapshots and don't represent the real value. As such there are pseudo view methods where you can retrieve the results by calling `callStatic`. */ function getColFactor() public returns (uint256) { uint256 supplied = getSupplied(); uint256 borrowed = getBorrowed(); return borrowed.mul(1e18).div(supplied); } function getSuppliedUnleveraged() public returns (uint256) { uint256 supplied = getSupplied(); uint256 borrowed = getBorrowed(); return supplied.sub(borrowed); } function getSupplied() public returns (uint256) { return IQiToken(qiToken).balanceOfUnderlying(address(this)); } function getBorrowed() public returns (uint256) { return IQiToken(qiToken).borrowBalanceCurrent(address(this)); } function getBorrowable() public returns (uint256) { uint256 supplied = getSupplied(); uint256 borrowed = getBorrowed(); (, uint256 colFactor) = IComptroller(comptroller).markets(qiToken); // 99.99% just in case some dust accumulates return supplied.mul(colFactor).div(1e18).sub(borrowed).mul(9999).div( 10000 ); } function getRedeemable() public returns (uint256) { uint256 supplied = getSupplied(); uint256 borrowed = getBorrowed(); (, uint256 colFactor) = IComptroller(comptroller).markets(qiToken); // Return 99.99% of the time just incase return supplied.sub(borrowed.mul(1e18).div(colFactor)).mul(9999).div( 10000 ); } function getCurrentLeverage() public returns (uint256) { uint256 supplied = getSupplied(); uint256 borrowed = getBorrowed(); return supplied.mul(1e18).div(supplied.sub(borrowed)); } // **** Setters **** // function addKeeper(address _keeper) public { require( msg.sender == governance || msg.sender == strategist, "!governance" ); keepers[_keeper] = true; } function removeKeeper(address _keeper) public { require( msg.sender == governance || msg.sender == strategist, "!governance" ); keepers[_keeper] = false; } function setColFactorLeverageBuffer(uint256 _colFactorLeverageBuffer) public { require( msg.sender == governance || msg.sender == strategist, "!governance" ); colFactorLeverageBuffer = _colFactorLeverageBuffer; } function setColFactorSyncBuffer(uint256 _colFactorSyncBuffer) public { require( msg.sender == governance || msg.sender == strategist, "!governance" ); colFactorSyncBuffer = _colFactorSyncBuffer; } // **** State mutations **** // // Do a `callStatic` on this. // If it returns true then run it for realz. (i.e. eth_signedTx, not eth_call) function sync() public returns (bool) { uint256 colFactor = getColFactor(); uint256 safeSyncColFactor = getSafeSyncColFactor(); // If we're not safe if (colFactor > safeSyncColFactor) { uint256 unleveragedSupply = getSuppliedUnleveraged(); uint256 idealSupply = getLeveragedSupplyTarget(unleveragedSupply); deleverageUntil(idealSupply); return true; } return false; } function leverageToMax() public { uint256 unleveragedSupply = getSuppliedUnleveraged(); uint256 idealSupply = getLeveragedSupplyTarget(unleveragedSupply); leverageUntil(idealSupply); } // Leverages until we're supplying <x> amount // 1. Redeem <x> want // 2. Repay <x> want function leverageUntil(uint256 _supplyAmount) public onlyKeepers { // 1. Borrow out <X> want // 2. Supply <X> want uint256 leverage = getMaxLeverage(); uint256 unleveragedSupply = getSuppliedUnleveraged(); require( _supplyAmount >= unleveragedSupply && _supplyAmount <= unleveragedSupply.mul(leverage).div(1e18), "!leverage" ); // Since we're only leveraging one asset // Supplied = borrowed uint256 _borrowAndSupply; uint256 supplied = getSupplied(); _borrowAndSupply = getBorrowable(); while (supplied < _supplyAmount) { if (supplied.add(_borrowAndSupply) > _supplyAmount) { _borrowAndSupply = _supplyAmount.sub(supplied); } IQiToken(qiToken).borrow(_borrowAndSupply); deposit(); supplied = supplied.add(_borrowAndSupply); (, uint256 colFactor) = IComptroller(comptroller).markets(qiToken); _borrowAndSupply = supplied.mul(colFactor).div(1e18).sub(_borrowAndSupply).mul(9999).div(10000); } } function deleverageToMin() public { uint256 unleveragedSupply = getSuppliedUnleveraged(); deleverageUntil(unleveragedSupply); } // Deleverages until we're supplying <x> amount // 1. Redeem <x> want // 2. Repay <x> want function deleverageUntil(uint256 _supplyAmount) public virtual onlyKeepers { uint256 unleveragedSupply = getSuppliedUnleveraged(); uint256 supplied = getSupplied(); require( _supplyAmount >= unleveragedSupply && _supplyAmount <= supplied, "!deleverage" ); // Market collateral factor uint256 marketColFactor = getMarketColFactor(); // How much can we redeem uint256 _redeemAndRepay = getRedeemable(); do { // If the amount we're redeeming is exceeding the // target supplyAmount, adjust accordingly if (supplied.sub(_redeemAndRepay) < _supplyAmount) { _redeemAndRepay = supplied.sub(_supplyAmount); } require( IQiToken(qiToken).redeemUnderlying(_redeemAndRepay) == 0, "!redeem" ); IERC20(want).safeApprove(qiToken, 0); IERC20(want).safeApprove(qiToken, _redeemAndRepay); require(IQiToken(qiToken).repayBorrow(_redeemAndRepay) == 0, "!repay"); supplied = supplied.sub(_redeemAndRepay); // After each deleverage we can redeem more (the colFactor) _redeemAndRepay = _redeemAndRepay.mul(1e18).div(marketColFactor); } while (supplied > _supplyAmount); } // allow Native Avax receive() external payable {} function _takeFeeQiToSnob(uint256 _keep) internal { address[] memory path = new address[](3); path[0] = benqi; path[1] = wavax; path[2] = snob; IERC20(benqi).safeApprove(pangolinRouter, 0); IERC20(benqi).safeApprove(pangolinRouter, _keep); _swapPangolinWithPath(path, _keep); uint _snob = IERC20(snob).balanceOf(address(this)); uint256 _share = _snob.mul(revenueShare).div(revenueShareMax); IERC20(snob).safeTransfer( feeDistributor, _share ); IERC20(snob).safeTransfer( IController(controller).treasury(), _snob.sub(_share) ); } function harvest() public override onlyBenevolent { address[] memory qitokens = new address[](1); qitokens[0] = qiToken; uint256 _keep; IComptroller(comptroller).claimReward(1, address(this)); // ClaimAvax uint256 _avax = address(this).balance; // get balance of native Avax if (_avax > 0) { // wrap avax into ERC20 WAVAX(wavax).deposit{value: _avax}(); } uint256 _wavax = IERC20(wavax).balanceOf(address(this)); if (_wavax > 0) { _keep = _wavax.mul(keep).div(keepMax); if (_keep > 0) { _takeFeeWavaxToSnob(_keep); } } IComptroller(comptroller).claimReward(0, address(this)); //Claim Qi uint256 _benqi = IERC20(benqi).balanceOf(address(this)); if (_benqi > 0) { _keep = _benqi.mul(keep).div(keepMax); if (_keep > 0) { _takeFeeQiToSnob(_keep); } if (want != benqi) { _benqi = IERC20(benqi).balanceOf(address(this)); _swapPangolin(benqi, want, _benqi); } } _distributePerformanceFeesAndDeposit(); } // Calculate the Accrued Rewards function getHarvestable() external view returns (uint256, uint256) { uint rewardsQi = _calculateHarvestable(0, address(this)); uint rewardsAvax = _calculateHarvestable(1, address(this)); return (rewardsQi, rewardsAvax); } function _calculateHarvestable(uint8 tokenIndex, address account) internal view returns (uint) { uint rewardAccrued = IComptroller(comptroller).rewardAccrued(tokenIndex, account); (uint224 supplyIndex, ) = IComptroller(comptroller).rewardSupplyState(tokenIndex, account); uint supplierIndex = IComptroller(comptroller).rewardSupplierIndex(tokenIndex, qiToken, account); uint supplyIndexDelta = 0; if (supplyIndex > supplierIndex) { supplyIndexDelta = supplyIndex - supplierIndex; } uint supplyAccrued = IQiToken(qiToken).balanceOf(account).mul(supplyIndexDelta); (uint224 borrowIndex, ) = IComptroller(comptroller).rewardBorrowState(tokenIndex, account); uint borrowerIndex = IComptroller(comptroller).rewardBorrowerIndex(tokenIndex, qiToken, account); uint borrowIndexDelta = 0; if (borrowIndex > borrowerIndex) { borrowIndexDelta = borrowIndex - borrowerIndex; } uint borrowAccrued = IQiToken(qiToken).borrowBalanceStored(account).mul(borrowIndexDelta); return rewardAccrued.add(supplyAccrued.sub(borrowAccrued)); } } // File contracts/strategies/benqi/strategy-benqi-wbtce.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; contract StrategyBenqiWbtcE is StrategyQiFarmBase { address public constant wbtc = 0x50b7545627a5162F82A992c33b87aDc75187B218; //qideposit token address public constant qiwbtc = 0xe194c4c5aC32a3C9ffDb358d9Bfd523a0B6d1568; //lending receipt token constructor( address _governance, address _strategist, address _controller, address _timelock ) public StrategyQiFarmBase( wbtc, qiwbtc, _governance, _strategist, _controller, _timelock ) {} function deposit() public override { uint256 _want = IERC20(want).balanceOf(address(this)); if (_want > 0) { IERC20(want).safeApprove(qiToken, 0); IERC20(want).safeApprove(qiToken, _want); require(IQiToken(qiToken).mint(_want) == 0, "!deposit"); } } function _withdrawSome(uint256 _amount) internal override returns (uint256) { uint256 _want = balanceOfWant(); if (_want < _amount) { uint256 _redeem = _amount.sub(_want); // Make sure market can cover liquidity require(IQiToken(qiToken).getCash() >= _redeem, "!cash-liquidity"); // How much borrowed amount do we need to free? uint256 borrowed = getBorrowed(); uint256 supplied = getSupplied(); uint256 curLeverage = getCurrentLeverage(); uint256 borrowedToBeFree = _redeem.mul(curLeverage).div(1e18); // If the amount we need to free is > borrowed // Just free up all the borrowed amount if (borrowed > 0) { if (borrowedToBeFree > borrowed) { this.deleverageToMin(); } else { // Just keep freeing up borrowed amounts until // we hit a safe number to redeem our underlying this.deleverageUntil(supplied.sub(borrowedToBeFree)); } } // Redeems underlying require(IQiToken(qiToken).redeemUnderlying(_redeem) == 0, "!redeem"); } return _amount; } // **** Views **** // function getName() external override pure returns (string memory) { return "StrategyBenqiWbtcE"; } }
[{"inputs":[{"internalType":"address","name":"_governance","type":"address"},{"internalType":"address","name":"_strategist","type":"address"},{"internalType":"address","name":"_controller","type":"address"},{"internalType":"address","name":"_timelock","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"addKeeper","outputs":[],"stateMutability":"nonpayable","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":"benqi","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"comptroller","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deleverageToMin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyAmount","type":"uint256"}],"name":"deleverageUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"execute","outputs":[{"internalType":"bytes","name":"response","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"feeDistributor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBorrowable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBorrowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBorrowedView","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getColFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCurrentLeverage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getHarvestable","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"supplyBalance","type":"uint256"}],"name":"getLeveragedSupplyTarget","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMarketColFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxLeverage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getRedeemable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getSafeLeverageColFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSafeSyncColFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupplied","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getSuppliedUnleveraged","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getSuppliedView","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"harvesters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"keep","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"keepMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"leverageToMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyAmount","type":"uint256"}],"name":"leverageUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pangolinRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"performanceDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"performanceDevMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"performanceTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"performanceTreasuryMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"png","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"qiToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"qiwbtc","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"removeKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revenueShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revenueShareMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_harvester","type":"address"}],"name":"revokeHarvester","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_colFactorLeverageBuffer","type":"uint256"}],"name":"setColFactorLeverageBuffer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_colFactorSyncBuffer","type":"uint256"}],"name":"setColFactorSyncBuffer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"setController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeDistributor","type":"address"}],"name":"setFeeDistributor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_keep","type":"uint256"}],"name":"setKeep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_performanceDevFee","type":"uint256"}],"name":"setPerformanceDevFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_performanceTreasuryFee","type":"uint256"}],"name":"setPerformanceTreasuryFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_share","type":"uint256"}],"name":"setRevenueShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_strategist","type":"address"}],"name":"setStrategist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_timelock","type":"address"}],"name":"setTimelock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_withdrawalDevFundFee","type":"uint256"}],"name":"setWithdrawalDevFundFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_withdrawalTreasuryFee","type":"uint256"}],"name":"setWithdrawalTreasuryFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snob","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"strategist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sync","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"timelock","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"want","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wavax","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wbtc","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_harvester","type":"address"}],"name":"whitelistHarvester","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_asset","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawForSwap","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalDevFundFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawalDevFundMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawalTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawalTreasuryMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600180546001600160a01b031990811673e54ca86531e17ef3616d22ca28b0d458b6c89106179091556002805490911673ad86ef5fd2ebc25bb9db41a1fe8d0f2a322c78391790556000600381905560048190556103e86005819055610bb860065560078290556008919091556028600f556010819055601e6011556012553480156200009057600080fd5b5060405162004ff038038062004ff083398181016040526080811015620000b657600080fd5b50805160208201516040830151606090930151919290917350b7545627a5162f82a992c33b87adc75187b21873e194c4c5ac32a3c9ffdb358d9bfd523a0b6d15688585858585848484846001600160a01b0384166200011457600080fd5b6001600160a01b0383166200012857600080fd5b6001600160a01b0382166200013c57600080fd5b6001600160a01b0381166200015057600080fd5b600080546001600160a01b03199081166001600160a01b039788161790915560098054821695871695909517909455600b8054851693861693909317909255600a80548416918516919091179055600c80548316918416919091179055600e8054909116918716919091179055604080516001808252818301909252606091602080830190803683375050600e5482519293506001600160a01b031691839150600090620001fa57fe5b6001600160a01b03909216602092830291909101820152604051631853304760e31b81526004810182815283516024830152835173486af39519b4dc9a7fccd318217352830e8ad9b49363c2998238938693928392604490920191858101910280838360005b838110156200027a57818101518382015260200162000260565b5050505090500192505050600060405180830381600087803b158015620002a057600080fd5b505af1158015620002b5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015620002df57600080fd5b81019080805160405193929190846401000000008211156200030057600080fd5b9083019060208201858111156200031657600080fd5b82518660208202830111640100000000821117156200033457600080fd5b82525081516020918201928201910280838360005b838110156200036357818101518382015260200162000349565b50505050905001604052505050505050505050505050505050614c64806200038c6000396000f3fe60806040526004361061044b5760003560e01c80635f77567811610234578063ac41ceb31161012e578063d33219b4116100b6578063f53f13501161007a578063f53f135014610db9578063f77c479114610dce578063fe1f8f7a14610847578063ff0984ca14610de3578063fff6cae914610df857610452565b8063d33219b414610d26578063d48113cf14610d3b578063e4d06d8214610d50578063eb514af914610d65578063f4aa3a8d14610d8f57610452565b8063c6223e26116100fd578063c6223e2614610c57578063c65e324214610c81578063c7b9d53014610cab578063ccfc2e8d14610cde578063d0e30db014610d1157610452565b8063ac41ceb314610bd0578063ba40273d14610be5578063bdacb30314610c0f578063c1a3d44c14610c4257610452565b8063875cb38c116101bc5780639c4b8163116101805780639c4b816314610b1f5780639eb52f6114610b34578063a1e003e414610b49578063ab033ea914610b73578063ab73e43314610ba657610452565b8063875cb38c14610a665780638797658314610a7b57806388993f2214610ac25780638ccdbb7014610ad757806392eefe9b14610aec57610452565b80637396a626116102035780637396a626146109e857806377da835a146109fd5780638081e1cf14610a125780638237859414610a27578063853828b614610a5157610452565b80635f7756781461097f5780635fe3b567146109945780636e669d7a146109a9578063722713f7146109d357610452565b8063302ab80d1161034557806351cff8d9116102cd5780635aa6e675116102915780635aa6e675146109165780635af0cd901461092b5780635bfb92ce146109405780635c208490146109555780635eefb0921461096a57610452565b806351cff8d91461085c57806351f3d0b81461088f57806354df7b63146108a457806359739ec4146108d757806359bca679146108ec57610452565b8063462e4cda11610314578063462e4cda14610808578063463289ed1461081d5780634641257d14610832578063479119be146108475780634fe809cc1461048557610452565b8063302ab80d146107815780633c5dae94146107ab5780633cdc5389146107c05780634032b72b146107d557610452565b80631845a154116103d3578063225468a211610397578063225468a214610703578063249fb9b41461071857806326e886c6146104855780632a99417d146107425780632e1a7d4d1461075757610452565b80631845a1541461048557806318eb0e0b146105f05780631cff79cd146106235780631f1fcd51146106d95780631fe4a686146106ee57610452565b8063115880861161041a57806311588086146104f2578063117be4c21461050757806314ae9f2e1461051c57806317d7de7c1461055157806318284fc8146105db57610452565b80630547104d146104575780630975d8d8146104855780630d43e8ad146104ac5780630ea8b3bf146104dd57610452565b3661045257005b600080fd5b34801561046357600080fd5b5061046c610e0d565b6040805192835260208301919091528051918290030190f35b34801561049157600080fd5b5061049a610e37565b60408051918252519081900360200190f35b3480156104b857600080fd5b506104c1610e3d565b604080516001600160a01b039092168252519081900360200190f35b3480156104e957600080fd5b5061049a610e4c565b3480156104fe57600080fd5b5061049a610e8d565b34801561051357600080fd5b506104c1610eb6565b34801561052857600080fd5b5061054f6004803603602081101561053f57600080fd5b50356001600160a01b0316610ece565b005b34801561055d57600080fd5b50610566610f51565b6040805160208082528351818301528351919283929083019185019080838360005b838110156105a0578181015183820152602001610588565b50505050905090810190601f1680156105cd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156105e757600080fd5b506104c1610f7d565b3480156105fc57600080fd5b5061054f6004803603602081101561061357600080fd5b50356001600160a01b0316610f95565b6105666004803603604081101561063957600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561066457600080fd5b82018360208201111561067657600080fd5b8035906020019184600183028401116401000000008311171561069857600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061101b945050505050565b3480156106e557600080fd5b506104c16110fe565b3480156106fa57600080fd5b506104c161110d565b34801561070f57600080fd5b506104c161111c565b34801561072457600080fd5b5061054f6004803603602081101561073b57600080fd5b5035611134565b34801561074e57600080fd5b5061049a611184565b34801561076357600080fd5b5061054f6004803603602081101561077a57600080fd5b50356111c5565b34801561078d57600080fd5b5061054f600480360360208110156107a457600080fd5b50356114f2565b3480156107b757600080fd5b5061049a611559565b3480156107cc57600080fd5b506104c161159b565b3480156107e157600080fd5b5061054f600480360360208110156107f857600080fd5b50356001600160a01b03166115b3565b34801561081457600080fd5b506104c1611639565b34801561082957600080fd5b5061049a611648565b34801561083e57600080fd5b5061054f6116dd565b34801561085357600080fd5b5061049a611b10565b34801561086857600080fd5b5061049a6004803603602081101561087f57600080fd5b50356001600160a01b0316611b17565b34801561089b57600080fd5b5061049a611c4d565b3480156108b057600080fd5b5061054f600480360360208110156108c757600080fd5b50356001600160a01b0316611c53565b3480156108e357600080fd5b5061049a611cdc565b3480156108f857600080fd5b5061054f6004803603602081101561090f57600080fd5b5035611ce2565b34801561092257600080fd5b506104c1611d49565b34801561093757600080fd5b506104c1611d58565b34801561094c57600080fd5b5061049a611d67565b34801561096157600080fd5b5061049a611dab565b34801561097657600080fd5b5061049a611e28565b34801561098b57600080fd5b506104c1611e87565b3480156109a057600080fd5b506104c1611e9f565b3480156109b557600080fd5b5061054f600480360360208110156109cc57600080fd5b5035611eb7565b3480156109df57600080fd5b5061049a611f07565b3480156109f457600080fd5b5061049a611f2d565b348015610a0957600080fd5b5061049a611f62565b348015610a1e57600080fd5b5061049a612013565b348015610a3357600080fd5b5061054f60048036036020811015610a4a57600080fd5b503561205f565b348015610a5d57600080fd5b5061049a6120af565b348015610a7257600080fd5b5061049a612266565b348015610a8757600080fd5b50610aae60048036036020811015610a9e57600080fd5b50356001600160a01b0316612359565b604080519115158252519081900360200190f35b348015610ace57600080fd5b5061049a61236e565b348015610ae357600080fd5b5061049a612374565b348015610af857600080fd5b5061054f60048036036020811015610b0f57600080fd5b50356001600160a01b031661237a565b348015610b2b57600080fd5b5061049a6123e7565b348015610b4057600080fd5b5061049a6123fe565b348015610b5557600080fd5b5061049a60048036036020811015610b6c57600080fd5b50356124d1565b348015610b7f57600080fd5b5061054f60048036036020811015610b9657600080fd5b50356001600160a01b0316612501565b348015610bb257600080fd5b5061054f60048036036020811015610bc957600080fd5b5035612570565b348015610bdc57600080fd5b5061054f6125c0565b348015610bf157600080fd5b5061054f60048036036020811015610c0857600080fd5b50356125e6565b348015610c1b57600080fd5b5061054f60048036036020811015610c3257600080fd5b50356001600160a01b0316612636565b348015610c4e57600080fd5b5061049a6126a3565b348015610c6357600080fd5b5061049a60048036036020811015610c7a57600080fd5b50356126ef565b348015610c8d57600080fd5b5061054f60048036036020811015610ca457600080fd5b50356128aa565b348015610cb757600080fd5b5061054f60048036036020811015610cce57600080fd5b50356001600160a01b03166128fa565b348015610cea57600080fd5b5061054f60048036036020811015610d0157600080fd5b50356001600160a01b0316612969565b348015610d1d57600080fd5b5061054f6129db565b348015610d3257600080fd5b506104c1612b5d565b348015610d4757600080fd5b506104c1612b6c565b348015610d5c57600080fd5b5061049a612b84565b348015610d7157600080fd5b5061054f60048036036020811015610d8857600080fd5b5035612b8a565b348015610d9b57600080fd5b5061054f60048036036020811015610db257600080fd5b5035612ea8565b348015610dc557600080fd5b5061054f61314c565b348015610dda57600080fd5b506104c1613161565b348015610def57600080fd5b5061049a613170565b348015610e0457600080fd5b50610aae613176565b6000806000610e1d6000306131cf565b90506000610e2c6001306131cf565b919350909150509091565b61271081565b6002546001600160a01b031681565b600080610e57611559565b90506000610e856ec097ce7bc90715b34b9f1000000000670de0b6b3a764000084900363ffffffff61362316565b925050505b90565b600080610e98611f62565b90506000610ea4611e28565b9050610e85828263ffffffff61366516565b73b31f66aa3c1e785363f0875a1b74e27b85fd66c781565b6009546001600160a01b0316331480610ef15750600b546001600160a01b031633145b610f30576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152601360205260409020805460ff19169055565b604080518082019091526012815271537472617465677942656e7169576274634560701b602082015290565b738729438eb15e2c8b576fcc6aecda6a148776c0f581565b6009546001600160a01b0316331480610fb85750600b546001600160a01b031633145b610ffa576040805162461bcd60e51b815260206004820152600e60248201526d1b9bdd08185d5d1a1bdc9a5e995960921b604482015290519081900360640190fd5b6001600160a01b03166000908152600d60205260409020805460ff19169055565b600c546060906001600160a01b03163314611069576040805162461bcd60e51b81526020600482015260096024820152682174696d656c6f636b60b81b604482015290519081900360640190fd5b6001600160a01b0383166110ae576040805162461bcd60e51b8152602060048201526007602482015266085d185c99d95d60ca1b604482015290519081900360640190fd5b600080835160208501866113885a03f43d6040519250601f19601f6020830101168301604052808352806000602085013e8115600181146110ee576110f5565b8160208501fd5b50505092915050565b6000546001600160a01b031681565b600b546001600160a01b031681565b73c38f41a296a4493ff429f1238e030924a1542e5081565b600c546001600160a01b0316331461117f576040805162461bcd60e51b81526020600482015260096024820152682174696d656c6f636b60b81b604482015290519081900360640190fd5b600355565b60008061118f611dab565b9050600061119b612013565b9050610e85826111b983670de0b6b3a764000063ffffffff6136a716565b9063ffffffff61362316565b600a546001600160a01b03163314611212576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b60008054604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561125e57600080fd5b505afa158015611272573d6000803e3d6000fd5b505050506040513d602081101561128857600080fd5b50519050818110156112c1576112ac6112a7838363ffffffff61366516565b613700565b91506112be828263ffffffff6139bb16565b91505b60006112df620186a06111b9600854866136a790919063ffffffff16565b9050611377600a60009054906101000a90046001600160a01b03166001600160a01b0316638d8f1e676040518163ffffffff1660e01b815260040160206040518083038186803b15801561133257600080fd5b505afa158015611346573d6000803e3d6000fd5b505050506040513d602081101561135c57600080fd5b50516000546001600160a01b0316908363ffffffff613a1516565b6000611395620186a06111b9600754876136a790919063ffffffff16565b90506113e8600a60009054906101000a90046001600160a01b03166001600160a01b03166361d027b36040518163ffffffff1660e01b815260040160206040518083038186803b15801561133257600080fd5b600a54600080546040805163368da5ef60e11b81526001600160a01b039283166004820152905192939190911691636d1b4bde91602480820192602092909190829003018186803b15801561143c57600080fd5b505afa158015611450573d6000803e3d6000fd5b505050506040513d602081101561146657600080fd5b505190506001600160a01b0381166114ae576040805162461bcd60e51b815260206004820152600660248201526521676c6f626560d01b604482015290519081900360640190fd5b6114eb816114d2846114c6898863ffffffff61366516565b9063ffffffff61366516565b6000546001600160a01b0316919063ffffffff613a1516565b5050505050565b6009546001600160a01b03163314806115155750600b546001600160a01b031633145b611554576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600f55565b600080611564611648565b90506000610e8561158e6010546111b9670de0b6b3a7640000600f546136a790919063ffffffff16565b839063ffffffff61366516565b7350b7545627a5162f82a992c33b87adc75187b21881565b6009546001600160a01b03163314806115d65750600b546001600160a01b031633145b611615576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b600e546001600160a01b031681565b600e5460408051638e8f294b60e01b81526001600160a01b0390921660048301528051600092839273486af39519b4dc9a7fccd318217352830e8ad9b492638e8f294b926024808201939291829003018186803b1580156116a857600080fd5b505afa1580156116bc573d6000803e3d6000fd5b505050506040513d60408110156116d257600080fd5b506020015191505090565b336000908152600d602052604090205460ff168061170557506009546001600160a01b031633145b8061171a5750600b546001600160a01b031633145b61172357600080fd5b604080516001808252818301909252606091602080830190803683375050600e5482519293506001600160a01b03169183915060009061175f57fe5b6001600160a01b039092166020928302919091019091015260408051630952c56360e01b815260016004820152306024820152905160009173486af39519b4dc9a7fccd318217352830e8ad9b491630952c56391604480820192869290919082900301818387803b1580156117d357600080fd5b505af11580156117e7573d6000803e3d6000fd5b50479250508115905061185d5773b31f66aa3c1e785363f0875a1b74e27b85fd66c76001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561184357600080fd5b505af1158015611857573d6000803e3d6000fd5b50505050505b604080516370a0823160e01b8152306004820152905160009173b31f66aa3c1e785363f0875a1b74e27b85fd66c7916370a0823191602480820192602092909190829003018186803b1580156118b257600080fd5b505afa1580156118c6573d6000803e3d6000fd5b505050506040513d60208110156118dc57600080fd5b505190508015611912576119016127106111b9600554846136a790919063ffffffff16565b925082156119125761191283613a6c565b60408051630952c56360e01b8152600060048201819052306024830152915173486af39519b4dc9a7fccd318217352830e8ad9b492630952c563926044808201939182900301818387803b15801561196957600080fd5b505af115801561197d573d6000803e3d6000fd5b5050604080516370a0823160e01b8152306004820152905160009350738729438eb15e2c8b576fcc6aecda6a148776c0f592506370a0823191602480820192602092909190829003018186803b1580156119d657600080fd5b505afa1580156119ea573d6000803e3d6000fd5b505050506040513d6020811015611a0057600080fd5b505190508015611b0857611a256127106111b9600554846136a790919063ffffffff16565b93508315611a3657611a3684613c80565b6000546001600160a01b0316738729438eb15e2c8b576fcc6aecda6a148776c0f514611b0857604080516370a0823160e01b81523060048201529051738729438eb15e2c8b576fcc6aecda6a148776c0f5916370a08231916024808301926020929190829003018186803b158015611aad57600080fd5b505afa158015611ac1573d6000803e3d6000fd5b505050506040513d6020811015611ad757600080fd5b5051600054909150611b0890738729438eb15e2c8b576fcc6aecda6a148776c0f5906001600160a01b031683613ee9565b6114eb6142cc565b620186a081565b600a546000906001600160a01b03163314611b67576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b6000546001600160a01b0383811691161415611bb3576040805162461bcd60e51b815260206004808301919091526024820152631dd85b9d60e21b604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b158015611bf957600080fd5b505afa158015611c0d573d6000803e3d6000fd5b505050506040513d6020811015611c2357600080fd5b5051600a54909150611c48906001600160a01b0384811691168363ffffffff613a1516565b919050565b60085481565b6009546001600160a01b0316331480611c765750600b546001600160a01b031633145b611cb8576040805162461bcd60e51b815260206004820152600e60248201526d1b9bdd08185d5d1a1bdc9a5e995960921b604482015290519081900360640190fd5b6001600160a01b03166000908152600d60205260409020805460ff19166001179055565b60035481565b6009546001600160a01b0316331480611d055750600b546001600160a01b031633145b611d44576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b601155565b6009546001600160a01b031681565b6001546001600160a01b031681565b600080611d72611dab565b90506000611d7e612013565b9050610e85611d93838363ffffffff61366516565b6111b984670de0b6b3a764000063ffffffff6136a716565b600e5460408051633af9e66960e01b815230600482015290516000926001600160a01b031691633af9e66991602480830192602092919082900301818787803b158015611df757600080fd5b505af1158015611e0b573d6000803e3d6000fd5b505050506040513d6020811015611e2157600080fd5b5051905090565b600e54604080516395dd919360e01b815230600482015290516000926001600160a01b0316916395dd9193916024808301926020929190829003018186803b158015611e7357600080fd5b505afa158015611e0b573d6000803e3d6000fd5b7360781c2586d68229fde47564546784ab3faca98281565b73486af39519b4dc9a7fccd318217352830e8ad9b481565b600c546001600160a01b03163314611f02576040805162461bcd60e51b81526020600482015260096024820152682174696d656c6f636b60b81b604482015290519081900360640190fd5b600655565b6000611f28611f14610e8d565b611f1c6126a3565b9063ffffffff6139bb16565b905090565b600080611f38611648565b90506000610e8561158e6012546111b9670de0b6b3a76400006011546136a790919063ffffffff16565b600e54604080516361bfb47160e11b81523060048201529051600092839283926001600160a01b039092169163c37f68e291602480820192608092909190829003018186803b158015611fb457600080fd5b505afa158015611fc8573d6000803e3d6000fd5b505050506040513d6080811015611fde57600080fd5b5060208082015160609092015160408051928301905280825291935090915060009061200a9084614470565b94505050505090565b600e54604080516305eff7ef60e21b815230600482015290516000926001600160a01b0316916317bfdfbc91602480830192602092919082900301818787803b158015611df757600080fd5b600c546001600160a01b031633146120aa576040805162461bcd60e51b81526020600482015260096024820152682174696d656c6f636b60b81b604482015290519081900360640190fd5b600755565b600a546000906001600160a01b031633146120ff576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b6121076144c4565b600054604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561215257600080fd5b505afa158015612166573d6000803e3d6000fd5b505050506040513d602081101561217c57600080fd5b5051600a54600080546040805163368da5ef60e11b81526001600160a01b03928316600482015290519495509193921691636d1b4bde91602480820192602092909190829003018186803b1580156121d357600080fd5b505afa1580156121e7573d6000803e3d6000fd5b505050506040513d60208110156121fd57600080fd5b505190506001600160a01b038116612245576040805162461bcd60e51b815260206004820152600660248201526521676c6f626560d01b604482015290519081900360640190fd5b600054612262906001600160a01b0316828463ffffffff613a1516565b5090565b600080612271611dab565b9050600061227d612013565b600e5460408051638e8f294b60e01b81526001600160a01b039092166004830152805192935060009273486af39519b4dc9a7fccd318217352830e8ad9b492638e8f294b926024808301939192829003018186803b1580156122de57600080fd5b505afa1580156122f2573d6000803e3d6000fd5b505050506040513d604081101561230857600080fd5b506020015190506123516127106111b961270f612345612338868489670de0b6b3a764000063ffffffff6136a716565b889063ffffffff61366516565b9063ffffffff6136a716565b935050505090565b600d6020526000908152604090205460ff1681565b60045481565b60075481565b600c546001600160a01b031633146123c5576040805162461bcd60e51b81526020600482015260096024820152682174696d656c6f636b60b81b604482015290519081900360640190fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000806123f2611dab565b90506000610ea4612013565b600080612409611dab565b90506000612415612013565b600e5460408051638e8f294b60e01b81526001600160a01b039092166004830152805192935060009273486af39519b4dc9a7fccd318217352830e8ad9b492638e8f294b926024808301939192829003018186803b15801561247657600080fd5b505afa15801561248a573d6000803e3d6000fd5b505050506040513d60408110156124a057600080fd5b506020015190506123516127106111b961270f612345866114c6670de0b6b3a7640000858b8a63ffffffff6136a716565b6000806124dc610e4c565b90506124fa670de0b6b3a76400006111b9858463ffffffff6136a716565b9392505050565b6009546001600160a01b0316331461254e576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b600c546001600160a01b031633146125bb576040805162461bcd60e51b81526020600482015260096024820152682174696d656c6f636b60b81b604482015290519081900360640190fd5b600855565b60006125ca6123e7565b905060006125d7826124d1565b90506125e281612ea8565b5050565b600c546001600160a01b03163314612631576040805162461bcd60e51b81526020600482015260096024820152682174696d656c6f636b60b81b604482015290519081900360640190fd5b600555565b600c546001600160a01b03163314612681576040805162461bcd60e51b81526020600482015260096024820152682174696d656c6f636b60b81b604482015290519081900360640190fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60008054604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015611e7357600080fd5b600a546000906001600160a01b0316331461273f576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b61274882613700565b50600054604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561279457600080fd5b505afa1580156127a8573d6000803e3d6000fd5b505050506040513d60208110156127be57600080fd5b5051600a54600080546040805163368da5ef60e11b81526001600160a01b03928316600482015290519495509193921691636d1b4bde91602480820192602092909190829003018186803b15801561281557600080fd5b505afa158015612829573d6000803e3d6000fd5b505050506040513d602081101561283f57600080fd5b505190506001600160a01b038116612887576040805162461bcd60e51b815260206004820152600660248201526521676c6f626560d01b604482015290519081900360640190fd5b6000546128a4906001600160a01b0316828463ffffffff613a1516565b50919050565b600c546001600160a01b031633146128f5576040805162461bcd60e51b81526020600482015260096024820152682174696d656c6f636b60b81b604482015290519081900360640190fd5b600455565b6009546001600160a01b03163314612947576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6009546001600160a01b031633146129b9576040805162461bcd60e51b815260206004820152600e60248201526d1b9bdd08185d5d1a1bdc9a5e995960921b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60008054604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015612a2757600080fd5b505afa158015612a3b573d6000803e3d6000fd5b505050506040513d6020811015612a5157600080fd5b505190508015612b5a57600e5460008054612a80926001600160a01b039182169291169063ffffffff6144cf16565b600e54600054612aa3916001600160a01b0391821691168363ffffffff6144cf16565b600e546040805163140e25ad60e31b81526004810184905290516001600160a01b039092169163a0712d68916024808201926020929091908290030181600087803b158015612af157600080fd5b505af1158015612b05573d6000803e3d6000fd5b505050506040513d6020811015612b1b57600080fd5b505115612b5a576040805162461bcd60e51b81526020600482015260086024820152670859195c1bdcda5d60c21b604482015290519081900360640190fd5b50565b600c546001600160a01b031681565b73e194c4c5ac32a3c9ffdb358d9bfd523a0b6d156881565b60055481565b3360009081526013602052604090205460ff1680612ba757503330145b80612bbc5750600b546001600160a01b031633145b80612bd157506009546001600160a01b031633145b612c0d576040805162461bcd60e51b8152602060048201526008602482015267216b65657065727360c01b604482015290519081900360640190fd5b6000612c176123e7565b90506000612c23611dab565b9050818310158015612c355750808311155b612c74576040805162461bcd60e51b815260206004820152600b60248201526a2164656c6576657261676560a81b604482015290519081900360640190fd5b6000612c7e611648565b90506000612c8a612266565b90505b84612c9e848363ffffffff61366516565b1015612cb757612cb4838663ffffffff61366516565b90505b600e546040805163852a12e360e01b81526004810184905290516001600160a01b039092169163852a12e3916024808201926020929091908290030181600087803b158015612d0557600080fd5b505af1158015612d19573d6000803e3d6000fd5b505050506040513d6020811015612d2f57600080fd5b505115612d6d576040805162461bcd60e51b81526020600482015260076024820152662172656465656d60c81b604482015290519081900360640190fd5b600e5460008054612d92926001600160a01b039182169291169063ffffffff6144cf16565b600e54600054612db5916001600160a01b0391821691168363ffffffff6144cf16565b600e546040805163073a938160e11b81526004810184905290516001600160a01b0390921691630e752702916024808201926020929091908290030181600087803b158015612e0357600080fd5b505af1158015612e17573d6000803e3d6000fd5b505050506040513d6020811015612e2d57600080fd5b505115612e6a576040805162461bcd60e51b815260206004820152600660248201526521726570617960d01b604482015290519081900360640190fd5b612e7a838263ffffffff61366516565b9250612e98826111b983670de0b6b3a764000063ffffffff6136a716565b9050848311612c8d575050505050565b3360009081526013602052604090205460ff1680612ec557503330145b80612eda5750600b546001600160a01b031633145b80612eef57506009546001600160a01b031633145b612f2b576040805162461bcd60e51b8152602060048201526008602482015267216b65657065727360c01b604482015290519081900360640190fd5b6000612f35610e4c565b90506000612f416123e7565b9050808310158015612f6e5750612f6a670de0b6b3a76400006111b9838563ffffffff6136a716565b8311155b612fab576040805162461bcd60e51b8152602060048201526009602482015268216c6576657261676560b81b604482015290519081900360640190fd5b600080612fb6611dab565b9050612fc06123fe565b91505b848110156114eb5784612fdc828463ffffffff6139bb16565b1115612ff557612ff2858263ffffffff61366516565b91505b600e546040805163317afabb60e21b81526004810185905290516001600160a01b039092169163c5ebeaec916024808201926020929091908290030181600087803b15801561304357600080fd5b505af1158015613057573d6000803e3d6000fd5b505050506040513d602081101561306d57600080fd5b5061307890506129db565b613088818363ffffffff6139bb16565b600e5460408051638e8f294b60e01b81526001600160a01b039092166004830152805192935060009273486af39519b4dc9a7fccd318217352830e8ad9b492638e8f294b926024808301939192829003018186803b1580156130e957600080fd5b505afa1580156130fd573d6000803e3d6000fd5b505050506040513d604081101561311357600080fd5b506020015190506131446127106111b961270f612345876114c6670de0b6b3a7640000858a8a63ffffffff6136a716565b925050612fc3565b60006131566123e7565b9050612b5a81612b8a565b600a546001600160a01b031681565b60065481565b600080613181611184565b9050600061318d611f2d565b9050808211156131c65760006131a16123e7565b905060006131ae826124d1565b90506131b981612b8a565b6001945050505050610e8a565b60009250505090565b604080516305b9783d60e01b815260ff841660048201526001600160a01b03831660248201529051600091829173486af39519b4dc9a7fccd318217352830e8ad9b4916305b9783d916044808301926020929190829003018186803b15801561323757600080fd5b505afa15801561324b573d6000803e3d6000fd5b505050506040513d602081101561326157600080fd5b50516040805163d81c5e4560e01b815260ff871660048201526001600160a01b0386166024820152815192935060009273486af39519b4dc9a7fccd318217352830e8ad9b49263d81c5e459260448082019391829003018186803b1580156132c857600080fd5b505afa1580156132dc573d6000803e3d6000fd5b505050506040513d60408110156132f257600080fd5b5051600e546040805163111d2e5760e31b815260ff891660048201526001600160a01b03928316602482015291871660448301525191925060009173486af39519b4dc9a7fccd318217352830e8ad9b4916388e972b8916064808301926020929190829003018186803b15801561336857600080fd5b505afa15801561337c573d6000803e3d6000fd5b505050506040513d602081101561339257600080fd5b5051905060006001600160e01b0383168210156133b85781836001600160e01b03160390505b600e54604080516370a0823160e01b81526001600160a01b03898116600483015291516000936134459386939116916370a0823191602480820192602092909190829003018186803b15801561340d57600080fd5b505afa158015613421573d6000803e3d6000fd5b505050506040513d602081101561343757600080fd5b50519063ffffffff6136a716565b604080516312ce829d60e21b815260ff8b1660048201526001600160a01b038a166024820152815192935060009273486af39519b4dc9a7fccd318217352830e8ad9b492634b3a0a749260448082019391829003018186803b1580156134aa57600080fd5b505afa1580156134be573d6000803e3d6000fd5b505050506040513d60408110156134d457600080fd5b5051600e5460408051637937969d60e01b815260ff8d1660048201526001600160a01b039283166024820152918b1660448301525191925060009173486af39519b4dc9a7fccd318217352830e8ad9b491637937969d916064808301926020929190829003018186803b15801561354a57600080fd5b505afa15801561355e573d6000803e3d6000fd5b505050506040513d602081101561357457600080fd5b5051905060006001600160e01b03831682101561359a5781836001600160e01b03160390505b600e54604080516395dd919360e01b81526001600160a01b038d8116600483015291516000936135ef9386939116916395dd919391602480820192602092909190829003018186803b15801561340d57600080fd5b9050613611613604868363ffffffff61366516565b8a9063ffffffff6139bb16565b99505050505050505050505b92915050565b60006124fa83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506145e2565b60006124fa83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614684565b6000826136b65750600061361d565b828202828482816136c357fe5b04146124fa5760405162461bcd60e51b8152600401808060200182810382526021815260200180614bae6021913960400191505060405180910390fd5b60008061370b6126a3565b9050828110156139b4576000613727848363ffffffff61366516565b905080600e60009054906101000a90046001600160a01b03166001600160a01b0316633b1d21a26040518163ffffffff1660e01b815260040160206040518083038186803b15801561377857600080fd5b505afa15801561378c573d6000803e3d6000fd5b505050506040513d60208110156137a257600080fd5b505110156137e9576040805162461bcd60e51b815260206004820152600f60248201526e21636173682d6c697175696469747960881b604482015290519081900360640190fd5b60006137f3612013565b905060006137ff611dab565b9050600061380b611d67565b9050600061382b670de0b6b3a76400006111b9878563ffffffff6136a716565b905083156138f8578381111561389357306001600160a01b031663f53f13506040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561387657600080fd5b505af115801561388a573d6000803e3d6000fd5b505050506138f8565b3063eb514af96138a9858463ffffffff61366516565b6040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156138df57600080fd5b505af11580156138f3573d6000803e3d6000fd5b505050505b600e546040805163852a12e360e01b81526004810188905290516001600160a01b039092169163852a12e3916024808201926020929091908290030181600087803b15801561394657600080fd5b505af115801561395a573d6000803e3d6000fd5b505050506040513d602081101561397057600080fd5b5051156139ae576040805162461bcd60e51b81526020600482015260076024820152662172656465656d60c81b604482015290519081900360640190fd5b50505050505b5090919050565b6000828201838110156124fa576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052613a679084906146de565b505050565b600154613a9f9073b31f66aa3c1e785363f0875a1b74e27b85fd66c7906001600160a01b0316600063ffffffff6144cf16565b600154613ad19073b31f66aa3c1e785363f0875a1b74e27b85fd66c7906001600160a01b03168363ffffffff6144cf16565b613b0473b31f66aa3c1e785363f0875a1b74e27b85fd66c773c38f41a296a4493ff429f1238e030924a1542e5083613ee9565b604080516370a0823160e01b8152306004820152905160009173c38f41a296a4493ff429f1238e030924a1542e50916370a0823191602480820192602092909190829003018186803b158015613b5957600080fd5b505afa158015613b6d573d6000803e3d6000fd5b505050506040513d6020811015613b8357600080fd5b5051600654909150600090613ba790612710906111b990859063ffffffff6136a716565b600254909150613bdc9073c38f41a296a4493ff429f1238e030924a1542e50906001600160a01b03168363ffffffff613a1516565b600a54604080516361d027b360e01b81529051613a67926001600160a01b0316916361d027b3916004808301926020929190829003018186803b158015613c2257600080fd5b505afa158015613c36573d6000803e3d6000fd5b505050506040513d6020811015613c4c57600080fd5b5051613c5e848463ffffffff61366516565b73c38f41a296a4493ff429f1238e030924a1542e50919063ffffffff613a1516565b60408051600380825260808201909252606091602082018380368337019050509050738729438eb15e2c8b576fcc6aecda6a148776c0f581600081518110613cc457fe5b60200260200101906001600160a01b031690816001600160a01b03168152505073b31f66aa3c1e785363f0875a1b74e27b85fd66c781600181518110613d0657fe5b60200260200101906001600160a01b031690816001600160a01b03168152505073c38f41a296a4493ff429f1238e030924a1542e5081600281518110613d4857fe5b6001600160a01b039283166020918202929092010152600154613d8991738729438eb15e2c8b576fcc6aecda6a148776c0f59116600063ffffffff6144cf16565b600154613dbb90738729438eb15e2c8b576fcc6aecda6a148776c0f5906001600160a01b03168463ffffffff6144cf16565b613dc5818361478f565b604080516370a0823160e01b8152306004820152905160009173c38f41a296a4493ff429f1238e030924a1542e50916370a0823191602480820192602092909190829003018186803b158015613e1a57600080fd5b505afa158015613e2e573d6000803e3d6000fd5b505050506040513d6020811015613e4457600080fd5b5051600654909150600090613e6890612710906111b990859063ffffffff6136a716565b600254909150613e9d9073c38f41a296a4493ff429f1238e030924a1542e50906001600160a01b03168363ffffffff613a1516565b600a54604080516361d027b360e01b81529051613ee3926001600160a01b0316916361d027b3916004808301926020929190829003018186803b158015613c2257600080fd5b50505050565b6001600160a01b038216613efc57600080fd5b600154613f1d906001600160a01b038581169116600063ffffffff6144cf16565b600154613f3d906001600160a01b0385811691168363ffffffff6144cf16565b60606001600160a01b0384167360781c2586d68229fde47564546784ab3faca9821480613f8657506001600160a01b0383167360781c2586d68229fde47564546784ab3faca982145b1561401e57600260005b50604051908082528060200260200182016040528015613fba578160200160208202803683370190505b5090508381600081518110613fcb57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250508281600181518110613ff957fe5b60200260200101906001600160a01b031690816001600160a01b031681525050614133565b6001600160a01b03841673b31f66aa3c1e785363f0875a1b74e27b85fd66c7148061406557506001600160a01b03831673b31f66aa3c1e785363f0875a1b74e27b85fd66c7145b156140735760026000613f90565b60408051600380825260808201909252906020820160608036833701905050905083816000815181106140a257fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507360781c2586d68229fde47564546784ab3faca982816001815181106140e457fe5b60200260200101906001600160a01b031690816001600160a01b031681525050828160028151811061411257fe5b60200260200101906001600160a01b031690816001600160a01b0316815250505b6001546001600160a01b03166338ed1739836000843061415a42603c63ffffffff6139bb16565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03166001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156141d35781810151838201526020016141bb565b505050509050019650505050505050600060405180830381600087803b1580156141fc57600080fd5b505af1158015614210573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561423957600080fd5b810190808051604051939291908464010000000082111561425957600080fd5b90830190602082018581111561426e57600080fd5b825186602082028301116401000000008211171561428b57600080fd5b82525081516020918201928201910280838360005b838110156142b85781810151838201526020016142a0565b505050509050016040525050505050505050565b60008054604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561431857600080fd5b505afa15801561432c573d6000803e3d6000fd5b505050506040513d602081101561434257600080fd5b505190508015612b5a57600a54604080516361d027b360e01b815290516143da926001600160a01b0316916361d027b3916004808301926020929190829003018186803b15801561439257600080fd5b505afa1580156143a6573d6000803e3d6000fd5b505050506040513d60208110156143bc57600080fd5b50516003546114d290612710906111b990869063ffffffff6136a716565b600a5460408051638d8f1e6760e01b81529051614468926001600160a01b031691638d8f1e67916004808301926020929190829003018186803b15801561442057600080fd5b505afa158015614434573d6000803e3d6000fd5b505050506040513d602081101561444a57600080fd5b50516004546114d290612710906111b990869063ffffffff6136a716565b612b5a6129db565b600080600061447d614b9a565b614487868661495a565b9092509050600082600381111561449a57fe5b146144ab57509150600090506144bd565b60006144b6826149c2565b9350935050505b9250929050565b612b5a6112a7610e8d565b801580614555575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561452757600080fd5b505afa15801561453b573d6000803e3d6000fd5b505050506040513d602081101561455157600080fd5b5051155b6145905760405162461bcd60e51b8152600401808060200182810382526036815260200180614bf96036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052613a679084906146de565b6000818361466e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561463357818101518382015260200161461b565b50505050905090810190601f1680156146605780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161467a57fe5b0495945050505050565b600081848411156146d65760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561463357818101518382015260200161461b565b505050900390565b6060614733826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166149d19092919063ffffffff16565b805190915015613a675780806020019051602081101561475257600080fd5b5051613a675760405162461bcd60e51b815260040180806020018281038252602a815260200180614bcf602a913960400191505060405180910390fd5b60006001600160a01b0316826001815181106147a757fe5b60200260200101516001600160a01b031614156147c357600080fd5b6001546001600160a01b03166338ed173982600085306147ea42603c63ffffffff6139bb16565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03166001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561486357818101518382015260200161484b565b505050509050019650505050505050600060405180830381600087803b15801561488c57600080fd5b505af11580156148a0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156148c957600080fd5b81019080805160405193929190846401000000008211156148e957600080fd5b9083019060208201858111156148fe57600080fd5b825186602082028301116401000000008211171561491b57600080fd5b82525081516020918201928201910280838360005b83811015614948578181015183820152602001614930565b50505050905001604052505050505050565b6000614964614b9a565b6000806149758660000151866149e8565b9092509050600082600381111561498857fe5b146149a7575060408051602081019091526000815290925090506144bd565b60408051602081019091529081526000969095509350505050565b51670de0b6b3a7640000900490565b60606149e08484600085614a27565b949350505050565b600080836149fb575060009050806144bd565b83830283858281614a0857fe5b0414614a1c575060029150600090506144bd565b6000925090506144bd565b6060614a3285614b94565b614a83576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310614ac25780518252601f199092019160209182019101614aa3565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614b24576040519150601f19603f3d011682016040523d82523d6000602084013e614b29565b606091505b50915091508115614b3d5791506149e09050565b805115614b4d5780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561463357818101518382015260200161461b565b3b151590565b604051806020016040528060008152509056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a264697066735822122001002763958b2fc3c46dd5f4aba14df887c770dbea04522063437b7e2aafbe2264736f6c63430006070033000000000000000000000000294ab3200ef36200db84c4128b7f1b4eec71e38a0000000000000000000000003d88b8022142ea2693ba43ba349f89256392d59b000000000000000000000000f7b8d9f8a82a7a6dd448398afc5c77744bd6cb850000000000000000000000003d88b8022142ea2693ba43ba349f89256392d59b
Deployed ByteCode Sourcemap
94065:2436:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;92485:263:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;92485:263:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;58503:39;;5:9:-1;2:2;;;27:1;24;17:12;2:2;58503:39:0;;;:::i;:::-;;;;;;;;;;;;;;;;58093:74;;5:9:-1;2:2;;;27:1;24;17:12;2:2;58093:74:0;;;:::i;:::-;;;;-1:-1:-1;;;;;58093:74:0;;;;;;;;;;;;;;83073:276;;5:9:-1;2:2;;;27:1;24;17:12;2:2;83073:276:0;;;:::i;81551:206::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;81551:206:0;;;:::i;57752:74::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;57752:74:0;;;:::i;85740:213::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;85740:213:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;85740:213:0;-1:-1:-1;;;;;85740:213:0;;:::i;:::-;;96386:112;;5:9:-1;2:2;;;27:1;24;17:12;2:2;96386:112:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;96386:112:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79463:74;;5:9:-1;2:2;;;27:1;24;17:12;2:2;79463:74:0;;;:::i;60896:207::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;60896:207:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;60896:207:0;-1:-1:-1;;;;;60896:207:0;;:::i;65573:1053::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;65573:1053:0;;;;;;;;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;65573:1053:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;65573:1053:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;65573:1053:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;65573:1053:0;;-1:-1:-1;65573:1053:0;;-1:-1:-1;;;;;65573:1053:0:i;57726:19::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;57726:19:0;;;:::i;59030:25::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;59030:25:0;;;:::i;57912:73::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;57912:73:0;;;:::i;61882:213::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;61882:213:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;61882:213:0;;:::i;83762:195::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;83762:195:0;;;:::i;63260:1032::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;63260:1032:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;63260:1032:0;;:::i;85961:284::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;85961:284:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;85961:284:0;;:::i;82137:347::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;82137:347:0;;;:::i;94128:73::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;94128:73:0;;;:::i;85523:209::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;85523:209:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;85523:209:0;-1:-1:-1;;;;;85523:209:0;;:::i;79563:22::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;79563:22:0;;;:::i;82835:174::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;82835:174:0;;;:::i;91118:1317::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;91118:1317:0;;;:::i;58882:53::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;58882:53:0;;;:::i;62893:289::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;62893:289:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;62893:289:0;-1:-1:-1;;;;;62893:289:0;;:::i;58836:39::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;58836:39:0;;;:::i;60679:209::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;60679:209:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;60679:209:0;-1:-1:-1;;;;;60679:209:0;;:::i;58217:41::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;58217:41:0;;;:::i;86253:254::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;86253:254:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;86253:254:0;;:::i;58966:25::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;58966:25:0;;;:::i;58006:74::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;58006:74:0;;;:::i;85269:215::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;85269:215:0;;;:::i;84168:126::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;84168:126:0;;;:::i;81408:135::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;81408:135:0;;;:::i;57833:72::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;57833:72:0;;;:::i;79346:80::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;79346:80:0;;;:::i;60526:145::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;60526:145:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;60526:145:0;;:::i;60166:113::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;60166:113:0;;;:::i;82492:335::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;82492:335:0;;;:::i;81049:351::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;81049:351:0;;;:::i;84302:127::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;84302:127:0;;;:::i;61492:195::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;61492:195:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;61492:195:0;;:::i;64870:440::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;64870:440:0;;;:::i;84855:406::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;84855:406:0;;;:::i;59094:42::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;59094:42:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;59094:42:0;-1:-1:-1;;;;;59094:42:0;;:::i;:::-;;;;;;;;;;;;;;;;;;58328:36;;5:9:-1;2:2;;;27:1;24;17:12;2:2;58328:36:0;;;:::i;58726:40::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;58726:40:0;;;:::i;62580:151::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;62580:151:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;62580:151:0;-1:-1:-1;;;;;62580:151:0;;:::i;83965:195::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;83965:195:0;;;:::i;84437:410::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;84437:410:0;;;:::i;81901:228::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;81901:228:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;81901:228:0;;:::i;62266:155::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;62266:155:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;62266:155:0;-1:-1:-1;;;;;62266:155:0;;:::i;61293:191::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;61293:191:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;61293:191:0;;:::i;87167:216::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;87167:216:0;;;:::i;60391:127::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;60391:127:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;60391:127:0;;:::i;62429:143::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;62429:143:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;62429:143:0;-1:-1:-1;;;;;62429:143:0;;:::i;59969:118::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;59969:118:0;;;:::i;64356:438::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;64356:438:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;64356:438:0;;:::i;61695:179::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;61695:179:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;61695:179:0;;:::i;62103:155::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;62103:155:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;62103:155:0;-1:-1:-1;;;;;62103:155:0;;:::i;61111:174::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;61111:174:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;61111:174:0;-1:-1:-1;;;;;61111:174:0;;:::i;94688:320::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;94688:320:0;;;:::i;59062:23::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;59062:23:0;;;:::i;94226:75::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;94226:75:0;;;:::i;58470:26::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;58470:26:0;;;:::i;88940:1386::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;88940:1386:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;88940:1386:0;;:::i;87495:1173::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;87495:1173:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;87495:1173:0;;:::i;88676:150::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;88676:150:0;;;:::i;58998:25::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;58998:25:0;;;:::i;58551:34::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;58551:34:0;;;:::i;86673:486::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;86673:486:0;;;:::i;92485:263::-;92534:7;92543;92563:14;92580:39;92602:1;92613:4;92580:21;:39::i;:::-;92563:56;;92630:16;92649:39;92671:1;92682:4;92649:21;:39::i;:::-;92717:9;;-1:-1:-1;92630:58:0;;-1:-1:-1;;92485:263:0;;:::o;58503:39::-;58537:5;58503:39;:::o;58093:74::-;;;-1:-1:-1;;;;;58093:74:0;;:::o;83073:276::-;83120:7;83140:29;83172:26;:24;:26::i;:::-;83140:58;-1:-1:-1;83249:16:0;83268:47;83276:4;83286;:28;;;83268:47;:17;:47;:::i;:::-;83249:66;-1:-1:-1;;;83073:276:0;;:::o;81551:206::-;81606:7;81626:16;81645:17;:15;:17::i;:::-;81626:36;;81673:16;81692:17;:15;:17::i;:::-;81673:36;-1:-1:-1;81727:22:0;:8;81673:36;81727:22;:12;:22;:::i;57752:74::-;57784:42;57752:74;:::o;85740:213::-;85833:10;;-1:-1:-1;;;;;85833:10:0;85819;:24;;:52;;-1:-1:-1;85861:10:0;;-1:-1:-1;;;;;85861:10:0;85847;:24;85819:52;85797:113;;;;;-1:-1:-1;;;85797:113:0;;;;;;;;;;;;-1:-1:-1;;;85797:113:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;85921:16:0;85940:5;85921:16;;;:7;:16;;;;;:24;;-1:-1:-1;;85921:24:0;;;85740:213::o;96386:112::-;96463:27;;;;;;;;;;;;-1:-1:-1;;;96463:27:0;;;;96386:112;:::o;79463:74::-;79495:42;79463:74;:::o;60896:207::-;60983:10;;-1:-1:-1;;;;;60983:10:0;60969;:24;;:66;;-1:-1:-1;61025:10:0;;-1:-1:-1;;;;;61025:10:0;61011;:24;60969:66;60961:93;;;;;-1:-1:-1;;;60961:93:0;;;;;;;;;;;;-1:-1:-1;;;60961:93:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;61065:22:0;61090:5;61065:22;;;:10;:22;;;;;:30;;-1:-1:-1;;61065:30:0;;;60896:207::o;65573:1053::-;65739:8;;65678:21;;-1:-1:-1;;;;;65739:8:0;65725:10;:22;65717:44;;;;;-1:-1:-1;;;65717:44:0;;;;;;;;;;;;-1:-1:-1;;;65717:44:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;65780:21:0;;65772:41;;;;;-1:-1:-1;;;65772:41:0;;;;;;;;;;;;-1:-1:-1;;;65772:41:0;;;;;;;;;;;;;;;66090:1;66070;66045:5;66039:12;66015:4;66008:5;66004:16;65978:7;65954:4;65947:5;65943:16;65912:194;66132:16;66182:4;66176:11;66164:23;;66299:4;66295:9;66288:4;66281;66275;66271:15;66267:26;66263:42;66253:8;66249:57;66226:4;66201:120;66352:4;66342:8;66335:22;66410:4;66407:1;66400:4;66390:8;66386:19;66371:44;66445:9;66438:17;66478:1;66473:135;;;;66431:177;;66473:135;66584:4;66577;66567:8;66563:19;66556:33;66431:177;;;;65880:739;;;;:::o;57726:19::-;;;-1:-1:-1;;;;;57726:19:0;;:::o;59030:25::-;;;-1:-1:-1;;;;;59030:25:0;;:::o;57912:73::-;57943:42;57912:73;:::o;61882:213::-;62006:8;;-1:-1:-1;;;;;62006:8:0;61992:10;:22;61984:44;;;;;-1:-1:-1;;;61984:44:0;;;;;;;;;;;;-1:-1:-1;;;61984:44:0;;;;;;;;;;;;;;;62039:22;:48;61882:213::o;83762:195::-;83802:7;83822:16;83841:13;:11;:13::i;:::-;83822:32;;83865:16;83884:13;:11;:13::i;:::-;83865:32;-1:-1:-1;83917:32:0;83940:8;83917:18;83865:32;83930:4;83917:18;:12;:18;:::i;:::-;:22;:32;:22;:32;:::i;63260:1032::-;63337:10;;-1:-1:-1;;;;;63337:10:0;63323;:24;63315:48;;;;;-1:-1:-1;;;63315:48:0;;;;;;;;;;;;-1:-1:-1;;;63315:48:0;;;;;;;;;;;;;;;63374:16;63400:4;;63393:37;;;-1:-1:-1;;;63393:37:0;;63424:4;63393:37;;;;;;-1:-1:-1;;;;;63400:4:0;;;;63393:22;;:37;;;;;;;;;;;;;;;63400:4;63393:37;;;2:2:-1;;;;27:1;24;17:12;2:2;63393:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;63393:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;63393:37:0;;-1:-1:-1;63445:18:0;;;63441:143;;;63490:36;63504:21;:7;63516:8;63504:21;:11;:21;:::i;:::-;63490:13;:36::i;:::-;63480:46;-1:-1:-1;63551:21:0;63480:46;63563:8;63551:21;:11;:21;:::i;:::-;63541:31;;63441:143;63596:15;63614:83;58929:6;63614:33;63626:20;;63614:7;:11;;:33;;;;:::i;:83::-;63596:101;;63708:69;63746:10;;;;;;;;;-1:-1:-1;;;;;63746:10:0;-1:-1:-1;;;;;63734:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;63734:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;63734:33:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;63734:33:0;63715:4;;-1:-1:-1;;;;;63715:4:0;;63769:7;63708:69;:25;:69;:::i;:::-;63790:20;63813:85;58821:6;63813:34;63825:21;;63813:7;:11;;:34;;;;:::i;:85::-;63790:108;;63909:112;63961:10;;;;;;;;;-1:-1:-1;;;;;63961:10:0;-1:-1:-1;;;;;63949:32:0;;:34;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;63909:112:0;64063:10;;64034:14;64090:4;;64051:45;;;-1:-1:-1;;;64051:45:0;;-1:-1:-1;;;;;64090:4:0;;;64051:45;;;;;;64034:14;;64063:10;;;;;64051:30;;:45;;;;;;;;;;;;;;;64063:10;64051:45;;;2:2:-1;;;;27:1;24;17:12;2:2;64051:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;64051:45:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;64051:45:0;;-1:-1:-1;;;;;;64115:20:0;;64107:39;;;;;-1:-1:-1;;;64107:39:0;;;;;;;;;;;;-1:-1:-1;;;64107:39:0;;;;;;;;;;;;;;;64211:73;64237:6;64245:38;64270:12;64245:20;:7;64257;64245:20;:11;:20;:::i;:::-;:24;:38;:24;:38;:::i;:::-;64218:4;;-1:-1:-1;;;;;64218:4:0;;64211:73;;:25;:73;:::i;:::-;63260:1032;;;;;:::o;85961:284::-;86099:10;;-1:-1:-1;;;;;86099:10:0;86085;:24;;:52;;-1:-1:-1;86127:10:0;;-1:-1:-1;;;;;86127:10:0;86113;:24;86085:52;86063:113;;;;;-1:-1:-1;;;86063:113:0;;;;;;;;;;;;-1:-1:-1;;;86063:113:0;;;;;;;;;;;;;;;86187:23;:50;85961:284::o;82137:347::-;82194:7;82214:17;82234:20;:18;:20::i;:::-;82214:40;;82315:21;82339:104;82367:65;82405:26;;82367:33;82395:4;82367:23;;:27;;:33;;;;:::i;:65::-;82339:9;;:104;:13;:104;:::i;94128:73::-;94159:42;94128:73;:::o;85523:209::-;85613:10;;-1:-1:-1;;;;;85613:10:0;85599;:24;;:52;;-1:-1:-1;85641:10:0;;-1:-1:-1;;;;;85641:10:0;85627;:24;85599:52;85577:113;;;;;-1:-1:-1;;;85577:113:0;;;;;;;;;;;;-1:-1:-1;;;85577:113:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;85701:16:0;;;;;:7;:16;;;;;:23;;-1:-1:-1;;85701:23:0;85720:4;85701:23;;;85523:209::o;79563:22::-;;;-1:-1:-1;;;;;79563:22:0;;:::o;82835:174::-;82964:7;;82930:42;;;-1:-1:-1;;;82930:42:0;;-1:-1:-1;;;;;82964:7:0;;;82930:42;;;;;;-1:-1:-1;;;;79384:42:0;;82930:33;;:42;;;;;;;;;;;;79384;82930;;;2:2:-1;;;;27:1;24;17:12;2:2;82930:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;82930:42:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;82930:42:0;;;;-1:-1:-1;;82835:174:0;:::o;91118:1317::-;59808:10;59797:22;;;;:10;:22;;;;;;;;;:63;;-1:-1:-1;59850:10:0;;-1:-1:-1;;;;;59850:10:0;59836;:24;59797:63;:104;;;-1:-1:-1;59891:10:0;;-1:-1:-1;;;;;59891:10:0;59877;:24;59797:104;59775:137;;12:1:-1;9;2:12;59775:137:0;91207:16:::1;::::0;;91221:1:::1;91207:16:::0;;;;;::::1;::::0;;;91179:25:::1;::::0;91207:16:::1;::::0;;::::1;::::0;;109:14:-1::1;91207:16:0::0;88:42:-1::1;-1:-1:::0;;91248:7:0::1;::::0;91234:11;;;;-1:-1:-1;;;;;;91248:7:0::1;::::0;91234:11;;-1:-1:-1;91248:7:0::1;::::0;91234:11:::1;;;;-1:-1:-1::0;;;;;91234:21:0;;::::1;:11;::::0;;::::1;::::0;;;;;;;:21;91292:55:::1;::::0;;-1:-1:-1;;;91292:55:0;;91330:1:::1;91292:55;::::0;::::1;::::0;91341:4:::1;91292:55:::0;;;;;;91266:13:::1;::::0;79384:42:::1;::::0;91292:37:::1;::::0;:55;;;;;91266:13;;91292:55;;;;;;;;91266:13;79384:42;91292:55;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;91292:55:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;91394:21:0::1;::::0;-1:-1:-1;;91487:9:0;;;-1:-1:-1;91483:149:0::1;;57784:42;-1:-1:-1::0;;;;;91584:20:0::1;;91612:5;91584:36;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;91584:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;91584:36:0;;;;;91483:149;91661:38;::::0;;-1:-1:-1;;;91661:38:0;;91693:4:::1;91661:38;::::0;::::1;::::0;;;91644:14:::1;::::0;57784:42:::1;::::0;91661:23:::1;::::0;:38;;;;;::::1;::::0;;;;;;;;;57784:42;91661:38;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;91661:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;91661:38:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;91661:38:0;;-1:-1:-1;91714:10:0;;91710:170:::1;;91749:29;58537:5;91749:16;91760:4;;91749:6;:10;;:16;;;;:::i;:29::-;91741:37:::0;-1:-1:-1;91797:9:0;;91793:76:::1;;91827:26;91847:5;91827:19;:26::i;:::-;91892:55;::::0;;-1:-1:-1;;;91892:55:0;;91930:1:::1;91892:55;::::0;::::1;::::0;;;91941:4:::1;91892:55:::0;;;;;;79384:42:::1;::::0;91892:37:::1;::::0;:55;;;;;;;;;;;91930:1;79384:42;91892:55;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;91892:55:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;;91993:38:0::1;::::0;;-1:-1:-1;;;91993:38:0;;92025:4:::1;91993:38;::::0;::::1;::::0;;;91976:14:::1;::::0;-1:-1:-1;79495:42:0::1;::::0;-1:-1:-1;91993:23:0::1;::::0;:38;;;;;::::1;::::0;;;;;;;;;79495:42;91993:38;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;91993:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;91993:38:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;91993:38:0;;-1:-1:-1;92046:10:0;;92042:335:::1;;92081:29;58537:5;92081:16;92092:4;;92081:6;:10;;:16;;;;:::i;:29::-;92073:37:::0;-1:-1:-1;92129:9:0;;92125:73:::1;;92159:23;92176:5;92159:16;:23::i;:::-;92216:4;::::0;-1:-1:-1;;;;;92216:4:0::1;79495:42;92216:13;92212:154;;92259:38;::::0;;-1:-1:-1;;;92259:38:0;;92291:4:::1;92259:38;::::0;::::1;::::0;;;79495:42:::1;::::0;92259:23:::1;::::0;:38;;;;;::::1;::::0;;;;;;;;79495:42;92259:38;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;92259:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;92259:38:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;92259:38:0;92337:4:::1;::::0;92259:38;;-1:-1:-1;92316:34:0::1;::::0;79495:42:::1;::::0;-1:-1:-1;;;;;92337:4:0::1;92259:38:::0;92316:13:::1;:34::i;:::-;92389:38;:36;:38::i;58882:53::-:0;58929:6;58882:53;:::o;62893:289::-;62994:10;;62944:15;;-1:-1:-1;;;;;62994:10:0;62980;:24;62972:48;;;;;-1:-1:-1;;;62972:48:0;;;;;;;;;;;;-1:-1:-1;;;62972:48:0;;;;;;;;;;;;;;;63039:4;;-1:-1:-1;;;;;63039:23:0;;;:4;;:23;;63031:40;;;;;-1:-1:-1;;;63031:40:0;;;;;;;;;;;;;;;-1:-1:-1;;;63031:40:0;;;;;;;;;;;;;;;63092:31;;;-1:-1:-1;;;63092:31:0;;63117:4;63092:31;;;;;;-1:-1:-1;;;;;63092:16:0;;;;;:31;;;;;;;;;;;;;;:16;:31;;;2:2:-1;;;;27:1;24;17:12;2:2;63092:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;63092:31:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;63092:31:0;63154:10;;63092:31;;-1:-1:-1;63134:40:0;;-1:-1:-1;;;;;63134:19:0;;;;63154:10;63092:31;63134:40;:19;:40;:::i;:::-;62893:289;;;:::o;58836:39::-;;;;:::o;60679:209::-;60769:10;;-1:-1:-1;;;;;60769:10:0;60755;:24;;:66;;-1:-1:-1;60811:10:0;;-1:-1:-1;;;;;60811:10:0;60797;:24;60755:66;60747:93;;;;;-1:-1:-1;;;60747:93:0;;;;;;;;;;;;-1:-1:-1;;;60747:93:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;60851:22:0;;;;;:10;:22;;;;;:29;;-1:-1:-1;;60851:29:0;60876:4;60851:29;;;60679:209::o;58217:41::-;;;;:::o;86253:254::-;86369:10;;-1:-1:-1;;;;;86369:10:0;86355;:24;;:52;;-1:-1:-1;86397:10:0;;-1:-1:-1;;;;;86397:10:0;86383;:24;86355:52;86333:113;;;;;-1:-1:-1;;;86333:113:0;;;;;;;;;;;;-1:-1:-1;;;86333:113:0;;;;;;;;;;;;;;;86457:19;:42;86253:254::o;58966:25::-;;;-1:-1:-1;;;;;58966:25:0;;:::o;58006:74::-;;;-1:-1:-1;;;;;58006:74:0;;:::o;85269:215::-;85315:7;85335:16;85354:13;:11;:13::i;:::-;85335:32;;85378:16;85397:13;:11;:13::i;:::-;85378:32;-1:-1:-1;85430:46:0;85453:22;:8;85378:32;85453:22;:12;:22;:::i;:::-;85430:18;:8;85443:4;85430:18;:12;:18;:::i;84168:126::-;84243:7;;84234:52;;;-1:-1:-1;;;84234:52:0;;84280:4;84234:52;;;;;;84207:7;;-1:-1:-1;;;;;84243:7:0;;84234:37;;:52;;;;;;;;;;;;;;84207:7;84243;84234:52;;;2:2:-1;;;;27:1;24;17:12;2:2;84234:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;84234:52:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;84234:52:0;;-1:-1:-1;84168:126:0;:::o;81408:135::-;81492:7;;81483:52;;;-1:-1:-1;;;81483:52:0;;81529:4;81483:52;;;;;;81456:7;;-1:-1:-1;;;;;81492:7:0;;81483:37;;:52;;;;;;;;;;;;;;81492:7;81483:52;;;2:2:-1;;;;27:1;24;17:12;2:2;81483:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;57833:72:0;57863:42;57833:72;:::o;79346:80::-;79384:42;79346:80;:::o;60526:145::-;60609:8;;-1:-1:-1;;;;;60609:8:0;60595:10;:22;60587:44;;;;;-1:-1:-1;;;60587:44:0;;;;;;;;;;;;-1:-1:-1;;;60587:44:0;;;;;;;;;;;;;;;60642:12;:21;60526:145::o;60166:113::-;60208:7;60235:36;60255:15;:13;:15::i;:::-;60235;:13;:15::i;:::-;:19;:36;:19;:36;:::i;:::-;60228:43;;60166:113;:::o;82492:335::-;82545:7;82565:17;82585:20;:18;:20::i;:::-;82565:40;;82666:21;82690:96;82718:57;82752:22;;82718:29;82742:4;82718:19;;:23;;:29;;;;:::i;81049:351::-;81175:7;;81166:75;;;-1:-1:-1;;;81166:75:0;;81225:4;81166:75;;;;;;81097:7;;;;;;-1:-1:-1;;;;;81175:7:0;;;;81166:50;;:75;;;;;;;;;;;;;;;81175:7;81166:75;;;2:2:-1;;;;27:1;24;17:12;2:2;81166:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;81166:75:0;;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;81166:75:0;;;;;;;;;;;81304:29;;;;;;;;;;81166:75;;-1:-1:-1;81166:75:0;;-1:-1:-1;81257:11:0;;81272:97;;81166:75;81272:17;:97::i;:::-;81254:115;-1:-1:-1;;;;;81049:351:0;:::o;84302:127::-;84377:7;;84368:53;;;-1:-1:-1;;;84368:53:0;;84415:4;84368:53;;;;;;84341:7;;-1:-1:-1;;;;;84377:7:0;;84368:38;;:53;;;;;;;;;;;;;;84341:7;84377;84368:53;;;2:2:-1;;;;27:1;24;17:12;61492:195:0;61600:8;;-1:-1:-1;;;;;61600:8:0;61586:10;:22;61578:44;;;;;-1:-1:-1;;;61578:44:0;;;;;;;;;;;;-1:-1:-1;;;61578:44:0;;;;;;;;;;;;;;;61633:21;:46;61492:195::o;64870:440::-;64961:10;;64911:15;;-1:-1:-1;;;;;64961:10:0;64947;:24;64939:48;;;;;-1:-1:-1;;;64939:48:0;;;;;;;;;;;;-1:-1:-1;;;64939:48:0;;;;;;;;;;;;;;;64998:14;:12;:14::i;:::-;65042:4;;65035:37;;;-1:-1:-1;;;65035:37:0;;65066:4;65035:37;;;;;;-1:-1:-1;;;;;65042:4:0;;;;65035:22;;:37;;;;;;;;;;;;;;;65042:4;65035:37;;;2:2:-1;;;;27:1;24;17:12;2:2;65035:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;65035:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;65035:37:0;65114:10;;65085:14;65141:4;;65102:45;;;-1:-1:-1;;;65102:45:0;;-1:-1:-1;;;;;65141:4:0;;;65102:45;;;;;;65035:37;;-1:-1:-1;65085:14:0;;65114:10;;;65102:30;;:45;;;;;65035:37;;65102:45;;;;;;;;65114:10;65102:45;;;2:2:-1;;;;27:1;24;17:12;2:2;65102:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;65102:45:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;65102:45:0;;-1:-1:-1;;;;;;65166:20:0;;65158:39;;;;;-1:-1:-1;;;65158:39:0;;;;;;;;;;;;-1:-1:-1;;;65158:39:0;;;;;;;;;;;;;;;65267:4;;65260:42;;-1:-1:-1;;;;;65267:4:0;65286:6;65294:7;65260:42;:25;:42;:::i;:::-;64870:440;;:::o;84855:406::-;84896:7;84916:16;84935:13;:11;:13::i;:::-;84916:32;;84959:16;84978:13;:11;:13::i;:::-;85062:7;;85028:42;;;-1:-1:-1;;;85028:42:0;;-1:-1:-1;;;;;85062:7:0;;;85028:42;;;;;;84959:32;;-1:-1:-1;;;79384:42:0;;85028:33;;:42;;;;;;;;;;;;79384;85028;;;2:2:-1;;;;27:1;24;17:12;2:2;85028:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;85028:42:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;85028:42:0;;;;-1:-1:-1;85153:100:0;85233:5;85153:57;85205:4;85153:47;85166:33;85028:42;85153:57;85166:8;85179:4;85166:18;:12;:18;:::i;:33::-;85153:8;;:47;:12;:47;:::i;:::-;:51;:57;:51;:57;:::i;:100::-;85133:120;;;;;84855:406;:::o;59094:42::-;;;;;;;;;;;;;;;:::o;58328:36::-;;;;:::o;58726:40::-;;;;:::o;62580:151::-;62666:8;;-1:-1:-1;;;;;62666:8:0;62652:10;:22;62644:44;;;;;-1:-1:-1;;;62644:44:0;;;;;;;;;;;;-1:-1:-1;;;62644:44:0;;;;;;;;;;;;;;;62699:10;:24;;-1:-1:-1;;;;;;62699:24:0;-1:-1:-1;;;;;62699:24:0;;;;;;;;;;62580:151::o;83965:195::-;84015:7;84035:16;84054:13;:11;:13::i;:::-;84035:32;;84078:16;84097:13;:11;:13::i;84437:410::-;84478:7;84498:16;84517:13;:11;:13::i;:::-;84498:32;;84541:16;84560:13;:11;:13::i;:::-;84644:7;;84610:42;;;-1:-1:-1;;;84610:42:0;;-1:-1:-1;;;;;84644:7:0;;;84610:42;;;;;;84541:32;;-1:-1:-1;;;79384:42:0;;84610:33;;:42;;;;;;;;;;;;79384;84610;;;2:2:-1;;;;27:1;24;17:12;2:2;84610:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;84610:42:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;84610:42:0;;;;-1:-1:-1;84739:100:0;84819:5;84739:57;84791:4;84739:47;84777:8;84739:33;84767:4;84739:57;:8;84610:42;84739:23;:12;:23;:::i;81901:228::-;82006:7;82031:16;82050;:14;:16::i;:::-;82031:35;-1:-1:-1;82084:37:0;82116:4;82084:27;:13;82031:35;82084:27;:17;:27;:::i;:37::-;82077:44;81901:228;-1:-1:-1;;;81901:228:0:o;62266:155::-;62352:10;;-1:-1:-1;;;;;62352:10:0;62338;:24;62330:48;;;;;-1:-1:-1;;;62330:48:0;;;;;;;;;;;;-1:-1:-1;;;62330:48:0;;;;;;;;;;;;;;;62389:10;:24;;-1:-1:-1;;;;;;62389:24:0;-1:-1:-1;;;;;62389:24:0;;;;;;;;;;62266:155::o;61293:191::-;61399:8;;-1:-1:-1;;;;;61399:8:0;61385:10;:22;61377:44;;;;;-1:-1:-1;;;61377:44:0;;;;;;;;;;;;-1:-1:-1;;;61377:44:0;;;;;;;;;;;;;;;61432:20;:44;61293:191::o;87167:216::-;87210:25;87238:24;:22;:24::i;:::-;87210:52;;87273:19;87295:43;87320:17;87295:24;:43::i;:::-;87273:65;;87349:26;87363:11;87349:13;:26::i;:::-;87167:216;;:::o;60391:127::-;60465:8;;-1:-1:-1;;;;;60465:8:0;60451:10;:22;60443:44;;;;;-1:-1:-1;;;60443:44:0;;;;;;;;;;;;-1:-1:-1;;;60443:44:0;;;;;;;;;;;;;;;60498:4;:12;60391:127::o;62429:143::-;62511:8;;-1:-1:-1;;;;;62511:8:0;62497:10;:22;62489:44;;;;;-1:-1:-1;;;62489:44:0;;;;;;;;;;;;-1:-1:-1;;;62489:44:0;;;;;;;;;;;;;;;62544:8;:20;;-1:-1:-1;;;;;;62544:20:0;-1:-1:-1;;;;;62544:20:0;;;;;;;;;;62429:143::o;59969:118::-;60015:7;60049:4;;60042:37;;;-1:-1:-1;;;60042:37:0;;60073:4;60042:37;;;;;;-1:-1:-1;;;;;60049:4:0;;;;60042:22;;:37;;;;;;;;;;;;;;;60049:4;60042:37;;;2:2:-1;;;;27:1;24;17:12;64356:438:0;64489:10;;64434:15;;-1:-1:-1;;;;;64489:10:0;64475;:24;64467:48;;;;;-1:-1:-1;;;64467:48:0;;;;;;;;;;;;-1:-1:-1;;;64467:48:0;;;;;;;;;;;;;;;64526:22;64540:7;64526:13;:22::i;:::-;-1:-1:-1;64578:4:0;;64571:37;;;-1:-1:-1;;;64571:37:0;;64602:4;64571:37;;;;;;-1:-1:-1;;;;;64578:4:0;;;;64571:22;;:37;;;;;;;;;;;;;;;64578:4;64571:37;;;2:2:-1;;;;27:1;24;17:12;2:2;64571:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;64571:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;64571:37:0;64650:10;;64621:14;64677:4;;64638:45;;;-1:-1:-1;;;64638:45:0;;-1:-1:-1;;;;;64677:4:0;;;64638:45;;;;;;64571:37;;-1:-1:-1;64621:14:0;;64650:10;;;64638:30;;:45;;;;;64571:37;;64638:45;;;;;;;;64650:10;64638:45;;;2:2:-1;;;;27:1;24;17:12;2:2;64638:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;64638:45:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;64638:45:0;;-1:-1:-1;;;;;;64702:20:0;;64694:39;;;;;-1:-1:-1;;;64694:39:0;;;;;;;;;;;;-1:-1:-1;;;64694:39:0;;;;;;;;;;;;;;;64751:4;;64744:42;;-1:-1:-1;;;;;64751:4:0;64770:6;64778:7;64744:42;:25;:42;:::i;:::-;64356:438;;;;:::o;61695:179::-;61795:8;;-1:-1:-1;;;;;61795:8:0;61781:10;:22;61773:44;;;;;-1:-1:-1;;;61773:44:0;;;;;;;;;;;;-1:-1:-1;;;61773:44:0;;;;;;;;;;;;;;;61828:17;:38;61695:179::o;62103:155::-;62189:10;;-1:-1:-1;;;;;62189:10:0;62175;:24;62167:48;;;;;-1:-1:-1;;;62167:48:0;;;;;;;;;;;;-1:-1:-1;;;62167:48:0;;;;;;;;;;;;;;;62226:10;:24;;-1:-1:-1;;;;;;62226:24:0;-1:-1:-1;;;;;62226:24:0;;;;;;;;;;62103:155::o;61111:174::-;61205:10;;-1:-1:-1;;;;;61205:10:0;61191;:24;61183:51;;;;;-1:-1:-1;;;61183:51:0;;;;;;;;;;;;-1:-1:-1;;;61183:51:0;;;;;;;;;;;;;;;61245:14;:32;;-1:-1:-1;;;;;;61245:32:0;-1:-1:-1;;;;;61245:32:0;;;;;;;;;;61111:174::o;94688:320::-;94734:13;94757:4;;94750:37;;;-1:-1:-1;;;94750:37:0;;94781:4;94750:37;;;;;;-1:-1:-1;;;;;94757:4:0;;;;94750:22;;:37;;;;;;;;;;;;;;;94757:4;94750:37;;;2:2:-1;;;;27:1;24;17:12;2:2;94750:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;94750:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;94750:37:0;;-1:-1:-1;94802:9:0;;94798:203;;94853:7;;;94835:4;;94828:36;;-1:-1:-1;;;;;94835:4:0;;;;94853:7;;;94828:36;:24;:36;:::i;:::-;94904:7;;;94886:4;94879:40;;-1:-1:-1;;;;;94886:4:0;;;;94904:7;94913:5;94879:40;:24;:40;:::i;:::-;94951:7;;94942:29;;;-1:-1:-1;;;94942:29:0;;;;;;;;;;-1:-1:-1;;;;;94951:7:0;;;;94942:22;;:29;;;;;;;;;;;;;;;94951:7;;94942:29;;;2:2:-1;;;;27:1;24;17:12;2:2;94942:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;94942:29:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;94942:29:0;:34;94934:55;;;;;-1:-1:-1;;;94934:55:0;;;;;;;;;;;;-1:-1:-1;;;94934:55:0;;;;;;;;;;;;;;;94688:320;:::o;59062:23::-;;;-1:-1:-1;;;;;59062:23:0;;:::o;94226:75::-;94259:42;94226:75;:::o;58470:26::-;;;;:::o;88940:1386::-;80819:10;80811:19;;;;:7;:19;;;;;;;;;:63;;-1:-1:-1;80847:10:0;80869:4;80847:27;80811:63;:104;;;-1:-1:-1;80905:10:0;;-1:-1:-1;;;;;80905:10:0;80891;:24;80811:104;:145;;;-1:-1:-1;80946:10:0;;-1:-1:-1;;;;;80946:10:0;80932;:24;80811:145;80789:203;;;;;-1:-1:-1;;;80789:203:0;;;;;;;;;;;;-1:-1:-1;;;80789:203:0;;;;;;;;;;;;;;;89026:25:::1;89054:24;:22;:24::i;:::-;89026:52;;89089:16;89108:13;:11;:13::i;:::-;89089:32;;89171:17;89154:13;:34;;:63;;;;;89209:8;89192:13;:25;;89154:63;89132:124;;;::::0;;-1:-1:-1;;;89132:124:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;89132:124:0;;;;;;;;;;;;;::::1;;89306:23;89332:20;:18;:20::i;:::-;89306:46;;89400:23;89426:15;:13;:15::i;:::-;89400:41;;89452:867;89625:13:::0;89593:29:::1;:8:::0;89606:15;89593:29:::1;:12;:29;:::i;:::-;:45;89589:131;;;89677:27;:8:::0;89690:13;89677:27:::1;:12;:27;:::i;:::-;89659:45;;89589:131;89771:7;::::0;89762:51:::1;::::0;;-1:-1:-1;;;89762:51:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;89771:7:0;;::::1;::::0;89762:34:::1;::::0;:51;;;;;::::1;::::0;;;;;;;;;89771:7:::1;::::0;89762:51;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;89762:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;89762:51:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;89762:51:0;:56;89736:125:::1;;;::::0;;-1:-1:-1;;;89736:125:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;89736:125:0;;;;;;;;;;;;;::::1;;89901:7;::::0;::::1;89883:4:::0;;89876:36:::1;::::0;-1:-1:-1;;;;;89883:4:0;;::::1;::::0;89901:7;::::1;::::0;89876:36:::1;:24;:36;:::i;:::-;89952:7;::::0;::::1;89934:4:::0;89927:50:::1;::::0;-1:-1:-1;;;;;89934:4:0;;::::1;::::0;89952:7:::1;89961:15:::0;89927:50:::1;:24;:50;:::i;:::-;90009:7;::::0;90000:46:::1;::::0;;-1:-1:-1;;;90000:46:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;90009:7:0;;::::1;::::0;90000:29:::1;::::0;:46;;;;;::::1;::::0;;;;;;;;;90009:7:::1;::::0;90000:46;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;90000:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;90000:46:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;90000:46:0;:51;89992:70:::1;;;::::0;;-1:-1:-1;;;89992:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;89992:70:0;;;;;;;;;;;;;::::1;;90090:29;:8:::0;90103:15;90090:29:::1;:12;:29;:::i;:::-;90079:40:::0;-1:-1:-1;90227:46:0::1;90257:15:::0;90227:25:::1;:15:::0;90247:4:::1;90227:25;:19;:25;:::i;:46::-;90209:64;;90304:13;90293:8;:24;89452:867;;81003:1;;;;88940:1386:::0;:::o;87495:1173::-;80819:10;80811:19;;;;:7;:19;;;;;;;;;:63;;-1:-1:-1;80847:10:0;80869:4;80847:27;80811:63;:104;;;-1:-1:-1;80905:10:0;;-1:-1:-1;;;;;80905:10:0;80891;:24;80811:104;:145;;;-1:-1:-1;80946:10:0;;-1:-1:-1;;;;;80946:10:0;80932;:24;80811:145;80789:203;;;;;-1:-1:-1;;;80789:203:0;;;;;;;;;;;;-1:-1:-1;;;80789:203:0;;;;;;;;;;;;;;;87639:16:::1;87658;:14;:16::i;:::-;87639:35;;87685:25;87713:24;:22;:24::i;:::-;87685:52;;87787:17;87770:13;:34;;:109;;;;-1:-1:-1::0;87838:41:0::1;87874:4;87838:31;:17:::0;87860:8;87838:31:::1;:21;:31;:::i;:41::-;87821:13;:58;;87770:109;87748:168;;;::::0;;-1:-1:-1;;;87748:168:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;87748:168:0;;;;;;;;;;;;;::::1;;88011:24;88046:16:::0;88065:13:::1;:11;:13::i;:::-;88046:32;;88108:15;:13;:15::i;:::-;88089:34;;88134:527;88152:13;88141:8;:24;88134:527;;;88221:13:::0;88188:30:::1;:8:::0;88201:16;88188:30:::1;:12;:30;:::i;:::-;:46;88184:133;;;88274:27;:13:::0;88292:8;88274:27:::1;:17;:27;:::i;:::-;88255:46;;88184:133;88342:7;::::0;88333:42:::1;::::0;;-1:-1:-1;;;88333:42:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;88342:7:0;;::::1;::::0;88333:24:::1;::::0;:42;;;;;::::1;::::0;;;;;;;;;88342:7:::1;::::0;88333:42;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;88333:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;88333:42:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;88390:9:0::1;::::0;-1:-1:-1;88390:7:0::1;:9::i;:::-;88427:30;:8:::0;88440:16;88427:30:::1;:12;:30;:::i;:::-;88530:7;::::0;88496:42:::1;::::0;;-1:-1:-1;;;88496:42:0;;-1:-1:-1;;;;;88530:7:0;;::::1;88496:42;::::0;::::1;::::0;;;88416:41;;-1:-1:-1;;;79384:42:0::1;::::0;88496:33:::1;::::0;:42;;;;;;;;;;;;79384;88496;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;88496:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;88496:42:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;88496:42:0::1;;::::0;;-1:-1:-1;88573:76:0::1;88643:5;88573:65;88633:4;88573:55;88611:16:::0;88573:33:::1;88601:4;88573:65:::0;:8;88496:42;88573:23:::1;:12;:23;:::i;:76::-;88553:96;;88134:527;;;88676:150:::0;88721:25;88749:24;:22;:24::i;:::-;88721:52;;88784:34;88800:17;88784:15;:34::i;58998:25::-;;;-1:-1:-1;;;;;58998:25:0;;:::o;58551:34::-;;;;:::o;86673:486::-;86705:4;86722:17;86742:14;:12;:14::i;:::-;86722:34;;86767:25;86795:22;:20;:22::i;:::-;86767:50;;86876:17;86864:9;:29;86860:267;;;86910:25;86938:24;:22;:24::i;:::-;86910:52;;86977:19;86999:43;87024:17;86999:24;:43::i;:::-;86977:65;;87059:28;87075:11;87059:15;:28::i;:::-;87111:4;87104:11;;;;;;;;86860:267;87146:5;87139:12;;;;86673:486;:::o;92756:1175::-;92883:60;;;-1:-1:-1;;;92883:60:0;;;;;;;;;-1:-1:-1;;;;;92883:60:0;;;;;;;;92845:4;;;;79384:42;;92883:39;;:60;;;;;;;;;;;;;;79384:42;92883:60;;;2:2:-1;;;;27:1;24;17:12;2:2;92883:60:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;92883:60:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;92883:60:0;92980:64;;;-1:-1:-1;;;92980:64:0;;;;;;;;;-1:-1:-1;;;;;92980:64:0;;;;;;;;92883:60;;-1:-1:-1;92955:19:0;;79384:42;;92980:43;;:64;;;;;;;;;;;79384:42;92980:64;;;2:2:-1;;;;27:1;24;17:12;2:2;92980:64:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;92980:64:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;92980:64:0;93134:7;;92980:64;93076:75;;-1:-1:-1;;;93076:75:0;;;;;;;;;-1:-1:-1;;;;;93134:7:0;;;93076:75;;;;;;;;;;;;92980:64;;-1:-1:-1;93055:18:0;;79384:42;;93076:45;;:75;;;;;92980:64;;93076:75;;;;;;;79384:42;93076:75;;;2:2:-1;;;;27:1;24;17:12;2:2;93076:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;93076:75:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;93076:75:0;;-1:-1:-1;93162:21:0;-1:-1:-1;;;;;93202:27:0;;;-1:-1:-1;93198:107:0;;;93279:13;93265:11;-1:-1:-1;;;;;93265:27:0;;93246:46;;93198:107;93345:7;;93336:36;;;-1:-1:-1;;;93336:36:0;;-1:-1:-1;;;;;93336:36:0;;;;;;;;;93315:18;;93336:58;;93377:16;;93345:7;;;93336:27;;:36;;;;;;;;;;;;;;;93345:7;93336:36;;;2:2:-1;;;;27:1;24;17:12;2:2;93336:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;93336:36:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;93336:36:0;;:58;:40;:58;:::i;:::-;93431:64;;;-1:-1:-1;;;93431:64:0;;;;;;;;;-1:-1:-1;;;;;93431:64:0;;;;;;;;93315:79;;-1:-1:-1;93406:19:0;;79384:42;;93431:43;;:64;;;;;;;;;;;79384:42;93431:64;;;2:2:-1;;;;27:1;24;17:12;2:2;93431:64:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;93431:64:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;93431:64:0;93585:7;;93431:64;93527:75;;-1:-1:-1;;;93527:75:0;;;;;;;;;-1:-1:-1;;;;;93585:7:0;;;93527:75;;;;;;;;;;;;93431:64;;-1:-1:-1;93506:18:0;;79384:42;;93527:45;;:75;;;;;93431:64;;93527:75;;;;;;;79384:42;93527:75;;;2:2:-1;;;;27:1;24;17:12;2:2;93527:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;93527:75:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;93527:75:0;;-1:-1:-1;93613:21:0;-1:-1:-1;;;;;93653:27:0;;;-1:-1:-1;93649:106:0;;;93730:13;93716:11;-1:-1:-1;;;;;93716:27:0;;93697:46;;93649:106;93795:7;;93786:46;;;-1:-1:-1;;;93786:46:0;;-1:-1:-1;;;;;93786:46:0;;;;;;;;;93765:18;;93786:68;;93837:16;;93795:7;;;93786:37;;:46;;;;;;;;;;;;;;;93795:7;93786:46;;;2:2:-1;;;;27:1;24;17:12;93786:68:0;93765:89;-1:-1:-1;93872:51:0;93890:32;:13;93765:89;93890:32;:17;:32;:::i;:::-;93872:13;;:51;:17;:51;:::i;:::-;93865:58;;;;;;;;;;;92756:1175;;;;;:::o;3306:132::-;3364:7;3391:39;3395:1;3398;3391:39;;;;;;;;;;;;;;;;;:3;:39::i;1469:136::-;1527:7;1554:43;1558:1;1561;1554:43;;;;;;;;;;;;;;;;;:3;:43::i;2359:471::-;2417:7;2662:6;2658:47;;-1:-1:-1;2692:1:0;2685:8;;2658:47;2729:5;;;2733:1;2729;:5;:1;2753:5;;;;;:10;2745:56;;;;-1:-1:-1;;;2745:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95016:1333;95110:7;95135:13;95151:15;:13;:15::i;:::-;95135:31;;95189:7;95181:5;:15;95177:1140;;;95213:15;95231:18;:7;95243:5;95231:18;:11;:18;:::i;:::-;95213:36;;95356:7;95334;;;;;;;;;-1:-1:-1;;;;;95334:7:0;-1:-1:-1;;;;;95325:25:0;;:27;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;95325:27:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;95325:27:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;95325:27:0;:38;;95317:66;;;;;-1:-1:-1;;;95317:66:0;;;;;;;;;;;;-1:-1:-1;;;95317:66:0;;;;;;;;;;;;;;;95459:16;95478:13;:11;:13::i;:::-;95459:32;;95506:16;95525:13;:11;:13::i;:::-;95506:32;;95553:19;95575:20;:18;:20::i;:::-;95553:42;-1:-1:-1;95610:24:0;95637:34;95666:4;95637:24;:7;95553:42;95637:24;:11;:24;:::i;:34::-;95610:61;-1:-1:-1;95803:12:0;;95799:389;;95859:8;95840:16;:27;95836:337;;;95892:4;-1:-1:-1;;;;;95892:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;95892:22:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;95892:22:0;;;;95836:337;;;96101:4;:20;96122:30;:8;96135:16;96122:30;:12;:30;:::i;:::-;96101:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;96101:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;96101:52:0;;;;95836:337;96254:7;;96245:43;;;-1:-1:-1;;;96245:43:0;;;;;;;;;;-1:-1:-1;;;;;96254:7:0;;;;96245:34;;:43;;;;;;;;;;;;;;;96254:7;;96245:43;;;2:2:-1;;;;27:1;24;17:12;2:2;96245:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;96245:43:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;96245:43:0;:48;96237:68;;;;;-1:-1:-1;;;96237:68:0;;;;;;;;;;;;-1:-1:-1;;;96237:68:0;;;;;;;;;;;;;;;95177:1140;;;;;;-1:-1:-1;96334:7:0;;95016:1333;-1:-1:-1;95016:1333:0:o;1005:181::-;1063:7;1095:5;;;1119:6;;;;1111:46;;;;;-1:-1:-1;;;1111:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26877:177;26987:58;;;-1:-1:-1;;;;;26987:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;26987:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;26960:86:0;;26980:5;;26960:19;:86::i;:::-;26877:177;;;:::o;68649:577::-;68739:14;;68713:44;;57784:42;;-1:-1:-1;;;;;68739:14:0;;68713:44;:25;:44;:::i;:::-;68794:14;;68768:48;;57784:42;;-1:-1:-1;;;;;68794:14:0;68810:5;68768:48;:25;:48;:::i;:::-;68827:33;57784:42;57943;68854:5;68827:13;:33::i;:::-;68884:37;;;-1:-1:-1;;;68884:37:0;;68915:4;68884:37;;;;;;68871:10;;57943:42;;68884:22;;:37;;;;;;;;;;;;;;;57943:42;68884:37;;;2:2:-1;;;;27:1;24;17:12;2:2;68884:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;68884:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;68884:37:0;68959:12;;68884:37;;-1:-1:-1;68932:14:0;;68949:44;;58634:5;;68949:23;;68884:37;;68949:23;:9;:23;:::i;:44::-;69044:14;;68932:61;;-1:-1:-1;69004:86:0;;57943:42;;-1:-1:-1;;;;;69044:14:0;68932:61;69004:86;:25;:86;:::i;:::-;69153:10;;69141:34;;;-1:-1:-1;;;69141:34:0;;;;69101:117;;-1:-1:-1;;;;;69153:10:0;;69141:32;;:34;;;;;;;;;;;;;;69153:10;69141:34;;;2:2:-1;;;;27:1;24;17:12;2:2;69141:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;69141:34:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;69141:34:0;69190:17;:5;69200:6;69190:17;:9;:17;:::i;:::-;57943:42;;69101:117;;:25;:117;:::i;90407:703::-;90492:16;;;90506:1;90492:16;;;;;;;;;90468:21;;90492:16;;;90468:21;;109:14:-1;90492:16:0;88:42:-1;144:17;;-1:-1;90492:16:0;90468:40;;79495:42;90519:4;90524:1;90519:7;;;;;;;;;;;;;:15;-1:-1:-1;;;;;90519:15:0;;;-1:-1:-1;;;;;90519:15:0;;;;;57784:42;90545:4;90550:1;90545:7;;;;;;;;;;;;;:15;-1:-1:-1;;;;;90545:15:0;;;-1:-1:-1;;;;;90545:15:0;;;;;57943:42;90571:4;90576:1;90571:7;;;;;;;;-1:-1:-1;;;;;90571:14:0;;;:7;;;;;;;;;:14;90622;;90596:44;;79495:42;;90622:14;;90596:44;:25;:44;:::i;:::-;90677:14;;90651:48;;79495:42;;-1:-1:-1;;;;;90677:14:0;90693:5;90651:48;:25;:48;:::i;:::-;90710:34;90732:4;90738:5;90710:21;:34::i;:::-;90768:37;;;-1:-1:-1;;;90768:37:0;;90799:4;90768:37;;;;;;90755:10;;57943:42;;90768:22;;:37;;;;;;;;;;;;;;;57943:42;90768:37;;;2:2:-1;;;;27:1;24;17:12;2:2;90768:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;90768:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;90768:37:0;90843:12;;90768:37;;-1:-1:-1;90816:14:0;;90833:44;;58634:5;;90833:23;;90768:37;;90833:23;:9;:23;:::i;:44::-;90928:14;;90816:61;;-1:-1:-1;90888:86:0;;57943:42;;-1:-1:-1;;;;;90928:14:0;90816:61;90888:86;:25;:86;:::i;:::-;91037:10;;91025:34;;;-1:-1:-1;;;91025:34:0;;;;90985:117;;-1:-1:-1;;;;;91037:10:0;;91025:32;;:34;;;;;;;;;;;;;;91037:10;91025:34;;;2:2:-1;;;;27:1;24;17:12;90985:117:0;90407:703;;;;:::o;66671:986::-;-1:-1:-1;;;;;66801:17:0;;66793:26;;12:1:-1;9;2:12;66793:26:0;66887:14;;66861:44;;-1:-1:-1;;;;;66861:25:0;;;;66887:14;;66861:44;:25;:44;:::i;:::-;66942:14;;66916:50;;-1:-1:-1;;;;;66916:25:0;;;;66942:14;66958:7;66916:50;:25;:50;:::i;:::-;66977:21;-1:-1:-1;;;;;67013:12:0;;57863:42;67013:12;;:26;;-1:-1:-1;;;;;;67029:10:0;;57863:42;67029:10;67013:26;67009:452;;;67077:1;67063:16;2:2:-1;67063:16:0;;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;144:17;;-1:-1;67063:16:0;;67056:23;;67104:5;67094:4;67099:1;67094:7;;;;;;;;;;;;;:15;-1:-1:-1;;;;;67094:15:0;;;-1:-1:-1;;;;;67094:15:0;;;;;67134:3;67124:4;67129:1;67124:7;;;;;;;;;;;;;:13;-1:-1:-1;;;;;67124:13:0;;;-1:-1:-1;;;;;67124:13:0;;;;;67009:452;;;-1:-1:-1;;;;;67169:14:0;;57784:42;67169:14;;:30;;-1:-1:-1;;;;;;67187:12:0;;57784:42;67187:12;67169:30;67165:296;;;67237:1;67223:16;2:2:-1;;67165:296:0;67347:16;;;67361:1;67347:16;;;;;;;;;;;;;17:15:-1;;109:14;67347:16:0;88:42:-1;144:17;;-1:-1;67347:16:0;67340:23;;67388:5;67378:4;67383:1;67378:7;;;;;;;;;;;;;:15;-1:-1:-1;;;;;67378:15:0;;;-1:-1:-1;;;;;67378:15:0;;;;;57863:42;67408:4;67413:1;67408:7;;;;;;;;;;;;;:13;-1:-1:-1;;;;;67408:13:0;;;-1:-1:-1;;;;;67408:13:0;;;;;67446:3;67436:4;67441:1;67436:7;;;;;;;;;;;;;:13;-1:-1:-1;;;;;67436:13:0;;;-1:-1:-1;;;;;67436:13:0;;;;;67165:296;67487:14;;-1:-1:-1;;;;;67487:14:0;67471:56;67542:7;67487:14;67580:4;67607;67627:11;:3;67635:2;67627:11;:7;:11;:::i;:::-;67471:178;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;67471:178:0;-1:-1:-1;;;;;67471:178:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;67471:178:0;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;67471:178:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;67471:178:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;67471:178:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;15:2;7:11;;4:2;;;31:1;28;21:12;4:2;67471:178:0;;;;;;;;;;;;;19:11:-1;14:3;11:20;8:2;;;44:1;41;34:12;8:2;62:21;;;;123:4;114:14;;138:31;;;135:2;;;182:1;179;172:12;135:2;219:3;213:10;331:9;325:2;311:12;307:21;289:16;285:44;282:59;261:11;247:12;244:29;233:116;230:2;;;362:1;359;352:12;230:2;373:25;;-1:-1;67471:178:0;;421:4:-1;412:14;;;;67471:178:0;;;;;412:14:-1;67471:178:0;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;67471:178:0;;;;;;;;;;;;66671:986;;;;:::o;68018:623::-;68086:13;68109:4;;68102:37;;;-1:-1:-1;;;68102:37:0;;68133:4;68102:37;;;;;;-1:-1:-1;;;;;68109:4:0;;;;68102:22;;:37;;;;;;;;;;;;;;;68109:4;68102:37;;;2:2:-1;;;;27:1;24;17:12;2:2;68102:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;68102:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;68102:37:0;;-1:-1:-1;68156:9:0;;68152:482;;68268:10;;68256:34;;;-1:-1:-1;;;68256:34:0;;;;68212:173;;-1:-1:-1;;;;;68268:10:0;;68256:32;;:34;;;;;;;;;;;;;;68268:10;68256:34;;;2:2:-1;;;;27:1;24;17:12;2:2;68256:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;68256:34:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;68256:34:0;68319:22;;68309:61;;58314:5;;68309:33;;:5;;:33;:9;:33;:::i;68212:173::-;68490:10;;68478:33;;;-1:-1:-1;;;68478:33:0;;;;68434:162;;-1:-1:-1;;;;;68490:10:0;;68478:31;;:33;;;;;;;;;;;;;;68490:10;68478:33;;;2:2:-1;;;;27:1;24;17:12;2:2;68478:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;68478:33:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;68478:33:0;68540:17;;68530:51;;58415:5;;68530:28;;:5;;:28;:9;:28;:::i;68434:162::-;68613:9;:7;:9::i;34897:313::-;34974:9;34985:4;35003:13;35018:18;;:::i;:::-;35040:20;35050:1;35053:6;35040:9;:20::i;:::-;35002:58;;-1:-1:-1;35002:58:0;-1:-1:-1;35082:18:0;35075:3;:25;;;;;;;;;35071:73;;-1:-1:-1;35125:3:0;-1:-1:-1;35130:1:0;;-1:-1:-1;35117:15:0;;35071:73;35164:18;35184:17;35193:7;35184:8;:17::i;:::-;35156:46;;;;;;34897:313;;;;;;:::o;65318:82::-;65362:30;65376:15;:13;:15::i;27536:622::-;27906:10;;;27905:62;;-1:-1:-1;27922:39:0;;;-1:-1:-1;;;27922:39:0;;27946:4;27922:39;;;;-1:-1:-1;;;;;27922:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;2:2:-1;;;;27:1;24;17:12;2:2;27922:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27922:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27922:39:0;:44;27905:62;27897:152;;;;-1:-1:-1;;;27897:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28087:62;;;-1:-1:-1;;;;;28087:62:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;28087:62:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;28060:90:0;;28080:5;;28060:19;:90::i;3934:278::-;4020:7;4055:12;4048:5;4040:28;;;;-1:-1:-1;;;4040:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;4040:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4079:9;4095:1;4091;:5;;;;;;;3934:278;-1:-1:-1;;;;;3934:278:0:o;1908:192::-;1994:7;2030:12;2022:6;;;;2014:29;;;;-1:-1:-1;;;2014:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;2014:29:0;-1:-1:-1;;;2066:5:0;;;1908:192::o;29182:761::-;29606:23;29632:69;29660:4;29632:69;;;;;;;;;;;;;;;;;29640:5;-1:-1:-1;;;;;29632:27:0;;;:69;;;;;:::i;:::-;29716:17;;29606:95;;-1:-1:-1;29716:21:0;29712:224;;29858:10;29847:30;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;29847:30:0;29839:85;;;;-1:-1:-1;;;29839:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67665:345;67808:1;-1:-1:-1;;;;;67789:21:0;:4;67794:1;67789:7;;;;;;;;;;;;;;-1:-1:-1;;;;;67789:21:0;;;67781:30;;12:1:-1;9;2:12;67781:30:0;67840:14;;-1:-1:-1;;;;;67840:14:0;67824:56;67895:7;67840:14;67933:4;67960;67980:11;:3;67988:2;67980:11;:7;:11;:::i;:::-;67824:178;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;67824:178:0;-1:-1:-1;;;;;67824:178:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;67824:178:0;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;67824:178:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;67824:178:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;67824:178:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;15:2;7:11;;4:2;;;31:1;28;21:12;4:2;67824:178:0;;;;;;;;;;;;;19:11:-1;14:3;11:20;8:2;;;44:1;41;34:12;8:2;62:21;;;;123:4;114:14;;138:31;;;135:2;;;182:1;179;172:12;135:2;219:3;213:10;331:9;325:2;311:12;307:21;289:16;285:44;282:59;261:11;247:12;244:29;233:116;230:2;;;362:1;359;352:12;230:2;373:25;;-1:-1;67824:178:0;;421:4:-1;412:14;;;;67824:178:0;;;;;412:14:-1;67824:178:0;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;67824:178:0;;;;;;;;;;;;67665:345;;:::o;34431:353::-;34500:9;34511:10;;:::i;:::-;34535:14;34551:19;34574:27;34582:1;:10;;;34594:6;34574:7;:27::i;:::-;34534:67;;-1:-1:-1;34534:67:0;-1:-1:-1;34624:18:0;34616:4;:26;;;;;;;;;34612:92;;-1:-1:-1;34673:18:0;;;;;;;;;-1:-1:-1;34673:18:0;;34667:4;;-1:-1:-1;34673:18:0;-1:-1:-1;34659:33:0;;34612:92;34744:31;;;;;;;;;;;;-1:-1:-1;;34744:31:0;;-1:-1:-1;34431:353:0;-1:-1:-1;;;;34431:353:0:o;39708:213::-;39890:12;32743:4;39890:23;;;39708:213::o;13003:196::-;13106:12;13138:53;13161:6;13169:4;13175:1;13178:12;13138:22;:53::i;:::-;13131:60;13003:196;-1:-1:-1;;;;13003:196:0:o;30559:343::-;30615:9;;30647:6;30643:69;;-1:-1:-1;30678:18:0;;-1:-1:-1;30678:18:0;30670:30;;30643:69;30733:5;;;30737:1;30733;:5;:1;30755:5;;;;;:10;30751:144;;-1:-1:-1;30790:26:0;;-1:-1:-1;30818:1:0;;-1:-1:-1;30782:38:0;;30751:144;30861:18;;-1:-1:-1;30881:1:0;-1:-1:-1;30853:30:0;;14380:979;14510:12;14543:18;14554:6;14543:10;:18::i;:::-;14535:60;;;;;-1:-1:-1;;;14535:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14669:12;14683:23;14710:6;-1:-1:-1;;;;;14710:11:0;14730:8;14741:4;14710:36;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;14710:36:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;14668:78:0;;;;14761:7;14757:595;;;14792:10;-1:-1:-1;14785:17:0;;-1:-1:-1;14785:17:0;14757:595;14906:17;;:21;14902:439;;15169:10;15163:17;15230:15;15217:10;15213:2;15209:19;15202:44;15117:148;15305:20;;-1:-1:-1;;;15305:20:0;;;;;;;;;;;;;;;;;15312:12;;15305:20;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;10085:422:0;10452:20;10491:8;;;10085:422::o;94065:2436::-;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://01002763958b2fc3c46dd5f4aba14df887c770dbea04522063437b7e2aafbe22
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.