Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
SettV1
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-04-18
*/
// Sources flattened with hardhat v2.0.3 https://hardhat.org
// File deps/@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20Upgradeable {
/**
* @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 deps/@openzeppelin/contracts-upgradeable/math/SafeMathUpgradeable.sol
pragma solidity ^0.6.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMathUpgradeable {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// File deps/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol
pragma solidity ^0.6.2;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @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 in extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return _functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
return _functionCallWithValue(target, data, value, errorMessage);
}
function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File deps/@openzeppelin/contracts-upgradeable/token/ERC20/SafeERC20Upgradeable.sol
pragma solidity ^0.6.0;
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20Upgradeable {
using SafeMathUpgradeable for uint256;
using AddressUpgradeable for address;
function safeTransfer(IERC20Upgradeable token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IERC20Upgradeable 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(IERC20Upgradeable 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(IERC20Upgradeable token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).add(value);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20Upgradeable token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20Upgradeable 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 deps/@openzeppelin/contracts-upgradeable/proxy/Initializable.sol
pragma solidity >=0.4.24 <0.7.0;
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
*/
bool private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Modifier to protect an initializer function from being invoked twice.
*/
modifier initializer() {
require(_initializing || _isConstructor() || !_initialized, "Initializable: contract is already initialized");
bool isTopLevelCall = !_initializing;
if (isTopLevelCall) {
_initializing = true;
_initialized = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
}
}
/// @dev Returns true if and only if the function is running in the constructor
function _isConstructor() private view returns (bool) {
// extcodesize checks the size of the code stored in an address, and
// address returns the current address. Since the code is still not
// deployed when running a constructor, any checks on its code size will
// yield zero, making it an effective way to detect if a contract is
// under construction or not.
address self = address(this);
uint256 cs;
// solhint-disable-next-line no-inline-assembly
assembly { cs := extcodesize(self) }
return cs == 0;
}
}
// File deps/@openzeppelin/contracts-upgradeable/GSN/ContextUpgradeable.sol
pragma solidity ^0.6.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract ContextUpgradeable is Initializable {
function __Context_init() internal initializer {
__Context_init_unchained();
}
function __Context_init_unchained() internal initializer {
}
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
uint256[50] private __gap;
}
// File deps/@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol
pragma solidity ^0.6.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable {
using SafeMathUpgradeable for uint256;
using AddressUpgradeable for address;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for {name} and {symbol}, initializes {decimals} with
* a default value of 18.
*
* To select a different value for {decimals}, use {_setupDecimals}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
function __ERC20_init(string memory name, string memory symbol) internal initializer {
__Context_init_unchained();
__ERC20_init_unchained(name, symbol);
}
function __ERC20_init_unchained(string memory name, string memory symbol) internal initializer {
_name = name;
_symbol = symbol;
_decimals = 18;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
* called.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20};
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Sets {decimals} to a value other than the default one of 18.
*
* WARNING: This function should only be called from the constructor. Most
* applications that interact with token contracts will not expect
* {decimals} to ever change, and may work incorrectly if it does.
*/
function _setupDecimals(uint8 decimals_) internal {
_decimals = decimals_;
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
uint256[44] private __gap;
}
// File deps/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol
pragma solidity ^0.6.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract OwnableUpgradeable is Initializable, ContextUpgradeable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal initializer {
__Context_init_unchained();
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal initializer {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
uint256[49] private __gap;
}
// File interfaces/badger/IController.sol
pragma solidity >=0.5.0 <0.8.0;
interface IController {
function withdraw(address, uint256) external;
function strategies(address) external view returns (address);
function balanceOf(address) external view returns (uint256);
function earn(address, uint256) external;
function want(address) external view returns (address);
function rewards() external view returns (address);
function vaults(address) external view returns (address);
}
// File interfaces/erc20/IERC20Detailed.sol
pragma solidity ^0.6.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20Detailed {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
function name() external view returns (string memory);
function symbol() external view returns (string memory);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// File contracts/badger-sett/SettAccessControl.sol
pragma solidity ^0.6.11;
/*
Common base for permissioned roles throughout Sett ecosystem
*/
contract SettAccessControl is Initializable {
address public governance;
address public strategist;
address public keeper;
// ===== MODIFIERS =====
function _onlyGovernance() internal view {
require(msg.sender == governance, "onlyGovernance");
}
function _onlyGovernanceOrStrategist() internal view {
require(msg.sender == strategist || msg.sender == governance, "onlyGovernanceOrStrategist");
}
function _onlyAuthorizedActors() internal view {
require(msg.sender == keeper || msg.sender == governance, "onlyAuthorizedActors");
}
// ===== PERMISSIONED ACTIONS =====
/// @notice Change strategist address
/// @notice Can only be changed by governance itself
function setStrategist(address _strategist) external {
_onlyGovernance();
strategist = _strategist;
}
/// @notice Change keeper address
/// @notice Can only be changed by governance itself
function setKeeper(address _keeper) external {
_onlyGovernance();
keeper = _keeper;
}
/// @notice Change governance address
/// @notice Can only be changed by governance itself
function setGovernance(address _governance) public {
_onlyGovernance();
governance = _governance;
}
uint256[50] private __gap;
}
// File contracts/badger-sett/SettAccessControlDefended.sol
pragma solidity ^0.6.11;
/*
Add ability to prevent unwanted contract access to Sett permissions
*/
contract SettAccessControlDefended is SettAccessControl {
mapping (address => bool) public approved;
function approveContractAccess(address account) external {
_onlyGovernance();
approved[account] = true;
}
function revokeContractAccess(address account) external {
_onlyGovernance();
approved[account] = false;
}
function _defend() internal view returns (bool) {
require(approved[msg.sender] || msg.sender == tx.origin, "Access denied for caller");
}
uint256[50] private __gap;
}
// File contracts/badger-sett/SettV1.sol
pragma solidity ^0.6.11;
/*
Source: https://github.com/iearn-finance/yearn-protocol/blob/develop/contracts/vaults/yVault.sol
This sett contract is for temporarily adding a depositFor() method to V1 setts (e.g. rencrv, tbtc, sbtc etc).
TODO: Merge this upgradeable sett into respective sett upgrade path once sett upgrades PR lands.
*/
contract SettV1 is ERC20Upgradeable, SettAccessControlDefended {
using SafeERC20Upgradeable for IERC20Upgradeable;
using AddressUpgradeable for address;
using SafeMathUpgradeable for uint256;
IERC20Upgradeable public token;
uint256 public min;
uint256 public constant max = 10000;
address public controller;
mapping(address => uint256) public blockLock;
string internal constant _defaultNamePrefix = "Badger Sett ";
string internal constant _symbolSymbolPrefix = "b";
event FullPricePerShareUpdated(uint256 value, uint256 indexed timestamp, uint256 indexed blockNumber);
function initialize(
address _token,
address _controller,
address _governance,
address _keeper,
bool _overrideTokenName,
string memory _namePrefix,
string memory _symbolPrefix
) public initializer {
IERC20Detailed namedToken = IERC20Detailed(_token);
string memory tokenName = namedToken.name();
string memory tokenSymbol = namedToken.symbol();
string memory name;
string memory symbol;
if (_overrideTokenName) {
name = string(abi.encodePacked(_namePrefix, tokenName));
symbol = string(abi.encodePacked(_symbolPrefix, tokenSymbol));
} else {
name = string(abi.encodePacked(_defaultNamePrefix, tokenName));
symbol = string(abi.encodePacked(_symbolSymbolPrefix, tokenSymbol));
}
__ERC20_init(name, symbol);
token = IERC20Upgradeable(_token);
governance = _governance;
strategist = address(0);
keeper = _keeper;
controller = _controller;
min = 9500;
emit FullPricePerShareUpdated(getPricePerFullShare(), now, block.number);
}
/// ===== Modifiers =====
function _onlyController() internal view {
require(msg.sender == controller, "onlyController");
}
function _blockLocked() internal view {
require(blockLock[msg.sender] < block.number, "blockLocked");
}
/// ===== View Functions =====
function getPricePerFullShare() public view returns (uint256) {
if (totalSupply() == 0) {
return 1e18;
}
return balance().mul(1e18).div(totalSupply());
}
/// @notice Return the total balance of the underlying token within the system
/// @notice Sums the balance in the Sett, the Controller, and the Strategy
function balance() public view returns (uint256) {
return token.balanceOf(address(this)).add(IController(controller).balanceOf(address(token)));
}
/// @notice Defines how much of the Setts' underlying can be borrowed by the Strategy for use
/// @notice Custom logic in here for how much the vault allows to be borrowed
/// @notice Sets minimum required on-hand to keep small withdrawals cheap
function available() public view returns (uint256) {
return token.balanceOf(address(this)).mul(min).div(max);
}
/// ===== Public Actions =====
/// @notice Deposit assets into the Sett, and return corresponding shares to the user
/// @notice Only callable by EOA accounts that pass the _defend() check
function deposit(uint256 _amount) public {
_defend();
_blockLocked();
_lockForBlock(msg.sender);
_deposit(_amount);
}
/// @notice Deposit assets into the Sett, and transfer corresponding shares to the recipient
/// @notice Only callable by EOA accounts that pass the _defend() check
function depositFor(address recipient, uint256 _amount) public {
_defend();
_blockLocked();
// Lock for recipient so receiver cannot perform any other actions within the block.
_lockForBlock(recipient);
_depositFor(recipient, _amount);
}
/// @notice Convenience function: Deposit entire balance of asset into the Sett, and return corresponding shares to the user
/// @notice Only callable by EOA accounts that pass the _defend() check
function depositAll() external {
_defend();
_blockLocked();
_lockForBlock(msg.sender);
_deposit(token.balanceOf(msg.sender));
}
/// @notice No rebalance implementation for lower fees and faster swaps
function withdraw(uint256 _shares) public {
_defend();
_blockLocked();
_lockForBlock(msg.sender);
_withdraw(_shares);
}
/// @notice Convenience function: Withdraw all shares of the sender
function withdrawAll() external {
_defend();
_blockLocked();
_lockForBlock(msg.sender);
_withdraw(balanceOf(msg.sender));
}
/// ===== Permissioned Actions: Governance =====
/// @notice Set minimum threshold of underlying that must be deposited in strategy
/// @notice Can only be changed by governance
function setMin(uint256 _min) external {
_onlyGovernance();
min = _min;
}
/// @notice Change controller address
/// @notice Can only be changed by governance
function setController(address _controller) public {
_onlyGovernance();
controller = _controller;
}
/// ===== Permissioned Actions: Controller =====
/// @notice Used to swap any borrowed reserve over the debt limit to liquidate to 'token'
/// @notice Only controller can trigger harvests
function harvest(address reserve, uint256 amount) external {
_onlyController();
require(reserve != address(token), "token");
IERC20Upgradeable(reserve).safeTransfer(controller, amount);
}
/// ===== Permissioned Functions: Trusted Actors =====
/// @notice Transfer the underlying available to be claimed to the controller
/// @notice The controller will deposit into the Strategy for yield-generating activities
/// @notice Permissionless operation
function earn() public {
_onlyAuthorizedActors();
uint256 _bal = available();
token.safeTransfer(controller, _bal);
IController(controller).earn(address(token), _bal);
}
/// @dev Emit event tracking current full price per share
/// @dev Provides a pure on-chain way of approximating APY
function trackFullPricePerShare() external {
_onlyAuthorizedActors();
emit FullPricePerShareUpdated(getPricePerFullShare(), now, block.number);
}
/// ===== Internal Implementations =====
// @dev deposit for msg.sender
function _deposit(uint256 _amount) internal {
_depositFor(msg.sender, _amount);
}
/// @dev Calculate the number of shares to issue for a given deposit
/// @dev This is based on the realized value of underlying assets between Sett & associated Strategy
function _depositFor(address recipient, uint256 _amount) internal {
uint256 _pool = balance();
uint256 _before = token.balanceOf(address(this));
token.safeTransferFrom(msg.sender, address(this), _amount);
uint256 _after = token.balanceOf(address(this));
_amount = _after.sub(_before); // Additional check for deflationary tokens
uint256 shares = 0;
if (totalSupply() == 0) {
shares = _amount;
} else {
shares = (_amount.mul(totalSupply())).div(_pool);
}
_mint(recipient, shares);
}
// No rebalance implementation for lower fees and faster swaps
function _withdraw(uint256 _shares) internal {
uint256 r = (balance().mul(_shares)).div(totalSupply());
_burn(msg.sender, _shares);
// Check balance
uint256 b = token.balanceOf(address(this));
if (b < r) {
uint256 _toWithdraw = r.sub(b);
IController(controller).withdraw(address(token), _toWithdraw);
uint256 _after = token.balanceOf(address(this));
uint256 _diff = _after.sub(b);
if (_diff < _toWithdraw) {
r = b.add(_diff);
}
}
token.safeTransfer(msg.sender, r);
}
function _lockForBlock(address account) internal {
blockLock[account] = block.number;
}
/// ===== ERC20 Overrides =====
/// @dev Add blockLock to transfers, users cannot transfer tokens in the same block as a deposit or withdrawal.
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_blockLocked();
return super.transfer(recipient, amount);
}
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_blockLocked();
return super.transferFrom(sender, recipient, amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"uint256","name":"value","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"FullPricePerShareUpdated","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"},{"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":[{"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":[{"internalType":"address","name":"account","type":"address"}],"name":"approveContractAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"approved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"blockLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"depositFor","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":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"reserve","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"harvest","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":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_controller","type":"address"},{"internalType":"address","name":"_governance","type":"address"},{"internalType":"address","name":"_keeper","type":"address"},{"internalType":"bool","name":"_overrideTokenName","type":"bool"},{"internalType":"string","name":"_namePrefix","type":"string"},{"internalType":"string","name":"_symbolPrefix","type":"string"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"keeper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"min","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"revokeContractAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"setController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"setKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_min","type":"uint256"}],"name":"setMin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_strategist","type":"address"}],"name":"setStrategist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strategist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20Upgradeable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"trackFullPricePerShare","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_shares","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b50612b55806100206000396000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c806377c7b8fc1161013b578063b6b55f25116100b8578063de5f62681161007c578063de5f62681461069a578063e77b5ad6146106a2578063f77c4791146107fa578063f889794514610802578063fc0c546a1461080a5761023d565b8063b6b55f25146105fb578063c7b9d53014610618578063d389800f1461063e578063d8b964e614610646578063dd62ed3e1461066c5761023d565b8063a457c2d7116100ff578063a457c2d71461056d578063a9059cbb14610599578063ab033ea9146105c5578063aced1661146105eb578063b69ef8a8146105f35761023d565b806377c7b8fc146105095780637c61e86514610511578063853828b61461053757806392eefe9b1461053f57806395d89b41146105655761023d565b8063313ce567116101c95780635aa6e6751161018d5780635aa6e675146104875780636ac5db191461048f5780636c3618651461049757806370a08231146104bd578063748747e6146104e35761023d565b8063313ce56714610410578063395093511461042e57806345dc3dd81461045a57806348a0d754146104775780634a157c7b1461047f5761023d565b80631fe4a686116102105780631fe4a6861461034757806323b872dd1461036b578063269ac051146103a15780632e1a7d4d146103c75780632f4f21e2146103e45761023d565b8063018ee9b71461024257806306fdde0314610270578063095ea7b3146102ed57806318160ddd1461032d575b600080fd5b61026e6004803603604081101561025857600080fd5b506001600160a01b038135169060200135610812565b005b610278610883565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b257818101518382015260200161029a565b50505050905090810190601f1680156102df5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103196004803603604081101561030357600080fd5b506001600160a01b03813516906020013561091a565b604080519115158252519081900360200190f35b610335610938565b60408051918252519081900360200190f35b61034f61093e565b604080516001600160a01b039092168252519081900360200190f35b6103196004803603606081101561038157600080fd5b506001600160a01b0381358116916020810135909116906040013561094d565b610335600480360360208110156103b757600080fd5b50356001600160a01b031661096a565b61026e600480360360208110156103dd57600080fd5b503561097c565b61026e600480360360408110156103fa57600080fd5b506001600160a01b0381351690602001356109a2565b6104186109c6565b6040805160ff9092168252519081900360200190f35b6103196004803603604081101561044457600080fd5b506001600160a01b0381351690602001356109cf565b61026e6004803603602081101561047057600080fd5b5035610a22565b610335610a2f565b61026e610ac9565b61034f610b0f565b610335610b1e565b61026e600480360360208110156104ad57600080fd5b50356001600160a01b0316610b24565b610335600480360360208110156104d357600080fd5b50356001600160a01b0316610b50565b61026e600480360360208110156104f957600080fd5b50356001600160a01b0316610b6b565b610335610b95565b61026e6004803603602081101561052757600080fd5b50356001600160a01b0316610bd7565b61026e610c00565b61026e6004803603602081101561055557600080fd5b50356001600160a01b0316610c2d565b610278610c57565b6103196004803603604081101561058357600080fd5b506001600160a01b038135169060200135610cb8565b610319600480360360408110156105af57600080fd5b506001600160a01b038135169060200135610d20565b61026e600480360360208110156105db57600080fd5b50356001600160a01b0316610d3b565b61034f610d65565b610335610d74565b61026e6004803603602081101561061157600080fd5b5035610e71565b61026e6004803603602081101561062e57600080fd5b50356001600160a01b0316610e94565b61026e610ebe565b6103196004803603602081101561065c57600080fd5b50356001600160a01b0316610f63565b6103356004803603604081101561068257600080fd5b506001600160a01b0381358116916020013516610f78565b61026e610fa3565b61026e600480360360e08110156106b857600080fd5b6001600160a01b0382358116926020810135821692604082013583169260608301351691608081013515159181019060c0810160a0820135600160201b81111561070157600080fd5b82018360208201111561071357600080fd5b803590602001918460018302840111600160201b8311171561073457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561078657600080fd5b82018360208201111561079857600080fd5b803590602001918460018302840111600160201b831117156107b957600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061103a945050505050565b61034f61175a565b610335611769565b61034f61176f565b61081a61177e565b60cd546001600160a01b0383811691161415610865576040805162461bcd60e51b81526020600482015260056024820152643a37b5b2b760d91b604482015290519081900360640190fd5b60cf5461087f906001600160a01b038481169116836117ce565b5050565b60368054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561090f5780601f106108e45761010080835404028352916020019161090f565b820191906000526020600020905b8154815290600101906020018083116108f257829003601f168201915b505050505090505b90565b600061092e610927611825565b8484611829565b5060015b92915050565b60355490565b6066546001600160a01b031681565b6000610957611915565b610962848484611966565b949350505050565b60d06020526000908152604090205481565b6109846119e8565b5061098d611915565b61099633611a56565b61099f81611a72565b50565b6109aa6119e8565b506109b3611915565b6109bc82611a56565b61087f8282611c4f565b60385460ff1690565b600061092e6109dc611825565b84610a1d85603460006109ed611825565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611db6565b611829565b610a2a611e10565b60ce55565b60ce5460cd54604080516370a0823160e01b81523060048201529051600093610ac49361271093610abe936001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610a8c57600080fd5b505afa158015610aa0573d6000803e3d6000fd5b505050506040513d6020811015610ab657600080fd5b505190611e60565b90611eb9565b905090565b610ad1611efb565b43427ffd60e70298d1c5272d3164dec70c527f1c64556cf7ca2dc10bdc753143ffc45b610afc610b95565b60408051918252519081900360200190a3565b6065546001600160a01b031681565b61271081565b610b2c611e10565b6001600160a01b03166000908152609a60205260409020805460ff19166001179055565b6001600160a01b031660009081526033602052604090205490565b610b73611e10565b606780546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b9f610938565b610bb25750670de0b6b3a7640000610917565b610ac4610bbd610938565b610abe670de0b6b3a7640000610bd1610d74565b90611e60565b610bdf611e10565b6001600160a01b03166000908152609a60205260409020805460ff19169055565b610c086119e8565b50610c11611915565b610c1a33611a56565b610c2b610c2633610b50565b611a72565b565b610c35611e10565b60cf80546001600160a01b0319166001600160a01b0392909216919091179055565b60378054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561090f5780601f106108e45761010080835404028352916020019161090f565b600061092e610cc5611825565b84610a1d85604051806060016040528060258152602001612afb6025913960346000610cef611825565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611f66565b6000610d2a611915565b610d348383611ffd565b9392505050565b610d43611e10565b606580546001600160a01b0319166001600160a01b0392909216919091179055565b6067546001600160a01b031681565b60cf5460cd54604080516370a0823160e01b81526001600160a01b0392831660048201529051600093610ac49316916370a08231916024808301926020929190829003018186803b158015610dc857600080fd5b505afa158015610ddc573d6000803e3d6000fd5b505050506040513d6020811015610df257600080fd5b505160cd54604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610e3f57600080fd5b505afa158015610e53573d6000803e3d6000fd5b505050506040513d6020811015610e6957600080fd5b505190611db6565b610e796119e8565b50610e82611915565b610e8b33611a56565b61099f81612011565b610e9c611e10565b606680546001600160a01b0319166001600160a01b0392909216919091179055565b610ec6611efb565b6000610ed0610a2f565b60cf5460cd54919250610ef0916001600160a01b039081169116836117ce565b60cf5460cd546040805163b02bf4b960e01b81526001600160a01b039283166004820152602481018590529051919092169163b02bf4b991604480830192600092919082900301818387803b158015610f4857600080fd5b505af1158015610f5c573d6000803e3d6000fd5b5050505050565b609a6020526000908152604090205460ff1681565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b610fab6119e8565b50610fb4611915565b610fbd33611a56565b60cd54604080516370a0823160e01b81523360048201529051610c2b926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561100957600080fd5b505afa15801561101d573d6000803e3d6000fd5b505050506040513d602081101561103357600080fd5b5051612011565b600054610100900460ff1680611053575061105361201b565b80611061575060005460ff16155b61109c5760405162461bcd60e51b815260040180806020018281038252602e8152602001806129f0602e913960400191505060405180910390fd5b600054610100900460ff161580156110c7576000805460ff1961ff0019909116610100171660011790555b60008890506060816001600160a01b03166306fdde036040518163ffffffff1660e01b815260040160006040518083038186803b15801561110757600080fd5b505afa15801561111b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561114457600080fd5b8101908080516040519392919084600160201b82111561116357600080fd5b90830190602082018581111561117857600080fd5b8251600160201b81118282018810171561119157600080fd5b82525081516020918201929091019080838360005b838110156111be5781810151838201526020016111a6565b50505050905090810190601f1680156111eb5780820380516001836020036101000a031916815260200191505b5060405250505090506060826001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b15801561122f57600080fd5b505afa158015611243573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561126c57600080fd5b8101908080516040519392919084600160201b82111561128b57600080fd5b9083019060208201858111156112a057600080fd5b8251600160201b8111828201881017156112b957600080fd5b82525081516020918201929091019080838360005b838110156112e65781810151838201526020016112ce565b50505050905090810190601f1680156113135780820380516001836020036101000a031916815260200191505b50604052505050905060608088156114905787846040516020018083805190602001908083835b602083106113595780518252601f19909201916020918201910161133a565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106113a15780518252601f199092019160209182019101611382565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915086836040516020018083805190602001908083835b6020831061140c5780518252601f1990920191602091820191016113ed565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106114545780518252601f199092019160209182019101611435565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050611626565b6040518060400160405280600c81526020016b02130b233b2b91029b2ba3a160a51b815250846040516020018083805190602001908083835b602083106114e85780518252601f1990920191602091820191016114c9565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106115305780518252601f199092019160209182019101611511565b51815160209384036101000a60001901801990921691161790526040805192909401828103601f1901835280850185526001808252603160f91b8284019081529551939a509097508a965091019350839291508083835b602083106115a65780518252601f199092019160209182019101611587565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106115ee5780518252601f1990920191602091820191016115cf565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405290505b6116308282612021565b8c60cd60006101000a8154816001600160a01b0302191690836001600160a01b031602179055508a606560006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000606660006101000a8154816001600160a01b0302191690836001600160a01b0316021790555089606760006101000a8154816001600160a01b0302191690836001600160a01b031602179055508b60cf60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555061251c60ce8190555043427ffd60e70298d1c5272d3164dec70c527f1c64556cf7ca2dc10bdc753143ffc45b611728610b95565b60408051918252519081900360200190a350505050508015611750576000805461ff00191690555b5050505050505050565b60cf546001600160a01b031681565b60ce5481565b60cd546001600160a01b031681565b60cf546001600160a01b03163314610c2b576040805162461bcd60e51b815260206004820152600e60248201526d37b7363ca1b7b73a3937b63632b960911b604482015290519081900360640190fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526118209084906120d6565b505050565b3390565b6001600160a01b03831661186e5760405162461bcd60e51b8152600401808060200182810382526024815260200180612aad6024913960400191505060405180910390fd5b6001600160a01b0382166118b35760405162461bcd60e51b81526004018080602001828103825260228152602001806129a86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b33600090815260d060205260409020544311610c2b576040805162461bcd60e51b815260206004820152600b60248201526a189b1bd8dad31bd8dad95960aa1b604482015290519081900360640190fd5b6000611973848484612187565b6119de8461197f611825565b610a1d85604051806060016040528060288152602001612a3f602891396001600160a01b038a166000908152603460205260408120906119bd611825565b6001600160a01b031681526020810191909152604001600020549190611f66565b5060019392505050565b336000908152609a602052604081205460ff1680611a0557503332145b610917576040805162461bcd60e51b815260206004820152601860248201527f4163636573732064656e69656420666f722063616c6c65720000000000000000604482015290519081900360640190fd5b6001600160a01b0316600090815260d060205260409020439055565b6000611a8b611a7f610938565b610abe84610bd1610d74565b9050611a9733836122e4565b60cd54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611ae257600080fd5b505afa158015611af6573d6000803e3d6000fd5b505050506040513d6020811015611b0c57600080fd5b5051905081811015611c38576000611b2483836123e0565b60cf5460cd546040805163f3fef3a360e01b81526001600160a01b03928316600482015260248101859052905193945091169163f3fef3a39160448082019260009290919082900301818387803b158015611b7e57600080fd5b505af1158015611b92573d6000803e3d6000fd5b505060cd54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b158015611be357600080fd5b505afa158015611bf7573d6000803e3d6000fd5b505050506040513d6020811015611c0d57600080fd5b505190506000611c1d82856123e0565b905082811015611c3457611c318482611db6565b94505b5050505b60cd54611820906001600160a01b031633846117ce565b6000611c59610d74565b60cd54604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015611caa57600080fd5b505afa158015611cbe573d6000803e3d6000fd5b505050506040513d6020811015611cd457600080fd5b505160cd54909150611cf1906001600160a01b0316333086612422565b60cd54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611d3c57600080fd5b505afa158015611d50573d6000803e3d6000fd5b505050506040513d6020811015611d6657600080fd5b50519050611d7481836123e0565b93506000611d80610938565b611d8b575083611da4565b611da184610abe611d9a610938565b8890611e60565b90505b611dae8682612482565b505050505050565b600082820183811015610d34576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6065546001600160a01b03163314610c2b576040805162461bcd60e51b815260206004820152600e60248201526d6f6e6c79476f7665726e616e636560901b604482015290519081900360640190fd5b600082611e6f57506000610932565b82820282848281611e7c57fe5b0414610d345760405162461bcd60e51b8152600401808060200182810382526021815260200180612a1e6021913960400191505060405180910390fd5b6000610d3483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612574565b6067546001600160a01b0316331480611f1e57506065546001600160a01b031633145b610c2b576040805162461bcd60e51b81526020600482015260146024820152736f6e6c79417574686f72697a65644163746f727360601b604482015290519081900360640190fd5b60008184841115611ff55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611fba578181015183820152602001611fa2565b50505050905090810190601f168015611fe75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600061092e61200a611825565b8484612187565b61099f3382611c4f565b303b1590565b600054610100900460ff168061203a575061203a61201b565b80612048575060005460ff16155b6120835760405162461bcd60e51b815260040180806020018281038252602e8152602001806129f0602e913960400191505060405180910390fd5b600054610100900460ff161580156120ae576000805460ff1961ff0019909116610100171660011790555b6120b66125d9565b6120c0838361267a565b8015611820576000805461ff0019169055505050565b606061212b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166127529092919063ffffffff16565b8051909150156118205780806020019051602081101561214a57600080fd5b50516118205760405162461bcd60e51b815260040180806020018281038252602a815260200180612ad1602a913960400191505060405180910390fd5b6001600160a01b0383166121cc5760405162461bcd60e51b8152600401808060200182810382526025815260200180612a886025913960400191505060405180910390fd5b6001600160a01b0382166122115760405162461bcd60e51b81526004018080602001828103825260238152602001806129636023913960400191505060405180910390fd5b61221c838383611820565b612259816040518060600160405280602681526020016129ca602691396001600160a01b0386166000908152603360205260409020549190611f66565b6001600160a01b0380851660009081526033602052604080822093909355908416815220546122889082611db6565b6001600160a01b0380841660008181526033602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b0382166123295760405162461bcd60e51b8152600401808060200182810382526021815260200180612a676021913960400191505060405180910390fd5b61233582600083611820565b61237281604051806060016040528060228152602001612986602291396001600160a01b0385166000908152603360205260409020549190611f66565b6001600160a01b03831660009081526033602052604090205560355461239890826123e0565b6035556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610d3483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f66565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261247c9085906120d6565b50505050565b6001600160a01b0382166124dd576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6124e960008383611820565b6035546124f69082611db6565b6035556001600160a01b03821660009081526033602052604090205461251c9082611db6565b6001600160a01b03831660008181526033602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600081836125c35760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611fba578181015183820152602001611fa2565b5060008385816125cf57fe5b0495945050505050565b600054610100900460ff16806125f257506125f261201b565b80612600575060005460ff16155b61263b5760405162461bcd60e51b815260040180806020018281038252602e8152602001806129f0602e913960400191505060405180910390fd5b600054610100900460ff16158015612666576000805460ff1961ff0019909116610100171660011790555b801561099f576000805461ff001916905550565b600054610100900460ff1680612693575061269361201b565b806126a1575060005460ff16155b6126dc5760405162461bcd60e51b815260040180806020018281038252602e8152602001806129f0602e913960400191505060405180910390fd5b600054610100900460ff16158015612707576000805460ff1961ff0019909116610100171660011790555b825161271a9060369060208601906128cf565b50815161272e9060379060208501906128cf565b506038805460ff191660121790558015611820576000805461ff0019169055505050565b606061096284846000856060612767856128c9565b6127b8576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106127f75780518252601f1990920191602091820191016127d8565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612859576040519150601f19603f3d011682016040523d82523d6000602084013e61285e565b606091505b509150915081156128725791506109629050565b8051156128825780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315611fba578181015183820152602001611fa2565b3b151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061291057805160ff191683800117855561293d565b8280016001018555821561293d579182015b8281111561293d578251825591602001919060010190612922565b5061294992915061294d565b5090565b5b80821115612949576000815560010161294e56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ea3556e1c91db98b3c936cc2aa159619d6b4c041fc514d899a44087639c636b464736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061023d5760003560e01c806377c7b8fc1161013b578063b6b55f25116100b8578063de5f62681161007c578063de5f62681461069a578063e77b5ad6146106a2578063f77c4791146107fa578063f889794514610802578063fc0c546a1461080a5761023d565b8063b6b55f25146105fb578063c7b9d53014610618578063d389800f1461063e578063d8b964e614610646578063dd62ed3e1461066c5761023d565b8063a457c2d7116100ff578063a457c2d71461056d578063a9059cbb14610599578063ab033ea9146105c5578063aced1661146105eb578063b69ef8a8146105f35761023d565b806377c7b8fc146105095780637c61e86514610511578063853828b61461053757806392eefe9b1461053f57806395d89b41146105655761023d565b8063313ce567116101c95780635aa6e6751161018d5780635aa6e675146104875780636ac5db191461048f5780636c3618651461049757806370a08231146104bd578063748747e6146104e35761023d565b8063313ce56714610410578063395093511461042e57806345dc3dd81461045a57806348a0d754146104775780634a157c7b1461047f5761023d565b80631fe4a686116102105780631fe4a6861461034757806323b872dd1461036b578063269ac051146103a15780632e1a7d4d146103c75780632f4f21e2146103e45761023d565b8063018ee9b71461024257806306fdde0314610270578063095ea7b3146102ed57806318160ddd1461032d575b600080fd5b61026e6004803603604081101561025857600080fd5b506001600160a01b038135169060200135610812565b005b610278610883565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b257818101518382015260200161029a565b50505050905090810190601f1680156102df5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103196004803603604081101561030357600080fd5b506001600160a01b03813516906020013561091a565b604080519115158252519081900360200190f35b610335610938565b60408051918252519081900360200190f35b61034f61093e565b604080516001600160a01b039092168252519081900360200190f35b6103196004803603606081101561038157600080fd5b506001600160a01b0381358116916020810135909116906040013561094d565b610335600480360360208110156103b757600080fd5b50356001600160a01b031661096a565b61026e600480360360208110156103dd57600080fd5b503561097c565b61026e600480360360408110156103fa57600080fd5b506001600160a01b0381351690602001356109a2565b6104186109c6565b6040805160ff9092168252519081900360200190f35b6103196004803603604081101561044457600080fd5b506001600160a01b0381351690602001356109cf565b61026e6004803603602081101561047057600080fd5b5035610a22565b610335610a2f565b61026e610ac9565b61034f610b0f565b610335610b1e565b61026e600480360360208110156104ad57600080fd5b50356001600160a01b0316610b24565b610335600480360360208110156104d357600080fd5b50356001600160a01b0316610b50565b61026e600480360360208110156104f957600080fd5b50356001600160a01b0316610b6b565b610335610b95565b61026e6004803603602081101561052757600080fd5b50356001600160a01b0316610bd7565b61026e610c00565b61026e6004803603602081101561055557600080fd5b50356001600160a01b0316610c2d565b610278610c57565b6103196004803603604081101561058357600080fd5b506001600160a01b038135169060200135610cb8565b610319600480360360408110156105af57600080fd5b506001600160a01b038135169060200135610d20565b61026e600480360360208110156105db57600080fd5b50356001600160a01b0316610d3b565b61034f610d65565b610335610d74565b61026e6004803603602081101561061157600080fd5b5035610e71565b61026e6004803603602081101561062e57600080fd5b50356001600160a01b0316610e94565b61026e610ebe565b6103196004803603602081101561065c57600080fd5b50356001600160a01b0316610f63565b6103356004803603604081101561068257600080fd5b506001600160a01b0381358116916020013516610f78565b61026e610fa3565b61026e600480360360e08110156106b857600080fd5b6001600160a01b0382358116926020810135821692604082013583169260608301351691608081013515159181019060c0810160a0820135600160201b81111561070157600080fd5b82018360208201111561071357600080fd5b803590602001918460018302840111600160201b8311171561073457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561078657600080fd5b82018360208201111561079857600080fd5b803590602001918460018302840111600160201b831117156107b957600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061103a945050505050565b61034f61175a565b610335611769565b61034f61176f565b61081a61177e565b60cd546001600160a01b0383811691161415610865576040805162461bcd60e51b81526020600482015260056024820152643a37b5b2b760d91b604482015290519081900360640190fd5b60cf5461087f906001600160a01b038481169116836117ce565b5050565b60368054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561090f5780601f106108e45761010080835404028352916020019161090f565b820191906000526020600020905b8154815290600101906020018083116108f257829003601f168201915b505050505090505b90565b600061092e610927611825565b8484611829565b5060015b92915050565b60355490565b6066546001600160a01b031681565b6000610957611915565b610962848484611966565b949350505050565b60d06020526000908152604090205481565b6109846119e8565b5061098d611915565b61099633611a56565b61099f81611a72565b50565b6109aa6119e8565b506109b3611915565b6109bc82611a56565b61087f8282611c4f565b60385460ff1690565b600061092e6109dc611825565b84610a1d85603460006109ed611825565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611db6565b611829565b610a2a611e10565b60ce55565b60ce5460cd54604080516370a0823160e01b81523060048201529051600093610ac49361271093610abe936001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610a8c57600080fd5b505afa158015610aa0573d6000803e3d6000fd5b505050506040513d6020811015610ab657600080fd5b505190611e60565b90611eb9565b905090565b610ad1611efb565b43427ffd60e70298d1c5272d3164dec70c527f1c64556cf7ca2dc10bdc753143ffc45b610afc610b95565b60408051918252519081900360200190a3565b6065546001600160a01b031681565b61271081565b610b2c611e10565b6001600160a01b03166000908152609a60205260409020805460ff19166001179055565b6001600160a01b031660009081526033602052604090205490565b610b73611e10565b606780546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b9f610938565b610bb25750670de0b6b3a7640000610917565b610ac4610bbd610938565b610abe670de0b6b3a7640000610bd1610d74565b90611e60565b610bdf611e10565b6001600160a01b03166000908152609a60205260409020805460ff19169055565b610c086119e8565b50610c11611915565b610c1a33611a56565b610c2b610c2633610b50565b611a72565b565b610c35611e10565b60cf80546001600160a01b0319166001600160a01b0392909216919091179055565b60378054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561090f5780601f106108e45761010080835404028352916020019161090f565b600061092e610cc5611825565b84610a1d85604051806060016040528060258152602001612afb6025913960346000610cef611825565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611f66565b6000610d2a611915565b610d348383611ffd565b9392505050565b610d43611e10565b606580546001600160a01b0319166001600160a01b0392909216919091179055565b6067546001600160a01b031681565b60cf5460cd54604080516370a0823160e01b81526001600160a01b0392831660048201529051600093610ac49316916370a08231916024808301926020929190829003018186803b158015610dc857600080fd5b505afa158015610ddc573d6000803e3d6000fd5b505050506040513d6020811015610df257600080fd5b505160cd54604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610e3f57600080fd5b505afa158015610e53573d6000803e3d6000fd5b505050506040513d6020811015610e6957600080fd5b505190611db6565b610e796119e8565b50610e82611915565b610e8b33611a56565b61099f81612011565b610e9c611e10565b606680546001600160a01b0319166001600160a01b0392909216919091179055565b610ec6611efb565b6000610ed0610a2f565b60cf5460cd54919250610ef0916001600160a01b039081169116836117ce565b60cf5460cd546040805163b02bf4b960e01b81526001600160a01b039283166004820152602481018590529051919092169163b02bf4b991604480830192600092919082900301818387803b158015610f4857600080fd5b505af1158015610f5c573d6000803e3d6000fd5b5050505050565b609a6020526000908152604090205460ff1681565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b610fab6119e8565b50610fb4611915565b610fbd33611a56565b60cd54604080516370a0823160e01b81523360048201529051610c2b926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561100957600080fd5b505afa15801561101d573d6000803e3d6000fd5b505050506040513d602081101561103357600080fd5b5051612011565b600054610100900460ff1680611053575061105361201b565b80611061575060005460ff16155b61109c5760405162461bcd60e51b815260040180806020018281038252602e8152602001806129f0602e913960400191505060405180910390fd5b600054610100900460ff161580156110c7576000805460ff1961ff0019909116610100171660011790555b60008890506060816001600160a01b03166306fdde036040518163ffffffff1660e01b815260040160006040518083038186803b15801561110757600080fd5b505afa15801561111b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561114457600080fd5b8101908080516040519392919084600160201b82111561116357600080fd5b90830190602082018581111561117857600080fd5b8251600160201b81118282018810171561119157600080fd5b82525081516020918201929091019080838360005b838110156111be5781810151838201526020016111a6565b50505050905090810190601f1680156111eb5780820380516001836020036101000a031916815260200191505b5060405250505090506060826001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b15801561122f57600080fd5b505afa158015611243573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561126c57600080fd5b8101908080516040519392919084600160201b82111561128b57600080fd5b9083019060208201858111156112a057600080fd5b8251600160201b8111828201881017156112b957600080fd5b82525081516020918201929091019080838360005b838110156112e65781810151838201526020016112ce565b50505050905090810190601f1680156113135780820380516001836020036101000a031916815260200191505b50604052505050905060608088156114905787846040516020018083805190602001908083835b602083106113595780518252601f19909201916020918201910161133a565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106113a15780518252601f199092019160209182019101611382565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915086836040516020018083805190602001908083835b6020831061140c5780518252601f1990920191602091820191016113ed565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106114545780518252601f199092019160209182019101611435565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050611626565b6040518060400160405280600c81526020016b02130b233b2b91029b2ba3a160a51b815250846040516020018083805190602001908083835b602083106114e85780518252601f1990920191602091820191016114c9565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106115305780518252601f199092019160209182019101611511565b51815160209384036101000a60001901801990921691161790526040805192909401828103601f1901835280850185526001808252603160f91b8284019081529551939a509097508a965091019350839291508083835b602083106115a65780518252601f199092019160209182019101611587565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106115ee5780518252601f1990920191602091820191016115cf565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405290505b6116308282612021565b8c60cd60006101000a8154816001600160a01b0302191690836001600160a01b031602179055508a606560006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000606660006101000a8154816001600160a01b0302191690836001600160a01b0316021790555089606760006101000a8154816001600160a01b0302191690836001600160a01b031602179055508b60cf60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555061251c60ce8190555043427ffd60e70298d1c5272d3164dec70c527f1c64556cf7ca2dc10bdc753143ffc45b611728610b95565b60408051918252519081900360200190a350505050508015611750576000805461ff00191690555b5050505050505050565b60cf546001600160a01b031681565b60ce5481565b60cd546001600160a01b031681565b60cf546001600160a01b03163314610c2b576040805162461bcd60e51b815260206004820152600e60248201526d37b7363ca1b7b73a3937b63632b960911b604482015290519081900360640190fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526118209084906120d6565b505050565b3390565b6001600160a01b03831661186e5760405162461bcd60e51b8152600401808060200182810382526024815260200180612aad6024913960400191505060405180910390fd5b6001600160a01b0382166118b35760405162461bcd60e51b81526004018080602001828103825260228152602001806129a86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b33600090815260d060205260409020544311610c2b576040805162461bcd60e51b815260206004820152600b60248201526a189b1bd8dad31bd8dad95960aa1b604482015290519081900360640190fd5b6000611973848484612187565b6119de8461197f611825565b610a1d85604051806060016040528060288152602001612a3f602891396001600160a01b038a166000908152603460205260408120906119bd611825565b6001600160a01b031681526020810191909152604001600020549190611f66565b5060019392505050565b336000908152609a602052604081205460ff1680611a0557503332145b610917576040805162461bcd60e51b815260206004820152601860248201527f4163636573732064656e69656420666f722063616c6c65720000000000000000604482015290519081900360640190fd5b6001600160a01b0316600090815260d060205260409020439055565b6000611a8b611a7f610938565b610abe84610bd1610d74565b9050611a9733836122e4565b60cd54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611ae257600080fd5b505afa158015611af6573d6000803e3d6000fd5b505050506040513d6020811015611b0c57600080fd5b5051905081811015611c38576000611b2483836123e0565b60cf5460cd546040805163f3fef3a360e01b81526001600160a01b03928316600482015260248101859052905193945091169163f3fef3a39160448082019260009290919082900301818387803b158015611b7e57600080fd5b505af1158015611b92573d6000803e3d6000fd5b505060cd54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b158015611be357600080fd5b505afa158015611bf7573d6000803e3d6000fd5b505050506040513d6020811015611c0d57600080fd5b505190506000611c1d82856123e0565b905082811015611c3457611c318482611db6565b94505b5050505b60cd54611820906001600160a01b031633846117ce565b6000611c59610d74565b60cd54604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015611caa57600080fd5b505afa158015611cbe573d6000803e3d6000fd5b505050506040513d6020811015611cd457600080fd5b505160cd54909150611cf1906001600160a01b0316333086612422565b60cd54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611d3c57600080fd5b505afa158015611d50573d6000803e3d6000fd5b505050506040513d6020811015611d6657600080fd5b50519050611d7481836123e0565b93506000611d80610938565b611d8b575083611da4565b611da184610abe611d9a610938565b8890611e60565b90505b611dae8682612482565b505050505050565b600082820183811015610d34576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6065546001600160a01b03163314610c2b576040805162461bcd60e51b815260206004820152600e60248201526d6f6e6c79476f7665726e616e636560901b604482015290519081900360640190fd5b600082611e6f57506000610932565b82820282848281611e7c57fe5b0414610d345760405162461bcd60e51b8152600401808060200182810382526021815260200180612a1e6021913960400191505060405180910390fd5b6000610d3483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612574565b6067546001600160a01b0316331480611f1e57506065546001600160a01b031633145b610c2b576040805162461bcd60e51b81526020600482015260146024820152736f6e6c79417574686f72697a65644163746f727360601b604482015290519081900360640190fd5b60008184841115611ff55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611fba578181015183820152602001611fa2565b50505050905090810190601f168015611fe75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600061092e61200a611825565b8484612187565b61099f3382611c4f565b303b1590565b600054610100900460ff168061203a575061203a61201b565b80612048575060005460ff16155b6120835760405162461bcd60e51b815260040180806020018281038252602e8152602001806129f0602e913960400191505060405180910390fd5b600054610100900460ff161580156120ae576000805460ff1961ff0019909116610100171660011790555b6120b66125d9565b6120c0838361267a565b8015611820576000805461ff0019169055505050565b606061212b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166127529092919063ffffffff16565b8051909150156118205780806020019051602081101561214a57600080fd5b50516118205760405162461bcd60e51b815260040180806020018281038252602a815260200180612ad1602a913960400191505060405180910390fd5b6001600160a01b0383166121cc5760405162461bcd60e51b8152600401808060200182810382526025815260200180612a886025913960400191505060405180910390fd5b6001600160a01b0382166122115760405162461bcd60e51b81526004018080602001828103825260238152602001806129636023913960400191505060405180910390fd5b61221c838383611820565b612259816040518060600160405280602681526020016129ca602691396001600160a01b0386166000908152603360205260409020549190611f66565b6001600160a01b0380851660009081526033602052604080822093909355908416815220546122889082611db6565b6001600160a01b0380841660008181526033602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b0382166123295760405162461bcd60e51b8152600401808060200182810382526021815260200180612a676021913960400191505060405180910390fd5b61233582600083611820565b61237281604051806060016040528060228152602001612986602291396001600160a01b0385166000908152603360205260409020549190611f66565b6001600160a01b03831660009081526033602052604090205560355461239890826123e0565b6035556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610d3483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f66565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261247c9085906120d6565b50505050565b6001600160a01b0382166124dd576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6124e960008383611820565b6035546124f69082611db6565b6035556001600160a01b03821660009081526033602052604090205461251c9082611db6565b6001600160a01b03831660008181526033602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600081836125c35760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611fba578181015183820152602001611fa2565b5060008385816125cf57fe5b0495945050505050565b600054610100900460ff16806125f257506125f261201b565b80612600575060005460ff16155b61263b5760405162461bcd60e51b815260040180806020018281038252602e8152602001806129f0602e913960400191505060405180910390fd5b600054610100900460ff16158015612666576000805460ff1961ff0019909116610100171660011790555b801561099f576000805461ff001916905550565b600054610100900460ff1680612693575061269361201b565b806126a1575060005460ff16155b6126dc5760405162461bcd60e51b815260040180806020018281038252602e8152602001806129f0602e913960400191505060405180910390fd5b600054610100900460ff16158015612707576000805460ff1961ff0019909116610100171660011790555b825161271a9060369060208601906128cf565b50815161272e9060379060208501906128cf565b506038805460ff191660121790558015611820576000805461ff0019169055505050565b606061096284846000856060612767856128c9565b6127b8576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106127f75780518252601f1990920191602091820191016127d8565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612859576040519150601f19603f3d011682016040523d82523d6000602084013e61285e565b606091505b509150915081156128725791506109629050565b8051156128825780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315611fba578181015183820152602001611fa2565b3b151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061291057805160ff191683800117855561293d565b8280016001018555821561293d579182015b8281111561293d578251825591602001919060010190612922565b5061294992915061294d565b5090565b5b80821115612949576000815560010161294e56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ea3556e1c91db98b3c936cc2aa159619d6b4c041fc514d899a44087639c636b464736f6c634300060c0033
Deployed Bytecode Sourcemap
42201:8968:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47757:219;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;47757:219:0;;;;;;;;:::i;:::-;;24625:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26731:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26731:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;25700:100;;;:::i;:::-;;;;;;;;;;;;;;;;39739:25;;;:::i;:::-;;;;-1:-1:-1;;;;;39739:25:0;;;;;;;;;;;;;;50924:242;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50924:242:0;;;;;;;;;;;;;;;;;:::i;42557:44::-;;;;;;;;;;;;;;;;-1:-1:-1;42557:44:0;-1:-1:-1;;;;;42557:44:0;;:::i;46612:162::-;;;;;;;;;;;;;;;;-1:-1:-1;46612:162:0;;:::i;45853:289::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;45853:289:0;;;;;;;;:::i;25552:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28104:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28104:218:0;;;;;;;;:::i;47224:96::-;;;;;;;;;;;;;;;;-1:-1:-1;47224:96:0;;:::i;45171:125::-;;;:::i;48613:168::-;;;:::i;39707:25::-;;;:::i;42479:35::-;;;:::i;41318:128::-;;;;;;;;;;;;;;;;-1:-1:-1;41318:128:0;-1:-1:-1;;;;;41318:128:0;;:::i;25863:119::-;;;;;;;;;;;;;;;;-1:-1:-1;25863:119:0;-1:-1:-1;;;;;25863:119:0;;:::i;40649:108::-;;;;;;;;;;;;;;;;-1:-1:-1;40649:108:0;-1:-1:-1;;;;;40649:108:0;;:::i;44372:198::-;;;:::i;41454:128::-;;;;;;;;;;;;;;;;-1:-1:-1;41454:128:0;-1:-1:-1;;;;;41454:128:0;;:::i;46855:166::-;;;:::i;47422:122::-;;;;;;;;;;;;;;;;-1:-1:-1;47422:122:0;-1:-1:-1;;;;;47422:122:0;;:::i;24827:87::-;;;:::i;28825:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28825:269:0;;;;;;;;:::i;50740:176::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50740:176:0;;;;;;;;:::i;40866:122::-;;;;;;;;;;;;;;;;-1:-1:-1;40866:122:0;-1:-1:-1;;;;;40866:122:0;;:::i;39771:21::-;;;:::i;44742:160::-;;;:::i;45510:::-;;;;;;;;;;;;;;;;-1:-1:-1;45510:160:0;;:::i;40420:124::-;;;;;;;;;;;;;;;;-1:-1:-1;40420:124:0;-1:-1:-1;;;;;40420:124:0;;:::i;48266:212::-;;;:::i;41268:41::-;;;;;;;;;;;;;;;;-1:-1:-1;41268:41:0;-1:-1:-1;;;;;41268:41:0;;:::i;26433:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26433:151:0;;;;;;;;;;:::i;46357:170::-;;;:::i;42846:1203::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42846:1203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;42846:1203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;42846:1203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42846:1203:0;;;;;;;;-1:-1:-1;42846:1203:0;;-1:-1:-1;;;;;42846:1203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;42846:1203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42846:1203:0;;-1:-1:-1;42846:1203:0;;-1:-1:-1;;;;;42846:1203:0:i;42523:25::-;;;:::i;42454:18::-;;;:::i;42415:30::-;;;:::i;47757:219::-;47827:17;:15;:17::i;:::-;47882:5;;-1:-1:-1;;;;;47863:25:0;;;47882:5;;47863:25;;47855:43;;;;;-1:-1:-1;;;47855:43:0;;;;;;;;;;;;-1:-1:-1;;;47855:43:0;;;;;;;;;;;;;;;47949:10;;47909:59;;-1:-1:-1;;;;;47909:39:0;;;;47949:10;47961:6;47909:39;:59::i;:::-;47757:219;;:::o;24625:83::-;24695:5;24688:12;;;;;;;;-1:-1:-1;;24688:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24662:13;;24688:12;;24695:5;;24688:12;;24695:5;24688:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24625:83;;:::o;26731:169::-;26814:4;26831:39;26840:12;:10;:12::i;:::-;26854:7;26863:6;26831:8;:39::i;:::-;-1:-1:-1;26888:4:0;26731:169;;;;;:::o;25700:100::-;25780:12;;25700:100;:::o;39739:25::-;;;-1:-1:-1;;;;;39739:25:0;;:::o;50924:242::-;51064:4;51081:14;:12;:14::i;:::-;51113:45;51132:6;51140:9;51151:6;51113:18;:45::i;:::-;51106:52;50924:242;-1:-1:-1;;;;50924:242:0:o;42557:44::-;;;;;;;;;;;;;:::o;46612:162::-;46665:9;:7;:9::i;:::-;;46685:14;:12;:14::i;:::-;46712:25;46726:10;46712:13;:25::i;:::-;46748:18;46758:7;46748:9;:18::i;:::-;46612:162;:::o;45853:289::-;45927:9;:7;:9::i;:::-;;45947:14;:12;:14::i;:::-;46068:24;46082:9;46068:13;:24::i;:::-;46103:31;46115:9;46126:7;46103:11;:31::i;25552:83::-;25618:9;;;;25552:83;:::o;28104:218::-;28192:4;28209:83;28218:12;:10;:12::i;:::-;28232:7;28241:50;28280:10;28241:11;:25;28253:12;:10;:12::i;:::-;-1:-1:-1;;;;;28241:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;28241:25:0;;;:34;;;;;;;;;;;:38;:50::i;:::-;28209:8;:83::i;47224:96::-;47274:17;:15;:17::i;:::-;47302:3;:10;47224:96::o;45171:125::-;45275:3;;45240:5;;:30;;;-1:-1:-1;;;45240:30:0;;45264:4;45240:30;;;;;;45213:7;;45240:48;;42509:5;;45240:39;;-1:-1:-1;;;;;45240:5:0;;;;:15;;:30;;;;;;;;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45240:30:0;;:34;:39::i;:::-;:43;;:48::i;:::-;45233:55;;45171:125;:::o;48613:168::-;48667:23;:21;:23::i;:::-;48760:12;48755:3;48706:67;48731:22;:20;:22::i;:::-;48706:67;;;;;;;;;;;;;;;48613:168::o;39707:25::-;;;-1:-1:-1;;;;;39707:25:0;;:::o;42479:35::-;42509:5;42479:35;:::o;41318:128::-;41386:17;:15;:17::i;:::-;-1:-1:-1;;;;;41414:17:0;;;;;:8;:17;;;;;:24;;-1:-1:-1;;41414:24:0;41434:4;41414:24;;;41318:128::o;25863:119::-;-1:-1:-1;;;;;25956:18:0;25929:7;25956:18;;;:9;:18;;;;;;;25863:119::o;40649:108::-;40705:17;:15;:17::i;:::-;40733:6;:16;;-1:-1:-1;;;;;;40733:16:0;-1:-1:-1;;;;;40733:16:0;;;;;;;;;;40649:108::o;44372:198::-;44425:7;44449:13;:11;:13::i;:::-;44445:62;;-1:-1:-1;44491:4:0;44484:11;;44445:62;44524:38;44548:13;:11;:13::i;:::-;44524:19;44538:4;44524:9;:7;:9::i;:::-;:13;;:19::i;41454:128::-;41521:17;:15;:17::i;:::-;-1:-1:-1;;;;;41549:17:0;41569:5;41549:17;;;:8;:17;;;;;:25;;-1:-1:-1;;41549:25:0;;;41454:128::o;46855:166::-;46898:9;:7;:9::i;:::-;;46918:14;:12;:14::i;:::-;46945:25;46959:10;46945:13;:25::i;:::-;46981:32;46991:21;47001:10;46991:9;:21::i;:::-;46981:9;:32::i;:::-;46855:166::o;47422:122::-;47484:17;:15;:17::i;:::-;47512:10;:24;;-1:-1:-1;;;;;;47512:24:0;-1:-1:-1;;;;;47512:24:0;;;;;;;;;;47422:122::o;24827:87::-;24899:7;24892:14;;;;;;;;-1:-1:-1;;24892:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24866:13;;24892:14;;24899:7;;24892:14;;24899:7;24892:14;;;;;;;;;;;;;;;;;;;;;;;;28825:269;28918:4;28935:129;28944:12;:10;:12::i;:::-;28958:7;28967:96;29006:15;28967:96;;;;;;;;;;;;;;;;;:11;:25;28979:12;:10;:12::i;:::-;-1:-1:-1;;;;;28967:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;28967:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;50740:176::-;50826:4;50843:14;:12;:14::i;:::-;50875:33;50890:9;50901:6;50875:14;:33::i;:::-;50868:40;50740:176;-1:-1:-1;;;50740:176:0:o;40866:122::-;40928:17;:15;:17::i;:::-;40956:10;:24;;-1:-1:-1;;;;;;40956:24:0;-1:-1:-1;;;;;40956:24:0;;;;;;;;;;40866:122::o;39771:21::-;;;-1:-1:-1;;;;;39771:21:0;;:::o;44742:160::-;44856:10;;44886:5;;44844:49;;;-1:-1:-1;;;44844:49:0;;-1:-1:-1;;;;;44886:5:0;;;44844:49;;;;;;44782:7;;44809:85;;44856:10;;44844:33;;:49;;;;;;;;;;;;;;44856:10;44844:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44844:49:0;44809:5;;:30;;;-1:-1:-1;;;44809:30:0;;44833:4;44809:30;;;;;;-1:-1:-1;;;;;44809:5:0;;;;:15;;:30;;;;;44844:49;;44809:30;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44809:30:0;;:34;:85::i;45510:160::-;45562:9;:7;:9::i;:::-;;45582:14;:12;:14::i;:::-;45609:25;45623:10;45609:13;:25::i;:::-;45645:17;45654:7;45645:8;:17::i;40420:124::-;40484:17;:15;:17::i;:::-;40512:10;:24;;-1:-1:-1;;;;;;40512:24:0;-1:-1:-1;;;;;40512:24:0;;;;;;;;;;40420:124::o;48266:212::-;48300:23;:21;:23::i;:::-;48336:12;48351:11;:9;:11::i;:::-;48392:10;;48373:5;;48336:26;;-1:-1:-1;48373:36:0;;-1:-1:-1;;;;;48373:5:0;;;;48392:10;48336:26;48373:18;:36::i;:::-;48432:10;;48457:5;;48420:50;;;-1:-1:-1;;;48420:50:0;;-1:-1:-1;;;;;48457:5:0;;;48420:50;;;;;;;;;;;;48432:10;;;;;48420:28;;:50;;;;;48432:10;;48420:50;;;;;;;48432:10;;48420:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48266:212;:::o;41268:41::-;;;;;;;;;;;;;;;:::o;26433:151::-;-1:-1:-1;;;;;26549:18:0;;;26522:7;26549:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26433:151::o;46357:170::-;46399:9;:7;:9::i;:::-;;46419:14;:12;:14::i;:::-;46446:25;46460:10;46446:13;:25::i;:::-;46491:5;;:27;;;-1:-1:-1;;;46491:27:0;;46507:10;46491:27;;;;;;46482:37;;-1:-1:-1;;;;;46491:5:0;;:15;;:27;;;;;;;;;;;;;;:5;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46491:27:0;46482:8;:37::i;42846:1203::-;19811:13;;;;;;;;:33;;;19828:16;:14;:16::i;:::-;19811:50;;;-1:-1:-1;19849:12:0;;;;19848:13;19811:50;19803:109;;;;-1:-1:-1;;;19803:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19925:19;19948:13;;;;;;19947:14;19972:101;;;;20007:13;:20;;-1:-1:-1;;;;20007:20:0;;;;;20042:19;20023:4;20042:19;;;19972:101;43122:25:::1;43165:6;43122:50;;43183:23;43209:10;-1:-1:-1::0;;;;;43209:15:0::1;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;43209:17:0::1;::::0;::::1;;::::0;::::1;::::0;::::1;;;;;::::0;::::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;43209:17:0::1;;;;;;::::0;::::1;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;;;;;::::0;::::1;;::::0;;-1:-1:-1;;;43209:17:0;::::1;::::0;;::::1;::::0;-1:-1:-1;43209:17:0::1;;;;;::::0;::::1;;::::0;;-1:-1:-1;43209:17:0;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;;::::1;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;43183:43;;43237:25;43265:10;-1:-1:-1::0;;;;;43265:17:0::1;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;43265:19:0::1;::::0;::::1;;::::0;::::1;::::0;::::1;;;;;::::0;::::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;43265:19:0::1;;;;;;::::0;::::1;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;;;;;::::0;::::1;;::::0;;-1:-1:-1;;;43265:19:0;::::1;::::0;;::::1;::::0;-1:-1:-1;43265:19:0::1;;;;;::::0;::::1;;::::0;;-1:-1:-1;43265:19:0;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;;::::1;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;43237:47;;43297:18;43326:20:::0;43363:18:::1;43359:359;;;43429:11;43442:9;43412:40;;;;;;;;;;;;;;;;;;;;;::::0;;;;-1:-1:-1;;43412:40:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;::::0;;;::::1;::::0;;::::1;;;-1:-1:-1::0;;43412:40:0;;::::1;::::0;;::::1;::::0;::::1;;::::0;;;;;;;::::1;::::0;;::::1;::::0;-1:-1:-1;43412:40:0;;;::::1;;;;;;::::0;;;;-1:-1:-1;;43412:40:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43398:55;;43501:13;43516:11;43484:44;;;;;;;;;;;;;;;;;;;;;::::0;;;;-1:-1:-1;;43484:44:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;::::0;;;::::1;::::0;;::::1;;;-1:-1:-1::0;;43484:44:0;;::::1;::::0;;::::1;::::0;::::1;;::::0;;;;;;;::::1;::::0;;::::1;::::0;-1:-1:-1;43484:44:0;;;::::1;;;;;;::::0;;;;-1:-1:-1;;43484:44:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43468:61;;43359:359;;;43593:18;;;;;;;;;;;;;-1:-1:-1::0;;;43593:18:0::1;;::::0;43613:9:::1;43576:47;;;;;;;;;;;;;;;;;;;;;::::0;;;;-1:-1:-1;;43576:47:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;::::0;;;::::1;::::0;;::::1;;;-1:-1:-1::0;;43576:47:0;;::::1;::::0;;::::1;::::0;::::1;;::::0;;;;;;;::::1;::::0;;::::1;::::0;-1:-1:-1;43576:47:0;;;::::1;;;;;;::::0;;;;-1:-1:-1;;43576:47:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;::::0;;;::::1;::::0;;::::1;;;-1:-1:-1::0;;43576:47:0;;::::1;::::0;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;;;::::1;::::0;;::::1;-1:-1:-1::0;;43576:47:0;;;43672:19;;::::1;::::0;;43576:47:::1;43672:19:::0;;;-1:-1:-1;;;43672:19:0;;::::1;::::0;;;43655:50;;43576:47;;-1:-1:-1;43576:47:0;;-1:-1:-1;43693:11:0;;-1:-1:-1;43655:50:0;::::1;::::0;-1:-1:-1;43655:50:0;;43672:19;-1:-1:-1;43576:47:0;43655:50;43672:19;43655:50:::1;;;;;;::::0;;;;-1:-1:-1;;43655:50:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;::::0;;;::::1;::::0;;::::1;;;-1:-1:-1::0;;43655:50:0;;::::1;::::0;;::::1;::::0;::::1;;::::0;;;;;;;::::1;::::0;;::::1;::::0;-1:-1:-1;43655:50:0;;;::::1;;;;;;::::0;;;;-1:-1:-1;;43655:50:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43639:67;;43359:359;43730:26;43743:4;43749:6;43730:12;:26::i;:::-;43795:6;43769:5;;:33;;;;;-1:-1:-1::0;;;;;43769:33:0::1;;;;;-1:-1:-1::0;;;;;43769:33:0::1;;;;;;43826:11;43813:10;;:24;;;;;-1:-1:-1::0;;;;;43813:24:0::1;;;;;-1:-1:-1::0;;;;;43813:24:0::1;;;;;;43869:1;43848:10;;:23;;;;;-1:-1:-1::0;;;;;43848:23:0::1;;;;;-1:-1:-1::0;;;;;43848:23:0::1;;;;;;43891:7;43882:6;;:16;;;;;-1:-1:-1::0;;;;;43882:16:0::1;;;;;-1:-1:-1::0;;;;;43882:16:0::1;;;;;;43922:11;43909:10;;:24;;;;;-1:-1:-1::0;;;;;43909:24:0::1;;;;;-1:-1:-1::0;;;;;43909:24:0::1;;;;;;43952:4;43946:3;:10;;;;44028:12;44023:3;43974:67;43999:22;:20;:22::i;:::-;43974:67;::::0;;;;;;;;;;::::1;::::0;;::::1;20085:1;;;;;20103:14:::0;20099:68;;;20150:5;20134:21;;-1:-1:-1;;20134:21:0;;;20099:68;42846:1203;;;;;;;;:::o;42523:25::-;;;-1:-1:-1;;;;;42523:25:0;;:::o;42454:18::-;;;;:::o;42415:30::-;;;-1:-1:-1;;;;;42415:30:0;;:::o;44090:111::-;44164:10;;-1:-1:-1;;;;;44164:10:0;44150;:24;44142:51;;;;;-1:-1:-1;;;44142:51:0;;;;;;;;;;;;-1:-1:-1;;;44142:51:0;;;;;;;;;;;;;;15166:188;15287:58;;;-1:-1:-1;;;;;15287:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15287:58:0;-1:-1:-1;;;15287:58:0;;;15260:86;;15280:5;;15260:19;:86::i;:::-;15166:188;;;:::o;21732:106::-;21820:10;21732:106;:::o;31970:346::-;-1:-1:-1;;;;;32072:19:0;;32064:68;;;;-1:-1:-1;;;32064:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32151:21:0;;32143:68;;;;-1:-1:-1;;;32143:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32224:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32276:32;;;;;;;;;;;;;;;;;31970:346;;;:::o;44209:117::-;44276:10;44266:21;;;;:9;:21;;;;;;44290:12;-1:-1:-1;44258:60:0;;;;;-1:-1:-1;;;44258:60:0;;;;;;;;;;;;-1:-1:-1;;;44258:60:0;;;;;;;;;;;;;;27374:321;27480:4;27497:36;27507:6;27515:9;27526:6;27497:9;:36::i;:::-;27544:121;27553:6;27561:12;:10;:12::i;:::-;27575:89;27613:6;27575:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27575:19:0;;;;;;:11;:19;;;;;;27595:12;:10;:12::i;:::-;-1:-1:-1;;;;;27575:33:0;;;;;;;;;;;;-1:-1:-1;27575:33:0;;;:89;:37;:89::i;27544:121::-;-1:-1:-1;27683:4:0;27374:321;;;;;:::o;41590:151::-;41666:10;41632:4;41657:20;;;:8;:20;;;;;;;;;:47;;-1:-1:-1;41681:10:0;41695:9;41681:23;41657:47;41649:84;;;;;-1:-1:-1;;;41649:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;50475:101;-1:-1:-1;;;;;50535:18:0;;;;;:9;:18;;;;;50556:12;50535:33;;50475:101::o;49834:633::-;49890:9;49902:43;49931:13;:11;:13::i;:::-;49903:22;49917:7;49903:9;:7;:9::i;49902:43::-;49890:55;;49956:26;49962:10;49974:7;49956:5;:26::i;:::-;50033:5;;:30;;;-1:-1:-1;;;50033:30:0;;50057:4;50033:30;;;;;;50021:9;;-1:-1:-1;;;;;50033:5:0;;:15;;:30;;;;;;;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50033:30:0;;-1:-1:-1;50078:5:0;;;50074:340;;;50100:19;50122:8;:1;50128;50122:5;:8::i;:::-;50157:10;;50186:5;;50145:61;;;-1:-1:-1;;;50145:61:0;;-1:-1:-1;;;;;50186:5:0;;;50145:61;;;;;;;;;;;;50100:30;;-1:-1:-1;50157:10:0;;;50145:32;;:61;;;;;50157:10;;50145:61;;;;;;;;50157:10;;50145:61;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50238:5:0;;:30;;;-1:-1:-1;;;50238:30:0;;50262:4;50238:30;;;;;;50221:14;;-1:-1:-1;;;;;;50238:5:0;;;;-1:-1:-1;50238:15:0;;:30;;;;;;;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50238:30:0;;-1:-1:-1;50283:13:0;50299;50238:30;50310:1;50299:10;:13::i;:::-;50283:29;;50339:11;50331:5;:19;50327:76;;;50375:12;:1;50381:5;50375;:12::i;:::-;50371:16;;50327:76;50074:340;;;;50426:5;;:33;;-1:-1:-1;;;;;50426:5:0;50445:10;50457:1;50426:18;:33::i;49156:602::-;49233:13;49249:9;:7;:9::i;:::-;49287:5;;:30;;;-1:-1:-1;;;49287:30:0;;49311:4;49287:30;;;;;;49233:25;;-1:-1:-1;49269:15:0;;-1:-1:-1;;;;;49287:5:0;;;;:15;;:30;;;;;;;;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49287:30:0;49328:5;;49287:30;;-1:-1:-1;49328:58:0;;-1:-1:-1;;;;;49328:5:0;49351:10;49371:4;49378:7;49328:22;:58::i;:::-;49414:5;;:30;;;-1:-1:-1;;;49414:30:0;;49438:4;49414:30;;;;;;49397:14;;-1:-1:-1;;;;;49414:5:0;;:15;;:30;;;;;;;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49414:30:0;;-1:-1:-1;49465:19:0;49414:30;49476:7;49465:10;:19::i;:::-;49455:29;;49539:14;49572:13;:11;:13::i;:::-;49568:148;;-1:-1:-1;49616:7:0;49568:148;;;49665:39;49698:5;49666:26;49678:13;:11;:13::i;:::-;49666:7;;:11;:26::i;49665:39::-;49656:48;;49568:148;49726:24;49732:9;49743:6;49726:5;:24::i;:::-;49156:602;;;;;;:::o;3901:181::-;3959:7;3991:5;;;4015:6;;;;4007:46;;;;;-1:-1:-1;;;4007:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;39831:111;39905:10;;-1:-1:-1;;;;;39905:10:0;39891;:24;39883:51;;;;;-1:-1:-1;;;39883:51:0;;;;;;;;;;;;-1:-1:-1;;;39883:51:0;;;;;;;;;;;;;;5255:471;5313:7;5558:6;5554:47;;-1:-1:-1;5588:1:0;5581:8;;5554:47;5625:5;;;5629:1;5625;:5;:1;5649:5;;;;;:10;5641:56;;;;-1:-1:-1;;;5641:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6202:132;6260:7;6287:39;6291:1;6294;6287:39;;;;;;;;;;;;;;;;;:3;:39::i;40121:147::-;40201:6;;-1:-1:-1;;;;;40201:6:0;40187:10;:20;;:48;;-1:-1:-1;40225:10:0;;-1:-1:-1;;;;;40225:10:0;40211;:24;40187:48;40179:81;;;;;-1:-1:-1;;;40179:81:0;;;;;;;;;;;;-1:-1:-1;;;40179:81:0;;;;;;;;;;;;;;4804:192;4890:7;4926:12;4918:6;;;;4910:29;;;;-1:-1:-1;;;4910:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4962:5:0;;;4804:192::o;26195:175::-;26281:4;26298:42;26308:12;:10;:12::i;:::-;26322:9;26333:6;26298:9;:42::i;48873:95::-;48928:32;48940:10;48952:7;48928:11;:32::i;20267:604::-;20709:4;20820:17;20856:7;20267:604;:::o;24192:177::-;19811:13;;;;;;;;:33;;;19828:16;:14;:16::i;:::-;19811:50;;;-1:-1:-1;19849:12:0;;;;19848:13;19811:50;19803:109;;;;-1:-1:-1;;;19803:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19925:19;19948:13;;;;;;19947:14;19972:101;;;;20007:13;:20;;-1:-1:-1;;;;20007:20:0;;;;;20042:19;20023:4;20042:19;;;19972:101;24288:26:::1;:24;:26::i;:::-;24325:36;24348:4;24354:6;24325:22;:36::i;:::-;20103:14:::0;20099:68;;;20150:5;20134:21;;-1:-1:-1;;20134:21:0;;;24192:177;;;:::o;17526:772::-;17961:23;17987:69;18015:4;17987:69;;;;;;;;;;;;;;;;;17995:5;-1:-1:-1;;;;;17987:27:0;;;:69;;;;;:::i;:::-;18071:17;;17961:95;;-1:-1:-1;18071:21:0;18067:224;;18213:10;18202:30;;;;;;;;;;;;;;;-1:-1:-1;18202:30:0;18194:85;;;;-1:-1:-1;;;18194:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29584:539;-1:-1:-1;;;;;29690:20:0;;29682:70;;;;-1:-1:-1;;;29682:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29771:23:0;;29763:71;;;;-1:-1:-1;;;29763:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29847:47;29868:6;29876:9;29887:6;29847:20;:47::i;:::-;29927:71;29949:6;29927:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29927:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;29907:17:0;;;;;;;:9;:17;;;;;;:91;;;;30032:20;;;;;;;:32;;30057:6;30032:24;:32::i;:::-;-1:-1:-1;;;;;30009:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;30080:35;;;;;;;30009:20;;30080:35;;;;;;;;;;;;;29584:539;;;:::o;31114:418::-;-1:-1:-1;;;;;31198:21:0;;31190:67;;;;-1:-1:-1;;;31190:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31270:49;31291:7;31308:1;31312:6;31270:20;:49::i;:::-;31353:68;31376:6;31353:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31353:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;31332:18:0;;;;;;:9;:18;;;;;:89;31447:12;;:24;;31464:6;31447:16;:24::i;:::-;31432:12;:39;31487:37;;;;;;;;31513:1;;-1:-1:-1;;;;;31487:37:0;;;;;;;;;;;;31114:418;;:::o;4365:136::-;4423:7;4450:43;4454:1;4457;4450:43;;;;;;;;;;;;;;;;;:3;:43::i;15362:216::-;15501:68;;;-1:-1:-1;;;;;15501:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15501:68:0;-1:-1:-1;;;15501:68:0;;;15474:96;;15494:5;;15474:19;:96::i;:::-;15362:216;;;;:::o;30404:378::-;-1:-1:-1;;;;;30488:21:0;;30480:65;;;;;-1:-1:-1;;;30480:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30558:49;30587:1;30591:7;30600:6;30558:20;:49::i;:::-;30635:12;;:24;;30652:6;30635:16;:24::i;:::-;30620:12;:39;-1:-1:-1;;;;;30691:18:0;;;;;;:9;:18;;;;;;:30;;30714:6;30691:22;:30::i;:::-;-1:-1:-1;;;;;30670:18:0;;;;;;:9;:18;;;;;;;;:51;;;;30737:37;;;;;;;30670:18;;;;30737:37;;;;;;;;;;30404:378;;:::o;6830:278::-;6916:7;6951:12;6944:5;6936:28;;;;-1:-1:-1;;;6936:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6975:9;6991:1;6987;:5;;;;;;;6830:278;-1:-1:-1;;;;;6830:278:0:o;21661:65::-;19811:13;;;;;;;;:33;;;19828:16;:14;:16::i;:::-;19811:50;;;-1:-1:-1;19849:12:0;;;;19848:13;19811:50;19803:109;;;;-1:-1:-1;;;19803:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19925:19;19948:13;;;;;;19947:14;19972:101;;;;20007:13;:20;;-1:-1:-1;;;;20007:20:0;;;;;20042:19;20023:4;20042:19;;;19972:101;20103:14;20099:68;;;20150:5;20134:21;;-1:-1:-1;;20134:21:0;;;21661:65;:::o;24377:178::-;19811:13;;;;;;;;:33;;;19828:16;:14;:16::i;:::-;19811:50;;;-1:-1:-1;19849:12:0;;;;19848:13;19811:50;19803:109;;;;-1:-1:-1;;;19803:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19925:19;19948:13;;;;;;19947:14;19972:101;;;;20007:13;:20;;-1:-1:-1;;;;20007:20:0;;;;;20042:19;20023:4;20042:19;;;19972:101;24483:12;;::::1;::::0;:5:::1;::::0;:12:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;24506:16:0;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;24533:9:0::1;:14:::0;;-1:-1:-1;;24533:14:0::1;24545:2;24533:14;::::0;;20099:68;;;;20150:5;20134:21;;-1:-1:-1;;20134:21:0;;;24377:178;;;:::o;12085:196::-;12188:12;12220:53;12243:6;12251:4;12257:1;12260:12;13592;13625:18;13636:6;13625:10;:18::i;:::-;13617:60;;;;;-1:-1:-1;;;13617:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;13751:12;13765:23;13792:6;-1:-1:-1;;;;;13792:11:0;13812:8;13823:4;13792:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;13792:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13750:78;;;;13843:7;13839:595;;;13874:10;-1:-1:-1;13867:17:0;;-1:-1:-1;13867:17:0;13839:595;13988:17;;:21;13984:439;;14251:10;14245:17;14312:15;14299:10;14295:2;14291:19;14284:44;14199:148;14387:20;;-1:-1:-1;;;14387:20:0;;;;;;;;;;;;;;;;;14394:12;;14387:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9167:422;9534:20;9573:8;;;9167:422::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;
Swarm Source
ipfs://ea3556e1c91db98b3c936cc2aa159619d6b4c041fc514d899a44087639c636b4
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.