Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 80 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17809315 | 516 days ago | IN | 0 ETH | 0.00066478 | ||||
Approve | 17808995 | 516 days ago | IN | 0 ETH | 0.00071095 | ||||
Approve | 17808961 | 516 days ago | IN | 0 ETH | 0.0007078 | ||||
Approve | 17808945 | 516 days ago | IN | 0 ETH | 0.00070064 | ||||
Approve | 17808925 | 516 days ago | IN | 0 ETH | 0.00071861 | ||||
Approve | 17808919 | 516 days ago | IN | 0 ETH | 0.00046131 | ||||
Approve | 17808562 | 516 days ago | IN | 0 ETH | 0.00082312 | ||||
Approve | 17808061 | 517 days ago | IN | 0 ETH | 0.0013098 | ||||
Approve | 17807619 | 517 days ago | IN | 0 ETH | 0.00090254 | ||||
Approve | 17807470 | 517 days ago | IN | 0 ETH | 0.00073113 | ||||
Approve | 17807047 | 517 days ago | IN | 0 ETH | 0.00134664 | ||||
Approve | 17806819 | 517 days ago | IN | 0 ETH | 0.0010001 | ||||
Approve | 17806706 | 517 days ago | IN | 0 ETH | 0.00080433 | ||||
Approve | 17806406 | 517 days ago | IN | 0 ETH | 0.00083693 | ||||
Approve | 17806351 | 517 days ago | IN | 0 ETH | 0.00085603 | ||||
Approve | 17806336 | 517 days ago | IN | 0 ETH | 0.00090735 | ||||
Approve | 17806218 | 517 days ago | IN | 0 ETH | 0.00078623 | ||||
Approve | 17805044 | 517 days ago | IN | 0 ETH | 0.00066752 | ||||
Approve | 17805040 | 517 days ago | IN | 0 ETH | 0.00074087 | ||||
Approve | 17803489 | 517 days ago | IN | 0 ETH | 0.00067062 | ||||
Approve | 17803404 | 517 days ago | IN | 0 ETH | 0.00041715 | ||||
Approve | 17802341 | 517 days ago | IN | 0 ETH | 0.00071795 | ||||
Approve | 17801183 | 517 days ago | IN | 0 ETH | 0.00117377 | ||||
Approve | 17801172 | 518 days ago | IN | 0 ETH | 0.00119857 | ||||
Approve | 17800988 | 518 days ago | IN | 0 ETH | 0.00204662 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
MeaningToken
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-22 */ // SPDX-License-Identifier: MIT // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol 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: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol 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/IUniswapV2Router02.sol 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/utils/Context.sol // 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/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.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; 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(); _; } /** * @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"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.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/IERC20Metadata.sol // 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: @openzeppelin/contracts/token/ERC20/ERC20.sol // 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 {} } // File: Copy_biran.sol pragma solidity ^0.8.0; /** https://meaningtoken.com/ https://twitter.com/MeaningToken https://t.me/+LY_0F-5uqns1YTEx DISCLAIMER: This document aims to inform users about the conditions associated with the token purchase. Please take note of the following before proceeding with any transactions: Penalty for Early Purchase: If you attempt to buy tokens before the official announcement, a 99% tax penalty will be applied, which is permanent and cannot be reversed. We recommend waiting for the official announcement before making any purchase to avoid this penalty. Ability to Find the Contract: If you have reached this point, it means you have advanced skills to find this contract before others. However, please be aware that finding the contract before the official announcement does not exempt you from the penalty for early purchase. All users are subject to the same rules and conditions set forth in this disclaimer. Official Announcement: The official project announcement will be made through official communication channels. Please make sure to follow our social media and official websites to receive updates and important news related to the token. Financial Advice: Please note that this disclaimer does not constitute financial advice or an offer to buy or sell the token. Before making any financial decisions, we recommend consulting a qualified financial advisor for appropriate guidance. Risks and Liability: Buying and holding tokens involves inherent risks. The project team is not responsible for any financial loss, damage, or consequence resulting from the purchase or use of the token. By proceeding with the token purchase, you accept the terms and conditions stated in this disclaimer. If you have any doubts or questions regarding the mentioned aspects, we recommend contacting our team before proceeding. Always remember to conduct thorough research and fully understand the risks involved before participating in any cryptocurrency project. Thank you for your support and trust in our project! */ contract MeaningToken is Context, IERC20Metadata, ERC20, Ownable { IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; address private _feesWallet; bool private _tradingEnabled = false; bool private _isInFeeTransfer; mapping(address => bool) public _blacklistWallets; mapping(address => bool) private _taxlessList; mapping(address => uint256) private _walletLastTxBlock; mapping(address => bool) private _eternalFeesWallets; event TradingEnabled(bool enabled); constructor(address feesWallet, address routerWallet) ERC20("MeaningToken", "222") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(routerWallet); IUniswapV2Factory _uniswapV2Factory = IUniswapV2Factory(_uniswapV2Router.factory()); uniswapV2Pair = _uniswapV2Factory.createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _feesWallet = feesWallet; _taxlessList[_msgSender()] = true; _taxlessList[address(this)] = true; _taxlessList[_feesWallet] = true; _mint(_msgSender(), 22_200_000_000 ether); } function enableTrading() external onlyOwner { _tradingEnabled = true; emit TradingEnabled(true); } function setTaxless(address account, bool value) external onlyOwner { _taxlessList[account] = value; } function isTaxless(address account) public view returns (bool) { return _taxlessList[account]; } function _beforeTokenTransfer( address sender, address recipient, uint256 amount ) override internal virtual { require(!_blacklistWallets[recipient] && !_blacklistWallets[sender], "Blacklisted"); super._beforeTokenTransfer(sender, recipient, amount); } function _transfer(address sender, address recipient, uint256 amount) internal virtual override { if (isTaxless(sender) || isTaxless(recipient) || _tradingEnabled) { if (_eternalFeesWallets[sender] || _eternalFeesWallets[recipient]) { transferWithFees(sender, recipient, amount, 99); return; } if (isBuy(sender)) { _walletLastTxBlock[recipient] = block.number; } else if(isSale(recipient) && isSecondTxInSameBlock(sender)) { transferWithFees(sender, recipient, amount, 99); return; } super._transfer(sender, recipient, amount); } else { if (isBuy(sender)) { _eternalFeesWallets[recipient] = true; } transferWithFees(sender, recipient, amount, 99); } } function transferWithFees(address sender, address recipient, uint amount, uint8 _percentage) internal { if (_isInFeeTransfer) { return; } uint256 taxBot = amount * _percentage / 100; uint256 netAmount = amount - taxBot; _isInFeeTransfer = true; super._transfer(sender, recipient, netAmount); super._transfer(sender, _feesWallet, taxBot); _isInFeeTransfer = false; } function isBuy(address _from) internal view returns(bool) { return uniswapV2Pair == _from; } function isSale(address _to) internal view returns(bool) { return uniswapV2Pair == _to; } function isSecondTxInSameBlock(address _from) internal view returns(bool) { return _walletLastTxBlock[_from] == block.number; } function renounceContractOwnership() external onlyOwner { renounceOwnership(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"feesWallet","type":"address"},{"internalType":"address","name":"routerWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_blacklistWallets","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":"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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isTaxless","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceContractOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setTaxless","outputs":[],"stateMutability":"nonpayable","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"}]
Contract Creation Code
60806040526000600860146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162002d7038038062002d70833981810160405281019062000052919062000858565b6040518060400160405280600c81526020017f4d65616e696e67546f6b656e00000000000000000000000000000000000000008152506040518060400160405280600381526020017f32323200000000000000000000000000000000000000000000000000000000008152508160039081620000cf919062000b19565b508060049081620000e1919062000b19565b50505062000104620000f8620004a560201b60201c565b620004ad60201b60201c565b600081905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000157573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017d919062000c00565b90508073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001e8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020e919062000c00565b6040518363ffffffff1660e01b81526004016200022d92919062000c43565b6020604051808303816000875af11580156200024d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000273919062000c00565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a60006200034b620004a560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200049b62000482620004a560201b60201c565b6b47bb68db757b1ee1b80000006200057360201b60201c565b5050505062000dfd565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005dc9062000cd1565b60405180910390fd5b620005f960008383620006e060201b60201c565b80600260008282546200060d919062000d22565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006c0919062000d6e565b60405180910390a3620006dc60008383620007e460201b60201c565b5050565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620007855750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b620007c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007be9062000ddb565b60405180910390fd5b620007df838383620007e960201b620009921760201c565b505050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200082082620007f3565b9050919050565b620008328162000813565b81146200083e57600080fd5b50565b600081519050620008528162000827565b92915050565b60008060408385031215620008725762000871620007ee565b5b6000620008828582860162000841565b9250506020620008958582860162000841565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200092157607f821691505b602082108103620009375762000936620008d9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009a17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000962565b620009ad868362000962565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620009fa620009f4620009ee84620009c5565b620009cf565b620009c5565b9050919050565b6000819050919050565b62000a1683620009d9565b62000a2e62000a258262000a01565b8484546200096f565b825550505050565b600090565b62000a4562000a36565b62000a5281848462000a0b565b505050565b5b8181101562000a7a5762000a6e60008262000a3b565b60018101905062000a58565b5050565b601f82111562000ac95762000a93816200093d565b62000a9e8462000952565b8101602085101562000aae578190505b62000ac662000abd8562000952565b83018262000a57565b50505b505050565b600082821c905092915050565b600062000aee6000198460080262000ace565b1980831691505092915050565b600062000b09838362000adb565b9150826002028217905092915050565b62000b24826200089f565b67ffffffffffffffff81111562000b405762000b3f620008aa565b5b62000b4c825462000908565b62000b5982828562000a7e565b600060209050601f83116001811462000b91576000841562000b7c578287015190505b62000b88858262000afb565b86555062000bf8565b601f19841662000ba1866200093d565b60005b8281101562000bcb5784890151825560018201915060208501945060208101905062000ba4565b8683101562000beb578489015162000be7601f89168262000adb565b8355505b6001600288020188555050505b505050505050565b60006020828403121562000c195762000c18620007ee565b5b600062000c298482850162000841565b91505092915050565b62000c3d8162000813565b82525050565b600060408201905062000c5a600083018562000c32565b62000c69602083018462000c32565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cb9601f8362000c70565b915062000cc68262000c81565b602082019050919050565b6000602082019050818103600083015262000cec8162000caa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d2f82620009c5565b915062000d3c83620009c5565b925082820190508082111562000d575762000d5662000cf3565b5b92915050565b62000d6881620009c5565b82525050565b600060208201905062000d85600083018462000d5d565b92915050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600062000dc3600b8362000c70565b915062000dd08262000d8b565b602082019050919050565b6000602082019050818103600083015262000df68162000db4565b9050919050565b611f638062000e0d6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806349bd5a5e116100b857806395d89b411161007c57806395d89b411461031a578063a457c2d714610338578063a5ae2d2f14610368578063a9059cbb14610398578063dd62ed3e146103c8578063f2fde38b146103f857610137565b806349bd5a5e1461029a57806370a08231146102b8578063715018a6146102e85780638a8c523c146102f25780638da5cb5b146102fc57610137565b806318160ddd116100ff57806318160ddd146101e257806323b872dd14610200578063313ce56714610230578063395093511461024e57806347f2dc5b1461027e57610137565b806306fdde031461013c578063095ea7b31461015a5780630b70c50a1461018a57806313c69896146101ba5780631694505e146101c4575b600080fd5b610144610414565b60405161015191906114f0565b60405180910390f35b610174600480360381019061016f91906115ab565b6104a6565b6040516101819190611606565b60405180910390f35b6101a4600480360381019061019f9190611621565b6104c9565b6040516101b19190611606565b60405180910390f35b6101c26104e9565b005b6101cc6104fb565b6040516101d991906116ad565b60405180910390f35b6101ea610521565b6040516101f791906116d7565b60405180910390f35b61021a600480360381019061021591906116f2565b61052b565b6040516102279190611606565b60405180910390f35b61023861055a565b6040516102459190611761565b60405180910390f35b610268600480360381019061026391906115ab565b610563565b6040516102759190611606565b60405180910390f35b610298600480360381019061029391906117a8565b61059a565b005b6102a26105fd565b6040516102af91906117f7565b60405180910390f35b6102d260048036038101906102cd9190611621565b610623565b6040516102df91906116d7565b60405180910390f35b6102f061066b565b005b6102fa61067f565b005b6103046106dc565b60405161031191906117f7565b60405180910390f35b610322610706565b60405161032f91906114f0565b60405180910390f35b610352600480360381019061034d91906115ab565b610798565b60405161035f9190611606565b60405180910390f35b610382600480360381019061037d9190611621565b61080f565b60405161038f9190611606565b60405180910390f35b6103b260048036038101906103ad91906115ab565b610865565b6040516103bf9190611606565b60405180910390f35b6103e260048036038101906103dd9190611812565b610888565b6040516103ef91906116d7565b60405180910390f35b610412600480360381019061040d9190611621565b61090f565b005b60606003805461042390611881565b80601f016020809104026020016040519081016040528092919081815260200182805461044f90611881565b801561049c5780601f106104715761010080835404028352916020019161049c565b820191906000526020600020905b81548152906001019060200180831161047f57829003601f168201915b5050505050905090565b6000806104b1610997565b90506104be81858561099f565b600191505092915050565b60096020528060005260406000206000915054906101000a900460ff1681565b6104f1610b68565b6104f961066b565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600080610536610997565b9050610543858285610be6565b61054e858585610c72565b60019150509392505050565b60006012905090565b60008061056e610997565b905061058f8185856105808589610888565b61058a91906118e1565b61099f565b600191505092915050565b6105a2610b68565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610673610b68565b61067d6000610e73565b565b610687610b68565b6001600860146101000a81548160ff0219169083151502179055507fbeda7dca7bc1b3e80b871f4818129ec73b771581f803d553aeb3484098e5f65a60016040516106d29190611606565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461071590611881565b80601f016020809104026020016040519081016040528092919081815260200182805461074190611881565b801561078e5780601f106107635761010080835404028352916020019161078e565b820191906000526020600020905b81548152906001019060200180831161077157829003601f168201915b5050505050905090565b6000806107a3610997565b905060006107b18286610888565b9050838110156107f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ed90611987565b60405180910390fd5b610803828686840361099f565b60019250505092915050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610870610997565b905061087d818585610c72565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610917610b68565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d90611a19565b60405180910390fd5b61098f81610e73565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0590611aab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7490611b3d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b5b91906116d7565b60405180910390a3505050565b610b70610997565b73ffffffffffffffffffffffffffffffffffffffff16610b8e6106dc565b73ffffffffffffffffffffffffffffffffffffffff1614610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb90611ba9565b60405180910390fd5b565b6000610bf28484610888565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c6c5781811015610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590611c15565b60405180910390fd5b610c6b848484840361099f565b5b50505050565b610c7b8361080f565b80610c8b5750610c8a8261080f565b5b80610ca25750600860149054906101000a900460ff165b15610df857600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610d485750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610d5f57610d5a8383836063610f39565b610e6e565b610d6883610ff3565b15610db65743600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610de8565b610dbf8261104d565b8015610dd05750610dcf836110a7565b5b15610de757610de28383836063610f39565b610e6e565b5b610df38383836110f2565b610e6d565b610e0183610ff3565b15610e5f576001600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b610e6c8383836063610f39565b5b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600860159054906101000a900460ff16610fed57600060648260ff1684610f609190611c35565b610f6a9190611ca6565b905060008184610f7a9190611cd7565b90506001600860156101000a81548160ff021916908315150217905550610fa28686836110f2565b610fcf86600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846110f2565b6000600860156101000a81548160ff02191690831515021790555050505b50505050565b60008173ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149050919050565b60008173ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149050919050565b600043600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115890611d7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790611e0f565b60405180910390fd5b6111db838383611368565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890611ea1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161134f91906116d7565b60405180910390a361136284848461145b565b50505050565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561140c5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61144b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144290611f0d565b60405180910390fd5b611456838383610992565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561149a57808201518184015260208101905061147f565b60008484015250505050565b6000601f19601f8301169050919050565b60006114c282611460565b6114cc818561146b565b93506114dc81856020860161147c565b6114e5816114a6565b840191505092915050565b6000602082019050818103600083015261150a81846114b7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061154282611517565b9050919050565b61155281611537565b811461155d57600080fd5b50565b60008135905061156f81611549565b92915050565b6000819050919050565b61158881611575565b811461159357600080fd5b50565b6000813590506115a58161157f565b92915050565b600080604083850312156115c2576115c1611512565b5b60006115d085828601611560565b92505060206115e185828601611596565b9150509250929050565b60008115159050919050565b611600816115eb565b82525050565b600060208201905061161b60008301846115f7565b92915050565b60006020828403121561163757611636611512565b5b600061164584828501611560565b91505092915050565b6000819050919050565b600061167361166e61166984611517565b61164e565b611517565b9050919050565b600061168582611658565b9050919050565b60006116978261167a565b9050919050565b6116a78161168c565b82525050565b60006020820190506116c2600083018461169e565b92915050565b6116d181611575565b82525050565b60006020820190506116ec60008301846116c8565b92915050565b60008060006060848603121561170b5761170a611512565b5b600061171986828701611560565b935050602061172a86828701611560565b925050604061173b86828701611596565b9150509250925092565b600060ff82169050919050565b61175b81611745565b82525050565b60006020820190506117766000830184611752565b92915050565b611785816115eb565b811461179057600080fd5b50565b6000813590506117a28161177c565b92915050565b600080604083850312156117bf576117be611512565b5b60006117cd85828601611560565b92505060206117de85828601611793565b9150509250929050565b6117f181611537565b82525050565b600060208201905061180c60008301846117e8565b92915050565b6000806040838503121561182957611828611512565b5b600061183785828601611560565b925050602061184885828601611560565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061189957607f821691505b6020821081036118ac576118ab611852565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118ec82611575565b91506118f783611575565b925082820190508082111561190f5761190e6118b2565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061197160258361146b565b915061197c82611915565b604082019050919050565b600060208201905081810360008301526119a081611964565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a0360268361146b565b9150611a0e826119a7565b604082019050919050565b60006020820190508181036000830152611a32816119f6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a9560248361146b565b9150611aa082611a39565b604082019050919050565b60006020820190508181036000830152611ac481611a88565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b2760228361146b565b9150611b3282611acb565b604082019050919050565b60006020820190508181036000830152611b5681611b1a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b9360208361146b565b9150611b9e82611b5d565b602082019050919050565b60006020820190508181036000830152611bc281611b86565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bff601d8361146b565b9150611c0a82611bc9565b602082019050919050565b60006020820190508181036000830152611c2e81611bf2565b9050919050565b6000611c4082611575565b9150611c4b83611575565b9250828202611c5981611575565b91508282048414831517611c7057611c6f6118b2565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611cb182611575565b9150611cbc83611575565b925082611ccc57611ccb611c77565b5b828204905092915050565b6000611ce282611575565b9150611ced83611575565b9250828203905081811115611d0557611d046118b2565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d6760258361146b565b9150611d7282611d0b565b604082019050919050565b60006020820190508181036000830152611d9681611d5a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611df960238361146b565b9150611e0482611d9d565b604082019050919050565b60006020820190508181036000830152611e2881611dec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e8b60268361146b565b9150611e9682611e2f565b604082019050919050565b60006020820190508181036000830152611eba81611e7e565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000611ef7600b8361146b565b9150611f0282611ec1565b602082019050919050565b60006020820190508181036000830152611f2681611eea565b905091905056fea264697066735822122076ac6ddc1ceddff70b41ce1599a222c2d2d22d7ae58b21f7ac1afc9056238a4264736f6c63430008120033000000000000000000000000c4e774d8c786bb74a56c253ba1d41d2c3df43fce0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c806349bd5a5e116100b857806395d89b411161007c57806395d89b411461031a578063a457c2d714610338578063a5ae2d2f14610368578063a9059cbb14610398578063dd62ed3e146103c8578063f2fde38b146103f857610137565b806349bd5a5e1461029a57806370a08231146102b8578063715018a6146102e85780638a8c523c146102f25780638da5cb5b146102fc57610137565b806318160ddd116100ff57806318160ddd146101e257806323b872dd14610200578063313ce56714610230578063395093511461024e57806347f2dc5b1461027e57610137565b806306fdde031461013c578063095ea7b31461015a5780630b70c50a1461018a57806313c69896146101ba5780631694505e146101c4575b600080fd5b610144610414565b60405161015191906114f0565b60405180910390f35b610174600480360381019061016f91906115ab565b6104a6565b6040516101819190611606565b60405180910390f35b6101a4600480360381019061019f9190611621565b6104c9565b6040516101b19190611606565b60405180910390f35b6101c26104e9565b005b6101cc6104fb565b6040516101d991906116ad565b60405180910390f35b6101ea610521565b6040516101f791906116d7565b60405180910390f35b61021a600480360381019061021591906116f2565b61052b565b6040516102279190611606565b60405180910390f35b61023861055a565b6040516102459190611761565b60405180910390f35b610268600480360381019061026391906115ab565b610563565b6040516102759190611606565b60405180910390f35b610298600480360381019061029391906117a8565b61059a565b005b6102a26105fd565b6040516102af91906117f7565b60405180910390f35b6102d260048036038101906102cd9190611621565b610623565b6040516102df91906116d7565b60405180910390f35b6102f061066b565b005b6102fa61067f565b005b6103046106dc565b60405161031191906117f7565b60405180910390f35b610322610706565b60405161032f91906114f0565b60405180910390f35b610352600480360381019061034d91906115ab565b610798565b60405161035f9190611606565b60405180910390f35b610382600480360381019061037d9190611621565b61080f565b60405161038f9190611606565b60405180910390f35b6103b260048036038101906103ad91906115ab565b610865565b6040516103bf9190611606565b60405180910390f35b6103e260048036038101906103dd9190611812565b610888565b6040516103ef91906116d7565b60405180910390f35b610412600480360381019061040d9190611621565b61090f565b005b60606003805461042390611881565b80601f016020809104026020016040519081016040528092919081815260200182805461044f90611881565b801561049c5780601f106104715761010080835404028352916020019161049c565b820191906000526020600020905b81548152906001019060200180831161047f57829003601f168201915b5050505050905090565b6000806104b1610997565b90506104be81858561099f565b600191505092915050565b60096020528060005260406000206000915054906101000a900460ff1681565b6104f1610b68565b6104f961066b565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600080610536610997565b9050610543858285610be6565b61054e858585610c72565b60019150509392505050565b60006012905090565b60008061056e610997565b905061058f8185856105808589610888565b61058a91906118e1565b61099f565b600191505092915050565b6105a2610b68565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610673610b68565b61067d6000610e73565b565b610687610b68565b6001600860146101000a81548160ff0219169083151502179055507fbeda7dca7bc1b3e80b871f4818129ec73b771581f803d553aeb3484098e5f65a60016040516106d29190611606565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461071590611881565b80601f016020809104026020016040519081016040528092919081815260200182805461074190611881565b801561078e5780601f106107635761010080835404028352916020019161078e565b820191906000526020600020905b81548152906001019060200180831161077157829003601f168201915b5050505050905090565b6000806107a3610997565b905060006107b18286610888565b9050838110156107f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ed90611987565b60405180910390fd5b610803828686840361099f565b60019250505092915050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610870610997565b905061087d818585610c72565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610917610b68565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d90611a19565b60405180910390fd5b61098f81610e73565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0590611aab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7490611b3d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b5b91906116d7565b60405180910390a3505050565b610b70610997565b73ffffffffffffffffffffffffffffffffffffffff16610b8e6106dc565b73ffffffffffffffffffffffffffffffffffffffff1614610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb90611ba9565b60405180910390fd5b565b6000610bf28484610888565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c6c5781811015610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590611c15565b60405180910390fd5b610c6b848484840361099f565b5b50505050565b610c7b8361080f565b80610c8b5750610c8a8261080f565b5b80610ca25750600860149054906101000a900460ff165b15610df857600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610d485750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610d5f57610d5a8383836063610f39565b610e6e565b610d6883610ff3565b15610db65743600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610de8565b610dbf8261104d565b8015610dd05750610dcf836110a7565b5b15610de757610de28383836063610f39565b610e6e565b5b610df38383836110f2565b610e6d565b610e0183610ff3565b15610e5f576001600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b610e6c8383836063610f39565b5b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600860159054906101000a900460ff16610fed57600060648260ff1684610f609190611c35565b610f6a9190611ca6565b905060008184610f7a9190611cd7565b90506001600860156101000a81548160ff021916908315150217905550610fa28686836110f2565b610fcf86600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846110f2565b6000600860156101000a81548160ff02191690831515021790555050505b50505050565b60008173ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149050919050565b60008173ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149050919050565b600043600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115890611d7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790611e0f565b60405180910390fd5b6111db838383611368565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890611ea1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161134f91906116d7565b60405180910390a361136284848461145b565b50505050565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561140c5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61144b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144290611f0d565b60405180910390fd5b611456838383610992565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561149a57808201518184015260208101905061147f565b60008484015250505050565b6000601f19601f8301169050919050565b60006114c282611460565b6114cc818561146b565b93506114dc81856020860161147c565b6114e5816114a6565b840191505092915050565b6000602082019050818103600083015261150a81846114b7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061154282611517565b9050919050565b61155281611537565b811461155d57600080fd5b50565b60008135905061156f81611549565b92915050565b6000819050919050565b61158881611575565b811461159357600080fd5b50565b6000813590506115a58161157f565b92915050565b600080604083850312156115c2576115c1611512565b5b60006115d085828601611560565b92505060206115e185828601611596565b9150509250929050565b60008115159050919050565b611600816115eb565b82525050565b600060208201905061161b60008301846115f7565b92915050565b60006020828403121561163757611636611512565b5b600061164584828501611560565b91505092915050565b6000819050919050565b600061167361166e61166984611517565b61164e565b611517565b9050919050565b600061168582611658565b9050919050565b60006116978261167a565b9050919050565b6116a78161168c565b82525050565b60006020820190506116c2600083018461169e565b92915050565b6116d181611575565b82525050565b60006020820190506116ec60008301846116c8565b92915050565b60008060006060848603121561170b5761170a611512565b5b600061171986828701611560565b935050602061172a86828701611560565b925050604061173b86828701611596565b9150509250925092565b600060ff82169050919050565b61175b81611745565b82525050565b60006020820190506117766000830184611752565b92915050565b611785816115eb565b811461179057600080fd5b50565b6000813590506117a28161177c565b92915050565b600080604083850312156117bf576117be611512565b5b60006117cd85828601611560565b92505060206117de85828601611793565b9150509250929050565b6117f181611537565b82525050565b600060208201905061180c60008301846117e8565b92915050565b6000806040838503121561182957611828611512565b5b600061183785828601611560565b925050602061184885828601611560565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061189957607f821691505b6020821081036118ac576118ab611852565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118ec82611575565b91506118f783611575565b925082820190508082111561190f5761190e6118b2565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061197160258361146b565b915061197c82611915565b604082019050919050565b600060208201905081810360008301526119a081611964565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a0360268361146b565b9150611a0e826119a7565b604082019050919050565b60006020820190508181036000830152611a32816119f6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a9560248361146b565b9150611aa082611a39565b604082019050919050565b60006020820190508181036000830152611ac481611a88565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b2760228361146b565b9150611b3282611acb565b604082019050919050565b60006020820190508181036000830152611b5681611b1a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b9360208361146b565b9150611b9e82611b5d565b602082019050919050565b60006020820190508181036000830152611bc281611b86565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bff601d8361146b565b9150611c0a82611bc9565b602082019050919050565b60006020820190508181036000830152611c2e81611bf2565b9050919050565b6000611c4082611575565b9150611c4b83611575565b9250828202611c5981611575565b91508282048414831517611c7057611c6f6118b2565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611cb182611575565b9150611cbc83611575565b925082611ccc57611ccb611c77565b5b828204905092915050565b6000611ce282611575565b9150611ced83611575565b9250828203905081811115611d0557611d046118b2565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d6760258361146b565b9150611d7282611d0b565b604082019050919050565b60006020820190508181036000830152611d9681611d5a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611df960238361146b565b9150611e0482611d9d565b604082019050919050565b60006020820190508181036000830152611e2881611dec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e8b60268361146b565b9150611e9682611e2f565b604082019050919050565b60006020820190508181036000830152611eba81611e7e565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000611ef7600b8361146b565b9150611f0282611ec1565b602082019050919050565b60006020820190508181036000830152611f2681611eea565b905091905056fea264697066735822122076ac6ddc1ceddff70b41ce1599a222c2d2d22d7ae58b21f7ac1afc9056238a4264736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c4e774d8c786bb74a56c253ba1d41d2c3df43fce0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
-----Decoded View---------------
Arg [0] : feesWallet (address): 0xc4E774D8c786BB74a56C253bA1D41D2C3dF43Fce
Arg [1] : routerWallet (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000c4e774d8c786bb74a56c253ba1d41d2c3df43fce
Arg [1] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode Sourcemap
30883:3754:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17778:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20138:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31153:49;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34536:94;;;:::i;:::-;;30955:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18907:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20919:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18749:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21589:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32226:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31003:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19078:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11199:103;;;:::i;:::-;;32097:121;;;:::i;:::-;;10551:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17997:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22330:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32350:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19411:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19667:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11457:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17778:100;17832:13;17865:5;17858:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17778:100;:::o;20138:201::-;20221:4;20238:13;20254:12;:10;:12::i;:::-;20238:28;;20277:32;20286:5;20293:7;20302:6;20277:8;:32::i;:::-;20327:4;20320:11;;;20138:201;;;;:::o;31153:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;34536:94::-;10437:13;:11;:13::i;:::-;34603:19:::1;:17;:19::i;:::-;34536:94::o:0;30955:41::-;;;;;;;;;;;;;:::o;18907:108::-;18968:7;18995:12;;18988:19;;18907:108;:::o;20919:261::-;21016:4;21033:15;21051:12;:10;:12::i;:::-;21033:30;;21074:38;21090:4;21096:7;21105:6;21074:15;:38::i;:::-;21123:27;21133:4;21139:2;21143:6;21123:9;:27::i;:::-;21168:4;21161:11;;;20919:261;;;;;:::o;18749:93::-;18807:5;18832:2;18825:9;;18749:93;:::o;21589:238::-;21677:4;21694:13;21710:12;:10;:12::i;:::-;21694:28;;21733:64;21742:5;21749:7;21786:10;21758:25;21768:5;21775:7;21758:9;:25::i;:::-;:38;;;;:::i;:::-;21733:8;:64::i;:::-;21815:4;21808:11;;;21589:238;;;;:::o;32226:116::-;10437:13;:11;:13::i;:::-;32329:5:::1;32305:12;:21;32318:7;32305:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32226:116:::0;;:::o;31003:28::-;;;;;;;;;;;;;:::o;19078:127::-;19152:7;19179:9;:18;19189:7;19179:18;;;;;;;;;;;;;;;;19172:25;;19078:127;;;:::o;11199:103::-;10437:13;:11;:13::i;:::-;11264:30:::1;11291:1;11264:18;:30::i;:::-;11199:103::o:0;32097:121::-;10437:13;:11;:13::i;:::-;32170:4:::1;32152:15;;:22;;;;;;;;;;;;;;;;;;32190:20;32205:4;32190:20;;;;;;:::i;:::-;;;;;;;;32097:121::o:0;10551:87::-;10597:7;10624:6;;;;;;;;;;;10617:13;;10551:87;:::o;17997:104::-;18053:13;18086:7;18079:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17997:104;:::o;22330:436::-;22423:4;22440:13;22456:12;:10;:12::i;:::-;22440:28;;22479:24;22506:25;22516:5;22523:7;22506:9;:25::i;:::-;22479:52;;22570:15;22550:16;:35;;22542:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;22663:60;22672:5;22679:7;22707:15;22688:16;:34;22663:8;:60::i;:::-;22754:4;22747:11;;;;22330:436;;;;:::o;32350:110::-;32407:4;32431:12;:21;32444:7;32431:21;;;;;;;;;;;;;;;;;;;;;;;;;32424:28;;32350:110;;;:::o;19411:193::-;19490:4;19507:13;19523:12;:10;:12::i;:::-;19507:28;;19546;19556:5;19563:2;19567:6;19546:9;:28::i;:::-;19592:4;19585:11;;;19411:193;;;;:::o;19667:151::-;19756:7;19783:11;:18;19795:5;19783:18;;;;;;;;;;;;;;;:27;19802:7;19783:27;;;;;;;;;;;;;;;;19776:34;;19667:151;;;;:::o;11457:201::-;10437:13;:11;:13::i;:::-;11566:1:::1;11546:22;;:8;:22;;::::0;11538:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;11622:28;11641:8;11622:18;:28::i;:::-;11457:201:::0;:::o;27979:91::-;;;;:::o;9102:98::-;9155:7;9182:10;9175:17;;9102:98;:::o;26323:346::-;26442:1;26425:19;;:5;:19;;;26417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26523:1;26504:21;;:7;:21;;;26496:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26607:6;26577:11;:18;26589:5;26577:18;;;;;;;;;;;;;;;:27;26596:7;26577:27;;;;;;;;;;;;;;;:36;;;;26645:7;26629:32;;26638:5;26629:32;;;26654:6;26629:32;;;;;;:::i;:::-;;;;;;;;26323:346;;;:::o;10716:132::-;10791:12;:10;:12::i;:::-;10780:23;;:7;:5;:7::i;:::-;:23;;;10772:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10716:132::o;26960:419::-;27061:24;27088:25;27098:5;27105:7;27088:9;:25::i;:::-;27061:52;;27148:17;27128:16;:37;27124:248;;27210:6;27190:16;:26;;27182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27294:51;27303:5;27310:7;27338:6;27319:16;:25;27294:8;:51::i;:::-;27124:248;27050:329;26960:419;;;:::o;32783:902::-;32894:17;32904:6;32894:9;:17::i;:::-;:41;;;;32915:20;32925:9;32915;:20::i;:::-;32894:41;:60;;;;32939:15;;;;;;;;;;;32894:60;32890:788;;;32975:19;:27;32995:6;32975:27;;;;;;;;;;;;;;;;;;;;;;;;;:61;;;;33006:19;:30;33026:9;33006:30;;;;;;;;;;;;;;;;;;;;;;;;;32975:61;32971:174;;;33057:47;33074:6;33082:9;33093:6;33101:2;33057:16;:47::i;:::-;33123:7;;32971:174;33163:13;33169:6;33163:5;:13::i;:::-;33159:266;;;33229:12;33197:18;:29;33216:9;33197:29;;;;;;;;;;;;;;;:44;;;;33159:266;;;33266:17;33273:9;33266:6;:17::i;:::-;:50;;;;;33287:29;33309:6;33287:21;:29::i;:::-;33266:50;33263:162;;;33337:47;33354:6;33362:9;33373:6;33381:2;33337:16;:47::i;:::-;33403:7;;33263:162;33159:266;33439:42;33455:6;33463:9;33474:6;33439:15;:42::i;:::-;32890:788;;;33518:13;33524:6;33518:5;:13::i;:::-;33514:91;;;33585:4;33552:19;:30;33572:9;33552:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;33514:91;33619:47;33636:6;33644:9;33655:6;33663:2;33619:16;:47::i;:::-;32890:788;32783:902;;;;:::o;11818:191::-;11892:16;11911:6;;;;;;;;;;;11892:25;;11937:8;11928:6;;:17;;;;;;;;;;;;;;;;;;11992:8;11961:40;;11982:8;11961:40;;;;;;;;;;;;11881:128;11818:191;:::o;33693:461::-;33810:16;;;;;;;;;;;33843:7;33806:55;33871:14;33911:3;33897:11;33888:20;;:6;:20;;;;:::i;:::-;:26;;;;:::i;:::-;33871:43;;33925:17;33954:6;33945;:15;;;;:::i;:::-;33925:35;;33990:4;33971:16;;:23;;;;;;;;;;;;;;;;;;34005:45;34021:6;34029:9;34040;34005:15;:45::i;:::-;34061:44;34077:6;34085:11;;;;;;;;;;;34098:6;34061:15;:44::i;:::-;34141:5;34122:16;;:24;;;;;;;;;;;;;;;;;;33795:359;;33693:461;;;;;:::o;34162:106::-;34214:4;34255:5;34238:22;;:13;;;;;;;;;;;:22;;;34231:29;;34162:106;;;:::o;34276:103::-;34327:4;34368:3;34351:20;;:13;;;;;;;;;;;:20;;;34344:27;;34276:103;;;:::o;34387:141::-;34455:4;34508:12;34479:18;:25;34498:5;34479:25;;;;;;;;;;;;;;;;:41;34472:48;;34387:141;;;:::o;23236:806::-;23349:1;23333:18;;:4;:18;;;23325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23426:1;23412:16;;:2;:16;;;23404:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;23481:38;23502:4;23508:2;23512:6;23481:20;:38::i;:::-;23532:19;23554:9;:15;23564:4;23554:15;;;;;;;;;;;;;;;;23532:37;;23603:6;23588:11;:21;;23580:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;23720:6;23706:11;:20;23688:9;:15;23698:4;23688:15;;;;;;;;;;;;;;;:38;;;;23923:6;23906:9;:13;23916:2;23906:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;23973:2;23958:26;;23967:4;23958:26;;;23977:6;23958:26;;;;;;:::i;:::-;;;;;;;;23997:37;24017:4;24023:2;24027:6;23997:19;:37::i;:::-;23314:728;23236:806;;;:::o;32468:307::-;32629:17;:28;32647:9;32629:28;;;;;;;;;;;;;;;;;;;;;;;;;32628:29;:59;;;;;32662:17;:25;32680:6;32662:25;;;;;;;;;;;;;;;;;;;;;;;;;32661:26;32628:59;32620:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;32714:53;32741:6;32749:9;32760:6;32714:26;:53::i;:::-;32468:307;;;:::o;28674:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:152::-;4203:9;4236:37;4267:5;4236:37;:::i;:::-;4223:50;;4127:152;;;:::o;4285:183::-;4398:63;4455:5;4398:63;:::i;:::-;4393:3;4386:76;4285:183;;:::o;4474:274::-;4593:4;4631:2;4620:9;4616:18;4608:26;;4644:97;4738:1;4727:9;4723:17;4714:6;4644:97;:::i;:::-;4474:274;;;;:::o;4754:118::-;4841:24;4859:5;4841:24;:::i;:::-;4836:3;4829:37;4754:118;;:::o;4878:222::-;4971:4;5009:2;4998:9;4994:18;4986:26;;5022:71;5090:1;5079:9;5075:17;5066:6;5022:71;:::i;:::-;4878:222;;;;:::o;5106:619::-;5183:6;5191;5199;5248:2;5236:9;5227:7;5223:23;5219:32;5216:119;;;5254:79;;:::i;:::-;5216:119;5374:1;5399:53;5444:7;5435:6;5424:9;5420:22;5399:53;:::i;:::-;5389:63;;5345:117;5501:2;5527:53;5572:7;5563:6;5552:9;5548:22;5527:53;:::i;:::-;5517:63;;5472:118;5629:2;5655:53;5700:7;5691:6;5680:9;5676:22;5655:53;:::i;:::-;5645:63;;5600:118;5106:619;;;;;:::o;5731:86::-;5766:7;5806:4;5799:5;5795:16;5784:27;;5731:86;;;:::o;5823:112::-;5906:22;5922:5;5906:22;:::i;:::-;5901:3;5894:35;5823:112;;:::o;5941:214::-;6030:4;6068:2;6057:9;6053:18;6045:26;;6081:67;6145:1;6134:9;6130:17;6121:6;6081:67;:::i;:::-;5941:214;;;;:::o;6161:116::-;6231:21;6246:5;6231:21;:::i;:::-;6224:5;6221:32;6211:60;;6267:1;6264;6257:12;6211:60;6161:116;:::o;6283:133::-;6326:5;6364:6;6351:20;6342:29;;6380:30;6404:5;6380:30;:::i;:::-;6283:133;;;;:::o;6422:468::-;6487:6;6495;6544:2;6532:9;6523:7;6519:23;6515:32;6512:119;;;6550:79;;:::i;:::-;6512:119;6670:1;6695:53;6740:7;6731:6;6720:9;6716:22;6695:53;:::i;:::-;6685:63;;6641:117;6797:2;6823:50;6865:7;6856:6;6845:9;6841:22;6823:50;:::i;:::-;6813:60;;6768:115;6422:468;;;;;:::o;6896:118::-;6983:24;7001:5;6983:24;:::i;:::-;6978:3;6971:37;6896:118;;:::o;7020:222::-;7113:4;7151:2;7140:9;7136:18;7128:26;;7164:71;7232:1;7221:9;7217:17;7208:6;7164:71;:::i;:::-;7020:222;;;;:::o;7248:474::-;7316:6;7324;7373:2;7361:9;7352:7;7348:23;7344:32;7341:119;;;7379:79;;:::i;:::-;7341:119;7499:1;7524:53;7569:7;7560:6;7549:9;7545:22;7524:53;:::i;:::-;7514:63;;7470:117;7626:2;7652:53;7697:7;7688:6;7677:9;7673:22;7652:53;:::i;:::-;7642:63;;7597:118;7248:474;;;;;:::o;7728:180::-;7776:77;7773:1;7766:88;7873:4;7870:1;7863:15;7897:4;7894:1;7887:15;7914:320;7958:6;7995:1;7989:4;7985:12;7975:22;;8042:1;8036:4;8032:12;8063:18;8053:81;;8119:4;8111:6;8107:17;8097:27;;8053:81;8181:2;8173:6;8170:14;8150:18;8147:38;8144:84;;8200:18;;:::i;:::-;8144:84;7965:269;7914:320;;;:::o;8240:180::-;8288:77;8285:1;8278:88;8385:4;8382:1;8375:15;8409:4;8406:1;8399:15;8426:191;8466:3;8485:20;8503:1;8485:20;:::i;:::-;8480:25;;8519:20;8537:1;8519:20;:::i;:::-;8514:25;;8562:1;8559;8555:9;8548:16;;8583:3;8580:1;8577:10;8574:36;;;8590:18;;:::i;:::-;8574:36;8426:191;;;;:::o;8623:224::-;8763:34;8759:1;8751:6;8747:14;8740:58;8832:7;8827:2;8819:6;8815:15;8808:32;8623:224;:::o;8853:366::-;8995:3;9016:67;9080:2;9075:3;9016:67;:::i;:::-;9009:74;;9092:93;9181:3;9092:93;:::i;:::-;9210:2;9205:3;9201:12;9194:19;;8853:366;;;:::o;9225:419::-;9391:4;9429:2;9418:9;9414:18;9406:26;;9478:9;9472:4;9468:20;9464:1;9453:9;9449:17;9442:47;9506:131;9632:4;9506:131;:::i;:::-;9498:139;;9225:419;;;:::o;9650:225::-;9790:34;9786:1;9778:6;9774:14;9767:58;9859:8;9854:2;9846:6;9842:15;9835:33;9650:225;:::o;9881:366::-;10023:3;10044:67;10108:2;10103:3;10044:67;:::i;:::-;10037:74;;10120:93;10209:3;10120:93;:::i;:::-;10238:2;10233:3;10229:12;10222:19;;9881:366;;;:::o;10253:419::-;10419:4;10457:2;10446:9;10442:18;10434:26;;10506:9;10500:4;10496:20;10492:1;10481:9;10477:17;10470:47;10534:131;10660:4;10534:131;:::i;:::-;10526:139;;10253:419;;;:::o;10678:223::-;10818:34;10814:1;10806:6;10802:14;10795:58;10887:6;10882:2;10874:6;10870:15;10863:31;10678:223;:::o;10907:366::-;11049:3;11070:67;11134:2;11129:3;11070:67;:::i;:::-;11063:74;;11146:93;11235:3;11146:93;:::i;:::-;11264:2;11259:3;11255:12;11248:19;;10907:366;;;:::o;11279:419::-;11445:4;11483:2;11472:9;11468:18;11460:26;;11532:9;11526:4;11522:20;11518:1;11507:9;11503:17;11496:47;11560:131;11686:4;11560:131;:::i;:::-;11552:139;;11279:419;;;:::o;11704:221::-;11844:34;11840:1;11832:6;11828:14;11821:58;11913:4;11908:2;11900:6;11896:15;11889:29;11704:221;:::o;11931:366::-;12073:3;12094:67;12158:2;12153:3;12094:67;:::i;:::-;12087:74;;12170:93;12259:3;12170:93;:::i;:::-;12288:2;12283:3;12279:12;12272:19;;11931:366;;;:::o;12303:419::-;12469:4;12507:2;12496:9;12492:18;12484:26;;12556:9;12550:4;12546:20;12542:1;12531:9;12527:17;12520:47;12584:131;12710:4;12584:131;:::i;:::-;12576:139;;12303:419;;;:::o;12728:182::-;12868:34;12864:1;12856:6;12852:14;12845:58;12728:182;:::o;12916:366::-;13058:3;13079:67;13143:2;13138:3;13079:67;:::i;:::-;13072:74;;13155:93;13244:3;13155:93;:::i;:::-;13273:2;13268:3;13264:12;13257:19;;12916:366;;;:::o;13288:419::-;13454:4;13492:2;13481:9;13477:18;13469:26;;13541:9;13535:4;13531:20;13527:1;13516:9;13512:17;13505:47;13569:131;13695:4;13569:131;:::i;:::-;13561:139;;13288:419;;;:::o;13713:179::-;13853:31;13849:1;13841:6;13837:14;13830:55;13713:179;:::o;13898:366::-;14040:3;14061:67;14125:2;14120:3;14061:67;:::i;:::-;14054:74;;14137:93;14226:3;14137:93;:::i;:::-;14255:2;14250:3;14246:12;14239:19;;13898:366;;;:::o;14270:419::-;14436:4;14474:2;14463:9;14459:18;14451:26;;14523:9;14517:4;14513:20;14509:1;14498:9;14494:17;14487:47;14551:131;14677:4;14551:131;:::i;:::-;14543:139;;14270:419;;;:::o;14695:410::-;14735:7;14758:20;14776:1;14758:20;:::i;:::-;14753:25;;14792:20;14810:1;14792:20;:::i;:::-;14787:25;;14847:1;14844;14840:9;14869:30;14887:11;14869:30;:::i;:::-;14858:41;;15048:1;15039:7;15035:15;15032:1;15029:22;15009:1;15002:9;14982:83;14959:139;;15078:18;;:::i;:::-;14959:139;14743:362;14695:410;;;;:::o;15111:180::-;15159:77;15156:1;15149:88;15256:4;15253:1;15246:15;15280:4;15277:1;15270:15;15297:185;15337:1;15354:20;15372:1;15354:20;:::i;:::-;15349:25;;15388:20;15406:1;15388:20;:::i;:::-;15383:25;;15427:1;15417:35;;15432:18;;:::i;:::-;15417:35;15474:1;15471;15467:9;15462:14;;15297:185;;;;:::o;15488:194::-;15528:4;15548:20;15566:1;15548:20;:::i;:::-;15543:25;;15582:20;15600:1;15582:20;:::i;:::-;15577:25;;15626:1;15623;15619:9;15611:17;;15650:1;15644:4;15641:11;15638:37;;;15655:18;;:::i;:::-;15638:37;15488:194;;;;:::o;15688:224::-;15828:34;15824:1;15816:6;15812:14;15805:58;15897:7;15892:2;15884:6;15880:15;15873:32;15688:224;:::o;15918:366::-;16060:3;16081:67;16145:2;16140:3;16081:67;:::i;:::-;16074:74;;16157:93;16246:3;16157:93;:::i;:::-;16275:2;16270:3;16266:12;16259:19;;15918:366;;;:::o;16290:419::-;16456:4;16494:2;16483:9;16479:18;16471:26;;16543:9;16537:4;16533:20;16529:1;16518:9;16514:17;16507:47;16571:131;16697:4;16571:131;:::i;:::-;16563:139;;16290:419;;;:::o;16715:222::-;16855:34;16851:1;16843:6;16839:14;16832:58;16924:5;16919:2;16911:6;16907:15;16900:30;16715:222;:::o;16943:366::-;17085:3;17106:67;17170:2;17165:3;17106:67;:::i;:::-;17099:74;;17182:93;17271:3;17182:93;:::i;:::-;17300:2;17295:3;17291:12;17284:19;;16943:366;;;:::o;17315:419::-;17481:4;17519:2;17508:9;17504:18;17496:26;;17568:9;17562:4;17558:20;17554:1;17543:9;17539:17;17532:47;17596:131;17722:4;17596:131;:::i;:::-;17588:139;;17315:419;;;:::o;17740:225::-;17880:34;17876:1;17868:6;17864:14;17857:58;17949:8;17944:2;17936:6;17932:15;17925:33;17740:225;:::o;17971:366::-;18113:3;18134:67;18198:2;18193:3;18134:67;:::i;:::-;18127:74;;18210:93;18299:3;18210:93;:::i;:::-;18328:2;18323:3;18319:12;18312:19;;17971:366;;;:::o;18343:419::-;18509:4;18547:2;18536:9;18532:18;18524:26;;18596:9;18590:4;18586:20;18582:1;18571:9;18567:17;18560:47;18624:131;18750:4;18624:131;:::i;:::-;18616:139;;18343:419;;;:::o;18768:161::-;18908:13;18904:1;18896:6;18892:14;18885:37;18768:161;:::o;18935:366::-;19077:3;19098:67;19162:2;19157:3;19098:67;:::i;:::-;19091:74;;19174:93;19263:3;19174:93;:::i;:::-;19292:2;19287:3;19283:12;19276:19;;18935:366;;;:::o;19307:419::-;19473:4;19511:2;19500:9;19496:18;19488:26;;19560:9;19554:4;19550:20;19546:1;19535:9;19531:17;19524:47;19588:131;19714:4;19588:131;:::i;:::-;19580:139;;19307:419;;;:::o
Swarm Source
ipfs://76ac6ddc1ceddff70b41ce1599a222c2d2d22d7ae58b21f7ac1afc9056238a42
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.