Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 71 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Sell | 15751146 | 1249 days ago | IN | 0 ETH | 0.00083737 | ||||
| Claim Profit | 15101370 | 1347 days ago | IN | 0 ETH | 0.00092832 | ||||
| Claim Profit | 14908849 | 1380 days ago | IN | 0 ETH | 0.00168157 | ||||
| Send Profit | 14722665 | 1410 days ago | IN | 0 ETH | 0.00248771 | ||||
| Send Profit | 14652984 | 1421 days ago | IN | 0 ETH | 0.00204242 | ||||
| Send Profit | 14652971 | 1421 days ago | IN | 0 ETH | 0.00186219 | ||||
| Claim Profit | 14525181 | 1441 days ago | IN | 0 ETH | 0.0043411 | ||||
| Sell | 14525166 | 1441 days ago | IN | 0 ETH | 0.00415013 | ||||
| Send Profit | 14441880 | 1454 days ago | IN | 0 ETH | 0.00085051 | ||||
| Send Profit | 14441878 | 1454 days ago | IN | 0 ETH | 0.00107421 | ||||
| Claim Profit | 14386026 | 1463 days ago | IN | 0 ETH | 0.00328717 | ||||
| Send Profit | 14185046 | 1494 days ago | IN | 0 ETH | 0.0043309 | ||||
| Claim Profit | 14074627 | 1511 days ago | IN | 0 ETH | 0.00617554 | ||||
| Send Profit | 14022652 | 1519 days ago | IN | 0 ETH | 0.00561944 | ||||
| Send Profit | 13815660 | 1551 days ago | IN | 0 ETH | 0.00421238 | ||||
| Send Profit | 13815499 | 1551 days ago | IN | 0 ETH | 0.00411005 | ||||
| Sell | 13799211 | 1554 days ago | IN | 0 ETH | 0.00746975 | ||||
| Claim Profit | 13797242 | 1554 days ago | IN | 0 ETH | 0.00257488 | ||||
| Sell | 13685461 | 1572 days ago | IN | 0 ETH | 0.006813 | ||||
| Claim Profit | 13639161 | 1579 days ago | IN | 0 ETH | 0.00909866 | ||||
| Send Profit | 13626407 | 1581 days ago | IN | 0 ETH | 0.00663956 | ||||
| Claim Profit | 13577412 | 1589 days ago | IN | 0 ETH | 0.01244177 | ||||
| Sell | 13577386 | 1589 days ago | IN | 0 ETH | 0.01313982 | ||||
| Send Profit | 13441987 | 1610 days ago | IN | 0 ETH | 0.00525752 | ||||
| Buy | 13345220 | 1625 days ago | IN | 0 ETH | 0.00538132 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
RoyaleKingStakingLot
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-04-28
*/
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.6.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
interface RoyaNFT {
/**
* @dev Returns the amount of `id` tokens owned by `account`.
*/
function balanceOf(address account, uint256 id) external view returns (uint256);
/**
@notice Transfers `_value` amount of an `_id` from the `_from` address to the `_to` address specified (with safety call).
@dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
MUST revert if `_to` is the zero address.
MUST revert if balance of holder for token `_id` is lower than the `_value` sent.
MUST revert on any other error.
MUST emit the `TransferSingle` event to reflect the balance change (see "Safe Transfer Rules" section of the standard).
After the above conditions are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call `onERC1155Received` on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
@param _from Source address
@param _to Target address
@param _id ID of the token type
@param _value Transfer amount
@param _data Additional data with no specified format, MUST be sent unaltered in call to `onERC1155Received` on `_to`
*/
function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _value, bytes calldata _data) external;
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.6.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// File: @openzeppelin/contracts/math/SafeMath.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 SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity ^0.6.2;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')`
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
// solhint-disable-next-line no-inline-assembly
assembly { codehash := extcodehash(account) }
return (codehash != accountHash && codehash != 0x0);
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return _functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
return _functionCallWithValue(target, data, value, errorMessage);
}
function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC20/ERC20.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 ERC20 is Context, IERC20 {
using SafeMath for uint256;
using Address for address;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _decimals;
bool private transferrable;
/**
* @dev Sets the values for {name} and {symbol}, initializes {decimals} with
* a default value of 18.
*
* To select a different value for {decimals}, use {_setupDecimals}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name, string memory symbol) public {
_name = name;
_symbol = symbol;
_decimals = 18;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
* called.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20};
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(transferrable, "ERC20: Not transferrable");
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Sets {decimals} to a value other than the default one of 18.
*
* WARNING: This function should only be called from the constructor. Most
* applications that interact with token contracts will not expect
* {decimals} to ever change, and may work incorrectly if it does.
*/
function _setupDecimals(uint8 decimals_) internal {
_decimals = decimals_;
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}
// File: @openzeppelin/contracts/token/ERC20/SafeERC20.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 SafeERC20 {
using SafeMath for uint256;
using Address for address;
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
// solhint-disable-next-line max-line-length
require((value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).add(value);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) { // Return data is optional
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
// File: @openzeppelin/contracts/access/Ownable.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 Ownable is Context {
address private _owner;
address private _nominatedOwner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
event OwnershipNominated(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor (address _multisigWallet) internal {
_owner = _multisigWallet;
emit OwnershipTransferred(address(0), _multisigWallet);
}
/**
* @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.
*/
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function nominateNewOwner(address _wallet) external onlyOwner {
_nominatedOwner = _wallet;
emit OwnershipNominated(_owner,_wallet);
}
function acceptOwnership() external {
require(msg.sender == _nominatedOwner, "You must be nominated before you can accept ownership");
emit OwnershipTransferred(_owner, _nominatedOwner);
_owner = _nominatedOwner;
_nominatedOwner = address(0);
}
}
// File: contracts/Interfaces/Interfaces.sol
pragma solidity 0.6.12;
interface IStakingLot {
event Claim(address indexed acount, uint amount);
event Profit(uint amount);
function claimProfit() external returns (uint profit);
function buy(uint amount) external;
function sell(uint amount) external;
function profitOf(address account) external view returns (uint);
}
interface IStakingLotERC20 is IStakingLot {
function sendProfit(uint amount) external;
}
contract CommonConstants {
bytes4 constant internal ERC1155_ACCEPTED = 0xf23a6e61; // bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))
bytes4 constant internal ERC1155_BATCH_ACCEPTED = 0xbc197c81; // bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))
}
contract ERC1155Receiver is CommonConstants {
// Keep values from last received contract.
bool shouldReject;
bytes public lastData;
address public lastOperator;
address public lastFrom;
uint256 public lastId;
uint256 public lastValue;
function onERC1155Received(address _operator, address _from, uint256 _id, uint256 _value, bytes calldata _data) external returns(bytes4) {
lastOperator = _operator;
lastFrom = _from;
lastId = _id;
lastValue = _value;
lastData = _data;
if (shouldReject == true) {
revert("onERC1155Received: transfer not accepted");
} else {
return ERC1155_ACCEPTED;
}
}
function onERC1155BatchReceived(address _operator, address _from, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) external returns(bytes4) {
lastOperator = _operator;
lastFrom = _from;
lastId = _ids[0];
lastValue = _values[0];
lastData = _data;
if (shouldReject == true) {
revert("onERC1155BatchReceived: transfer not accepted");
} else {
return ERC1155_BATCH_ACCEPTED;
}
}
// ERC165 interface support
function supportsInterface(bytes4 interfaceID) external pure returns (bool) {
return interfaceID == 0x01ffc9a7 || // ERC165
interfaceID == 0x4e2312e0; // ERC1155_ACCEPTED ^ ERC1155_BATCH_ACCEPTED;
}
}
// For the future integrations of non-standard ERC20 tokens such as USDT and others
// interface ERC20Incorrect {
// event Transfer(address indexed from, address indexed to, uint256 value);
//
// event Approval(address indexed owner, address indexed spender, uint256 value);
//
// function transfer(address to, uint256 value) external;
//
// function transferFrom(
// address from,
// address to,
// uint256 value
// ) external;
//
// function approve(address spender, uint256 value) external;
// function balanceOf(address who) external view returns (uint256);
// function allowance(address owner, address spender) external view returns (uint256);
//
// }
pragma solidity 0.6.12;
abstract
contract StakingLot is ERC20, IStakingLot, ERC1155Receiver, Ownable {
using SafeERC20 for IERC20;
using SafeMath for uint;
IERC20 public immutable ROYA;
uint public constant MAX_SUPPLY = 200;
uint public constant LOT_PRICE = 100000 * 10**18;
uint public constant DISCOUNTED_LOT_PRICE = 72000 * 10**18;
uint internal constant ACCURACY = 1e30;
address payable public immutable FALLBACK_RECIPIENT;
RoyaNFT RNFT;
uint public totalProfit = 0;
mapping(address => uint) internal lastProfit;
mapping(address => uint) internal savedProfit;
uint256 public lockupPeriod = 691200;
mapping(address => uint256) public lastBoughtTimestamp;
mapping(address => bool) public _revertTransfersInLockUpPeriod;
mapping(address => mapping (uint256 => bool)) public hasLockedNFT;
mapping(address => uint256) public discountedLots;
bool public allowNFTDiscounts;
constructor(ERC20 _token, string memory name, string memory short, RoyaNFT _rnft, address _multisigWallet)
public
ERC20(name, short) Ownable(_multisigWallet)
{
ROYA = _token;
_setupDecimals(0);
FALLBACK_RECIPIENT = msg.sender;
RNFT = _rnft;
allowNFTDiscounts = false;
}
function claimProfit() external override returns (uint profit) {
profit = saveProfit(msg.sender);
require(profit > 0, "Zero profit");
savedProfit[msg.sender] = 0;
_transferProfit(profit);
emit Claim(msg.sender, profit);
}
function buy(uint amount) external override {
lastBoughtTimestamp[msg.sender] = block.timestamp;
require(amount > 0, "Amount is zero");
require(totalSupply() + amount <= MAX_SUPPLY);
_mint(msg.sender, amount);
ROYA.safeTransferFrom(msg.sender, address(this), amount.mul(LOT_PRICE));
}
function buyWithNFT(uint256 amount, uint256 id) external{
lastBoughtTimestamp[msg.sender] = block.timestamp;
require(allowNFTDiscounts, "NFT discounts disabled");
require(amount > 0, "Amount is zero");
require(id >=73 && id<=108, "Should be King NFT");
require(RNFT.balanceOf(msg.sender, id) > 0,"No NFT to claim discount");
require(totalSupply() + amount <= MAX_SUPPLY);
_mint(msg.sender, amount);
hasLockedNFT[msg.sender][id] = true;
amount = amount - 1;
RNFT.safeTransferFrom(msg.sender, address(this), id, 1, '0x');
ROYA.safeTransferFrom(msg.sender, address(this), amount.mul(LOT_PRICE).add(DISCOUNTED_LOT_PRICE));
discountedLots[msg.sender] += 1;
}
function sell(uint amount) external override lockupFree {
require(balanceOf(msg.sender) - discountedLots[msg.sender] >= amount,"NFT locked in contract or Invalid Amount");
_burn(msg.sender, amount);
ROYA.safeTransfer(msg.sender, amount.mul(LOT_PRICE));
}
function sellWithNFT(uint amount, uint256 id) external lockupFree {
require(hasLockedNFT[msg.sender][id],"This NFT is not locked");
require(amount>0,"Invalid amount.");
require(amount-1<=balanceOf(msg.sender).sub(discountedLots[msg.sender]),"Invalid amount.");
RNFT.safeTransferFrom(address(this), msg.sender, id, 1, '0x');
hasLockedNFT[msg.sender][id] = false;
_burn(msg.sender, amount);
amount =amount - 1;
discountedLots[msg.sender] -= 1;
ROYA.safeTransfer(msg.sender, amount.mul(LOT_PRICE).add(DISCOUNTED_LOT_PRICE));
}
/**
* @notice Used for ...
*/
function revertTransfersInLockUpPeriod(bool value) external {
_revertTransfersInLockUpPeriod[msg.sender] = value;
}
function setAllowNFTDiscounts(bool value) external onlyOwner {
allowNFTDiscounts = value;
}
function profitOf(address account) external view override returns (uint) {
return savedProfit[account].add(getUnsaved(account));
}
function getUnsaved(address account) internal view returns (uint profit) {
return totalProfit.sub(lastProfit[account]).mul(balanceOf(account)).div(ACCURACY);
}
function saveProfit(address account) internal returns (uint profit) {
uint unsaved = getUnsaved(account);
lastProfit[account] = totalProfit;
profit = savedProfit[account].add(unsaved);
savedProfit[account] = profit;
}
function _beforeTokenTransfer(address from, address to, uint256 amount) internal override {
require(amount>0,"Invalid amount");
if (from != address(0)) saveProfit(from);
if (to != address(0)) saveProfit(to);
if (
lastBoughtTimestamp[from].add(lockupPeriod) > block.timestamp &&
lastBoughtTimestamp[from] > lastBoughtTimestamp[to]
) {
require(
!_revertTransfersInLockUpPeriod[to],
"the recipient does not accept blocked funds"
);
lastBoughtTimestamp[to] = lastBoughtTimestamp[from];
}
}
function _transferProfit(uint amount) internal virtual;
modifier lockupFree {
require(
lastBoughtTimestamp[msg.sender].add(lockupPeriod) <= block.timestamp,
"Action suspended due to lockup"
);
_;
}
}
pragma solidity 0.6.12;
contract RoyaleKingStakingLot is StakingLot, IStakingLotERC20 {
using SafeERC20 for IERC20;
using SafeMath for uint;
IERC20 public immutable USDC;
constructor(ERC20 _token, ERC20 usdc, RoyaNFT rnft, address _multisigWallet) public
StakingLot(_token, "KROYA", "kRoya", rnft, _multisigWallet) {
USDC = usdc;
}
function sendProfit(uint amount) external override {
uint _totalSupply = totalSupply();
if (_totalSupply > 0) {
totalProfit += amount.mul(ACCURACY) / _totalSupply;
USDC.safeTransferFrom(msg.sender, address(this), amount);
emit Profit(amount);
} else {
USDC.safeTransferFrom(msg.sender, FALLBACK_RECIPIENT, amount);
}
}
function _transferProfit(uint amount) internal override {
USDC.safeTransfer(msg.sender, amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract ERC20","name":"_token","type":"address"},{"internalType":"contract ERC20","name":"usdc","type":"address"},{"internalType":"contract RoyaNFT","name":"rnft","type":"address"},{"internalType":"address","name":"_multisigWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"acount","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipNominated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Profit","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":[],"name":"DISCOUNTED_LOT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FALLBACK_RECIPIENT","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYA","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_revertTransfersInLockUpPeriod","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowNFTDiscounts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"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":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"buyWithNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimProfit","outputs":[{"internalType":"uint256","name":"profit","type":"uint256"}],"stateMutability":"nonpayable","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":"address","name":"","type":"address"}],"name":"discountedLots","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"hasLockedNFT","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"","type":"address"}],"name":"lastBoughtTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastData","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastFrom","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastOperator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockupPeriod","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":"_wallet","type":"address"}],"name":"nominateNewOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_values","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"profitOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"revertTransfersInLockUpPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"sell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"sellWithNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"sendProfit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setAllowNFTDiscounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalProfit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60e06040526000600e55620a8c006011553480156200001d57600080fd5b5060405162004bee38038062004bee833981810160405260808110156200004357600080fd5b8101908080519060200190929190805190602001909291908051906020019092919080519060200190929190505050836040518060400160405280600581526020017f4b524f59410000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f6b526f796100000000000000000000000000000000000000000000000000000081525084848084848160039080519060200190620000fc92919062000311565b5080600490805190602001906200011592919062000311565b506012600560006101000a81548160ff021916908360ff160217905550505080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508473ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506200021a6000620002f360201b60201c565b3373ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b8152505081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601660006101000a81548160ff02191690831515021790555050505050508273ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b8152505050505050620003b7565b80600560006101000a81548160ff021916908360ff16021790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200035457805160ff191683800117855562000385565b8280016001018555821562000385579182015b828111156200038457825182559160200191906001019062000367565b5b50905062000394919062000398565b5090565b5b80821115620003b357600081600090555060010162000399565b5090565b60805160601c60a05160601c60c05160601c6147d9620004156000398061172052806117c95280611ad65280613ce752508061132952806117a7525080611853528061201452806126df52806129e65280612c4d52506147d96000f3fe608060405234801561001057600080fd5b50600436106102735760003560e01c806379ba509711610151578063a8cad733116100c3578063dd62ed3e11610087578063dd62ed3e14610d8d578063e4849b3214610e05578063ee947a7c14610e33578063f011a7af14610e51578063f23a6e6114610e6f578063f8bac59914610f6f57610273565b8063a8cad73314610b0f578063a9059cbb14610b47578063bc197c8114610bab578063c1292cc314610d41578063d96a094a14610d5f57610273565b806392c2a4781161011557806392c2a4781461095a57806394c099171461099257806395d89b41146109b0578063a457c2d714610a33578063a5b21c1f14610a97578063a673729114610ab757610273565b806379ba50971461089657806380443378146108a057806386001519146108d457806389a30271146108f25780638da5cb5b1461092657610273565b806332cb6b0c116101ea57806354198ce9116101ae57806354198ce9146106f85780635fc0d2dd146107505780636b42539d1461077e5780636eb3cd49146107d6578063709ccacb1461080a57806370a082311461083e57610273565b806332cb6b0c146105e057806339509351146105fe5780633f40406c1461066257806343183834146106bc5780634ed37f02146106da57610273565b806318160ddd1161023c57806318160ddd146104895780631b016373146104a757806323b872dd146104db5780632839b0371461055f5780632ba591751461058f578063313ce567146105bf57610273565b80626e75ec1461027857806301ffc9a7146102fb57806306fdde031461035e578063095ea7b3146103e15780631627540c14610445575b600080fd5b610280610fd3565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102c05780820151818401526020810190506102a5565b50505050905090810190601f1680156102ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103466004803603602081101561031157600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611071565b60405180821515815260200191505060405180910390f35b6103666110d3565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103a657808201518184015260208101905061038b565b50505050905090810190601f1680156103d35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61042d600480360360408110156103f757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611175565b60405180821515815260200191505060405180910390f35b6104876004803603602081101561045b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611193565b005b61049161131d565b6040518082815260200191505060405180910390f35b6104af611327565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610547600480360360608110156104f157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061134b565b60405180821515815260200191505060405180910390f35b61058d6004803603602081101561057557600080fd5b81019080803515159060200190929190505050611424565b005b6105bd600480360360208110156105a557600080fd5b8101908080351515906020019092919050505061150b565b005b6105c7611565565b604051808260ff16815260200191505060405180910390f35b6105e861157c565b6040518082815260200191505060405180910390f35b61064a6004803603604081101561061457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611581565b60405180821515815260200191505060405180910390f35b6106a46004803603602081101561067857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611634565b60405180821515815260200191505060405180910390f35b6106c4611654565b6040518082815260200191505060405180910390f35b6106e261165a565b6040518082815260200191505060405180910390f35b61073a6004803603602081101561070e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611668565b6040518082815260200191505060405180910390f35b61077c6004803603602081101561076657600080fd5b81019080803590602001909291905050506116cb565b005b6107c06004803603602081101561079457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611813565b6040518082815260200191505060405180910390f35b6107de61182b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610812611851565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108806004803603602081101561085457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611875565b6040518082815260200191505060405180910390f35b61089e6118bd565b005b6108a8611aa8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108dc611ace565b6040518082815260200191505060405180910390f35b6108fa611ad4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61092e611af8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109906004803603604081101561097057600080fd5b810190808035906020019092919080359060200190929190505050611b22565b005b61099a61205c565b6040518082815260200191505060405180910390f35b6109b861206a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109f85780820151818401526020810190506109dd565b50505050905090810190601f168015610a255780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a7f60048036036040811015610a4957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061210c565b60405180821515815260200191505060405180910390f35b610a9f6121d9565b60405180821515815260200191505060405180910390f35b610af960048036036020811015610acd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121ec565b6040518082815260200191505060405180910390f35b610b4560048036036040811015610b2557600080fd5b810190808035906020019092919080359060200190929190505050612204565b005b610b9360048036036040811015610b5d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612776565b60405180821515815260200191505060405180910390f35b610d0c600480360360a0811015610bc157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610c1e57600080fd5b820183602082011115610c3057600080fd5b80359060200191846020830284011164010000000083111715610c5257600080fd5b909192939192939080359060200190640100000000811115610c7357600080fd5b820183602082011115610c8557600080fd5b80359060200191846020830284011164010000000083111715610ca757600080fd5b909192939192939080359060200190640100000000811115610cc857600080fd5b820183602082011115610cda57600080fd5b80359060200191846001830284011164010000000083111715610cfc57600080fd5b9091929391929390505050612794565b60405180827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200191505060405180910390f35b610d496128e1565b6040518082815260200191505060405180910390f35b610d8b60048036036020811015610d7557600080fd5b81019080803590602001909291905050506128e7565b005b610def60048036036040811015610da357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a2e565b6040518082815260200191505060405180910390f35b610e3160048036036020811015610e1b57600080fd5b8101908080359060200190929190505050612ab5565b005b610e3b612c94565b6040518082815260200191505060405180910390f35b610e59612c9a565b6040518082815260200191505060405180910390f35b610f3a600480360360a0811015610e8557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115610ef657600080fd5b820183602082011115610f0857600080fd5b80359060200191846001830284011164010000000083111715610f2a57600080fd5b9091929391929390505050612dbc565b60405180827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200191505060405180910390f35b610fbb60048036036040811015610f8557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612ee1565b60405180821515815260200191505060405180910390f35b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110695780601f1061103e57610100808354040283529160200191611069565b820191906000526020600020905b81548152906001019060200180831161104c57829003601f168201915b505050505081565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806110cc5750634e2312e060e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561116b5780601f106111405761010080835404028352916020019161116b565b820191906000526020600020905b81548152906001019060200180831161114e57829003601f168201915b5050505050905090565b6000611189611182612f10565b8484612f18565b6001905092915050565b61119b612f10565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f7cbe00258cd5670c808f2116fb86564f7f5717eef219817bc486add91c9ab7ca60405160405180910390a350565b6000600254905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600061135884848461310f565b61141984611364612f10565b6114148560405180606001604052806028815260200161469860289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006113ca612f10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134529092919063ffffffff16565b612f18565b600190509392505050565b61142c612f10565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660006101000a81548160ff02191690831515021790555050565b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900460ff16905090565b60c881565b600061162a61158e612f10565b84611625856001600061159f612f10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351290919063ffffffff16565b612f18565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b600a5481565b69152d02c7e14af680000081565b60006116c46116768361359a565b601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351290919063ffffffff16565b9050919050565b60006116d561131d565b905060008111156117a157806117016c0c9f2c9cd04674edea400000008461363090919063ffffffff16565b8161170857fe5b04600e600082825401925050819055506117653330847f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166136b6909392919063ffffffff16565b7f357d905f1831209797df4d55d79c5c5bf1d9f7311c976afd05e13d881eab9bc8826040518082815260200191505060405180910390a161180f565b61180e337f0000000000000000000000000000000000000000000000000000000000000000847f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166136b6909392919063ffffffff16565b5b5050565b60156020528060005260406000206000915090505481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603581526020018061455b6035913960400191505060405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b42611b77601154601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351290919063ffffffff16565b1115611beb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f416374696f6e2073757370656e6465642064756520746f206c6f636b7570000081525060200191505060405180910390fd5b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060009054906101000a900460ff16611cbb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f54686973204e4654206973206e6f74206c6f636b65640000000000000000000081525060200191505060405180910390fd5b60008211611d31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c696420616d6f756e742e000000000000000000000000000000000081525060200191505060405180910390fd5b611d8b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d7d33611875565b61377790919063ffffffff16565b600183031115611e03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c696420616d6f756e742e000000000000000000000000000000000081525060200191505060405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a30338460016040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200182815260200180602001828103825260028152602001807f307800000000000000000000000000000000000000000000000000000000000081525060200195505050505050600060405180830381600087803b158015611ef657600080fd5b505af1158015611f0a573d6000803e3d6000fd5b505050506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060006101000a81548160ff021916908315150217905550611f8133836137c1565b6001820391506001601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555061205833612012690f3f20b8dfa69d00000061200469152d02c7e14af68000008761363090919063ffffffff16565b61351290919063ffffffff16565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166139859092919063ffffffff16565b5050565b690f3f20b8dfa69d00000081565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121025780601f106120d757610100808354040283529160200191612102565b820191906000526020600020905b8154815290600101906020018083116120e557829003601f168201915b5050505050905090565b60006121cf612119612f10565b846121ca8560405180606001604052806025815260200161477f6025913960016000612143612f10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134529092919063ffffffff16565b612f18565b6001905092915050565b601660009054906101000a900460ff1681565b60126020528060005260406000206000915090505481565b42601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601660009054906101000a900460ff166122ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f4e465420646973636f756e74732064697361626c65640000000000000000000081525060200191505060405180910390fd5b60008211612340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f416d6f756e74206973207a65726f00000000000000000000000000000000000081525060200191505060405180910390fd5b604981101580156123525750606c8111155b6123c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f53686f756c64206265204b696e67204e4654000000000000000000000000000081525060200191505060405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e33846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b15801561245657600080fd5b505afa15801561246a573d6000803e3d6000fd5b505050506040513d602081101561248057600080fd5b810190808051906020019092919050505011612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4e6f204e465420746f20636c61696d20646973636f756e74000000000000000081525060200191505060405180910390fd5b60c88261250f61131d565b01111561251b57600080fd5b6125253383613a27565b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600182039150600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a33308460016040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200182815260200180602001828103825260028152602001807f307800000000000000000000000000000000000000000000000000000000000081525060200195505050505050600060405180830381600087803b15801561268757600080fd5b505af115801561269b573d6000803e3d6000fd5b5050505061272433306126dd690f3f20b8dfa69d0000006126cf69152d02c7e14af68000008861363090919063ffffffff16565b61351290919063ffffffff16565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166136b6909392919063ffffffff16565b6001601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505050565b600061278a612783612f10565b848461310f565b6001905092915050565b600088600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555087600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508686600081811061282557fe5b905060200201356009819055508484600081811061283f57fe5b90506020020135600a8190555082826006919061285d92919061449a565b5060011515600560029054906101000a900460ff16151514156128cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180614590602d913960400191505060405180910390fd5b63bc197c8160e01b905098975050505050505050565b60095481565b42601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600081116129a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f416d6f756e74206973207a65726f00000000000000000000000000000000000081525060200191505060405180910390fd5b60c8816129ac61131d565b0111156129b857600080fd5b6129c23382613a27565b612a2b33306129e469152d02c7e14af68000008561363090919063ffffffff16565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166136b6909392919063ffffffff16565b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b42612b0a601154601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351290919063ffffffff16565b1115612b7e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f416374696f6e2073757370656e6465642064756520746f206c6f636b7570000081525060200191505060405180910390fd5b80601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bc833611875565b031015612c20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061464f6028913960400191505060405180910390fd5b612c2a33826137c1565b612c9133612c4b69152d02c7e14af68000008461363090919063ffffffff16565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166139859092919063ffffffff16565b50565b60115481565b6000612ca533613bee565b905060008111612d1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f5a65726f2070726f66697400000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d6b81613ce0565b3373ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4826040518082815260200191505060405180910390a290565b600086600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508460098190555083600a81905550828260069190612e5f92919061449a565b5060011515600560029054906101000a900460ff1615151415612ecd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806146016028913960400191505060405180910390fd5b63f23a6e6160e01b90509695505050505050565b60146020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806147316024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613024576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806145df6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600560019054906101000a900460ff16613191576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f45524332303a204e6f74207472616e736665727261626c65000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061470c6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561329d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806145386023913960400191505060405180910390fd5b6132a8838383613d2e565b61331381604051806060016040528060268152602001614629602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134529092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506133a6816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906134ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156134c45780820151818401526020810190506134a9565b50505050905090810190601f1680156134f15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015613590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60006136296c0c9f2c9cd04674edea4000000061361b6135b985611875565b61360d600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600e5461377790919063ffffffff16565b61363090919063ffffffff16565b61403290919063ffffffff16565b9050919050565b60008083141561364357600090506136b0565b600082840290508284828161365457fe5b04146136ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806146776021913960400191505060405180910390fd5b809150505b92915050565b613771846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061407c565b50505050565b60006137b983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613452565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613847576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806146c06021913960400191505060405180910390fd5b61385382600083613d2e565b6138be816040518060600160405280602281526020016145bd602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134529092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139158160025461377790919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b613a228363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061407c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613aca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b613ad660008383613d2e565b613aeb8160025461351290919063ffffffff16565b600281905550613b42816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080613bfa8361359a565b9050600e54600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c9481601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351290919063ffffffff16565b915081601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050919050565b613d2b33827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166139859092919063ffffffff16565b50565b60008111613da4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f496e76616c696420616d6f756e7400000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613de357613de183613bee565b505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613e2257613e2082613bee565b505b42613e77601154601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351290919063ffffffff16565b118015613f015750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561402d57601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613fa9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806146e1602b913960400191505060405180910390fd5b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600061407483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061416b565b905092915050565b60606140de826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166142319092919063ffffffff16565b9050600081511115614166578080602001905160208110156140ff57600080fd5b8101908080519060200190929190505050614165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614755602a913960400191505060405180910390fd5b5b505050565b60008083118290614217576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156141dc5780820151818401526020810190506141c1565b50505050905090810190601f1680156142095780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161422357fe5b049050809150509392505050565b60606142408484600085614249565b90509392505050565b60606142548561444f565b6142c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061431657805182526020820191506020810190506020830392506142f3565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614378576040519150601f19603f3d011682016040523d82523d6000602084013e61437d565b606091505b50915091508115614392578092505050614447565b6000815111156143a55780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561440c5780820151818401526020810190506143f1565b50505050905090810190601f1680156144395780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561449157506000801b8214155b92505050919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106144db57803560ff1916838001178555614509565b82800160010185558215614509579182015b828111156145085782358255916020019190600101906144ed565b5b509050614516919061451a565b5090565b5b8082111561453357600081600090555060010161451b565b509056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373596f75206d757374206265206e6f6d696e61746564206265666f726520796f752063616e20616363657074206f776e6572736869706f6e45524331313535426174636852656365697665643a207472616e73666572206e6f7420616363657074656445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f20616464726573736f6e4552433131353552656365697665643a207472616e73666572206e6f7420616363657074656445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654e4654206c6f636b656420696e20636f6e7472616374206f7220496e76616c696420416d6f756e74536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737374686520726563697069656e7420646f6573206e6f742061636365707420626c6f636b65642066756e647345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205337292b83bb96cec7659faea3f2d759043c52295b873febc1c929e4350b56c364736f6c634300060c00330000000000000000000000007eaf9c89037e4814dc0d9952ac7f888c784548db000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000448cb15b00ced3ac47467e33493d602f34c8e77e000000000000000000000000ccbbf208cd893959f78f7e68e8896e11e9cd3beb
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102735760003560e01c806379ba509711610151578063a8cad733116100c3578063dd62ed3e11610087578063dd62ed3e14610d8d578063e4849b3214610e05578063ee947a7c14610e33578063f011a7af14610e51578063f23a6e6114610e6f578063f8bac59914610f6f57610273565b8063a8cad73314610b0f578063a9059cbb14610b47578063bc197c8114610bab578063c1292cc314610d41578063d96a094a14610d5f57610273565b806392c2a4781161011557806392c2a4781461095a57806394c099171461099257806395d89b41146109b0578063a457c2d714610a33578063a5b21c1f14610a97578063a673729114610ab757610273565b806379ba50971461089657806380443378146108a057806386001519146108d457806389a30271146108f25780638da5cb5b1461092657610273565b806332cb6b0c116101ea57806354198ce9116101ae57806354198ce9146106f85780635fc0d2dd146107505780636b42539d1461077e5780636eb3cd49146107d6578063709ccacb1461080a57806370a082311461083e57610273565b806332cb6b0c146105e057806339509351146105fe5780633f40406c1461066257806343183834146106bc5780634ed37f02146106da57610273565b806318160ddd1161023c57806318160ddd146104895780631b016373146104a757806323b872dd146104db5780632839b0371461055f5780632ba591751461058f578063313ce567146105bf57610273565b80626e75ec1461027857806301ffc9a7146102fb57806306fdde031461035e578063095ea7b3146103e15780631627540c14610445575b600080fd5b610280610fd3565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102c05780820151818401526020810190506102a5565b50505050905090810190601f1680156102ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103466004803603602081101561031157600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611071565b60405180821515815260200191505060405180910390f35b6103666110d3565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103a657808201518184015260208101905061038b565b50505050905090810190601f1680156103d35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61042d600480360360408110156103f757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611175565b60405180821515815260200191505060405180910390f35b6104876004803603602081101561045b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611193565b005b61049161131d565b6040518082815260200191505060405180910390f35b6104af611327565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610547600480360360608110156104f157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061134b565b60405180821515815260200191505060405180910390f35b61058d6004803603602081101561057557600080fd5b81019080803515159060200190929190505050611424565b005b6105bd600480360360208110156105a557600080fd5b8101908080351515906020019092919050505061150b565b005b6105c7611565565b604051808260ff16815260200191505060405180910390f35b6105e861157c565b6040518082815260200191505060405180910390f35b61064a6004803603604081101561061457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611581565b60405180821515815260200191505060405180910390f35b6106a46004803603602081101561067857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611634565b60405180821515815260200191505060405180910390f35b6106c4611654565b6040518082815260200191505060405180910390f35b6106e261165a565b6040518082815260200191505060405180910390f35b61073a6004803603602081101561070e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611668565b6040518082815260200191505060405180910390f35b61077c6004803603602081101561076657600080fd5b81019080803590602001909291905050506116cb565b005b6107c06004803603602081101561079457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611813565b6040518082815260200191505060405180910390f35b6107de61182b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610812611851565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108806004803603602081101561085457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611875565b6040518082815260200191505060405180910390f35b61089e6118bd565b005b6108a8611aa8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108dc611ace565b6040518082815260200191505060405180910390f35b6108fa611ad4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61092e611af8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109906004803603604081101561097057600080fd5b810190808035906020019092919080359060200190929190505050611b22565b005b61099a61205c565b6040518082815260200191505060405180910390f35b6109b861206a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109f85780820151818401526020810190506109dd565b50505050905090810190601f168015610a255780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a7f60048036036040811015610a4957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061210c565b60405180821515815260200191505060405180910390f35b610a9f6121d9565b60405180821515815260200191505060405180910390f35b610af960048036036020811015610acd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121ec565b6040518082815260200191505060405180910390f35b610b4560048036036040811015610b2557600080fd5b810190808035906020019092919080359060200190929190505050612204565b005b610b9360048036036040811015610b5d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612776565b60405180821515815260200191505060405180910390f35b610d0c600480360360a0811015610bc157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610c1e57600080fd5b820183602082011115610c3057600080fd5b80359060200191846020830284011164010000000083111715610c5257600080fd5b909192939192939080359060200190640100000000811115610c7357600080fd5b820183602082011115610c8557600080fd5b80359060200191846020830284011164010000000083111715610ca757600080fd5b909192939192939080359060200190640100000000811115610cc857600080fd5b820183602082011115610cda57600080fd5b80359060200191846001830284011164010000000083111715610cfc57600080fd5b9091929391929390505050612794565b60405180827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200191505060405180910390f35b610d496128e1565b6040518082815260200191505060405180910390f35b610d8b60048036036020811015610d7557600080fd5b81019080803590602001909291905050506128e7565b005b610def60048036036040811015610da357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a2e565b6040518082815260200191505060405180910390f35b610e3160048036036020811015610e1b57600080fd5b8101908080359060200190929190505050612ab5565b005b610e3b612c94565b6040518082815260200191505060405180910390f35b610e59612c9a565b6040518082815260200191505060405180910390f35b610f3a600480360360a0811015610e8557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115610ef657600080fd5b820183602082011115610f0857600080fd5b80359060200191846001830284011164010000000083111715610f2a57600080fd5b9091929391929390505050612dbc565b60405180827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200191505060405180910390f35b610fbb60048036036040811015610f8557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612ee1565b60405180821515815260200191505060405180910390f35b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110695780601f1061103e57610100808354040283529160200191611069565b820191906000526020600020905b81548152906001019060200180831161104c57829003601f168201915b505050505081565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806110cc5750634e2312e060e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561116b5780601f106111405761010080835404028352916020019161116b565b820191906000526020600020905b81548152906001019060200180831161114e57829003601f168201915b5050505050905090565b6000611189611182612f10565b8484612f18565b6001905092915050565b61119b612f10565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f7cbe00258cd5670c808f2116fb86564f7f5717eef219817bc486add91c9ab7ca60405160405180910390a350565b6000600254905090565b7f0000000000000000000000008d4b5a1b15014a5170886e0664f7a04dfc44ac8981565b600061135884848461310f565b61141984611364612f10565b6114148560405180606001604052806028815260200161469860289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006113ca612f10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134529092919063ffffffff16565b612f18565b600190509392505050565b61142c612f10565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660006101000a81548160ff02191690831515021790555050565b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900460ff16905090565b60c881565b600061162a61158e612f10565b84611625856001600061159f612f10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351290919063ffffffff16565b612f18565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b600a5481565b69152d02c7e14af680000081565b60006116c46116768361359a565b601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351290919063ffffffff16565b9050919050565b60006116d561131d565b905060008111156117a157806117016c0c9f2c9cd04674edea400000008461363090919063ffffffff16565b8161170857fe5b04600e600082825401925050819055506117653330847f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff166136b6909392919063ffffffff16565b7f357d905f1831209797df4d55d79c5c5bf1d9f7311c976afd05e13d881eab9bc8826040518082815260200191505060405180910390a161180f565b61180e337f0000000000000000000000008d4b5a1b15014a5170886e0664f7a04dfc44ac89847f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff166136b6909392919063ffffffff16565b5b5050565b60156020528060005260406000206000915090505481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f0000000000000000000000007eaf9c89037e4814dc0d9952ac7f888c784548db81565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603581526020018061455b6035913960400191505060405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b7f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b42611b77601154601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351290919063ffffffff16565b1115611beb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f416374696f6e2073757370656e6465642064756520746f206c6f636b7570000081525060200191505060405180910390fd5b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060009054906101000a900460ff16611cbb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f54686973204e4654206973206e6f74206c6f636b65640000000000000000000081525060200191505060405180910390fd5b60008211611d31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c696420616d6f756e742e000000000000000000000000000000000081525060200191505060405180910390fd5b611d8b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d7d33611875565b61377790919063ffffffff16565b600183031115611e03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c696420616d6f756e742e000000000000000000000000000000000081525060200191505060405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a30338460016040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200182815260200180602001828103825260028152602001807f307800000000000000000000000000000000000000000000000000000000000081525060200195505050505050600060405180830381600087803b158015611ef657600080fd5b505af1158015611f0a573d6000803e3d6000fd5b505050506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060006101000a81548160ff021916908315150217905550611f8133836137c1565b6001820391506001601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555061205833612012690f3f20b8dfa69d00000061200469152d02c7e14af68000008761363090919063ffffffff16565b61351290919063ffffffff16565b7f0000000000000000000000007eaf9c89037e4814dc0d9952ac7f888c784548db73ffffffffffffffffffffffffffffffffffffffff166139859092919063ffffffff16565b5050565b690f3f20b8dfa69d00000081565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121025780601f106120d757610100808354040283529160200191612102565b820191906000526020600020905b8154815290600101906020018083116120e557829003601f168201915b5050505050905090565b60006121cf612119612f10565b846121ca8560405180606001604052806025815260200161477f6025913960016000612143612f10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134529092919063ffffffff16565b612f18565b6001905092915050565b601660009054906101000a900460ff1681565b60126020528060005260406000206000915090505481565b42601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601660009054906101000a900460ff166122ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f4e465420646973636f756e74732064697361626c65640000000000000000000081525060200191505060405180910390fd5b60008211612340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f416d6f756e74206973207a65726f00000000000000000000000000000000000081525060200191505060405180910390fd5b604981101580156123525750606c8111155b6123c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f53686f756c64206265204b696e67204e4654000000000000000000000000000081525060200191505060405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e33846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b15801561245657600080fd5b505afa15801561246a573d6000803e3d6000fd5b505050506040513d602081101561248057600080fd5b810190808051906020019092919050505011612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4e6f204e465420746f20636c61696d20646973636f756e74000000000000000081525060200191505060405180910390fd5b60c88261250f61131d565b01111561251b57600080fd5b6125253383613a27565b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600182039150600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a33308460016040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200182815260200180602001828103825260028152602001807f307800000000000000000000000000000000000000000000000000000000000081525060200195505050505050600060405180830381600087803b15801561268757600080fd5b505af115801561269b573d6000803e3d6000fd5b5050505061272433306126dd690f3f20b8dfa69d0000006126cf69152d02c7e14af68000008861363090919063ffffffff16565b61351290919063ffffffff16565b7f0000000000000000000000007eaf9c89037e4814dc0d9952ac7f888c784548db73ffffffffffffffffffffffffffffffffffffffff166136b6909392919063ffffffff16565b6001601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505050565b600061278a612783612f10565b848461310f565b6001905092915050565b600088600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555087600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508686600081811061282557fe5b905060200201356009819055508484600081811061283f57fe5b90506020020135600a8190555082826006919061285d92919061449a565b5060011515600560029054906101000a900460ff16151514156128cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180614590602d913960400191505060405180910390fd5b63bc197c8160e01b905098975050505050505050565b60095481565b42601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600081116129a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f416d6f756e74206973207a65726f00000000000000000000000000000000000081525060200191505060405180910390fd5b60c8816129ac61131d565b0111156129b857600080fd5b6129c23382613a27565b612a2b33306129e469152d02c7e14af68000008561363090919063ffffffff16565b7f0000000000000000000000007eaf9c89037e4814dc0d9952ac7f888c784548db73ffffffffffffffffffffffffffffffffffffffff166136b6909392919063ffffffff16565b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b42612b0a601154601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351290919063ffffffff16565b1115612b7e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f416374696f6e2073757370656e6465642064756520746f206c6f636b7570000081525060200191505060405180910390fd5b80601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bc833611875565b031015612c20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061464f6028913960400191505060405180910390fd5b612c2a33826137c1565b612c9133612c4b69152d02c7e14af68000008461363090919063ffffffff16565b7f0000000000000000000000007eaf9c89037e4814dc0d9952ac7f888c784548db73ffffffffffffffffffffffffffffffffffffffff166139859092919063ffffffff16565b50565b60115481565b6000612ca533613bee565b905060008111612d1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f5a65726f2070726f66697400000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d6b81613ce0565b3373ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4826040518082815260200191505060405180910390a290565b600086600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508460098190555083600a81905550828260069190612e5f92919061449a565b5060011515600560029054906101000a900460ff1615151415612ecd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806146016028913960400191505060405180910390fd5b63f23a6e6160e01b90509695505050505050565b60146020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806147316024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613024576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806145df6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600560019054906101000a900460ff16613191576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f45524332303a204e6f74207472616e736665727261626c65000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061470c6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561329d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806145386023913960400191505060405180910390fd5b6132a8838383613d2e565b61331381604051806060016040528060268152602001614629602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134529092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506133a6816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906134ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156134c45780820151818401526020810190506134a9565b50505050905090810190601f1680156134f15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015613590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60006136296c0c9f2c9cd04674edea4000000061361b6135b985611875565b61360d600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600e5461377790919063ffffffff16565b61363090919063ffffffff16565b61403290919063ffffffff16565b9050919050565b60008083141561364357600090506136b0565b600082840290508284828161365457fe5b04146136ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806146776021913960400191505060405180910390fd5b809150505b92915050565b613771846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061407c565b50505050565b60006137b983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613452565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613847576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806146c06021913960400191505060405180910390fd5b61385382600083613d2e565b6138be816040518060600160405280602281526020016145bd602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134529092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139158160025461377790919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b613a228363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061407c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613aca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b613ad660008383613d2e565b613aeb8160025461351290919063ffffffff16565b600281905550613b42816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080613bfa8361359a565b9050600e54600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c9481601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351290919063ffffffff16565b915081601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050919050565b613d2b33827f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff166139859092919063ffffffff16565b50565b60008111613da4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f496e76616c696420616d6f756e7400000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613de357613de183613bee565b505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613e2257613e2082613bee565b505b42613e77601154601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351290919063ffffffff16565b118015613f015750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561402d57601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613fa9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806146e1602b913960400191505060405180910390fd5b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600061407483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061416b565b905092915050565b60606140de826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166142319092919063ffffffff16565b9050600081511115614166578080602001905160208110156140ff57600080fd5b8101908080519060200190929190505050614165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614755602a913960400191505060405180910390fd5b5b505050565b60008083118290614217576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156141dc5780820151818401526020810190506141c1565b50505050905090810190601f1680156142095780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161422357fe5b049050809150509392505050565b60606142408484600085614249565b90509392505050565b60606142548561444f565b6142c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061431657805182526020820191506020810190506020830392506142f3565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614378576040519150601f19603f3d011682016040523d82523d6000602084013e61437d565b606091505b50915091508115614392578092505050614447565b6000815111156143a55780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561440c5780820151818401526020810190506143f1565b50505050905090810190601f1680156144395780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561449157506000801b8214155b92505050919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106144db57803560ff1916838001178555614509565b82800160010185558215614509579182015b828111156145085782358255916020019190600101906144ed565b5b509050614516919061451a565b5090565b5b8082111561453357600081600090555060010161451b565b509056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373596f75206d757374206265206e6f6d696e61746564206265666f726520796f752063616e20616363657074206f776e6572736869706f6e45524331313535426174636852656365697665643a207472616e73666572206e6f7420616363657074656445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f20616464726573736f6e4552433131353552656365697665643a207472616e73666572206e6f7420616363657074656445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654e4654206c6f636b656420696e20636f6e7472616374206f7220496e76616c696420416d6f756e74536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737374686520726563697069656e7420646f6573206e6f742061636365707420626c6f636b65642066756e647345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205337292b83bb96cec7659faea3f2d759043c52295b873febc1c929e4350b56c364736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007eaf9c89037e4814dc0d9952ac7f888c784548db000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000448cb15b00ced3ac47467e33493d602f34c8e77e000000000000000000000000ccbbf208cd893959f78f7e68e8896e11e9cd3beb
-----Decoded View---------------
Arg [0] : _token (address): 0x7eaF9C89037e4814DC0d9952Ac7F888C784548DB
Arg [1] : usdc (address): 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
Arg [2] : rnft (address): 0x448CB15B00ceD3ac47467e33493d602f34c8e77e
Arg [3] : _multisigWallet (address): 0xcCBBf208CD893959f78f7e68e8896e11E9CD3bEB
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000007eaf9c89037e4814dc0d9952ac7f888c784548db
Arg [1] : 000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48
Arg [2] : 000000000000000000000000448cb15b00ced3ac47467e33493d602f34c8e77e
Arg [3] : 000000000000000000000000ccbbf208cd893959f78f7e68e8896e11e9cd3beb
Deployed Bytecode Sourcemap
42866:896:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35177:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36337:238;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19096:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21202:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33740:156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20171:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37741:51;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;21845:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;41188:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41043:129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20023:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37532:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22579:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38065:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35297:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37576:48;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41301:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43228:411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38206:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35205:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37497:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20334:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33904:285;;;:::i;:::-;;35239:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37820:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43000:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32917:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40367:621;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37631:58;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19298:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23300:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38262:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38004:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39277:778;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20666:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35793:503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;35269:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38931:334;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20904:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40073:286;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37961:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38652:271;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35330:455;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;38134:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35177:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36337:238::-;36407:4;36447:10;36432:25;;:11;:25;;;;:84;;;;36506:10;36491:25;;:11;:25;;;;36432:84;36424:92;;36337:238;;;:::o;19096:83::-;19133:13;19166:5;19159:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19096:83;:::o;21202:169::-;21285:4;21302:39;21311:12;:10;:12::i;:::-;21325:7;21334:6;21302:8;:39::i;:::-;21359:4;21352:11;;21202:169;;;;:::o;33740:156::-;33139:12;:10;:12::i;:::-;33129:22;;:6;;;;;;;;;;;:22;;;33121:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33831:7:::1;33813:15;;:25;;;;;;;;;;;;;;;;;;33880:7;33854:34;;33873:6;;;;;;;;;;;33854:34;;;;;;;;;;;;33740:156:::0;:::o;20171:100::-;20224:7;20251:12;;20244:19;;20171:100;:::o;37741:51::-;;;:::o;21845:321::-;21951:4;21968:36;21978:6;21986:9;21997:6;21968:9;:36::i;:::-;22015:121;22024:6;22032:12;:10;:12::i;:::-;22046:89;22084:6;22046:89;;;;;;;;;;;;;;;;;:11;:19;22058:6;22046:19;;;;;;;;;;;;;;;:33;22066:12;:10;:12::i;:::-;22046:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;22015:8;:121::i;:::-;22154:4;22147:11;;21845:321;;;;;:::o;41188:105::-;33139:12;:10;:12::i;:::-;33129:22;;:6;;;;;;;;;;;:22;;;33121:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41280:5:::1;41260:17;;:25;;;;;;;;;;;;;;;;;;41188:105:::0;:::o;41043:129::-;41159:5;41114:30;:42;41145:10;41114:42;;;;;;;;;;;;;;;;:50;;;;;;;;;;;;;;;;;;41043:129;:::o;20023:83::-;20064:5;20089:9;;;;;;;;;;;20082:16;;20023:83;:::o;37532:37::-;37566:3;37532:37;:::o;22579:218::-;22667:4;22684:83;22693:12;:10;:12::i;:::-;22707:7;22716:50;22755:10;22716:11;:25;22728:12;:10;:12::i;:::-;22716:25;;;;;;;;;;;;;;;:34;22742:7;22716:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;22684:8;:83::i;:::-;22785:4;22778:11;;22579:218;;;;:::o;38065:62::-;;;;;;;;;;;;;;;;;;;;;;:::o;35297:24::-;;;;:::o;37576:48::-;37609:15;37576:48;:::o;41301:144::-;41368:4;41392:45;41417:19;41428:7;41417:10;:19::i;:::-;41392:11;:20;41404:7;41392:20;;;;;;;;;;;;;;;;:24;;:45;;;;:::i;:::-;41385:52;;41301:144;;;:::o;43228:411::-;43290:17;43310:13;:11;:13::i;:::-;43290:33;;43353:1;43338:12;:16;43334:298;;;43409:12;43386:20;37730:4;43386:6;:10;;:20;;;;:::i;:::-;:35;;;;;;43371:11;;:50;;;;;;;;;;;43436:56;43458:10;43478:4;43485:6;43436:4;:21;;;;:56;;;;;;:::i;:::-;43512:14;43519:6;43512:14;;;;;;;;;;;;;;;;;;43334:298;;;43559:61;43581:10;43593:18;43613:6;43559:4;:21;;;;:61;;;;;;:::i;:::-;43334:298;43228:411;;:::o;38206:49::-;;;;;;;;;;;;;;;;;:::o;35205:27::-;;;;;;;;;;;;;:::o;37497:28::-;;;:::o;20334:119::-;20400:7;20427:9;:18;20437:7;20427:18;;;;;;;;;;;;;;;;20420:25;;20334:119;;;:::o;33904:285::-;33973:15;;;;;;;;;;;33959:29;;:10;:29;;;33951:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34091:15;;;;;;;;;;;34062:45;;34083:6;;;;;;;;;;;34062:45;;;;;;;;;;;;34127:15;;;;;;;;;;;34118:6;;:24;;;;;;;;;;;;;;;;;;34179:1;34153:15;;:28;;;;;;;;;;;;;;;;;;33904:285::o;35239:23::-;;;;;;;;;;;;;:::o;37820:27::-;;;;:::o;43000:28::-;;;:::o;32917:79::-;32955:7;32982:6;;;;;;;;;;;32975:13;;32917:79;:::o;40367:621::-;42729:15;42676:49;42712:12;;42676:19;:31;42696:10;42676:31;;;;;;;;;;;;;;;;:35;;:49;;;;:::i;:::-;:68;;42654:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40452:12:::1;:24;40465:10;40452:24;;;;;;;;;;;;;;;:28;40477:2;40452:28;;;;;;;;;;;;;;;;;;;;;40444:62;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;40532:1;40525:6;:8;40517:35;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;40581:53;40607:14;:26;40622:10;40607:26;;;;;;;;;;;;;;;;40581:21;40591:10;40581:9;:21::i;:::-;:25;;:53;;;;:::i;:::-;40578:1;40571:6;:8;:63;;40563:90;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;40664:4;;;;;;;;;;;:21;;;40694:4;40701:10;40713:2;40717:1;40664:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40767:5;40736:12;:24;40749:10;40736:24;;;;;;;;;;;;;;;:28;40761:2;40736:28;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;40785:25;40791:10;40803:6;40785:5;:25::i;:::-;40838:1;40829:6;:10;40821:18;;40880:1;40850:14;:26;40865:10;40850:26;;;;;;;;;;;;;;;;:31;;;;;;;;;;;40902:78;40920:10;40932:47;37675:14;40932:21;37609:15;40932:6;:10;;:21;;;;:::i;:::-;:25;;:47;;;;:::i;:::-;40902:4;:17;;;;:78;;;;;:::i;:::-;40367:621:::0;;:::o;37631:58::-;37675:14;37631:58;:::o;19298:87::-;19337:13;19370:7;19363:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19298:87;:::o;23300:269::-;23393:4;23410:129;23419:12;:10;:12::i;:::-;23433:7;23442:96;23481:15;23442:96;;;;;;;;;;;;;;;;;:11;:25;23454:12;:10;:12::i;:::-;23442:25;;;;;;;;;;;;;;;:34;23468:7;23442:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;23410:8;:129::i;:::-;23557:4;23550:11;;23300:269;;;;:::o;38262:29::-;;;;;;;;;;;;;:::o;38004:54::-;;;;;;;;;;;;;;;;;:::o;39277:778::-;39378:15;39344:19;:31;39364:10;39344:31;;;;;;;;;;;;;;;:49;;;;39412:17;;;;;;;;;;;39404:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39484:1;39475:6;:10;39467:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39528:2;39523;:7;;:18;;;;;39538:3;39534:2;:7;;39523:18;39515:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39616:1;39583:4;;;;;;;;;;;:14;;;39598:10;39610:2;39583:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:34;39575:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37566:3;39680:6;39664:13;:11;:13::i;:::-;:22;:36;;39656:45;;;;;;39722:25;39728:10;39740:6;39722:5;:25::i;:::-;39789:4;39758:12;:24;39771:10;39758:24;;;;;;;;;;;;;;;:28;39783:2;39758:28;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;39822:1;39813:6;:10;39804:19;;39834:4;;;;;;;;;;;:21;;;39856:10;39876:4;39883:2;39887:1;39834:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39906:97;39928:10;39948:4;39955:47;37675:14;39955:21;37609:15;39955:6;:10;;:21;;;;:::i;:::-;:25;;:47;;;;:::i;:::-;39906:4;:21;;;;:97;;;;;;:::i;:::-;40044:1;40014:14;:26;40029:10;40014:26;;;;;;;;;;;;;;;;:31;;;;;;;;;;;39277:778;;:::o;20666:175::-;20752:4;20769:42;20779:12;:10;:12::i;:::-;20793:9;20804:6;20769:9;:42::i;:::-;20829:4;20822:11;;20666:175;;;;:::o;35793:503::-;35951:6;35985:9;35970:12;;:24;;;;;;;;;;;;;;;;;;36016:5;36005:8;;:16;;;;;;;;;;;;;;;;;;36041:4;;36046:1;36041:7;;;;;;;;;;;;;36032:6;:16;;;;36071:7;;36079:1;36071:10;;;;;;;;;;;;;36059:9;:22;;;;36103:5;;36092:8;:16;;;;;;;:::i;:::-;;36139:4;36123:20;;:12;;;;;;;;;;;:20;;;36119:170;;;36160:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36119:170;34941:10;36255:22;;36248:29;;35793:503;;;;;;;;;;:::o;35269:21::-;;;;:::o;38931:334::-;39020:15;38986:19;:31;39006:10;38986:31;;;;;;;;;;;;;;;:49;;;;39063:1;39054:6;:10;39046:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37566:3;39118:6;39102:13;:11;:13::i;:::-;:22;:36;;39094:45;;;;;;39150:25;39156:10;39168:6;39150:5;:25::i;:::-;39186:71;39208:10;39228:4;39235:21;37609:15;39235:6;:10;;:21;;;;:::i;:::-;39186:4;:21;;;;:71;;;;;;:::i;:::-;38931:334;:::o;20904:151::-;20993:7;21020:11;:18;21032:5;21020:18;;;;;;;;;;;;;;;:27;21039:7;21020:27;;;;;;;;;;;;;;;;21013:34;;20904:151;;;;:::o;40073:286::-;42729:15;42676:49;42712:12;;42676:19;:31;42696:10;42676:31;;;;;;;;;;;;;;;;:35;;:49;;;;:::i;:::-;:68;;42654:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40202:6:::1;40172:14;:26;40187:10;40172:26;;;;;;;;;;;;;;;;40148:21;40158:10;40148:9;:21::i;:::-;:50;:60;;40140:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40263:25;40269:10;40281:6;40263:5;:25::i;:::-;40299:52;40317:10;40329:21;37609:15;40329:6;:10;;:21;;;;:::i;:::-;40299:4;:17;;;;:52;;;;;:::i;:::-;40073:286:::0;:::o;37961:36::-;;;;:::o;38652:271::-;38702:11;38735:22;38746:10;38735;:22::i;:::-;38726:31;;38785:1;38776:6;:10;38768:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38839:1;38813:11;:23;38825:10;38813:23;;;;;;;;;;;;;;;:27;;;;38851:23;38867:6;38851:15;:23::i;:::-;38896:10;38890:25;;;38908:6;38890:25;;;;;;;;;;;;;;;;;;38652:271;:::o;35330:455::-;35459:6;35493:9;35478:12;;:24;;;;;;;;;;;;;;;;;;35524:5;35513:8;;:16;;;;;;;;;;;;;;;;;;35549:3;35540:6;:12;;;;35575:6;35563:9;:18;;;;35603:5;;35592:8;:16;;;;;;;:::i;:::-;;35639:4;35623:20;;:12;;;;;;;;;;;:20;;;35619:159;;;35660:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35619:159;34793:10;35750:16;;35743:23;;35330:455;;;;;;;;:::o;38134:65::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;620:106::-;673:15;708:10;701:17;;620:106;:::o;26508:346::-;26627:1;26610:19;;:5;:19;;;;26602:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26708:1;26689:21;;:7;:21;;;;26681:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26792:6;26762:11;:18;26774:5;26762:18;;;;;;;;;;;;;;;:27;26781:7;26762:27;;;;;;;;;;;;;;;:36;;;;26830:7;26814:32;;26823:5;26814:32;;;26839:6;26814:32;;;;;;;;;;;;;;;;;;26508:346;;;:::o;24059:600::-;24165:13;;;;;;;;;;;24157:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24244:1;24226:20;;:6;:20;;;;24218:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24328:1;24307:23;;:9;:23;;;;24299:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24383:47;24404:6;24412:9;24423:6;24383:20;:47::i;:::-;24463:71;24485:6;24463:71;;;;;;;;;;;;;;;;;:9;:17;24473:6;24463:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;24443:9;:17;24453:6;24443:17;;;;;;;;;;;;;;;:91;;;;24568:32;24593:6;24568:9;:20;24578:9;24568:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;24545:9;:20;24555:9;24545:20;;;;;;;;;;;;;;;:55;;;;24633:9;24616:35;;24625:6;24616:35;;;24644:6;24616:35;;;;;;;;;;;;;;;;;;24059:600;;;:::o;7076:192::-;7162:7;7195:1;7190;:6;;7198:12;7182:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7222:9;7238:1;7234;:5;7222:17;;7259:1;7252:8;;;7076:192;;;;;:::o;6173:181::-;6231:7;6251:9;6267:1;6263;:5;6251:17;;6292:1;6287;:6;;6279:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6345:1;6338:8;;;6173:181;;;;:::o;41453:173::-;41513:11;41544:74;37730:4;41544:60;41585:18;41595:7;41585:9;:18::i;:::-;41544:36;41560:10;:19;41571:7;41560:19;;;;;;;;;;;;;;;;41544:11;;:15;;:36;;;;:::i;:::-;:40;;:60;;;;:::i;:::-;:64;;:74;;;;:::i;:::-;41537:81;;41453:173;;;:::o;7527:471::-;7585:7;7835:1;7830;:6;7826:47;;;7860:1;7853:8;;;;7826:47;7885:9;7901:1;7897;:5;7885:17;;7930:1;7925;7921;:5;;;;;;:10;7913:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7989:1;7982:8;;;7527:471;;;;;:::o;28819:205::-;28920:96;28940:5;28970:27;;;28999:4;29005:2;29009:5;28947:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28920:19;:96::i;:::-;28819:205;;;;:::o;6637:136::-;6695:7;6722:43;6726:1;6729;6722:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;6715:50;;6637:136;;;;:::o;25650:418::-;25753:1;25734:21;;:7;:21;;;;25726:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25806:49;25827:7;25844:1;25848:6;25806:20;:49::i;:::-;25889:68;25912:6;25889:68;;;;;;;;;;;;;;;;;:9;:18;25899:7;25889:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;25868:9;:18;25878:7;25868:18;;;;;;;;;;;;;;;:89;;;;25983:24;26000:6;25983:12;;:16;;:24;;;;:::i;:::-;25968:12;:39;;;;26049:1;26023:37;;26032:7;26023:37;;;26053:6;26023:37;;;;;;;;;;;;;;;;;;25650:418;;:::o;28634:177::-;28717:86;28737:5;28767:23;;;28792:2;28796:5;28744:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28717:19;:86::i;:::-;28634:177;;;:::o;24940:378::-;25043:1;25024:21;;:7;:21;;;;25016:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25094:49;25123:1;25127:7;25136:6;25094:20;:49::i;:::-;25171:24;25188:6;25171:12;;:16;;:24;;;;:::i;:::-;25156:12;:39;;;;25227:30;25250:6;25227:9;:18;25237:7;25227:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;25206:9;:18;25216:7;25206:18;;;;;;;;;;;;;;;:51;;;;25294:7;25273:37;;25290:1;25273:37;;;25303:6;25273:37;;;;;;;;;;;;;;;;;;24940:378;;:::o;41636:258::-;41691:11;41715:12;41730:19;41741:7;41730:10;:19::i;:::-;41715:34;;41782:11;;41760:10;:19;41771:7;41760:19;;;;;;;;;;;;;;;:33;;;;41813;41838:7;41813:11;:20;41825:7;41813:20;;;;;;;;;;;;;;;;:24;;:33;;;;:::i;:::-;41804:42;;41880:6;41857:11;:20;41869:7;41857:20;;;;;;;;;;;;;;;:29;;;;41636:258;;;;:::o;43647:112::-;43714:37;43732:10;43744:6;43714:4;:17;;;;:37;;;;;:::i;:::-;43647:112;:::o;41902:646::-;42011:1;42004:6;:8;41996:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42061:1;42045:18;;:4;:18;;;42041:40;;42065:16;42076:4;42065:10;:16::i;:::-;;42041:40;42110:1;42096:16;;:2;:16;;;42092:36;;42114:14;42125:2;42114:10;:14::i;:::-;;42092:36;42203:15;42157:43;42187:12;;42157:19;:25;42177:4;42157:25;;;;;;;;;;;;;;;;:29;;:43;;;;:::i;:::-;:61;:129;;;;;42263:19;:23;42283:2;42263:23;;;;;;;;;;;;;;;;42235:19;:25;42255:4;42235:25;;;;;;;;;;;;;;;;:51;42157:129;42139:392;;;42340:30;:34;42371:2;42340:34;;;;;;;;;;;;;;;;;;;;;;;;;42339:35;42313:140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42494:19;:25;42514:4;42494:25;;;;;;;;;;;;;;;;42468:19;:23;42488:2;42468:23;;;;;;;;;;;;;;;:51;;;;42139:392;41902:646;;;:::o;8474:132::-;8532:7;8559:39;8563:1;8566;8559:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;8552:46;;8474:132;;;;:::o;30939:761::-;31363:23;31389:69;31417:4;31389:69;;;;;;;;;;;;;;;;;31397:5;31389:27;;;;:69;;;;;:::i;:::-;31363:95;;31493:1;31473:10;:17;:21;31469:224;;;31615:10;31604:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31596:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31469:224;30939:761;;;:::o;9102:278::-;9188:7;9220:1;9216;:5;9223:12;9208:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9247:9;9263:1;9259;:5;;;;;;9247:17;;9371:1;9364:8;;;9102:278;;;;;:::o;14512:196::-;14615:12;14647:53;14670:6;14678:4;14684:1;14687:12;14647:22;:53::i;:::-;14640:60;;14512:196;;;;;:::o;15889:979::-;16019:12;16052:18;16063:6;16052:10;:18::i;:::-;16044:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16178:12;16192:23;16219:6;:11;;16239:8;16250:4;16219:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16177:78;;;;16270:7;16266:595;;;16301:10;16294:17;;;;;;16266:595;16435:1;16415:10;:17;:21;16411:439;;;16678:10;16672:17;16739:15;16726:10;16722:2;16718:19;16711:44;16626:148;16821:12;16814:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15889:979;;;;;;;:::o;11397:619::-;11457:4;11719:16;11746:19;11768:66;11746:88;;;;11937:7;11925:20;11913:32;;11977:11;11965:8;:23;;:42;;;;;12004:3;11992:15;;:8;:15;;11965:42;11957:51;;;;11397:619;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://5337292b83bb96cec7659faea3f2d759043c52295b873febc1c929e4350b56c3
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.