Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 NERD
Holders
1,478 (0.00%)
Market
Price
$0.00 @ 0.000001 ETH (+24.12%)
Onchain Market Cap
$331,026.32
Circulating Supply Market Cap
$43,815.68
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | Gate.io | NERD-USDT | $0.0033 0.0000011 Eth | $111.02 34,923.760 NERD | 70.0256% |
2 | Uniswap V2 (Ethereum) | 0XED1273928BA97EED7B49E82C2F39D512D7591112-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $0.003 0.0000012 Eth | $45.46 14,949.052 0XED1273928BA97EED7B49E82C2F39D512D7591112 | 29.9744% |
Contract Name:
NerdToken
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; /** * @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; } } /** * @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(address _newOwner) { _transferOwnership(_newOwner); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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 ); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (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); } /** * @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.zeppelin.solutions/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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve( _msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, 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"); _totalSupply += amount; _balances[account] += amount; emit Transfer(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"); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(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); } } interface IUniswapV2Factory { function createPair( address tokenA, address tokenB ) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract NerdToken is ERC20, Ownable { IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; uint256 public swapTokensAtAmount; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyFee; uint256 public sellFee; address public weth; address public feeWallet; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; bool public preMigrationPhase = true; mapping(address => bool) public preMigrationTransferrable; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapEnabled(bool enabled); event EnableTrading(); constructor( address _teamWallet, address _feeWallet ) ERC20("Nerd Token", "NERD") Ownable(_teamWallet) { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Router = _uniswapV2Router; weth = _uniswapV2Router.WETH(); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), weth); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 totalSupply = 100_000_000 * 1e18; _updateSwapTokensAtAmount((totalSupply * 1) / 100_000); // 0.001% _updateFees(3_000, 3_000); // 30% each _updateFeeWallet(_feeWallet); // exclude from paying fees or having max transaction amount _excludeFromFees(_teamWallet, true); _excludeFromFees(address(this), true); _excludeFromFees(address(0xdead), true); preMigrationTransferrable[_teamWallet] = true; _mint(_teamWallet, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; preMigrationPhase = false; emit EnableTrading(); } // remove limits after token is stable function removeLimits() external onlyOwner { limitsInEffect = false; } function updateFeeWallet(address _feeWallet) external onlyOwner { _updateFeeWallet(_feeWallet); } function _updateFeeWallet(address _feeWallet) private { require(_feeWallet != address(0), "Zero address"); feeWallet = _feeWallet; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner { require( newAmount >= (totalSupply() * 1) / 100_000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1_000, "Swap amount cannot be higher than 0.5% total supply." ); _updateSwapTokensAtAmount(newAmount); } function _updateSwapTokensAtAmount(uint256 newAmount) private { swapTokensAtAmount = newAmount; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; emit SwapEnabled(enabled); } function updateFees(uint256 _buyFee, uint256 _sellFee) public onlyOwner { _updateFees(_buyFee, _sellFee); } function _updateFees(uint256 _buyFee, uint256 _sellFee) private { require(_buyFee <= 5_000 && _sellFee <= 5_000, "Invalid fees"); // _buyFee and _sellFee <= 50% buyFee = _buyFee; sellFee = _sellFee; } function excludeFromFees(address account, bool excluded) public onlyOwner { _excludeFromFees(account, excluded); } function _excludeFromFees(address account, bool excluded) private { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair( address pair, bool value ) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); require(pair != address(0), "Zero address"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (preMigrationPhase) { require( preMigrationTransferrable[from], "Not authorized to transfer pre-migration." ); } if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fee = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellFee > 0) { fee = (amount * sellFee) / 10_000; } // on buy else if (automatedMarketMakerPairs[from] && buyFee > 0) { fee = (amount * buyFee) / 10_000; } if (fee > 0) { super._transfer(from, address(this), fee); } amount -= fee; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = weth; _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack() private { uint256 totalTokensToSwap = balanceOf(address(this)); bool success; if (totalTokensToSwap == 0) { return; } if (totalTokensToSwap > swapTokensAtAmount * 20) { totalTokensToSwap = swapTokensAtAmount * 20; } uint256 initialETHBalance = address(this).balance; swapTokensForEth(totalTokensToSwap); uint256 ethBalance = address(this).balance - initialETHBalance; (success, ) = address(feeWallet).call{value: ethBalance}(""); } function withdrawStuckNerd() external onlyOwner { uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } function withdrawStuckToken( address _token, address _to ) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{value: address(this).balance}(""); require(success); } function setPreMigrationTransferable( address _addr, bool isAuthorized ) public onlyOwner { preMigrationTransferrable[_addr] = isAuthorized; excludeFromFees(_addr, isAuthorized); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"},{"internalType":"address","name":"_feeWallet","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":[],"name":"EnableTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabled","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":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_feeWallet","type":"address"}],"name":"updateFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckNerd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526007805462ffffff19166001908117909155600e805460ff191690911790553480156200003057600080fd5b5060405162002921380380620029218339810160408190526200005391620005e2565b816040518060400160405280600a8152602001692732b932102a37b5b2b760b11b815250604051806040016040528060048152602001631391549160e21b8152508160039081620000a59190620006bf565b506004620000b48282620006bf565b505050620000c8816200031160201b60201c565b50737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052604080516315ab88c960e31b81529051829163ad5c46489160048083019260209291908290030181865afa15801562000120573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014691906200078b565b600a60006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d191906200078b565b600a546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af115801562000223573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024991906200078b565b6001600160a01b031660a08190526200026490600162000363565b6a52b7d2dcc80cd2e400000062000296620186a062000285836001620007c6565b620002919190620007e6565b600655565b620002a4610bb880620003b7565b620002af8362000418565b620002bc84600162000481565b620002c930600162000481565b620002d861dead600162000481565b6001600160a01b0384166000908152600f60205260409020805460ff19166001179055620003078482620004e0565b505050506200081f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152600d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6113888211158015620003cc57506113888111155b6200040d5760405162461bcd60e51b815260206004820152600c60248201526b496e76616c6964206665657360a01b60448201526064015b60405180910390fd5b600891909155600955565b6001600160a01b0381166200045f5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b604482015260640162000404565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166000818152600c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005385760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000404565b80600260008282546200054c919062000809565b90915550506001600160a01b038216600090815260208190526040812080548392906200057b90849062000809565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80516001600160a01b0381168114620005dd57600080fd5b919050565b60008060408385031215620005f657600080fd5b6200060183620005c5565b91506200061160208401620005c5565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200064557607f821691505b6020821081036200066657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006ba57600081815260208120601f850160051c81016020861015620006955750805b601f850160051c820191505b81811015620006b657828155600101620006a1565b5050505b505050565b81516001600160401b03811115620006db57620006db6200061a565b620006f381620006ec845462000630565b846200066c565b602080601f8311600181146200072b5760008415620007125750858301515b600019600386901b1c1916600185901b178555620006b6565b600085815260208120601f198616915b828110156200075c578886015182559484019460019091019084016200073b565b50858210156200077b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200079e57600080fd5b620007a982620005c5565b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007e057620007e0620007b0565b92915050565b6000826200080457634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007e057620007e0620007b0565b60805160a0516120c76200085a600039600081816104060152610bf80152600081816102dd01528181611bf60152611c3201526120c76000f3fe60806040526004361061024a5760003560e01c8063715018a611610139578063a9059cbb116100b6578063c02466681161007a578063c0246668146106f9578063d257b34f14610719578063dd62ed3e14610739578063e2f456051461077f578063f25f4b5614610795578063f2fde38b146107b557600080fd5b8063a9059cbb1461064a578063aa0e43881461066a578063b62496f51461068a578063bbc0c742146106ba578063bc205ad3146106d957600080fd5b8063924de9b7116100fd578063924de9b7146105c057806395d89b41146105e05780639a7a23d6146105f55780639fb64a6014610615578063a457c2d71461062a57600080fd5b8063715018a614610543578063751039fc146105585780637ca8448a1461056d5780638a8c523c1461058d5780638da5cb5b146105a257600080fd5b80633fc8cef3116101c75780634fbee1931161018b5780634fbee1931461047257806366718524146104ab5780636db79437146104cd5780636ddd1713146104ed57806370a082311461050d57600080fd5b80633fc8cef3146103be57806347062402146103de57806349bd5a5e146103f45780634a62bb65146104285780634e29e5231461044257600080fd5b806323b872dd1161020e57806323b872dd1461033657806327c8f835146103565780632b14ca561461036c578063313ce56714610382578063395093511461039e57600080fd5b806306fdde0314610256578063095ea7b3146102815780630e922ca7146102b15780631694505e146102cb57806318160ddd1461031757600080fd5b3661025157005b600080fd5b34801561026257600080fd5b5061026b6107d5565b6040516102789190611ca6565b60405180910390f35b34801561028d57600080fd5b506102a161029c366004611d10565b610867565b6040519015158152602001610278565b3480156102bd57600080fd5b50600e546102a19060ff1681565b3480156102d757600080fd5b506102ff7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610278565b34801561032357600080fd5b506002545b604051908152602001610278565b34801561034257600080fd5b506102a1610351366004611d3a565b61087e565b34801561036257600080fd5b506102ff61dead81565b34801561037857600080fd5b5061032860095481565b34801561038e57600080fd5b5060405160128152602001610278565b3480156103aa57600080fd5b506102a16103b9366004611d10565b61092d565b3480156103ca57600080fd5b50600a546102ff906001600160a01b031681565b3480156103ea57600080fd5b5061032860085481565b34801561040057600080fd5b506102ff7f000000000000000000000000000000000000000000000000000000000000000081565b34801561043457600080fd5b506007546102a19060ff1681565b34801561044e57600080fd5b506102a161045d366004611d76565b600f6020526000908152604090205460ff1681565b34801561047e57600080fd5b506102a161048d366004611d76565b6001600160a01b03166000908152600c602052604090205460ff1690565b3480156104b757600080fd5b506104cb6104c6366004611d76565b610969565b005b3480156104d957600080fd5b506104cb6104e8366004611d98565b61099f565b3480156104f957600080fd5b506007546102a19062010000900460ff1681565b34801561051957600080fd5b50610328610528366004611d76565b6001600160a01b031660009081526020819052604090205490565b34801561054f57600080fd5b506104cb6109d7565b34801561056457600080fd5b506104cb610a0d565b34801561057957600080fd5b506104cb610588366004611d76565b610a43565b34801561059957600080fd5b506104cb610acd565b3480156105ae57600080fd5b506005546001600160a01b03166102ff565b3480156105cc57600080fd5b506104cb6105db366004611dc8565b610b3d565b3480156105ec57600080fd5b5061026b610bbd565b34801561060157600080fd5b506104cb610610366004611de5565b610bcc565b34801561062157600080fd5b506104cb610cec565b34801561063657600080fd5b506102a1610645366004611d10565b610e10565b34801561065657600080fd5b506102a1610665366004611d10565b610ea9565b34801561067657600080fd5b506104cb610685366004611de5565b610eb6565b34801561069657600080fd5b506102a16106a5366004611d76565b600d6020526000908152604090205460ff1681565b3480156106c657600080fd5b506007546102a190610100900460ff1681565b3480156106e557600080fd5b506104cb6106f4366004611e1c565b610f0e565b34801561070557600080fd5b506104cb610714366004611de5565b611076565b34801561072557600080fd5b506104cb610734366004611e4f565b6110aa565b34801561074557600080fd5b50610328610754366004611e1c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078b57600080fd5b5061032860065481565b3480156107a157600080fd5b50600b546102ff906001600160a01b031681565b3480156107c157600080fd5b506104cb6107d0366004611d76565b6111f9565b6060600380546107e490611e68565b80601f016020809104026020016040519081016040528092919081815260200182805461081090611e68565b801561085d5780601f106108325761010080835404028352916020019161085d565b820191906000526020600020905b81548152906001019060200180831161084057829003601f168201915b5050505050905090565b6000610874338484611291565b5060015b92915050565b600061088b8484846113b5565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109155760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109228533858403611291565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610874918590610964908690611eb8565b611291565b6005546001600160a01b031633146109935760405162461bcd60e51b815260040161090c90611ecb565b61099c816117a9565b50565b6005546001600160a01b031633146109c95760405162461bcd60e51b815260040161090c90611ecb565b6109d38282611810565b5050565b6005546001600160a01b03163314610a015760405162461bcd60e51b815260040161090c90611ecb565b610a0b600061186a565b565b6005546001600160a01b03163314610a375760405162461bcd60e51b815260040161090c90611ecb565b6007805460ff19169055565b6005546001600160a01b03163314610a6d5760405162461bcd60e51b815260040161090c90611ecb565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610aba576040519150601f19603f3d011682016040523d82523d6000602084013e610abf565b606091505b50509050806109d357600080fd5b6005546001600160a01b03163314610af75760405162461bcd60e51b815260040161090c90611ecb565b6007805462ffff00191662010100179055600e805460ff191690556040517f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d90600090a1565b6005546001600160a01b03163314610b675760405162461bcd60e51b815260040161090c90611ecb565b60078054821515620100000262ff0000199091161790556040517fb9bbb15e341600c8d067a0cadeba219905d5ba6d422b193c9c32265d26fc51c890610bb290831515815260200190565b60405180910390a150565b6060600480546107e490611e68565b6005546001600160a01b03163314610bf65760405162461bcd60e51b815260040161090c90611ecb565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610c9d5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161090c565b6001600160a01b038216610ce25760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b604482015260640161090c565b6109d382826118bc565b6005546001600160a01b03163314610d165760405162461bcd60e51b815260040161090c90611ecb565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015610d54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d789190611f00565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610dbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de39190611f19565b5060405133904780156108fc02916000818181858888f193505050501580156109d3573d6000803e3d6000fd5b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e925760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161090c565b610e9f3385858403611291565b5060019392505050565b60006108743384846113b5565b6005546001600160a01b03163314610ee05760405162461bcd60e51b815260040161090c90611ecb565b6001600160a01b0382166000908152600f60205260409020805460ff19168215151790556109d38282611076565b6005546001600160a01b03163314610f385760405162461bcd60e51b815260040161090c90611ecb565b6001600160a01b038216610f8e5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000604482015260640161090c565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610fd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff99190611f00565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af115801561104c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110709190611f19565b50505050565b6005546001600160a01b031633146110a05760405162461bcd60e51b815260040161090c90611ecb565b6109d38282611910565b6005546001600160a01b031633146110d45760405162461bcd60e51b815260040161090c90611ecb565b620186a06110e160025490565b6110ec906001611f36565b6110f69190611f4d565b8110156111635760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161090c565b6103e861116f60025490565b61117a906005611f36565b6111849190611f4d565b8111156111f05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161090c565b61099c81600655565b6005546001600160a01b031633146112235760405162461bcd60e51b815260040161090c90611ecb565b6001600160a01b0381166112885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090c565b61099c8161186a565b6001600160a01b0383166112f35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161090c565b6001600160a01b0382166113545760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161090c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113db5760405162461bcd60e51b815260040161090c90611f6f565b6001600160a01b0382166114015760405162461bcd60e51b815260040161090c90611fb4565b600e5460ff1615611486576001600160a01b0383166000908152600f602052604090205460ff166114865760405162461bcd60e51b815260206004820152602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201526834b3b930ba34b7b71760b91b606482015260840161090c565b8060000361149f5761149a8383600061196f565b505050565b60075460ff161561159b576005546001600160a01b038481169116148015906114d657506005546001600160a01b03838116911614155b80156114ed57506001600160a01b03821661dead14155b80156115035750600554600160a01b900460ff16155b1561159b57600754610100900460ff1661159b576001600160a01b0383166000908152600c602052604090205460ff168061155657506001600160a01b0382166000908152600c602052604090205460ff165b61159b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161090c565b30600090815260208190526040902054600654811080159081906115c7575060075462010000900460ff165b80156115dd5750600554600160a01b900460ff16155b801561160257506001600160a01b0385166000908152600d602052604090205460ff16155b801561162757506001600160a01b0385166000908152600c602052604090205460ff16155b801561164c57506001600160a01b0384166000908152600c602052604090205460ff16155b1561167a576005805460ff60a01b1916600160a01b17905561166c611ac4565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152600c602052604090205460ff600160a01b9092048216159116806116c857506001600160a01b0385166000908152600c602052604090205460ff165b156116d1575060005b60008115611795576001600160a01b0386166000908152600d602052604090205460ff16801561170357506000600954115b1561172a57612710600954866117199190611f36565b6117239190611f4d565b9050611777565b6001600160a01b0387166000908152600d602052604090205460ff16801561175457506000600854115b15611777576127106008548661176a9190611f36565b6117749190611f4d565b90505b80156117885761178887308361196f565b6117928186611ff7565b94505b6117a087878761196f565b50505050505050565b6001600160a01b0381166117ee5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b604482015260640161090c565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b611388821115801561182457506113888111155b61185f5760405162461bcd60e51b815260206004820152600c60248201526b496e76616c6964206665657360a01b604482015260640161090c565b600891909155600955565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152600d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0382166000818152600c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0383166119955760405162461bcd60e51b815260040161090c90611f6f565b6001600160a01b0382166119bb5760405162461bcd60e51b815260040161090c90611fb4565b6001600160a01b03831660009081526020819052604090205481811015611a335760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161090c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a6a908490611eb8565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ab691815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611ae0575050565b600654611aee906014611f36565b821115611b0657600654611b03906014611f36565b91505b47611b1083611b6a565b6000611b1c8247611ff7565b600b546040519192506001600160a01b0316908290600081818185875af1925050503d80600081146117a0576040519150601f19603f3d011682016040523d82523d6000602084013e6117a0565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b9f57611b9f61200a565b6001600160a01b039283166020918202929092010152600a54825191169082906001908110611bd057611bd061200a565b60200260200101906001600160a01b031690816001600160a01b031681525050611c1b307f000000000000000000000000000000000000000000000000000000000000000084611291565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611c70908590600090869030904290600401612020565b600060405180830381600087803b158015611c8a57600080fd5b505af1158015611c9e573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611cd357858101830151858201604001528201611cb7565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114611d0b57600080fd5b919050565b60008060408385031215611d2357600080fd5b611d2c83611cf4565b946020939093013593505050565b600080600060608486031215611d4f57600080fd5b611d5884611cf4565b9250611d6660208501611cf4565b9150604084013590509250925092565b600060208284031215611d8857600080fd5b611d9182611cf4565b9392505050565b60008060408385031215611dab57600080fd5b50508035926020909101359150565b801515811461099c57600080fd5b600060208284031215611dda57600080fd5b8135611d9181611dba565b60008060408385031215611df857600080fd5b611e0183611cf4565b91506020830135611e1181611dba565b809150509250929050565b60008060408385031215611e2f57600080fd5b611e3883611cf4565b9150611e4660208401611cf4565b90509250929050565b600060208284031215611e6157600080fd5b5035919050565b600181811c90821680611e7c57607f821691505b602082108103611e9c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561087857610878611ea2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611f1257600080fd5b5051919050565b600060208284031215611f2b57600080fd5b8151611d9181611dba565b808202811582820484141761087857610878611ea2565b600082611f6a57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561087857610878611ea2565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120705784516001600160a01b03168352938301939183019160010161204b565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212203b047f507f08a18f92d890d1fa92dcd231d778c9173f975d67ccaba63871421764736f6c63430008130033000000000000000000000000b777aee78f9711d8618458b3e12855d6a5cc3b9500000000000000000000000055d16b27ae7f76aed29fbf5c56d886ea3b63e320
Deployed Bytecode
0x60806040526004361061024a5760003560e01c8063715018a611610139578063a9059cbb116100b6578063c02466681161007a578063c0246668146106f9578063d257b34f14610719578063dd62ed3e14610739578063e2f456051461077f578063f25f4b5614610795578063f2fde38b146107b557600080fd5b8063a9059cbb1461064a578063aa0e43881461066a578063b62496f51461068a578063bbc0c742146106ba578063bc205ad3146106d957600080fd5b8063924de9b7116100fd578063924de9b7146105c057806395d89b41146105e05780639a7a23d6146105f55780639fb64a6014610615578063a457c2d71461062a57600080fd5b8063715018a614610543578063751039fc146105585780637ca8448a1461056d5780638a8c523c1461058d5780638da5cb5b146105a257600080fd5b80633fc8cef3116101c75780634fbee1931161018b5780634fbee1931461047257806366718524146104ab5780636db79437146104cd5780636ddd1713146104ed57806370a082311461050d57600080fd5b80633fc8cef3146103be57806347062402146103de57806349bd5a5e146103f45780634a62bb65146104285780634e29e5231461044257600080fd5b806323b872dd1161020e57806323b872dd1461033657806327c8f835146103565780632b14ca561461036c578063313ce56714610382578063395093511461039e57600080fd5b806306fdde0314610256578063095ea7b3146102815780630e922ca7146102b15780631694505e146102cb57806318160ddd1461031757600080fd5b3661025157005b600080fd5b34801561026257600080fd5b5061026b6107d5565b6040516102789190611ca6565b60405180910390f35b34801561028d57600080fd5b506102a161029c366004611d10565b610867565b6040519015158152602001610278565b3480156102bd57600080fd5b50600e546102a19060ff1681565b3480156102d757600080fd5b506102ff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610278565b34801561032357600080fd5b506002545b604051908152602001610278565b34801561034257600080fd5b506102a1610351366004611d3a565b61087e565b34801561036257600080fd5b506102ff61dead81565b34801561037857600080fd5b5061032860095481565b34801561038e57600080fd5b5060405160128152602001610278565b3480156103aa57600080fd5b506102a16103b9366004611d10565b61092d565b3480156103ca57600080fd5b50600a546102ff906001600160a01b031681565b3480156103ea57600080fd5b5061032860085481565b34801561040057600080fd5b506102ff7f00000000000000000000000038e99721ff136f55188c8519b86f220b4f34c36d81565b34801561043457600080fd5b506007546102a19060ff1681565b34801561044e57600080fd5b506102a161045d366004611d76565b600f6020526000908152604090205460ff1681565b34801561047e57600080fd5b506102a161048d366004611d76565b6001600160a01b03166000908152600c602052604090205460ff1690565b3480156104b757600080fd5b506104cb6104c6366004611d76565b610969565b005b3480156104d957600080fd5b506104cb6104e8366004611d98565b61099f565b3480156104f957600080fd5b506007546102a19062010000900460ff1681565b34801561051957600080fd5b50610328610528366004611d76565b6001600160a01b031660009081526020819052604090205490565b34801561054f57600080fd5b506104cb6109d7565b34801561056457600080fd5b506104cb610a0d565b34801561057957600080fd5b506104cb610588366004611d76565b610a43565b34801561059957600080fd5b506104cb610acd565b3480156105ae57600080fd5b506005546001600160a01b03166102ff565b3480156105cc57600080fd5b506104cb6105db366004611dc8565b610b3d565b3480156105ec57600080fd5b5061026b610bbd565b34801561060157600080fd5b506104cb610610366004611de5565b610bcc565b34801561062157600080fd5b506104cb610cec565b34801561063657600080fd5b506102a1610645366004611d10565b610e10565b34801561065657600080fd5b506102a1610665366004611d10565b610ea9565b34801561067657600080fd5b506104cb610685366004611de5565b610eb6565b34801561069657600080fd5b506102a16106a5366004611d76565b600d6020526000908152604090205460ff1681565b3480156106c657600080fd5b506007546102a190610100900460ff1681565b3480156106e557600080fd5b506104cb6106f4366004611e1c565b610f0e565b34801561070557600080fd5b506104cb610714366004611de5565b611076565b34801561072557600080fd5b506104cb610734366004611e4f565b6110aa565b34801561074557600080fd5b50610328610754366004611e1c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078b57600080fd5b5061032860065481565b3480156107a157600080fd5b50600b546102ff906001600160a01b031681565b3480156107c157600080fd5b506104cb6107d0366004611d76565b6111f9565b6060600380546107e490611e68565b80601f016020809104026020016040519081016040528092919081815260200182805461081090611e68565b801561085d5780601f106108325761010080835404028352916020019161085d565b820191906000526020600020905b81548152906001019060200180831161084057829003601f168201915b5050505050905090565b6000610874338484611291565b5060015b92915050565b600061088b8484846113b5565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109155760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109228533858403611291565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610874918590610964908690611eb8565b611291565b6005546001600160a01b031633146109935760405162461bcd60e51b815260040161090c90611ecb565b61099c816117a9565b50565b6005546001600160a01b031633146109c95760405162461bcd60e51b815260040161090c90611ecb565b6109d38282611810565b5050565b6005546001600160a01b03163314610a015760405162461bcd60e51b815260040161090c90611ecb565b610a0b600061186a565b565b6005546001600160a01b03163314610a375760405162461bcd60e51b815260040161090c90611ecb565b6007805460ff19169055565b6005546001600160a01b03163314610a6d5760405162461bcd60e51b815260040161090c90611ecb565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610aba576040519150601f19603f3d011682016040523d82523d6000602084013e610abf565b606091505b50509050806109d357600080fd5b6005546001600160a01b03163314610af75760405162461bcd60e51b815260040161090c90611ecb565b6007805462ffff00191662010100179055600e805460ff191690556040517f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d90600090a1565b6005546001600160a01b03163314610b675760405162461bcd60e51b815260040161090c90611ecb565b60078054821515620100000262ff0000199091161790556040517fb9bbb15e341600c8d067a0cadeba219905d5ba6d422b193c9c32265d26fc51c890610bb290831515815260200190565b60405180910390a150565b6060600480546107e490611e68565b6005546001600160a01b03163314610bf65760405162461bcd60e51b815260040161090c90611ecb565b7f00000000000000000000000038e99721ff136f55188c8519b86f220b4f34c36d6001600160a01b0316826001600160a01b031603610c9d5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161090c565b6001600160a01b038216610ce25760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b604482015260640161090c565b6109d382826118bc565b6005546001600160a01b03163314610d165760405162461bcd60e51b815260040161090c90611ecb565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015610d54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d789190611f00565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610dbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de39190611f19565b5060405133904780156108fc02916000818181858888f193505050501580156109d3573d6000803e3d6000fd5b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e925760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161090c565b610e9f3385858403611291565b5060019392505050565b60006108743384846113b5565b6005546001600160a01b03163314610ee05760405162461bcd60e51b815260040161090c90611ecb565b6001600160a01b0382166000908152600f60205260409020805460ff19168215151790556109d38282611076565b6005546001600160a01b03163314610f385760405162461bcd60e51b815260040161090c90611ecb565b6001600160a01b038216610f8e5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000604482015260640161090c565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610fd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff99190611f00565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af115801561104c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110709190611f19565b50505050565b6005546001600160a01b031633146110a05760405162461bcd60e51b815260040161090c90611ecb565b6109d38282611910565b6005546001600160a01b031633146110d45760405162461bcd60e51b815260040161090c90611ecb565b620186a06110e160025490565b6110ec906001611f36565b6110f69190611f4d565b8110156111635760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161090c565b6103e861116f60025490565b61117a906005611f36565b6111849190611f4d565b8111156111f05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161090c565b61099c81600655565b6005546001600160a01b031633146112235760405162461bcd60e51b815260040161090c90611ecb565b6001600160a01b0381166112885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090c565b61099c8161186a565b6001600160a01b0383166112f35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161090c565b6001600160a01b0382166113545760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161090c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113db5760405162461bcd60e51b815260040161090c90611f6f565b6001600160a01b0382166114015760405162461bcd60e51b815260040161090c90611fb4565b600e5460ff1615611486576001600160a01b0383166000908152600f602052604090205460ff166114865760405162461bcd60e51b815260206004820152602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201526834b3b930ba34b7b71760b91b606482015260840161090c565b8060000361149f5761149a8383600061196f565b505050565b60075460ff161561159b576005546001600160a01b038481169116148015906114d657506005546001600160a01b03838116911614155b80156114ed57506001600160a01b03821661dead14155b80156115035750600554600160a01b900460ff16155b1561159b57600754610100900460ff1661159b576001600160a01b0383166000908152600c602052604090205460ff168061155657506001600160a01b0382166000908152600c602052604090205460ff165b61159b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161090c565b30600090815260208190526040902054600654811080159081906115c7575060075462010000900460ff165b80156115dd5750600554600160a01b900460ff16155b801561160257506001600160a01b0385166000908152600d602052604090205460ff16155b801561162757506001600160a01b0385166000908152600c602052604090205460ff16155b801561164c57506001600160a01b0384166000908152600c602052604090205460ff16155b1561167a576005805460ff60a01b1916600160a01b17905561166c611ac4565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152600c602052604090205460ff600160a01b9092048216159116806116c857506001600160a01b0385166000908152600c602052604090205460ff165b156116d1575060005b60008115611795576001600160a01b0386166000908152600d602052604090205460ff16801561170357506000600954115b1561172a57612710600954866117199190611f36565b6117239190611f4d565b9050611777565b6001600160a01b0387166000908152600d602052604090205460ff16801561175457506000600854115b15611777576127106008548661176a9190611f36565b6117749190611f4d565b90505b80156117885761178887308361196f565b6117928186611ff7565b94505b6117a087878761196f565b50505050505050565b6001600160a01b0381166117ee5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b604482015260640161090c565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b611388821115801561182457506113888111155b61185f5760405162461bcd60e51b815260206004820152600c60248201526b496e76616c6964206665657360a01b604482015260640161090c565b600891909155600955565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152600d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0382166000818152600c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0383166119955760405162461bcd60e51b815260040161090c90611f6f565b6001600160a01b0382166119bb5760405162461bcd60e51b815260040161090c90611fb4565b6001600160a01b03831660009081526020819052604090205481811015611a335760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161090c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a6a908490611eb8565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ab691815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611ae0575050565b600654611aee906014611f36565b821115611b0657600654611b03906014611f36565b91505b47611b1083611b6a565b6000611b1c8247611ff7565b600b546040519192506001600160a01b0316908290600081818185875af1925050503d80600081146117a0576040519150601f19603f3d011682016040523d82523d6000602084013e6117a0565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b9f57611b9f61200a565b6001600160a01b039283166020918202929092010152600a54825191169082906001908110611bd057611bd061200a565b60200260200101906001600160a01b031690816001600160a01b031681525050611c1b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611291565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611c70908590600090869030904290600401612020565b600060405180830381600087803b158015611c8a57600080fd5b505af1158015611c9e573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611cd357858101830151858201604001528201611cb7565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114611d0b57600080fd5b919050565b60008060408385031215611d2357600080fd5b611d2c83611cf4565b946020939093013593505050565b600080600060608486031215611d4f57600080fd5b611d5884611cf4565b9250611d6660208501611cf4565b9150604084013590509250925092565b600060208284031215611d8857600080fd5b611d9182611cf4565b9392505050565b60008060408385031215611dab57600080fd5b50508035926020909101359150565b801515811461099c57600080fd5b600060208284031215611dda57600080fd5b8135611d9181611dba565b60008060408385031215611df857600080fd5b611e0183611cf4565b91506020830135611e1181611dba565b809150509250929050565b60008060408385031215611e2f57600080fd5b611e3883611cf4565b9150611e4660208401611cf4565b90509250929050565b600060208284031215611e6157600080fd5b5035919050565b600181811c90821680611e7c57607f821691505b602082108103611e9c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561087857610878611ea2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611f1257600080fd5b5051919050565b600060208284031215611f2b57600080fd5b8151611d9181611dba565b808202811582820484141761087857610878611ea2565b600082611f6a57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561087857610878611ea2565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120705784516001600160a01b03168352938301939183019160010161204b565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212203b047f507f08a18f92d890d1fa92dcd231d778c9173f975d67ccaba63871421764736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b777aee78f9711d8618458b3e12855d6a5cc3b9500000000000000000000000055d16b27ae7f76aed29fbf5c56d886ea3b63e320
-----Decoded View---------------
Arg [0] : _teamWallet (address): 0xB777AEe78F9711D8618458B3e12855D6a5cc3B95
Arg [1] : _feeWallet (address): 0x55d16b27aE7F76aeD29fBF5c56D886Ea3B63E320
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000b777aee78f9711d8618458b3e12855d6a5cc3b95
Arg [1] : 00000000000000000000000055d16b27ae7f76aed29fbf5c56d886ea3b63e320
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.