Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 103 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17239499 | 593 days ago | IN | 0 ETH | 0.00615656 | ||||
Approve | 17226041 | 595 days ago | IN | 0 ETH | 0.00463657 | ||||
Transfer | 17224786 | 595 days ago | IN | 0 ETH | 0.00675872 | ||||
Approve | 17224756 | 595 days ago | IN | 0 ETH | 0.00333829 | ||||
Approve | 17224743 | 595 days ago | IN | 0 ETH | 0.0068322 | ||||
Approve | 17224642 | 595 days ago | IN | 0 ETH | 0.00253718 | ||||
Approve | 17224641 | 595 days ago | IN | 0 ETH | 0.00477131 | ||||
Approve | 17224638 | 595 days ago | IN | 0 ETH | 0.00488618 | ||||
Approve | 17224627 | 595 days ago | IN | 0 ETH | 0.00497541 | ||||
Approve | 17224620 | 595 days ago | IN | 0 ETH | 0.00452495 | ||||
Approve | 17224615 | 595 days ago | IN | 0 ETH | 0.00477412 | ||||
Approve | 17224607 | 595 days ago | IN | 0 ETH | 0.00463789 | ||||
Approve | 17224595 | 595 days ago | IN | 0 ETH | 0.00446864 | ||||
Approve | 17224583 | 595 days ago | IN | 0 ETH | 0.00506441 | ||||
Approve | 17224582 | 595 days ago | IN | 0 ETH | 0.00535774 | ||||
Approve | 17224581 | 595 days ago | IN | 0 ETH | 0.00507105 | ||||
Approve | 17224575 | 595 days ago | IN | 0 ETH | 0.00572793 | ||||
Approve | 17224571 | 595 days ago | IN | 0 ETH | 0.00314299 | ||||
Approve | 17224566 | 595 days ago | IN | 0 ETH | 0.00626139 | ||||
Approve | 17224565 | 595 days ago | IN | 0 ETH | 0.00585067 | ||||
Approve | 17224565 | 595 days ago | IN | 0 ETH | 0.00651048 | ||||
Approve | 17224564 | 595 days ago | IN | 0 ETH | 0.00613972 | ||||
Approve | 17224563 | 595 days ago | IN | 0 ETH | 0.00641616 | ||||
Approve | 17224557 | 595 days ago | IN | 0 ETH | 0.00525924 | ||||
Approve | 17224557 | 595 days ago | IN | 0 ETH | 0.00526742 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
PepeBugattiBoss
Compiler Version
v0.8.1+commit.df193b15
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-08 */ // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: PepeBugattiBoss.sol pragma solidity ^0.8.1; contract PepeBugattiBoss is ERC20, Ownable { address private taxWallet; address public _uniswapPair; uint256 private _buyTax = 0; uint256 private _sellTax = 5; IUniswapV2Router02 _uniswapRouter = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); mapping(address => bool) private _blacklisted; mapping(address => bool) private _whitelisted; constructor(address _taxWallet) ERC20("PEPE BUGATTI BOSS", "PEPEBUGATTIBOSS") { _mint(msg.sender, 420690000000000 * 10**18); taxWallet = _taxWallet; } function createPair() external onlyOwner { _uniswapPair = IUniswapV2Factory(_uniswapRouter.factory()).createPair(address(this), _uniswapRouter.WETH()); } function blacklistAddress(address account, bool blacklisted) external onlyOwner { _blacklisted[account] = blacklisted; } function whitelistAddress(address account, bool whitelisted) external onlyOwner { _whitelisted[account] = whitelisted; } function setBuyTax(uint256 tax) external onlyOwner { _buyTax = tax; } function setSellTax(uint256 tax) external onlyOwner { _sellTax = tax; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { require(!_blacklisted[from], "Address blacklisted"); require(!_blacklisted[to], "Address blacklisted"); super._beforeTokenTransfer(from, to, amount); } function _transfer(address sender, address recipient, uint256 amount) internal virtual override { uint256 tax = 0; if (!_whitelisted[sender] && !_whitelisted[recipient]) { if (recipient == _uniswapPair) { tax = (amount * _sellTax) / 100; } else if (sender == _uniswapPair) { tax = (amount * _buyTax) / 100; } } uint256 amountAfterTax = amount - tax; super._transfer(sender, recipient, amountAfterTax); if (tax > 0) { super._transfer(sender, taxWallet, tax); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_taxWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"blacklisted","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"createPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tax","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tax","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"whitelisted","type":"bool"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260006008556005600955600a80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790553480156200004157600080fd5b50604051620015103803806200151083398101604081905262000064916200038a565b604080518082018252601181527050455045204255474154544920424f535360781b60208083019182528351808501909452600f84526e5045504542554741545449424f535360881b908401528151919291620000c491600391620002e4565b508051620000da906004906020840190620002e4565b505050620000f7620000f16200013760201b60201c565b6200013b565b62000111336d14bddab3e51a57cff87a500000006200018d565b600680546001600160a01b0319166001600160a01b039290921691909117905562000493565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001bf5760405162461bcd60e51b8152600401620001b690620003f1565b60405180910390fd5b620001cd600083836200024f565b8060026000828254620001e1919062000431565b90915550506001600160a01b038216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200023590859062000428565b60405180910390a36200024b60008383620002df565b5050565b6001600160a01b0383166000908152600b602052604090205460ff16156200028b5760405162461bcd60e51b8152600401620001b690620003ba565b6001600160a01b0382166000908152600b602052604090205460ff1615620002c75760405162461bcd60e51b8152600401620001b690620003ba565b620002df838383620002df60201b620007181760201c565b505050565b828054620002f29062000456565b90600052602060002090601f01602090048101928262000316576000855562000361565b82601f106200033157805160ff191683800117855562000361565b8280016001018555821562000361579182015b828111156200036157825182559160200191906001019062000344565b506200036f92915062000373565b5090565b5b808211156200036f576000815560010162000374565b6000602082840312156200039c578081fd5b81516001600160a01b0381168114620003b3578182fd5b9392505050565b60208082526013908201527f4164647265737320626c61636b6c697374656400000000000000000000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200045157634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200046b57607f821691505b602082108114156200048d57634e487b7160e01b600052602260045260246000fd5b50919050565b61106d80620004a36000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80638cd09d50116100ad578063a9059cbb11610071578063a9059cbb14610242578063b9a45aac14610255578063dc1052e214610268578063dd62ed3e1461027b578063f2fde38b1461028e5761012c565b80638cd09d50146102045780638da5cb5b1461021757806395d89b411461021f5780639e78fb4f14610227578063a457c2d71461022f5761012c565b806339509351116100f457806339509351146101ac578063455a4396146101bf5780634bf28fd0146101d457806370a08231146101e9578063715018a6146101fc5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461016f57806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102a1565b6040516101469190610c81565b60405180910390f35b61016261015d366004610c05565b610333565b6040516101469190610c76565b610177610355565b6040516101469190610f4c565b610162610192366004610b94565b61035b565b61019f610389565b6040516101469190610f55565b6101626101ba366004610c05565b61038e565b6101d26101cd366004610bd4565b6103ba565b005b6101dc6103ed565b6040516101469190610c48565b6101776101f7366004610b1d565b6103fc565b6101d2610417565b6101d2610212366004610c30565b61042b565b6101dc610438565b610139610447565b6101d2610456565b61016261023d366004610c05565b61060a565b610162610250366004610c05565b61065b565b6101d2610263366004610bd4565b610673565b6101d2610276366004610c30565b6106a6565b610177610289366004610b5c565b6106b3565b6101d261029c366004610b1d565b6106de565b6060600380546102b090610fd1565b80601f01602080910402602001604051908101604052809291908181526020018280546102dc90610fd1565b80156103295780601f106102fe57610100808354040283529160200191610329565b820191906000526020600020905b81548152906001019060200180831161030c57829003601f168201915b5050505050905090565b60008061033e61071d565b905061034b818585610721565b5060019392505050565b60025490565b60008061036661071d565b90506103738582856107d5565b61037e85858561081f565b506001949350505050565b601290565b60008061039961071d565b905061034b8185856103ab85896106b3565b6103b59190610f63565b610721565b6103c261090e565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6007546001600160a01b031681565b6001600160a01b031660009081526020819052604090205490565b61041f61090e565b610429600061094d565b565b61043361090e565b600955565b6005546001600160a01b031690565b6060600480546102b090610fd1565b61045e61090e565b600a60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156104ac57600080fd5b505afa1580156104c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104e49190610b40565b6001600160a01b031663c9c6539630600a60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561054157600080fd5b505afa158015610555573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105799190610b40565b6040518363ffffffff1660e01b8152600401610596929190610c5c565b602060405180830381600087803b1580156105b057600080fd5b505af11580156105c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e89190610b40565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60008061061561071d565b9050600061062382866106b3565b90508381101561064e5760405162461bcd60e51b815260040161064590610f07565b60405180910390fd5b61037e8286868403610721565b60008061066661071d565b905061034b81858561081f565b61067b61090e565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6106ae61090e565b600855565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106e661090e565b6001600160a01b03811661070c5760405162461bcd60e51b815260040161064590610d17565b6107158161094d565b50565b505050565b3390565b6001600160a01b0383166107475760405162461bcd60e51b815260040161064590610ec3565b6001600160a01b03821661076d5760405162461bcd60e51b815260040161064590610d5d565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107c8908590610f4c565b60405180910390a3505050565b60006107e184846106b3565b90506000198114610819578181101561080c5760405162461bcd60e51b815260040161064590610d9f565b6108198484848403610721565b50505050565b6001600160a01b0383166000908152600c602052604081205460ff1615801561086157506001600160a01b0383166000908152600c602052604090205460ff16155b156108d0576007546001600160a01b038481169116141561089d5760646009548361088c9190610f9b565b6108969190610f7b565b90506108d0565b6007546001600160a01b03858116911614156108d0576064600854836108c39190610f9b565b6108cd9190610f7b565b90505b60006108dc8284610fba565b90506108e985858361099f565b8115610907576006546109079086906001600160a01b03168461099f565b5050505050565b61091661071d565b6001600160a01b0316610927610438565b6001600160a01b0316146104295760405162461bcd60e51b815260040161064590610e49565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166109c55760405162461bcd60e51b815260040161064590610e7e565b6001600160a01b0382166109eb5760405162461bcd60e51b815260040161064590610cd4565b6109f6838383610aa0565b6001600160a01b03831660009081526020819052604090205481811015610a2f5760405162461bcd60e51b815260040161064590610dd6565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a8d908690610f4c565b60405180910390a3610819848484610718565b6001600160a01b0383166000908152600b602052604090205460ff1615610ad95760405162461bcd60e51b815260040161064590610e1c565b6001600160a01b0382166000908152600b602052604090205460ff1615610b125760405162461bcd60e51b815260040161064590610e1c565b610718838383610718565b600060208284031215610b2e578081fd5b8135610b3981611022565b9392505050565b600060208284031215610b51578081fd5b8151610b3981611022565b60008060408385031215610b6e578081fd5b8235610b7981611022565b91506020830135610b8981611022565b809150509250929050565b600080600060608486031215610ba8578081fd5b8335610bb381611022565b92506020840135610bc381611022565b929592945050506040919091013590565b60008060408385031215610be6578182fd5b8235610bf181611022565b915060208301358015158114610b89578182fd5b60008060408385031215610c17578182fd5b8235610c2281611022565b946020939093013593505050565b600060208284031215610c41578081fd5b5035919050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b6000602080835283518082850152825b81811015610cad57858101830151858201604001528201610c91565b81811115610cbe5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252601390820152721059191c995cdcc8189b1858dadb1a5cdd1959606a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610f7657610f7661100c565b500190565b600082610f9657634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610fb557610fb561100c565b500290565b600082821015610fcc57610fcc61100c565b500390565b600281046001821680610fe557607f821691505b6020821081141561100657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461071557600080fdfea2646970667358221220d1cf1933c42782fafed79eaacc591862b61ff92399f76d14aad033e44363b9ed64736f6c63430008010033000000000000000000000000d667adc2af3751ecd526a20b12f3112e1525227a
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80638cd09d50116100ad578063a9059cbb11610071578063a9059cbb14610242578063b9a45aac14610255578063dc1052e214610268578063dd62ed3e1461027b578063f2fde38b1461028e5761012c565b80638cd09d50146102045780638da5cb5b1461021757806395d89b411461021f5780639e78fb4f14610227578063a457c2d71461022f5761012c565b806339509351116100f457806339509351146101ac578063455a4396146101bf5780634bf28fd0146101d457806370a08231146101e9578063715018a6146101fc5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461016f57806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102a1565b6040516101469190610c81565b60405180910390f35b61016261015d366004610c05565b610333565b6040516101469190610c76565b610177610355565b6040516101469190610f4c565b610162610192366004610b94565b61035b565b61019f610389565b6040516101469190610f55565b6101626101ba366004610c05565b61038e565b6101d26101cd366004610bd4565b6103ba565b005b6101dc6103ed565b6040516101469190610c48565b6101776101f7366004610b1d565b6103fc565b6101d2610417565b6101d2610212366004610c30565b61042b565b6101dc610438565b610139610447565b6101d2610456565b61016261023d366004610c05565b61060a565b610162610250366004610c05565b61065b565b6101d2610263366004610bd4565b610673565b6101d2610276366004610c30565b6106a6565b610177610289366004610b5c565b6106b3565b6101d261029c366004610b1d565b6106de565b6060600380546102b090610fd1565b80601f01602080910402602001604051908101604052809291908181526020018280546102dc90610fd1565b80156103295780601f106102fe57610100808354040283529160200191610329565b820191906000526020600020905b81548152906001019060200180831161030c57829003601f168201915b5050505050905090565b60008061033e61071d565b905061034b818585610721565b5060019392505050565b60025490565b60008061036661071d565b90506103738582856107d5565b61037e85858561081f565b506001949350505050565b601290565b60008061039961071d565b905061034b8185856103ab85896106b3565b6103b59190610f63565b610721565b6103c261090e565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6007546001600160a01b031681565b6001600160a01b031660009081526020819052604090205490565b61041f61090e565b610429600061094d565b565b61043361090e565b600955565b6005546001600160a01b031690565b6060600480546102b090610fd1565b61045e61090e565b600a60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156104ac57600080fd5b505afa1580156104c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104e49190610b40565b6001600160a01b031663c9c6539630600a60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561054157600080fd5b505afa158015610555573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105799190610b40565b6040518363ffffffff1660e01b8152600401610596929190610c5c565b602060405180830381600087803b1580156105b057600080fd5b505af11580156105c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e89190610b40565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60008061061561071d565b9050600061062382866106b3565b90508381101561064e5760405162461bcd60e51b815260040161064590610f07565b60405180910390fd5b61037e8286868403610721565b60008061066661071d565b905061034b81858561081f565b61067b61090e565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6106ae61090e565b600855565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106e661090e565b6001600160a01b03811661070c5760405162461bcd60e51b815260040161064590610d17565b6107158161094d565b50565b505050565b3390565b6001600160a01b0383166107475760405162461bcd60e51b815260040161064590610ec3565b6001600160a01b03821661076d5760405162461bcd60e51b815260040161064590610d5d565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107c8908590610f4c565b60405180910390a3505050565b60006107e184846106b3565b90506000198114610819578181101561080c5760405162461bcd60e51b815260040161064590610d9f565b6108198484848403610721565b50505050565b6001600160a01b0383166000908152600c602052604081205460ff1615801561086157506001600160a01b0383166000908152600c602052604090205460ff16155b156108d0576007546001600160a01b038481169116141561089d5760646009548361088c9190610f9b565b6108969190610f7b565b90506108d0565b6007546001600160a01b03858116911614156108d0576064600854836108c39190610f9b565b6108cd9190610f7b565b90505b60006108dc8284610fba565b90506108e985858361099f565b8115610907576006546109079086906001600160a01b03168461099f565b5050505050565b61091661071d565b6001600160a01b0316610927610438565b6001600160a01b0316146104295760405162461bcd60e51b815260040161064590610e49565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166109c55760405162461bcd60e51b815260040161064590610e7e565b6001600160a01b0382166109eb5760405162461bcd60e51b815260040161064590610cd4565b6109f6838383610aa0565b6001600160a01b03831660009081526020819052604090205481811015610a2f5760405162461bcd60e51b815260040161064590610dd6565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a8d908690610f4c565b60405180910390a3610819848484610718565b6001600160a01b0383166000908152600b602052604090205460ff1615610ad95760405162461bcd60e51b815260040161064590610e1c565b6001600160a01b0382166000908152600b602052604090205460ff1615610b125760405162461bcd60e51b815260040161064590610e1c565b610718838383610718565b600060208284031215610b2e578081fd5b8135610b3981611022565b9392505050565b600060208284031215610b51578081fd5b8151610b3981611022565b60008060408385031215610b6e578081fd5b8235610b7981611022565b91506020830135610b8981611022565b809150509250929050565b600080600060608486031215610ba8578081fd5b8335610bb381611022565b92506020840135610bc381611022565b929592945050506040919091013590565b60008060408385031215610be6578182fd5b8235610bf181611022565b915060208301358015158114610b89578182fd5b60008060408385031215610c17578182fd5b8235610c2281611022565b946020939093013593505050565b600060208284031215610c41578081fd5b5035919050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b6000602080835283518082850152825b81811015610cad57858101830151858201604001528201610c91565b81811115610cbe5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252601390820152721059191c995cdcc8189b1858dadb1a5cdd1959606a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610f7657610f7661100c565b500190565b600082610f9657634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610fb557610fb561100c565b500290565b600082821015610fcc57610fcc61100c565b500390565b600281046001821680610fe557607f821691505b6020821081141561100657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461071557600080fdfea2646970667358221220d1cf1933c42782fafed79eaacc591862b61ff92399f76d14aad033e44363b9ed64736f6c63430008010033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d667adc2af3751ecd526a20b12f3112e1525227a
-----Decoded View---------------
Arg [0] : _taxWallet (address): 0xD667Adc2af3751ecd526A20b12f3112e1525227a
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d667adc2af3751ecd526a20b12f3112e1525227a
Deployed Bytecode Sourcemap
26437:2158:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15178:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17529:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;16298:108::-;;;:::i;:::-;;;;;;;:::i;18310:295::-;;;;;;:::i;:::-;;:::i;16140:93::-;;;:::i;:::-;;;;;;;:::i;19014:238::-;;;;;;:::i;:::-;;:::i;27209:134::-;;;;;;:::i;:::-;;:::i;:::-;;26522:27;;;:::i;:::-;;;;;;;:::i;16469:127::-;;;;;;:::i;:::-;;:::i;8603:103::-;;;:::i;27584:85::-;;;;;;:::i;:::-;;:::i;7955:87::-;;;:::i;15397:104::-;;;:::i;27028:169::-;;;:::i;19755:436::-;;;;;;:::i;:::-;;:::i;16802:193::-;;;;;;:::i;:::-;;:::i;27351:134::-;;;;;;:::i;:::-;;:::i;27493:83::-;;;;;;:::i;:::-;;:::i;17058:151::-;;;;;;:::i;:::-;;:::i;8861:201::-;;;;;;:::i;:::-;;:::i;15178:100::-;15232:13;15265:5;15258:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15178:100;:::o;17529:201::-;17612:4;17629:13;17645:12;:10;:12::i;:::-;17629:28;;17668:32;17677:5;17684:7;17693:6;17668:8;:32::i;:::-;-1:-1:-1;17718:4:0;;17529:201;-1:-1:-1;;;17529:201:0:o;16298:108::-;16386:12;;16298:108;:::o;18310:295::-;18441:4;18458:15;18476:12;:10;:12::i;:::-;18458:30;;18499:38;18515:4;18521:7;18530:6;18499:15;:38::i;:::-;18548:27;18558:4;18564:2;18568:6;18548:9;:27::i;:::-;-1:-1:-1;18593:4:0;;18310:295;-1:-1:-1;;;;18310:295:0:o;16140:93::-;16223:2;16140:93;:::o;19014:238::-;19102:4;19119:13;19135:12;:10;:12::i;:::-;19119:28;;19158:64;19167:5;19174:7;19211:10;19183:25;19193:5;19200:7;19183:9;:25::i;:::-;:38;;;;:::i;:::-;19158:8;:64::i;27209:134::-;7841:13;:11;:13::i;:::-;-1:-1:-1;;;;;27300:21:0;;;::::1;;::::0;;;:12:::1;:21;::::0;;;;:35;;-1:-1:-1;;27300:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27209:134::o;26522:27::-;;;-1:-1:-1;;;;;26522:27:0;;:::o;16469:127::-;-1:-1:-1;;;;;16570:18:0;16543:7;16570:18;;;;;;;;;;;;16469:127::o;8603:103::-;7841:13;:11;:13::i;:::-;8668:30:::1;8695:1;8668:18;:30::i;:::-;8603:103::o:0;27584:85::-;7841:13;:11;:13::i;:::-;27647:8:::1;:14:::0;27584:85::o;7955:87::-;8028:6;;-1:-1:-1;;;;;8028:6:0;7955:87;:::o;15397:104::-;15453:13;15486:7;15479:14;;;;;:::i;27028:169::-;7841:13;:11;:13::i;:::-;27113:14:::1;;;;;;;;;-1:-1:-1::0;;;;;27113:14:0::1;-1:-1:-1::0;;;;;27113:22:0::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27095:54:0::1;;27158:4;27165:14;;;;;;;;;-1:-1:-1::0;;;;;27165:14:0::1;-1:-1:-1::0;;;;;27165:19:0::1;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27095:92;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27080:12;:107:::0;;-1:-1:-1;;;;;;27080:107:0::1;-1:-1:-1::0;;;;;27080:107:0;;;::::1;::::0;;;::::1;::::0;;27028:169::o;19755:436::-;19848:4;19865:13;19881:12;:10;:12::i;:::-;19865:28;;19904:24;19931:25;19941:5;19948:7;19931:9;:25::i;:::-;19904:52;;19995:15;19975:16;:35;;19967:85;;;;-1:-1:-1;;;19967:85:0;;;;;;;:::i;:::-;;;;;;;;;20088:60;20097:5;20104:7;20132:15;20113:16;:34;20088:8;:60::i;16802:193::-;16881:4;16898:13;16914:12;:10;:12::i;:::-;16898:28;;16937;16947:5;16954:2;16958:6;16937:9;:28::i;27351:134::-;7841:13;:11;:13::i;:::-;-1:-1:-1;;;;;27442:21:0;;;::::1;;::::0;;;:12:::1;:21;::::0;;;;:35;;-1:-1:-1;;27442:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27351:134::o;27493:83::-;7841:13;:11;:13::i;:::-;27555:7:::1;:13:::0;27493:83::o;17058:151::-;-1:-1:-1;;;;;17174:18:0;;;17147:7;17174:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17058:151::o;8861:201::-;7841:13;:11;:13::i;:::-;-1:-1:-1;;;;;8950:22:0;::::1;8942:73;;;;-1:-1:-1::0;;;8942:73:0::1;;;;;;;:::i;:::-;9026:28;9045:8;9026:18;:28::i;:::-;8861:201:::0;:::o;25506:125::-;;;;:::o;6506:98::-;6586:10;6506:98;:::o;23782:380::-;-1:-1:-1;;;;;23918:19:0;;23910:68;;;;-1:-1:-1;;;23910:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23997:21:0;;23989:68;;;;-1:-1:-1;;;23989:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24070:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;24122:32;;;;;24100:6;;24122:32;:::i;:::-;;;;;;;;23782:380;;;:::o;24453:453::-;24588:24;24615:25;24625:5;24632:7;24615:9;:25::i;:::-;24588:52;;-1:-1:-1;;24655:16:0;:37;24651:248;;24737:6;24717:16;:26;;24709:68;;;;-1:-1:-1;;;24709:68:0;;;;;;;:::i;:::-;24821:51;24830:5;24837:7;24865:6;24846:16;:25;24821:8;:51::i;:::-;24453:453;;;;:::o;27968:623::-;-1:-1:-1;;;;;28106:20:0;;28075:11;28106:20;;;:12;:20;;;;;;;;28105:21;:49;;;;-1:-1:-1;;;;;;28131:23:0;;;;;;:12;:23;;;;;;;;28130:24;28105:49;28101:277;;;28188:12;;-1:-1:-1;;;;;28175:25:0;;;28188:12;;28175:25;28171:196;;;28249:3;28237:8;;28228:6;:17;;;;:::i;:::-;28227:25;;;;:::i;:::-;28221:31;;28171:196;;;28288:12;;-1:-1:-1;;;;;28278:22:0;;;28288:12;;28278:22;28274:93;;;28348:3;28337:7;;28328:6;:16;;;;:::i;:::-;28327:24;;;;:::i;:::-;28321:30;;28274:93;28396:22;28421:12;28430:3;28421:6;:12;:::i;:::-;28396:37;;28444:50;28460:6;28468:9;28479:14;28444:15;:50::i;:::-;28509:7;;28505:79;;28557:9;;28533:39;;28549:6;;-1:-1:-1;;;;;28557:9:0;28568:3;28533:15;:39::i;:::-;27968:623;;;;;:::o;8120:132::-;8195:12;:10;:12::i;:::-;-1:-1:-1;;;;;8184:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8184:23:0;;8176:68;;;;-1:-1:-1;;;8176:68:0;;;;;;;:::i;9222:191::-;9315:6;;;-1:-1:-1;;;;;9332:17:0;;;-1:-1:-1;;;;;;9332:17:0;;;;;;;9365:40;;9315:6;;;9332:17;9315:6;;9365:40;;9296:16;;9365:40;9222:191;;:::o;20661:840::-;-1:-1:-1;;;;;20792:18:0;;20784:68;;;;-1:-1:-1;;;20784:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20871:16:0;;20863:64;;;;-1:-1:-1;;;20863:64:0;;;;;;;:::i;:::-;20940:38;20961:4;20967:2;20971:6;20940:20;:38::i;:::-;-1:-1:-1;;;;;21013:15:0;;20991:19;21013:15;;;;;;;;;;;21047:21;;;;21039:72;;;;-1:-1:-1;;;21039:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21147:15:0;;;:9;:15;;;;;;;;;;;21165:20;;;21147:38;;21365:13;;;;;;;;;;:23;;;;;;21417:26;;;;;;21179:6;;21417:26;:::i;:::-;;;;;;;;21456:37;21476:4;21482:2;21486:6;21456:19;:37::i;27677:283::-;-1:-1:-1;;;;;27795:18:0;;;;;;:12;:18;;;;;;;;27794:19;27786:51;;;;-1:-1:-1;;;27786:51:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27857:16:0;;;;;;:12;:16;;;;;;;;27856:17;27848:49;;;;-1:-1:-1;;;27848:49:0;;;;;;;:::i;:::-;27908:44;27935:4;27941:2;27945:6;27908:26;:44::i;14:259:1:-;;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:33;237:5;210:33;:::i;:::-;262:5;84:189;-1:-1:-1;;;84:189:1:o;278:263::-;;401:2;389:9;380:7;376:23;372:32;369:2;;;422:6;414;407:22;369:2;459:9;453:16;478:33;505:5;478:33;:::i;546:402::-;;;675:2;663:9;654:7;650:23;646:32;643:2;;;696:6;688;681:22;643:2;740:9;727:23;759:33;786:5;759:33;:::i;:::-;811:5;-1:-1:-1;868:2:1;853:18;;840:32;881:35;840:32;881:35;:::i;:::-;935:7;925:17;;;633:315;;;;;:::o;953:470::-;;;;1099:2;1087:9;1078:7;1074:23;1070:32;1067:2;;;1120:6;1112;1105:22;1067:2;1164:9;1151:23;1183:33;1210:5;1183:33;:::i;:::-;1235:5;-1:-1:-1;1292:2:1;1277:18;;1264:32;1305:35;1264:32;1305:35;:::i;:::-;1057:366;;1359:7;;-1:-1:-1;;;1413:2:1;1398:18;;;;1385:32;;1057:366::o;1428:438::-;;;1554:2;1542:9;1533:7;1529:23;1525:32;1522:2;;;1575:6;1567;1560:22;1522:2;1619:9;1606:23;1638:33;1665:5;1638:33;:::i;:::-;1690:5;-1:-1:-1;1747:2:1;1732:18;;1719:32;1789:15;;1782:23;1770:36;;1760:2;;1825:6;1817;1810:22;1871:327;;;2000:2;1988:9;1979:7;1975:23;1971:32;1968:2;;;2021:6;2013;2006:22;1968:2;2065:9;2052:23;2084:33;2111:5;2084:33;:::i;:::-;2136:5;2188:2;2173:18;;;;2160:32;;-1:-1:-1;;;1958:240:1:o;2203:190::-;;2315:2;2303:9;2294:7;2290:23;2286:32;2283:2;;;2336:6;2328;2321:22;2283:2;-1:-1:-1;2364:23:1;;2273:120;-1:-1:-1;2273:120:1:o;2398:203::-;-1:-1:-1;;;;;2562:32:1;;;;2544:51;;2532:2;2517:18;;2499:102::o;2606:304::-;-1:-1:-1;;;;;2836:15:1;;;2818:34;;2888:15;;2883:2;2868:18;;2861:43;2768:2;2753:18;;2735:175::o;2915:187::-;3080:14;;3073:22;3055:41;;3043:2;3028:18;;3010:92::o;3107:603::-;;3248:2;3277;3266:9;3259:21;3309:6;3303:13;3352:6;3347:2;3336:9;3332:18;3325:34;3377:4;3390:140;3404:6;3401:1;3398:13;3390:140;;;3499:14;;;3495:23;;3489:30;3465:17;;;3484:2;3461:26;3454:66;3419:10;;3390:140;;;3548:6;3545:1;3542:13;3539:2;;;3618:4;3613:2;3604:6;3593:9;3589:22;3585:31;3578:45;3539:2;-1:-1:-1;3694:2:1;3673:15;-1:-1:-1;;3669:29:1;3654:45;;;;3701:2;3650:54;;3228:482;-1:-1:-1;;;3228:482:1:o;3715:399::-;3917:2;3899:21;;;3956:2;3936:18;;;3929:30;3995:34;3990:2;3975:18;;3968:62;-1:-1:-1;;;4061:2:1;4046:18;;4039:33;4104:3;4089:19;;3889:225::o;4119:402::-;4321:2;4303:21;;;4360:2;4340:18;;;4333:30;4399:34;4394:2;4379:18;;4372:62;-1:-1:-1;;;4465:2:1;4450:18;;4443:36;4511:3;4496:19;;4293:228::o;4526:398::-;4728:2;4710:21;;;4767:2;4747:18;;;4740:30;4806:34;4801:2;4786:18;;4779:62;-1:-1:-1;;;4872:2:1;4857:18;;4850:32;4914:3;4899:19;;4700:224::o;4929:353::-;5131:2;5113:21;;;5170:2;5150:18;;;5143:30;5209:31;5204:2;5189:18;;5182:59;5273:2;5258:18;;5103:179::o;5287:402::-;5489:2;5471:21;;;5528:2;5508:18;;;5501:30;5567:34;5562:2;5547:18;;5540:62;-1:-1:-1;;;5633:2:1;5618:18;;5611:36;5679:3;5664:19;;5461:228::o;5694:343::-;5896:2;5878:21;;;5935:2;5915:18;;;5908:30;-1:-1:-1;;;5969:2:1;5954:18;;5947:49;6028:2;6013:18;;5868:169::o;6042:356::-;6244:2;6226:21;;;6263:18;;;6256:30;6322:34;6317:2;6302:18;;6295:62;6389:2;6374:18;;6216:182::o;6403:401::-;6605:2;6587:21;;;6644:2;6624:18;;;6617:30;6683:34;6678:2;6663:18;;6656:62;-1:-1:-1;;;6749:2:1;6734:18;;6727:35;6794:3;6779:19;;6577:227::o;6809:400::-;7011:2;6993:21;;;7050:2;7030:18;;;7023:30;7089:34;7084:2;7069:18;;7062:62;-1:-1:-1;;;7155:2:1;7140:18;;7133:34;7199:3;7184:19;;6983:226::o;7214:401::-;7416:2;7398:21;;;7455:2;7435:18;;;7428:30;7494:34;7489:2;7474:18;;7467:62;-1:-1:-1;;;7560:2:1;7545:18;;7538:35;7605:3;7590:19;;7388:227::o;7620:177::-;7766:25;;;7754:2;7739:18;;7721:76::o;7802:184::-;7974:4;7962:17;;;;7944:36;;7932:2;7917:18;;7899:87::o;7991:128::-;;8062:1;8058:6;8055:1;8052:13;8049:2;;;8068:18;;:::i;:::-;-1:-1:-1;8104:9:1;;8039:80::o;8124:217::-;;8190:1;8180:2;;-1:-1:-1;;;8215:31:1;;8269:4;8266:1;8259:15;8297:4;8222:1;8287:15;8180:2;-1:-1:-1;8326:9:1;;8170:171::o;8346:168::-;;8452:1;8448;8444:6;8440:14;8437:1;8434:21;8429:1;8422:9;8415:17;8411:45;8408:2;;;8459:18;;:::i;:::-;-1:-1:-1;8499:9:1;;8398:116::o;8519:125::-;;8587:1;8584;8581:8;8578:2;;;8592:18;;:::i;:::-;-1:-1:-1;8629:9:1;;8568:76::o;8649:380::-;8734:1;8724:12;;8781:1;8771:12;;;8792:2;;8846:4;8838:6;8834:17;8824:27;;8792:2;8899;8891:6;8888:14;8868:18;8865:38;8862:2;;;8945:10;8940:3;8936:20;8933:1;8926:31;8980:4;8977:1;8970:15;9008:4;9005:1;8998:15;8862:2;;8704:325;;;:::o;9034:127::-;9095:10;9090:3;9086:20;9083:1;9076:31;9126:4;9123:1;9116:15;9150:4;9147:1;9140:15;9166:133;-1:-1:-1;;;;;9243:31:1;;9233:42;;9223:2;;9289:1;9286;9279:12
Swarm Source
ipfs://d1cf1933c42782fafed79eaacc591862b61ff92399f76d14aad033e44363b9ed
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.