Source Code
Latest 25 from a total of 116 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Harvest | 1896782 | 1229 days ago | IN | 0 GLMR | 0.0466006 | ||||
| Manager Harvest | 730474 | 1399 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 726984 | 1399 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 723476 | 1400 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 723419 | 1400 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 719903 | 1400 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 716420 | 1401 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 716327 | 1401 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 712844 | 1401 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 709353 | 1402 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 709318 | 1402 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 705812 | 1402 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 702297 | 1403 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 702174 | 1403 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 698694 | 1403 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 695183 | 1404 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 694925 | 1404 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 691437 | 1404 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 687920 | 1405 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 687842 | 1405 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 684416 | 1405 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 680925 | 1406 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 680777 | 1406 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 677307 | 1406 days ago | IN | 0 GLMR | 0.03924294 | ||||
| Manager Harvest | 631541 | 1413 days ago | IN | 0 GLMR | 0.03924294 |
View more zero value Internal Transactions in Advanced View mode
Cross-Chain Transactions
Loading...
Loading
Contract Name:
StratBeam
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at moonbeam.moonscan.io on 2022-01-28 */ // Sources flattened with hardhat v2.8.3 https://hardhat.org // File @openzeppelin/contracts/GSN/[email protected] // 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 @openzeppelin/contracts/token/ERC20/[email protected] // iMasterChefFlar pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/math/[email protected] // iMasterChefFlar pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File @openzeppelin/contracts/utils/[email protected] // iMasterChefFlar pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/token/ERC20/[email protected] // iMasterChefFlar pragma solidity ^0.6.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override 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 is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File @openzeppelin/contracts/token/ERC20/[email protected] // iMasterChefFlar pragma solidity ^0.6.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File contracts/interfaces/iMasterChefBeam.sol // iMasterChefFlar pragma solidity ^0.6.0; interface iMasterChefBeam { function deposit(uint256 _pid, uint256 _amount) external; function withdraw(uint256 _pid, uint256 _amount) external; function pendingTokens(uint256 _pid, address _user) external view returns (uint256); function userInfo(uint256 _pid, address _user) external view returns (uint256, uint256); function emergencyWithdraw(uint256 _pid) external; function harvestMany(uint256[] calldata _pids) external; } // File contracts/common/IUniswapRouterETH.sol // iMasterChefFlar pragma solidity >=0.6.0 <0.9.0; interface IUniswapRouterETH { function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); } // File contracts/common/IUniswapV2Pair.sol // iMasterChefFlar pragma solidity ^0.6.0; interface IUniswapV2Pair { function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function burn(address to) external returns (uint amount0, uint amount1); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); } // File @openzeppelin/contracts/access/[email protected] // iMasterChefFlar pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File @openzeppelin/contracts/utils/[email protected] // iMasterChefFlar pragma solidity ^0.6.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File contracts/common/StratManager.sol // iMasterChefFlar pragma solidity ^0.6.12; contract StratManager is Ownable, Pausable { /** * @dev ASTRAL Contracts: * {keeper} - Address to manage a few lower risk features of the strat * {harvester} - Address that calls autocomp functions * {treasury} - Address of the strategy author/deployer where treasury fee will go. * {vault} - Address of the vault that controls the strategy's funds. * {unirouter} - Address of exchange to execute swaps. */ address public keeper; address public keeper2; address public harvester; address public treasury; address public unirouter; address public vault; address public astralFeeRecipient; address constant zero = 0x0000000000000000000000000000000000000000; /** * @dev Initializes the base strategy. * @param _keeper address to use as alternative owner. * @param _keeper2 address to use as alternative owner. * @param _treasury address where treasury fees go. * @param _unirouter router to use for swaps * @param _vault address of parent vault. * @param _astralFeeRecipient address where to send Astral's fees. */ constructor( address _keeper, address _keeper2, address _harvester, address _treasury, address _unirouter, address _vault, address _astralFeeRecipient ) public { keeper = _keeper; keeper2 = _keeper2; harvester = _harvester; treasury = _treasury; unirouter = _unirouter; vault = _vault; astralFeeRecipient = _astralFeeRecipient; } // checks that caller is either owner or keeper. modifier onlyManager() { require(msg.sender == owner() || msg.sender == keeper || msg.sender == keeper2 || msg.sender == harvester, "!manager"); _; } // verifies that the caller is not a contract. modifier onlyEOA() { require(msg.sender == tx.origin, "!EOA"); _; } /** * @dev Updates address of the strat keeper. * @param _harvester new keeper address. */ function setHarvester(address _harvester) external onlyManager { harvester = _harvester; } /** * @dev Updates address of the strat keeper. * @param _keeper new keeper address. */ function setKeeper(address _keeper) external { require(msg.sender == keeper, "!NotKeeper!"); keeper = _keeper; } /** * @dev Updates address of the strat keeper. * @param _keeper2 new keeper2 address. */ function setKeeper2(address _keeper2) external { require(msg.sender == keeper2, "!NotKeeper2!"); keeper2 = _keeper2; } /** * @dev Updates address where treasury fee earnings will go. * @param _treasury new treasury address. */ function setTreasury(address _treasury) external { require(msg.sender == treasury, "!treasury"); treasury = _treasury; } /** * @dev Updates parent vault. * @param _vault new vault address. * can only be called once, so set to onlyManager */ function setVault(address _vault) external onlyManager { require(vault == zero, "nope"); vault = _vault; } /** * @dev Updates Astral fee recipient. * @param _astralFeeRecipient new Astral fee recipient address. */ function setAstralFeeRecipient(address _astralFeeRecipient) external onlyOwner { astralFeeRecipient = _astralFeeRecipient; } /** * @dev Function to synchronize balances before new user deposit. * Can be overridden in the strategy. */ function beforeDeposit() external virtual {} /** * @dev Function to synchronize balances before user withdraw. * Can be overridden in the strategy. */ function beforeWithdraw() external virtual {} } // File contracts/common/FeeManager.sol // iMasterChefFlar pragma solidity 0.6.12; abstract contract FeeManager is StratManager { uint constant public TREASURY_FEE = 112; uint constant public MAX_FEE = 1000; uint constant public MAX_CALL_FEE = 111; uint constant public WITHDRAWAL_FEE_CAP = 50; uint constant public WITHDRAWAL_MAX = 10000; uint public withdrawalFee = 0; uint public callFee = 111; uint public astralFee = MAX_FEE - TREASURY_FEE - callFee; // 1000-112-111=777 function setCallFee(uint256 _fee) external onlyManager { require(_fee <= MAX_CALL_FEE, "!cap"); callFee = _fee; astralFee = MAX_FEE - TREASURY_FEE - callFee; } function setWithdrawalFee(uint256 _fee) external onlyManager { require(_fee <= WITHDRAWAL_FEE_CAP, "!cap"); withdrawalFee = _fee; } } // File contracts/strategy/StratBeam.sol // iMasterChefFlar pragma solidity 0.6.12; contract StratBeam is StratManager, FeeManager { using SafeERC20 for IERC20; using SafeMath for uint256; // Tokens used address constant public wrapped = address(0xAcc15dC74880C9944775448304B263D191c6077F); // wGLMR. address constant public output = address(0xcd3B51D98478D53F4515A306bE565c6EebeF1D58); // GLINT address public want; address public lpToken0; address public lpToken1; address public dualReward; // Third party contracts address constant public masterchef = address(0xC6ca172FC8BDB803c5e12731109744fb0200587b); // Beam Masterchef uint256 public poolId; // BOOLEAN bool public harvestOnDeposit; bool public harvestOnWithdrawal; // Timer indicating last harvest timestamp uint256 public lastHarvest; // Routes address[] public outputToWrappedRoute = [output, wrapped]; address[] public outputToLp0Route; address[] public outputToLp1Route; address[] public lp0ToOutputRoute; address[] public lp1ToOutputRoute; address[] public dualRewardToOutputRoute = [dualReward, output]; /** * @dev events for contract */ event StratHarvest(address indexed harvester, uint256 wantHarvested, uint256 tvl); event Deposit(uint256 tvl); event Withdraw(uint256 tvl); event panicking(); event dustConverted(); event autoHarvestSet(bool isHarvDep, bool isHarvWith); event dualRewardSet(address dualReward); constructor( address _want, uint256 _poolId, address _vault, address _unirouter, address _keeper, address _keeper2, address _harvester, address _treasury, address _astralFeeRecipient, address _dualReward ) StratManager(_keeper, _keeper2, _harvester, _treasury, _unirouter, _vault, _astralFeeRecipient) public { dualReward = _dualReward; want = _want; lpToken0 = IUniswapV2Pair(want).token0(); lpToken1 = IUniswapV2Pair(want).token1(); poolId = _poolId; if (lpToken0 == wrapped) { outputToLp0Route = [output, wrapped]; } else if (lpToken0 != output) { outputToLp0Route = [output, wrapped, lpToken0]; lp0ToOutputRoute = [lpToken0, wrapped, output]; } if (lpToken1 == wrapped) { outputToLp1Route = [output, wrapped]; } else if (lpToken1 != output) { outputToLp1Route = [output, wrapped, lpToken1]; lp1ToOutputRoute = [lpToken1, wrapped, output]; } dualRewardToOutputRoute = [dualReward, output]; _giveAllowances(); } function setDualReward(address _dualReward) external onlyManager { require(_dualReward != want, "must set to token"); dualReward = _dualReward; dualRewardToOutputRoute = [dualReward, output]; IERC20(dualReward).safeApprove(unirouter, 0); IERC20(dualReward).safeApprove(unirouter, uint256(-1)); emit dualRewardSet(dualReward); } // puts the funds to work function deposit() public whenNotPaused { uint256 wantBal = IERC20(want).balanceOf(address(this)); if (wantBal > 0) { iMasterChefBeam(masterchef).deposit(poolId, wantBal); emit Deposit(balanceOf()); } } function withdraw(uint256 _amount) external { require(msg.sender == vault, "!vault"); uint256 wantBal = IERC20(want).balanceOf(address(this)); if (wantBal < _amount) { iMasterChefBeam(masterchef).withdraw(poolId, _amount.sub(wantBal)); wantBal = IERC20(want).balanceOf(address(this)); } if (wantBal > _amount) { wantBal = _amount; } if (tx.origin != owner() && !paused()) { uint256 withdrawalFeeAmount = wantBal.mul(withdrawalFee).div(WITHDRAWAL_MAX); wantBal = wantBal.sub(withdrawalFeeAmount); } IERC20(want).safeTransfer(vault, wantBal); emit Withdraw(balanceOf()); } // set bool harvestOnDeposit and harvestOnWithdrawal function setAutoHarvest(bool _harvestOnDeposit, bool _harvestOnWithdrawal) external onlyManager { harvestOnDeposit = _harvestOnDeposit; harvestOnWithdrawal = _harvestOnWithdrawal; emit autoHarvestSet(harvestOnDeposit, harvestOnWithdrawal); } function beforeDeposit() external override { if (harvestOnDeposit) { require(msg.sender == vault, "!vault"); _harvest(tx.origin); // before harvest, call harvest, pass in argument of tx.origin } } function beforeWithdraw() external override { if (harvestOnWithdrawal) { require(msg.sender == vault, "!vault"); _harvest(tx.origin); // before withdrawal, call harvest, pass in argument of tx.origin } } // call harvest public function harvest() external virtual { _harvest(tx.origin); } // call harvest, param callFee, for frontend function harvest(address callFeeRecipient) external virtual { _harvest(callFeeRecipient); } // call harvest, manager function managerHarvest() external onlyManager { _harvest(tx.origin); } // compounds earnings and charges performance fee function _harvest(address callFeeRecipient) internal whenNotPaused { iMasterChefBeam(masterchef).deposit(poolId, 0); uint256 outputBal = IERC20(output).balanceOf(address(this)); if (outputBal > 0) { chargeFees(callFeeRecipient); addLiquidity(); uint256 wantHarvested = balanceOfWant(); deposit(); lastHarvest = block.timestamp; emit StratHarvest(msg.sender, wantHarvested, balanceOf()); } } // performance fees function chargeFees(address callFeeRecipient) internal { uint256 toOutput = IERC20(dualReward).balanceOf(address(this)); if (toOutput > 0) { IUniswapRouterETH(unirouter).swapExactTokensForTokens(toOutput, 0, dualRewardToOutputRoute, address(this), now.add(600)); } uint256 toWrapped = IERC20(output).balanceOf(address(this)).mul(42).div(1000); // wrapped amount 4.20% fees IUniswapRouterETH(unirouter).swapExactTokensForTokens(toWrapped, 0, outputToWrappedRoute, address(this), now.add(600)); uint256 wrappedBal = IERC20(wrapped).balanceOf(address(this)); uint256 callFeeAmount = wrappedBal.mul(callFee).div(MAX_FEE); // callFee amount = amount must go to the caller of the harvest function IERC20(wrapped).safeTransfer(callFeeRecipient, callFeeAmount); // send callFee amount to tx.origin uint256 astralFeeAmount = wrappedBal.mul(astralFee).div(MAX_FEE); // amount to send to feeRecipient for user rewards + ASTRAL buybacks IERC20(wrapped).safeTransfer(astralFeeRecipient, astralFeeAmount); uint256 treasuryFee = wrappedBal.mul(TREASURY_FEE).div(MAX_FEE); // ASTRAL protocol profit fee IERC20(wrapped).safeTransfer(treasury, treasuryFee); } // Adds liquidity to AMM and gets more LP tokens. function addLiquidity() internal { uint256 outputHalf = IERC20(output).balanceOf(address(this)).div(2); if (lpToken0 != output) { IUniswapRouterETH(unirouter).swapExactTokensForTokens(outputHalf, 0, outputToLp0Route, address(this), now); } if (lpToken1 != output) { IUniswapRouterETH(unirouter).swapExactTokensForTokens(outputHalf, 0, outputToLp1Route, address(this), now); } uint256 lp0Bal = IERC20(lpToken0).balanceOf(address(this)); uint256 lp1Bal = IERC20(lpToken1).balanceOf(address(this)); IUniswapRouterETH(unirouter).addLiquidity(lpToken0, lpToken1, lp0Bal, lp1Bal, 1, 1, address(this), now); } // it calculates how much 'rewardToken' the strategy is earning. function pendingRewards() public view returns (uint256) { uint256 _amount = iMasterChefBeam(masterchef).pendingTokens(poolId, address(this)); return _amount; } function dualRewardBal() external view returns (uint256) { uint256 _dualRewardBal = IERC20(dualReward).balanceOf(address(this)); return _dualRewardBal; } function outputBal() external view returns (uint256) { uint256 _outputBal = IERC20(output).balanceOf(address(this)); return _outputBal; } function lp0Bal() external view returns (uint256) { uint256 _lp0Bal = IERC20(lpToken0).balanceOf(address(this)); return _lp0Bal; } function lp1Bal() external view returns (uint256) { uint256 _lp1Bal = IERC20(lpToken1).balanceOf(address(this)); return _lp1Bal; } // it calculates how much 'want' this contract holds. function balanceOfWant() public view returns (uint256) { return IERC20(want).balanceOf(address(this)); } // it calculates how much 'want' the strategy has working in the farm. function balanceOfPool() public view returns (uint256) { (uint256 _amount, ) = iMasterChefBeam(masterchef).userInfo(poolId, address(this)); return _amount; } // calculate the total underlaying 'want' held by the strat. function balanceOf() public view returns (uint256) { return balanceOfWant().add(balanceOfPool()); } // native reward amount for calling harvest function callReward() public view returns (uint256) { uint256 outputPend = pendingRewards(); uint256 nativeOut; if (outputPend > 0) { try IUniswapRouterETH(unirouter).getAmountsOut(outputPend, outputToWrappedRoute) returns (uint256[] memory amountOut) { nativeOut = amountOut[amountOut.length -1]; } catch {} } return nativeOut.mul(42).div(1000).mul(callFee).div(MAX_FEE); } function setHarvestOnDeposit(bool _harvestOnDeposit) external onlyManager { harvestOnDeposit = _harvestOnDeposit; } function setHarvestOnWithdrawal(bool _harvestOnWithdrawal) external onlyManager { harvestOnWithdrawal = _harvestOnWithdrawal; } // called as part of strat migration. Sends all the available funds back to the vault. function retireStrat() external { require(msg.sender == vault, "!vault"); iMasterChefBeam(masterchef).emergencyWithdraw(poolId); uint256 wantBal = IERC20(want).balanceOf(address(this)); IERC20(want).safeTransfer(vault, wantBal); } // Converts dust tokens into output tokens, which will be reinvested on the next harvest(). function convertDust() external onlyManager { uint256 lpToken0Bal = IERC20(lpToken0).balanceOf(address(this)); uint256 lpToken1Bal = IERC20(lpToken1).balanceOf(address(this)); if (lpToken0Bal != 0) { IUniswapRouterETH(unirouter).swapExactTokensForTokens(lpToken0Bal, 0, lp0ToOutputRoute, address(this), now.add(600)); } if (lpToken1Bal != 0) { IUniswapRouterETH(unirouter).swapExactTokensForTokens(lpToken1Bal, 0, lp1ToOutputRoute, address(this), now.add(600)); } emit dustConverted(); } // pauses deposits and withdraws all funds from third party systems. function panic() external onlyManager { pause(); iMasterChefBeam(masterchef).emergencyWithdraw(poolId); emit panicking(); } function pause() public onlyManager { _pause(); _removeAllowances(); } function unpause() external onlyManager { _unpause(); _giveAllowances(); deposit(); } function _giveAllowances() internal { IERC20(want).safeApprove(masterchef, uint256(-1)); IERC20(output).safeApprove(unirouter, uint256(-1)); IERC20(lpToken0).safeApprove(unirouter, 0); IERC20(lpToken0).safeApprove(unirouter, uint256(-1)); IERC20(lpToken1).safeApprove(unirouter, 0); IERC20(lpToken1).safeApprove(unirouter, uint256(-1)); IERC20(dualReward).safeApprove(unirouter, 0); IERC20(dualReward).safeApprove(unirouter, uint256(-1)); } function _removeAllowances() internal { IERC20(want).safeApprove(masterchef, 0); IERC20(output).safeApprove(unirouter, 0); IERC20(lpToken0).safeApprove(unirouter, 0); IERC20(lpToken1).safeApprove(unirouter, 0); IERC20(dualReward).safeApprove(unirouter, 0); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_want","type":"address"},{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"address","name":"_vault","type":"address"},{"internalType":"address","name":"_unirouter","type":"address"},{"internalType":"address","name":"_keeper","type":"address"},{"internalType":"address","name":"_keeper2","type":"address"},{"internalType":"address","name":"_harvester","type":"address"},{"internalType":"address","name":"_treasury","type":"address"},{"internalType":"address","name":"_astralFeeRecipient","type":"address"},{"internalType":"address","name":"_dualReward","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"harvester","type":"address"},{"indexed":false,"internalType":"uint256","name":"wantHarvested","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"StratHarvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isHarvDep","type":"bool"},{"indexed":false,"internalType":"bool","name":"isHarvWith","type":"bool"}],"name":"autoHarvestSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"dualReward","type":"address"}],"name":"dualRewardSet","type":"event"},{"anonymous":false,"inputs":[],"name":"dustConverted","type":"event"},{"anonymous":false,"inputs":[],"name":"panicking","type":"event"},{"inputs":[],"name":"MAX_CALL_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREASURY_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_FEE_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"astralFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"astralFeeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfWant","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beforeDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"beforeWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"callFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"callReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"convertDust","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dualReward","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dualRewardBal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"dualRewardToOutputRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"callFeeRecipient","type":"address"}],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvestOnDeposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"harvestOnWithdrawal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"harvester","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"keeper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"keeper2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastHarvest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lp0Bal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lp0ToOutputRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lp1Bal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lp1ToOutputRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"managerHarvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"masterchef","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"output","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"outputBal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToLp0Route","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToLp1Route","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToWrappedRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"panic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retireStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_astralFeeRecipient","type":"address"}],"name":"setAstralFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_harvestOnDeposit","type":"bool"},{"internalType":"bool","name":"_harvestOnWithdrawal","type":"bool"}],"name":"setAutoHarvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setCallFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_dualReward","type":"address"}],"name":"setDualReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_harvestOnDeposit","type":"bool"}],"name":"setHarvestOnDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_harvestOnWithdrawal","type":"bool"}],"name":"setHarvestOnWithdrawal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_harvester","type":"address"}],"name":"setHarvester","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"setKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper2","type":"address"}],"name":"setKeeper2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setWithdrawalFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unirouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"want","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wrapped","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
6000600855606f600955610309600a5560c060405260008051602062004c26833981519152608090815260008051602062004bdc83398151915260a0526200004c90601290600262000b41565b5060408051808201909152600e546001600160a01b0316815260008051602062004c2683398151915260208201526200008a90601790600262000b41565b503480156200009857600080fd5b5060405162004c7c38038062004c7c8339818101604052610140811015620000bf57600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e08801516101008901516101209099015197989697959694959394929391929091858585858a8c87600062000115620005d3565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000805460ff60a01b19169055600180546001600160a01b03199081166001600160a01b03998a161790915560028054821697891697909717909655600380548716958816959095179094556004805486169387169390931783556005805486169287169290921790915560068054851691861691909117905560078054841692851692909217909155600e80548316858516179055600b80549092168d8416179182905560408051630dfe168160e01b815290519290931692630dfe16819281830192602092829003018186803b1580156200023b57600080fd5b505afa15801562000250573d6000803e3d6000fd5b505050506040513d60208110156200026757600080fd5b5051600c80546001600160a01b0319166001600160a01b03928316179055600b546040805163d21220a760e01b81529051919092169163d21220a7916004808301926020929190829003018186803b158015620002c357600080fd5b505afa158015620002d8573d6000803e3d6000fd5b505050506040513d6020811015620002ef57600080fd5b5051600d80546001600160a01b0319166001600160a01b03928316179055600f8a9055600c5460008051602062004bdc8339815191529116141562000376576040805180820190915260008051602062004c26833981519152815260008051602062004bdc83398151915260208201526200036f90601390600262000b41565b5062000443565b600c546001600160a01b031660008051602062004c268339815191521462000443576040805160608101825260008051602062004c26833981519152815260008051602062004bdc8339815191526020820152600c546001600160a01b031691810191909152620003ec90601390600362000b41565b5060408051606081018252600c546001600160a01b0316815260008051602062004bdc833981519152602082015260008051602062004c26833981519152918101919091526200044190601590600362000b41565b505b600d546001600160a01b031660008051602062004bdc8339815191521415620004ae576040805180820190915260008051602062004c26833981519152815260008051602062004bdc8339815191526020820152620004a790601490600262000b41565b506200057b565b600d546001600160a01b031660008051602062004c26833981519152146200057b576040805160608101825260008051602062004c26833981519152815260008051602062004bdc8339815191526020820152600d546001600160a01b0316918101919091526200052490601490600362000b41565b5060408051606081018252600d546001600160a01b0316815260008051602062004bdc833981519152602082015260008051602062004c26833981519152918101919091526200057990601690600362000b41565b505b60408051808201909152600e546001600160a01b0316815260008051602062004c268339815191526020820152620005b890601790600262000b41565b50620005c3620005d7565b5050505050505050505062000bcc565b3390565b600b5462000612906001600160a01b031673c6ca172fc8bdb803c5e12731109744fb0200587b60001962000756602090811b6200288d17901c565b600554620006499060008051602062004c26833981519152906001600160a01b031660001962000756602090811b6200288d17901c565b600554600c5462000675916001600160a01b039182169116600062000756602090811b6200288d17901c565b600554600c54620006a2916001600160a01b03918216911660001962000756602090811b6200288d17901c565b600554600d54620006ce916001600160a01b039182169116600062000756602090811b6200288d17901c565b600554600d54620006fb916001600160a01b03918216911660001962000756602090811b6200288d17901c565b600554600e5462000727916001600160a01b039182169116600062000756602090811b6200288d17901c565b600554600e5462000754916001600160a01b03918216911660001962000756602090811b6200288d17901c565b565b801580620007e0575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015620007b057600080fd5b505afa158015620007c5573d6000803e3d6000fd5b505050506040513d6020811015620007dc57600080fd5b5051155b6200081d5760405162461bcd60e51b815260040180806020018281038252603681526020018062004c466036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0390811663095ea7b360e01b17909152620008759185916200087a16565b505050565b6060620008d6826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166200093660201b620029a5179092919060201c565b8051909150156200087557808060200190516020811015620008f757600080fd5b5051620008755760405162461bcd60e51b815260040180806020018281038252602a81526020018062004bfc602a913960400191505060405180910390fd5b60606200094784846000856200094f565b949350505050565b60606200095c8562000b07565b620009ae576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310620009ef5780518252601f199092019160209182019101620009ce565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811462000a53576040519150601f19603f3d011682016040523d82523d6000602084013e62000a58565b606091505b5091509150811562000a6e579150620009479050565b80511562000a7f5780518082602001fd5b8360405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000acb57818101518382015260200162000ab1565b50505050905090810190601f16801562000af95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159062000947575050151592915050565b82805482825590600052602060002090810192821562000b99579160200282015b8281111562000b9957825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000b62565b5062000ba792915062000bab565b5090565b5b8082111562000ba75780546001600160a01b031916815560010162000bac565b6140008062000bdc6000396000f3fe608060405234801561001057600080fd5b50600436106104075760003560e01c8063722713f711610220578063cc52265411610130578063f10ce483116100b8578063fb1db27811610087578063fb1db27814610853578063fb6177871461085b578063fbfa77cf14610863578063fd63a8871461086b578063fd9e1a921461088857610407565b8063f10ce48314610815578063f1a392da1461081d578063f20eaeb814610825578063f2fde38b1461082d57610407565b8063d8a843d3116100ff578063d8a843d3146107cf578063dfbdc437146107d7578063e361999e146107df578063eded3fda146107e7578063f0f44260146107ef57610407565b8063cc522654146107af578063cd1ed20c146107b7578063d0e30db0146107bf578063d801d946146107c757610407565b806390321e1a116101b3578063aced166111610182578063aced166114610769578063b83b6a9814610771578063bc063e1a14610779578063c1a3d44c14610781578063c4d9f31d1461078957610407565b806390321e1a1461071f57806391c61b211461072757806397fd323d14610744578063ac1e50251461074c57610407565b80638912cb8b116101ef5780638912cb8b146106ff5780638bc7e8c4146107075780638ce1a4831461070f5780638da5cb5b1461071757610407565b8063722713f7146106c1578063748747e6146106c95780638456cb59146106ef578063877562b6146106f757610407565b80633e0dc34e1161031b578063548d099c116102ae57806361d027b31161027d57806361d027b3146106645780636817031b1461066c5780636a237abe146106925780636c33d247146106b1578063715018a6146106b957610407565b8063548d099c14610611578063573fef0a146106385780635c975abb146106405780635ee167c01461065c57610407565b80634700d305116102ea5780634700d305146105f15780634bdaeac1146105f957806350e70d481461060157806354518b1a1461060957610407565b80633e0dc34e146105d15780633f4ba83a146105d9578063419f7753146105e15780634641257d146105e957610407565b806315de1daa1161039e578063264658261161036d57806326465826146105555780632ad5a53f146105725780632e1a7d4d1461057a578063313adde11461059757806336c6cf21146105b457610407565b806315de1daa146105025780631d172127146105285780631f1fcd5114610545578063257ae0de1461054d57610407565b806311588086116103da578063115880861461049357806313e2bcda1461049b57806314c2ed50146104a35780631540b0bf146104dc57610407565b806305689bf81461040c57806305f68f1d146104345780630e5c011e1461044e5780630e8fbb5a14610474575b600080fd5b6104326004803603602081101561042257600080fd5b50356001600160a01b0316610890565b005b61043c610a55565b60408051918252519081900360200190f35b6104326004803603602081101561046457600080fd5b50356001600160a01b0316610ad7565b6104326004803603602081101561048a57600080fd5b50351515610ae3565b61043c610b8d565b61043c610c15565b6104c0600480360360208110156104b957600080fd5b5035610c6b565b604080516001600160a01b039092168252519081900360200190f35b610432600480360360208110156104f257600080fd5b50356001600160a01b0316610c92565b6104326004803603602081101561051857600080fd5b50356001600160a01b0316610d1e565b6104c06004803603602081101561053e57600080fd5b5035610dd7565b6104c0610de4565b6104c0610df3565b6104326004803603602081101561056b57600080fd5b5035610e02565b61043c610ee6565b6104326004803603602081101561059057600080fd5b5035610eeb565b6104c0600480360360208110156105ad57600080fd5b5035611178565b6104c0600480360360208110156105ca57600080fd5b5035611185565b61043c611192565b610432611198565b610432611249565b6104326112a1565b6104326112aa565b6104c06113e8565b6104c06113f7565b61043c61140f565b6104326004803603604081101561062757600080fd5b508035151590602001351515611415565b610432611518565b61064861156b565b604080519115158252519081900360200190f35b6104c061157b565b6104c061158a565b6104326004803603602081101561068257600080fd5b50356001600160a01b0316611599565b610432600480360360208110156106a857600080fd5b50351515611699565b61043261174a565b610432611c2e565b61043c611ce2565b610432600480360360208110156106df57600080fd5b50356001600160a01b0316611d02565b610432611d71565b6104c0611e18565b610648611e27565b61043c611e30565b61043c611e36565b6104c0611e3b565b61043c611e4a565b6104c06004803603602081101561073d57600080fd5b5035611e50565b61043c611e5d565b6104326004803603602081101561076257600080fd5b5035612029565b6104c0612104565b610648612113565b61043c612121565b61043c612127565b6104326004803603602081101561079f57600080fd5b50356001600160a01b03166121a3565b61043c612213565b6104c0612263565b610432612272565b6104326123fc565b6104c0612493565b61043c6124a2565b61043c6124a7565b61043c6124f7565b6104326004803603602081101561080557600080fd5b50356001600160a01b031661255a565b61043c6125c7565b61043c6125cd565b6104c06125d3565b6104326004803603602081101561084357600080fd5b50356001600160a01b03166125eb565b6104c06126f5565b61043261270d565b6104c0612862565b6104c06004803603602081101561088157600080fd5b5035612871565b6104c061287e565b610898611e3b565b6001600160a01b0316336001600160a01b031614806108c157506001546001600160a01b031633145b806108d657506002546001600160a01b031633145b806108eb57506003546001600160a01b031633145b610927576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600b546001600160a01b038281169116141561097e576040805162461bcd60e51b815260206004820152601160248201527036bab9ba1039b2ba103a37903a37b5b2b760791b604482015290519081900360640190fd5b600e80546001600160a01b0319166001600160a01b038381169190911791829055604080518082019091529116815273cd3b51d98478d53f4515a306be565c6eebef1d5860208201526109d5906017906002613e9f565b50600554600e546109f4916001600160a01b039182169116600061288d565b600554600e54610a13916001600160a01b03918216911660001961288d565b600e54604080516001600160a01b039092168252517f2619c71fd4343b49b756f87f8760eb16c92c02938ad7e247c0ecb18fd85b09719181900360200190a150565b600d54604080516370a0823160e01b8152306004820152905160009283926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015610aa557600080fd5b505afa158015610ab9573d6000803e3d6000fd5b505050506040513d6020811015610acf57600080fd5b505191505090565b610ae0816129bc565b50565b610aeb611e3b565b6001600160a01b0316336001600160a01b03161480610b1457506001546001600160a01b031633145b80610b2957506002546001600160a01b031633145b80610b3e57506003546001600160a01b031633145b610b7a576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6010805460ff1916911515919091179055565b600f54604080516393f1a40b60e01b815260048101929092523060248301528051600092839273c6ca172fc8bdb803c5e12731109744fb0200587b926393f1a40b926044808201939291829003018186803b158015610beb57600080fd5b505afa158015610bff573d6000803e3d6000fd5b505050506040513d6040811015610acf57600080fd5b604080516370a0823160e01b81523060048201529051600091829173cd3b51d98478d53f4515a306be565c6eebef1d58916370a08231916024808301926020929190829003018186803b158015610aa557600080fd5b60158181548110610c7857fe5b6000918252602090912001546001600160a01b0316905081565b610c9a612b86565b6000546001600160a01b03908116911614610cfc576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610d26611e3b565b6001600160a01b0316336001600160a01b03161480610d4f57506001546001600160a01b031633145b80610d6457506002546001600160a01b031633145b80610d7957506003546001600160a01b031633145b610db5576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b60128181548110610c7857fe5b600b546001600160a01b031681565b6005546001600160a01b031681565b610e0a611e3b565b6001600160a01b0316336001600160a01b03161480610e3357506001546001600160a01b031633145b80610e4857506002546001600160a01b031633145b80610e5d57506003546001600160a01b031633145b610e99576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b606f811115610ed8576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600981905561037803600a55565b606f81565b6006546001600160a01b03163314610f33576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610f7e57600080fd5b505afa158015610f92573d6000803e3d6000fd5b505050506040513d6020811015610fa857600080fd5b50519050818110156110ac57600f5473c6ca172fc8bdb803c5e12731109744fb0200587b9063441a3e7090610fdd8585612b8a565b6040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b15801561101a57600080fd5b505af115801561102e573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b815230600482015290516001600160a01b0390921693506370a082319250602480820192602092909190829003018186803b15801561107d57600080fd5b505afa158015611091573d6000803e3d6000fd5b505050506040513d60208110156110a757600080fd5b505190505b818111156110b75750805b6110bf611e3b565b6001600160a01b0316326001600160a01b0316141580156110e557506110e361156b565b155b1561111d57600061110d61271061110760085485612bd590919063ffffffff16565b90612c2e565b90506111198282612b8a565b9150505b600654600b5461113a916001600160a01b03918216911683612c70565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d611163611ce2565b60408051918252519081900360200190a15050565b60168181548110610c7857fe5b60138181548110610c7857fe5b600f5481565b6111a0611e3b565b6001600160a01b0316336001600160a01b031614806111c957506001546001600160a01b031633145b806111de57506002546001600160a01b031633145b806111f357506003546001600160a01b031633145b61122f576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b611237612cc2565b61123f612d6a565b611247612272565b565b601054610100900460ff1615611247576006546001600160a01b031633146112a1576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b611247326129bc565b6112b2611e3b565b6001600160a01b0316336001600160a01b031614806112db57506001546001600160a01b031633145b806112f057506002546001600160a01b031633145b8061130557506003546001600160a01b031633145b611341576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b611349611d71565b73c6ca172fc8bdb803c5e12731109744fb0200587b6001600160a01b0316635312ea8e600f546040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156113a557600080fd5b505af11580156113b9573d6000803e3d6000fd5b50506040517f4a96f8c20dd7c086bee57b6a39fe6d0f8fa0d27c970fd6bd73012b527a55b960925060009150a1565b6003546001600160a01b031681565b73acc15dc74880c9944775448304b263d191c6077f81565b61271081565b61141d611e3b565b6001600160a01b0316336001600160a01b0316148061144657506001546001600160a01b031633145b8061145b57506002546001600160a01b031633145b8061147057506003546001600160a01b031633145b6114ac576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6010805460ff19168315151761ff001916610100831515810291909117918290556040805160ff80851615158252929093049091161515602083015280517f6c13e52575f6bd9e9cbfae67f2be6fd92da686b2bdc55df4245d699434d876349281900390910190a15050565b60105460ff1615611247576006546001600160a01b031633146112a1576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600054600160a01b900460ff1690565b600c546001600160a01b031681565b6004546001600160a01b031681565b6115a1611e3b565b6001600160a01b0316336001600160a01b031614806115ca57506001546001600160a01b031633145b806115df57506002546001600160a01b031633145b806115f457506003546001600160a01b031633145b611630576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6006546001600160a01b031615611677576040805162461bcd60e51b815260206004808301919091526024820152636e6f706560e01b604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6116a1611e3b565b6001600160a01b0316336001600160a01b031614806116ca57506001546001600160a01b031633145b806116df57506002546001600160a01b031633145b806116f457506003546001600160a01b031633145b611730576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b601080549115156101000261ff0019909216919091179055565b611752611e3b565b6001600160a01b0316336001600160a01b0316148061177b57506001546001600160a01b031633145b8061179057506002546001600160a01b031633145b806117a557506003546001600160a01b031633145b6117e1576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561182c57600080fd5b505afa158015611840573d6000803e3d6000fd5b505050506040513d602081101561185657600080fd5b5051600d54604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156118a957600080fd5b505afa1580156118bd573d6000803e3d6000fd5b505050506040513d60208110156118d357600080fd5b505190508115611a6c576005546001600160a01b03166338ed173983600060153061190042610258612e7c565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818154815260200191508054801561197f57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611961575b50509650505050505050600060405180830381600087803b1580156119a357600080fd5b505af11580156119b7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156119e057600080fd5b8101908080516040519392919084600160201b8211156119ff57600080fd5b908301906020820185811115611a1457600080fd5b82518660208202830111600160201b82111715611a3057600080fd5b82525081516020918201928201910280838360005b83811015611a5d578181015183820152602001611a45565b50505050905001604052505050505b8015611c01576005546001600160a01b03166338ed1739826000601630611a9542610258612e7c565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b031681526020018381526020018281038252858181548152602001915080548015611b1457602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611af6575b50509650505050505050600060405180830381600087803b158015611b3857600080fd5b505af1158015611b4c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611b7557600080fd5b8101908080516040519392919084600160201b821115611b9457600080fd5b908301906020820185811115611ba957600080fd5b82518660208202830111600160201b82111715611bc557600080fd5b82525081516020918201928201910280838360005b83811015611bf2578181015183820152602001611bda565b50505050905001604052505050505b6040517f675266e8e1b7f576592cbaff271475ae9596de248953f05a62b1f23878c8207590600090a15050565b611c36612b86565b6000546001600160a01b03908116911614611c98576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000611cfd611cef610b8d565b611cf7612127565b90612e7c565b905090565b6001546001600160a01b03163314611d4f576040805162461bcd60e51b815260206004820152600b60248201526a214e6f744b65657065722160a81b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b611d79611e3b565b6001600160a01b0316336001600160a01b03161480611da257506001546001600160a01b031633145b80611db757506002546001600160a01b031633145b80611dcc57506003546001600160a01b031633145b611e08576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b611e10612ed6565b611247612f64565b600d546001600160a01b031681565b60105460ff1681565b60085481565b607081565b6000546001600160a01b031690565b60095481565b60178181548110610c7857fe5b600080611e686124f7565b905060008115611ff6576005546040805163d06ca61f60e01b8152600481018581526024820192835260128054604484018190526001600160a01b039095169463d06ca61f948894929392909160649091019084908015611ef257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611ed4575b5050935050505060006040518083038186803b158015611f1157600080fd5b505afa925050508015611fd157506040513d6000823e601f3d908101601f191682016040526020811015611f4457600080fd5b8101908080516040519392919084600160201b821115611f6357600080fd5b908301906020820185811115611f7857600080fd5b82518660208202830111600160201b82111715611f9457600080fd5b82525081516020918201928201910280838360005b83811015611fc1578181015183820152602001611fa9565b5050505090500160405250505060015b611fda57611ff6565b80600182510381518110611fea57fe5b60200260200101519150505b6120226103e861110760095461201c6103e8611107602a88612bd590919063ffffffff16565b90612bd5565b9250505090565b612031611e3b565b6001600160a01b0316336001600160a01b0316148061205a57506001546001600160a01b031633145b8061206f57506002546001600160a01b031633145b8061208457506003546001600160a01b031633145b6120c0576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b60328111156120ff576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600855565b6001546001600160a01b031681565b601054610100900460ff1681565b6103e881565b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561217257600080fd5b505afa158015612186573d6000803e3d6000fd5b505050506040513d602081101561219c57600080fd5b5051905090565b6002546001600160a01b031633146121f1576040805162461bcd60e51b815260206004820152600c60248201526b214e6f744b6565706572322160a01b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b600c54604080516370a0823160e01b8152306004820152905160009283926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015610aa557600080fd5b6002546001600160a01b031681565b600054600160a01b900460ff16156122c4576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561230f57600080fd5b505afa158015612323573d6000803e3d6000fd5b505050506040513d602081101561233957600080fd5b505190508015610ae05773c6ca172fc8bdb803c5e12731109744fb0200587b6001600160a01b031663e2bbb158600f54836040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b1580156123a757600080fd5b505af11580156123bb573d6000803e3d6000fd5b505050507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e384266123e8611ce2565b60408051918252519081900360200190a150565b612404611e3b565b6001600160a01b0316336001600160a01b0316148061242d57506001546001600160a01b031633145b8061244257506002546001600160a01b031633145b8061245757506003546001600160a01b031633145b6112a1576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600e546001600160a01b031681565b603281565b600e54604080516370a0823160e01b8152306004820152905160009283926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015610aa557600080fd5b600f546040805160016232bd9d60e01b03198152600481019290925230602483015251600091829173c6ca172fc8bdb803c5e12731109744fb0200587b9163ffcd4263916044808301926020929190829003018186803b158015610aa557600080fd5b6004546001600160a01b031633146125a5576040805162461bcd60e51b815260206004820152600960248201526821747265617375727960b81b604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b600a5481565b60115481565b73cd3b51d98478d53f4515a306be565c6eebef1d5881565b6125f3612b86565b6000546001600160a01b03908116911614612655576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661269a5760405162461bcd60e51b8152600401808060200182810382526026815260200180613f246026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b73c6ca172fc8bdb803c5e12731109744fb0200587b81565b6006546001600160a01b03163314612755576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b73c6ca172fc8bdb803c5e12731109744fb0200587b6001600160a01b0316635312ea8e600f546040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156127b157600080fd5b505af11580156127c5573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b15801561281657600080fd5b505afa15801561282a573d6000803e3d6000fd5b505050506040513d602081101561284057600080fd5b5051600654600b54919250610ae0916001600160a01b03908116911683612c70565b6006546001600160a01b031681565b60148181548110610c7857fe5b6007546001600160a01b031681565b801580612913575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156128e557600080fd5b505afa1580156128f9573d6000803e3d6000fd5b505050506040513d602081101561290f57600080fd5b5051155b61294e5760405162461bcd60e51b8152600401808060200182810382526036815260200180613f956036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526129a0908490613017565b505050565b60606129b484846000856130c8565b949350505050565b600054600160a01b900460ff1615612a0e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b73c6ca172fc8bdb803c5e12731109744fb0200587b6001600160a01b031663e2bbb158600f5460006040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b158015612a7357600080fd5b505af1158015612a87573d6000803e3d6000fd5b5050604080516370a0823160e01b815230600482015290516000935073cd3b51d98478d53f4515a306be565c6eebef1d5892506370a0823191602480820192602092909190829003018186803b158015612ae057600080fd5b505afa158015612af4573d6000803e3d6000fd5b505050506040513d6020811015612b0a57600080fd5b505190508015612b8257612b1d82613273565b612b25613805565b6000612b2f612127565b9050612b39612272565b42601155337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f9241082612b68611ce2565b6040805192835260208301919091528051918290030190a2505b5050565b3390565b6000612bcc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613da7565b90505b92915050565b600082612be457506000612bcf565b82820282848281612bf157fe5b0414612bcc5760405162461bcd60e51b8152600401808060200182810382526021815260200180613f4a6021913960400191505060405180910390fd5b6000612bcc83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613e01565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526129a0908490613017565b600054600160a01b900460ff16612d17576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612d4d612b86565b604080516001600160a01b039092168252519081900360200190a1565b600b54612d97906001600160a01b031673c6ca172fc8bdb803c5e12731109744fb0200587b60001961288d565b600554612dc59073cd3b51d98478d53f4515a306be565c6eebef1d58906001600160a01b031660001961288d565b600554600c54612de3916001600160a01b039182169116600061288d565b600554600c54612e02916001600160a01b03918216911660001961288d565b600554600d54612e20916001600160a01b039182169116600061288d565b600554600d54612e3f916001600160a01b03918216911660001961288d565b600554600e54612e5d916001600160a01b039182169116600061288d565b600554600e54611247916001600160a01b03918216911660001961288d565b600082820183811015612bcc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600054600160a01b900460ff1615612f28576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612d4d612b86565b600b54612f90906001600160a01b031673c6ca172fc8bdb803c5e12731109744fb0200587b600061288d565b600554612fbd9073cd3b51d98478d53f4515a306be565c6eebef1d58906001600160a01b0316600061288d565b600554600c54612fdb916001600160a01b039182169116600061288d565b600554600d54612ff9916001600160a01b039182169116600061288d565b600554600e54611247916001600160a01b039182169116600061288d565b606061306c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166129a59092919063ffffffff16565b8051909150156129a05780806020019051602081101561308b57600080fd5b50516129a05760405162461bcd60e51b815260040180806020018281038252602a815260200180613f6b602a913960400191505060405180910390fd5b60606130d385613e66565b613124576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106131635780518252601f199092019160209182019101613144565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146131c5576040519150601f19603f3d011682016040523d82523d6000602084013e6131ca565b606091505b509150915081156131de5791506129b49050565b8051156131ee5780518082602001fd5b8360405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613238578181015183820152602001613220565b50505050905090810190601f1680156132655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b600e54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156132be57600080fd5b505afa1580156132d2573d6000803e3d6000fd5b505050506040513d60208110156132e857600080fd5b505190508015613481576005546001600160a01b03166338ed173982600060173061331542610258612e7c565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818154815260200191508054801561339457602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311613376575b50509650505050505050600060405180830381600087803b1580156133b857600080fd5b505af11580156133cc573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156133f557600080fd5b8101908080516040519392919084600160201b82111561341457600080fd5b90830190602082018581111561342957600080fd5b82518660208202830111600160201b8211171561344557600080fd5b82525081516020918201928201910280838360005b8381101561347257818101518382015260200161345a565b50505050905001604052505050505b60006135216103e8611107602a73cd3b51d98478d53f4515a306be565c6eebef1d586001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156134ef57600080fd5b505afa158015613503573d6000803e3d6000fd5b505050506040513d602081101561351957600080fd5b505190612bd5565b6005549091506001600160a01b03166338ed173982600060123061354742610258612e7c565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b0316815260200183815260200182810382528581815481526020019150805480156135c657602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116135a8575b50509650505050505050600060405180830381600087803b1580156135ea57600080fd5b505af11580156135fe573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561362757600080fd5b8101908080516040519392919084600160201b82111561364657600080fd5b90830190602082018581111561365b57600080fd5b82518660208202830111600160201b8211171561367757600080fd5b82525081516020918201928201910280838360005b838110156136a457818101518382015260200161368c565b505050509190910160408181526370a0823160e01b8252306004830152516000965073acc15dc74880c9944775448304b263d191c6077f95506370a08231945060248083019450602093509091829003018186803b15801561370557600080fd5b505afa158015613719573d6000803e3d6000fd5b505050506040513d602081101561372f57600080fd5b505160095490915060009061374d906103e890611107908590612bd5565b905061376e73acc15dc74880c9944775448304b263d191c6077f8683612c70565b600061378b6103e8611107600a5486612bd590919063ffffffff16565b6007549091506137ba9073acc15dc74880c9944775448304b263d191c6077f906001600160a01b031683612c70565b60006137cd6103e8611107866070612bd5565b6004549091506137fc9073acc15dc74880c9944775448304b263d191c6077f906001600160a01b031683612c70565b50505050505050565b600061389f600273cd3b51d98478d53f4515a306be565c6eebef1d586001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561386d57600080fd5b505afa158015613881573d6000803e3d6000fd5b505050506040513d602081101561389757600080fd5b505190612c2e565b600c549091506001600160a01b031673cd3b51d98478d53f4515a306be565c6eebef1d5814613a4f576005546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526013805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c4909101908690801561396257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311613944575b50509650505050505050600060405180830381600087803b15801561398657600080fd5b505af115801561399a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156139c357600080fd5b8101908080516040519392919084600160201b8211156139e257600080fd5b9083019060208201858111156139f757600080fd5b82518660208202830111600160201b82111715613a1357600080fd5b82525081516020918201928201910280838360005b83811015613a40578181015183820152602001613a28565b50505050905001604052505050505b600d546001600160a01b031673cd3b51d98478d53f4515a306be565c6eebef1d5814613bfc576005546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526014805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c49091019086908015613b0f57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311613af1575b50509650505050505050600060405180830381600087803b158015613b3357600080fd5b505af1158015613b47573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015613b7057600080fd5b8101908080516040519392919084600160201b821115613b8f57600080fd5b908301906020820185811115613ba457600080fd5b82518660208202830111600160201b82111715613bc057600080fd5b82525081516020918201928201910280838360005b83811015613bed578181015183820152602001613bd5565b50505050905001604052505050505b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015613c4757600080fd5b505afa158015613c5b573d6000803e3d6000fd5b505050506040513d6020811015613c7157600080fd5b5051600d54604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015613cc457600080fd5b505afa158015613cd8573d6000803e3d6000fd5b505050506040513d6020811015613cee57600080fd5b5051600554600c54600d546040805162e8e33760e81b81526001600160a01b0393841660048201529183166024830152604482018790526064820185905260016084830181905260a48301523060c48301524260e48301525193945091169163e8e3370091610104808201926060929091908290030181600087803b158015613d7657600080fd5b505af1158015613d8a573d6000803e3d6000fd5b505050506040513d6060811015613da057600080fd5b5050505050565b60008184841115613df95760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613238578181015183820152602001613220565b505050900390565b60008183613e505760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613238578181015183820152602001613220565b506000838581613e5c57fe5b0495945050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906129b4575050151592915050565b828054828255906000526020600020908101928215613ef4579160200282015b82811115613ef457825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190613ebf565b50613f00929150613f04565b5090565b5b80821115613f005780546001600160a01b0319168155600101613f0556fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a2646970667358221220b3f239b0f98bd27e5cfd572893839d083fa2458a818b64b2dec44ab9224d304a64736f6c634300060c0033000000000000000000000000acc15dc74880c9944775448304b263d191c6077f5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564000000000000000000000000cd3b51d98478d53f4515a306be565c6eebef1d585361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000000099588867e817023162f4d4829995299054a5fc570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000096b244391d98b62d19ae89b1a4dccf0fc56970c7000000000000000000000000693609b8711045e0a18eba90abfa2315a5cb6e430000000000000000000000005bb2602b7dc21b00955a0845883abecbf3cb05b8000000000000000000000000db9422a26798702f09d197863ba40620b0a289e3000000000000000000000000200c3948ce0e50d49a7ecfa1d03fcda122e02869000000000000000000000000e86cfc82f347b2fc55ecdda24fdc0e5534fc326f0000000000000000000000004204cad97732282d261fbb7088e07557810a6408
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106104075760003560e01c8063722713f711610220578063cc52265411610130578063f10ce483116100b8578063fb1db27811610087578063fb1db27814610853578063fb6177871461085b578063fbfa77cf14610863578063fd63a8871461086b578063fd9e1a921461088857610407565b8063f10ce48314610815578063f1a392da1461081d578063f20eaeb814610825578063f2fde38b1461082d57610407565b8063d8a843d3116100ff578063d8a843d3146107cf578063dfbdc437146107d7578063e361999e146107df578063eded3fda146107e7578063f0f44260146107ef57610407565b8063cc522654146107af578063cd1ed20c146107b7578063d0e30db0146107bf578063d801d946146107c757610407565b806390321e1a116101b3578063aced166111610182578063aced166114610769578063b83b6a9814610771578063bc063e1a14610779578063c1a3d44c14610781578063c4d9f31d1461078957610407565b806390321e1a1461071f57806391c61b211461072757806397fd323d14610744578063ac1e50251461074c57610407565b80638912cb8b116101ef5780638912cb8b146106ff5780638bc7e8c4146107075780638ce1a4831461070f5780638da5cb5b1461071757610407565b8063722713f7146106c1578063748747e6146106c95780638456cb59146106ef578063877562b6146106f757610407565b80633e0dc34e1161031b578063548d099c116102ae57806361d027b31161027d57806361d027b3146106645780636817031b1461066c5780636a237abe146106925780636c33d247146106b1578063715018a6146106b957610407565b8063548d099c14610611578063573fef0a146106385780635c975abb146106405780635ee167c01461065c57610407565b80634700d305116102ea5780634700d305146105f15780634bdaeac1146105f957806350e70d481461060157806354518b1a1461060957610407565b80633e0dc34e146105d15780633f4ba83a146105d9578063419f7753146105e15780634641257d146105e957610407565b806315de1daa1161039e578063264658261161036d57806326465826146105555780632ad5a53f146105725780632e1a7d4d1461057a578063313adde11461059757806336c6cf21146105b457610407565b806315de1daa146105025780631d172127146105285780631f1fcd5114610545578063257ae0de1461054d57610407565b806311588086116103da578063115880861461049357806313e2bcda1461049b57806314c2ed50146104a35780631540b0bf146104dc57610407565b806305689bf81461040c57806305f68f1d146104345780630e5c011e1461044e5780630e8fbb5a14610474575b600080fd5b6104326004803603602081101561042257600080fd5b50356001600160a01b0316610890565b005b61043c610a55565b60408051918252519081900360200190f35b6104326004803603602081101561046457600080fd5b50356001600160a01b0316610ad7565b6104326004803603602081101561048a57600080fd5b50351515610ae3565b61043c610b8d565b61043c610c15565b6104c0600480360360208110156104b957600080fd5b5035610c6b565b604080516001600160a01b039092168252519081900360200190f35b610432600480360360208110156104f257600080fd5b50356001600160a01b0316610c92565b6104326004803603602081101561051857600080fd5b50356001600160a01b0316610d1e565b6104c06004803603602081101561053e57600080fd5b5035610dd7565b6104c0610de4565b6104c0610df3565b6104326004803603602081101561056b57600080fd5b5035610e02565b61043c610ee6565b6104326004803603602081101561059057600080fd5b5035610eeb565b6104c0600480360360208110156105ad57600080fd5b5035611178565b6104c0600480360360208110156105ca57600080fd5b5035611185565b61043c611192565b610432611198565b610432611249565b6104326112a1565b6104326112aa565b6104c06113e8565b6104c06113f7565b61043c61140f565b6104326004803603604081101561062757600080fd5b508035151590602001351515611415565b610432611518565b61064861156b565b604080519115158252519081900360200190f35b6104c061157b565b6104c061158a565b6104326004803603602081101561068257600080fd5b50356001600160a01b0316611599565b610432600480360360208110156106a857600080fd5b50351515611699565b61043261174a565b610432611c2e565b61043c611ce2565b610432600480360360208110156106df57600080fd5b50356001600160a01b0316611d02565b610432611d71565b6104c0611e18565b610648611e27565b61043c611e30565b61043c611e36565b6104c0611e3b565b61043c611e4a565b6104c06004803603602081101561073d57600080fd5b5035611e50565b61043c611e5d565b6104326004803603602081101561076257600080fd5b5035612029565b6104c0612104565b610648612113565b61043c612121565b61043c612127565b6104326004803603602081101561079f57600080fd5b50356001600160a01b03166121a3565b61043c612213565b6104c0612263565b610432612272565b6104326123fc565b6104c0612493565b61043c6124a2565b61043c6124a7565b61043c6124f7565b6104326004803603602081101561080557600080fd5b50356001600160a01b031661255a565b61043c6125c7565b61043c6125cd565b6104c06125d3565b6104326004803603602081101561084357600080fd5b50356001600160a01b03166125eb565b6104c06126f5565b61043261270d565b6104c0612862565b6104c06004803603602081101561088157600080fd5b5035612871565b6104c061287e565b610898611e3b565b6001600160a01b0316336001600160a01b031614806108c157506001546001600160a01b031633145b806108d657506002546001600160a01b031633145b806108eb57506003546001600160a01b031633145b610927576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600b546001600160a01b038281169116141561097e576040805162461bcd60e51b815260206004820152601160248201527036bab9ba1039b2ba103a37903a37b5b2b760791b604482015290519081900360640190fd5b600e80546001600160a01b0319166001600160a01b038381169190911791829055604080518082019091529116815273cd3b51d98478d53f4515a306be565c6eebef1d5860208201526109d5906017906002613e9f565b50600554600e546109f4916001600160a01b039182169116600061288d565b600554600e54610a13916001600160a01b03918216911660001961288d565b600e54604080516001600160a01b039092168252517f2619c71fd4343b49b756f87f8760eb16c92c02938ad7e247c0ecb18fd85b09719181900360200190a150565b600d54604080516370a0823160e01b8152306004820152905160009283926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015610aa557600080fd5b505afa158015610ab9573d6000803e3d6000fd5b505050506040513d6020811015610acf57600080fd5b505191505090565b610ae0816129bc565b50565b610aeb611e3b565b6001600160a01b0316336001600160a01b03161480610b1457506001546001600160a01b031633145b80610b2957506002546001600160a01b031633145b80610b3e57506003546001600160a01b031633145b610b7a576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6010805460ff1916911515919091179055565b600f54604080516393f1a40b60e01b815260048101929092523060248301528051600092839273c6ca172fc8bdb803c5e12731109744fb0200587b926393f1a40b926044808201939291829003018186803b158015610beb57600080fd5b505afa158015610bff573d6000803e3d6000fd5b505050506040513d6040811015610acf57600080fd5b604080516370a0823160e01b81523060048201529051600091829173cd3b51d98478d53f4515a306be565c6eebef1d58916370a08231916024808301926020929190829003018186803b158015610aa557600080fd5b60158181548110610c7857fe5b6000918252602090912001546001600160a01b0316905081565b610c9a612b86565b6000546001600160a01b03908116911614610cfc576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610d26611e3b565b6001600160a01b0316336001600160a01b03161480610d4f57506001546001600160a01b031633145b80610d6457506002546001600160a01b031633145b80610d7957506003546001600160a01b031633145b610db5576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b60128181548110610c7857fe5b600b546001600160a01b031681565b6005546001600160a01b031681565b610e0a611e3b565b6001600160a01b0316336001600160a01b03161480610e3357506001546001600160a01b031633145b80610e4857506002546001600160a01b031633145b80610e5d57506003546001600160a01b031633145b610e99576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b606f811115610ed8576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600981905561037803600a55565b606f81565b6006546001600160a01b03163314610f33576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610f7e57600080fd5b505afa158015610f92573d6000803e3d6000fd5b505050506040513d6020811015610fa857600080fd5b50519050818110156110ac57600f5473c6ca172fc8bdb803c5e12731109744fb0200587b9063441a3e7090610fdd8585612b8a565b6040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b15801561101a57600080fd5b505af115801561102e573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b815230600482015290516001600160a01b0390921693506370a082319250602480820192602092909190829003018186803b15801561107d57600080fd5b505afa158015611091573d6000803e3d6000fd5b505050506040513d60208110156110a757600080fd5b505190505b818111156110b75750805b6110bf611e3b565b6001600160a01b0316326001600160a01b0316141580156110e557506110e361156b565b155b1561111d57600061110d61271061110760085485612bd590919063ffffffff16565b90612c2e565b90506111198282612b8a565b9150505b600654600b5461113a916001600160a01b03918216911683612c70565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d611163611ce2565b60408051918252519081900360200190a15050565b60168181548110610c7857fe5b60138181548110610c7857fe5b600f5481565b6111a0611e3b565b6001600160a01b0316336001600160a01b031614806111c957506001546001600160a01b031633145b806111de57506002546001600160a01b031633145b806111f357506003546001600160a01b031633145b61122f576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b611237612cc2565b61123f612d6a565b611247612272565b565b601054610100900460ff1615611247576006546001600160a01b031633146112a1576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b611247326129bc565b6112b2611e3b565b6001600160a01b0316336001600160a01b031614806112db57506001546001600160a01b031633145b806112f057506002546001600160a01b031633145b8061130557506003546001600160a01b031633145b611341576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b611349611d71565b73c6ca172fc8bdb803c5e12731109744fb0200587b6001600160a01b0316635312ea8e600f546040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156113a557600080fd5b505af11580156113b9573d6000803e3d6000fd5b50506040517f4a96f8c20dd7c086bee57b6a39fe6d0f8fa0d27c970fd6bd73012b527a55b960925060009150a1565b6003546001600160a01b031681565b73acc15dc74880c9944775448304b263d191c6077f81565b61271081565b61141d611e3b565b6001600160a01b0316336001600160a01b0316148061144657506001546001600160a01b031633145b8061145b57506002546001600160a01b031633145b8061147057506003546001600160a01b031633145b6114ac576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6010805460ff19168315151761ff001916610100831515810291909117918290556040805160ff80851615158252929093049091161515602083015280517f6c13e52575f6bd9e9cbfae67f2be6fd92da686b2bdc55df4245d699434d876349281900390910190a15050565b60105460ff1615611247576006546001600160a01b031633146112a1576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600054600160a01b900460ff1690565b600c546001600160a01b031681565b6004546001600160a01b031681565b6115a1611e3b565b6001600160a01b0316336001600160a01b031614806115ca57506001546001600160a01b031633145b806115df57506002546001600160a01b031633145b806115f457506003546001600160a01b031633145b611630576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6006546001600160a01b031615611677576040805162461bcd60e51b815260206004808301919091526024820152636e6f706560e01b604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6116a1611e3b565b6001600160a01b0316336001600160a01b031614806116ca57506001546001600160a01b031633145b806116df57506002546001600160a01b031633145b806116f457506003546001600160a01b031633145b611730576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b601080549115156101000261ff0019909216919091179055565b611752611e3b565b6001600160a01b0316336001600160a01b0316148061177b57506001546001600160a01b031633145b8061179057506002546001600160a01b031633145b806117a557506003546001600160a01b031633145b6117e1576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561182c57600080fd5b505afa158015611840573d6000803e3d6000fd5b505050506040513d602081101561185657600080fd5b5051600d54604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156118a957600080fd5b505afa1580156118bd573d6000803e3d6000fd5b505050506040513d60208110156118d357600080fd5b505190508115611a6c576005546001600160a01b03166338ed173983600060153061190042610258612e7c565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818154815260200191508054801561197f57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611961575b50509650505050505050600060405180830381600087803b1580156119a357600080fd5b505af11580156119b7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156119e057600080fd5b8101908080516040519392919084600160201b8211156119ff57600080fd5b908301906020820185811115611a1457600080fd5b82518660208202830111600160201b82111715611a3057600080fd5b82525081516020918201928201910280838360005b83811015611a5d578181015183820152602001611a45565b50505050905001604052505050505b8015611c01576005546001600160a01b03166338ed1739826000601630611a9542610258612e7c565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b031681526020018381526020018281038252858181548152602001915080548015611b1457602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611af6575b50509650505050505050600060405180830381600087803b158015611b3857600080fd5b505af1158015611b4c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611b7557600080fd5b8101908080516040519392919084600160201b821115611b9457600080fd5b908301906020820185811115611ba957600080fd5b82518660208202830111600160201b82111715611bc557600080fd5b82525081516020918201928201910280838360005b83811015611bf2578181015183820152602001611bda565b50505050905001604052505050505b6040517f675266e8e1b7f576592cbaff271475ae9596de248953f05a62b1f23878c8207590600090a15050565b611c36612b86565b6000546001600160a01b03908116911614611c98576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000611cfd611cef610b8d565b611cf7612127565b90612e7c565b905090565b6001546001600160a01b03163314611d4f576040805162461bcd60e51b815260206004820152600b60248201526a214e6f744b65657065722160a81b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b611d79611e3b565b6001600160a01b0316336001600160a01b03161480611da257506001546001600160a01b031633145b80611db757506002546001600160a01b031633145b80611dcc57506003546001600160a01b031633145b611e08576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b611e10612ed6565b611247612f64565b600d546001600160a01b031681565b60105460ff1681565b60085481565b607081565b6000546001600160a01b031690565b60095481565b60178181548110610c7857fe5b600080611e686124f7565b905060008115611ff6576005546040805163d06ca61f60e01b8152600481018581526024820192835260128054604484018190526001600160a01b039095169463d06ca61f948894929392909160649091019084908015611ef257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611ed4575b5050935050505060006040518083038186803b158015611f1157600080fd5b505afa925050508015611fd157506040513d6000823e601f3d908101601f191682016040526020811015611f4457600080fd5b8101908080516040519392919084600160201b821115611f6357600080fd5b908301906020820185811115611f7857600080fd5b82518660208202830111600160201b82111715611f9457600080fd5b82525081516020918201928201910280838360005b83811015611fc1578181015183820152602001611fa9565b5050505090500160405250505060015b611fda57611ff6565b80600182510381518110611fea57fe5b60200260200101519150505b6120226103e861110760095461201c6103e8611107602a88612bd590919063ffffffff16565b90612bd5565b9250505090565b612031611e3b565b6001600160a01b0316336001600160a01b0316148061205a57506001546001600160a01b031633145b8061206f57506002546001600160a01b031633145b8061208457506003546001600160a01b031633145b6120c0576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b60328111156120ff576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600855565b6001546001600160a01b031681565b601054610100900460ff1681565b6103e881565b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561217257600080fd5b505afa158015612186573d6000803e3d6000fd5b505050506040513d602081101561219c57600080fd5b5051905090565b6002546001600160a01b031633146121f1576040805162461bcd60e51b815260206004820152600c60248201526b214e6f744b6565706572322160a01b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b600c54604080516370a0823160e01b8152306004820152905160009283926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015610aa557600080fd5b6002546001600160a01b031681565b600054600160a01b900460ff16156122c4576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561230f57600080fd5b505afa158015612323573d6000803e3d6000fd5b505050506040513d602081101561233957600080fd5b505190508015610ae05773c6ca172fc8bdb803c5e12731109744fb0200587b6001600160a01b031663e2bbb158600f54836040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b1580156123a757600080fd5b505af11580156123bb573d6000803e3d6000fd5b505050507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e384266123e8611ce2565b60408051918252519081900360200190a150565b612404611e3b565b6001600160a01b0316336001600160a01b0316148061242d57506001546001600160a01b031633145b8061244257506002546001600160a01b031633145b8061245757506003546001600160a01b031633145b6112a1576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600e546001600160a01b031681565b603281565b600e54604080516370a0823160e01b8152306004820152905160009283926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015610aa557600080fd5b600f546040805160016232bd9d60e01b03198152600481019290925230602483015251600091829173c6ca172fc8bdb803c5e12731109744fb0200587b9163ffcd4263916044808301926020929190829003018186803b158015610aa557600080fd5b6004546001600160a01b031633146125a5576040805162461bcd60e51b815260206004820152600960248201526821747265617375727960b81b604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b600a5481565b60115481565b73cd3b51d98478d53f4515a306be565c6eebef1d5881565b6125f3612b86565b6000546001600160a01b03908116911614612655576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661269a5760405162461bcd60e51b8152600401808060200182810382526026815260200180613f246026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b73c6ca172fc8bdb803c5e12731109744fb0200587b81565b6006546001600160a01b03163314612755576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b73c6ca172fc8bdb803c5e12731109744fb0200587b6001600160a01b0316635312ea8e600f546040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156127b157600080fd5b505af11580156127c5573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b15801561281657600080fd5b505afa15801561282a573d6000803e3d6000fd5b505050506040513d602081101561284057600080fd5b5051600654600b54919250610ae0916001600160a01b03908116911683612c70565b6006546001600160a01b031681565b60148181548110610c7857fe5b6007546001600160a01b031681565b801580612913575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156128e557600080fd5b505afa1580156128f9573d6000803e3d6000fd5b505050506040513d602081101561290f57600080fd5b5051155b61294e5760405162461bcd60e51b8152600401808060200182810382526036815260200180613f956036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526129a0908490613017565b505050565b60606129b484846000856130c8565b949350505050565b600054600160a01b900460ff1615612a0e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b73c6ca172fc8bdb803c5e12731109744fb0200587b6001600160a01b031663e2bbb158600f5460006040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b158015612a7357600080fd5b505af1158015612a87573d6000803e3d6000fd5b5050604080516370a0823160e01b815230600482015290516000935073cd3b51d98478d53f4515a306be565c6eebef1d5892506370a0823191602480820192602092909190829003018186803b158015612ae057600080fd5b505afa158015612af4573d6000803e3d6000fd5b505050506040513d6020811015612b0a57600080fd5b505190508015612b8257612b1d82613273565b612b25613805565b6000612b2f612127565b9050612b39612272565b42601155337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f9241082612b68611ce2565b6040805192835260208301919091528051918290030190a2505b5050565b3390565b6000612bcc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613da7565b90505b92915050565b600082612be457506000612bcf565b82820282848281612bf157fe5b0414612bcc5760405162461bcd60e51b8152600401808060200182810382526021815260200180613f4a6021913960400191505060405180910390fd5b6000612bcc83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613e01565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526129a0908490613017565b600054600160a01b900460ff16612d17576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612d4d612b86565b604080516001600160a01b039092168252519081900360200190a1565b600b54612d97906001600160a01b031673c6ca172fc8bdb803c5e12731109744fb0200587b60001961288d565b600554612dc59073cd3b51d98478d53f4515a306be565c6eebef1d58906001600160a01b031660001961288d565b600554600c54612de3916001600160a01b039182169116600061288d565b600554600c54612e02916001600160a01b03918216911660001961288d565b600554600d54612e20916001600160a01b039182169116600061288d565b600554600d54612e3f916001600160a01b03918216911660001961288d565b600554600e54612e5d916001600160a01b039182169116600061288d565b600554600e54611247916001600160a01b03918216911660001961288d565b600082820183811015612bcc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600054600160a01b900460ff1615612f28576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612d4d612b86565b600b54612f90906001600160a01b031673c6ca172fc8bdb803c5e12731109744fb0200587b600061288d565b600554612fbd9073cd3b51d98478d53f4515a306be565c6eebef1d58906001600160a01b0316600061288d565b600554600c54612fdb916001600160a01b039182169116600061288d565b600554600d54612ff9916001600160a01b039182169116600061288d565b600554600e54611247916001600160a01b039182169116600061288d565b606061306c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166129a59092919063ffffffff16565b8051909150156129a05780806020019051602081101561308b57600080fd5b50516129a05760405162461bcd60e51b815260040180806020018281038252602a815260200180613f6b602a913960400191505060405180910390fd5b60606130d385613e66565b613124576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106131635780518252601f199092019160209182019101613144565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146131c5576040519150601f19603f3d011682016040523d82523d6000602084013e6131ca565b606091505b509150915081156131de5791506129b49050565b8051156131ee5780518082602001fd5b8360405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613238578181015183820152602001613220565b50505050905090810190601f1680156132655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b600e54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156132be57600080fd5b505afa1580156132d2573d6000803e3d6000fd5b505050506040513d60208110156132e857600080fd5b505190508015613481576005546001600160a01b03166338ed173982600060173061331542610258612e7c565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818154815260200191508054801561339457602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311613376575b50509650505050505050600060405180830381600087803b1580156133b857600080fd5b505af11580156133cc573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156133f557600080fd5b8101908080516040519392919084600160201b82111561341457600080fd5b90830190602082018581111561342957600080fd5b82518660208202830111600160201b8211171561344557600080fd5b82525081516020918201928201910280838360005b8381101561347257818101518382015260200161345a565b50505050905001604052505050505b60006135216103e8611107602a73cd3b51d98478d53f4515a306be565c6eebef1d586001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156134ef57600080fd5b505afa158015613503573d6000803e3d6000fd5b505050506040513d602081101561351957600080fd5b505190612bd5565b6005549091506001600160a01b03166338ed173982600060123061354742610258612e7c565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b0316815260200183815260200182810382528581815481526020019150805480156135c657602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116135a8575b50509650505050505050600060405180830381600087803b1580156135ea57600080fd5b505af11580156135fe573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561362757600080fd5b8101908080516040519392919084600160201b82111561364657600080fd5b90830190602082018581111561365b57600080fd5b82518660208202830111600160201b8211171561367757600080fd5b82525081516020918201928201910280838360005b838110156136a457818101518382015260200161368c565b505050509190910160408181526370a0823160e01b8252306004830152516000965073acc15dc74880c9944775448304b263d191c6077f95506370a08231945060248083019450602093509091829003018186803b15801561370557600080fd5b505afa158015613719573d6000803e3d6000fd5b505050506040513d602081101561372f57600080fd5b505160095490915060009061374d906103e890611107908590612bd5565b905061376e73acc15dc74880c9944775448304b263d191c6077f8683612c70565b600061378b6103e8611107600a5486612bd590919063ffffffff16565b6007549091506137ba9073acc15dc74880c9944775448304b263d191c6077f906001600160a01b031683612c70565b60006137cd6103e8611107866070612bd5565b6004549091506137fc9073acc15dc74880c9944775448304b263d191c6077f906001600160a01b031683612c70565b50505050505050565b600061389f600273cd3b51d98478d53f4515a306be565c6eebef1d586001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561386d57600080fd5b505afa158015613881573d6000803e3d6000fd5b505050506040513d602081101561389757600080fd5b505190612c2e565b600c549091506001600160a01b031673cd3b51d98478d53f4515a306be565c6eebef1d5814613a4f576005546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526013805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c4909101908690801561396257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311613944575b50509650505050505050600060405180830381600087803b15801561398657600080fd5b505af115801561399a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156139c357600080fd5b8101908080516040519392919084600160201b8211156139e257600080fd5b9083019060208201858111156139f757600080fd5b82518660208202830111600160201b82111715613a1357600080fd5b82525081516020918201928201910280838360005b83811015613a40578181015183820152602001613a28565b50505050905001604052505050505b600d546001600160a01b031673cd3b51d98478d53f4515a306be565c6eebef1d5814613bfc576005546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526014805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c49091019086908015613b0f57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311613af1575b50509650505050505050600060405180830381600087803b158015613b3357600080fd5b505af1158015613b47573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015613b7057600080fd5b8101908080516040519392919084600160201b821115613b8f57600080fd5b908301906020820185811115613ba457600080fd5b82518660208202830111600160201b82111715613bc057600080fd5b82525081516020918201928201910280838360005b83811015613bed578181015183820152602001613bd5565b50505050905001604052505050505b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015613c4757600080fd5b505afa158015613c5b573d6000803e3d6000fd5b505050506040513d6020811015613c7157600080fd5b5051600d54604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015613cc457600080fd5b505afa158015613cd8573d6000803e3d6000fd5b505050506040513d6020811015613cee57600080fd5b5051600554600c54600d546040805162e8e33760e81b81526001600160a01b0393841660048201529183166024830152604482018790526064820185905260016084830181905260a48301523060c48301524260e48301525193945091169163e8e3370091610104808201926060929091908290030181600087803b158015613d7657600080fd5b505af1158015613d8a573d6000803e3d6000fd5b505050506040513d6060811015613da057600080fd5b5050505050565b60008184841115613df95760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613238578181015183820152602001613220565b505050900390565b60008183613e505760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613238578181015183820152602001613220565b506000838581613e5c57fe5b0495945050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906129b4575050151592915050565b828054828255906000526020600020908101928215613ef4579160200282015b82811115613ef457825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190613ebf565b50613f00929150613f04565b5090565b5b80821115613f005780546001600160a01b0319168155600101613f0556fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a2646970667358221220b3f239b0f98bd27e5cfd572893839d083fa2458a818b64b2dec44ab9224d304a64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000099588867e817023162f4d4829995299054a5fc570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000096b244391d98b62d19ae89b1a4dccf0fc56970c7000000000000000000000000693609b8711045e0a18eba90abfa2315a5cb6e430000000000000000000000005bb2602b7dc21b00955a0845883abecbf3cb05b8000000000000000000000000db9422a26798702f09d197863ba40620b0a289e3000000000000000000000000200c3948ce0e50d49a7ecfa1d03fcda122e02869000000000000000000000000e86cfc82f347b2fc55ecdda24fdc0e5534fc326f0000000000000000000000004204cad97732282d261fbb7088e07557810a6408
-----Decoded View---------------
Arg [0] : _want (address): 0x99588867e817023162F4d4829995299054a5fC57
Arg [1] : _poolId (uint256): 0
Arg [2] : _vault (address): 0x0000000000000000000000000000000000000000
Arg [3] : _unirouter (address): 0x96b244391D98B62D19aE89b1A4dCcf0fc56970C7
Arg [4] : _keeper (address): 0x693609b8711045e0A18eBa90aBFa2315A5CB6e43
Arg [5] : _keeper2 (address): 0x5Bb2602B7DC21b00955a0845883Abecbf3cb05B8
Arg [6] : _harvester (address): 0xDB9422A26798702f09D197863BA40620b0a289E3
Arg [7] : _treasury (address): 0x200C3948Ce0e50D49a7eCFa1D03Fcda122E02869
Arg [8] : _astralFeeRecipient (address): 0xe86CfC82f347B2fc55ECDDA24fdc0e5534fc326F
Arg [9] : _dualReward (address): 0x4204cAd97732282d261FbB7088e07557810A6408
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000099588867e817023162f4d4829995299054a5fc57
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 00000000000000000000000096b244391d98b62d19ae89b1a4dccf0fc56970c7
Arg [4] : 000000000000000000000000693609b8711045e0a18eba90abfa2315a5cb6e43
Arg [5] : 0000000000000000000000005bb2602b7dc21b00955a0845883abecbf3cb05b8
Arg [6] : 000000000000000000000000db9422a26798702f09d197863ba40620b0a289e3
Arg [7] : 000000000000000000000000200c3948ce0e50d49a7ecfa1d03fcda122e02869
Arg [8] : 000000000000000000000000e86cfc82f347b2fc55ecdda24fdc0e5534fc326f
Arg [9] : 0000000000000000000000004204cad97732282d261fbb7088e07557810a6408
Deployed Bytecode Sourcemap
43093:13008:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45818:386;;;;;;;;;;;;;;;;-1:-1:-1;45818:386:0;-1:-1:-1;;;;;45818:386:0;;:::i;:::-;;52062:153;;;:::i;:::-;;;;;;;;;;;;;;;;48333:105;;;;;;;;;;;;;;;;-1:-1:-1;48333:105:0;-1:-1:-1;;;;;48333:105:0;;:::i;53429:129::-;;;;;;;;;;;;;;;;-1:-1:-1;53429:129:0;;;;:::i;52484:180::-;;;:::i;51729:160::-;;;:::i;44078:33::-;;;;;;;;;;;;;;;;-1:-1:-1;44078:33:0;;:::i;:::-;;;;-1:-1:-1;;;;;44078:33:0;;;;;;;;;;;;;;41557:138;;;;;;;;;;;;;;;;-1:-1:-1;41557:138:0;-1:-1:-1;;;;;41557:138:0;;:::i;40229:104::-;;;;;;;;;;;;;;;;-1:-1:-1;40229:104:0;-1:-1:-1;;;;;40229:104:0;;:::i;43934:57::-;;;;;;;;;;;;;;;;-1:-1:-1;43934:57:0;;:::i;43443:19::-;;;:::i;38647:24::-;;;:::i;42620:191::-;;;;;;;;;;;;;;;;-1:-1:-1;42620:191:0;;:::i;42306:39::-;;;:::i;46513:744::-;;;;;;;;;;;;;;;;-1:-1:-1;46513:744:0;;:::i;44118:33::-;;;;;;;;;;;;;;;;-1:-1:-1;44118:33:0;;:::i;43998:::-;;;;;;;;;;;;;;;;-1:-1:-1;43998:33:0;;:::i;43713:21::-;;;:::i;55130:121::-;;;:::i;47885:280::-;;;:::i;48202:74::-;;;:::i;54864:155::-;;;:::i;38586:24::-;;;:::i;43235:85::-;;;:::i;42405:43::-;;;:::i;47323:273::-;;;;;;;;;;;;;;;;-1:-1:-1;47323:273:0;;;;;;;;;;;:::i;47604:::-;;;:::i;36795:78::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;43469:23;;;:::i;38617:::-;;;:::i;41290:129::-;;;;;;;;;;;;;;;;-1:-1:-1;41290:129:0;-1:-1:-1;;;;;41290:129:0;;:::i;53566:141::-;;;;;;;;;;;;;;;;-1:-1:-1;53566:141:0;;;;:::i;54187:595::-;;;:::i;35145:148::-;;;:::i;52738:113::-;;;:::i;40452:136::-;;;;;;;;;;;;;;;;-1:-1:-1;40452:136:0;-1:-1:-1;;;;;40452:136:0;;:::i;55027:95::-;;;:::i;43499:23::-;;;:::i;43760:28::-;;;:::i;42461:29::-;;;:::i;42218:39::-;;;:::i;34503:79::-;;;:::i;42500:25::-;;;:::i;44158:63::-;;;;;;;;;;;;;;;;-1:-1:-1;44158:63:0;;:::i;52908:513::-;;;:::i;42823:156::-;;;;;;;;;;;;;;;;-1:-1:-1;42823:156:0;;:::i;38529:21::-;;;:::i;43795:31::-;;;:::i;42264:35::-;;;:::i;52282:118::-;;;:::i;40709:142::-;;;;;;;;;;;;;;;;-1:-1:-1;40709:142:0;-1:-1:-1;;;;;40709:142:0;;:::i;51901:153::-;;;:::i;38557:22::-;;;:::i;46243:262::-;;;:::i;48475:85::-;;;:::i;43529:25::-;;;:::i;42354:44::-;;;:::i;51545:176::-;;;:::i;51355:182::-;;;:::i;40990:143::-;;;;;;;;;;;;;;;;-1:-1:-1;40990:143:0;-1:-1:-1;;;;;40990:143:0;;:::i;42532:56::-;;;:::i;43884:26::-;;;:::i;43340:84::-;;;:::i;35448:244::-;;;;;;;;;;;;;;;;-1:-1:-1;35448:244:0;-1:-1:-1;;;;;35448:244:0;;:::i;43595:88::-;;;:::i;53807:275::-;;;:::i;38678:20::-;;;:::i;44038:33::-;;;;;;;;;;;;;;;;-1:-1:-1;44038:33:0;;:::i;38705:::-;;;:::i;45818:386::-;39812:7;:5;:7::i;:::-;-1:-1:-1;;;;;39798:21:0;:10;-1:-1:-1;;;;;39798:21:0;;:55;;;-1:-1:-1;39847:6:0;;-1:-1:-1;;;;;39847:6:0;39833:10;:20;39798:55;:90;;;-1:-1:-1;39881:7:0;;-1:-1:-1;;;;;39881:7:0;39867:10;:21;39798:90;:126;;;-1:-1:-1;39915:9:0;;-1:-1:-1;;;;;39915:9:0;39901:10;:23;39798:126;39790:147;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;;;;45917:4:::1;::::0;-1:-1:-1;;;;;45902:19:0;;::::1;45917:4:::0;::::1;45902:19;;45894:49;;;::::0;;-1:-1:-1;;;45894:49:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;45894:49:0;;;;;;;;;;;;;::::1;;45954:10;:24:::0;;-1:-1:-1;;;;;;45954:24:0::1;-1:-1:-1::0;;;;;45954:24:0;;::::1;::::0;;;::::1;::::0;;;;45989:46:::1;::::0;;;;::::1;::::0;;;46016:10;::::1;45989:46:::0;;43381:42:::1;45989:46;::::0;::::1;::::0;::::1;::::0;:23:::1;::::0;:46:::1;;:::i;:::-;-1:-1:-1::0;46077:9:0::1;::::0;46053:10:::1;::::0;46046:44:::1;::::0;-1:-1:-1;;;;;46053:10:0;;::::1;::::0;46077:9:::1;;46046:30;:44::i;:::-;46132:9;::::0;46108:10:::1;::::0;46101:54:::1;::::0;-1:-1:-1;;;;;46108:10:0;;::::1;::::0;46132:9:::1;-1:-1:-1::0;;46101:30:0::1;:54::i;:::-;46185:10;::::0;46171:25:::1;::::0;;-1:-1:-1;;;;;46185:10:0;;::::1;46171:25:::0;;;::::1;::::0;;;;::::1;::::0;;::::1;45818:386:::0;:::o;52062:153::-;52148:8;;52141:41;;;-1:-1:-1;;;52141:41:0;;52176:4;52141:41;;;;;;52103:7;;;;-1:-1:-1;;;;;52148:8:0;;;;52141:26;;:41;;;;;;;;;;;;;;;52148:8;52141:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52141:41:0;;-1:-1:-1;;52062:153:0;:::o;48333:105::-;48404:26;48413:16;48404:8;:26::i;:::-;48333:105;:::o;53429:129::-;39812:7;:5;:7::i;:::-;-1:-1:-1;;;;;39798:21:0;:10;-1:-1:-1;;;;;39798:21:0;;:55;;;-1:-1:-1;39847:6:0;;-1:-1:-1;;;;;39847:6:0;39833:10;:20;39798:55;:90;;;-1:-1:-1;39881:7:0;;-1:-1:-1;;;;;39881:7:0;39867:10;:21;39798:90;:126;;;-1:-1:-1;39915:9:0;;-1:-1:-1;;;;;39915:9:0;39901:10;:23;39798:126;39790:147;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;;;;53514:16:::1;:36:::0;;-1:-1:-1;;53514:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53429:129::o;52484:180::-;52609:6;;52572:59;;;-1:-1:-1;;;52572:59:0;;;;;;;;;52625:4;52572:59;;;;;;52530:7;;;;43640:42;;52572:36;;:59;;;;;;;;;;;;43640:42;52572:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51729:160;51814:39;;;-1:-1:-1;;;51814:39:0;;51847:4;51814:39;;;;;;51773:7;;;;43381:42;;51814:24;;:39;;;;;;;;;;;;;;43381:42;51814:39;;;;;;;;;;44078:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44078:33:0;;-1:-1:-1;44078:33:0;:::o;41557:138::-;34725:12;:10;:12::i;:::-;34715:6;;-1:-1:-1;;;;;34715:6:0;;;:22;;;34707:67;;;;;-1:-1:-1;;;34707:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41647:18:::1;:40:::0;;-1:-1:-1;;;;;;41647:40:0::1;-1:-1:-1::0;;;;;41647:40:0;;;::::1;::::0;;;::::1;::::0;;41557:138::o;40229:104::-;39812:7;:5;:7::i;:::-;-1:-1:-1;;;;;39798:21:0;:10;-1:-1:-1;;;;;39798:21:0;;:55;;;-1:-1:-1;39847:6:0;;-1:-1:-1;;;;;39847:6:0;39833:10;:20;39798:55;:90;;;-1:-1:-1;39881:7:0;;-1:-1:-1;;;;;39881:7:0;39867:10;:21;39798:90;:126;;;-1:-1:-1;39915:9:0;;-1:-1:-1;;;;;39915:9:0;39901:10;:23;39798:126;39790:147;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;;;;40303:9:::1;:22:::0;;-1:-1:-1;;;;;;40303:22:0::1;-1:-1:-1::0;;;;;40303:22:0;;;::::1;::::0;;;::::1;::::0;;40229:104::o;43934:57::-;;;;;;;;;;43443:19;;;-1:-1:-1;;;;;43443:19:0;;:::o;38647:24::-;;;-1:-1:-1;;;;;38647:24:0;;:::o;42620:191::-;39812:7;:5;:7::i;:::-;-1:-1:-1;;;;;39798:21:0;:10;-1:-1:-1;;;;;39798:21:0;;:55;;;-1:-1:-1;39847:6:0;;-1:-1:-1;;;;;39847:6:0;39833:10;:20;39798:55;:90;;;-1:-1:-1;39881:7:0;;-1:-1:-1;;;;;39881:7:0;39867:10;:21;39798:90;:126;;;-1:-1:-1;39915:9:0;;-1:-1:-1;;;;;39915:9:0;39901:10;:23;39798:126;39790:147;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;;;;42342:3:::1;42694:4;:20;;42686:37;;;::::0;;-1:-1:-1;;;42686:37:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;42686:37:0;;;;;;;;;;;;;::::1;;42734:7;:14:::0;;;42771:22;:32:::1;42759:9;:44:::0;42620:191::o;42306:39::-;42342:3;42306:39;:::o;46513:744::-;46590:5;;-1:-1:-1;;;;;46590:5:0;46576:10;:19;46568:38;;;;;-1:-1:-1;;;46568:38:0;;;;;;;;;;;;-1:-1:-1;;;46568:38:0;;;;;;;;;;;;;;;46644:4;;46637:37;;;-1:-1:-1;;;46637:37:0;;46668:4;46637:37;;;;;;46619:15;;-1:-1:-1;;;;;46644:4:0;;46637:22;;:37;;;;;;;;;;;;;;46644:4;46637:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46637:37:0;;-1:-1:-1;46691:17:0;;;46687:180;;;46762:6;;43640:42;;46725:36;;46770:20;:7;46782;46770:11;:20::i;:::-;46725:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46825:4:0;;46818:37;;;-1:-1:-1;;;46818:37:0;;46849:4;46818:37;;;;;;-1:-1:-1;;;;;46825:4:0;;;;-1:-1:-1;46818:22:0;;-1:-1:-1;46818:37:0;;;;;;;;;;;;;;;46825:4;46818:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46818:37:0;;-1:-1:-1;46687:180:0;46893:7;46883;:17;46879:67;;;-1:-1:-1;46927:7:0;46879:67;46975:7;:5;:7::i;:::-;-1:-1:-1;;;;;46962:20:0;:9;-1:-1:-1;;;;;46962:20:0;;;:33;;;;;46987:8;:6;:8::i;:::-;46986:9;46962:33;46958:199;;;47012:27;47042:46;42443:5;47042:26;47054:13;;47042:7;:11;;:26;;;;:::i;:::-;:30;;:46::i;:::-;47012:76;-1:-1:-1;47113:32:0;:7;47012:76;47113:11;:32::i;:::-;47103:42;;46958:199;;47195:5;;47176:4;;47169:41;;-1:-1:-1;;;;;47176:4:0;;;;47195:5;47202:7;47169:25;:41::i;:::-;47228:21;47237:11;:9;:11::i;:::-;47228:21;;;;;;;;;;;;;;;46513:744;;:::o;44118:33::-;;;;;;;;;;43998;;;;;;;;;;43713:21;;;;:::o;55130:121::-;39812:7;:5;:7::i;:::-;-1:-1:-1;;;;;39798:21:0;:10;-1:-1:-1;;;;;39798:21:0;;:55;;;-1:-1:-1;39847:6:0;;-1:-1:-1;;;;;39847:6:0;39833:10;:20;39798:55;:90;;;-1:-1:-1;39881:7:0;;-1:-1:-1;;;;;39881:7:0;39867:10;:21;39798:90;:126;;;-1:-1:-1;39915:9:0;;-1:-1:-1;;;;;39915:9:0;39901:10;:23;39798:126;39790:147;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;;;;55181:10:::1;:8;:10::i;:::-;55204:17;:15;:17::i;:::-;55234:9;:7;:9::i;:::-;55130:121::o:0;47885:280::-;47944:19;;;;;;;47940:218;;;48002:5;;-1:-1:-1;;;;;48002:5:0;47988:10;:19;47980:38;;;;;-1:-1:-1;;;47980:38:0;;;;;;;;;;;;-1:-1:-1;;;47980:38:0;;;;;;;;;;;;;;;48033:19;48042:9;48033:8;:19::i;54864:155::-;39812:7;:5;:7::i;:::-;-1:-1:-1;;;;;39798:21:0;:10;-1:-1:-1;;;;;39798:21:0;;:55;;;-1:-1:-1;39847:6:0;;-1:-1:-1;;;;;39847:6:0;39833:10;:20;39798:55;:90;;;-1:-1:-1;39881:7:0;;-1:-1:-1;;;;;39881:7:0;39867:10;:21;39798:90;:126;;;-1:-1:-1;39915:9:0;;-1:-1:-1;;;;;39915:9:0;39901:10;:23;39798:126;39790:147;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;;;;54913:7:::1;:5;:7::i;:::-;43640:42;-1:-1:-1::0;;;;;54931:45:0::1;;54977:6;;54931:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;55000:11:0::1;::::0;::::1;::::0;-1:-1:-1;55000:11:0;;-1:-1:-1;55000:11:0::1;54864:155::o:0;38586:24::-;;;-1:-1:-1;;;;;38586:24:0;;:::o;43235:85::-;43277:42;43235:85;:::o;42405:43::-;42443:5;42405:43;:::o;47323:273::-;39812:7;:5;:7::i;:::-;-1:-1:-1;;;;;39798:21:0;:10;-1:-1:-1;;;;;39798:21:0;;:55;;;-1:-1:-1;39847:6:0;;-1:-1:-1;;;;;39847:6:0;39833:10;:20;39798:55;:90;;;-1:-1:-1;39881:7:0;;-1:-1:-1;;;;;39881:7:0;39867:10;:21;39798:90;:126;;;-1:-1:-1;39915:9:0;;-1:-1:-1;;;;;39915:9:0;39901:10;:23;39798:126;39790:147;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;;;;47430:16:::1;:36:::0;;-1:-1:-1;;47430:36:0::1;::::0;::::1;;;-1:-1:-1::0;;47477:42:0::1;47430:36;47477:42:::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;47535:53:::1;::::0;;47430:36:::1;47550:16:::0;;::::1;47535:53;;::::0;;47568:19;;;::::1;::::0;;::::1;47535:53;;;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;::::1;47323:273:::0;;:::o;47604:::-;47662:16;;;;47658:212;;;47717:5;;-1:-1:-1;;;;;47717:5:0;47703:10;:19;47695:38;;;;;-1:-1:-1;;;47695:38:0;;;;;;;;;;;;-1:-1:-1;;;47695:38:0;;;;;;;;;;;;;;36795:78;36834:4;36858:7;-1:-1:-1;;;36858:7:0;;;;;36795:78::o;43469:23::-;;;-1:-1:-1;;;;;43469:23:0;;:::o;38617:::-;;;-1:-1:-1;;;;;38617:23:0;;:::o;41290:129::-;39812:7;:5;:7::i;:::-;-1:-1:-1;;;;;39798:21:0;:10;-1:-1:-1;;;;;39798:21:0;;:55;;;-1:-1:-1;39847:6:0;;-1:-1:-1;;;;;39847:6:0;39833:10;:20;39798:55;:90;;;-1:-1:-1;39881:7:0;;-1:-1:-1;;;;;39881:7:0;39867:10;:21;39798:90;:126;;;-1:-1:-1;39915:9:0;;-1:-1:-1;;;;;39915:9:0;39901:10;:23;39798:126;39790:147;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;;;;41364:5:::1;::::0;-1:-1:-1;;;;;41364:5:0::1;:13:::0;41356:30:::1;;;::::0;;-1:-1:-1;;;41356:30:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;41356:30:0;;;;;;;;;;;;;::::1;;41397:5;:14:::0;;-1:-1:-1;;;;;;41397:14:0::1;-1:-1:-1::0;;;;;41397:14:0;;;::::1;::::0;;;::::1;::::0;;41290:129::o;53566:141::-;39812:7;:5;:7::i;:::-;-1:-1:-1;;;;;39798:21:0;:10;-1:-1:-1;;;;;39798:21:0;;:55;;;-1:-1:-1;39847:6:0;;-1:-1:-1;;;;;39847:6:0;39833:10;:20;39798:55;:90;;;-1:-1:-1;39881:7:0;;-1:-1:-1;;;;;39881:7:0;39867:10;:21;39798:90;:126;;;-1:-1:-1;39915:9:0;;-1:-1:-1;;;;;39915:9:0;39901:10;:23;39798:126;39790:147;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;;;;53657:19:::1;:42:::0;;;::::1;;;;-1:-1:-1::0;;53657:42:0;;::::1;::::0;;;::::1;::::0;;53566:141::o;54187:595::-;39812:7;:5;:7::i;:::-;-1:-1:-1;;;;;39798:21:0;:10;-1:-1:-1;;;;;39798:21:0;;:55;;;-1:-1:-1;39847:6:0;;-1:-1:-1;;;;;39847:6:0;39833:10;:20;39798:55;:90;;;-1:-1:-1;39881:7:0;;-1:-1:-1;;;;;39881:7:0;39867:10;:21;39798:90;:126;;;-1:-1:-1;39915:9:0;;-1:-1:-1;;;;;39915:9:0;39901:10;:23;39798:126;39790:147;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;;;;54271:8:::1;::::0;54264:41:::1;::::0;;-1:-1:-1;;;54264:41:0;;54299:4:::1;54264:41;::::0;::::1;::::0;;;54242:19:::1;::::0;-1:-1:-1;;;;;54271:8:0::1;::::0;54264:26:::1;::::0;:41;;;;;::::1;::::0;;;;;;;;54271:8;54264:41;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;54264:41:0;54345:8:::1;::::0;54338:41:::1;::::0;;-1:-1:-1;;;54338:41:0;;54373:4:::1;54338:41;::::0;::::1;::::0;;;54264;;-1:-1:-1;54316:19:0::1;::::0;-1:-1:-1;;;;;54345:8:0;;::::1;::::0;54338:26:::1;::::0;:41;;;;;54264::::1;::::0;54338;;;;;;;;54345:8;54338:41;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;54338:41:0;;-1:-1:-1;54396:16:0;;54392:166:::1;;54448:9;::::0;-1:-1:-1;;;;;54448:9:0::1;54430:53;54484:11:::0;54448:9:::1;54500:16;54526:4;54533:12;:3;54541;54533:7;:12::i;:::-;54430:116;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;54430:116:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;54430:116:0::1;::::0;;;;;::::1;::::0;::::1;;::::0;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;54430:116:0::1;::::0;::::1;;::::0;::::1;::::0;::::1;;;;;::::0;::::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;54430:116:0::1;;;;;;::::0;::::1;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;;;;;::::0;::::1;;;;;;;;;;;-1:-1:-1::0;;;54430:116:0::1;;;;;;;::::0;::::1;;::::0;;-1:-1:-1;54430:116:0;;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;::::0;::::1;;;54392:166;54572:16:::0;;54568:166:::1;;54624:9;::::0;-1:-1:-1;;;;;54624:9:0::1;54606:53;54660:11:::0;54624:9:::1;54676:16;54702:4;54709:12;:3;54717;54709:7;:12::i;:::-;54606:116;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;54606:116:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;54606:116:0::1;::::0;;;;;::::1;::::0;::::1;;::::0;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;54606:116:0::1;::::0;::::1;;::::0;::::1;::::0;::::1;;;;;::::0;::::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;54606:116:0::1;;;;;;::::0;::::1;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;;;;;::::0;::::1;;;;;;;;;;;-1:-1:-1::0;;;54606:116:0::1;;;;;;;::::0;::::1;;::::0;;-1:-1:-1;54606:116:0;;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;::::0;::::1;;;54568:166;54759:15;::::0;::::1;::::0;;;::::1;39948:1;;54187:595::o:0;35145:148::-;34725:12;:10;:12::i;:::-;34715:6;;-1:-1:-1;;;;;34715:6:0;;;:22;;;34707:67;;;;;-1:-1:-1;;;34707:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35252:1:::1;35236:6:::0;;35215:40:::1;::::0;-1:-1:-1;;;;;35236:6:0;;::::1;::::0;35215:40:::1;::::0;35252:1;;35215:40:::1;35283:1;35266:19:::0;;-1:-1:-1;;;;;;35266:19:0::1;::::0;;35145:148::o;52738:113::-;52780:7;52807:36;52827:15;:13;:15::i;:::-;52807;:13;:15::i;:::-;:19;;:36::i;:::-;52800:43;;52738:113;:::o;40452:136::-;40531:6;;-1:-1:-1;;;;;40531:6:0;40517:10;:20;40509:44;;;;;-1:-1:-1;;;40509:44:0;;;;;;;;;;;;-1:-1:-1;;;40509:44:0;;;;;;;;;;;;;;;40564:6;:16;;-1:-1:-1;;;;;;40564:16:0;-1:-1:-1;;;;;40564:16:0;;;;;;;;;;40452:136::o;55027:95::-;39812:7;:5;:7::i;:::-;-1:-1:-1;;;;;39798:21:0;:10;-1:-1:-1;;;;;39798:21:0;;:55;;;-1:-1:-1;39847:6:0;;-1:-1:-1;;;;;39847:6:0;39833:10;:20;39798:55;:90;;;-1:-1:-1;39881:7:0;;-1:-1:-1;;;;;39881:7:0;39867:10;:21;39798:90;:126;;;-1:-1:-1;39915:9:0;;-1:-1:-1;;;;;39915:9:0;39901:10;:23;39798:126;39790:147;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;;;;55074:8:::1;:6;:8::i;:::-;55095:19;:17;:19::i;43499:23::-:0;;;-1:-1:-1;;;;;43499:23:0;;:::o;43760:28::-;;;;;;:::o;42461:29::-;;;;:::o;42218:39::-;42254:3;42218:39;:::o;34503:79::-;34541:7;34568:6;-1:-1:-1;;;;;34568:6:0;34503:79;:::o;42500:25::-;;;;:::o;44158:63::-;;;;;;;;;;52908:513;52951:7;52971:18;52992:16;:14;:16::i;:::-;52971:37;-1:-1:-1;53019:17:0;53051:14;;53047:294;;53104:9;;53086:76;;;-1:-1:-1;;;53086:76:0;;;;;;;;;;;;;;53141:20;53086:76;;;;;;;;-1:-1:-1;;;;;53104:9:0;;;;53086:42;;53129:10;;53141:20;;53086:76;;;;;;;;53141:20;;53086:76;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53086:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53086:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53086:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53086:76:0;;;;;;;;;;;;-1:-1:-1;53086:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53082:248;;;;;53262:9;53290:1;53272:9;:16;:19;53262:30;;;;;;;;;;;;;;53250:42;;53180:128;53082:248;53360:53;42295:4;53360:40;53392:7;;53360:27;53382:4;53360:17;53374:2;53360:9;:13;;:17;;;;:::i;:27::-;:31;;:40::i;:53::-;53353:60;;;;52908:513;:::o;42823:156::-;39812:7;:5;:7::i;:::-;-1:-1:-1;;;;;39798:21:0;:10;-1:-1:-1;;;;;39798:21:0;;:55;;;-1:-1:-1;39847:6:0;;-1:-1:-1;;;;;39847:6:0;39833:10;:20;39798:55;:90;;;-1:-1:-1;39881:7:0;;-1:-1:-1;;;;;39881:7:0;39867:10;:21;39798:90;:126;;;-1:-1:-1;39915:9:0;;-1:-1:-1;;;;;39915:9:0;39901:10;:23;39798:126;39790:147;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;;;;42396:2:::1;42903:4;:26;;42895:43;;;::::0;;-1:-1:-1;;;42895:43:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;42895:43:0;;;;;;;;;;;;;::::1;;42951:13;:20:::0;42823:156::o;38529:21::-;;;-1:-1:-1;;;;;38529:21:0;;:::o;43795:31::-;;;;;;;;;:::o;42264:35::-;42295:4;42264:35;:::o;52282:118::-;52362:4;;52355:37;;;-1:-1:-1;;;52355:37:0;;52386:4;52355:37;;;;;;52328:7;;-1:-1:-1;;;;;52362:4:0;;52355:22;;:37;;;;;;;;;;;;;;52362:4;52355:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52355:37:0;;-1:-1:-1;52282:118:0;:::o;40709:142::-;40790:7;;-1:-1:-1;;;;;40790:7:0;40776:10;:21;40768:46;;;;;-1:-1:-1;;;40768:46:0;;;;;;;;;;;;-1:-1:-1;;;40768:46:0;;;;;;;;;;;;;;;40825:7;:18;;-1:-1:-1;;;;;;40825:18:0;-1:-1:-1;;;;;40825:18:0;;;;;;;;;;40709:142::o;51901:153::-;51987:8;;51980:41;;;-1:-1:-1;;;51980:41:0;;52015:4;51980:41;;;;;;51942:7;;;;-1:-1:-1;;;;;51987:8:0;;;;51980:26;;:41;;;;;;;;;;;;;;;51987:8;51980:41;;;;;;;;;;38557:22;;;-1:-1:-1;;;;;38557:22:0;;:::o;46243:262::-;37113:7;;-1:-1:-1;;;37113:7:0;;;;37112:8;37104:37;;;;;-1:-1:-1;;;37104:37:0;;;;;;;;;;;;-1:-1:-1;;;37104:37:0;;;;;;;;;;;;;;;46319:4:::1;::::0;46312:37:::1;::::0;;-1:-1:-1;;;46312:37:0;;46343:4:::1;46312:37;::::0;::::1;::::0;;;46294:15:::1;::::0;-1:-1:-1;;;;;46319:4:0::1;::::0;46312:22:::1;::::0;:37;;;;;::::1;::::0;;;;;;;;46319:4;46312:37;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;46312:37:0;;-1:-1:-1;46366:11:0;;46362:136:::1;;43640:42;-1:-1:-1::0;;;;;46394:35:0::1;;46430:6;;46438:7;46394:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;46466:20;46474:11;:9;:11::i;:::-;46466:20;::::0;;;;;;;;;;::::1;::::0;;::::1;37152:1;46243:262::o:0;48475:85::-;39812:7;:5;:7::i;:::-;-1:-1:-1;;;;;39798:21:0;:10;-1:-1:-1;;;;;39798:21:0;;:55;;;-1:-1:-1;39847:6:0;;-1:-1:-1;;;;;39847:6:0;39833:10;:20;39798:55;:90;;;-1:-1:-1;39881:7:0;;-1:-1:-1;;;;;39881:7:0;39867:10;:21;39798:90;:126;;;-1:-1:-1;39915:9:0;;-1:-1:-1;;;;;39915:9:0;39901:10;:23;39798:126;39790:147;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;-1:-1:-1;;;39790:147:0;;;;;;;;;;;;;;43529:25;;;-1:-1:-1;;;;;43529:25:0;;:::o;42354:44::-;42396:2;42354:44;:::o;51545:176::-;51645:10;;51638:43;;;-1:-1:-1;;;51638:43:0;;51675:4;51638:43;;;;;;51593:7;;;;-1:-1:-1;;;;;51645:10:0;;;;51638:28;;:43;;;;;;;;;;;;;;;51645:10;51638:43;;;;;;;;;;51355:182;51482:6;;51440:64;;;-1:-1:-1;;;;;;51440:64:0;;;;;;;;;51498:4;51440:64;;;;;51402:7;;;;43640:42;;51440:41;;:64;;;;;;;;;;;;;;43640:42;51440:64;;;;;;;;;;40990:143;41072:8;;-1:-1:-1;;;;;41072:8:0;41058:10;:22;41050:44;;;;;-1:-1:-1;;;41050:44:0;;;;;;;;;;;;-1:-1:-1;;;41050:44:0;;;;;;;;;;;;;;;41105:8;:20;;-1:-1:-1;;;;;;41105:20:0;-1:-1:-1;;;;;41105:20:0;;;;;;;;;;40990:143::o;42532:56::-;;;;:::o;43884:26::-;;;;:::o;43340:84::-;43381:42;43340:84;:::o;35448:244::-;34725:12;:10;:12::i;:::-;34715:6;;-1:-1:-1;;;;;34715:6:0;;;:22;;;34707:67;;;;;-1:-1:-1;;;34707:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35537:22:0;::::1;35529:73;;;;-1:-1:-1::0;;;35529:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35639:6;::::0;;35618:38:::1;::::0;-1:-1:-1;;;;;35618:38:0;;::::1;::::0;35639:6;::::1;::::0;35618:38:::1;::::0;::::1;35667:6;:17:::0;;-1:-1:-1;;;;;;35667:17:0::1;-1:-1:-1::0;;;;;35667:17:0;;;::::1;::::0;;;::::1;::::0;;35448:244::o;43595:88::-;43640:42;43595:88;:::o;53807:275::-;53872:5;;-1:-1:-1;;;;;53872:5:0;53858:10;:19;53850:38;;;;;-1:-1:-1;;;53850:38:0;;;;;;;;;;;;-1:-1:-1;;;53850:38:0;;;;;;;;;;;;;;;43640:42;-1:-1:-1;;;;;53901:45:0;;53947:6;;53901:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53992:4:0;;53985:37;;;-1:-1:-1;;;53985:37:0;;54016:4;53985:37;;;;;;53967:15;;-1:-1:-1;;;;;;53992:4:0;;;;-1:-1:-1;53985:22:0;;:37;;;;;;;;;;;;;;53992:4;53985:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53985:37:0;54059:5;;54040:4;;53985:37;;-1:-1:-1;54033:41:0;;-1:-1:-1;;;;;54040:4:0;;;;54059:5;53985:37;54033:25;:41::i;38678:20::-;;;-1:-1:-1;;;;;38678:20:0;;:::o;44038:33::-;;;;;;;;;;38705;;;-1:-1:-1;;;;;38705:33:0;;:::o;27963:622::-;28333:10;;;28332:62;;-1:-1:-1;28349:39:0;;;-1:-1:-1;;;28349:39:0;;28373:4;28349:39;;;;-1:-1:-1;;;;;28349:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28349:39:0;:44;28332:62;28324:152;;;;-1:-1:-1;;;28324:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28514:62;;;-1:-1:-1;;;;;28514:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28514:62:0;-1:-1:-1;;;28514:62:0;;;28487:90;;28507:5;;28487:19;:90::i;:::-;27963:622;;;:::o;13228:196::-;13331:12;13363:53;13386:6;13394:4;13400:1;13403:12;13363:22;:53::i;:::-;13356:60;13228:196;-1:-1:-1;;;;13228:196:0:o;48621:512::-;37113:7;;-1:-1:-1;;;37113:7:0;;;;37112:8;37104:37;;;;;-1:-1:-1;;;37104:37:0;;;;;;;;;;;;-1:-1:-1;;;37104:37:0;;;;;;;;;;;;;;;43640:42:::1;-1:-1:-1::0;;;;;48700:35:0::1;;48736:6;;48744:1;48700:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;48777:39:0::1;::::0;;-1:-1:-1;;;48777:39:0;;48810:4:::1;48777:39;::::0;::::1;::::0;;;48757:17:::1;::::0;-1:-1:-1;43381:42:0::1;::::0;-1:-1:-1;48777:24:0::1;::::0;:39;;;;;::::1;::::0;;;;;;;;;43381:42;48777:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;48777:39:0;;-1:-1:-1;48831:13:0;;48827:299:::1;;48861:28;48872:16;48861:10;:28::i;:::-;48904:14;:12;:14::i;:::-;48933:21;48957:15;:13;:15::i;:::-;48933:39;;48987:9;:7;:9::i;:::-;49027:15;49013:11;:29:::0;49075:10:::1;49062:52;49087:13:::0;49102:11:::1;:9;:11::i;:::-;49062:52;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;::::1;48827:299;;37152:1;48621:512:::0;:::o;727:106::-;815:10;727:106;:::o;5325:136::-;5383:7;5410:43;5414:1;5417;5410:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5403:50;;5325:136;;;;;:::o;6215:471::-;6273:7;6518:6;6514:47;;-1:-1:-1;6548:1:0;6541:8;;6514:47;6585:5;;;6589:1;6585;:5;:1;6609:5;;;;;:10;6601:56;;;;-1:-1:-1;;;6601:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7162:132;7220:7;7247:39;7251:1;7254;7247:39;;;;;;;;;;;;;;;;;:3;:39::i;27304:177::-;27414:58;;;-1:-1:-1;;;;;27414:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27414:58:0;-1:-1:-1;;;27414:58:0;;;27387:86;;27407:5;;27387:19;:86::i;37844:120::-;37389:7;;-1:-1:-1;;;37389:7:0;;;;37381:40;;;;;-1:-1:-1;;;37381:40:0;;;;;;;;;;;;-1:-1:-1;;;37381:40:0;;;;;;;;;;;;;;;37913:5:::1;37903:15:::0;;-1:-1:-1;;;;37903:15:0::1;::::0;;37934:22:::1;37943:12;:10;:12::i;:::-;37934:22;::::0;;-1:-1:-1;;;;;37934:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;37844:120::o:0;55259:523::-;55313:4;;55306:49;;-1:-1:-1;;;;;55313:4:0;43640:42;-1:-1:-1;;55306:24:0;:49::i;:::-;55393:9;;55366:50;;43381:42;;-1:-1:-1;;;;;55393:9:0;-1:-1:-1;;55366:26:0;:50::i;:::-;55458:9;;55436:8;;55429:42;;-1:-1:-1;;;;;55436:8:0;;;;55458:9;;55429:28;:42::i;:::-;55511:9;;55489:8;;55482:52;;-1:-1:-1;;;;;55489:8:0;;;;55511:9;-1:-1:-1;;55482:28:0;:52::i;:::-;55576:9;;55554:8;;55547:42;;-1:-1:-1;;;;;55554:8:0;;;;55576:9;;55547:28;:42::i;:::-;55629:9;;55607:8;;55600:52;;-1:-1:-1;;;;;55607:8:0;;;;55629:9;-1:-1:-1;;55600:28:0;:52::i;:::-;55696:9;;55672:10;;55665:44;;-1:-1:-1;;;;;55672:10:0;;;;55696:9;;55665:30;:44::i;:::-;55751:9;;55727:10;;55720:54;;-1:-1:-1;;;;;55727:10:0;;;;55751:9;-1:-1:-1;;55720:30:0;:54::i;4861:181::-;4919:7;4951:5;;;4975:6;;;;4967:46;;;;;-1:-1:-1;;;4967:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;37585:118;37113:7;;-1:-1:-1;;;37113:7:0;;;;37112:8;37104:37;;;;;-1:-1:-1;;;37104:37:0;;;;;;;;;;;;-1:-1:-1;;;37104:37:0;;;;;;;;;;;;;;;37645:7:::1;:14:::0;;-1:-1:-1;;;;37645:14:0::1;-1:-1:-1::0;;;37645:14:0::1;::::0;;37675:20:::1;37682:12;:10;:12::i;55790:308::-:0;55846:4;;55839:39;;-1:-1:-1;;;;;55846:4:0;43640:42;55876:1;55839:24;:39::i;:::-;55916:9;;55889:40;;43381:42;;-1:-1:-1;;;;;55916:9:0;;55889:26;:40::i;:::-;55969:9;;55947:8;;55940:42;;-1:-1:-1;;;;;55947:8:0;;;;55969:9;;55940:28;:42::i;:::-;56022:9;;56000:8;;55993:42;;-1:-1:-1;;;;;56000:8:0;;;;56022:9;;55993:28;:42::i;:::-;56077:9;;56053:10;;56046:44;;-1:-1:-1;;;;;56053:10:0;;;;56077:9;;56046:30;:44::i;29609:761::-;30033:23;30059:69;30087:4;30059:69;;;;;;;;;;;;;;;;;30067:5;-1:-1:-1;;;;;30059:27:0;;;:69;;;;;:::i;:::-;30143:17;;30033:95;;-1:-1:-1;30143:21:0;30139:224;;30285:10;30274:30;;;;;;;;;;;;;;;-1:-1:-1;30274:30:0;30266:85;;;;-1:-1:-1;;;30266:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14605:979;14735:12;14768:18;14779:6;14768:10;:18::i;:::-;14760:60;;;;;-1:-1:-1;;;14760:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14894:12;14908:23;14935:6;-1:-1:-1;;;;;14935:11:0;14955:8;14966:4;14935:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14935:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14893:78;;;;14986:7;14982:595;;;15017:10;-1:-1:-1;15010:17:0;;-1:-1:-1;15010:17:0;14982:595;15131:17;;:21;15127:439;;15394:10;15388:17;15455:15;15442:10;15438:2;15434:19;15427:44;15342:148;15537:12;15530:20;;-1:-1:-1;;;15530:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49166:1337;49260:10;;49253:43;;;-1:-1:-1;;;49253:43:0;;49290:4;49253:43;;;;;;49234:16;;-1:-1:-1;;;;;49260:10:0;;49253:28;;:43;;;;;;;;;;;;;;49260:10;49253:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49253:43:0;;-1:-1:-1;49311:12:0;;49307:165;;49358:9;;-1:-1:-1;;;;;49358:9:0;49340:53;49394:8;49358:9;49407:23;49440:4;49447:12;:3;49455;49447:7;:12::i;:::-;49340:120;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49340:120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49340:120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49340:120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49340:120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49340:120:0;;;;;;;;;;;;-1:-1:-1;49340:120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49307:165;49484:17;49504:57;49556:4;49504:47;49548:2;43381:42;-1:-1:-1;;;;;49504:24:0;;49537:4;49504:39;;;;;;;;;;;;;-1:-1:-1;;;;;49504:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49504:39:0;;:43;:47::i;:57::-;49631:9;;49484:77;;-1:-1:-1;;;;;;49631:9:0;49613:53;49484:77;49631:9;49681:20;49711:4;49718:12;:3;49726;49718:7;:12::i;:::-;49613:118;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49613:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49613:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49613:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49613:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49613:118:0;;;;;;;;;;;;-1:-1:-1;49613:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;49613:118:0;;;;;;;;-1:-1:-1;;;49765:40:0;;49799:4;49765:40;;;;;49744:18;;-1:-1:-1;43277:42:0;;-1:-1:-1;49765:25:0;;-1:-1:-1;49765:40:0;;;;;-1:-1:-1;49765:40:0;;-1:-1:-1;49765:40:0;;;;;;;43277:42;49765:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49765:40:0;49857:7;;49765:40;;-1:-1:-1;49818:21:0;;49842:36;;42295:4;;49842:23;;49765:40;;49842:14;:23::i;:36::-;49818:60;-1:-1:-1;49974:61:0;43277:42;50003:16;49818:60;49974:28;:61::i;:::-;50102:23;50128:38;42295:4;50128:25;50143:9;;50128:10;:14;;:25;;;;:::i;:38::-;50282:18;;50102:64;;-1:-1:-1;50253:65:0;;43277:42;;-1:-1:-1;;;;;50282:18:0;50102:64;50253:28;:65::i;:::-;50331:19;50353:41;42295:4;50353:28;:10;42254:3;50353:14;:28::i;:41::-;50473:8;;50331:63;;-1:-1:-1;50444:51:0;;43277:42;;-1:-1:-1;;;;;50473:8:0;50331:63;50444:28;:51::i;:::-;49166:1337;;;;;;;:::o;50566:711::-;50610:18;50631:46;50675:1;43381:42;-1:-1:-1;;;;;50631:24:0;;50664:4;50631:39;;;;;;;;;;;;;-1:-1:-1;;;;;50631:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50631:39:0;;:43;:46::i;:::-;50694:8;;50610:67;;-1:-1:-1;;;;;;50694:8:0;43381:42;50694:18;50690:157;;50747:9;;50729:106;;-1:-1:-1;;;50729:106:0;;;;;;;;50747:9;50729:106;;;;;;50824:4;50729:106;;;;;;50831:3;50729:106;;;;;;;;;;;;;50798:16;50729:106;;;;;;;;-1:-1:-1;;;;;50747:9:0;;;;50729:53;;50783:10;;50798:16;;50824:4;50831:3;50729:106;;;;;;50798:16;;50729:106;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50729:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50729:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;50729:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;50729:106:0;;;;;;;;;;;;-1:-1:-1;50729:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50690:157;50863:8;;-1:-1:-1;;;;;50863:8:0;43381:42;50863:18;50859:157;;50916:9;;50898:106;;-1:-1:-1;;;50898:106:0;;;;;;;;50916:9;50898:106;;;;;;50993:4;50898:106;;;;;;51000:3;50898:106;;;;;;;;;;;;;50967:16;50898:106;;;;;;;;-1:-1:-1;;;;;50916:9:0;;;;50898:53;;50952:10;;50967:16;;50993:4;51000:3;50898:106;;;;;;50967:16;;50898:106;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50898:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50898:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;50898:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;50898:106:0;;;;;;;;;;;;-1:-1:-1;50898:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50859:157;51052:8;;51045:41;;;-1:-1:-1;;;51045:41:0;;51080:4;51045:41;;;;;;51028:14;;-1:-1:-1;;;;;51052:8:0;;51045:26;;:41;;;;;;;;;;;;;;51052:8;51045:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51045:41:0;51121:8;;51114:41;;;-1:-1:-1;;;51114:41:0;;51149:4;51114:41;;;;;;51045;;-1:-1:-1;51097:14:0;;-1:-1:-1;;;;;51121:8:0;;;;51114:26;;:41;;;;;51045;;51114;;;;;;;;51121:8;51114:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51114:41:0;51184:9;;51208:8;;51218;;51166:103;;;-1:-1:-1;;;51166:103:0;;-1:-1:-1;;;;;51208:8:0;;;51166:103;;;;51218:8;;;51166:103;;;;;;;;;;;;;;;;51184:9;51166:103;;;;;;;;;;51258:4;51166:103;;;;51265:3;51166:103;;;;;51114:41;;-1:-1:-1;51184:9:0;;;51166:41;;:103;;;;;;;;;;;;;;;51184:9;;51166:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50566:711:0:o;5764:192::-;5850:7;5886:12;5878:6;;;;5870:29;;;;-1:-1:-1;;;5870:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5922:5:0;;;5764:192::o;7790:278::-;7876:7;7911:12;7904:5;7896:28;;;;-1:-1:-1;;;7896:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7935:9;7951:1;7947;:5;;;;;;;7790:278;-1:-1:-1;;;;;7790:278:0:o;10113:619::-;10173:4;10641:20;;10484:66;10681:23;;;;;;:42;;-1:-1:-1;;10708:15:0;;;10673:51;-1:-1:-1;;10113:619:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://b3f239b0f98bd27e5cfd572893839d083fa2458a818b64b2dec44ab9224d304a
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in GLMR
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.