ERC-20
Overview
Max Total Supply
420,000,000,000 NPEPE
Holders
546
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
86,133,826.409032699930568298 NPEPEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NinjaPepe
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; 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); } interface IUniswapV2Factory { function createPair( address tokenA, address tokenB ) external returns (address pair); } interface IUniswapV2Router { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } 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); } } 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() external view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the name of the token. */ function name() external view virtual override returns (string memory) { return _name; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @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() external view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @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 ) external virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @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 ) external 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 ) external virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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 ) external 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 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 ) external virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** @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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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); } /** * @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); } } } 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"); 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); } } contract NinjaPepe is ERC20, Ownable { mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private _sniper; address public _marketingWallet = 0x38472dBc4306fFec61B39d66D69CBE449C183681; address public _devWallet = 0x47f43Eea3Ac62fF412D30eb064d22f5BC5630754; uint256 public feesBuy = 2500; uint256 public _feesM = 6500; uint256 public _feesLp = 0; uint256 public _feesDev = 1000; uint256 public feesSellTotal = _feesLp + _feesM + _feesDev; uint256 public _maxWallet; uint256 public _minTokensBeforeSwapping = 600; IUniswapV2Router public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool public started; bool inSwapAndLiquify; modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor() ERC20("Ninja Pepe", "NPEPE") { uint256 startSupply = 420e9 * 10 ** decimals(); _mint(msg.sender, (startSupply)); IUniswapV2Router _uniswapV2Router = IUniswapV2Router( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _isExcludedFromFee[address(uniswapV2Router)] = true; _isExcludedFromFee[msg.sender] = true; _maxWallet = startSupply / 100; _approve(msg.sender, address(uniswapV2Router), type(uint256).max); _approve(address(this), address(uniswapV2Router), type(uint256).max); } function openTrading() external onlyOwner { started = true; } function removeSnipers(address[] calldata accounts) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _sniper[accounts[i]] = false; } } function addSnipers(address[] calldata accounts) external onlyOwner { uint256 len = accounts.length; for(uint256 i = 0; i < len;) { _sniper[accounts[i]] = true; unchecked { i++; } } } function _transfer( address from, address to, uint256 amount ) internal override { require(!_sniper[from], "Sniper rejected"); if ( _isExcludedFromFee[from] || _isExcludedFromFee[to] || inSwapAndLiquify ) { super._transfer(from, to, amount); } else { require(started, "Not open yet"); uint taxAmount; if (to == uniswapV2Pair) { uint256 bal = balanceOf(address(this)); uint256 threshold = balanceOf(uniswapV2Pair) * _minTokensBeforeSwapping / 10000; if ( bal >= threshold ) { if (bal >= 3 * threshold) bal = 3 * threshold; _swapAndLiquify(bal); } taxAmount = amount * feesSellTotal / 10000; } else if (from == uniswapV2Pair) { taxAmount = amount * feesBuy / 10000; require( balanceOf(to) + amount - taxAmount <= _maxWallet, "Transfer amount exceeds max wallet" ); } else { require( balanceOf(to) + amount <= _maxWallet, "Transfer amount exceeds max wallet" ); } super._transfer(from, to, amount - taxAmount); if (taxAmount > 0) { super._transfer(from, address(this), taxAmount); } } } function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 _feesSellTotal = feesSellTotal; if (_feesSellTotal == 0) return; uint256 feeTotal = _feesSellTotal - _feesLp / 2; uint256 toSell = contractTokenBalance * feeTotal / _feesSellTotal; _swapTokensForEth(toSell); uint256 balance = address(this).balance; uint256 toDev = balance * _feesDev / feeTotal; uint256 toMarketing = balance * _feesM / feeTotal; if (_feesLp > 0) { _addLiquidity( contractTokenBalance - toSell, balance - toDev - toMarketing ); } if (toMarketing > 0) { payable(_marketingWallet).transfer(toMarketing); } if (address(this).balance > 0) { payable(_devWallet).transfer(address(this).balance); } } function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), (block.timestamp) ); } function _addLiquidity( uint256 tokenAmount, uint256 ethAmount ) private lockTheSwap { uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, owner(), block.timestamp ); } function getStatus(address a) external view returns(bool) { return _sniper[a]; } function setDevWallet(address newWallet) external onlyOwner { _devWallet = newWallet; } function setMarketingWallet(address newWallet) external onlyOwner { _marketingWallet = newWallet; } function setMinTokens(uint256 newValue) external onlyOwner { _minTokensBeforeSwapping = newValue; } function excludeFromFees(address[] calldata addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { _isExcludedFromFee[addresses[i]] = true; } } function includeInFees(address[] calldata addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { _isExcludedFromFee[addresses[i]] = false; } } function editBuyFees(uint256 newValue) external onlyOwner { feesBuy = newValue; } function editSellFees( uint256 __feesDev, uint256 __feesLp, uint256 __feesM ) external onlyOwner { _feesDev = __feesDev; _feesLp = __feesLp; _feesM = __feesM; feesSellTotal = __feesDev + __feesLp + __feesM; } function setMaxWallet(uint256 __maxWallet) external onlyOwner { _maxWallet = __maxWallet; } function getStuckETH() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } function getStuckTokens( IERC20 tokenAddress, address walletAddress, uint256 amt ) external onlyOwner { uint256 bal = tokenAddress.balanceOf(address(this)); IERC20(tokenAddress).transfer( walletAddress, amt > bal ? bal : amt ); } receive() external payable {} }
{ "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":[],"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":"_devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feesDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feesLp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feesM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_minTokensBeforeSwapping","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"addSnipers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"editBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__feesDev","type":"uint256"},{"internalType":"uint256","name":"__feesLp","type":"uint256"},{"internalType":"uint256","name":"__feesM","type":"uint256"}],"name":"editSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feesSellTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"getStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"tokenAddress","type":"address"},{"internalType":"address","name":"walletAddress","type":"address"},{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"getStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"includeInFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"removeSnipers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__maxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setMinTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600880546001600160a01b03199081167338472dbc4306ffec61b39d66d69cbe449c18368117909155600980549091167347f43eea3ac62ff412d30eb064d22f5bc56307541790556109c4600a55611964600b8190556000600c8190556103e8600d8190559162000075916200058c565b6200008191906200058c565b600e556102586010553480156200009757600080fd5b506040518060400160405280600a8152602001694e696e6a61205065706560b01b815250604051806040016040528060058152602001644e5045504560d81b8152508160039081620000ea91906200064d565b506004620000f982826200064d565b50505062000116620001106200033160201b60201c565b62000335565b6000620001266012600a62000816565b62000137906461c9f368006200082e565b905062000145338262000387565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c3919062000848565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000211573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000237919062000848565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000285573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ab919062000848565b6001600160a01b0390811660a052811660808190526000908152600660205260408082208054600160ff1991821681179092553384529190922080549091169091179055620002fc60648362000873565b600f55608051620003129033906000196200044e565b62000329306080516000196200044e60201b60201c565b505062000896565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003e35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620003f791906200058c565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620004b25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620003da565b6001600160a01b038216620005155760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620003da565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b634e487b7160e01b600052601160045260246000fd5b80820180821115620005a257620005a262000576565b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005d357607f821691505b602082108103620005f457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200064857600081815260208120601f850160051c81016020861015620006235750805b601f850160051c820191505b8181101562000644578281556001016200062f565b5050505b505050565b81516001600160401b03811115620006695762000669620005a8565b62000681816200067a8454620005be565b84620005fa565b602080601f831160018114620006b95760008415620006a05750858301515b600019600386901b1c1916600185901b17855562000644565b600085815260208120601f198616915b82811015620006ea57888601518255948401946001909101908401620006c9565b5085821015620007095787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600181815b808511156200075a5781600019048211156200073e576200073e62000576565b808516156200074c57918102915b93841c93908002906200071e565b509250929050565b6000826200077357506001620005a2565b816200078257506000620005a2565b81600181146200079b5760028114620007a657620007c6565b6001915050620005a2565b60ff841115620007ba57620007ba62000576565b50506001821b620005a2565b5060208310610133831016604e8410600b8410161715620007eb575081810a620005a2565b620007f7838362000719565b80600019048211156200080e576200080e62000576565b029392505050565b60006200082760ff84168362000762565b9392505050565b8082028115828204841417620005a257620005a262000576565b6000602082840312156200085b57600080fd5b81516001600160a01b03811681146200082757600080fd5b6000826200089157634e487b7160e01b600052601260045260246000fd5b500490565b60805160a051611cb0620008e66000396000818161044a01528181611080015281816110d5015261116d0152600081816103120152818161164e0152818161170601526117a00152611cb06000f3fe60806040526004361061023f5760003560e01c806370a082311161012e578063a9059cbb116100ab578063d3208b131161006f578063d3208b13146106cc578063dd62ed3e146106e2578063e6991e2d14610702578063f2fde38b14610722578063f476b8a41461074257600080fd5b8063a9059cbb14610641578063b41150c514610661578063c9567bf914610681578063ca1dd6d414610696578063ce3b9aa3146106ac57600080fd5b8063923ffc14116100f2578063923ffc14146105ac57806392f42870146105cc57806395d89b41146105ec578063962dfc7514610601578063a457c2d71461062157600080fd5b806370a0823114610517578063713f9cfd1461054d578063715018a61461056357806382247ec0146105785780638da5cb5b1461058e57600080fd5b8063313ce567116101bc5780635b28b246116101805780635b28b2461461048c5780635d0044ca146104ac5780635d098b38146104cc57806360620804146104ec5780636b9961501461050257600080fd5b8063313ce567146103e657806333f82cea14610402578063395093511461041857806349bd5a5e1461043857806349f2c4ae1461046c57600080fd5b806318160ddd1161020357806318160ddd146103345780631f2698ab146103535780631f53ac021461036d57806323b872dd1461038d57806330ccebb5146103ad57600080fd5b806306fdde031461024b578063095ea7b3146102765780630e7e573f146102a657806311a63e17146102c85780631694505e1461030057600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610758565b60405161026d919061187c565b60405180910390f35b34801561028257600080fd5b506102966102913660046118df565b6107ea565b604051901515815260200161026d565b3480156102b257600080fd5b506102c66102c136600461190b565b610804565b005b3480156102d457600080fd5b506009546102e8906001600160a01b031681565b6040516001600160a01b03909116815260200161026d565b34801561030c57600080fd5b506102e87f000000000000000000000000000000000000000000000000000000000000000081565b34801561034057600080fd5b506002545b60405190815260200161026d565b34801561035f57600080fd5b506011546102969060ff1681565b34801561037957600080fd5b506102c6610388366004611924565b610811565b34801561039957600080fd5b506102966103a8366004611948565b61083b565b3480156103b957600080fd5b506102966103c8366004611924565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156103f257600080fd5b506040516012815260200161026d565b34801561040e57600080fd5b50610345600b5481565b34801561042457600080fd5b506102966104333660046118df565b61085f565b34801561044457600080fd5b506102e87f000000000000000000000000000000000000000000000000000000000000000081565b34801561047857600080fd5b506102c6610487366004611989565b610881565b34801561049857600080fd5b506102c66104a7366004611948565b610900565b3480156104b857600080fd5b506102c66104c736600461190b565b610a0a565b3480156104d857600080fd5b506102c66104e7366004611924565b610a17565b3480156104f857600080fd5b5061034560105481565b34801561050e57600080fd5b506102c6610a41565b34801561052357600080fd5b50610345610532366004611924565b6001600160a01b031660009081526020819052604090205490565b34801561055957600080fd5b50610345600a5481565b34801561056f57600080fd5b506102c6610a78565b34801561058457600080fd5b50610345600f5481565b34801561059a57600080fd5b506005546001600160a01b03166102e8565b3480156105b857600080fd5b506102c66105c7366004611989565b610a8c565b3480156105d857600080fd5b506102c66105e7366004611989565b610b06565b3480156105f857600080fd5b50610260610b80565b34801561060d57600080fd5b506008546102e8906001600160a01b031681565b34801561062d57600080fd5b5061029661063c3660046118df565b610b8f565b34801561064d57600080fd5b5061029661065c3660046118df565b610c0f565b34801561066d57600080fd5b506102c661067c3660046119fe565b610c1d565b34801561068d57600080fd5b506102c6610c51565b3480156106a257600080fd5b50610345600e5481565b3480156106b857600080fd5b506102c66106c7366004611989565b610c68565b3480156106d857600080fd5b50610345600d5481565b3480156106ee57600080fd5b506103456106fd366004611a2a565b610cdf565b34801561070e57600080fd5b506102c661071d36600461190b565b610d0a565b34801561072e57600080fd5b506102c661073d366004611924565b610d17565b34801561074e57600080fd5b50610345600c5481565b60606003805461076790611a63565b80601f016020809104026020016040519081016040528092919081815260200182805461079390611a63565b80156107e05780601f106107b5576101008083540402835291602001916107e0565b820191906000526020600020905b8154815290600101906020018083116107c357829003601f168201915b5050505050905090565b6000336107f8818585610d8d565b60019150505b92915050565b61080c610eb1565b601055565b610819610eb1565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b600033610849858285610f0b565b610854858585610f7f565b506001949350505050565b6000336107f88185856108728383610cdf565b61087c9190611ab3565b610d8d565b610889610eb1565b60005b818110156108fb576000600760008585858181106108ac576108ac611ac6565b90506020020160208101906108c19190611924565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108f381611adc565b91505061088c565b505050565b610908610eb1565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa15801561094f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109739190611af5565b9050836001600160a01b031663a9059cbb848385116109925784610994565b835b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156109df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a039190611b0e565b5050505050565b610a12610eb1565b600f55565b610a1f610eb1565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b610a49610eb1565b60405133904780156108fc02916000818181858888f19350505050158015610a75573d6000803e3d6000fd5b50565b610a80610eb1565b610a8a600061128c565b565b610a94610eb1565b60005b818110156108fb57600060066000858585818110610ab757610ab7611ac6565b9050602002016020810190610acc9190611924565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610afe81611adc565b915050610a97565b610b0e610eb1565b60005b818110156108fb57600160066000858585818110610b3157610b31611ac6565b9050602002016020810190610b469190611924565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610b7881611adc565b915050610b11565b60606004805461076790611a63565b60003381610b9d8286610cdf565b905083811015610c025760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6108548286868403610d8d565b6000336107f8818585610f7f565b610c25610eb1565b600d839055600c829055600b81905580610c3f8385611ab3565b610c499190611ab3565b600e55505050565b610c59610eb1565b6011805460ff19166001179055565b610c70610eb1565b8060005b81811015610cd957600160076000868685818110610c9457610c94611ac6565b9050602002016020810190610ca99190611924565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055600101610c74565b50505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d12610eb1565b600a55565b610d1f610eb1565b6001600160a01b038116610d845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bf9565b610a758161128c565b6001600160a01b038316610def5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bf9565b6001600160a01b038216610e505760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bf9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610a8a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b6000610f178484610cdf565b90506000198114610cd95781811015610f725760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610bf9565b610cd98484848403610d8d565b6001600160a01b03831660009081526007602052604090205460ff1615610fda5760405162461bcd60e51b815260206004820152600f60248201526e14db9a5c195c881c995a9958dd1959608a1b6044820152606401610bf9565b6001600160a01b03831660009081526006602052604090205460ff168061101957506001600160a01b03821660009081526006602052604090205460ff165b8061102b5750601154610100900460ff165b1561103b576108fb8383836112de565b60115460ff1661107c5760405162461bcd60e51b815260206004820152600c60248201526b139bdd081bdc195b881e595d60a21b6044820152606401610bf9565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03160361116b5730600090815260208190526040808220546010546001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168452918320549092916127109161110c9190611b30565b6111169190611b47565b90508082106111475761112a816003611b30565b821061113e5761113b816003611b30565b91505b61114782611483565b612710600e54856111589190611b30565b6111629190611b47565b92505050611267565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03160361121c57612710600a54836111b59190611b30565b6111bf9190611b47565b9050600f5481836111e5866001600160a01b031660009081526020819052604090205490565b6111ef9190611ab3565b6111f99190611b69565b11156112175760405162461bcd60e51b8152600401610bf990611b7c565b611267565b600f548261123f856001600160a01b031660009081526020819052604090205490565b6112499190611ab3565b11156112675760405162461bcd60e51b8152600401610bf990611b7c565b61127b84846112768486611b69565b6112de565b8015610cd957610cd98430836112de565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166113425760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610bf9565b6001600160a01b0382166113a45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610bf9565b6001600160a01b0383166000908152602081905260409020548181101561141c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bf9565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6011805461ff001916610100179055600e5460008190036114a457506115da565b60006002600c546114b59190611b47565b6114bf9083611b69565b90506000826114ce8386611b30565b6114d89190611b47565b90506114e3816115e8565b600d54479060009084906114f79084611b30565b6115019190611b47565b9050600084600b54846115149190611b30565b61151e9190611b47565b600c5490915015611550576115506115368589611b69565b826115418587611b69565b61154b9190611b69565b611787565b8015611592576008546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611590573d6000803e3d6000fd5b505b47156115d3576009546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156115d1573d6000803e3d6000fd5b505b5050505050505b506011805461ff0019169055565b6011805461ff001916610100179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061162c5761162c611ac6565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ce9190611bbe565b816001815181106116e1576116e1611ac6565b6001600160a01b03928316602091820292909201015260405163791ac94760e01b81527f00000000000000000000000000000000000000000000000000000000000000009091169063791ac94790611746908590600090869030904290600401611bdb565b600060405180830381600087803b15801561176057600080fd5b505af1158015611774573d6000803e3d6000fd5b50506011805461ff001916905550505050565b6011805461ff0019166101001790556001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663f305d7198230856000806117dd6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611845573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061186a9190611c4c565b50506011805461ff0019169055505050565b600060208083528351808285015260005b818110156118a95785810183015185820160400152820161188d565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a7557600080fd5b600080604083850312156118f257600080fd5b82356118fd816118ca565b946020939093013593505050565b60006020828403121561191d57600080fd5b5035919050565b60006020828403121561193657600080fd5b8135611941816118ca565b9392505050565b60008060006060848603121561195d57600080fd5b8335611968816118ca565b92506020840135611978816118ca565b929592945050506040919091013590565b6000806020838503121561199c57600080fd5b823567ffffffffffffffff808211156119b457600080fd5b818501915085601f8301126119c857600080fd5b8135818111156119d757600080fd5b8660208260051b85010111156119ec57600080fd5b60209290920196919550909350505050565b600080600060608486031215611a1357600080fd5b505081359360208301359350604090920135919050565b60008060408385031215611a3d57600080fd5b8235611a48816118ca565b91506020830135611a58816118ca565b809150509250929050565b600181811c90821680611a7757607f821691505b602082108103611a9757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156107fe576107fe611a9d565b634e487b7160e01b600052603260045260246000fd5b600060018201611aee57611aee611a9d565b5060010190565b600060208284031215611b0757600080fd5b5051919050565b600060208284031215611b2057600080fd5b8151801515811461194157600080fd5b80820281158282048414176107fe576107fe611a9d565b600082611b6457634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156107fe576107fe611a9d565b60208082526022908201527f5472616e7366657220616d6f756e742065786365656473206d61782077616c6c604082015261195d60f21b606082015260800190565b600060208284031215611bd057600080fd5b8151611941816118ca565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611c2b5784516001600160a01b031683529383019391830191600101611c06565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611c6157600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220b9af667cc623cf4ce5f0b118e89743407ea4d830e2ebdeb29eeb7657a17f647a64736f6c63430008130033
Deployed Bytecode
0x60806040526004361061023f5760003560e01c806370a082311161012e578063a9059cbb116100ab578063d3208b131161006f578063d3208b13146106cc578063dd62ed3e146106e2578063e6991e2d14610702578063f2fde38b14610722578063f476b8a41461074257600080fd5b8063a9059cbb14610641578063b41150c514610661578063c9567bf914610681578063ca1dd6d414610696578063ce3b9aa3146106ac57600080fd5b8063923ffc14116100f2578063923ffc14146105ac57806392f42870146105cc57806395d89b41146105ec578063962dfc7514610601578063a457c2d71461062157600080fd5b806370a0823114610517578063713f9cfd1461054d578063715018a61461056357806382247ec0146105785780638da5cb5b1461058e57600080fd5b8063313ce567116101bc5780635b28b246116101805780635b28b2461461048c5780635d0044ca146104ac5780635d098b38146104cc57806360620804146104ec5780636b9961501461050257600080fd5b8063313ce567146103e657806333f82cea14610402578063395093511461041857806349bd5a5e1461043857806349f2c4ae1461046c57600080fd5b806318160ddd1161020357806318160ddd146103345780631f2698ab146103535780631f53ac021461036d57806323b872dd1461038d57806330ccebb5146103ad57600080fd5b806306fdde031461024b578063095ea7b3146102765780630e7e573f146102a657806311a63e17146102c85780631694505e1461030057600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610758565b60405161026d919061187c565b60405180910390f35b34801561028257600080fd5b506102966102913660046118df565b6107ea565b604051901515815260200161026d565b3480156102b257600080fd5b506102c66102c136600461190b565b610804565b005b3480156102d457600080fd5b506009546102e8906001600160a01b031681565b6040516001600160a01b03909116815260200161026d565b34801561030c57600080fd5b506102e87f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561034057600080fd5b506002545b60405190815260200161026d565b34801561035f57600080fd5b506011546102969060ff1681565b34801561037957600080fd5b506102c6610388366004611924565b610811565b34801561039957600080fd5b506102966103a8366004611948565b61083b565b3480156103b957600080fd5b506102966103c8366004611924565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156103f257600080fd5b506040516012815260200161026d565b34801561040e57600080fd5b50610345600b5481565b34801561042457600080fd5b506102966104333660046118df565b61085f565b34801561044457600080fd5b506102e87f000000000000000000000000bce4ab4916ded41d70568cc019c92d90c3a9dc3b81565b34801561047857600080fd5b506102c6610487366004611989565b610881565b34801561049857600080fd5b506102c66104a7366004611948565b610900565b3480156104b857600080fd5b506102c66104c736600461190b565b610a0a565b3480156104d857600080fd5b506102c66104e7366004611924565b610a17565b3480156104f857600080fd5b5061034560105481565b34801561050e57600080fd5b506102c6610a41565b34801561052357600080fd5b50610345610532366004611924565b6001600160a01b031660009081526020819052604090205490565b34801561055957600080fd5b50610345600a5481565b34801561056f57600080fd5b506102c6610a78565b34801561058457600080fd5b50610345600f5481565b34801561059a57600080fd5b506005546001600160a01b03166102e8565b3480156105b857600080fd5b506102c66105c7366004611989565b610a8c565b3480156105d857600080fd5b506102c66105e7366004611989565b610b06565b3480156105f857600080fd5b50610260610b80565b34801561060d57600080fd5b506008546102e8906001600160a01b031681565b34801561062d57600080fd5b5061029661063c3660046118df565b610b8f565b34801561064d57600080fd5b5061029661065c3660046118df565b610c0f565b34801561066d57600080fd5b506102c661067c3660046119fe565b610c1d565b34801561068d57600080fd5b506102c6610c51565b3480156106a257600080fd5b50610345600e5481565b3480156106b857600080fd5b506102c66106c7366004611989565b610c68565b3480156106d857600080fd5b50610345600d5481565b3480156106ee57600080fd5b506103456106fd366004611a2a565b610cdf565b34801561070e57600080fd5b506102c661071d36600461190b565b610d0a565b34801561072e57600080fd5b506102c661073d366004611924565b610d17565b34801561074e57600080fd5b50610345600c5481565b60606003805461076790611a63565b80601f016020809104026020016040519081016040528092919081815260200182805461079390611a63565b80156107e05780601f106107b5576101008083540402835291602001916107e0565b820191906000526020600020905b8154815290600101906020018083116107c357829003601f168201915b5050505050905090565b6000336107f8818585610d8d565b60019150505b92915050565b61080c610eb1565b601055565b610819610eb1565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b600033610849858285610f0b565b610854858585610f7f565b506001949350505050565b6000336107f88185856108728383610cdf565b61087c9190611ab3565b610d8d565b610889610eb1565b60005b818110156108fb576000600760008585858181106108ac576108ac611ac6565b90506020020160208101906108c19190611924565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108f381611adc565b91505061088c565b505050565b610908610eb1565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa15801561094f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109739190611af5565b9050836001600160a01b031663a9059cbb848385116109925784610994565b835b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156109df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a039190611b0e565b5050505050565b610a12610eb1565b600f55565b610a1f610eb1565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b610a49610eb1565b60405133904780156108fc02916000818181858888f19350505050158015610a75573d6000803e3d6000fd5b50565b610a80610eb1565b610a8a600061128c565b565b610a94610eb1565b60005b818110156108fb57600060066000858585818110610ab757610ab7611ac6565b9050602002016020810190610acc9190611924565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610afe81611adc565b915050610a97565b610b0e610eb1565b60005b818110156108fb57600160066000858585818110610b3157610b31611ac6565b9050602002016020810190610b469190611924565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610b7881611adc565b915050610b11565b60606004805461076790611a63565b60003381610b9d8286610cdf565b905083811015610c025760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6108548286868403610d8d565b6000336107f8818585610f7f565b610c25610eb1565b600d839055600c829055600b81905580610c3f8385611ab3565b610c499190611ab3565b600e55505050565b610c59610eb1565b6011805460ff19166001179055565b610c70610eb1565b8060005b81811015610cd957600160076000868685818110610c9457610c94611ac6565b9050602002016020810190610ca99190611924565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055600101610c74565b50505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d12610eb1565b600a55565b610d1f610eb1565b6001600160a01b038116610d845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bf9565b610a758161128c565b6001600160a01b038316610def5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bf9565b6001600160a01b038216610e505760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bf9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610a8a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b6000610f178484610cdf565b90506000198114610cd95781811015610f725760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610bf9565b610cd98484848403610d8d565b6001600160a01b03831660009081526007602052604090205460ff1615610fda5760405162461bcd60e51b815260206004820152600f60248201526e14db9a5c195c881c995a9958dd1959608a1b6044820152606401610bf9565b6001600160a01b03831660009081526006602052604090205460ff168061101957506001600160a01b03821660009081526006602052604090205460ff165b8061102b5750601154610100900460ff165b1561103b576108fb8383836112de565b60115460ff1661107c5760405162461bcd60e51b815260206004820152600c60248201526b139bdd081bdc195b881e595d60a21b6044820152606401610bf9565b60007f000000000000000000000000bce4ab4916ded41d70568cc019c92d90c3a9dc3b6001600160a01b0316836001600160a01b03160361116b5730600090815260208190526040808220546010546001600160a01b037f000000000000000000000000bce4ab4916ded41d70568cc019c92d90c3a9dc3b168452918320549092916127109161110c9190611b30565b6111169190611b47565b90508082106111475761112a816003611b30565b821061113e5761113b816003611b30565b91505b61114782611483565b612710600e54856111589190611b30565b6111629190611b47565b92505050611267565b7f000000000000000000000000bce4ab4916ded41d70568cc019c92d90c3a9dc3b6001600160a01b0316846001600160a01b03160361121c57612710600a54836111b59190611b30565b6111bf9190611b47565b9050600f5481836111e5866001600160a01b031660009081526020819052604090205490565b6111ef9190611ab3565b6111f99190611b69565b11156112175760405162461bcd60e51b8152600401610bf990611b7c565b611267565b600f548261123f856001600160a01b031660009081526020819052604090205490565b6112499190611ab3565b11156112675760405162461bcd60e51b8152600401610bf990611b7c565b61127b84846112768486611b69565b6112de565b8015610cd957610cd98430836112de565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166113425760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610bf9565b6001600160a01b0382166113a45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610bf9565b6001600160a01b0383166000908152602081905260409020548181101561141c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bf9565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6011805461ff001916610100179055600e5460008190036114a457506115da565b60006002600c546114b59190611b47565b6114bf9083611b69565b90506000826114ce8386611b30565b6114d89190611b47565b90506114e3816115e8565b600d54479060009084906114f79084611b30565b6115019190611b47565b9050600084600b54846115149190611b30565b61151e9190611b47565b600c5490915015611550576115506115368589611b69565b826115418587611b69565b61154b9190611b69565b611787565b8015611592576008546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611590573d6000803e3d6000fd5b505b47156115d3576009546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156115d1573d6000803e3d6000fd5b505b5050505050505b506011805461ff0019169055565b6011805461ff001916610100179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061162c5761162c611ac6565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ce9190611bbe565b816001815181106116e1576116e1611ac6565b6001600160a01b03928316602091820292909201015260405163791ac94760e01b81527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063791ac94790611746908590600090869030904290600401611bdb565b600060405180830381600087803b15801561176057600080fd5b505af1158015611774573d6000803e3d6000fd5b50506011805461ff001916905550505050565b6011805461ff0019166101001790556001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663f305d7198230856000806117dd6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611845573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061186a9190611c4c565b50506011805461ff0019169055505050565b600060208083528351808285015260005b818110156118a95785810183015185820160400152820161188d565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a7557600080fd5b600080604083850312156118f257600080fd5b82356118fd816118ca565b946020939093013593505050565b60006020828403121561191d57600080fd5b5035919050565b60006020828403121561193657600080fd5b8135611941816118ca565b9392505050565b60008060006060848603121561195d57600080fd5b8335611968816118ca565b92506020840135611978816118ca565b929592945050506040919091013590565b6000806020838503121561199c57600080fd5b823567ffffffffffffffff808211156119b457600080fd5b818501915085601f8301126119c857600080fd5b8135818111156119d757600080fd5b8660208260051b85010111156119ec57600080fd5b60209290920196919550909350505050565b600080600060608486031215611a1357600080fd5b505081359360208301359350604090920135919050565b60008060408385031215611a3d57600080fd5b8235611a48816118ca565b91506020830135611a58816118ca565b809150509250929050565b600181811c90821680611a7757607f821691505b602082108103611a9757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156107fe576107fe611a9d565b634e487b7160e01b600052603260045260246000fd5b600060018201611aee57611aee611a9d565b5060010190565b600060208284031215611b0757600080fd5b5051919050565b600060208284031215611b2057600080fd5b8151801515811461194157600080fd5b80820281158282048414176107fe576107fe611a9d565b600082611b6457634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156107fe576107fe611a9d565b60208082526022908201527f5472616e7366657220616d6f756e742065786365656473206d61782077616c6c604082015261195d60f21b606082015260800190565b600060208284031215611bd057600080fd5b8151611941816118ca565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611c2b5784516001600160a01b031683529383019391830191600101611c06565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611c6157600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220b9af667cc623cf4ce5f0b118e89743407ea4d830e2ebdeb29eeb7657a17f647a64736f6c63430008130033
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.