Source Code
Overview
MOVR Balance
MOVR Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 811 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw All | 9746772 | 385 days ago | IN | 0 MOVR | 0.00133307 | ||||
| Withdraw All | 6917973 | 597 days ago | IN | 0 MOVR | 0.00039743 | ||||
| Withdraw All | 6465551 | 662 days ago | IN | 0 MOVR | 0.00061348 | ||||
| Withdraw All | 6357889 | 678 days ago | IN | 0 MOVR | 0.00044466 | ||||
| Withdraw All | 6335333 | 681 days ago | IN | 0 MOVR | 0.00047815 | ||||
| Withdraw All | 5344384 | 829 days ago | IN | 0 MOVR | 0.00026613 | ||||
| Withdraw All | 5339609 | 830 days ago | IN | 0 MOVR | 0.00029033 | ||||
| Withdraw All | 5339555 | 830 days ago | IN | 0 MOVR | 0.00058107 | ||||
| Withdraw All | 5272465 | 840 days ago | IN | 0 MOVR | 0.00058107 | ||||
| Withdraw All | 4996329 | 879 days ago | IN | 0 MOVR | 0.00023998 | ||||
| Withdraw All | 4984429 | 881 days ago | IN | 0 MOVR | 0.00057637 | ||||
| Withdraw All | 4969467 | 883 days ago | IN | 0 MOVR | 0.00055619 | ||||
| Withdraw All | 4912046 | 891 days ago | IN | 0 MOVR | 0.00023998 | ||||
| Withdraw All | 4906120 | 892 days ago | IN | 0 MOVR | 0.00025198 | ||||
| Withdraw All | 4862970 | 898 days ago | IN | 0 MOVR | 0.00059516 | ||||
| Withdraw All | 4853461 | 899 days ago | IN | 0 MOVR | 0.00057637 | ||||
| Withdraw All | 4819994 | 904 days ago | IN | 0 MOVR | 0.00055619 | ||||
| Withdraw All | 4765951 | 912 days ago | IN | 0 MOVR | 0.00057637 | ||||
| Withdraw All | 4720255 | 918 days ago | IN | 0 MOVR | 0.00056628 | ||||
| Withdraw All | 4708306 | 920 days ago | IN | 0 MOVR | 0.00056664 | ||||
| Withdraw All | 4697172 | 921 days ago | IN | 0 MOVR | 0.00057662 | ||||
| Withdraw | 4684184 | 923 days ago | IN | 0 MOVR | 0.00057675 | ||||
| Withdraw All | 4658625 | 927 days ago | IN | 0 MOVR | 0.00052744 | ||||
| Withdraw All | 4644513 | 929 days ago | IN | 0 MOVR | 0.0004864 | ||||
| Deposit All | 4643036 | 929 days ago | IN | 0 MOVR | 0.00103045 |
View more zero value Internal Transactions in Advanced View mode
Cross-Chain Transactions
Loading...
Loading
Contract Name:
BeefyVaultV6
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/**
*Submitted for verification at moonriver.moonscan.io on 2021-11-11
*/
/**
*Submitted for verification at moonriver.moonscan.io on 2021-11-03
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
pragma abicoder v1;
/**
* @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/token/ERC20/extensions/[email protected]
pragma solidity ^0.8.0;
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// File @openzeppelin/contracts/utils/[email protected]
pragma solidity ^0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with 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) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
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]
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The defaut value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override 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 this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
_approve(sender, _msgSender(), currentAllowance - amount);
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] + 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) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
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);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
_balances[sender] = senderBalance - amount;
_balances[recipient] += 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 += amount;
_balances[account] += 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);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
_balances[account] = accountBalance - amount;
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}
// File @openzeppelin/contracts/utils/[email protected]
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: value }(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File @openzeppelin/contracts/token/ERC20/utils/[email protected]
pragma solidity ^0.8.0;
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using 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) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) { // Return data is optional
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
// File @openzeppelin/contracts/utils/math/[email protected]
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @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 a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* 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).
*
* 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) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// File @openzeppelin/contracts/access/[email protected]
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// File @openzeppelin/contracts/security/[email protected]
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor () {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// File contracts/BIFI/interfaces/beefy/IStrategy.sol
pragma solidity ^0.8.4;
interface IStrategy {
function vault() external view returns (address);
function want() external view returns (IERC20);
function beforeDeposit() external;
function deposit() external;
function withdraw(uint256) external;
function balanceOf() external view returns (uint256);
function balanceOfWant() external view returns (uint256);
function balanceOfPool() external view returns (uint256);
function harvest() external;
function retireStrat() external;
function panic() external;
function pause() external;
function unpause() external;
function paused() external view returns (bool);
function unirouter() external view returns (address);
}
// File contracts/BIFI/vaults/BeefyVaultV6.sol
pragma solidity ^0.8.4;
/**
* @dev Implementation of a vault to deposit funds for yield optimizing.
* This is the contract that receives funds and that users interface with.
* The yield optimizing strategy itself is implemented in a separate 'Strategy.sol' contract.
*/
contract BeefyVaultV6 is ERC20, Ownable, ReentrancyGuard {
using SafeERC20 for IERC20;
using SafeMath for uint256;
struct StratCandidate {
address implementation;
uint proposedTime;
}
// The last proposed strategy to switch to.
StratCandidate public stratCandidate;
// The strategy currently in use by the vault.
IStrategy public strategy;
// The minimum time it has to pass before a strat candidate can be approved.
uint256 public immutable approvalDelay;
event NewStratCandidate(address implementation);
event UpgradeStrat(address implementation);
/**
* @dev Sets the value of {token} to the token that the vault will
* hold as underlying value. It initializes the vault's own 'moo' token.
* This token is minted when someone does a deposit. It is burned in order
* to withdraw the corresponding portion of the underlying assets.
* @param _strategy the address of the strategy.
* @param _name the name of the vault token.
* @param _symbol the symbol of the vault token.
* @param _approvalDelay the delay before a new strat can be approved.
*/
constructor (
IStrategy _strategy,
string memory _name,
string memory _symbol,
uint256 _approvalDelay
) ERC20(
_name,
_symbol
) {
strategy = _strategy;
approvalDelay = _approvalDelay;
}
function want() public view returns (IERC20) {
return IERC20(strategy.want());
}
/**
* @dev It calculates the total underlying value of {token} held by the system.
* It takes into account the vault contract balance, the strategy contract balance
* and the balance deployed in other contracts as part of the strategy.
*/
function balance() public view returns (uint) {
return want().balanceOf(address(this)).add(IStrategy(strategy).balanceOf());
}
/**
* @dev Custom logic in here for how much the vault allows to be borrowed.
* We return 100% of tokens for now. Under certain conditions we might
* want to keep some of the system funds at hand in the vault, instead
* of putting them to work.
*/
function available() public view returns (uint256) {
return want().balanceOf(address(this));
}
/**
* @dev Function for various UIs to display the current value of one of our yield tokens.
* Returns an uint256 with 18 decimals of how much underlying asset one vault share represents.
*/
function getPricePerFullShare() public view returns (uint256) {
return totalSupply() == 0 ? 1e18 : balance().mul(1e18).div(totalSupply());
}
/**
* @dev A helper function to call deposit() with all the sender's funds.
*/
function depositAll() external {
deposit(want().balanceOf(msg.sender));
}
/**
* @dev The entrypoint of funds into the system. People deposit with this function
* into the vault. The vault is then in charge of sending funds into the strategy.
*/
function deposit(uint _amount) public nonReentrant {
strategy.beforeDeposit();
uint256 _pool = balance();
want().safeTransferFrom(msg.sender, address(this), _amount);
earn();
uint256 _after = balance();
_amount = _after.sub(_pool); // Additional check for deflationary tokens
uint256 shares = 0;
if (totalSupply() == 0) {
shares = _amount;
} else {
shares = (_amount.mul(totalSupply())).div(_pool);
}
_mint(msg.sender, shares);
}
/**
* @dev Function to send funds into the strategy and put them to work. It's primarily called
* by the vault's deposit() function.
*/
function earn() public {
uint _bal = available();
want().safeTransfer(address(strategy), _bal);
strategy.deposit();
}
/**
* @dev A helper function to call withdraw() with all the sender's funds.
*/
function withdrawAll() external {
withdraw(balanceOf(msg.sender));
}
/**
* @dev Function to exit the system. The vault will withdraw the required tokens
* from the strategy and pay up the token holder. A proportional number of IOU
* tokens are burned in the process.
*/
function withdraw(uint256 _shares) public {
uint256 r = (balance().mul(_shares)).div(totalSupply());
_burn(msg.sender, _shares);
uint b = want().balanceOf(address(this));
if (b < r) {
uint _withdraw = r.sub(b);
strategy.withdraw(_withdraw);
uint _after = want().balanceOf(address(this));
uint _diff = _after.sub(b);
if (_diff < _withdraw) {
r = b.add(_diff);
}
}
want().safeTransfer(msg.sender, r);
}
/**
* @dev Sets the candidate for the new strat to use with this vault.
* @param _implementation The address of the candidate strategy.
*/
function proposeStrat(address _implementation) public onlyOwner {
require(address(this) == IStrategy(_implementation).vault(), "Proposal not valid for this Vault");
stratCandidate = StratCandidate({
implementation: _implementation,
proposedTime: block.timestamp
});
emit NewStratCandidate(_implementation);
}
/**
* @dev It switches the active strat for the strat candidate. After upgrading, the
* candidate implementation is set to the 0x00 address, and proposedTime to a time
* happening in +100 years for safety.
*/
function upgradeStrat() public onlyOwner {
require(stratCandidate.implementation != address(0), "There is no candidate");
require(stratCandidate.proposedTime.add(approvalDelay) < block.timestamp, "Delay has not passed");
emit UpgradeStrat(stratCandidate.implementation);
strategy.retireStrat();
strategy = IStrategy(stratCandidate.implementation);
stratCandidate.implementation = address(0);
stratCandidate.proposedTime = 5000000000;
earn();
}
/**
* @dev Rescues random funds stuck that the strat can't handle.
* @param _token address of the token to rescue.
*/
function inCaseTokensGetStuck(address _token) external onlyOwner {
require(_token != address(want()), "!token");
uint256 amount = IERC20(_token).balanceOf(address(this));
IERC20(_token).safeTransfer(msg.sender, amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IStrategy","name":"_strategy","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_approvalDelay","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"implementation","type":"address"}],"name":"NewStratCandidate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"implementation","type":"address"}],"name":"UpgradeStrat","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"approvalDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"available","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getPricePerFullShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"inCaseTokensGetStuck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_implementation","type":"address"}],"name":"proposeStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stratCandidate","outputs":[{"internalType":"address","name":"implementation","type":"address"},{"internalType":"uint256","name":"proposedTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"strategy","outputs":[{"internalType":"contract IStrategy","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upgradeStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"want","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_shares","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60a06040523480156200001157600080fd5b506040516200396938038062003969833981810160405260808110156200003757600080fd5b8101908080519060200190929190805160405193929190846401000000008211156200006257600080fd5b838201915060208201858111156200007957600080fd5b82518660018202830111640100000000821117156200009757600080fd5b8083526020830192505050908051906020019080838360005b83811015620000cd578082015181840152602081019050620000b0565b50505050905090810190601f168015620000fb5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011f57600080fd5b838201915060208201858111156200013657600080fd5b82518660018202830111640100000000821117156200015457600080fd5b8083526020830192505050908051906020019080838360005b838110156200018a5780820151818401526020810190506200016d565b50505050905090810190601f168015620001b85780820380516001836020036101000a031916815260200191505b506040526020018051906020019092919050505082828160039080519060200190620001e692919062000316565b508060049080519060200190620001ff92919062000316565b5050506000620002146200030e60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600160068190555083600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060808181525050505050506200042b565b600033905090565b8280546200032490620003c6565b90600052602060002090601f01602090048101928262000348576000855562000394565b82601f106200036357805160ff191683800117855562000394565b8280016001018555821562000394579182015b828111156200039357825182559160200191906001019062000376565b5b509050620003a39190620003a7565b5090565b5b80821115620003c2576000816000905550600101620003a8565b5090565b60006002820490506001821680620003df57607f821691505b60208210811415620003f657620003f5620003fc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805161351b6200044e60003960008181611da50152611f44015261351b6000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063853828b611610104578063b6b55f25116100a2578063def68a9c11610071578063def68a9c146107f6578063e2d1e75c1461083a578063e668524414610858578063f2fde38b14610862576101cf565b8063b6b55f251461073c578063d389800f1461076a578063dd62ed3e14610774578063de5f6268146107ec576101cf565b8063a457c2d7116100de578063a457c2d714610622578063a8c62e7614610686578063a9059cbb146106ba578063b69ef8a81461071e576101cf565b8063853828b6146105615780638da5cb5b1461056b57806395d89b411461059f576101cf565b8063395093511161017157806370a082311161014b57806370a08231146104a6578063715018a6146104fe57806376dfabb81461050857806377c7b8fc14610543576101cf565b806339509351146103e057806348a0d754146104445780635b12ff9b14610462576101cf565b80631f1fcd51116101ad5780631f1fcd51146102d957806323b872dd1461030d5780632e1a7d4d14610391578063313ce567146103bf576101cf565b806306fdde03146101d4578063095ea7b31461025757806318160ddd146102bb575b600080fd5b6101dc6108a6565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561021c578082015181840152602081019050610201565b50505050905090810190601f1680156102495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102a36004803603604081101561026d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610938565b60405180821515815260200191505060405180910390f35b6102c3610956565b6040518082815260200191505060405180910390f35b6102e1610960565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103796004803603606081101561032357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a0a565b60405180821515815260200191505060405180910390f35b6103bd600480360360208110156103a757600080fd5b8101908080359060200190929190505050610b21565b005b6103c7610dd8565b604051808260ff16815260200191505060405180910390f35b61042c600480360360408110156103f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610de1565b60405180821515815260200191505060405180910390f35b61044c610e8d565b6040518082815260200191505060405180910390f35b6104a46004803603602081101561047857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f3d565b005b6104e8600480360360208110156104bc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111c1565b6040518082815260200191505060405180910390f35b610506611209565b005b610510611379565b604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390f35b61054b6113ab565b6040518082815260200191505060405180910390f35b61056961140a565b005b61057361141d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105a7611447565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105e75780820151818401526020810190506105cc565b50505050905090810190601f1680156106145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61066e6004803603604081101561063857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114d9565b60405180821515815260200191505060405180910390f35b61068e6115e3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610706600480360360408110156106d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611609565b60405180821515815260200191505060405180910390f35b610726611627565b6040518082815260200191505060405180910390f35b6107686004803603602081101561075257600080fd5b810190808035906020019092919050505061178b565b005b610772611957565b005b6107d66004803603604081101561078a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a3c565b6040518082815260200191505060405180910390f35b6107f4611ac3565b005b6108386004803603602081101561080c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b76565b005b610842611da3565b6040518082815260200191505060405180910390f35b610860611dc7565b005b6108a46004803603602081101561087857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121a2565b005b6060600380546108b59061324b565b80601f01602080910402602001604051908101604052809291908181526020018280546108e19061324b565b801561092e5780601f106109035761010080835404028352916020019161092e565b820191906000526020600020905b81548152906001019060200180831161091157829003601f168201915b5050505050905090565b600061094c610945612397565b848461239f565b6001905092915050565b6000600254905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631f1fcd516040518163ffffffff1660e01b815260040160206040518083038186803b1580156109ca57600080fd5b505afa1580156109de573d6000803e3d6000fd5b505050506040513d60208110156109f457600080fd5b8101908080519060200190929190505050905090565b6000610a17848484612596565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a62612397565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610af8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806134056028913960400191505060405180910390fd5b610b1585610b04612397565b8584610b10919061320d565b61239f565b60019150509392505050565b6000610b56610b2e610956565b610b4884610b3a611627565b61285790919063ffffffff16565b61286d90919063ffffffff16565b9050610b623383612883565b6000610b6c610960565b73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610bd257600080fd5b505afa158015610be6573d6000803e3d6000fd5b505050506040513d6020811015610bfc57600080fd5b8101908080519060200190929190505050905081811015610da1576000610c2c8284612a8390919063ffffffff16565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610ca357600080fd5b505af1158015610cb7573d6000803e3d6000fd5b505050506000610cc5610960565b73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610d2b57600080fd5b505afa158015610d3f573d6000803e3d6000fd5b505050506040513d6020811015610d5557600080fd5b810190808051906020019092919050505090506000610d7d8483612a8390919063ffffffff16565b905082811015610d9d57610d9a8185612a9990919063ffffffff16565b94505b5050505b610dd33383610dae610960565b73ffffffffffffffffffffffffffffffffffffffff16612aaf9092919063ffffffff16565b505050565b60006012905090565b6000610e83610dee612397565b848460016000610dfc612397565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e7e919061312c565b61239f565b6001905092915050565b6000610e97610960565b73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610efd57600080fd5b505afa158015610f11573d6000803e3d6000fd5b505050506040513d6020811015610f2757600080fd5b8101908080519060200190929190505050905090565b610f45612397565b73ffffffffffffffffffffffffffffffffffffffff16610f6361141d565b73ffffffffffffffffffffffffffffffffffffffff1614610fec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663fbfa77cf6040518163ffffffff1660e01b815260040160206040518083038186803b15801561103257600080fd5b505afa158015611046573d6000803e3d6000fd5b505050506040513d602081101561105c57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16146110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806133e46021913960400191505060405180910390fd5b60405180604001604052808273ffffffffffffffffffffffffffffffffffffffff16815260200142815250600760008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101559050507f1aae2ec5647db56da2d513de40528ba3565c6057525637050660c4323bbac7df81604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611211612397565b73ffffffffffffffffffffffffffffffffffffffff1661122f61141d565b73ffffffffffffffffffffffffffffffffffffffff16146112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60078060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b6000806113b6610956565b146113fb576113f66113c6610956565b6113e8670de0b6b3a76400006113da611627565b61285790919063ffffffff16565b61286d90919063ffffffff16565b611405565b670de0b6b3a76400005b905090565b61141b611416336111c1565b610b21565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546114569061324b565b80601f01602080910402602001604051908101604052809291908181526020018280546114829061324b565b80156114cf5780601f106114a4576101008083540402835291602001916114cf565b820191906000526020600020905b8154815290600101906020018083116114b257829003601f168201915b5050505050905090565b600080600160006114e8612397565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806134c16025913960400191505060405180910390fd5b6115d86115c6612397565b8585846115d3919061320d565b61239f565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061161d611616612397565b8484612596565b6001905092915050565b6000611786600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663722713f76040518163ffffffff1660e01b815260040160206040518083038186803b15801561169457600080fd5b505afa1580156116a8573d6000803e3d6000fd5b505050506040513d60208110156116be57600080fd5b81019080805190602001909291905050506116d7610960565b73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561173d57600080fd5b505afa158015611751573d6000803e3d6000fd5b505050506040513d602081101561176757600080fd5b8101908080519060200190929190505050612a9990919063ffffffff16565b905090565b60026006541415611804576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600681905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663573fef0a6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561187657600080fd5b505af115801561188a573d6000803e3d6000fd5b505050506000611898611627565b90506118ce3330846118a8610960565b73ffffffffffffffffffffffffffffffffffffffff16612b51909392919063ffffffff16565b6118d6611957565b60006118e0611627565b90506118f58282612a8390919063ffffffff16565b9250600080611902610956565b14156119105783905061193f565b61193c8361192e61191f610956565b8761285790919063ffffffff16565b61286d90919063ffffffff16565b90505b6119493382612c12565b505050600160068190555050565b6000611961610e8d565b90506119b7600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611992610960565b73ffffffffffffffffffffffffffffffffffffffff16612aaf9092919063ffffffff16565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0e30db06040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611a2157600080fd5b505af1158015611a35573d6000803e3d6000fd5b5050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611b74611ace610960565b73ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611b3457600080fd5b505afa158015611b48573d6000803e3d6000fd5b505050506040513d6020811015611b5e57600080fd5b810190808051906020019092919050505061178b565b565b611b7e612397565b73ffffffffffffffffffffffffffffffffffffffff16611b9c61141d565b73ffffffffffffffffffffffffffffffffffffffff1614611c25576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611c2d610960565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f21746f6b656e000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d3757600080fd5b505afa158015611d4b573d6000803e3d6000fd5b505050506040513d6020811015611d6157600080fd5b81019080805190602001909291905050509050611d9f33828473ffffffffffffffffffffffffffffffffffffffff16612aaf9092919063ffffffff16565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611dcf612397565b73ffffffffffffffffffffffffffffffffffffffff16611ded61141d565b73ffffffffffffffffffffffffffffffffffffffff1614611e76576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f3e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5468657265206973206e6f2063616e646964617465000000000000000000000081525060200191505060405180910390fd5b42611f777f0000000000000000000000000000000000000000000000000000000000000000600760010154612a9990919063ffffffff16565b10611fea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f44656c617920686173206e6f742070617373656400000000000000000000000081525060200191505060405180910390fd5b7f7f37d440e85aba7fbf641c4bda5ca4ef669a80bffaacde2aa8d9feb1b048c82c600760000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fb6177876040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156120c657600080fd5b505af11580156120da573d6000803e3d6000fd5b50505050600760000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600760000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555064012a05f2006007600101819055506121a0611957565b565b6121aa612397565b73ffffffffffffffffffffffffffffffffffffffff166121c861141d565b73ffffffffffffffffffffffffffffffffffffffff1614612251576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806133506026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612425576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806134736024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806133766022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561261c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061344e6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061330b6023913960400191505060405180910390fd5b6126ad838383612d99565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612749576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806133986026913960400191505060405180910390fd5b8181612755919061320d565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127e5919061312c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a350505050565b6000818361286591906131b3565b905092915050565b6000818361287b9190613182565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061342d6021913960400191505060405180910390fd5b61291582600083612d99565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156129b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061332e6022913960400191505060405180910390fd5b81816129bd919061320d565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612a11919061320d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3505050565b60008183612a91919061320d565b905092915050565b60008183612aa7919061312c565b905092915050565b612b4c8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612d9e565b505050565b612c0c846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612d9e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cb5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612cc160008383612d99565b8060026000828254612cd3919061312c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d28919061312c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b6000612e00826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612e8d9092919063ffffffff16565b9050600081511115612e8857808060200190516020811015612e2157600080fd5b8101908080519060200190929190505050612e87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613497602a913960400191505060405180910390fd5b5b505050565b6060612e9c8484600085612ea5565b90509392505050565b606082471015612f00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806133be6026913960400191505060405180910390fd5b612f098561304d565b612f7b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310612fca5780518252602082019150602081019050602083039250612fa7565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461302c576040519150601f19603f3d011682016040523d82523d6000602084013e613031565b606091505b5091509150613041828286613060565b92505050949350505050565b600080823b905060008111915050919050565b6060831561307057829050613125565b6000835111156130835782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156130ea5780820151818401526020810190506130cf565b50505050905090810190601f1680156131175780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b600061313782613241565b915061314283613241565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131775761317661327d565b5b828201905092915050565b600061318d82613241565b915061319883613241565b9250826131a8576131a76132ac565b5b828204905092915050565b60006131be82613241565b91506131c983613241565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132025761320161327d565b5b828202905092915050565b600061321882613241565b915061322383613241565b9250828210156132365761323561327d565b5b828203905092915050565b6000819050919050565b6000600282049050600182168061326357607f821691505b60208210811415613277576132766132db565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fdfe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c50726f706f73616c206e6f742076616c696420666f722074686973205661756c7445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122036d89e374dd6799afcb83ccf19ea3c2885e51120c57042e81775b34c0fdabfd964736f6c634300080400330000000000000000000000008db043df791a5d9b640e0919a007994e3635291e000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000546000000000000000000000000000000000000000000000000000000000000000124d6f6f204d6f6f6e72697665722042494649000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000106d6f6f4d6f6f6e72697665724249464900000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063853828b611610104578063b6b55f25116100a2578063def68a9c11610071578063def68a9c146107f6578063e2d1e75c1461083a578063e668524414610858578063f2fde38b14610862576101cf565b8063b6b55f251461073c578063d389800f1461076a578063dd62ed3e14610774578063de5f6268146107ec576101cf565b8063a457c2d7116100de578063a457c2d714610622578063a8c62e7614610686578063a9059cbb146106ba578063b69ef8a81461071e576101cf565b8063853828b6146105615780638da5cb5b1461056b57806395d89b411461059f576101cf565b8063395093511161017157806370a082311161014b57806370a08231146104a6578063715018a6146104fe57806376dfabb81461050857806377c7b8fc14610543576101cf565b806339509351146103e057806348a0d754146104445780635b12ff9b14610462576101cf565b80631f1fcd51116101ad5780631f1fcd51146102d957806323b872dd1461030d5780632e1a7d4d14610391578063313ce567146103bf576101cf565b806306fdde03146101d4578063095ea7b31461025757806318160ddd146102bb575b600080fd5b6101dc6108a6565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561021c578082015181840152602081019050610201565b50505050905090810190601f1680156102495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102a36004803603604081101561026d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610938565b60405180821515815260200191505060405180910390f35b6102c3610956565b6040518082815260200191505060405180910390f35b6102e1610960565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103796004803603606081101561032357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a0a565b60405180821515815260200191505060405180910390f35b6103bd600480360360208110156103a757600080fd5b8101908080359060200190929190505050610b21565b005b6103c7610dd8565b604051808260ff16815260200191505060405180910390f35b61042c600480360360408110156103f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610de1565b60405180821515815260200191505060405180910390f35b61044c610e8d565b6040518082815260200191505060405180910390f35b6104a46004803603602081101561047857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f3d565b005b6104e8600480360360208110156104bc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111c1565b6040518082815260200191505060405180910390f35b610506611209565b005b610510611379565b604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390f35b61054b6113ab565b6040518082815260200191505060405180910390f35b61056961140a565b005b61057361141d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105a7611447565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105e75780820151818401526020810190506105cc565b50505050905090810190601f1680156106145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61066e6004803603604081101561063857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114d9565b60405180821515815260200191505060405180910390f35b61068e6115e3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610706600480360360408110156106d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611609565b60405180821515815260200191505060405180910390f35b610726611627565b6040518082815260200191505060405180910390f35b6107686004803603602081101561075257600080fd5b810190808035906020019092919050505061178b565b005b610772611957565b005b6107d66004803603604081101561078a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a3c565b6040518082815260200191505060405180910390f35b6107f4611ac3565b005b6108386004803603602081101561080c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b76565b005b610842611da3565b6040518082815260200191505060405180910390f35b610860611dc7565b005b6108a46004803603602081101561087857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121a2565b005b6060600380546108b59061324b565b80601f01602080910402602001604051908101604052809291908181526020018280546108e19061324b565b801561092e5780601f106109035761010080835404028352916020019161092e565b820191906000526020600020905b81548152906001019060200180831161091157829003601f168201915b5050505050905090565b600061094c610945612397565b848461239f565b6001905092915050565b6000600254905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631f1fcd516040518163ffffffff1660e01b815260040160206040518083038186803b1580156109ca57600080fd5b505afa1580156109de573d6000803e3d6000fd5b505050506040513d60208110156109f457600080fd5b8101908080519060200190929190505050905090565b6000610a17848484612596565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a62612397565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610af8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806134056028913960400191505060405180910390fd5b610b1585610b04612397565b8584610b10919061320d565b61239f565b60019150509392505050565b6000610b56610b2e610956565b610b4884610b3a611627565b61285790919063ffffffff16565b61286d90919063ffffffff16565b9050610b623383612883565b6000610b6c610960565b73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610bd257600080fd5b505afa158015610be6573d6000803e3d6000fd5b505050506040513d6020811015610bfc57600080fd5b8101908080519060200190929190505050905081811015610da1576000610c2c8284612a8390919063ffffffff16565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610ca357600080fd5b505af1158015610cb7573d6000803e3d6000fd5b505050506000610cc5610960565b73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610d2b57600080fd5b505afa158015610d3f573d6000803e3d6000fd5b505050506040513d6020811015610d5557600080fd5b810190808051906020019092919050505090506000610d7d8483612a8390919063ffffffff16565b905082811015610d9d57610d9a8185612a9990919063ffffffff16565b94505b5050505b610dd33383610dae610960565b73ffffffffffffffffffffffffffffffffffffffff16612aaf9092919063ffffffff16565b505050565b60006012905090565b6000610e83610dee612397565b848460016000610dfc612397565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e7e919061312c565b61239f565b6001905092915050565b6000610e97610960565b73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610efd57600080fd5b505afa158015610f11573d6000803e3d6000fd5b505050506040513d6020811015610f2757600080fd5b8101908080519060200190929190505050905090565b610f45612397565b73ffffffffffffffffffffffffffffffffffffffff16610f6361141d565b73ffffffffffffffffffffffffffffffffffffffff1614610fec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663fbfa77cf6040518163ffffffff1660e01b815260040160206040518083038186803b15801561103257600080fd5b505afa158015611046573d6000803e3d6000fd5b505050506040513d602081101561105c57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16146110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806133e46021913960400191505060405180910390fd5b60405180604001604052808273ffffffffffffffffffffffffffffffffffffffff16815260200142815250600760008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101559050507f1aae2ec5647db56da2d513de40528ba3565c6057525637050660c4323bbac7df81604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611211612397565b73ffffffffffffffffffffffffffffffffffffffff1661122f61141d565b73ffffffffffffffffffffffffffffffffffffffff16146112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60078060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b6000806113b6610956565b146113fb576113f66113c6610956565b6113e8670de0b6b3a76400006113da611627565b61285790919063ffffffff16565b61286d90919063ffffffff16565b611405565b670de0b6b3a76400005b905090565b61141b611416336111c1565b610b21565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546114569061324b565b80601f01602080910402602001604051908101604052809291908181526020018280546114829061324b565b80156114cf5780601f106114a4576101008083540402835291602001916114cf565b820191906000526020600020905b8154815290600101906020018083116114b257829003601f168201915b5050505050905090565b600080600160006114e8612397565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806134c16025913960400191505060405180910390fd5b6115d86115c6612397565b8585846115d3919061320d565b61239f565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061161d611616612397565b8484612596565b6001905092915050565b6000611786600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663722713f76040518163ffffffff1660e01b815260040160206040518083038186803b15801561169457600080fd5b505afa1580156116a8573d6000803e3d6000fd5b505050506040513d60208110156116be57600080fd5b81019080805190602001909291905050506116d7610960565b73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561173d57600080fd5b505afa158015611751573d6000803e3d6000fd5b505050506040513d602081101561176757600080fd5b8101908080519060200190929190505050612a9990919063ffffffff16565b905090565b60026006541415611804576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600681905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663573fef0a6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561187657600080fd5b505af115801561188a573d6000803e3d6000fd5b505050506000611898611627565b90506118ce3330846118a8610960565b73ffffffffffffffffffffffffffffffffffffffff16612b51909392919063ffffffff16565b6118d6611957565b60006118e0611627565b90506118f58282612a8390919063ffffffff16565b9250600080611902610956565b14156119105783905061193f565b61193c8361192e61191f610956565b8761285790919063ffffffff16565b61286d90919063ffffffff16565b90505b6119493382612c12565b505050600160068190555050565b6000611961610e8d565b90506119b7600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611992610960565b73ffffffffffffffffffffffffffffffffffffffff16612aaf9092919063ffffffff16565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0e30db06040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611a2157600080fd5b505af1158015611a35573d6000803e3d6000fd5b5050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611b74611ace610960565b73ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611b3457600080fd5b505afa158015611b48573d6000803e3d6000fd5b505050506040513d6020811015611b5e57600080fd5b810190808051906020019092919050505061178b565b565b611b7e612397565b73ffffffffffffffffffffffffffffffffffffffff16611b9c61141d565b73ffffffffffffffffffffffffffffffffffffffff1614611c25576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611c2d610960565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f21746f6b656e000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d3757600080fd5b505afa158015611d4b573d6000803e3d6000fd5b505050506040513d6020811015611d6157600080fd5b81019080805190602001909291905050509050611d9f33828473ffffffffffffffffffffffffffffffffffffffff16612aaf9092919063ffffffff16565b5050565b7f000000000000000000000000000000000000000000000000000000000000546081565b611dcf612397565b73ffffffffffffffffffffffffffffffffffffffff16611ded61141d565b73ffffffffffffffffffffffffffffffffffffffff1614611e76576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f3e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5468657265206973206e6f2063616e646964617465000000000000000000000081525060200191505060405180910390fd5b42611f777f0000000000000000000000000000000000000000000000000000000000005460600760010154612a9990919063ffffffff16565b10611fea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f44656c617920686173206e6f742070617373656400000000000000000000000081525060200191505060405180910390fd5b7f7f37d440e85aba7fbf641c4bda5ca4ef669a80bffaacde2aa8d9feb1b048c82c600760000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fb6177876040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156120c657600080fd5b505af11580156120da573d6000803e3d6000fd5b50505050600760000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600760000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555064012a05f2006007600101819055506121a0611957565b565b6121aa612397565b73ffffffffffffffffffffffffffffffffffffffff166121c861141d565b73ffffffffffffffffffffffffffffffffffffffff1614612251576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806133506026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612425576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806134736024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806133766022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561261c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061344e6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061330b6023913960400191505060405180910390fd5b6126ad838383612d99565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612749576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806133986026913960400191505060405180910390fd5b8181612755919061320d565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127e5919061312c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a350505050565b6000818361286591906131b3565b905092915050565b6000818361287b9190613182565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061342d6021913960400191505060405180910390fd5b61291582600083612d99565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156129b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061332e6022913960400191505060405180910390fd5b81816129bd919061320d565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612a11919061320d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3505050565b60008183612a91919061320d565b905092915050565b60008183612aa7919061312c565b905092915050565b612b4c8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612d9e565b505050565b612c0c846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612d9e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cb5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612cc160008383612d99565b8060026000828254612cd3919061312c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d28919061312c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b6000612e00826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612e8d9092919063ffffffff16565b9050600081511115612e8857808060200190516020811015612e2157600080fd5b8101908080519060200190929190505050612e87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613497602a913960400191505060405180910390fd5b5b505050565b6060612e9c8484600085612ea5565b90509392505050565b606082471015612f00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806133be6026913960400191505060405180910390fd5b612f098561304d565b612f7b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310612fca5780518252602082019150602081019050602083039250612fa7565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461302c576040519150601f19603f3d011682016040523d82523d6000602084013e613031565b606091505b5091509150613041828286613060565b92505050949350505050565b600080823b905060008111915050919050565b6060831561307057829050613125565b6000835111156130835782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156130ea5780820151818401526020810190506130cf565b50505050905090810190601f1680156131175780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b600061313782613241565b915061314283613241565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131775761317661327d565b5b828201905092915050565b600061318d82613241565b915061319883613241565b9250826131a8576131a76132ac565b5b828204905092915050565b60006131be82613241565b91506131c983613241565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132025761320161327d565b5b828202905092915050565b600061321882613241565b915061322383613241565b9250828210156132365761323561327d565b5b828203905092915050565b6000819050919050565b6000600282049050600182168061326357607f821691505b60208210811415613277576132766132db565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fdfe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c50726f706f73616c206e6f742076616c696420666f722074686973205661756c7445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122036d89e374dd6799afcb83ccf19ea3c2885e51120c57042e81775b34c0fdabfd964736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008db043df791a5d9b640e0919a007994e3635291e000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000546000000000000000000000000000000000000000000000000000000000000000124d6f6f204d6f6f6e72697665722042494649000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000106d6f6f4d6f6f6e72697665724249464900000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _strategy (address): 0x8DB043df791A5D9b640E0919A007994E3635291e
Arg [1] : _name (string): Moo Moonriver BIFI
Arg [2] : _symbol (string): mooMoonriverBIFI
Arg [3] : _approvalDelay (uint256): 21600
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000008db043df791a5d9b640e0919a007994e3635291e
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000005460
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [5] : 4d6f6f204d6f6f6e726976657220424946490000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [7] : 6d6f6f4d6f6f6e72697665724249464900000000000000000000000000000000
Deployed Bytecode Sourcemap
40436:6743:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6578:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8745:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;7698:108;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41911:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;9396:422;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44892:558;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;7540:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;10227:215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42713:108;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45620:378;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;7869:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36046:148;;;:::i;:::-;;40716:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;43043:154;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44572:82;;;:::i;:::-;;35395:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;6797:104;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10945:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40811:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;8209:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42282:140;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43590:561;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44318:149;;;:::i;:::-;;8447:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43301:87;;;:::i;:::-;;46921:255;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40925:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46246:526;;;:::i;:::-;;36349:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6578:100;6632:13;6665:5;6658:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6578:100;:::o;8745:169::-;8828:4;8845:39;8854:12;:10;:12::i;:::-;8868:7;8877:6;8845:8;:39::i;:::-;8902:4;8895:11;;8745:169;;;;:::o;7698:108::-;7759:7;7786:12;;7779:19;;7698:108;:::o;41911:94::-;41948:6;41981:8;;;;;;;;;;;:13;;;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41967:30;;41911:94;:::o;9396:422::-;9502:4;9519:36;9529:6;9537:9;9548:6;9519:9;:36::i;:::-;9568:24;9595:11;:19;9607:6;9595:19;;;;;;;;;;;;;;;:33;9615:12;:10;:12::i;:::-;9595:33;;;;;;;;;;;;;;;;9568:60;;9667:6;9647:16;:26;;9639:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9729:57;9738:6;9746:12;:10;:12::i;:::-;9779:6;9760:16;:25;;;;:::i;:::-;9729:8;:57::i;:::-;9806:4;9799:11;;;9396:422;;;;;:::o;44892:558::-;44945:9;44957:43;44986:13;:11;:13::i;:::-;44958:22;44972:7;44958:9;:7;:9::i;:::-;:13;;:22;;;;:::i;:::-;44957:28;;:43;;;;:::i;:::-;44945:55;;45011:26;45017:10;45029:7;45011:5;:26::i;:::-;45050:6;45059;:4;:6::i;:::-;:16;;;45084:4;45059:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45050:40;;45109:1;45105;:5;45101:295;;;45127:14;45144:8;45150:1;45144;:5;;:8;;;;:::i;:::-;45127:25;;45167:8;;;;;;;;;;;:17;;;45185:9;45167:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45210:11;45224:6;:4;:6::i;:::-;:16;;;45249:4;45224:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45210:45;;45270:10;45283:13;45294:1;45283:6;:10;;:13;;;;:::i;:::-;45270:26;;45323:9;45315:5;:17;45311:74;;;45357:12;45363:5;45357:1;:5;;:12;;;;:::i;:::-;45353:16;;45311:74;45101:295;;;;45408:34;45428:10;45440:1;45408:6;:4;:6::i;:::-;:19;;;;:34;;;;;:::i;:::-;44892:558;;;:::o;7540:93::-;7598:5;7623:2;7616:9;;7540:93;:::o;10227:215::-;10315:4;10332:80;10341:12;:10;:12::i;:::-;10355:7;10401:10;10364:11;:25;10376:12;:10;:12::i;:::-;10364:25;;;;;;;;;;;;;;;:34;10390:7;10364:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10332:8;:80::i;:::-;10430:4;10423:11;;10227:215;;;;:::o;42713:108::-;42755:7;42782:6;:4;:6::i;:::-;:16;;;42807:4;42782:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42775:38;;42713:108;:::o;45620:378::-;35626:12;:10;:12::i;:::-;35615:23;;:7;:5;:7::i;:::-;:23;;;35607:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45730:15:::1;45720:32;;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;45703:51;;45711:4;45703:51;;;45695:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45820:118;;;;;;;;45866:15;45820:118;;;;;;45910:15;45820:118;;::::0;45803:14:::1;:135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45956:34;45974:15;45956:34;;;;;;;;;;;;;;;;;;;;45620:378:::0;:::o;7869:127::-;7943:7;7970:9;:18;7980:7;7970:18;;;;;;;;;;;;;;;;7963:25;;7869:127;;;:::o;36046:148::-;35626:12;:10;:12::i;:::-;35615:23;;:7;:5;:7::i;:::-;:23;;;35607:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36153:1:::1;36116:40;;36137:6;;;;;;;;;;;36116:40;;;;;;;;;;;;36184:1;36167:6;;:19;;;;;;;;;;;;;;;;;;36046:148::o:0;40716:36::-;;;;;;;;;;;;;;;;;;;;;;;:::o;43043:154::-;43096:7;43140:1;43123:13;:11;:13::i;:::-;:18;:66;;43151:38;43175:13;:11;:13::i;:::-;43151:19;43165:4;43151:9;:7;:9::i;:::-;:13;;:19;;;;:::i;:::-;:23;;:38;;;;:::i;:::-;43123:66;;;43144:4;43123:66;43116:73;;43043:154;:::o;44572:82::-;44615:31;44624:21;44634:10;44624:9;:21::i;:::-;44615:8;:31::i;:::-;44572:82::o;35395:87::-;35441:7;35468:6;;;;;;;;;;;35461:13;;35395:87;:::o;6797:104::-;6853:13;6886:7;6879:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6797:104;:::o;10945:377::-;11038:4;11055:24;11082:11;:25;11094:12;:10;:12::i;:::-;11082:25;;;;;;;;;;;;;;;:34;11108:7;11082:34;;;;;;;;;;;;;;;;11055:61;;11155:15;11135:16;:35;;11127:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11223:67;11232:12;:10;:12::i;:::-;11246:7;11274:15;11255:16;:34;;;;:::i;:::-;11223:8;:67::i;:::-;11310:4;11303:11;;;10945:377;;;;:::o;40811:25::-;;;;;;;;;;;;;:::o;8209:175::-;8295:4;8312:42;8322:12;:10;:12::i;:::-;8336:9;8347:6;8312:9;:42::i;:::-;8372:4;8365:11;;8209:175;;;;:::o;42282:140::-;42322:4;42346:68;42392:8;;;;;;;;;;;42382:29;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42346:6;:4;:6::i;:::-;:16;;;42371:4;42346:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:35;;:68;;;;:::i;:::-;42339:75;;42282:140;:::o;43590:561::-;38351:1;38948:7;;:19;;38940:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38351:1;39081:7;:18;;;;43652:8:::1;;;;;;;;;;;:22;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;43689:13;43705:9;:7;:9::i;:::-;43689:25;;43725:59;43749:10;43769:4;43776:7;43725:6;:4;:6::i;:::-;:23;;;;:59;;;;;;:::i;:::-;43795:6;:4;:6::i;:::-;43812:14;43829:9;:7;:9::i;:::-;43812:26;;43859:17;43870:5;43859:6;:10;;:17;;;;:::i;:::-;43849:27;;43931:14;43981:1:::0;43964:13:::1;:11;:13::i;:::-;:18;43960:148;;;44008:7;43999:16;;43960:148;;;44057:39;44090:5;44058:26;44070:13;:11;:13::i;:::-;44058:7;:11;;:26;;;;:::i;:::-;44057:32;;:39;;;;:::i;:::-;44048:48;;43960:148;44118:25;44124:10;44136:6;44118:5;:25::i;:::-;39112:1;;;38307::::0;39260:7;:22;;;;43590:561;:::o;44318:149::-;44352:9;44364:11;:9;:11::i;:::-;44352:23;;44386:44;44414:8;;;;;;;;;;;44425:4;44386:6;:4;:6::i;:::-;:19;;;;:44;;;;;:::i;:::-;44441:8;;;;;;;;;;;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44318:149;:::o;8447:151::-;8536:7;8563:11;:18;8575:5;8563:18;;;;;;;;;;;;;;;:27;8582:7;8563:27;;;;;;;;;;;;;;;;8556:34;;8447:151;;;;:::o;43301:87::-;43343:37;43351:6;:4;:6::i;:::-;:16;;;43368:10;43351:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43343:7;:37::i;:::-;43301:87::o;46921:255::-;35626:12;:10;:12::i;:::-;35615:23;;:7;:5;:7::i;:::-;:23;;;35607:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47023:6:::1;:4;:6::i;:::-;47005:25;;:6;:25;;;;46997:44;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;47054:14;47078:6;47071:24;;;47104:4;47071:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;47054:56;;47121:47;47149:10;47161:6;47128;47121:27;;;;:47;;;;;:::i;:::-;35686:1;46921:255:::0;:::o;40925:38::-;;;:::o;46246:526::-;35626:12;:10;:12::i;:::-;35615:23;;:7;:5;:7::i;:::-;:23;;;35607:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46347:1:::1;46306:43;;:14;:29;;;;;;;;;;;;:43;;;;46298:77;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;46443:15;46394:46;46426:13;46394:14;:27;;;:31;;:46;;;;:::i;:::-;:64;46386:97;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;46501:43;46514:14;:29;;;;;;;;;;;;46501:43;;;;;;;;;;;;;;;;;;;;46557:8;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;46611:14;:29;;;;;;;;;;;;46590:8;;:51;;;;;;;;;;;;;;;;;;46692:1;46652:14;:29;;;:42;;;;;;;;;;;;;;;;;;46735:10;46705:14;:27;;:40;;;;46758:6;:4;:6::i;:::-;46246:526::o:0;36349:244::-;35626:12;:10;:12::i;:::-;35615:23;;:7;:5;:7::i;:::-;:23;;;35607:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36458:1:::1;36438:22;;:8;:22;;;;36430:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36548:8;36519:38;;36540:6;;;;;;;;;;;36519:38;;;;;;;;;;;;36577:8;36568:6;;:17;;;;;;;;;;;;;;;;;;36349:244:::0;:::o;4163:98::-;4216:7;4243:10;4236:17;;4163:98;:::o;14301:346::-;14420:1;14403:19;;:5;:19;;;;14395:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14501:1;14482:21;;:7;:21;;;;14474:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14585:6;14555:11;:18;14567:5;14555:18;;;;;;;;;;;;;;;:27;14574:7;14555:27;;;;;;;;;;;;;;;:36;;;;14623:7;14607:32;;14616:5;14607:32;;;14632:6;14607:32;;;;;;;;;;;;;;;;;;14301:346;;;:::o;11812:604::-;11936:1;11918:20;;:6;:20;;;;11910:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12020:1;11999:23;;:9;:23;;;;11991:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12075:47;12096:6;12104:9;12115:6;12075:20;:47::i;:::-;12135:21;12159:9;:17;12169:6;12159:17;;;;;;;;;;;;;;;;12135:41;;12212:6;12195:13;:23;;12187:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12308:6;12292:13;:22;;;;:::i;:::-;12272:9;:17;12282:6;12272:17;;;;;;;;;;;;;;;:42;;;;12349:6;12325:9;:20;12335:9;12325:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12390:9;12373:35;;12382:6;12373:35;;;12401:6;12373:35;;;;;;;;;;;;;;;;;;11812:604;;;;:::o;30745:98::-;30803:7;30834:1;30830;:5;;;;:::i;:::-;30823:12;;30745:98;;;;:::o;31144:::-;31202:7;31233:1;31229;:5;;;;:::i;:::-;31222:12;;31144:98;;;;:::o;13369:494::-;13472:1;13453:21;;:7;:21;;;;13445:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13525:49;13546:7;13563:1;13567:6;13525:20;:49::i;:::-;13587:22;13612:9;:18;13622:7;13612:18;;;;;;;;;;;;;;;;13587:43;;13667:6;13649:14;:24;;13641:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13761:6;13744:14;:23;;;;:::i;:::-;13723:9;:18;13733:7;13723:18;;;;;;;;;;;;;;;:44;;;;13794:6;13778:12;;:22;;;;;;;:::i;:::-;;;;;;;;13844:1;13818:37;;13827:7;13818:37;;;13848:6;13818:37;;;;;;;;;;;;;;;;;;13369:494;;;:::o;30388:98::-;30446:7;30477:1;30473;:5;;;;:::i;:::-;30466:12;;30388:98;;;;:::o;30007:::-;30065:7;30096:1;30092;:5;;;;:::i;:::-;30085:12;;30007:98;;;;:::o;24009:177::-;24092:86;24112:5;24142:23;;;24167:2;24171:5;24119:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24092:19;:86::i;:::-;24009:177;;;:::o;24194:205::-;24295:96;24315:5;24345:27;;;24374:4;24380:2;24384:5;24322:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24295:19;:96::i;:::-;24194:205;;;;:::o;12698:338::-;12801:1;12782:21;;:7;:21;;;;12774:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12852:49;12881:1;12885:7;12894:6;12852:20;:49::i;:::-;12930:6;12914:12;;:22;;;;;;;:::i;:::-;;;;;;;;12969:6;12947:9;:18;12957:7;12947:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;13012:7;12991:37;;13008:1;12991:37;;;13021:6;12991:37;;;;;;;;;;;;;;;;;;12698:338;;:::o;15250:92::-;;;;:::o;26443:761::-;26867:23;26893:69;26921:4;26893:69;;;;;;;;;;;;;;;;;26901:5;26893:27;;;;:69;;;;;:::i;:::-;26867:95;;26997:1;26977:10;:17;:21;26973:224;;;27119:10;27108:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27100:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26973:224;26443:761;;;:::o;19037:195::-;19140:12;19172:52;19194:6;19202:4;19208:1;19211:12;19172:21;:52::i;:::-;19165:59;;19037:195;;;;;:::o;20089:530::-;20216:12;20274:5;20249:21;:30;;20241:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20341:18;20352:6;20341:10;:18::i;:::-;20333:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20467:12;20481:23;20508:6;:11;;20528:5;20536:4;20508:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20466:75;;;;20559:52;20577:7;20586:10;20598:12;20559:17;:52::i;:::-;20552:59;;;;20089:530;;;;;;:::o;16119:422::-;16179:4;16387:12;16498:7;16486:20;16478:28;;16532:1;16525:4;:8;16518:15;;;16119:422;;;:::o;22629:742::-;22744:12;22773:7;22769:595;;;22804:10;22797:17;;;;22769:595;22938:1;22918:10;:17;:21;22914:439;;;23181:10;23175:17;23242:15;23229:10;23225:2;23221:19;23214:44;23129:148;23324:12;23317:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22629:742;;;;;;:::o;7:305:1:-;47:3;66:20;84:1;66:20;:::i;:::-;61:25;;100:20;118:1;100:20;:::i;:::-;95:25;;254:1;186:66;182:74;179:1;176:81;173:2;;;260:18;;:::i;:::-;173:2;304:1;301;297:9;290:16;;51:261;;;;:::o;318:185::-;358:1;375:20;393:1;375:20;:::i;:::-;370:25;;409:20;427:1;409:20;:::i;:::-;404:25;;448:1;438:2;;453:18;;:::i;:::-;438:2;495:1;492;488:9;483:14;;360:143;;;;:::o;509:348::-;549:7;572:20;590:1;572:20;:::i;:::-;567:25;;606:20;624:1;606:20;:::i;:::-;601:25;;794:1;726:66;722:74;719:1;716:81;711:1;704:9;697:17;693:105;690:2;;;801:18;;:::i;:::-;690:2;849:1;846;842:9;831:20;;557:300;;;;:::o;863:191::-;903:4;923:20;941:1;923:20;:::i;:::-;918:25;;957:20;975:1;957:20;:::i;:::-;952:25;;996:1;993;990:8;987:2;;;1001:18;;:::i;:::-;987:2;1046:1;1043;1039:9;1031:17;;908:146;;;;:::o;1060:77::-;1097:7;1126:5;1115:16;;1105:32;;;:::o;1143:320::-;1187:6;1224:1;1218:4;1214:12;1204:22;;1271:1;1265:4;1261:12;1292:18;1282:2;;1348:4;1340:6;1336:17;1326:27;;1282:2;1410;1402:6;1399:14;1379:18;1376:38;1373:2;;;1429:18;;:::i;:::-;1373:2;1194:269;;;;:::o;1469:180::-;1517:77;1514:1;1507:88;1614:4;1611:1;1604:15;1638:4;1635:1;1628:15;1655:180;1703:77;1700:1;1693:88;1800:4;1797:1;1790:15;1824:4;1821:1;1814:15;1841:180;1889:77;1886:1;1879:88;1986:4;1983:1;1976:15;2010:4;2007:1;2000:15
Swarm Source
ipfs://36d89e374dd6799afcb83ccf19ea3c2885e51120c57042e81775b34c0fdabfd9
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in MOVR
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.