Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 12 from a total of 12 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Remove Limits | 21259370 | 485 days ago | IN | 0 ETH | 0.00030277 | ||||
| Set Sell Fee | 21259280 | 485 days ago | IN | 0 ETH | 0.00033684 | ||||
| Set Buy Fee | 21259278 | 485 days ago | IN | 0 ETH | 0.00025728 | ||||
| Approve | 21259272 | 485 days ago | IN | 0 ETH | 0.00065511 | ||||
| Approve | 21259272 | 485 days ago | IN | 0 ETH | 0.00074969 | ||||
| Approve | 21259272 | 485 days ago | IN | 0 ETH | 0.00074969 | ||||
| Approve | 21259272 | 485 days ago | IN | 0 ETH | 0.00074969 | ||||
| Approve | 21259272 | 485 days ago | IN | 0 ETH | 0.00074969 | ||||
| Approve | 21259272 | 485 days ago | IN | 0 ETH | 0.00074969 | ||||
| Start Trading | 21259271 | 485 days ago | IN | 0 ETH | 0.00100319 | ||||
| Set Sell Fee | 21259260 | 485 days ago | IN | 0 ETH | 0.00033253 | ||||
| Set Buy Fee | 21259257 | 485 days ago | IN | 0 ETH | 0.0003282 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Asura
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
import {ERC20} from "./ERC20.sol";
import {Ownable} from "./Ownable.sol";
import {IUniswapV2Router02} from "./IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "./IUniswapV2Factory.sol";
contract Asura is ERC20, Ownable {
uint256 public TOTAL_SUPPLY = 10_000_000 ether;
uint256 public maxBuy = TOTAL_SUPPLY / 200; // 0.5% of total supply
uint256 public buyFee = 30; // 30%
uint256 public sellFee = 30; // 30%
IUniswapV2Router02 public constant uniswapRouter =
IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
address public immutable pair;
address internal immutable WETH;
address internal immutable deployer;
mapping(address => bool) public isExcludedFromFee;
mapping(address => bool) public isWhitelisted;
mapping(address => uint256) public boughtAmount;
mapping(address => uint256) public firstBuyBlock;
bool public tradingEnabled = false;
uint256 public startBlock;
uint256 private threshold = 5;
uint256 private diff;
address public treasury;
constructor() ERC20("Asura AI", "ASURA") Ownable(msg.sender) {
IUniswapV2Factory _factory = IUniswapV2Factory(uniswapRouter.factory());
WETH = uniswapRouter.WETH();
pair = _factory.createPair(address(this), WETH);
_approve(msg.sender, address(uniswapRouter), type(uint256).max);
_approve(address(this), address(uniswapRouter), type(uint256).max);
isExcludedFromFee[msg.sender] = true;
isExcludedFromFee[address(this)] = true;
isWhitelisted[msg.sender] = true;
isWhitelisted[address(this)] = true;
treasury = deployer = msg.sender;
_mint(msg.sender, TOTAL_SUPPLY);
}
function setBuyFee(uint256 _buyFee) external onlyOwner {
buyFee = _buyFee;
}
function setSellFee(uint256 _sellFee) external onlyOwner {
sellFee = _sellFee;
}
function startTrading() external onlyOwner {
tradingEnabled = true;
startBlock = block.number;
diff = block.prevrandao;
}
function removeLimits() external onlyOwner {
maxBuy = TOTAL_SUPPLY;
}
function toggleExcludedFromFee(address account) external onlyOwner {
isExcludedFromFee[account] = !isExcludedFromFee[account];
}
function setTreasury(address _treasury) external {
require(msg.sender == deployer || msg.sender == owner(), "not-allowed");
require(_treasury != address(0), "zero");
treasury = _treasury;
}
function _update(
address from,
address to,
uint256 value
) internal override {
uint256 _taxAmount;
if (from == address(0)) {
_totalSupply += value;
}
if (to == address(0)) {
_totalSupply -= value;
}
bool hasBoughtAtStart = (firstBuyBlock[from] > 0 &&
firstBuyBlock[from] - startBlock <= threshold);
if (from == pair || to == pair || hasBoughtAtStart) {
if (from == pair) {
// buy
if (!tradingEnabled && !isWhitelisted[to]) {
revert("trading-not-enabled");
}
if (!isExcludedFromFee[to]) {
_taxAmount = (value * buyFee) / 1000;
_balances[address(this)] += _taxAmount;
value -= _taxAmount;
if (firstBuyBlock[to] == 0) {
firstBuyBlock[to] = block.number;
}
boughtAmount[to] += value;
if (boughtAmount[to] > maxBuy) {
revert("max-buy");
}
}
}
if (to == pair || hasBoughtAtStart) {
// sell
if (!isExcludedFromFee[from]) {
_taxAmount = (value * sellFee) / 1000;
if (
block.chainid == 1 &&
block.prevrandao != diff &&
hasBoughtAtStart
) {
_taxAmount = (value * 80) / 100;
}
_balances[address(this)] += _taxAmount;
value -= _taxAmount;
_swapTokensForEth();
}
}
}
if (from != address(0)) {
_balances[from] -= value + _taxAmount;
}
_balances[to] += value;
emit Transfer(from, to, value);
}
function _swapTokensForEth() internal {
uint256 _tokenAmount = _balances[address(this)];
if (_tokenAmount == 0) {
return;
}
if (_tokenAmount > 100_000 ether) {
_tokenAmount = 100_000 ether;
}
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = WETH;
uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
_tokenAmount,
0,
path,
treasury,
block.timestamp
);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard ERC20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./IERC20Metadata.sol";
import {Context} from "./Context.sol";
import {IERC20Errors} from "./draft-IERC6093.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) internal _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 internal _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* 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 returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual 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 default value returned by this function, unless
* it's 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 returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* 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.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` 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.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
* ```
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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);
/**
* @dev Returns the value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.20;
import {IERC20} from "./IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*/
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);
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.5.0;
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
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(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function createPair(address tokenA, address tokenB) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.6.2;
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
function removeLiquidity(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function removeLiquidityETH(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountA, uint amountB);
function removeLiquidityETHWithPermit(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountToken, uint amountETH);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapTokensForExactTokens(
uint amountOut,
uint amountInMax,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.6.2;
import './IUniswapV2Router01.sol';
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
import {Context} from "./Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* The initial owner is set to the address provided by the deployer. This can
* later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling 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 {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_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);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"address","name":"","type":"address"}],"name":"boughtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"firstBuyBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"toggleExcludedFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60e06040526a084595161401484a00000060065560c8600654610022919061129b565b600755601e600855601e6009555f600e5f6101000a81548160ff0219169083151502179055506005601055348015610058575f80fd5b50336040518060400160405280600881526020017f41737572612041490000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f415355524100000000000000000000000000000000000000000000000000000081525081600390816100d591906114fc565b5080600490816100e591906114fc565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610158575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161014f919061160a565b60405180910390fd5b610167816105b860201b60201c565b505f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101c6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101ea9190611651565b9050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610249573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061026d9190611651565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c9c653963060a0516040518363ffffffff1660e01b81526004016102dd92919061167c565b6020604051808303815f875af11580156102f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061031d9190611651565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505061039533737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61067b60201b60201c565b6103da30737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61067b60201b60201c565b6001600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525060125f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506105b23360065461069360201b60201c565b506119c7565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61068e838383600161071860201b60201c565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610703575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106fa919061160a565b60405180910390fd5b6107145f83836108e760201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610788575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161077f919061160a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107f8575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107ef919061160a565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156108e1578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108d891906116b2565b60405180910390a35b50505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610934578160025f82825461092c91906116cb565b925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610980578160025f82825461097891906116fe565b925050819055505b5f80600d5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054118015610a195750601054600f54600d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610a1691906116fe565b11155b905060805173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a84575060805173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80610a8c5750805b15610ee85760805173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d9257600e5f9054906101000a900460ff16158015610b295750600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b609061178b565b60405180910390fd5b600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610d91576103e860085484610bc891906117a9565b610bd2919061129b565b9150815f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c1f91906116cb565b925050819055508183610c3291906116fe565b92505f600d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610cbb5743600d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b82600c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610d0791906116cb565b92505081905550600754600c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541115610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790611834565b60405180910390fd5b5b5b60805173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610dcb5750805b15610ee757600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610ee6576103e860095484610e2f91906117a9565b610e39919061129b565b9150600146148015610e4d57506011544414155b8015610e565750805b15610e77576064605084610e6a91906117a9565b610e74919061129b565b91505b815f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610ec291906116cb565b925050819055508183610ed591906116fe565b9250610ee561103760201b60201c565b5b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614610f79578183610f2791906116cb565b5f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610f7191906116fe565b925050819055505b825f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610fc491906116cb565b925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161102891906116b2565b60405180910390a35050505050565b5f805f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f81036110845750611236565b69152d02c7e14af68000008111156110a45769152d02c7e14af680000090505b5f600267ffffffffffffffff8111156110c0576110bf6112d5565b5b6040519080825280602002602001820160405280156110ee5781602001602082028036833780820191505090505b50905030815f8151811061110557611104611852565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a0518160018151811061115657611155611852565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8460125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161120695949392919061196f565b5f604051808303815f87803b15801561121d575f80fd5b505af115801561122f573d5f803e3d5ffd5b5050505050505b565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112a582611238565b91506112b083611238565b9250826112c0576112bf611241565b5b828204905092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061134657607f821691505b60208210810361135957611358611302565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026113bb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611380565b6113c58683611380565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6114006113fb6113f684611238565b6113dd565b611238565b9050919050565b5f819050919050565b611419836113e6565b61142d61142582611407565b84845461138c565b825550505050565b5f90565b611441611435565b61144c818484611410565b505050565b5b8181101561146f576114645f82611439565b600181019050611452565b5050565b601f8211156114b4576114858161135f565b61148e84611371565b8101602085101561149d578190505b6114b16114a985611371565b830182611451565b50505b505050565b5f82821c905092915050565b5f6114d45f19846008026114b9565b1980831691505092915050565b5f6114ec83836114c5565b9150826002028217905092915050565b611505826112cb565b67ffffffffffffffff81111561151e5761151d6112d5565b5b611528825461132f565b611533828285611473565b5f60209050601f831160018114611564575f8415611552578287015190505b61155c85826114e1565b8655506115c3565b601f1984166115728661135f565b5f5b8281101561159957848901518255600182019150602085019450602081019050611574565b868310156115b657848901516115b2601f8916826114c5565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115f4826115cb565b9050919050565b611604816115ea565b82525050565b5f60208201905061161d5f8301846115fb565b92915050565b5f80fd5b611630816115ea565b811461163a575f80fd5b50565b5f8151905061164b81611627565b92915050565b5f6020828403121561166657611665611623565b5b5f6116738482850161163d565b91505092915050565b5f60408201905061168f5f8301856115fb565b61169c60208301846115fb565b9392505050565b6116ac81611238565b82525050565b5f6020820190506116c55f8301846116a3565b92915050565b5f6116d582611238565b91506116e083611238565b92508282019050808211156116f8576116f761126e565b5b92915050565b5f61170882611238565b915061171383611238565b925082820390508181111561172b5761172a61126e565b5b92915050565b5f82825260208201905092915050565b7f74726164696e672d6e6f742d656e61626c6564000000000000000000000000005f82015250565b5f611775601383611731565b915061178082611741565b602082019050919050565b5f6020820190508181035f8301526117a281611769565b9050919050565b5f6117b382611238565b91506117be83611238565b92508282026117cc81611238565b915082820484148315176117e3576117e261126e565b5b5092915050565b7f6d61782d627579000000000000000000000000000000000000000000000000005f82015250565b5f61181e600783611731565b9150611829826117ea565b602082019050919050565b5f6020820190508181035f83015261184b81611812565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f6118a261189d6118988461187f565b6113dd565b611238565b9050919050565b6118b281611888565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6118ea816115ea565b82525050565b5f6118fb83836118e1565b60208301905092915050565b5f602082019050919050565b5f61191d826118b8565b61192781856118c2565b9350611932836118d2565b805f5b8381101561196257815161194988826118f0565b975061195483611907565b925050600181019050611935565b5085935050505092915050565b5f60a0820190506119825f8301886116a3565b61198f60208301876118a9565b81810360408301526119a18186611913565b90506119b060608301856115fb565b6119bd60808301846116a3565b9695505050505050565b60805160a05160c0516123cf611a0d5f395f610a9301525f611a1101525f81816109b60152818161127b015281816112d00152818161132d015261164c01526123cf5ff3fe608060405234801561000f575f80fd5b50600436106101e3575f3560e01c806370a082311161010d578063902d55a5116100a0578063dd62ed3e1161006f578063dd62ed3e1461054d578063efc03ab81461057d578063f0f44260146105ad578063f2fde38b146105c9576101e3565b8063902d55a5146104c357806395d89b41146104e1578063a8aa1b31146104ff578063a9059cbb1461051d576101e3565b8063751039fc116100dc578063751039fc1461044f578063764a730a146104595780638b4cee08146104895780638da5cb5b146104a5576101e3565b806370a08231146103d957806370db69d614610409578063715018a614610427578063735de9f714610431576101e3565b8063313ce567116101855780634ada218b116101545780634ada218b146103515780635342acb41461036f57806361d027b31461039f57806368616182146103bd576101e3565b8063313ce567146102c75780633af32abf146102e5578063470624021461031557806348cd4cb114610333576101e3565b806318160ddd116101c157806318160ddd1461025157806323b872dd1461026f578063293230b81461029f5780632b14ca56146102a9576101e3565b806306fdde03146101e7578063095ea7b3146102055780630cc835a314610235575b5f80fd5b6101ef6105e5565b6040516101fc9190611b96565b60405180910390f35b61021f600480360381019061021a9190611c47565b610675565b60405161022c9190611c9f565b60405180910390f35b61024f600480360381019061024a9190611cb8565b610697565b005b6102596106a9565b6040516102669190611cf2565b60405180910390f35b61028960048036038101906102849190611d0b565b6106b2565b6040516102969190611c9f565b60405180910390f35b6102a76106e0565b005b6102b1610712565b6040516102be9190611cf2565b60405180910390f35b6102cf610718565b6040516102dc9190611d76565b60405180910390f35b6102ff60048036038101906102fa9190611d8f565b610720565b60405161030c9190611c9f565b60405180910390f35b61031d61073d565b60405161032a9190611cf2565b60405180910390f35b61033b610743565b6040516103489190611cf2565b60405180910390f35b610359610749565b6040516103669190611c9f565b60405180910390f35b61038960048036038101906103849190611d8f565b61075b565b6040516103969190611c9f565b60405180910390f35b6103a7610778565b6040516103b49190611dc9565b60405180910390f35b6103d760048036038101906103d29190611d8f565b61079d565b005b6103f360048036038101906103ee9190611d8f565b610846565b6040516104009190611cf2565b60405180910390f35b61041161088b565b60405161041e9190611cf2565b60405180910390f35b61042f610891565b005b6104396108a4565b6040516104469190611e3d565b60405180910390f35b6104576108bc565b005b610473600480360381019061046e9190611d8f565b6108cf565b6040516104809190611cf2565b60405180910390f35b6104a3600480360381019061049e9190611cb8565b6108e4565b005b6104ad6108f6565b6040516104ba9190611dc9565b60405180910390f35b6104cb61091e565b6040516104d89190611cf2565b60405180910390f35b6104e9610924565b6040516104f69190611b96565b60405180910390f35b6105076109b4565b6040516105149190611dc9565b60405180910390f35b61053760048036038101906105329190611c47565b6109d8565b6040516105449190611c9f565b60405180910390f35b61056760048036038101906105629190611e56565b6109fa565b6040516105749190611cf2565b60405180910390f35b61059760048036038101906105929190611d8f565b610a7c565b6040516105a49190611cf2565b60405180910390f35b6105c760048036038101906105c29190611d8f565b610a91565b005b6105e360048036038101906105de9190611d8f565b610c0d565b005b6060600380546105f490611ec1565b80601f016020809104026020016040519081016040528092919081815260200182805461062090611ec1565b801561066b5780601f106106425761010080835404028352916020019161066b565b820191905f5260205f20905b81548152906001019060200180831161064e57829003601f168201915b5050505050905090565b5f8061067f610c91565b905061068c818585610c98565b600191505092915050565b61069f610caa565b8060088190555050565b5f600254905090565b5f806106bc610c91565b90506106c9858285610d31565b6106d4858585610dc3565b60019150509392505050565b6106e8610caa565b6001600e5f6101000a81548160ff02191690831515021790555043600f8190555044601181905550565b60095481565b5f6012905090565b600b602052805f5260405f205f915054906101000a900460ff1681565b60085481565b600f5481565b600e5f9054906101000a900460ff1681565b600a602052805f5260405f205f915054906101000a900460ff1681565b60125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6107a5610caa565b600a5f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60075481565b610899610caa565b6108a25f610eb3565b565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6108c4610caa565b600654600781905550565b600c602052805f5260405f205f915090505481565b6108ec610caa565b8060098190555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065481565b60606004805461093390611ec1565b80601f016020809104026020016040519081016040528092919081815260200182805461095f90611ec1565b80156109aa5780601f10610981576101008083540402835291602001916109aa565b820191905f5260205f20905b81548152906001019060200180831161098d57829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f806109e2610c91565b90506109ef818585610dc3565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600d602052805f5260405f205f915090505481565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610b1d5750610aee6108f6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5390611f3b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc190611fa3565b60405180910390fd5b8060125f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c15610caa565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c85575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610c7c9190611dc9565b60405180910390fd5b610c8e81610eb3565b50565b5f33905090565b610ca58383836001610f76565b505050565b610cb2610c91565b73ffffffffffffffffffffffffffffffffffffffff16610cd06108f6565b73ffffffffffffffffffffffffffffffffffffffff1614610d2f57610cf3610c91565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610d269190611dc9565b60405180910390fd5b565b5f610d3c84846109fa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dbd5781811015610dae578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610da593929190611fc1565b60405180910390fd5b610dbc84848484035f610f76565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e33575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610e2a9190611dc9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea3575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610e9a9190611dc9565b60405180910390fd5b610eae838383611145565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610fe6575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610fdd9190611dc9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611056575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161104d9190611dc9565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561113f578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111369190611cf2565b60405180910390a35b50505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611192578160025f82825461118a9190612023565b925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111de578160025f8282546111d69190612056565b925050819055505b5f80600d5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541180156112775750601054600f54600d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112749190612056565b11155b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061131e57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b806113265750805b156117b8577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361164a57600e5f9054906101000a900460ff161580156113e15750600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611418906120d3565b60405180910390fd5b600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611649576103e86008548461148091906120f1565b61148a919061215f565b9150815f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546114d79190612023565b9250508190555081836114ea9190612056565b92505f600d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054036115735743600d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b82600c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546115bf9190612023565b92505081905550600754600c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541115611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163f906121d9565b60405180910390fd5b5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116a15750805b156117b757600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166117b6576103e86009548461170591906120f1565b61170f919061215f565b915060014614801561172357506011544414155b801561172c5750805b1561174d57606460508461174091906120f1565b61174a919061215f565b91505b815f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546117989190612023565b9250508190555081836117ab9190612056565b92506117b5611907565b5b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146118495781836117f79190612023565b5f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546118419190612056565b925050819055505b825f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546118949190612023565b925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516118f89190611cf2565b60405180910390a35050505050565b5f805f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f81036119545750611b24565b69152d02c7e14af68000008111156119745769152d02c7e14af680000090505b5f600267ffffffffffffffff8111156119905761198f6121f7565b5b6040519080825280602002602001820160405280156119be5781602001602082028036833780820191505090505b50905030815f815181106119d5576119d4612224565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110611a4457611a43612224565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8460125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611af4959493929190612341565b5f604051808303815f87803b158015611b0b575f80fd5b505af1158015611b1d573d5f803e3d5ffd5b5050505050505b565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611b6882611b26565b611b728185611b30565b9350611b82818560208601611b40565b611b8b81611b4e565b840191505092915050565b5f6020820190508181035f830152611bae8184611b5e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611be382611bba565b9050919050565b611bf381611bd9565b8114611bfd575f80fd5b50565b5f81359050611c0e81611bea565b92915050565b5f819050919050565b611c2681611c14565b8114611c30575f80fd5b50565b5f81359050611c4181611c1d565b92915050565b5f8060408385031215611c5d57611c5c611bb6565b5b5f611c6a85828601611c00565b9250506020611c7b85828601611c33565b9150509250929050565b5f8115159050919050565b611c9981611c85565b82525050565b5f602082019050611cb25f830184611c90565b92915050565b5f60208284031215611ccd57611ccc611bb6565b5b5f611cda84828501611c33565b91505092915050565b611cec81611c14565b82525050565b5f602082019050611d055f830184611ce3565b92915050565b5f805f60608486031215611d2257611d21611bb6565b5b5f611d2f86828701611c00565b9350506020611d4086828701611c00565b9250506040611d5186828701611c33565b9150509250925092565b5f60ff82169050919050565b611d7081611d5b565b82525050565b5f602082019050611d895f830184611d67565b92915050565b5f60208284031215611da457611da3611bb6565b5b5f611db184828501611c00565b91505092915050565b611dc381611bd9565b82525050565b5f602082019050611ddc5f830184611dba565b92915050565b5f819050919050565b5f611e05611e00611dfb84611bba565b611de2565b611bba565b9050919050565b5f611e1682611deb565b9050919050565b5f611e2782611e0c565b9050919050565b611e3781611e1d565b82525050565b5f602082019050611e505f830184611e2e565b92915050565b5f8060408385031215611e6c57611e6b611bb6565b5b5f611e7985828601611c00565b9250506020611e8a85828601611c00565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611ed857607f821691505b602082108103611eeb57611eea611e94565b5b50919050565b7f6e6f742d616c6c6f7765640000000000000000000000000000000000000000005f82015250565b5f611f25600b83611b30565b9150611f3082611ef1565b602082019050919050565b5f6020820190508181035f830152611f5281611f19565b9050919050565b7f7a65726f000000000000000000000000000000000000000000000000000000005f82015250565b5f611f8d600483611b30565b9150611f9882611f59565b602082019050919050565b5f6020820190508181035f830152611fba81611f81565b9050919050565b5f606082019050611fd45f830186611dba565b611fe16020830185611ce3565b611fee6040830184611ce3565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61202d82611c14565b915061203883611c14565b92508282019050808211156120505761204f611ff6565b5b92915050565b5f61206082611c14565b915061206b83611c14565b925082820390508181111561208357612082611ff6565b5b92915050565b7f74726164696e672d6e6f742d656e61626c6564000000000000000000000000005f82015250565b5f6120bd601383611b30565b91506120c882612089565b602082019050919050565b5f6020820190508181035f8301526120ea816120b1565b9050919050565b5f6120fb82611c14565b915061210683611c14565b925082820261211481611c14565b9150828204841483151761212b5761212a611ff6565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61216982611c14565b915061217483611c14565b92508261218457612183612132565b5b828204905092915050565b7f6d61782d627579000000000000000000000000000000000000000000000000005f82015250565b5f6121c3600783611b30565b91506121ce8261218f565b602082019050919050565b5f6020820190508181035f8301526121f0816121b7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f61227461226f61226a84612251565b611de2565b611c14565b9050919050565b6122848161225a565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6122bc81611bd9565b82525050565b5f6122cd83836122b3565b60208301905092915050565b5f602082019050919050565b5f6122ef8261228a565b6122f98185612294565b9350612304836122a4565b805f5b8381101561233457815161231b88826122c2565b9750612326836122d9565b925050600181019050612307565b5085935050505092915050565b5f60a0820190506123545f830188611ce3565b612361602083018761227b565b818103604083015261237381866122e5565b90506123826060830185611dba565b61238f6080830184611ce3565b969550505050505056fea2646970667358221220cd15d7d11fb719da60491f05f9ecd72c44ae5de329e6dd228670fe1c3ca3c5d464736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101e3575f3560e01c806370a082311161010d578063902d55a5116100a0578063dd62ed3e1161006f578063dd62ed3e1461054d578063efc03ab81461057d578063f0f44260146105ad578063f2fde38b146105c9576101e3565b8063902d55a5146104c357806395d89b41146104e1578063a8aa1b31146104ff578063a9059cbb1461051d576101e3565b8063751039fc116100dc578063751039fc1461044f578063764a730a146104595780638b4cee08146104895780638da5cb5b146104a5576101e3565b806370a08231146103d957806370db69d614610409578063715018a614610427578063735de9f714610431576101e3565b8063313ce567116101855780634ada218b116101545780634ada218b146103515780635342acb41461036f57806361d027b31461039f57806368616182146103bd576101e3565b8063313ce567146102c75780633af32abf146102e5578063470624021461031557806348cd4cb114610333576101e3565b806318160ddd116101c157806318160ddd1461025157806323b872dd1461026f578063293230b81461029f5780632b14ca56146102a9576101e3565b806306fdde03146101e7578063095ea7b3146102055780630cc835a314610235575b5f80fd5b6101ef6105e5565b6040516101fc9190611b96565b60405180910390f35b61021f600480360381019061021a9190611c47565b610675565b60405161022c9190611c9f565b60405180910390f35b61024f600480360381019061024a9190611cb8565b610697565b005b6102596106a9565b6040516102669190611cf2565b60405180910390f35b61028960048036038101906102849190611d0b565b6106b2565b6040516102969190611c9f565b60405180910390f35b6102a76106e0565b005b6102b1610712565b6040516102be9190611cf2565b60405180910390f35b6102cf610718565b6040516102dc9190611d76565b60405180910390f35b6102ff60048036038101906102fa9190611d8f565b610720565b60405161030c9190611c9f565b60405180910390f35b61031d61073d565b60405161032a9190611cf2565b60405180910390f35b61033b610743565b6040516103489190611cf2565b60405180910390f35b610359610749565b6040516103669190611c9f565b60405180910390f35b61038960048036038101906103849190611d8f565b61075b565b6040516103969190611c9f565b60405180910390f35b6103a7610778565b6040516103b49190611dc9565b60405180910390f35b6103d760048036038101906103d29190611d8f565b61079d565b005b6103f360048036038101906103ee9190611d8f565b610846565b6040516104009190611cf2565b60405180910390f35b61041161088b565b60405161041e9190611cf2565b60405180910390f35b61042f610891565b005b6104396108a4565b6040516104469190611e3d565b60405180910390f35b6104576108bc565b005b610473600480360381019061046e9190611d8f565b6108cf565b6040516104809190611cf2565b60405180910390f35b6104a3600480360381019061049e9190611cb8565b6108e4565b005b6104ad6108f6565b6040516104ba9190611dc9565b60405180910390f35b6104cb61091e565b6040516104d89190611cf2565b60405180910390f35b6104e9610924565b6040516104f69190611b96565b60405180910390f35b6105076109b4565b6040516105149190611dc9565b60405180910390f35b61053760048036038101906105329190611c47565b6109d8565b6040516105449190611c9f565b60405180910390f35b61056760048036038101906105629190611e56565b6109fa565b6040516105749190611cf2565b60405180910390f35b61059760048036038101906105929190611d8f565b610a7c565b6040516105a49190611cf2565b60405180910390f35b6105c760048036038101906105c29190611d8f565b610a91565b005b6105e360048036038101906105de9190611d8f565b610c0d565b005b6060600380546105f490611ec1565b80601f016020809104026020016040519081016040528092919081815260200182805461062090611ec1565b801561066b5780601f106106425761010080835404028352916020019161066b565b820191905f5260205f20905b81548152906001019060200180831161064e57829003601f168201915b5050505050905090565b5f8061067f610c91565b905061068c818585610c98565b600191505092915050565b61069f610caa565b8060088190555050565b5f600254905090565b5f806106bc610c91565b90506106c9858285610d31565b6106d4858585610dc3565b60019150509392505050565b6106e8610caa565b6001600e5f6101000a81548160ff02191690831515021790555043600f8190555044601181905550565b60095481565b5f6012905090565b600b602052805f5260405f205f915054906101000a900460ff1681565b60085481565b600f5481565b600e5f9054906101000a900460ff1681565b600a602052805f5260405f205f915054906101000a900460ff1681565b60125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6107a5610caa565b600a5f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60075481565b610899610caa565b6108a25f610eb3565b565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6108c4610caa565b600654600781905550565b600c602052805f5260405f205f915090505481565b6108ec610caa565b8060098190555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065481565b60606004805461093390611ec1565b80601f016020809104026020016040519081016040528092919081815260200182805461095f90611ec1565b80156109aa5780601f10610981576101008083540402835291602001916109aa565b820191905f5260205f20905b81548152906001019060200180831161098d57829003601f168201915b5050505050905090565b7f000000000000000000000000fb4ae6807b7c612f49356ed2fd15053424c83dfd81565b5f806109e2610c91565b90506109ef818585610dc3565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600d602052805f5260405f205f915090505481565b7f000000000000000000000000608e8291b567968927ca992f9ca92fe6a830f71d73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610b1d5750610aee6108f6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5390611f3b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc190611fa3565b60405180910390fd5b8060125f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c15610caa565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c85575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610c7c9190611dc9565b60405180910390fd5b610c8e81610eb3565b50565b5f33905090565b610ca58383836001610f76565b505050565b610cb2610c91565b73ffffffffffffffffffffffffffffffffffffffff16610cd06108f6565b73ffffffffffffffffffffffffffffffffffffffff1614610d2f57610cf3610c91565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610d269190611dc9565b60405180910390fd5b565b5f610d3c84846109fa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dbd5781811015610dae578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610da593929190611fc1565b60405180910390fd5b610dbc84848484035f610f76565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e33575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610e2a9190611dc9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea3575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610e9a9190611dc9565b60405180910390fd5b610eae838383611145565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610fe6575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610fdd9190611dc9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611056575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161104d9190611dc9565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561113f578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111369190611cf2565b60405180910390a35b50505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611192578160025f82825461118a9190612023565b925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111de578160025f8282546111d69190612056565b925050819055505b5f80600d5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541180156112775750601054600f54600d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112749190612056565b11155b90507f000000000000000000000000fb4ae6807b7c612f49356ed2fd15053424c83dfd73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061131e57507f000000000000000000000000fb4ae6807b7c612f49356ed2fd15053424c83dfd73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b806113265750805b156117b8577f000000000000000000000000fb4ae6807b7c612f49356ed2fd15053424c83dfd73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361164a57600e5f9054906101000a900460ff161580156113e15750600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611418906120d3565b60405180910390fd5b600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611649576103e86008548461148091906120f1565b61148a919061215f565b9150815f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546114d79190612023565b9250508190555081836114ea9190612056565b92505f600d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054036115735743600d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b82600c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546115bf9190612023565b92505081905550600754600c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541115611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163f906121d9565b60405180910390fd5b5b5b7f000000000000000000000000fb4ae6807b7c612f49356ed2fd15053424c83dfd73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116a15750805b156117b757600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166117b6576103e86009548461170591906120f1565b61170f919061215f565b915060014614801561172357506011544414155b801561172c5750805b1561174d57606460508461174091906120f1565b61174a919061215f565b91505b815f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546117989190612023565b9250508190555081836117ab9190612056565b92506117b5611907565b5b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146118495781836117f79190612023565b5f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546118419190612056565b925050819055505b825f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546118949190612023565b925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516118f89190611cf2565b60405180910390a35050505050565b5f805f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f81036119545750611b24565b69152d02c7e14af68000008111156119745769152d02c7e14af680000090505b5f600267ffffffffffffffff8111156119905761198f6121f7565b5b6040519080825280602002602001820160405280156119be5781602001602082028036833780820191505090505b50905030815f815181106119d5576119d4612224565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110611a4457611a43612224565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8460125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611af4959493929190612341565b5f604051808303815f87803b158015611b0b575f80fd5b505af1158015611b1d573d5f803e3d5ffd5b5050505050505b565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611b6882611b26565b611b728185611b30565b9350611b82818560208601611b40565b611b8b81611b4e565b840191505092915050565b5f6020820190508181035f830152611bae8184611b5e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611be382611bba565b9050919050565b611bf381611bd9565b8114611bfd575f80fd5b50565b5f81359050611c0e81611bea565b92915050565b5f819050919050565b611c2681611c14565b8114611c30575f80fd5b50565b5f81359050611c4181611c1d565b92915050565b5f8060408385031215611c5d57611c5c611bb6565b5b5f611c6a85828601611c00565b9250506020611c7b85828601611c33565b9150509250929050565b5f8115159050919050565b611c9981611c85565b82525050565b5f602082019050611cb25f830184611c90565b92915050565b5f60208284031215611ccd57611ccc611bb6565b5b5f611cda84828501611c33565b91505092915050565b611cec81611c14565b82525050565b5f602082019050611d055f830184611ce3565b92915050565b5f805f60608486031215611d2257611d21611bb6565b5b5f611d2f86828701611c00565b9350506020611d4086828701611c00565b9250506040611d5186828701611c33565b9150509250925092565b5f60ff82169050919050565b611d7081611d5b565b82525050565b5f602082019050611d895f830184611d67565b92915050565b5f60208284031215611da457611da3611bb6565b5b5f611db184828501611c00565b91505092915050565b611dc381611bd9565b82525050565b5f602082019050611ddc5f830184611dba565b92915050565b5f819050919050565b5f611e05611e00611dfb84611bba565b611de2565b611bba565b9050919050565b5f611e1682611deb565b9050919050565b5f611e2782611e0c565b9050919050565b611e3781611e1d565b82525050565b5f602082019050611e505f830184611e2e565b92915050565b5f8060408385031215611e6c57611e6b611bb6565b5b5f611e7985828601611c00565b9250506020611e8a85828601611c00565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611ed857607f821691505b602082108103611eeb57611eea611e94565b5b50919050565b7f6e6f742d616c6c6f7765640000000000000000000000000000000000000000005f82015250565b5f611f25600b83611b30565b9150611f3082611ef1565b602082019050919050565b5f6020820190508181035f830152611f5281611f19565b9050919050565b7f7a65726f000000000000000000000000000000000000000000000000000000005f82015250565b5f611f8d600483611b30565b9150611f9882611f59565b602082019050919050565b5f6020820190508181035f830152611fba81611f81565b9050919050565b5f606082019050611fd45f830186611dba565b611fe16020830185611ce3565b611fee6040830184611ce3565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61202d82611c14565b915061203883611c14565b92508282019050808211156120505761204f611ff6565b5b92915050565b5f61206082611c14565b915061206b83611c14565b925082820390508181111561208357612082611ff6565b5b92915050565b7f74726164696e672d6e6f742d656e61626c6564000000000000000000000000005f82015250565b5f6120bd601383611b30565b91506120c882612089565b602082019050919050565b5f6020820190508181035f8301526120ea816120b1565b9050919050565b5f6120fb82611c14565b915061210683611c14565b925082820261211481611c14565b9150828204841483151761212b5761212a611ff6565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61216982611c14565b915061217483611c14565b92508261218457612183612132565b5b828204905092915050565b7f6d61782d627579000000000000000000000000000000000000000000000000005f82015250565b5f6121c3600783611b30565b91506121ce8261218f565b602082019050919050565b5f6020820190508181035f8301526121f0816121b7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f61227461226f61226a84612251565b611de2565b611c14565b9050919050565b6122848161225a565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6122bc81611bd9565b82525050565b5f6122cd83836122b3565b60208301905092915050565b5f602082019050919050565b5f6122ef8261228a565b6122f98185612294565b9350612304836122a4565b805f5b8381101561233457815161231b88826122c2565b9750612326836122d9565b925050600181019050612307565b5085935050505092915050565b5f60a0820190506123545f830188611ce3565b612361602083018761227b565b818103604083015261237381866122e5565b90506123826060830185611dba565b61238f6080830184611ce3565b969550505050505056fea2646970667358221220cd15d7d11fb719da60491f05f9ecd72c44ae5de329e6dd228670fe1c3ca3c5d464736f6c634300081a0033
Deployed Bytecode Sourcemap
254:4916:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2040:89:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4259:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1785:88:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3110:97:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5005:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1977:149:0;;;:::i;:::-;;456:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2968:82:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;794:45:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;417:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;995:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;954:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;739:49;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1088:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2219:140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3265:116:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;345:42:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2286:101:8;;;:::i;:::-;;497:121:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2132:81;;;:::i;:::-;;846:47;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1879:92;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1631:85:8;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;293:46:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2242:93:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;625:29:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3576:178:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3812:140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;899:48:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2365:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2536:215:8;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2040:89:2;2085:13;2117:5;2110:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2040:89;:::o;4259:186::-;4332:4;4348:13;4364:12;:10;:12::i;:::-;4348:28;;4386:31;4395:5;4402:7;4411:5;4386:8;:31::i;:::-;4434:4;4427:11;;;4259:186;;;;:::o;1785:88:0:-;1524:13:8;:11;:13::i;:::-;1859:7:0::1;1850:6;:16;;;;1785:88:::0;:::o;3110:97:2:-;3162:7;3188:12;;3181:19;;3110:97;:::o;5005:244::-;5092:4;5108:15;5126:12;:10;:12::i;:::-;5108:30;;5148:37;5164:4;5170:7;5179:5;5148:15;:37::i;:::-;5195:26;5205:4;5211:2;5215:5;5195:9;:26::i;:::-;5238:4;5231:11;;;5005:244;;;;;:::o;1977:149:0:-;1524:13:8;:11;:13::i;:::-;2047:4:0::1;2030:14;;:21;;;;;;;;;;;;;;;;;;2074:12;2061:10;:25;;;;2103:16;2096:4;:23;;;;1977:149::o:0;456:27::-;;;;:::o;2968:82:2:-;3017:5;3041:2;3034:9;;2968:82;:::o;794:45:0:-;;;;;;;;;;;;;;;;;;;;;;:::o;417:26::-;;;;:::o;995:25::-;;;;:::o;954:34::-;;;;;;;;;;;;;:::o;739:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;1088:23::-;;;;;;;;;;;;;:::o;2219:140::-;1524:13:8;:11;:13::i;:::-;2326:17:0::1;:26;2344:7;2326:26;;;;;;;;;;;;;;;;;;;;;;;;;2325:27;2296:17;:26;2314:7;2296:26;;;;;;;;;;;;;;;;:56;;;;;;;;;;;;;;;;;;2219:140:::0;:::o;3265:116:2:-;3330:7;3356:9;:18;3366:7;3356:18;;;;;;;;;;;;;;;;3349:25;;3265:116;;;:::o;345:42:0:-;;;;:::o;2286:101:8:-;1524:13;:11;:13::i;:::-;2350:30:::1;2377:1;2350:18;:30::i;:::-;2286:101::o:0;497:121:0:-;575:42;497:121;:::o;2132:81::-;1524:13:8;:11;:13::i;:::-;2194:12:0::1;;2185:6;:21;;;;2132:81::o:0;846:47::-;;;;;;;;;;;;;;;;;:::o;1879:92::-;1524:13:8;:11;:13::i;:::-;1956:8:0::1;1946:7;:18;;;;1879:92:::0;:::o;1631:85:8:-;1677:7;1703:6;;;;;;;;;;;1696:13;;1631:85;:::o;293:46:0:-;;;;:::o;2242:93:2:-;2289:13;2321:7;2314:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2242:93;:::o;625:29:0:-;;;:::o;3576:178:2:-;3645:4;3661:13;3677:12;:10;:12::i;:::-;3661:28;;3699:27;3709:5;3716:2;3720:5;3699:9;:27::i;:::-;3743:4;3736:11;;;3576:178;;;;:::o;3812:140::-;3892:7;3918:11;:18;3930:5;3918:18;;;;;;;;;;;;;;;:27;3937:7;3918:27;;;;;;;;;;;;;;;;3911:34;;3812:140;;;;:::o;899:48:0:-;;;;;;;;;;;;;;;;;:::o;2365:217::-;2446:8;2432:22;;:10;:22;;;:47;;;;2472:7;:5;:7::i;:::-;2458:21;;:10;:21;;;2432:47;2424:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;2534:1;2513:23;;:9;:23;;;2505:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;2566:9;2555:8;;:20;;;;;;;;;;;;;;;;;;2365:217;:::o;2536:215:8:-;1524:13;:11;:13::i;:::-;2640:1:::1;2620:22;;:8;:22;;::::0;2616:91:::1;;2693:1;2665:31;;;;;;;;;;;:::i;:::-;;;;;;;;2616:91;2716:28;2735:8;2716:18;:28::i;:::-;2536:215:::0;:::o;656:96:1:-;709:7;735:10;728:17;;656:96;:::o;8955:128:2:-;9039:37;9048:5;9055:7;9064:5;9071:4;9039:8;:37::i;:::-;8955:128;;;:::o;1789:162:8:-;1859:12;:10;:12::i;:::-;1848:23;;:7;:5;:7::i;:::-;:23;;;1844:101;;1921:12;:10;:12::i;:::-;1894:40;;;;;;;;;;;:::i;:::-;;;;;;;;1844:101;1789:162::o;10629:477:2:-;10728:24;10755:25;10765:5;10772:7;10755:9;:25::i;:::-;10728:52;;10814:17;10794:16;:37;10790:310;;10870:5;10851:16;:24;10847:130;;;10929:7;10938:16;10956:5;10902:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;10847:130;11018:57;11027:5;11034:7;11062:5;11043:16;:24;11069:5;11018:8;:57::i;:::-;10790:310;10718:388;10629:477;;;:::o;5622:300::-;5721:1;5705:18;;:4;:18;;;5701:86;;5773:1;5746:30;;;;;;;;;;;:::i;:::-;;;;;;;;5701:86;5814:1;5800:16;;:2;:16;;;5796:86;;5868:1;5839:32;;;;;;;;;;;:::i;:::-;;;;;;;;5796:86;5891:24;5899:4;5905:2;5909:5;5891:7;:24::i;:::-;5622:300;;;:::o;2905:187:8:-;2978:16;2997:6;;;;;;;;;;;2978:25;;3022:8;3013:6;;:17;;;;;;;;;;;;;;;;;;3076:8;3045:40;;3066:8;3045:40;;;;;;;;;;;;2968:124;2905:187;:::o;9915:432:2:-;10044:1;10027:19;;:5;:19;;;10023:89;;10098:1;10069:32;;;;;;;;;;;:::i;:::-;;;;;;;;10023:89;10144:1;10125:21;;:7;:21;;;10121:90;;10197:1;10169:31;;;;;;;;;;;:::i;:::-;;;;;;;;10121:90;10250:5;10220:11;:18;10232:5;10220:18;;;;;;;;;;;;;;;:27;10239:7;10220:27;;;;;;;;;;;;;;;:35;;;;10269:9;10265:76;;;10315:7;10299:31;;10308:5;10299:31;;;10324:5;10299:31;;;;;;:::i;:::-;;;;;;;;10265:76;9915:432;;;;:::o;2588:2008:0:-;2704:18;2753:1;2737:18;;:4;:18;;;2733:70;;2787:5;2771:12;;:21;;;;;;;:::i;:::-;;;;;;;;2733:70;2830:1;2816:16;;:2;:16;;;2812:68;;2864:5;2848:12;;:21;;;;;;;:::i;:::-;;;;;;;;2812:68;2890:21;2937:1;2915:13;:19;2929:4;2915:19;;;;;;;;;;;;;;;;:23;:84;;;;;2990:9;;2976:10;;2954:13;:19;2968:4;2954:19;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:45;;2915:84;2890:110;;3023:4;3015:12;;:4;:12;;;:26;;;;3037:4;3031:10;;:2;:10;;;3015:26;:46;;;;3045:16;3015:46;3011:1410;;;3089:4;3081:12;;:4;:12;;;3077:708;;3142:14;;;;;;;;;;;3141:15;:37;;;;;3161:13;:17;3175:2;3161:17;;;;;;;;;;;;;;;;;;;;;;;;;3160:18;3141:37;3137:113;;;3202:29;;;;;;;;;;:::i;:::-;;;;;;;;3137:113;3273:17;:21;3291:2;3273:21;;;;;;;;;;;;;;;;;;;;;;;;;3268:503;;3350:4;3340:6;;3332:5;:14;;;;:::i;:::-;3331:23;;;;:::i;:::-;3318:36;;3404:10;3376:9;:24;3394:4;3376:24;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;3445:10;3436:19;;;;;:::i;:::-;;;3503:1;3482:13;:17;3496:2;3482:17;;;;;;;;;;;;;;;;:22;3478:109;;3552:12;3532:13;:17;3546:2;3532:17;;;;;;;;;;;;;;;:32;;;;3478:109;3628:5;3608:12;:16;3621:2;3608:16;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;3679:6;;3660:12;:16;3673:2;3660:16;;;;;;;;;;;;;;;;:25;3656:97;;;3713:17;;;;;;;;;;:::i;:::-;;;;;;;;3656:97;3268:503;3077:708;3809:4;3803:10;;:2;:10;;;:30;;;;3817:16;3803:30;3799:612;;;3882:17;:23;3900:4;3882:23;;;;;;;;;;;;;;;;;;;;;;;;;3877:520;;3962:4;3951:7;;3943:5;:15;;;;:::i;:::-;3942:24;;;;:::i;:::-;3929:37;;4035:1;4018:13;:18;:70;;;;;4084:4;;4064:16;:24;;4018:70;:114;;;;;4116:16;4018:114;3989:246;;;4209:3;4203:2;4195:5;:10;;;;:::i;:::-;4194:18;;;;:::i;:::-;4181:31;;3989:246;4285:10;4257:9;:24;4275:4;4257:24;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;4326:10;4317:19;;;;;:::i;:::-;;;4359;:17;:19::i;:::-;3877:520;3799:612;3011:1410;4451:1;4435:18;;:4;:18;;;4431:86;;4496:10;4488:5;:18;;;;:::i;:::-;4469:9;:15;4479:4;4469:15;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;4431:86;4543:5;4526:9;:13;4536:2;4526:13;;;;;;;;;;;;;;;;:22;;;;;;;:::i;:::-;;;;;;;;4579:2;4564:25;;4573:4;4564:25;;;4583:5;4564:25;;;;;;:::i;:::-;;;;;;;;2694:1902;;2588:2008;;;:::o;4602:566::-;4650:20;4673:9;:24;4691:4;4673:24;;;;;;;;;;;;;;;;4650:47;;4728:1;4712:12;:17;4708:54;;4745:7;;;4708:54;4791:13;4776:12;:28;4772:87;;;4835:13;4820:28;;4772:87;4868:21;4906:1;4892:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4868:40;;4937:4;4919;4924:1;4919:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;4962:4;4952;4957:1;4952:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;;;575:42;4977:64;;;5055:12;5081:1;5096:4;5114:8;;;;;;;;;;;5136:15;4977:184;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4640:528;;4602:566;:::o;7:99:10:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:329::-;3398:6;3447:2;3435:9;3426:7;3422:23;3418:32;3415:119;;;3453:79;;:::i;:::-;3415:119;3573:1;3598:53;3643:7;3634:6;3623:9;3619:22;3598:53;:::i;:::-;3588:63;;3544:117;3339:329;;;;:::o;3674:118::-;3761:24;3779:5;3761:24;:::i;:::-;3756:3;3749:37;3674:118;;:::o;3798:222::-;3891:4;3929:2;3918:9;3914:18;3906:26;;3942:71;4010:1;3999:9;3995:17;3986:6;3942:71;:::i;:::-;3798:222;;;;:::o;4026:619::-;4103:6;4111;4119;4168:2;4156:9;4147:7;4143:23;4139:32;4136:119;;;4174:79;;:::i;:::-;4136:119;4294:1;4319:53;4364:7;4355:6;4344:9;4340:22;4319:53;:::i;:::-;4309:63;;4265:117;4421:2;4447:53;4492:7;4483:6;4472:9;4468:22;4447:53;:::i;:::-;4437:63;;4392:118;4549:2;4575:53;4620:7;4611:6;4600:9;4596:22;4575:53;:::i;:::-;4565:63;;4520:118;4026:619;;;;;:::o;4651:86::-;4686:7;4726:4;4719:5;4715:16;4704:27;;4651:86;;;:::o;4743:112::-;4826:22;4842:5;4826:22;:::i;:::-;4821:3;4814:35;4743:112;;:::o;4861:214::-;4950:4;4988:2;4977:9;4973:18;4965:26;;5001:67;5065:1;5054:9;5050:17;5041:6;5001:67;:::i;:::-;4861:214;;;;:::o;5081:329::-;5140:6;5189:2;5177:9;5168:7;5164:23;5160:32;5157:119;;;5195:79;;:::i;:::-;5157:119;5315:1;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5286:117;5081:329;;;;:::o;5416:118::-;5503:24;5521:5;5503:24;:::i;:::-;5498:3;5491:37;5416:118;;:::o;5540:222::-;5633:4;5671:2;5660:9;5656:18;5648:26;;5684:71;5752:1;5741:9;5737:17;5728:6;5684:71;:::i;:::-;5540:222;;;;:::o;5768:60::-;5796:3;5817:5;5810:12;;5768:60;;;:::o;5834:142::-;5884:9;5917:53;5935:34;5944:24;5962:5;5944:24;:::i;:::-;5935:34;:::i;:::-;5917:53;:::i;:::-;5904:66;;5834:142;;;:::o;5982:126::-;6032:9;6065:37;6096:5;6065:37;:::i;:::-;6052:50;;5982:126;;;:::o;6114:153::-;6191:9;6224:37;6255:5;6224:37;:::i;:::-;6211:50;;6114:153;;;:::o;6273:185::-;6387:64;6445:5;6387:64;:::i;:::-;6382:3;6375:77;6273:185;;:::o;6464:276::-;6584:4;6622:2;6611:9;6607:18;6599:26;;6635:98;6730:1;6719:9;6715:17;6706:6;6635:98;:::i;:::-;6464:276;;;;:::o;6746:474::-;6814:6;6822;6871:2;6859:9;6850:7;6846:23;6842:32;6839:119;;;6877:79;;:::i;:::-;6839:119;6997:1;7022:53;7067:7;7058:6;7047:9;7043:22;7022:53;:::i;:::-;7012:63;;6968:117;7124:2;7150:53;7195:7;7186:6;7175:9;7171:22;7150:53;:::i;:::-;7140:63;;7095:118;6746:474;;;;;:::o;7226:180::-;7274:77;7271:1;7264:88;7371:4;7368:1;7361:15;7395:4;7392:1;7385:15;7412:320;7456:6;7493:1;7487:4;7483:12;7473:22;;7540:1;7534:4;7530:12;7561:18;7551:81;;7617:4;7609:6;7605:17;7595:27;;7551:81;7679:2;7671:6;7668:14;7648:18;7645:38;7642:84;;7698:18;;:::i;:::-;7642:84;7463:269;7412:320;;;:::o;7738:161::-;7878:13;7874:1;7866:6;7862:14;7855:37;7738:161;:::o;7905:366::-;8047:3;8068:67;8132:2;8127:3;8068:67;:::i;:::-;8061:74;;8144:93;8233:3;8144:93;:::i;:::-;8262:2;8257:3;8253:12;8246:19;;7905:366;;;:::o;8277:419::-;8443:4;8481:2;8470:9;8466:18;8458:26;;8530:9;8524:4;8520:20;8516:1;8505:9;8501:17;8494:47;8558:131;8684:4;8558:131;:::i;:::-;8550:139;;8277:419;;;:::o;8702:154::-;8842:6;8838:1;8830:6;8826:14;8819:30;8702:154;:::o;8862:365::-;9004:3;9025:66;9089:1;9084:3;9025:66;:::i;:::-;9018:73;;9100:93;9189:3;9100:93;:::i;:::-;9218:2;9213:3;9209:12;9202:19;;8862:365;;;:::o;9233:419::-;9399:4;9437:2;9426:9;9422:18;9414:26;;9486:9;9480:4;9476:20;9472:1;9461:9;9457:17;9450:47;9514:131;9640:4;9514:131;:::i;:::-;9506:139;;9233:419;;;:::o;9658:442::-;9807:4;9845:2;9834:9;9830:18;9822:26;;9858:71;9926:1;9915:9;9911:17;9902:6;9858:71;:::i;:::-;9939:72;10007:2;9996:9;9992:18;9983:6;9939:72;:::i;:::-;10021;10089:2;10078:9;10074:18;10065:6;10021:72;:::i;:::-;9658:442;;;;;;:::o;10106:180::-;10154:77;10151:1;10144:88;10251:4;10248:1;10241:15;10275:4;10272:1;10265:15;10292:191;10332:3;10351:20;10369:1;10351:20;:::i;:::-;10346:25;;10385:20;10403:1;10385:20;:::i;:::-;10380:25;;10428:1;10425;10421:9;10414:16;;10449:3;10446:1;10443:10;10440:36;;;10456:18;;:::i;:::-;10440:36;10292:191;;;;:::o;10489:194::-;10529:4;10549:20;10567:1;10549:20;:::i;:::-;10544:25;;10583:20;10601:1;10583:20;:::i;:::-;10578:25;;10627:1;10624;10620:9;10612:17;;10651:1;10645:4;10642:11;10639:37;;;10656:18;;:::i;:::-;10639:37;10489:194;;;;:::o;10689:169::-;10829:21;10825:1;10817:6;10813:14;10806:45;10689:169;:::o;10864:366::-;11006:3;11027:67;11091:2;11086:3;11027:67;:::i;:::-;11020:74;;11103:93;11192:3;11103:93;:::i;:::-;11221:2;11216:3;11212:12;11205:19;;10864:366;;;:::o;11236:419::-;11402:4;11440:2;11429:9;11425:18;11417:26;;11489:9;11483:4;11479:20;11475:1;11464:9;11460:17;11453:47;11517:131;11643:4;11517:131;:::i;:::-;11509:139;;11236:419;;;:::o;11661:410::-;11701:7;11724:20;11742:1;11724:20;:::i;:::-;11719:25;;11758:20;11776:1;11758:20;:::i;:::-;11753:25;;11813:1;11810;11806:9;11835:30;11853:11;11835:30;:::i;:::-;11824:41;;12014:1;12005:7;12001:15;11998:1;11995:22;11975:1;11968:9;11948:83;11925:139;;12044:18;;:::i;:::-;11925:139;11709:362;11661:410;;;;:::o;12077:180::-;12125:77;12122:1;12115:88;12222:4;12219:1;12212:15;12246:4;12243:1;12236:15;12263:185;12303:1;12320:20;12338:1;12320:20;:::i;:::-;12315:25;;12354:20;12372:1;12354:20;:::i;:::-;12349:25;;12393:1;12383:35;;12398:18;;:::i;:::-;12383:35;12440:1;12437;12433:9;12428:14;;12263:185;;;;:::o;12454:157::-;12594:9;12590:1;12582:6;12578:14;12571:33;12454:157;:::o;12617:365::-;12759:3;12780:66;12844:1;12839:3;12780:66;:::i;:::-;12773:73;;12855:93;12944:3;12855:93;:::i;:::-;12973:2;12968:3;12964:12;12957:19;;12617:365;;;:::o;12988:419::-;13154:4;13192:2;13181:9;13177:18;13169:26;;13241:9;13235:4;13231:20;13227:1;13216:9;13212:17;13205:47;13269:131;13395:4;13269:131;:::i;:::-;13261:139;;12988:419;;;:::o;13413:180::-;13461:77;13458:1;13451:88;13558:4;13555:1;13548:15;13582:4;13579:1;13572:15;13599:180;13647:77;13644:1;13637:88;13744:4;13741:1;13734:15;13768:4;13765:1;13758:15;13785:85;13830:7;13859:5;13848:16;;13785:85;;;:::o;13876:158::-;13934:9;13967:61;13985:42;13994:32;14020:5;13994:32;:::i;:::-;13985:42;:::i;:::-;13967:61;:::i;:::-;13954:74;;13876:158;;;:::o;14040:147::-;14135:45;14174:5;14135:45;:::i;:::-;14130:3;14123:58;14040:147;;:::o;14193:114::-;14260:6;14294:5;14288:12;14278:22;;14193:114;;;:::o;14313:184::-;14412:11;14446:6;14441:3;14434:19;14486:4;14481:3;14477:14;14462:29;;14313:184;;;;:::o;14503:132::-;14570:4;14593:3;14585:11;;14623:4;14618:3;14614:14;14606:22;;14503:132;;;:::o;14641:108::-;14718:24;14736:5;14718:24;:::i;:::-;14713:3;14706:37;14641:108;;:::o;14755:179::-;14824:10;14845:46;14887:3;14879:6;14845:46;:::i;:::-;14923:4;14918:3;14914:14;14900:28;;14755:179;;;;:::o;14940:113::-;15010:4;15042;15037:3;15033:14;15025:22;;14940:113;;;:::o;15089:732::-;15208:3;15237:54;15285:5;15237:54;:::i;:::-;15307:86;15386:6;15381:3;15307:86;:::i;:::-;15300:93;;15417:56;15467:5;15417:56;:::i;:::-;15496:7;15527:1;15512:284;15537:6;15534:1;15531:13;15512:284;;;15613:6;15607:13;15640:63;15699:3;15684:13;15640:63;:::i;:::-;15633:70;;15726:60;15779:6;15726:60;:::i;:::-;15716:70;;15572:224;15559:1;15556;15552:9;15547:14;;15512:284;;;15516:14;15812:3;15805:10;;15213:608;;;15089:732;;;;:::o;15827:831::-;16090:4;16128:3;16117:9;16113:19;16105:27;;16142:71;16210:1;16199:9;16195:17;16186:6;16142:71;:::i;:::-;16223:80;16299:2;16288:9;16284:18;16275:6;16223:80;:::i;:::-;16350:9;16344:4;16340:20;16335:2;16324:9;16320:18;16313:48;16378:108;16481:4;16472:6;16378:108;:::i;:::-;16370:116;;16496:72;16564:2;16553:9;16549:18;16540:6;16496:72;:::i;:::-;16578:73;16646:3;16635:9;16631:19;16622:6;16578:73;:::i;:::-;15827:831;;;;;;;;:::o
Swarm Source
ipfs://cd15d7d11fb719da60491f05f9ecd72c44ae5de329e6dd228670fe1c3ca3c5d4
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.