Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 1,080 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 24601356 | 5 days ago | IN | 0 ETH | 0.00000358 | ||||
| Approve | 24591412 | 6 days ago | IN | 0 ETH | 0.00000417 | ||||
| Approve | 24544692 | 13 days ago | IN | 0 ETH | 0.00000264 | ||||
| Transfer | 24540936 | 13 days ago | IN | 0 ETH | 0.00002452 | ||||
| Approve | 24535558 | 14 days ago | IN | 0 ETH | 0.00001856 | ||||
| Approve | 24522015 | 16 days ago | IN | 0 ETH | 0.00000694 | ||||
| Approve | 24499812 | 19 days ago | IN | 0 ETH | 0.00000635 | ||||
| Approve | 24491479 | 20 days ago | IN | 0 ETH | 0.00000683 | ||||
| Approve | 24491446 | 20 days ago | IN | 0 ETH | 0.00010004 | ||||
| Transfer | 24478750 | 22 days ago | IN | 0 ETH | 0.00007804 | ||||
| Approve | 24478384 | 22 days ago | IN | 0 ETH | 0.00009847 | ||||
| Approve | 24456865 | 25 days ago | IN | 0 ETH | 0.00004899 | ||||
| Approve | 24422429 | 30 days ago | IN | 0 ETH | 0.00009552 | ||||
| Approve | 24421857 | 30 days ago | IN | 0 ETH | 0.00001104 | ||||
| Approve | 24400291 | 33 days ago | IN | 0 ETH | 0.00005925 | ||||
| Transfer | 24396431 | 33 days ago | IN | 0 ETH | 0.00002201 | ||||
| Approve | 24305226 | 46 days ago | IN | 0 ETH | 0.00000698 | ||||
| Approve | 24276677 | 50 days ago | IN | 0 ETH | 0.00002675 | ||||
| Approve | 24276372 | 50 days ago | IN | 0 ETH | 0.00000439 | ||||
| Approve | 24276135 | 50 days ago | IN | 0 ETH | 0.00000241 | ||||
| Approve | 24276128 | 50 days ago | IN | 0 ETH | 0.00000745 | ||||
| Approve | 24257804 | 53 days ago | IN | 0 ETH | 0.0002345 | ||||
| Approve | 24251127 | 54 days ago | IN | 0 ETH | 0.00000948 | ||||
| Approve | 24226315 | 57 days ago | IN | 0 ETH | 0.00002 | ||||
| Approve | 24222289 | 58 days ago | IN | 0 ETH | 0.00009884 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 23042774 | 223 days ago | 0.08276835 ETH | ||||
| Transfer | 23042774 | 223 days ago | 0.08276835 ETH | ||||
| Transfer | 23042772 | 223 days ago | 0.00150275 ETH | ||||
| Transfer | 23042772 | 223 days ago | 0.00150275 ETH | ||||
| Transfer | 23042769 | 223 days ago | 0.00177061 ETH | ||||
| Transfer | 23042769 | 223 days ago | 0.00177061 ETH | ||||
| Transfer | 23042768 | 223 days ago | 0.36825451 ETH | ||||
| Transfer | 23042768 | 223 days ago | 0.36825451 ETH | ||||
| Transfer | 23042761 | 223 days ago | 0.16856857 ETH | ||||
| Transfer | 23042761 | 223 days ago | 0.16856857 ETH | ||||
| Transfer | 23042759 | 223 days ago | 0.14422313 ETH | ||||
| Transfer | 23042759 | 223 days ago | 0.14422313 ETH | ||||
| Transfer | 23042757 | 223 days ago | 0.18252275 ETH | ||||
| Transfer | 23042757 | 223 days ago | 0.18252275 ETH | ||||
| Transfer | 23042752 | 223 days ago | 0.28947773 ETH | ||||
| Transfer | 23042752 | 223 days ago | 0.28947773 ETH | ||||
| Transfer | 23042751 | 223 days ago | 0.14451322 ETH | ||||
| Transfer | 23042751 | 223 days ago | 0.14451322 ETH | ||||
| Transfer | 23042747 | 223 days ago | 0.14770166 ETH | ||||
| Transfer | 23042747 | 223 days ago | 0.14770166 ETH | ||||
| Transfer | 23042745 | 223 days ago | 0.14445213 ETH | ||||
| Transfer | 23042745 | 223 days ago | 0.14445213 ETH | ||||
| Transfer | 23042741 | 223 days ago | 0.14459742 ETH | ||||
| Transfer | 23042741 | 223 days ago | 0.14459742 ETH | ||||
| Transfer | 23042734 | 223 days ago | 0.41460413 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Abuwtiyuw
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2025-08-01
*/
/*
* SPDX-License-Identifier: MIT
* https://www.AbuEth.vip
* https://t.me/AbuEthereum
* https://X.com/abuethereum
*/
pragma solidity 0.8.19;
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
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
);
}
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(
address account
) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(
address owner,
address spender
) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(
address spender,
uint256 amount
) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the upd allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(
currentAllowance >= amount,
"ERC20: transfer amount exceeds allowance"
);
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the upd allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(
address spender,
uint256 addedValue
) public virtual returns (bool) {
_approve(
_msgSender(),
spender,
_allowances[_msgSender()][spender] + addedValue
);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the upd allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(
address spender,
uint256 subtractedValue
) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(
currentAllowance >= subtractedValue,
"ERC20: decreased allowance below zero"
);
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(
senderBalance >= amount,
"ERC20: transfer amount exceeds balance"
);
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(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:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be 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 {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
interface IDexFactory {
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint256
);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(
address tokenA,
address tokenB
) external view returns (address pair);
function allPairs(uint256) external view returns (address pair);
function allPairsLength() external view returns (uint256);
function createPair(
address tokenA,
address tokenB
) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}
interface IDexRouter {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint256 amountADesired,
uint256 amountBDesired,
uint256 amountAMin,
uint256 amountBMin,
address to,
uint256 deadline
) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
)
external
payable
returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
}
contract Abuwtiyuw is ERC20, Ownable {
using SafeMath for uint256;
IDexRouter private immutable uniRouter;
address private immutable uniPair;
// Swapback
bool private onSwapback;
bool private contractSBEnabled = false;
uint256 private triggerSB;
uint256 private limitSB;
uint256 private lastSB;
//Anti-whale
bool private limitsEnabled = true;
uint256 private maxWalletLimit;
uint256 private maxTransactionLimit;
bool private tradingOpen = false;
// Fees
address private marketingReceiver;
uint256 private buyTax;
uint256 private sellTax;
uint256 private transferTax;
/******************/
// exclude from fees and max transaction amount
mapping(address => bool) private exemptFromFees;
mapping(address => bool) private exemptFromLimits;
mapping(address => bool) private DEXPair;
// store addresses that a automatic market maker pairs. Any transfer *to* these addresses
// could be subject to a maximum transfer amount
event ExemptFromFee(address indexed account, bool isExcluded);
event ExemptFromLimit(address indexed account, bool isExcluded);
event SetPairLPool(address indexed pair, bool indexed value);
event TradingEnabled(uint256 indexed timestamp);
event LimitsRemoved(uint256 indexed timestamp);
event SwapbackSettingsUpdated(
bool enabled,
uint256 triggerSB,
uint256 limitSB
);
event MaxLimitTxChanged(uint256 maxTransactionLimit);
event MaxLimitWalletChanged(uint256 maxWalletLimit);
event MarketingWalletUpdated(
address indexed newWallet,
address indexed oldWallet
);
event BuyFeeUpdated(
uint256 buyTax,
uint256 buyMarketingTax,
uint256 buyProjectTax
);
event SellFeeUpdated(
uint256 sellTax,
uint256 sellMarketingTax,
uint256 sellProjectTax
);
constructor() ERC20("Abuwtiyuw", "ABU") {
IDexRouter _uniRouter = IDexRouter(
0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
);
exemptFromLimits[address(_uniRouter)] = true;
uniRouter = _uniRouter;
uniPair = IDexFactory(_uniRouter.factory()).createPair(
address(this),
_uniRouter.WETH()
);
exemptFromLimits[address(uniPair)] = true;
_inSetUniPair(address(uniPair), true);
uint256 _totalSupply = 1_000_000 * 10 ** decimals();
lastSB = block.timestamp;
maxTransactionLimit = (_totalSupply * 10) / 1000;
maxWalletLimit = (_totalSupply * 10) / 1000;
triggerSB = (_totalSupply * 1) / 1000;
limitSB = (_totalSupply * 2) / 100;
buyTax = 20;
sellTax = 25;
transferTax = 0;
marketingReceiver = address(0xB18eBD253a864D838643612fDC9140261F60089d);
// exclude from paying fees or having max transaction amount
exemptFromFees[msg.sender] = true;
exemptFromFees[address(this)] = true;
exemptFromFees[address(0xdead)] = true;
exemptFromFees[marketingReceiver] = true;
exemptFromLimits[msg.sender] = true;
exemptFromLimits[address(this)] = true;
exemptFromLimits[address(0xdead)] = true;
exemptFromLimits[marketingReceiver] = true;
transferOwnership(msg.sender);
/*
_mint is an internal function in ERC20.sol that is only called here,
and CANNOT be called ever again
*/
_mint(msg.sender, _totalSupply);
}
receive() external payable {}
/**
* @notice Opens public trading for the token
* @dev onlyOwner.
*/
function openTrading() external onlyOwner {
tradingOpen = true;
contractSBEnabled = true;
emit TradingEnabled(block.timestamp);
}
/**
* @notice Removes the max wallet and max transaction limits
* @dev onlyOwner.
* Emits an {LimitsRemoved} event
*/
function removeLimitsNow() external onlyOwner {
limitsEnabled = false;
transferTax = 0;
emit LimitsRemoved(block.timestamp);
}
/**
* @notice sets if swapback is enabled and sets the minimum and maximum amounts
* @dev onlyOwner.
* Emits an {SwapbackSettingsUpdated} event
* @param _caSBcEnabled If swapback is enabled
* @param _caSBcTrigger The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100.
* @param _caSBcLimit The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100.
*/
function configureThSwapbackSettings(
bool _caSBcEnabled,
uint256 _caSBcTrigger,
uint256 _caSBcLimit
) external onlyOwner {
require(
_caSBcTrigger >= 1,
"Swap amount cannot be lower than 0.01% total supply."
);
require(
_caSBcLimit >= _caSBcTrigger,
"maximum amount cant be higher than minimum"
);
contractSBEnabled = _caSBcEnabled;
triggerSB = (totalSupply() * _caSBcTrigger) / 10000;
limitSB = (totalSupply() * _caSBcLimit) / 10000;
emit SwapbackSettingsUpdated(_caSBcEnabled, _caSBcTrigger, _caSBcLimit);
}
/**
* @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
* @dev onlyOwner.
* Emits an {MaxLimitTxChanged} event
* @param _maxTransactionLimit Base 1000, so 1% = 10
*/
function modifyThTransactionLimit(uint256 _maxTransactionLimit) external onlyOwner {
require(_maxTransactionLimit >= 2, "Cannot set maxTransactionLimit lower than 0.2%");
maxTransactionLimit = (_maxTransactionLimit * totalSupply()) / 1000;
emit MaxLimitTxChanged(maxTransactionLimit);
}
/**
* @notice Changes the maximum amount of tokens a wallet can hold
* @dev onlyOwner.
* Emits an {MaxLimitWalletChanged} event
* @param _maxWalletLimit Base 1000, so 1% = 10
*/
function modifyThWalletLimit(
uint256 _maxWalletLimit
) external onlyOwner {
require(_maxWalletLimit >= 5, "Cannot set maxWalletLimit lower than 0.5%");
maxWalletLimit = (_maxWalletLimit * totalSupply()) / 1000;
emit MaxLimitWalletChanged(maxWalletLimit);
}
/**
* @notice Sets if a wallet is excluded from the max wallet and tx limits
* @dev onlyOwner.
* Emits an {ExemptFromLimit} event
* @param _add The wallet to update
* @param _excluded If the wallet is excluded or not
*/
function modifyThAddressLimitExemption(
address _add,
bool _excluded
) public onlyOwner {
exemptFromLimits[_add] = _excluded;
emit ExemptFromLimit(_add, _excluded);
}
/**
* @notice Sets the fees for buys
* @dev onlyOwner.
* Emits a {BuyFeeUpdated} event
* All fees added up must be less than 100
* @param _value The fee for the marketing wallet
*/
function modifythBuyTaxRate(uint256 _value) external onlyOwner {
buyTax = _value;
require(buyTax <= 100, "Total buy fee cannot be higher than 100%");
emit BuyFeeUpdated(buyTax, buyTax, buyTax);
}
/**
* @notice Sets the fees for sells
* @dev onlyOwner.
* Emits a {SellFeeUpdated} event
* All fees added up must be less than 100
* @param _value The fee for the marketing wallet
*/
function modifsSellTaxRate(uint256 _value) external onlyOwner {
sellTax = _value;
require(
sellTax <= 100,
"Total sell fee cannot be higher than 100%"
);
emit SellFeeUpdated(sellTax, sellTax, sellTax);
}
function modifsTransferTaxRate(uint256 _value) external onlyOwner {
transferTax = _value;
require(
transferTax <= 100,
"Total transfer fee cannot be higher than 100%"
);
}
/**
* @notice Sets if an address is excluded from fees
* @dev onlyOwner.
* Emits an {ExemptFromFee} event
* @param _add The wallet to update
* @param _excluded If the wallet is excluded or not
*/
function modifyAddressFeeExemption(
address _add,
bool _excluded
) public onlyOwner {
exemptFromFees[_add] = _excluded;
emit ExemptFromFee(_add, _excluded);
}
function _inSetUniPair(address pair, bool value) private {
DEXPair[pair] = value;
emit SetPairLPool(pair, value);
}
/**
* @notice Sets the marketing wallet
* @dev onlyOwner.
* Emits an {MarketingWalletUpdated} event
* @param _marketing The new marketing wallet
*/
function modifyMarketingaWallet(address _marketing) external onlyOwner {
emit MarketingWalletUpdated(_marketing, marketingReceiver);
marketingReceiver = _marketing;
}
/**
* @notice Information about the swapback settings
* @return _contractSBEnabled if swapback is enabled
* @return _caSBcackValueMin the minimum amount of tokens in the contract balance to trigger swapback
* @return _caSBcackValueMax the maximum amount of tokens in the contract balance to trigger swapback
*/
function retrieveSwapbaackSettings()
external
view
returns (
bool _contractSBEnabled,
uint256 _caSBcackValueMin,
uint256 _caSBcackValueMax
)
{
_contractSBEnabled = contractSBEnabled;
_caSBcackValueMin = triggerSB;
_caSBcackValueMax = limitSB;
}
/**
* @notice Information about the anti whale parameters
* @return _limitsEnabled if the wallet limits are in effect
* @return _maxWalletLimit The maximum amount of tokens that can be held by a wallet
* @return _maxTransactionLimit The maximum amount of tokens that can be bought or sold in a single transaction
*/
function retrieveTheLimitSettings()
external
view
returns (bool _limitsEnabled, uint256 _maxWalletLimit, uint256 _maxTransactionLimit)
{
_limitsEnabled = limitsEnabled;
_maxWalletLimit = maxWalletLimit;
_maxTransactionLimit = maxTransactionLimit;
}
/**
* @notice The wallets that receive the collected fees
* @return _marketingReceiver The wallet that receives the marketing fees
*/
function retrieveTheFeeReceivers()
external
view
returns (address _marketingReceiver)
{
return (marketingReceiver);
}
/**
* @notice Fees for buys, sells, and transfers
* @return _buyTax The total fee for buys
* @return _sellTax The total fee for sells
* @return _transferTax The total fee for transfers
*/
function retrieveTaxaRates()
external
view
returns (
uint256 _buyTax,
uint256 _sellTax,
uint256 _transferTax
)
{
_buyTax = buyTax;
_sellTax = sellTax;
_transferTax = transferTax;
}
/**
* @notice If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair
* @param _target The wallet to check
* @return _exemptFromFees If the wallet is excluded from fees
* @return _exemptFromLimits If the wallet is excluded from max transaction amount
* @return _DEXPair If the wallet is a automated market maker pair
*/
function retrieveaAddressSettings(
address _target
)
external
view
returns (
bool _exemptFromFees,
bool _exemptFromLimits,
bool _DEXPair
)
{
_exemptFromFees = exemptFromFees[_target];
_exemptFromLimits = exemptFromLimits[_target];
_DEXPair = DEXPair[_target];
}
function _transfer(
address from,
address to,
uint256 amount
) internal override {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
if (amount == 0) {
super._transfer(from, to, 0);
return;
}
if (limitsEnabled) {
if (
from != owner() &&
to != owner() &&
to != address(0) &&
to != address(0xdead) &&
!onSwapback
) {
if (!tradingOpen) {
require(
exemptFromFees[from] || exemptFromFees[to],
"_transfer:: Trading is not active."
);
}
//when buy
if (
DEXPair[from] && !exemptFromLimits[to]
) {
require(
amount <= maxTransactionLimit,
"Buy transfer amount exceeds the maxTransactionLimit."
);
require(
amount + balanceOf(to) <= maxWalletLimit,
"Max wallet exceeded"
);
}
//when sell
else if (
DEXPair[to] && !exemptFromLimits[from]
) {
require(
amount <= maxTransactionLimit,
"Sell transfer amount exceeds the maxTransactionLimit."
);
} else if (!exemptFromLimits[to]) {
require(
amount + balanceOf(to) <= maxWalletLimit,
"Max wallet exceeded"
);
}
}
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= triggerSB;
if (
canSwap &&
contractSBEnabled &&
!onSwapback &&
!DEXPair[from] &&
!exemptFromFees[from] &&
!exemptFromFees[to] &&
lastSB != block.timestamp
) {
onSwapback = true;
swapBack(amount);
lastSB = block.timestamp;
onSwapback = false;
}
bool takeFee = !onSwapback;
// if any account belongs to _isExcludedFromFee account then remove the fee
if (exemptFromFees[from] || exemptFromFees[to]) {
takeFee = false;
}
uint256 fees = 0;
// only take fees on buys/sells, do not take on wallet transfers
if (takeFee) {
// on sell
if (DEXPair[to] && sellTax > 0) {
fees = amount.mul(sellTax).div(100);
}
// on buy
else if (DEXPair[from] && buyTax > 0) {
fees = amount.mul(buyTax).div(100);
}
// on transfers
else if (
transferTax > 0 &&
!DEXPair[from] &&
!DEXPair[to]
) {
fees = amount.mul(transferTax).div(100);
}
if (fees > 0) {
super._transfer(from, address(this), fees);
}
amount -= fees;
}
super._transfer(from, to, amount);
}
function swapTokensForEth(uint256 tokenAmount) private {
// generate the uniswap pair path of token -> weth
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniRouter.WETH();
_approve(address(this), address(uniRouter), tokenAmount);
// make the swap
uniRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0, // accept any amount of ETH
path,
address(this),
block.timestamp
);
}
function swapBack(uint256 amount) private {
uint256 contractBalance = balanceOf(address(this));
bool success;
if (contractBalance == 0) {
return;
}
if (contractBalance > limitSB) {
contractBalance = limitSB;
}
if (contractBalance > amount * 15) {
contractBalance = amount * 15;
}
uint256 amountToSwapForETH = contractBalance;
swapTokensForEth(amountToSwapForETH);
(success, ) = address(marketingReceiver).call{
value: address(this).balance
}("");
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyProjectTax","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExemptFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExemptFromLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTransactionLimit","type":"uint256"}],"name":"MaxLimitTxChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWalletLimit","type":"uint256"}],"name":"MaxLimitWalletChanged","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":"sellTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellProjectTax","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetPairLPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"triggerSB","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"limitSB","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_caSBcEnabled","type":"bool"},{"internalType":"uint256","name":"_caSBcTrigger","type":"uint256"},{"internalType":"uint256","name":"_caSBcLimit","type":"uint256"}],"name":"configureThSwapbackSettings","outputs":[],"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"modifsSellTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"modifsTransferTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"modifyAddressFeeExemption","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketing","type":"address"}],"name":"modifyMarketingaWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"modifyThAddressLimitExemption","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTransactionLimit","type":"uint256"}],"name":"modifyThTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletLimit","type":"uint256"}],"name":"modifyThWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"modifythBuyTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimitsNow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retrieveSwapbaackSettings","outputs":[{"internalType":"bool","name":"_contractSBEnabled","type":"bool"},{"internalType":"uint256","name":"_caSBcackValueMin","type":"uint256"},{"internalType":"uint256","name":"_caSBcackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"retrieveTaxaRates","outputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"},{"internalType":"uint256","name":"_sellTax","type":"uint256"},{"internalType":"uint256","name":"_transferTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"retrieveTheFeeReceivers","outputs":[{"internalType":"address","name":"_marketingReceiver","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"retrieveTheLimitSettings","outputs":[{"internalType":"bool","name":"_limitsEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWalletLimit","type":"uint256"},{"internalType":"uint256","name":"_maxTransactionLimit","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"retrieveaAddressSettings","outputs":[{"internalType":"bool","name":"_exemptFromFees","type":"bool"},{"internalType":"bool","name":"_exemptFromLimits","type":"bool"},{"internalType":"bool","name":"_DEXPair","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c06040526005805460ff60a81b191690556009805460ff19908116600117909155600c805490911690553480156200003757600080fd5b506040518060400160405280600981526020016841627577746979757760b81b8152506040518060400160405280600381526020016241425560e81b815250816003908162000087919062000761565b50600462000096828262000761565b505050620000b3620000ad6200045460201b60201c565b62000458565b737a250d5630b4cf539739df2c5dacb4c659f2488d6000819052601160209081527fa30c5df85d30b252583f3563cb2bd6456399154fbc658c188bf804ed074c64d6805460ff1916600117905560808290526040805163c45a015560e01b81529051839263c45a015592600480820193918290030181865afa1580156200013e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016491906200082d565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d891906200082d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000226573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024c91906200082d565b6001600160a01b031660a08190526000818152601160205260409020805460ff19166001908117909155620002829190620004aa565b6000620002926012600a62000974565b620002a190620f424062000985565b4260085590506103e8620002b782600a62000985565b620002c391906200099f565b600b556103e8620002d682600a62000985565b620002e291906200099f565b600a556103e8620002f582600162000985565b6200030191906200099f565b60065560646200031382600262000985565b6200031f91906200099f565b6007556014600d556019600e556000600f819055600c8054610100600160a81b03191674b18ebd253a864d838643612fdc9140261f60089d0017815533808352601060209081526040808520805460ff1990811660019081179092553080885283882080548316841790557f9e93e1db4a1f807cc22b2aecf4deeb0bf5745f1ecb319e87c68c5624c0fa6b69805483168417905586546001600160a01b036101009182900481168a52858a208054851686179055878a526011909652848920805484168517905590885283882080548316841790557f97847ee99463795296047093514439c3127772df3715e628aa85601cf854171680548316841790559554959095049092168552909320805490921690921790556200044090620004fe565b6200044c3382620005d3565b5050620009d8565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260126020526040808220805460ff191685151590811790915590519092917fe0f0eeda3b1247853e2a825aa40eb65c3b08879740f68ff00df4745b6bb075b291a35050565b6005546001600160a01b031633146200055e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038116620005c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000555565b620005d08162000458565b50565b6001600160a01b0382166200062b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000555565b80600260008282546200063f9190620009c2565b90915550506001600160a01b038216600090815260208190526040812080548392906200066e908490620009c2565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006e857607f821691505b6020821081036200070957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006b857600081815260208120601f850160051c81016020861015620007385750805b601f850160051c820191505b81811015620007595782815560010162000744565b505050505050565b81516001600160401b038111156200077d576200077d620006bd565b62000795816200078e8454620006d3565b846200070f565b602080601f831160018114620007cd5760008415620007b45750858301515b600019600386901b1c1916600185901b17855562000759565b600085815260208120601f198616915b82811015620007fe57888601518255948401946001909101908401620007dd565b50858210156200081d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200084057600080fd5b81516001600160a01b03811681146200085857600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620008b65781600019048211156200089a576200089a6200085f565b80851615620008a857918102915b93841c93908002906200087a565b509250929050565b600082620008cf575060016200096e565b81620008de575060006200096e565b8160018114620008f75760028114620009025762000922565b60019150506200096e565b60ff8411156200091657620009166200085f565b50506001821b6200096e565b5060208310610133831016604e8410600b841016171562000947575081810a6200096e565b62000953838362000875565b80600019048211156200096a576200096a6200085f565b0290505b92915050565b60006200085860ff841683620008be565b80820281158282048414176200096e576200096e6200085f565b600082620009bd57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200096e576200096e6200085f565b60805160a05161216d62000a096000396000505060008181611c0201528181611cbb0152611cf7015261216d6000f3fe6080604052600436106101d15760003560e01c80638da5cb5b116100f7578063c9ff56fa11610095578063ee0ff1d211610064578063ee0ff1d2146105de578063f2fde38b146105ff578063f82937701461061f578063ff4d76681461063f57600080fd5b8063c9ff56fa14610538578063dd62ed3e14610558578063e37beab41461059e578063ecfa083f146105be57600080fd5b8063a26dc21f116100d1578063a26dc21f146104c3578063a457c2d7146104e3578063a9059cbb14610503578063c9567bf91461052357600080fd5b80638da5cb5b1461047057806394e71eed1461048e57806395d89b41146104ae57600080fd5b8063358a08e91161016f578063715018a61161013e578063715018a6146103f55780637173163e1461040a5780637b1943fd1461041f57806389ff7f441461045057600080fd5b8063358a08e91461033d578063395093511461035f5780636f2293a71461037f57806370a08231146103bf57600080fd5b806323b872dd116101ab57806323b872dd146102575780632df9bdca14610277578063313ce567146102ae5780633431e75c146102ca57600080fd5b806306fdde03146101dd578063095ea7b31461020857806318160ddd1461023857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f261065f565b6040516101ff9190611d6b565b60405180910390f35b34801561021457600080fd5b50610228610223366004611dce565b6106f1565b60405190151581526020016101ff565b34801561024457600080fd5b506002545b6040519081526020016101ff565b34801561026357600080fd5b50610228610272366004611dfa565b610708565b34801561028357600080fd5b50600c5461010090046001600160a01b03165b6040516001600160a01b0390911681526020016101ff565b3480156102ba57600080fd5b50604051601281526020016101ff565b3480156102d657600080fd5b5061031e6102e5366004611e3b565b6001600160a01b03166000908152601060209081526040808320546011835281842054601290935292205460ff92831693918316921690565b60408051931515845291151560208401521515908201526060016101ff565b34801561034957600080fd5b5061035d610358366004611e58565b6107b7565b005b34801561036b57600080fd5b5061022861037a366004611dce565b6108a5565b34801561038b57600080fd5b50600554600654600754600160a81b90920460ff16915b6040805193151584526020840192909252908201526060016101ff565b3480156103cb57600080fd5b506102496103da366004611e3b565b6001600160a01b031660009081526020819052604090205490565b34801561040157600080fd5b5061035d6108e1565b34801561041657600080fd5b5061035d610917565b34801561042b57600080fd5b50600d54600e54600f54604080519384526020840192909252908201526060016101ff565b34801561045c57600080fd5b5061035d61046b366004611e86565b61097c565b34801561047c57600080fd5b506005546001600160a01b0316610296565b34801561049a57600080fd5b5061035d6104a9366004611e58565b610a06565b3480156104ba57600080fd5b506101f2610ada565b3480156104cf57600080fd5b5061035d6104de366004611e58565b610ae9565b3480156104ef57600080fd5b506102286104fe366004611dce565b610bbc565b34801561050f57600080fd5b5061022861051e366004611dce565b610c55565b34801561052f57600080fd5b5061035d610c62565b34801561054457600080fd5b5061035d610553366004611e58565b610cd9565b34801561056457600080fd5b50610249610573366004611ebb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105aa57600080fd5b5061035d6105b9366004611ef4565b610dbb565b3480156105ca57600080fd5b5061035d6105d9366004611e58565b610f59565b3480156105ea57600080fd5b50600954600a54600b5460ff909216916103a2565b34801561060b57600080fd5b5061035d61061a366004611e3b565b610ff2565b34801561062b57600080fd5b5061035d61063a366004611e3b565b61108a565b34801561064b57600080fd5b5061035d61065a366004611e86565b61111c565b60606003805461066e90611f27565b80601f016020809104026020016040519081016040528092919081815260200182805461069a90611f27565b80156106e75780601f106106bc576101008083540402835291602001916106e7565b820191906000526020600020905b8154815290600101906020018083116106ca57829003601f168201915b5050505050905090565b60006106fe33848461119e565b5060015b92915050565b60006107158484846112c2565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561079f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6107ac853385840361119e565b506001949350505050565b6005546001600160a01b031633146107e15760405162461bcd60e51b815260040161079690611f61565b60028110156108495760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e4c696d6974206c60448201526d6f776572207468616e20302e322560901b6064820152608401610796565b6103e861085560025490565b61085f9083611fac565b6108699190611fc3565b600b8190556040519081527f17481d5d1640169395edf0ec9bac131bbee9ddccbeec698c080950b90c886d87906020015b60405180910390a150565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106fe9185906108dc908690611fe5565b61119e565b6005546001600160a01b0316331461090b5760405162461bcd60e51b815260040161079690611f61565b610915600061193d565b565b6005546001600160a01b031633146109415760405162461bcd60e51b815260040161079690611f61565b6009805460ff191690556000600f81905560405142917ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261691a2565b6005546001600160a01b031633146109a65760405162461bcd60e51b815260040161079690611f61565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f3844f59dd909a5abfe5fa6d8f12dfa6424a8b2b595372782bc0ff76cf27fc52791015b60405180910390a25050565b6005546001600160a01b03163314610a305760405162461bcd60e51b815260040161079690611f61565b600e8190556064811115610a985760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b6064820152608401610796565b600e546040805182815260208101839052908101919091527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f19060600161089a565b60606004805461066e90611f27565b6005546001600160a01b03163314610b135760405162461bcd60e51b815260040161079690611f61565b600d8190556064811115610b7a5760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b6064820152608401610796565b600d546040805182815260208101839052908101919091527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e9060600161089a565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610c3e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610796565b610c4b338585840361119e565b5060019392505050565b60006106fe3384846112c2565b6005546001600160a01b03163314610c8c5760405162461bcd60e51b815260040161079690611f61565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b03163314610d035760405162461bcd60e51b815260040161079690611f61565b6005811015610d665760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f7420736574206d617857616c6c65744c696d6974206c6f776572206044820152687468616e20302e352560b81b6064820152608401610796565b6103e8610d7260025490565b610d7c9083611fac565b610d869190611fc3565b600a8190556040519081527f6efab908ea597eb589700414272961b1667aa08458268a848a06851d50a54f099060200161089a565b6005546001600160a01b03163314610de55760405162461bcd60e51b815260040161079690611f61565b6001821015610e535760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610796565b81811015610eb65760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b6064820152608401610796565b6005805460ff60a81b1916600160a81b85151502179055600254612710908390610ee09190611fac565b610eea9190611fc3565b60065561271081610efa60025490565b610f049190611fac565b610f0e9190611fc3565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b03163314610f835760405162461bcd60e51b815260040161079690611f61565b600f8190556064811115610fef5760405162461bcd60e51b815260206004820152602d60248201527f546f74616c207472616e73666572206665652063616e6e6f742062652068696760448201526c686572207468616e203130302560981b6064820152608401610796565b50565b6005546001600160a01b0316331461101c5760405162461bcd60e51b815260040161079690611f61565b6001600160a01b0381166110815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610796565b610fef8161193d565b6005546001600160a01b031633146110b45760405162461bcd60e51b815260040161079690611f61565b600c546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b031633146111465760405162461bcd60e51b815260040161079690611f61565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f06e9674d1df780f28d6fccac66198e06ae257bd747ef07af7ecb217f7166a2ed91016109fa565b6001600160a01b0383166112005760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610796565b6001600160a01b0382166112615760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610796565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112e85760405162461bcd60e51b815260040161079690611ff8565b6001600160a01b03821661130e5760405162461bcd60e51b81526004016107969061203d565b80600003611327576113228383600061198f565b505050565b60095460ff16156116a8576005546001600160a01b0384811691161480159061135e57506005546001600160a01b03838116911614155b801561137257506001600160a01b03821615155b801561138957506001600160a01b03821661dead14155b801561139f5750600554600160a01b900460ff16155b156116a857600c5460ff16611444576001600160a01b03831660009081526010602052604090205460ff16806113ed57506001600160a01b03821660009081526010602052604090205460ff165b6114445760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b6064820152608401610796565b6001600160a01b03831660009081526012602052604090205460ff16801561148557506001600160a01b03821660009081526011602052604090205460ff16155b1561156857600b548111156114f95760405162461bcd60e51b815260206004820152603460248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527336b0bc2a3930b739b0b1ba34b7b72634b6b4ba1760611b6064820152608401610796565b600a546001600160a01b03831660009081526020819052604090205461151f9083611fe5565b11156115635760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610796565b6116a8565b6001600160a01b03821660009081526012602052604090205460ff1680156115a957506001600160a01b03831660009081526011602052604090205460ff16155b1561161e57600b548111156115635760405162461bcd60e51b815260206004820152603560248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152741036b0bc2a3930b739b0b1ba34b7b72634b6b4ba1760591b6064820152608401610796565b6001600160a01b03821660009081526011602052604090205460ff166116a857600a546001600160a01b0383166000908152602081905260409020546116649083611fe5565b11156116a85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610796565b30600090815260208190526040902054600654811080159081906116d55750600554600160a81b900460ff165b80156116eb5750600554600160a01b900460ff16155b801561171057506001600160a01b03851660009081526012602052604090205460ff16155b801561173557506001600160a01b03851660009081526010602052604090205460ff16155b801561175a57506001600160a01b03841660009081526010602052604090205460ff16155b801561176857504260085414155b1561179b576005805460ff60a01b1916600160a01b17905561178983611ae4565b426008556005805460ff60a01b191690555b6005546001600160a01b03861660009081526010602052604090205460ff600160a01b9092048216159116806117e957506001600160a01b03851660009081526010602052604090205460ff165b156117f2575060005b60008115611929576001600160a01b03861660009081526012602052604090205460ff16801561182457506000600e54115b15611850576118496064611843600e5488611b8c90919063ffffffff16565b90611b9f565b905061190b565b6001600160a01b03871660009081526012602052604090205460ff16801561187a57506000600d54115b15611899576118496064611843600d5488611b8c90919063ffffffff16565b6000600f541180156118c457506001600160a01b03871660009081526012602052604090205460ff16155b80156118e957506001600160a01b03861660009081526012602052604090205460ff16155b1561190b576119086064611843600f5488611b8c90919063ffffffff16565b90505b801561191c5761191c87308361198f565b6119268186612080565b94505b61193487878761198f565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166119b55760405162461bcd60e51b815260040161079690611ff8565b6001600160a01b0382166119db5760405162461bcd60e51b81526004016107969061203d565b6001600160a01b03831660009081526020819052604090205481811015611a535760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610796565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a8a908490611fe5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ad691815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611b0157505050565b600754821115611b115760075491505b611b1c83600f611fac565b821115611b3157611b2e83600f611fac565b91505b81611b3b81611bab565b600c546040516101009091046001600160a01b0316904790600081818185875af1925050503d8060008114611934576040519150601f19603f3d011682016040523d82523d6000602084013e611934565b6000611b988284611fac565b9392505050565b6000611b988284611fc3565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611be057611be0612093565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8291906120a9565b81600181518110611c9557611c95612093565b60200260200101906001600160a01b031690816001600160a01b031681525050611ce0307f00000000000000000000000000000000000000000000000000000000000000008461119e565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611d359085906000908690309042906004016120c6565b600060405180830381600087803b158015611d4f57600080fd5b505af1158015611d63573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611d9857858101830151858201604001528201611d7c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610fef57600080fd5b60008060408385031215611de157600080fd5b8235611dec81611db9565b946020939093013593505050565b600080600060608486031215611e0f57600080fd5b8335611e1a81611db9565b92506020840135611e2a81611db9565b929592945050506040919091013590565b600060208284031215611e4d57600080fd5b8135611b9881611db9565b600060208284031215611e6a57600080fd5b5035919050565b80358015158114611e8157600080fd5b919050565b60008060408385031215611e9957600080fd5b8235611ea481611db9565b9150611eb260208401611e71565b90509250929050565b60008060408385031215611ece57600080fd5b8235611ed981611db9565b91506020830135611ee981611db9565b809150509250929050565b600080600060608486031215611f0957600080fd5b611f1284611e71565b95602085013595506040909401359392505050565b600181811c90821680611f3b57607f821691505b602082108103611f5b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761070257610702611f96565b600082611fe057634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561070257610702611f96565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561070257610702611f96565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156120bb57600080fd5b8151611b9881611db9565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121165784516001600160a01b0316835293830193918301916001016120f1565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220615f1513ed1e7926949a0d485893c21d7b82620f8252102b9246249d335cada664736f6c63430008130033
Deployed Bytecode
0x6080604052600436106101d15760003560e01c80638da5cb5b116100f7578063c9ff56fa11610095578063ee0ff1d211610064578063ee0ff1d2146105de578063f2fde38b146105ff578063f82937701461061f578063ff4d76681461063f57600080fd5b8063c9ff56fa14610538578063dd62ed3e14610558578063e37beab41461059e578063ecfa083f146105be57600080fd5b8063a26dc21f116100d1578063a26dc21f146104c3578063a457c2d7146104e3578063a9059cbb14610503578063c9567bf91461052357600080fd5b80638da5cb5b1461047057806394e71eed1461048e57806395d89b41146104ae57600080fd5b8063358a08e91161016f578063715018a61161013e578063715018a6146103f55780637173163e1461040a5780637b1943fd1461041f57806389ff7f441461045057600080fd5b8063358a08e91461033d578063395093511461035f5780636f2293a71461037f57806370a08231146103bf57600080fd5b806323b872dd116101ab57806323b872dd146102575780632df9bdca14610277578063313ce567146102ae5780633431e75c146102ca57600080fd5b806306fdde03146101dd578063095ea7b31461020857806318160ddd1461023857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f261065f565b6040516101ff9190611d6b565b60405180910390f35b34801561021457600080fd5b50610228610223366004611dce565b6106f1565b60405190151581526020016101ff565b34801561024457600080fd5b506002545b6040519081526020016101ff565b34801561026357600080fd5b50610228610272366004611dfa565b610708565b34801561028357600080fd5b50600c5461010090046001600160a01b03165b6040516001600160a01b0390911681526020016101ff565b3480156102ba57600080fd5b50604051601281526020016101ff565b3480156102d657600080fd5b5061031e6102e5366004611e3b565b6001600160a01b03166000908152601060209081526040808320546011835281842054601290935292205460ff92831693918316921690565b60408051931515845291151560208401521515908201526060016101ff565b34801561034957600080fd5b5061035d610358366004611e58565b6107b7565b005b34801561036b57600080fd5b5061022861037a366004611dce565b6108a5565b34801561038b57600080fd5b50600554600654600754600160a81b90920460ff16915b6040805193151584526020840192909252908201526060016101ff565b3480156103cb57600080fd5b506102496103da366004611e3b565b6001600160a01b031660009081526020819052604090205490565b34801561040157600080fd5b5061035d6108e1565b34801561041657600080fd5b5061035d610917565b34801561042b57600080fd5b50600d54600e54600f54604080519384526020840192909252908201526060016101ff565b34801561045c57600080fd5b5061035d61046b366004611e86565b61097c565b34801561047c57600080fd5b506005546001600160a01b0316610296565b34801561049a57600080fd5b5061035d6104a9366004611e58565b610a06565b3480156104ba57600080fd5b506101f2610ada565b3480156104cf57600080fd5b5061035d6104de366004611e58565b610ae9565b3480156104ef57600080fd5b506102286104fe366004611dce565b610bbc565b34801561050f57600080fd5b5061022861051e366004611dce565b610c55565b34801561052f57600080fd5b5061035d610c62565b34801561054457600080fd5b5061035d610553366004611e58565b610cd9565b34801561056457600080fd5b50610249610573366004611ebb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105aa57600080fd5b5061035d6105b9366004611ef4565b610dbb565b3480156105ca57600080fd5b5061035d6105d9366004611e58565b610f59565b3480156105ea57600080fd5b50600954600a54600b5460ff909216916103a2565b34801561060b57600080fd5b5061035d61061a366004611e3b565b610ff2565b34801561062b57600080fd5b5061035d61063a366004611e3b565b61108a565b34801561064b57600080fd5b5061035d61065a366004611e86565b61111c565b60606003805461066e90611f27565b80601f016020809104026020016040519081016040528092919081815260200182805461069a90611f27565b80156106e75780601f106106bc576101008083540402835291602001916106e7565b820191906000526020600020905b8154815290600101906020018083116106ca57829003601f168201915b5050505050905090565b60006106fe33848461119e565b5060015b92915050565b60006107158484846112c2565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561079f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6107ac853385840361119e565b506001949350505050565b6005546001600160a01b031633146107e15760405162461bcd60e51b815260040161079690611f61565b60028110156108495760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e4c696d6974206c60448201526d6f776572207468616e20302e322560901b6064820152608401610796565b6103e861085560025490565b61085f9083611fac565b6108699190611fc3565b600b8190556040519081527f17481d5d1640169395edf0ec9bac131bbee9ddccbeec698c080950b90c886d87906020015b60405180910390a150565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106fe9185906108dc908690611fe5565b61119e565b6005546001600160a01b0316331461090b5760405162461bcd60e51b815260040161079690611f61565b610915600061193d565b565b6005546001600160a01b031633146109415760405162461bcd60e51b815260040161079690611f61565b6009805460ff191690556000600f81905560405142917ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261691a2565b6005546001600160a01b031633146109a65760405162461bcd60e51b815260040161079690611f61565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f3844f59dd909a5abfe5fa6d8f12dfa6424a8b2b595372782bc0ff76cf27fc52791015b60405180910390a25050565b6005546001600160a01b03163314610a305760405162461bcd60e51b815260040161079690611f61565b600e8190556064811115610a985760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b6064820152608401610796565b600e546040805182815260208101839052908101919091527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f19060600161089a565b60606004805461066e90611f27565b6005546001600160a01b03163314610b135760405162461bcd60e51b815260040161079690611f61565b600d8190556064811115610b7a5760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b6064820152608401610796565b600d546040805182815260208101839052908101919091527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e9060600161089a565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610c3e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610796565b610c4b338585840361119e565b5060019392505050565b60006106fe3384846112c2565b6005546001600160a01b03163314610c8c5760405162461bcd60e51b815260040161079690611f61565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b03163314610d035760405162461bcd60e51b815260040161079690611f61565b6005811015610d665760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f7420736574206d617857616c6c65744c696d6974206c6f776572206044820152687468616e20302e352560b81b6064820152608401610796565b6103e8610d7260025490565b610d7c9083611fac565b610d869190611fc3565b600a8190556040519081527f6efab908ea597eb589700414272961b1667aa08458268a848a06851d50a54f099060200161089a565b6005546001600160a01b03163314610de55760405162461bcd60e51b815260040161079690611f61565b6001821015610e535760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610796565b81811015610eb65760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b6064820152608401610796565b6005805460ff60a81b1916600160a81b85151502179055600254612710908390610ee09190611fac565b610eea9190611fc3565b60065561271081610efa60025490565b610f049190611fac565b610f0e9190611fc3565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b03163314610f835760405162461bcd60e51b815260040161079690611f61565b600f8190556064811115610fef5760405162461bcd60e51b815260206004820152602d60248201527f546f74616c207472616e73666572206665652063616e6e6f742062652068696760448201526c686572207468616e203130302560981b6064820152608401610796565b50565b6005546001600160a01b0316331461101c5760405162461bcd60e51b815260040161079690611f61565b6001600160a01b0381166110815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610796565b610fef8161193d565b6005546001600160a01b031633146110b45760405162461bcd60e51b815260040161079690611f61565b600c546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b031633146111465760405162461bcd60e51b815260040161079690611f61565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f06e9674d1df780f28d6fccac66198e06ae257bd747ef07af7ecb217f7166a2ed91016109fa565b6001600160a01b0383166112005760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610796565b6001600160a01b0382166112615760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610796565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112e85760405162461bcd60e51b815260040161079690611ff8565b6001600160a01b03821661130e5760405162461bcd60e51b81526004016107969061203d565b80600003611327576113228383600061198f565b505050565b60095460ff16156116a8576005546001600160a01b0384811691161480159061135e57506005546001600160a01b03838116911614155b801561137257506001600160a01b03821615155b801561138957506001600160a01b03821661dead14155b801561139f5750600554600160a01b900460ff16155b156116a857600c5460ff16611444576001600160a01b03831660009081526010602052604090205460ff16806113ed57506001600160a01b03821660009081526010602052604090205460ff165b6114445760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b6064820152608401610796565b6001600160a01b03831660009081526012602052604090205460ff16801561148557506001600160a01b03821660009081526011602052604090205460ff16155b1561156857600b548111156114f95760405162461bcd60e51b815260206004820152603460248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527336b0bc2a3930b739b0b1ba34b7b72634b6b4ba1760611b6064820152608401610796565b600a546001600160a01b03831660009081526020819052604090205461151f9083611fe5565b11156115635760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610796565b6116a8565b6001600160a01b03821660009081526012602052604090205460ff1680156115a957506001600160a01b03831660009081526011602052604090205460ff16155b1561161e57600b548111156115635760405162461bcd60e51b815260206004820152603560248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152741036b0bc2a3930b739b0b1ba34b7b72634b6b4ba1760591b6064820152608401610796565b6001600160a01b03821660009081526011602052604090205460ff166116a857600a546001600160a01b0383166000908152602081905260409020546116649083611fe5565b11156116a85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610796565b30600090815260208190526040902054600654811080159081906116d55750600554600160a81b900460ff165b80156116eb5750600554600160a01b900460ff16155b801561171057506001600160a01b03851660009081526012602052604090205460ff16155b801561173557506001600160a01b03851660009081526010602052604090205460ff16155b801561175a57506001600160a01b03841660009081526010602052604090205460ff16155b801561176857504260085414155b1561179b576005805460ff60a01b1916600160a01b17905561178983611ae4565b426008556005805460ff60a01b191690555b6005546001600160a01b03861660009081526010602052604090205460ff600160a01b9092048216159116806117e957506001600160a01b03851660009081526010602052604090205460ff165b156117f2575060005b60008115611929576001600160a01b03861660009081526012602052604090205460ff16801561182457506000600e54115b15611850576118496064611843600e5488611b8c90919063ffffffff16565b90611b9f565b905061190b565b6001600160a01b03871660009081526012602052604090205460ff16801561187a57506000600d54115b15611899576118496064611843600d5488611b8c90919063ffffffff16565b6000600f541180156118c457506001600160a01b03871660009081526012602052604090205460ff16155b80156118e957506001600160a01b03861660009081526012602052604090205460ff16155b1561190b576119086064611843600f5488611b8c90919063ffffffff16565b90505b801561191c5761191c87308361198f565b6119268186612080565b94505b61193487878761198f565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166119b55760405162461bcd60e51b815260040161079690611ff8565b6001600160a01b0382166119db5760405162461bcd60e51b81526004016107969061203d565b6001600160a01b03831660009081526020819052604090205481811015611a535760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610796565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a8a908490611fe5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ad691815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611b0157505050565b600754821115611b115760075491505b611b1c83600f611fac565b821115611b3157611b2e83600f611fac565b91505b81611b3b81611bab565b600c546040516101009091046001600160a01b0316904790600081818185875af1925050503d8060008114611934576040519150601f19603f3d011682016040523d82523d6000602084013e611934565b6000611b988284611fac565b9392505050565b6000611b988284611fc3565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611be057611be0612093565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8291906120a9565b81600181518110611c9557611c95612093565b60200260200101906001600160a01b031690816001600160a01b031681525050611ce0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461119e565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611d359085906000908690309042906004016120c6565b600060405180830381600087803b158015611d4f57600080fd5b505af1158015611d63573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611d9857858101830151858201604001528201611d7c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610fef57600080fd5b60008060408385031215611de157600080fd5b8235611dec81611db9565b946020939093013593505050565b600080600060608486031215611e0f57600080fd5b8335611e1a81611db9565b92506020840135611e2a81611db9565b929592945050506040919091013590565b600060208284031215611e4d57600080fd5b8135611b9881611db9565b600060208284031215611e6a57600080fd5b5035919050565b80358015158114611e8157600080fd5b919050565b60008060408385031215611e9957600080fd5b8235611ea481611db9565b9150611eb260208401611e71565b90509250929050565b60008060408385031215611ece57600080fd5b8235611ed981611db9565b91506020830135611ee981611db9565b809150509250929050565b600080600060608486031215611f0957600080fd5b611f1284611e71565b95602085013595506040909401359392505050565b600181811c90821680611f3b57607f821691505b602082108103611f5b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761070257610702611f96565b600082611fe057634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561070257610702611f96565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561070257610702611f96565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156120bb57600080fd5b8151611b9881611db9565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121165784516001600160a01b0316835293830193918301916001016120f1565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220615f1513ed1e7926949a0d485893c21d7b82620f8252102b9246249d335cada664736f6c63430008130033
Deployed Bytecode Sourcemap
25408:17076:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11006:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13239:194;;;;;;;;;;-1:-1:-1;13239:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13239:194:0;1023:187:1;12126:108:0;;;;;;;;;;-1:-1:-1;12214:12:0;;12126:108;;;1361:25:1;;;1349:2;1334:18;12126:108:0;1215:177:1;13911:529:0;;;;;;;;;;-1:-1:-1;13911:529:0;;;;;:::i;:::-;;:::i;36167:163::-;;;;;;;;;;-1:-1:-1;36304:17:0;;;;;-1:-1:-1;;;;;36304:17:0;36167:163;;;-1:-1:-1;;;;;2022:32:1;;;2004:51;;1992:2;1977:18;36167:163:0;1858:203:1;11968:93:0;;;;;;;;;;-1:-1:-1;11968:93:0;;12051:2;2208:36:1;;2196:2;2181:18;11968:93:0;2066:184:1;37289:387:0;;;;;;;;;;-1:-1:-1;37289:387:0;;;;;:::i;:::-;-1:-1:-1;;;;;37551:23:0;37420:20;37551:23;;;:14;:23;;;;;;;;;37605:16;:25;;;;;;37652:7;:16;;;;;;37551:23;;;;;37605:25;;;;37652:16;;37289:387;;;;;2716:14:1;;2709:22;2691:41;;2775:14;;2768:22;2763:2;2748:18;;2741:50;2834:14;2827:22;2807:18;;;2800:50;2679:2;2664:18;37289:387:0;2507:349:1;31109:318:0;;;;;;;;;;-1:-1:-1;31109:318:0;;;;;:::i;:::-;;:::i;:::-;;14845:290;;;;;;;;;;-1:-1:-1;14845:290:0;;;;;:::i;:::-;;:::i;34968:356::-;;;;;;;;;;-1:-1:-1;35221:17:0;;35269:9;;35309:7;;-1:-1:-1;;;35221:17:0;;;;;;34968:356;;;;3267:14:1;;3260:22;3242:41;;3314:2;3299:18;;3292:34;;;;3342:18;;;3335:34;3230:2;3215:18;34968:356:0;3046:329:1;12297:143:0;;;;;;;;;;-1:-1:-1;12297:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12414:18:0;12387:7;12414:18;;;;;;;;;;;;12297:143;22345:103;;;;;;;;;;;;;:::i;29538:158::-;;;;;;;;;;;;;:::i;36561:292::-;;;;;;;;;;-1:-1:-1;36773:6:0;;36801:7;;36834:11;;36561:292;;;3582:25:1;;;3638:2;3623:18;;3616:34;;;;3666:18;;;3659:34;3570:2;3555:18;36561:292:0;3380:319:1;32220:212:0;;;;;;;;;;-1:-1:-1;32220:212:0;;;;;:::i;:::-;;:::i;21694:87::-;;;;;;;;;;-1:-1:-1;21767:6:0;;-1:-1:-1;;;;;21767:6:0;21694:87;;33121:270;;;;;;;;;;-1:-1:-1;33121:270:0;;;;;:::i;:::-;;:::i;11225:104::-;;;;;;;;;;;;;:::i;32662:227::-;;;;;;;;;;-1:-1:-1;32662:227:0;;;;;:::i;:::-;;:::i;15634:475::-;;;;;;;;;;-1:-1:-1;15634:475:0;;;;;:::i;:::-;;:::i;12653:200::-;;;;;;;;;;-1:-1:-1;12653:200:0;;;;;:::i;:::-;;:::i;29222:161::-;;;;;;;;;;;;;:::i;31648:303::-;;;;;;;;;;-1:-1:-1;31648:303:0;;;;;:::i;:::-;;:::i;12916:176::-;;;;;;;;;;-1:-1:-1;12916:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;13057:18:0;;;13030:7;13057:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12916:176;30182:672;;;;;;;;;;-1:-1:-1;30182:672:0;;;;;:::i;:::-;;:::i;33399:229::-;;;;;;;;;;-1:-1:-1;33399:229:0;;;;;:::i;:::-;;:::i;35690:312::-;;;;;;;;;;-1:-1:-1;35885:13:0;;35927:14;;35975:19;;35885:13;;;;;35690:312;;22603:238;;;;;;;;;;-1:-1:-1;22603:238:0;;;;;:::i;:::-;;:::i;34416:189::-;;;;;;;;;;-1:-1:-1;34416:189:0;;;;;:::i;:::-;;:::i;33873:204::-;;;;;;;;;;-1:-1:-1;33873:204:0;;;;;:::i;:::-;;:::i;11006:100::-;11060:13;11093:5;11086:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11006:100;:::o;13239:194::-;13347:4;13364:39;10092:10;13387:7;13396:6;13364:8;:39::i;:::-;-1:-1:-1;13421:4:0;13239:194;;;;;:::o;13911:529::-;14051:4;14068:36;14078:6;14086:9;14097:6;14068:9;:36::i;:::-;-1:-1:-1;;;;;14144:19:0;;14117:24;14144:19;;;:11;:19;;;;;;;;10092:10;14144:33;;;;;;;;14210:26;;;;14188:116;;;;-1:-1:-1;;;14188:116:0;;5490:2:1;14188:116:0;;;5472:21:1;5529:2;5509:18;;;5502:30;5568:34;5548:18;;;5541:62;-1:-1:-1;;;5619:18:1;;;5612:38;5667:19;;14188:116:0;;;;;;;;;14340:57;14349:6;10092:10;14390:6;14371:16;:25;14340:8;:57::i;:::-;-1:-1:-1;14428:4:0;;13911:529;-1:-1:-1;;;;13911:529:0:o;31109:318::-;21767:6;;-1:-1:-1;;;;;21767:6:0;10092:10;21914:23;21906:68;;;;-1:-1:-1;;;21906:68:0;;;;;;;:::i;:::-;31235:1:::1;31211:20;:25;;31203:84;;;::::0;-1:-1:-1;;;31203:84:0;;6260:2:1;31203:84:0::1;::::0;::::1;6242:21:1::0;6299:2;6279:18;;;6272:30;6338:34;6318:18;;;6311:62;-1:-1:-1;;;6389:18:1;;;6382:44;6443:19;;31203:84:0::1;6058:410:1::0;31203:84:0::1;31361:4;31344:13;12214:12:::0;;;12126:108;31344:13:::1;31321:36;::::0;:20;:36:::1;:::i;:::-;31320:45;;;;:::i;:::-;31298:19;:67:::0;;;31381:38:::1;::::0;1361:25:1;;;31381:38:0::1;::::0;1349:2:1;1334:18;31381:38:0::1;;;;;;;;31109:318:::0;:::o;14845:290::-;10092:10;14958:4;15047:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15047:34:0;;;;;;;;;;14958:4;;14975:130;;15025:7;;15047:47;;15084:10;;15047:47;:::i;:::-;14975:8;:130::i;22345:103::-;21767:6;;-1:-1:-1;;;;;21767:6:0;10092:10;21914:23;21906:68;;;;-1:-1:-1;;;21906:68:0;;;;;;;:::i;:::-;22410:30:::1;22437:1;22410:18;:30::i;:::-;22345:103::o:0;29538:158::-;21767:6;;-1:-1:-1;;;;;21767:6:0;10092:10;21914:23;21906:68;;;;-1:-1:-1;;;21906:68:0;;;;;;;:::i;:::-;29595:13:::1;:21:::0;;-1:-1:-1;;29595:21:0::1;::::0;;29611:5:::1;29627:11;:15:::0;;;29658:30:::1;::::0;29672:15:::1;::::0;29658:30:::1;::::0;::::1;29538:158::o:0;32220:212::-;21767:6;;-1:-1:-1;;;;;21767:6:0;10092:10;21914:23;21906:68;;;;-1:-1:-1;;;21906:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32342:22:0;::::1;;::::0;;;:16:::1;:22;::::0;;;;;;;;:34;;-1:-1:-1;;32342:34:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32392:32;;1163:41:1;;;32392:32:0::1;::::0;1136:18:1;32392:32:0::1;;;;;;;;32220:212:::0;;:::o;33121:270::-;21767:6;;-1:-1:-1;;;;;21767:6:0;10092:10;21914:23;21906:68;;;;-1:-1:-1;;;21906:68:0;;;;;;;:::i;:::-;33194:7:::1;:16:::0;;;33254:3:::1;33243:14:::0;::::1;;33221:105;;;::::0;-1:-1:-1;;;33221:105:0;;7332:2:1;33221:105:0::1;::::0;::::1;7314:21:1::0;7371:2;7351:18;;;7344:30;7410:34;7390:18;;;7383:62;-1:-1:-1;;;7461:18:1;;;7454:39;7510:19;;33221:105:0::1;7130:405:1::0;33221:105:0::1;33357:7;::::0;33342:41:::1;::::0;;3582:25:1;;;3638:2;3623:18;;3616:34;;;3666:18;;;3659:34;;;;33342:41:0::1;::::0;3570:2:1;3555:18;33342:41:0::1;3380:319:1::0;11225:104:0;11281:13;11314:7;11307:14;;;;;:::i;32662:227::-;21767:6;;-1:-1:-1;;;;;21767:6:0;10092:10;21914:23;21906:68;;;;-1:-1:-1;;;21906:68:0;;;;;;;:::i;:::-;32736:6:::1;:15:::0;;;32780:3:::1;32770:13:::0;::::1;;32762:66;;;::::0;-1:-1:-1;;;32762:66:0;;7742:2:1;32762:66:0::1;::::0;::::1;7724:21:1::0;7781:2;7761:18;;;7754:30;7820:34;7800:18;;;7793:62;-1:-1:-1;;;7871:18:1;;;7864:38;7919:19;;32762:66:0::1;7540:404:1::0;32762:66:0::1;32858:6;::::0;32844:37:::1;::::0;;3582:25:1;;;3638:2;3623:18;;3616:34;;;3666:18;;;3659:34;;;;32844:37:0::1;::::0;3570:2:1;3555:18;32844:37:0::1;3380:319:1::0;15634:475:0;10092:10;15752:4;15796:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15796:34:0;;;;;;;;;;15863:35;;;;15841:122;;;;-1:-1:-1;;;15841:122:0;;8151:2:1;15841:122:0;;;8133:21:1;8190:2;8170:18;;;8163:30;8229:34;8209:18;;;8202:62;-1:-1:-1;;;8280:18:1;;;8273:35;8325:19;;15841:122:0;7949:401:1;15841:122:0;15999:67;10092:10;16022:7;16050:15;16031:16;:34;15999:8;:67::i;:::-;-1:-1:-1;16097:4:0;;15634:475;-1:-1:-1;;;15634:475:0:o;12653:200::-;12764:4;12781:42;10092:10;12805:9;12816:6;12781:9;:42::i;29222:161::-;21767:6;;-1:-1:-1;;;;;21767:6:0;10092:10;21914:23;21906:68;;;;-1:-1:-1;;;21906:68:0;;;;;;;:::i;:::-;29275:11:::1;:18:::0;;-1:-1:-1;;29275:18:0::1;29289:4;29275:18;::::0;;29304:17:::1;:24:::0;;-1:-1:-1;;;;29304:24:0::1;-1:-1:-1::0;;;29304:24:0::1;::::0;;29344:31:::1;::::0;29359:15:::1;::::0;29344:31:::1;::::0;29275:11:::1;::::0;29344:31:::1;29222:161::o:0;31648:303::-;21767:6;;-1:-1:-1;;;;;21767:6:0;10092:10;21914:23;21906:68;;;;-1:-1:-1;;;21906:68:0;;;;;;;:::i;:::-;31775:1:::1;31756:15;:20;;31748:74;;;::::0;-1:-1:-1;;;31748:74:0;;8557:2:1;31748:74:0::1;::::0;::::1;8539:21:1::0;8596:2;8576:18;;;8569:30;8635:34;8615:18;;;8608:62;-1:-1:-1;;;8686:18:1;;;8679:39;8735:19;;31748:74:0::1;8355:405:1::0;31748:74:0::1;31886:4;31869:13;12214:12:::0;;;12126:108;31869:13:::1;31851:31;::::0;:15;:31:::1;:::i;:::-;31850:40;;;;:::i;:::-;31833:14;:57:::0;;;31906:37:::1;::::0;1361:25:1;;;31906:37:0::1;::::0;1349:2:1;1334:18;31906:37:0::1;1215:177:1::0;30182:672:0;21767:6;;-1:-1:-1;;;;;21767:6:0;10092:10;21914:23;21906:68;;;;-1:-1:-1;;;21906:68:0;;;;;;;:::i;:::-;30386:1:::1;30369:13;:18;;30347:120;;;::::0;-1:-1:-1;;;30347:120:0;;8967:2:1;30347:120:0::1;::::0;::::1;8949:21:1::0;9006:2;8986:18;;;8979:30;9045:34;9025:18;;;9018:62;-1:-1:-1;;;9096:18:1;;;9089:50;9156:19;;30347:120:0::1;8765:416:1::0;30347:120:0::1;30515:13;30500:11;:28;;30478:120;;;::::0;-1:-1:-1;;;30478:120:0;;9388:2:1;30478:120:0::1;::::0;::::1;9370:21:1::0;9427:2;9407:18;;;9400:30;9466:34;9446:18;;;9439:62;-1:-1:-1;;;9517:18:1;;;9510:40;9567:19;;30478:120:0::1;9186:406:1::0;30478:120:0::1;30611:17;:33:::0;;-1:-1:-1;;;;30611:33:0::1;-1:-1:-1::0;;;30611:33:0;::::1;;;;::::0;;12214:12;;30701:5:::1;::::0;30684:13;;30668:29:::1;;;;:::i;:::-;30667:39;;;;:::i;:::-;30655:9;:51:::0;30759:5:::1;30744:11:::0;30728:13:::1;12214:12:::0;;;12126:108;30728:13:::1;:27;;;;:::i;:::-;30727:37;;;;:::i;:::-;30717:7;:47:::0;30780:66:::1;::::0;;3267:14:1;;3260:22;3242:41;;3314:2;3299:18;;3292:34;;;3342:18;;;3335:34;;;30780:66:0::1;::::0;3230:2:1;3215:18;30780:66:0::1;;;;;;;30182:672:::0;;;:::o;33399:229::-;21767:6;;-1:-1:-1;;;;;21767:6:0;10092:10;21914:23;21906:68;;;;-1:-1:-1;;;21906:68:0;;;;;;;:::i;:::-;33476:11:::1;:20:::0;;;33544:3:::1;33529:18:::0;::::1;;33507:113;;;::::0;-1:-1:-1;;;33507:113:0;;9799:2:1;33507:113:0::1;::::0;::::1;9781:21:1::0;9838:2;9818:18;;;9811:30;9877:34;9857:18;;;9850:62;-1:-1:-1;;;9928:18:1;;;9921:43;9981:19;;33507:113:0::1;9597:409:1::0;33507:113:0::1;33399:229:::0;:::o;22603:238::-;21767:6;;-1:-1:-1;;;;;21767:6:0;10092:10;21914:23;21906:68;;;;-1:-1:-1;;;21906:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22706:22:0;::::1;22684:110;;;::::0;-1:-1:-1;;;22684:110:0;;10213:2:1;22684:110:0::1;::::0;::::1;10195:21:1::0;10252:2;10232:18;;;10225:30;10291:34;10271:18;;;10264:62;-1:-1:-1;;;10342:18:1;;;10335:36;10388:19;;22684:110:0::1;10011:402:1::0;22684:110:0::1;22805:28;22824:8;22805:18;:28::i;34416:189::-:0;21767:6;;-1:-1:-1;;;;;21767:6:0;10092:10;21914:23;21906:68;;;;-1:-1:-1;;;21906:68:0;;;;;;;:::i;:::-;34538:17:::1;::::0;34503:53:::1;::::0;-1:-1:-1;;;;;34538:17:0::1;::::0;;::::1;::::0;::::1;::::0;34503:53;::::1;::::0;::::1;::::0;;;::::1;34567:17;:30:::0;;-1:-1:-1;;;;;34567:30:0;;::::1;;;-1:-1:-1::0;;;;;;34567:30:0;;::::1;::::0;;;::::1;::::0;;34416:189::o;33873:204::-;21767:6;;-1:-1:-1;;;;;21767:6:0;10092:10;21914:23;21906:68;;;;-1:-1:-1;;;21906:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33991:20:0;::::1;;::::0;;;:14:::1;:20;::::0;;;;;;;;:32;;-1:-1:-1;;33991:32:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34039:30;;1163:41:1;;;34039:30:0::1;::::0;1136:18:1;34039:30:0::1;1023:187:1::0;19417:380:0;-1:-1:-1;;;;;19553:19:0;;19545:68;;;;-1:-1:-1;;;19545:68:0;;10620:2:1;19545:68:0;;;10602:21:1;10659:2;10639:18;;;10632:30;10698:34;10678:18;;;10671:62;-1:-1:-1;;;10749:18:1;;;10742:34;10793:19;;19545:68:0;10418:400:1;19545:68:0;-1:-1:-1;;;;;19632:21:0;;19624:68;;;;-1:-1:-1;;;19624:68:0;;11025:2:1;19624:68:0;;;11007:21:1;11064:2;11044:18;;;11037:30;11103:34;11083:18;;;11076:62;-1:-1:-1;;;11154:18:1;;;11147:32;11196:19;;19624:68:0;10823:398:1;19624:68:0;-1:-1:-1;;;;;19705:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19757:32;;1361:25:1;;;19757:32:0;;1334:18:1;19757:32:0;;;;;;;19417:380;;;:::o;37684:3585::-;-1:-1:-1;;;;;37816:18:0;;37808:68;;;;-1:-1:-1;;;37808:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37895:16:0;;37887:64;;;;-1:-1:-1;;;37887:64:0;;;;;;;:::i;:::-;37968:6;37978:1;37968:11;37964:93;;37996:28;38012:4;38018:2;38022:1;37996:15;:28::i;:::-;37684:3585;;;:::o;37964:93::-;38073:13;;;;38069:1578;;;21767:6;;-1:-1:-1;;;;;38125:15:0;;;21767:6;;38125:15;;;;:49;;-1:-1:-1;21767:6:0;;-1:-1:-1;;;;;38161:13:0;;;21767:6;;38161:13;;38125:49;:86;;;;-1:-1:-1;;;;;;38195:16:0;;;;38125:86;:128;;;;-1:-1:-1;;;;;;38232:21:0;;38246:6;38232:21;;38125:128;:160;;;;-1:-1:-1;38275:10:0;;-1:-1:-1;;;38275:10:0;;;;38274:11;38125:160;38103:1533;;;38325:11;;;;38320:223;;-1:-1:-1;;;;;38395:20:0;;;;;;:14;:20;;;;;;;;;:42;;-1:-1:-1;;;;;;38419:18:0;;;;;;:14;:18;;;;;;;;38395:42;38361:162;;;;-1:-1:-1;;;38361:162:0;;12238:2:1;38361:162:0;;;12220:21:1;12277:2;12257:18;;;12250:30;12316:34;12296:18;;;12289:62;-1:-1:-1;;;12367:18:1;;;12360:32;12409:19;;38361:162:0;12036:398:1;38361:162:0;-1:-1:-1;;;;;38617:13:0;;;;;;:7;:13;;;;;;;;:38;;;;-1:-1:-1;;;;;;38635:20:0;;;;;;:16;:20;;;;;;;;38634:21;38617:38;38591:1030;;;38742:19;;38732:6;:29;;38698:167;;;;-1:-1:-1;;;38698:167:0;;12641:2:1;38698:167:0;;;12623:21:1;12680:2;12660:18;;;12653:30;12719:34;12699:18;;;12692:62;-1:-1:-1;;;12770:18:1;;;12763:50;12830:19;;38698:167:0;12439:416:1;38698:167:0;38948:14;;-1:-1:-1;;;;;12414:18:0;;12387:7;12414:18;;;;;;;;;;;38922:22;;:6;:22;:::i;:::-;:40;;38888:145;;;;-1:-1:-1;;;38888:145:0;;13062:2:1;38888:145:0;;;13044:21:1;13101:2;13081:18;;;13074:30;-1:-1:-1;;;13120:18:1;;;13113:49;13179:18;;38888:145:0;12860:343:1;38888:145:0;38591:1030;;;-1:-1:-1;;;;;39131:11:0;;;;;;:7;:11;;;;;;;;:38;;;;-1:-1:-1;;;;;;39147:22:0;;;;;;:16;:22;;;;;;;;39146:23;39131:38;39105:516;;;39256:19;;39246:6;:29;;39212:168;;;;-1:-1:-1;;;39212:168:0;;13410:2:1;39212:168:0;;;13392:21:1;13449:2;13429:18;;;13422:30;13488:34;13468:18;;;13461:62;-1:-1:-1;;;13539:18:1;;;13532:51;13600:19;;39212:168:0;13208:417:1;39105:516:0;-1:-1:-1;;;;;39411:20:0;;;;;;:16;:20;;;;;;;;39406:215;;39516:14;;-1:-1:-1;;;;;12414:18:0;;12387:7;12414:18;;;;;;;;;;;39490:22;;:6;:22;:::i;:::-;:40;;39456:145;;;;-1:-1:-1;;;39456:145:0;;13062:2:1;39456:145:0;;;13044:21:1;13101:2;13081:18;;;13074:30;-1:-1:-1;;;13120:18:1;;;13113:49;13179:18;;39456:145:0;12860:343:1;39456:145:0;39708:4;39659:28;12414:18;;;;;;;;;;;39766:9;;39742:33;;;;;;;39806:41;;-1:-1:-1;39830:17:0;;-1:-1:-1;;;39830:17:0;;;;39806:41;:69;;;;-1:-1:-1;39865:10:0;;-1:-1:-1;;;39865:10:0;;;;39864:11;39806:69;:100;;;;-1:-1:-1;;;;;;39893:13:0;;;;;;:7;:13;;;;;;;;39892:14;39806:100;:138;;;;-1:-1:-1;;;;;;39924:20:0;;;;;;:14;:20;;;;;;;;39923:21;39806:138;:174;;;;-1:-1:-1;;;;;;39962:18:0;;;;;;:14;:18;;;;;;;;39961:19;39806:174;:216;;;;;40007:15;39997:6;;:25;;39806:216;39788:399;;;40049:10;:17;;-1:-1:-1;;;;40049:17:0;-1:-1:-1;;;40049:17:0;;;40083:16;40092:6;40083:8;:16::i;:::-;40125:15;40116:6;:24;40157:10;:18;;-1:-1:-1;;;;40157:18:0;;;39788:399;40215:10;;-1:-1:-1;;;;;40327:20:0;;40199:12;40327:20;;;:14;:20;;;;;;40215:10;-1:-1:-1;;;40215:10:0;;;;;40214:11;;40327:20;;:42;;-1:-1:-1;;;;;;40351:18:0;;;;;;:14;:18;;;;;;;;40327:42;40323:90;;;-1:-1:-1;40396:5:0;40323:90;40425:12;40530:7;40526:690;;;-1:-1:-1;;;;;40582:11:0;;;;;;:7;:11;;;;;;;;:26;;;;;40607:1;40597:7;;:11;40582:26;40578:489;;;40636:28;40660:3;40636:19;40647:7;;40636:6;:10;;:19;;;;:::i;:::-;:23;;:28::i;:::-;40629:35;;40578:489;;;-1:-1:-1;;;;;40726:13:0;;;;;;:7;:13;;;;;;;;:27;;;;;40752:1;40743:6;;:10;40726:27;40722:345;;;40781:27;40804:3;40781:18;40792:6;;40781;:10;;:18;;;;:::i;40722:345::-;40908:1;40894:11;;:15;:50;;;;-1:-1:-1;;;;;;40931:13:0;;;;;;:7;:13;;;;;;;;40930:14;40894:50;:83;;;;-1:-1:-1;;;;;;40966:11:0;;;;;;:7;:11;;;;;;;;40965:12;40894:83;40872:195;;;41019:32;41047:3;41019:23;41030:11;;41019:6;:10;;:23;;;;:::i;:32::-;41012:39;;40872:195;41087:8;;41083:91;;41116:42;41132:4;41146;41153;41116:15;:42::i;:::-;41190:14;41200:4;41190:14;;:::i;:::-;;;40526:690;41228:33;41244:4;41250:2;41254:6;41228:15;:33::i;:::-;37797:3472;;;;37684:3585;;;:::o;23001:191::-;23094:6;;;-1:-1:-1;;;;;23111:17:0;;;-1:-1:-1;;;;;;23111:17:0;;;;;;;23144:40;;23094:6;;;23111:17;23094:6;;23144:40;;23075:16;;23144:40;23064:128;23001:191;:::o;16599:770::-;-1:-1:-1;;;;;16739:20:0;;16731:70;;;;-1:-1:-1;;;16731:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16820:23:0;;16812:71;;;;-1:-1:-1;;;16812:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16980:17:0;;16956:21;16980:17;;;;;;;;;;;17030:23;;;;17008:111;;;;-1:-1:-1;;;17008:111:0;;13965:2:1;17008:111:0;;;13947:21:1;14004:2;13984:18;;;13977:30;14043:34;14023:18;;;14016:62;-1:-1:-1;;;14094:18:1;;;14087:36;14140:19;;17008:111:0;13763:402:1;17008:111:0;-1:-1:-1;;;;;17155:17:0;;;:9;:17;;;;;;;;;;;17175:22;;;17155:42;;17219:20;;;;;;;;:30;;17191:6;;17155:9;17219:30;;17191:6;;17219:30;:::i;:::-;;;;;;;;17284:9;-1:-1:-1;;;;;17267:35:0;17276:6;-1:-1:-1;;;;;17267:35:0;;17295:6;17267:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;17267:35:0;;;;;;;;16720:649;16599:770;;;:::o;41856:625::-;41953:4;41909:23;12414:18;;;;;;;;;;;;41999:20;;;41995:59;;42036:7;;41856:625;:::o;41995:59::-;42088:7;;42070:15;:25;42066:83;;;42130:7;;42112:25;;42066:83;42183:11;:6;42192:2;42183:11;:::i;:::-;42165:15;:29;42161:91;;;42229:11;:6;42238:2;42229:11;:::i;:::-;42211:29;;42161:91;42293:15;42321:36;42293:15;42321:16;:36::i;:::-;42392:17;;42384:89;;42392:17;;;;-1:-1:-1;;;;;42392:17:0;;42437:21;;42384:89;;;;42437:21;42392:17;42384:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3371:98;3429:7;3456:5;3460:1;3456;:5;:::i;:::-;3449:12;3371:98;-1:-1:-1;;;3371:98:0:o;3770:::-;3828:7;3855:5;3859:1;3855;:5;:::i;41277:571::-;41427:16;;;41441:1;41427:16;;;;;;;;41403:21;;41427:16;;;;;;;;;;-1:-1:-1;41427:16:0;41403:40;;41472:4;41454;41459:1;41454:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;41454:23:0;;;-1:-1:-1;;;;;41454:23:0;;;;;41498:9;-1:-1:-1;;;;;41498:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41488:4;41493:1;41488:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;41488:26:0;;;-1:-1:-1;;;;;41488:26:0;;;;;41527:56;41544:4;41559:9;41571:11;41527:8;:56::i;:::-;41622:218;;-1:-1:-1;;;41622:218:0;;-1:-1:-1;;;;;41622:9:0;:60;;;;:218;;41697:11;;41723:1;;41767:4;;41794;;41814:15;;41622:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41332:516;41277:571;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2255:247::-;2314:6;2367:2;2355:9;2346:7;2342:23;2338:32;2335:52;;;2383:1;2380;2373:12;2335:52;2422:9;2409:23;2441:31;2466:5;2441:31;:::i;2861:180::-;2920:6;2973:2;2961:9;2952:7;2948:23;2944:32;2941:52;;;2989:1;2986;2979:12;2941:52;-1:-1:-1;3012:23:1;;2861:180;-1:-1:-1;2861:180:1:o;3704:160::-;3769:20;;3825:13;;3818:21;3808:32;;3798:60;;3854:1;3851;3844:12;3798:60;3704:160;;;:::o;3869:315::-;3934:6;3942;3995:2;3983:9;3974:7;3970:23;3966:32;3963:52;;;4011:1;4008;4001:12;3963:52;4050:9;4037:23;4069:31;4094:5;4069:31;:::i;:::-;4119:5;-1:-1:-1;4143:35:1;4174:2;4159:18;;4143:35;:::i;:::-;4133:45;;3869:315;;;;;:::o;4189:388::-;4257:6;4265;4318:2;4306:9;4297:7;4293:23;4289:32;4286:52;;;4334:1;4331;4324:12;4286:52;4373:9;4360:23;4392:31;4417:5;4392:31;:::i;:::-;4442:5;-1:-1:-1;4499:2:1;4484:18;;4471:32;4512:33;4471:32;4512:33;:::i;:::-;4564:7;4554:17;;;4189:388;;;;;:::o;4582:316::-;4656:6;4664;4672;4725:2;4713:9;4704:7;4700:23;4696:32;4693:52;;;4741:1;4738;4731:12;4693:52;4764:26;4780:9;4764:26;:::i;:::-;4754:36;4837:2;4822:18;;4809:32;;-1:-1:-1;4888:2:1;4873:18;;;4860:32;;4582:316;-1:-1:-1;;;4582:316:1:o;4903:380::-;4982:1;4978:12;;;;5025;;;5046:61;;5100:4;5092:6;5088:17;5078:27;;5046:61;5153:2;5145:6;5142:14;5122:18;5119:38;5116:161;;5199:10;5194:3;5190:20;5187:1;5180:31;5234:4;5231:1;5224:15;5262:4;5259:1;5252:15;5116:161;;4903:380;;;:::o;5697:356::-;5899:2;5881:21;;;5918:18;;;5911:30;5977:34;5972:2;5957:18;;5950:62;6044:2;6029:18;;5697:356::o;6473:127::-;6534:10;6529:3;6525:20;6522:1;6515:31;6565:4;6562:1;6555:15;6589:4;6586:1;6579:15;6605:168;6678:9;;;6709;;6726:15;;;6720:22;;6706:37;6696:71;;6747:18;;:::i;6778:217::-;6818:1;6844;6834:132;;6888:10;6883:3;6879:20;6876:1;6869:31;6923:4;6920:1;6913:15;6951:4;6948:1;6941:15;6834:132;-1:-1:-1;6980:9:1;;6778:217::o;7000:125::-;7065:9;;;7086:10;;;7083:36;;;7099:18;;:::i;11226:401::-;11428:2;11410:21;;;11467:2;11447:18;;;11440:30;11506:34;11501:2;11486:18;;11479:62;-1:-1:-1;;;11572:2:1;11557:18;;11550:35;11617:3;11602:19;;11226:401::o;11632:399::-;11834:2;11816:21;;;11873:2;11853:18;;;11846:30;11912:34;11907:2;11892:18;;11885:62;-1:-1:-1;;;11978:2:1;11963:18;;11956:33;12021:3;12006:19;;11632:399::o;13630:128::-;13697:9;;;13718:11;;;13715:37;;;13732:18;;:::i;14512:127::-;14573:10;14568:3;14564:20;14561:1;14554:31;14604:4;14601:1;14594:15;14628:4;14625:1;14618:15;14644:251;14714:6;14767:2;14755:9;14746:7;14742:23;14738:32;14735:52;;;14783:1;14780;14773:12;14735:52;14815:9;14809:16;14834:31;14859:5;14834:31;:::i;14900:980::-;15162:4;15210:3;15199:9;15195:19;15241:6;15230:9;15223:25;15267:2;15305:6;15300:2;15289:9;15285:18;15278:34;15348:3;15343:2;15332:9;15328:18;15321:31;15372:6;15407;15401:13;15438:6;15430;15423:22;15476:3;15465:9;15461:19;15454:26;;15515:2;15507:6;15503:15;15489:29;;15536:1;15546:195;15560:6;15557:1;15554:13;15546:195;;;15625:13;;-1:-1:-1;;;;;15621:39:1;15609:52;;15716:15;;;;15681:12;;;;15657:1;15575:9;15546:195;;;-1:-1:-1;;;;;;;15797:32:1;;;;15792:2;15777:18;;15770:60;-1:-1:-1;;;15861:3:1;15846:19;15839:35;15758:3;14900:980;-1:-1:-1;;;14900:980:1:o
Swarm Source
ipfs://615f1513ed1e7926949a0d485893c21d7b82620f8252102b9246249d335cada6
Loading...
Loading
Loading...
Loading
OVERVIEW
$ABU The first ever domesticated, named, and documented dog in history is Abuwtiyuw.Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.