More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 187 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21245929 | 4 days ago | IN | 0 ETH | 0.00080436 | ||||
Approve | 21241589 | 5 days ago | IN | 0 ETH | 0.00038156 | ||||
Approve | 21241577 | 5 days ago | IN | 0 ETH | 0.00038164 | ||||
Approve | 21155171 | 17 days ago | IN | 0 ETH | 0.00075238 | ||||
Approve | 20825487 | 63 days ago | IN | 0 ETH | 0.00057644 | ||||
Transfer | 20719936 | 78 days ago | IN | 0 ETH | 0.00070916 | ||||
Transfer | 20719909 | 78 days ago | IN | 0 ETH | 0.00067044 | ||||
Approve | 20465749 | 113 days ago | IN | 0 ETH | 0.00009762 | ||||
Approve | 20376463 | 126 days ago | IN | 0 ETH | 0.00018667 | ||||
Approve | 20340315 | 131 days ago | IN | 0 ETH | 0.00030447 | ||||
Approve | 20278859 | 139 days ago | IN | 0 ETH | 0.00017768 | ||||
Approve | 19867775 | 197 days ago | IN | 0 ETH | 0.00017404 | ||||
Approve | 19629829 | 230 days ago | IN | 0 ETH | 0.00035377 | ||||
Approve | 19629828 | 230 days ago | IN | 0 ETH | 0.00061199 | ||||
Approve | 19622806 | 231 days ago | IN | 0 ETH | 0.00060827 | ||||
Approve | 19618423 | 232 days ago | IN | 0 ETH | 0.0017548 | ||||
Approve | 19603058 | 234 days ago | IN | 0 ETH | 0.00065776 | ||||
Approve | 19581137 | 237 days ago | IN | 0 ETH | 0.00094638 | ||||
Approve | 19565646 | 239 days ago | IN | 0 ETH | 0.00085004 | ||||
Approve | 19561910 | 240 days ago | IN | 0 ETH | 0.00280091 | ||||
Approve | 19550602 | 241 days ago | IN | 0 ETH | 0.00099778 | ||||
Transfer | 19536193 | 243 days ago | IN | 0 ETH | 0.00141122 | ||||
Approve | 19520338 | 246 days ago | IN | 0 ETH | 0.00193771 | ||||
Approve | 19503853 | 248 days ago | IN | 0 ETH | 0.00065763 | ||||
Approve | 19499755 | 248 days ago | IN | 0 ETH | 0.00105888 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
21245932 | 4 days ago | 0.00641696 ETH | ||||
21245932 | 4 days ago | 0.00962545 ETH | ||||
21245932 | 4 days ago | 0.01604241 ETH | ||||
21241591 | 5 days ago | 0.00646592 ETH | ||||
21241591 | 5 days ago | 0.00969889 ETH | ||||
21241591 | 5 days ago | 0.01616481 ETH | ||||
21241584 | 5 days ago | 0.00646592 ETH | ||||
21241584 | 5 days ago | 0.00969889 ETH | ||||
21241584 | 5 days ago | 0.01616481 ETH | ||||
21241582 | 5 days ago | 0.00646592 ETH | ||||
21241582 | 5 days ago | 0.00969889 ETH | ||||
21241582 | 5 days ago | 0.01616481 ETH | ||||
21155174 | 17 days ago | 0.00650026 ETH | ||||
21155174 | 17 days ago | 0.00975039 ETH | ||||
21155174 | 17 days ago | 0.01625066 ETH | ||||
20825489 | 63 days ago | 0.00654749 ETH | ||||
20825489 | 63 days ago | 0.00982124 ETH | ||||
20825489 | 63 days ago | 0.01636874 ETH | ||||
20720070 | 78 days ago | 0.00660254 ETH | ||||
20720070 | 78 days ago | 0.00990381 ETH | ||||
20720070 | 78 days ago | 0.01650636 ETH | ||||
20665660 | 85 days ago | 0.00663141 ETH | ||||
20665660 | 85 days ago | 0.00994712 ETH | ||||
20665660 | 85 days ago | 0.01657853 ETH | ||||
20503033 | 108 days ago | 0.00665936 ETH |
Loading...
Loading
Contract Name:
TAOVM
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// Website : https://taovm.com // Twitter : https://twitter.com/Tao_VM // Telegram : https://t.me/Tao_VM // Docs : https://docs.taovm.com // SPDX-License-Identifier: MIT pragma solidity 0.8.20; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; contract TAOVM is Ownable, ERC20 { error MaxTxAmountExceeded(); error MaxWalletAmountExceeded(); error NotAuthorized(); event OpenTrading(); event DisableLimits(); event UpdateMarketingWL(address _marketingWallet); event UpdateTreasuryWL(address _treasury); event SwapBack(uint256 amount); event UpdateSwapTokenAt(uint256 amount); IUniswapV2Router02 immutable router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 _totalSupply = 100_000_000 * 10 ** 18; address public pair; uint256 TAX = 5; uint256 private _initialTax = 30; uint256 private _reduceTaxAt = 50; uint256 private _buyCount = 0; uint256 private _sellCount = 0; uint256 private _maxAmount = _totalSupply / 100; uint256 private _maxWallet = _maxAmount; bool private _tradingEnable; address public marketingWallet; address public infrastructure; bool public limit = true; uint256 public swapTokenAt = _totalSupply / 2000; mapping(address => bool) private _isExcludedFromFees; bool private _swaping = false; modifier onSwap() { _swaping = true; _; _swaping = false; } constructor() ERC20("TAOVM", "TAOVM") { marketingWallet = _msgSender(); infrastructure = 0x7621ceB59BF89BCA14282d8e0DD69795d99DFe64; pair = IUniswapV2Factory(router.factory()).createPair( address(this), router.WETH() ); _isExcludedFromFees[_msgSender()] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[address(router)] = true; _mint(_msgSender(), _totalSupply); _approve(_msgSender(), address(router), type(uint256).max); } receive() external payable {} function setSwapTokenAt(uint256 value) external onlyOwner { require( value <= _totalSupply / 50, "Value must be less than or equal to SUPPLY / 50" ); swapTokenAt = value; emit UpdateSwapTokenAt(value); } function openTrading() external onlyOwner { _tradingEnable = true; emit OpenTrading(); } function getIsExcludedFromFees( address _address ) external view returns (bool) { return _isExcludedFromFees[_address]; } function excludedFromFees( address _address, bool _value ) external onlyOwner { _isExcludedFromFees[_address] = _value; } function disableLimits() external onlyOwner { require(limit, "Limits already removed"); limit = false; _maxWallet = _totalSupply; _maxAmount = _totalSupply; emit DisableLimits(); } function _transfer( address from, address to, uint256 amount ) internal override { if ( _isExcludedFromFees[from] || _isExcludedFromFees[to] || (to != pair && from != pair) || _swaping ) { super._transfer(from, to, amount); return; } require(_tradingEnable, "Trading is not open"); if (limit) { if ((from == pair || to == pair) && amount > _maxAmount) { revert MaxTxAmountExceeded(); } if (to != pair && balanceOf(to) + amount > _maxWallet) { revert MaxWalletAmountExceeded(); } } uint256 _totalFees = (amount * TAX) / 100; if (to == pair) { _sellCount += 1; _totalFees = (amount * (_sellCount > (_reduceTaxAt / 2) ? TAX : _initialTax)) / 100; if (balanceOf(address(this)) >= swapTokenAt) { swapBack(); } } if (from == pair) { _buyCount += 1; _totalFees = (amount * (_buyCount > _reduceTaxAt ? TAX : _initialTax)) / 100; } if (_totalFees > 0) { super._transfer(from, address(this), _totalFees); amount = amount - _totalFees; } super._transfer(from, to, amount); } function swapBack() public onSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), swapTokenAt); router.swapExactTokensForETHSupportingFeeOnTransferTokens( swapTokenAt, 0, path, address(this), block.timestamp ); uint256 balance = address(this).balance; if (balance > 0) { uint256 marketingAmount = (balance / 5) * 3; uint256 infrastructureAmount = balance - marketingAmount; (bool sent, ) = payable(marketingWallet).call{ value: marketingAmount }(""); require(sent, "Failed to send Ether to marketing wallet"); (sent, ) = payable(infrastructure).call{ value: infrastructureAmount }(""); require(sent, "Failed to send Ether to treasury wallet"); } emit SwapBack(swapTokenAt); } function setMarketingWL(address _marketingWallet) external { if (_msgSender() != owner() && _msgSender() != marketingWallet) { revert NotAuthorized(); } marketingWallet = _marketingWallet; emit UpdateMarketingWL(_marketingWallet); } function setInfrastructureWL(address _newAddress) external { if (_msgSender() != owner() && _msgSender() != marketingWallet) { revert NotAuthorized(); } infrastructure = _newAddress; emit UpdateTreasuryWL(_newAddress); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * 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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
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; }
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); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MaxTxAmountExceeded","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceeded","type":"error"},{"inputs":[],"name":"NotAuthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"DisableLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"OpenTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapBack","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"UpdateMarketingWL","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UpdateSwapTokenAt","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_treasury","type":"address"}],"name":"UpdateTreasuryWL","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"disableLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"excludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getIsExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"infrastructure","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setInfrastructureWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSwapTokenAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokenAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506a52b7d2dcc80cd2e40000006006556005600855601e6009556032600a555f600b555f600c556064600654620000829190620009bb565b600d55600d54600e556001601060146101000a81548160ff0219169083151502179055506107d0600654620000b89190620009bb565b6011555f60135f6101000a81548160ff021916908315150217905550348015620000e0575f80fd5b506040518060400160405280600581526020017f54414f564d0000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f54414f564d0000000000000000000000000000000000000000000000000000008152506200016d620001616200055560201b60201c565b6200055c60201b60201c565b81600490816200017e919062000c4d565b50806005908162000190919062000c4d565b505050620001a36200055560201b60201c565b600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737621ceb59bf89bca14282d8e0dd69795d99dfe6460105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000283573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002a9919062000d96565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000311573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000337919062000d96565b6040518363ffffffff1660e01b81526004016200035692919062000dd7565b6020604051808303815f875af115801562000373573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000399919062000d96565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160125f620003ed6200055560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160125f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160125f60805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506200050b620004fc6200055560201b60201c565b6006546200061d60201b60201c565b6200054f6200051f6200055560201b60201c565b6080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200078360201b60201c565b6200100e565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200068e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006859062000e60565b60405180910390fd5b620006a15f83836200094e60201b60201c565b8060035f828254620006b4919062000e80565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000764919062000ecb565b60405180910390a36200077f5f83836200095360201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620007f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007eb9062000f5a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000865576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200085c9062000fee565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000941919062000ecb565b60405180910390a3505050565b505050565b505050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620009c78262000958565b9150620009d48362000958565b925082620009e757620009e662000961565b5b828204905092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000a6e57607f821691505b60208210810362000a845762000a8362000a29565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000ae87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000aab565b62000af4868362000aab565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000b3562000b2f62000b298462000958565b62000b0c565b62000958565b9050919050565b5f819050919050565b62000b508362000b15565b62000b6862000b5f8262000b3c565b84845462000ab7565b825550505050565b5f90565b62000b7e62000b70565b62000b8b81848462000b45565b505050565b5b8181101562000bb25762000ba65f8262000b74565b60018101905062000b91565b5050565b601f82111562000c015762000bcb8162000a8a565b62000bd68462000a9c565b8101602085101562000be6578190505b62000bfe62000bf58562000a9c565b83018262000b90565b50505b505050565b5f82821c905092915050565b5f62000c235f198460080262000c06565b1980831691505092915050565b5f62000c3d838362000c12565b9150826002028217905092915050565b62000c5882620009f2565b67ffffffffffffffff81111562000c745762000c73620009fc565b5b62000c80825462000a56565b62000c8d82828562000bb6565b5f60209050601f83116001811462000cc3575f841562000cae578287015190505b62000cba858262000c30565b86555062000d29565b601f19841662000cd38662000a8a565b5f5b8281101562000cfc5784890151825560018201915060208501945060208101905062000cd5565b8683101562000d1c578489015162000d18601f89168262000c12565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000d608262000d35565b9050919050565b62000d728162000d54565b811462000d7d575f80fd5b50565b5f8151905062000d908162000d67565b92915050565b5f6020828403121562000dae5762000dad62000d31565b5b5f62000dbd8482850162000d80565b91505092915050565b62000dd18162000d54565b82525050565b5f60408201905062000dec5f83018562000dc6565b62000dfb602083018462000dc6565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000e48601f8362000e02565b915062000e558262000e12565b602082019050919050565b5f6020820190508181035f83015262000e798162000e3a565b9050919050565b5f62000e8c8262000958565b915062000e998362000958565b925082820190508082111562000eb45762000eb36200098e565b5b92915050565b62000ec58162000958565b82525050565b5f60208201905062000ee05f83018462000eba565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f62000f4260248362000e02565b915062000f4f8262000ee6565b604082019050919050565b5f6020820190508181035f83015262000f738162000f34565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f62000fd660228362000e02565b915062000fe38262000f7a565b604082019050919050565b5f6020820190508181035f830152620010078162000fc8565b9050919050565b608051612dce620010355f395f818161088c0152818161096b01526109940152612dce5ff3fe60806040526004361061019f575f3560e01c80637b16cea0116100eb578063a4d66daf11610089578063c9567bf911610063578063c9567bf9146105be578063dd62ed3e146105d4578063f2fde38b14610610578063f928364c14610638576101a6565b8063a4d66daf1461052e578063a8aa1b3114610558578063a9059cbb14610582576101a6565b80638da5cb5b116100c55780638da5cb5b1461047457806395d89b411461049e5780639bd565d6146104c8578063a457c2d7146104f2576101a6565b80637b16cea0146103e85780637fec621e14610424578063864b31671461044c576101a6565b8063395093511161015857806370a082311161013257806370a0823114610342578063715018a61461037e57806373bc5a361461039457806375f0a874146103be576101a6565b806339509351146102c85780636ac5eeee146103045780636db0126a1461031a576101a6565b806306fdde03146101aa578063095ea7b3146101d457806316697fc51461021057806318160ddd1461023857806323b872dd14610262578063313ce5671461029e576101a6565b366101a657005b5f80fd5b3480156101b5575f80fd5b506101be61064e565b6040516101cb9190611fc1565b60405180910390f35b3480156101df575f80fd5b506101fa60048036038101906101f59190612072565b6106de565b60405161020791906120ca565b60405180910390f35b34801561021b575f80fd5b506102366004803603810190610231919061210d565b610700565b005b348015610243575f80fd5b5061024c610760565b604051610259919061215a565b60405180910390f35b34801561026d575f80fd5b5061028860048036038101906102839190612173565b610769565b60405161029591906120ca565b60405180910390f35b3480156102a9575f80fd5b506102b2610797565b6040516102bf91906121de565b60405180910390f35b3480156102d3575f80fd5b506102ee60048036038101906102e99190612072565b61079f565b6040516102fb91906120ca565b60405180910390f35b34801561030f575f80fd5b506103186107d5565b005b348015610325575f80fd5b50610340600480360381019061033b91906121f7565b610c47565b005b34801561034d575f80fd5b50610368600480360381019061036391906121f7565b610d97565b604051610375919061215a565b60405180910390f35b348015610389575f80fd5b50610392610ddd565b005b34801561039f575f80fd5b506103a8610df0565b6040516103b5919061215a565b60405180910390f35b3480156103c9575f80fd5b506103d2610df6565b6040516103df9190612231565b60405180910390f35b3480156103f3575f80fd5b5061040e600480360381019061040991906121f7565b610e1c565b60405161041b91906120ca565b60405180910390f35b34801561042f575f80fd5b5061044a600480360381019061044591906121f7565b610e6e565b005b348015610457575f80fd5b50610472600480360381019061046d919061224a565b610fbf565b005b34801561047f575f80fd5b50610488611059565b6040516104959190612231565b60405180910390f35b3480156104a9575f80fd5b506104b2611080565b6040516104bf9190611fc1565b60405180910390f35b3480156104d3575f80fd5b506104dc611110565b6040516104e99190612231565b60405180910390f35b3480156104fd575f80fd5b5061051860048036038101906105139190612072565b611135565b60405161052591906120ca565b60405180910390f35b348015610539575f80fd5b506105426111aa565b60405161054f91906120ca565b60405180910390f35b348015610563575f80fd5b5061056c6111bd565b6040516105799190612231565b60405180910390f35b34801561058d575f80fd5b506105a860048036038101906105a39190612072565b6111e2565b6040516105b591906120ca565b60405180910390f35b3480156105c9575f80fd5b506105d2611204565b005b3480156105df575f80fd5b506105fa60048036038101906105f59190612275565b611254565b604051610607919061215a565b60405180910390f35b34801561061b575f80fd5b50610636600480360381019061063191906121f7565b6112d6565b005b348015610643575f80fd5b5061064c611358565b005b60606004805461065d906122e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610689906122e0565b80156106d45780601f106106ab576101008083540402835291602001916106d4565b820191905f5260205f20905b8154815290600101906020018083116106b757829003601f168201915b5050505050905090565b5f806106e8611409565b90506106f5818585611410565b600191505092915050565b6107086115d3565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600354905090565b5f80610773611409565b9050610780858285611651565b61078b8585856116dc565b60019150509392505050565b5f6012905090565b5f806107a9611409565b90506107ca8185856107bb8589611254565b6107c5919061233d565b611410565b600191505092915050565b600160135f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff81111561080b5761080a612370565b5b6040519080825280602002602001820160405280156108395781602001602082028036833780820191505090505b50905030815f815181106108505761084f61239d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108f3573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091791906123de565b8160018151811061092b5761092a61239d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610992307f0000000000000000000000000000000000000000000000000000000000000000601154611410565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9476011545f8430426040518663ffffffff1660e01b81526004016109f5959493929190612502565b5f604051808303815f87803b158015610a0c575f80fd5b505af1158015610a1e573d5f803e3d5ffd5b505050505f4790505f811115610bf1575f6003600583610a3e9190612587565b610a4891906125b7565b90505f8183610a5791906125f8565b90505f600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610aa090612658565b5f6040518083038185875af1925050503d805f8114610ada576040519150601f19603f3d011682016040523d82523d5f602084013e610adf565b606091505b5050905080610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a906126dc565b60405180910390fd5b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610b6890612658565b5f6040518083038185875af1925050503d805f8114610ba2576040519150601f19603f3d011682016040523d82523d5f602084013e610ba7565b606091505b50508091505080610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be49061276a565b60405180910390fd5b5050505b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05601154604051610c22919061215a565b60405180910390a150505f60135f6101000a81548160ff021916908315150217905550565b610c4f611059565b73ffffffffffffffffffffffffffffffffffffffff16610c6d611409565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ce65750600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ccd611409565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610d1d576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fbd5aa8e04dbf8cd0c0a2cf0d7f15cab9d94d85af3f5d347dc8359b9194610f0281604051610d8c9190612231565b60405180910390a150565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610de56115d3565b610dee5f611bfd565b565b60115481565b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610e76611059565b73ffffffffffffffffffffffffffffffffffffffff16610e94611409565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f0d5750600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ef4611409565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610f44576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ffd0b0a42994d3cda2ac8e0f517a2c764afa4cdebeac6d7cf6da7879ba15b0e7281604051610fb49190612231565b60405180910390a150565b610fc76115d3565b6032600654610fd69190612587565b811115611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f906127f8565b60405180910390fd5b806011819055507f4cba14fd4026630e64b03f8c6a0130ca310c15a5376cf7f6735c66880bb7bceb8160405161104e919061215a565b60405180910390a150565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461108f906122e0565b80601f01602080910402602001604051908101604052809291908181526020018280546110bb906122e0565b80156111065780601f106110dd57610100808354040283529160200191611106565b820191905f5260205f20905b8154815290600101906020018083116110e957829003601f168201915b5050505050905090565b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8061113f611409565b90505f61114c8286611254565b905083811015611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890612886565b60405180910390fd5b61119e8286868403611410565b60019250505092915050565b601060149054906101000a900460ff1681565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f806111ec611409565b90506111f98185856116dc565b600191505092915050565b61120c6115d3565b6001600f5f6101000a81548160ff0219169083151502179055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6112de6115d3565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361134c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134390612914565b60405180910390fd5b61135581611bfd565b50565b6113606115d3565b601060149054906101000a900460ff166113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a69061297c565b60405180910390fd5b5f601060146101000a81548160ff021916908315150217905550600654600e81905550600654600d819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590612a0a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e390612a98565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115c6919061215a565b60405180910390a3505050565b6115db611409565b73ffffffffffffffffffffffffffffffffffffffff166115f9611059565b73ffffffffffffffffffffffffffffffffffffffff161461164f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164690612b00565b60405180910390fd5b565b5f61165c8484611254565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116d657818110156116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90612b68565b60405180910390fd5b6116d58484848403611410565b5b50505050565b60125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611777575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611828575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611827575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b8061183e575060135f9054906101000a900460ff165b156118535761184e838383611cbe565b611bf8565b600f5f9054906101000a900460ff166118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890612bd0565b60405180910390fd5b601060149054906101000a900460ff1615611a4a5760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061195d575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561196a5750600d5481115b156119a1576040517f801bc44b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611a125750600e5481611a0684610d97565b611a10919061233d565b115b15611a49576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f606460085483611a5b91906125b7565b611a659190612587565b905060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b2b576001600c5f828254611acd919061233d565b9250508190555060646002600a54611ae59190612587565b600c5411611af557600954611af9565b6008545b83611b0491906125b7565b611b0e9190612587565b9050601154611b1c30610d97565b10611b2a57611b296107d5565b5b5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611bc9576001600b5f828254611b91919061233d565b925050819055506064600a54600b5411611bad57600954611bb1565b6008545b83611bbc91906125b7565b611bc69190612587565b90505b5f811115611beb57611bdc843083611cbe565b8082611be891906125f8565b91505b611bf6848484611cbe565b505b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2390612c5e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9190612cec565b60405180910390fd5b611da5838383611f2d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2090612d7a565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f14919061215a565b60405180910390a3611f27848484611f32565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611f6e578082015181840152602081019050611f53565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611f9382611f37565b611f9d8185611f41565b9350611fad818560208601611f51565b611fb681611f79565b840191505092915050565b5f6020820190508181035f830152611fd98184611f89565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61200e82611fe5565b9050919050565b61201e81612004565b8114612028575f80fd5b50565b5f8135905061203981612015565b92915050565b5f819050919050565b6120518161203f565b811461205b575f80fd5b50565b5f8135905061206c81612048565b92915050565b5f806040838503121561208857612087611fe1565b5b5f6120958582860161202b565b92505060206120a68582860161205e565b9150509250929050565b5f8115159050919050565b6120c4816120b0565b82525050565b5f6020820190506120dd5f8301846120bb565b92915050565b6120ec816120b0565b81146120f6575f80fd5b50565b5f81359050612107816120e3565b92915050565b5f806040838503121561212357612122611fe1565b5b5f6121308582860161202b565b9250506020612141858286016120f9565b9150509250929050565b6121548161203f565b82525050565b5f60208201905061216d5f83018461214b565b92915050565b5f805f6060848603121561218a57612189611fe1565b5b5f6121978682870161202b565b93505060206121a88682870161202b565b92505060406121b98682870161205e565b9150509250925092565b5f60ff82169050919050565b6121d8816121c3565b82525050565b5f6020820190506121f15f8301846121cf565b92915050565b5f6020828403121561220c5761220b611fe1565b5b5f6122198482850161202b565b91505092915050565b61222b81612004565b82525050565b5f6020820190506122445f830184612222565b92915050565b5f6020828403121561225f5761225e611fe1565b5b5f61226c8482850161205e565b91505092915050565b5f806040838503121561228b5761228a611fe1565b5b5f6122988582860161202b565b92505060206122a98582860161202b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806122f757607f821691505b60208210810361230a576123096122b3565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6123478261203f565b91506123528361203f565b925082820190508082111561236a57612369612310565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506123d881612015565b92915050565b5f602082840312156123f3576123f2611fe1565b5b5f612400848285016123ca565b91505092915050565b5f819050919050565b5f819050919050565b5f61243561243061242b84612409565b612412565b61203f565b9050919050565b6124458161241b565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61247d81612004565b82525050565b5f61248e8383612474565b60208301905092915050565b5f602082019050919050565b5f6124b08261244b565b6124ba8185612455565b93506124c583612465565b805f5b838110156124f55781516124dc8882612483565b97506124e78361249a565b9250506001810190506124c8565b5085935050505092915050565b5f60a0820190506125155f83018861214b565b612522602083018761243c565b818103604083015261253481866124a6565b90506125436060830185612222565b612550608083018461214b565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6125918261203f565b915061259c8361203f565b9250826125ac576125ab61255a565b5b828204905092915050565b5f6125c18261203f565b91506125cc8361203f565b92508282026125da8161203f565b915082820484148315176125f1576125f0612310565b5b5092915050565b5f6126028261203f565b915061260d8361203f565b925082820390508181111561262557612624612310565b5b92915050565b5f81905092915050565b50565b5f6126435f8361262b565b915061264e82612635565b5f82019050919050565b5f61266282612638565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206d61726b6574696e5f8201527f672077616c6c6574000000000000000000000000000000000000000000000000602082015250565b5f6126c6602883611f41565b91506126d18261266c565b604082019050919050565b5f6020820190508181035f8301526126f3816126ba565b9050919050565b7f4661696c656420746f2073656e6420457468657220746f2074726561737572795f8201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b5f612754602783611f41565b915061275f826126fa565b604082019050919050565b5f6020820190508181035f83015261278181612748565b9050919050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c5f8201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b5f6127e2602f83611f41565b91506127ed82612788565b604082019050919050565b5f6020820190508181035f83015261280f816127d6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612870602583611f41565b915061287b82612816565b604082019050919050565b5f6020820190508181035f83015261289d81612864565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6128fe602683611f41565b9150612909826128a4565b604082019050919050565b5f6020820190508181035f83015261292b816128f2565b9050919050565b7f4c696d69747320616c72656164792072656d6f766564000000000000000000005f82015250565b5f612966601683611f41565b915061297182612932565b602082019050919050565b5f6020820190508181035f8301526129938161295a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6129f4602483611f41565b91506129ff8261299a565b604082019050919050565b5f6020820190508181035f830152612a21816129e8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612a82602283611f41565b9150612a8d82612a28565b604082019050919050565b5f6020820190508181035f830152612aaf81612a76565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612aea602083611f41565b9150612af582612ab6565b602082019050919050565b5f6020820190508181035f830152612b1781612ade565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612b52601d83611f41565b9150612b5d82612b1e565b602082019050919050565b5f6020820190508181035f830152612b7f81612b46565b9050919050565b7f54726164696e67206973206e6f74206f70656e000000000000000000000000005f82015250565b5f612bba601383611f41565b9150612bc582612b86565b602082019050919050565b5f6020820190508181035f830152612be781612bae565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612c48602583611f41565b9150612c5382612bee565b604082019050919050565b5f6020820190508181035f830152612c7581612c3c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612cd6602383611f41565b9150612ce182612c7c565b604082019050919050565b5f6020820190508181035f830152612d0381612cca565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612d64602683611f41565b9150612d6f82612d0a565b604082019050919050565b5f6020820190508181035f830152612d9181612d58565b905091905056fea26469706673582212204b7553eeecff52a91da70246d5d647553d0f5bcfe04227efb052e6d2ac5ad93e64736f6c63430008140033
Deployed Bytecode
0x60806040526004361061019f575f3560e01c80637b16cea0116100eb578063a4d66daf11610089578063c9567bf911610063578063c9567bf9146105be578063dd62ed3e146105d4578063f2fde38b14610610578063f928364c14610638576101a6565b8063a4d66daf1461052e578063a8aa1b3114610558578063a9059cbb14610582576101a6565b80638da5cb5b116100c55780638da5cb5b1461047457806395d89b411461049e5780639bd565d6146104c8578063a457c2d7146104f2576101a6565b80637b16cea0146103e85780637fec621e14610424578063864b31671461044c576101a6565b8063395093511161015857806370a082311161013257806370a0823114610342578063715018a61461037e57806373bc5a361461039457806375f0a874146103be576101a6565b806339509351146102c85780636ac5eeee146103045780636db0126a1461031a576101a6565b806306fdde03146101aa578063095ea7b3146101d457806316697fc51461021057806318160ddd1461023857806323b872dd14610262578063313ce5671461029e576101a6565b366101a657005b5f80fd5b3480156101b5575f80fd5b506101be61064e565b6040516101cb9190611fc1565b60405180910390f35b3480156101df575f80fd5b506101fa60048036038101906101f59190612072565b6106de565b60405161020791906120ca565b60405180910390f35b34801561021b575f80fd5b506102366004803603810190610231919061210d565b610700565b005b348015610243575f80fd5b5061024c610760565b604051610259919061215a565b60405180910390f35b34801561026d575f80fd5b5061028860048036038101906102839190612173565b610769565b60405161029591906120ca565b60405180910390f35b3480156102a9575f80fd5b506102b2610797565b6040516102bf91906121de565b60405180910390f35b3480156102d3575f80fd5b506102ee60048036038101906102e99190612072565b61079f565b6040516102fb91906120ca565b60405180910390f35b34801561030f575f80fd5b506103186107d5565b005b348015610325575f80fd5b50610340600480360381019061033b91906121f7565b610c47565b005b34801561034d575f80fd5b50610368600480360381019061036391906121f7565b610d97565b604051610375919061215a565b60405180910390f35b348015610389575f80fd5b50610392610ddd565b005b34801561039f575f80fd5b506103a8610df0565b6040516103b5919061215a565b60405180910390f35b3480156103c9575f80fd5b506103d2610df6565b6040516103df9190612231565b60405180910390f35b3480156103f3575f80fd5b5061040e600480360381019061040991906121f7565b610e1c565b60405161041b91906120ca565b60405180910390f35b34801561042f575f80fd5b5061044a600480360381019061044591906121f7565b610e6e565b005b348015610457575f80fd5b50610472600480360381019061046d919061224a565b610fbf565b005b34801561047f575f80fd5b50610488611059565b6040516104959190612231565b60405180910390f35b3480156104a9575f80fd5b506104b2611080565b6040516104bf9190611fc1565b60405180910390f35b3480156104d3575f80fd5b506104dc611110565b6040516104e99190612231565b60405180910390f35b3480156104fd575f80fd5b5061051860048036038101906105139190612072565b611135565b60405161052591906120ca565b60405180910390f35b348015610539575f80fd5b506105426111aa565b60405161054f91906120ca565b60405180910390f35b348015610563575f80fd5b5061056c6111bd565b6040516105799190612231565b60405180910390f35b34801561058d575f80fd5b506105a860048036038101906105a39190612072565b6111e2565b6040516105b591906120ca565b60405180910390f35b3480156105c9575f80fd5b506105d2611204565b005b3480156105df575f80fd5b506105fa60048036038101906105f59190612275565b611254565b604051610607919061215a565b60405180910390f35b34801561061b575f80fd5b50610636600480360381019061063191906121f7565b6112d6565b005b348015610643575f80fd5b5061064c611358565b005b60606004805461065d906122e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610689906122e0565b80156106d45780601f106106ab576101008083540402835291602001916106d4565b820191905f5260205f20905b8154815290600101906020018083116106b757829003601f168201915b5050505050905090565b5f806106e8611409565b90506106f5818585611410565b600191505092915050565b6107086115d3565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600354905090565b5f80610773611409565b9050610780858285611651565b61078b8585856116dc565b60019150509392505050565b5f6012905090565b5f806107a9611409565b90506107ca8185856107bb8589611254565b6107c5919061233d565b611410565b600191505092915050565b600160135f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff81111561080b5761080a612370565b5b6040519080825280602002602001820160405280156108395781602001602082028036833780820191505090505b50905030815f815181106108505761084f61239d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108f3573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091791906123de565b8160018151811061092b5761092a61239d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610992307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d601154611410565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9476011545f8430426040518663ffffffff1660e01b81526004016109f5959493929190612502565b5f604051808303815f87803b158015610a0c575f80fd5b505af1158015610a1e573d5f803e3d5ffd5b505050505f4790505f811115610bf1575f6003600583610a3e9190612587565b610a4891906125b7565b90505f8183610a5791906125f8565b90505f600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610aa090612658565b5f6040518083038185875af1925050503d805f8114610ada576040519150601f19603f3d011682016040523d82523d5f602084013e610adf565b606091505b5050905080610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a906126dc565b60405180910390fd5b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610b6890612658565b5f6040518083038185875af1925050503d805f8114610ba2576040519150601f19603f3d011682016040523d82523d5f602084013e610ba7565b606091505b50508091505080610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be49061276a565b60405180910390fd5b5050505b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05601154604051610c22919061215a565b60405180910390a150505f60135f6101000a81548160ff021916908315150217905550565b610c4f611059565b73ffffffffffffffffffffffffffffffffffffffff16610c6d611409565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ce65750600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ccd611409565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610d1d576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fbd5aa8e04dbf8cd0c0a2cf0d7f15cab9d94d85af3f5d347dc8359b9194610f0281604051610d8c9190612231565b60405180910390a150565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610de56115d3565b610dee5f611bfd565b565b60115481565b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610e76611059565b73ffffffffffffffffffffffffffffffffffffffff16610e94611409565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f0d5750600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ef4611409565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610f44576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ffd0b0a42994d3cda2ac8e0f517a2c764afa4cdebeac6d7cf6da7879ba15b0e7281604051610fb49190612231565b60405180910390a150565b610fc76115d3565b6032600654610fd69190612587565b811115611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f906127f8565b60405180910390fd5b806011819055507f4cba14fd4026630e64b03f8c6a0130ca310c15a5376cf7f6735c66880bb7bceb8160405161104e919061215a565b60405180910390a150565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461108f906122e0565b80601f01602080910402602001604051908101604052809291908181526020018280546110bb906122e0565b80156111065780601f106110dd57610100808354040283529160200191611106565b820191905f5260205f20905b8154815290600101906020018083116110e957829003601f168201915b5050505050905090565b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8061113f611409565b90505f61114c8286611254565b905083811015611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890612886565b60405180910390fd5b61119e8286868403611410565b60019250505092915050565b601060149054906101000a900460ff1681565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f806111ec611409565b90506111f98185856116dc565b600191505092915050565b61120c6115d3565b6001600f5f6101000a81548160ff0219169083151502179055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6112de6115d3565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361134c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134390612914565b60405180910390fd5b61135581611bfd565b50565b6113606115d3565b601060149054906101000a900460ff166113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a69061297c565b60405180910390fd5b5f601060146101000a81548160ff021916908315150217905550600654600e81905550600654600d819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590612a0a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e390612a98565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115c6919061215a565b60405180910390a3505050565b6115db611409565b73ffffffffffffffffffffffffffffffffffffffff166115f9611059565b73ffffffffffffffffffffffffffffffffffffffff161461164f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164690612b00565b60405180910390fd5b565b5f61165c8484611254565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116d657818110156116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90612b68565b60405180910390fd5b6116d58484848403611410565b5b50505050565b60125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611777575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611828575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611827575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b8061183e575060135f9054906101000a900460ff165b156118535761184e838383611cbe565b611bf8565b600f5f9054906101000a900460ff166118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890612bd0565b60405180910390fd5b601060149054906101000a900460ff1615611a4a5760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061195d575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561196a5750600d5481115b156119a1576040517f801bc44b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611a125750600e5481611a0684610d97565b611a10919061233d565b115b15611a49576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f606460085483611a5b91906125b7565b611a659190612587565b905060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b2b576001600c5f828254611acd919061233d565b9250508190555060646002600a54611ae59190612587565b600c5411611af557600954611af9565b6008545b83611b0491906125b7565b611b0e9190612587565b9050601154611b1c30610d97565b10611b2a57611b296107d5565b5b5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611bc9576001600b5f828254611b91919061233d565b925050819055506064600a54600b5411611bad57600954611bb1565b6008545b83611bbc91906125b7565b611bc69190612587565b90505b5f811115611beb57611bdc843083611cbe565b8082611be891906125f8565b91505b611bf6848484611cbe565b505b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2390612c5e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9190612cec565b60405180910390fd5b611da5838383611f2d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2090612d7a565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f14919061215a565b60405180910390a3611f27848484611f32565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611f6e578082015181840152602081019050611f53565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611f9382611f37565b611f9d8185611f41565b9350611fad818560208601611f51565b611fb681611f79565b840191505092915050565b5f6020820190508181035f830152611fd98184611f89565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61200e82611fe5565b9050919050565b61201e81612004565b8114612028575f80fd5b50565b5f8135905061203981612015565b92915050565b5f819050919050565b6120518161203f565b811461205b575f80fd5b50565b5f8135905061206c81612048565b92915050565b5f806040838503121561208857612087611fe1565b5b5f6120958582860161202b565b92505060206120a68582860161205e565b9150509250929050565b5f8115159050919050565b6120c4816120b0565b82525050565b5f6020820190506120dd5f8301846120bb565b92915050565b6120ec816120b0565b81146120f6575f80fd5b50565b5f81359050612107816120e3565b92915050565b5f806040838503121561212357612122611fe1565b5b5f6121308582860161202b565b9250506020612141858286016120f9565b9150509250929050565b6121548161203f565b82525050565b5f60208201905061216d5f83018461214b565b92915050565b5f805f6060848603121561218a57612189611fe1565b5b5f6121978682870161202b565b93505060206121a88682870161202b565b92505060406121b98682870161205e565b9150509250925092565b5f60ff82169050919050565b6121d8816121c3565b82525050565b5f6020820190506121f15f8301846121cf565b92915050565b5f6020828403121561220c5761220b611fe1565b5b5f6122198482850161202b565b91505092915050565b61222b81612004565b82525050565b5f6020820190506122445f830184612222565b92915050565b5f6020828403121561225f5761225e611fe1565b5b5f61226c8482850161205e565b91505092915050565b5f806040838503121561228b5761228a611fe1565b5b5f6122988582860161202b565b92505060206122a98582860161202b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806122f757607f821691505b60208210810361230a576123096122b3565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6123478261203f565b91506123528361203f565b925082820190508082111561236a57612369612310565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506123d881612015565b92915050565b5f602082840312156123f3576123f2611fe1565b5b5f612400848285016123ca565b91505092915050565b5f819050919050565b5f819050919050565b5f61243561243061242b84612409565b612412565b61203f565b9050919050565b6124458161241b565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61247d81612004565b82525050565b5f61248e8383612474565b60208301905092915050565b5f602082019050919050565b5f6124b08261244b565b6124ba8185612455565b93506124c583612465565b805f5b838110156124f55781516124dc8882612483565b97506124e78361249a565b9250506001810190506124c8565b5085935050505092915050565b5f60a0820190506125155f83018861214b565b612522602083018761243c565b818103604083015261253481866124a6565b90506125436060830185612222565b612550608083018461214b565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6125918261203f565b915061259c8361203f565b9250826125ac576125ab61255a565b5b828204905092915050565b5f6125c18261203f565b91506125cc8361203f565b92508282026125da8161203f565b915082820484148315176125f1576125f0612310565b5b5092915050565b5f6126028261203f565b915061260d8361203f565b925082820390508181111561262557612624612310565b5b92915050565b5f81905092915050565b50565b5f6126435f8361262b565b915061264e82612635565b5f82019050919050565b5f61266282612638565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206d61726b6574696e5f8201527f672077616c6c6574000000000000000000000000000000000000000000000000602082015250565b5f6126c6602883611f41565b91506126d18261266c565b604082019050919050565b5f6020820190508181035f8301526126f3816126ba565b9050919050565b7f4661696c656420746f2073656e6420457468657220746f2074726561737572795f8201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b5f612754602783611f41565b915061275f826126fa565b604082019050919050565b5f6020820190508181035f83015261278181612748565b9050919050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c5f8201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b5f6127e2602f83611f41565b91506127ed82612788565b604082019050919050565b5f6020820190508181035f83015261280f816127d6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612870602583611f41565b915061287b82612816565b604082019050919050565b5f6020820190508181035f83015261289d81612864565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6128fe602683611f41565b9150612909826128a4565b604082019050919050565b5f6020820190508181035f83015261292b816128f2565b9050919050565b7f4c696d69747320616c72656164792072656d6f766564000000000000000000005f82015250565b5f612966601683611f41565b915061297182612932565b602082019050919050565b5f6020820190508181035f8301526129938161295a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6129f4602483611f41565b91506129ff8261299a565b604082019050919050565b5f6020820190508181035f830152612a21816129e8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612a82602283611f41565b9150612a8d82612a28565b604082019050919050565b5f6020820190508181035f830152612aaf81612a76565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612aea602083611f41565b9150612af582612ab6565b602082019050919050565b5f6020820190508181035f830152612b1781612ade565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612b52601d83611f41565b9150612b5d82612b1e565b602082019050919050565b5f6020820190508181035f830152612b7f81612b46565b9050919050565b7f54726164696e67206973206e6f74206f70656e000000000000000000000000005f82015250565b5f612bba601383611f41565b9150612bc582612b86565b602082019050919050565b5f6020820190508181035f830152612be781612bae565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612c48602583611f41565b9150612c5382612bee565b604082019050919050565b5f6020820190508181035f830152612c7581612c3c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612cd6602383611f41565b9150612ce182612c7c565b604082019050919050565b5f6020820190508181035f830152612d0381612cca565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612d64602683611f41565b9150612d6f82612d0a565b604082019050919050565b5f6020820190508181035f830152612d9181612d58565b905091905056fea26469706673582212204b7553eeecff52a91da70246d5d647553d0f5bcfe04227efb052e6d2ac5ad93e64736f6c63430008140033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.