ERC-20
Overview
Max Total Supply
1,000,000,000 CCAI
Holders
406
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
31,373.135536919 CCAIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CodeCraftAI
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* Website: https://www.codecraftai.app/ Telegram: https://t.me/CodeCraftAI Twitter: https://twitter.com/codecraft_ai */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./interfaces/IUniswapV2Factory.sol"; import "./interfaces/IUniswapV2Router02.sol"; contract CodeCraftAI is Context, IERC20, IERC20Metadata, Ownable { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; string private constant _name = "Code Craft AI"; string private constant _symbol = "CCAI"; IUniswapV2Router02 private _uniswapV2Router; address private uniswapV2Pair; address payable private immutable _taxWallet; mapping(address => bool) private _isExcludedFromFee; uint8 private constant _decimals = 9; uint32 public buyTax = 50000; uint32 public sellTax = 200000; uint256 private _totalSupply = 10 ** 9 * 10 ** _decimals; uint256 public maxTrxnAmount = _totalSupply.mul(2).div(100); uint256 public maxWalletSize = _totalSupply.mul(2).div(100); bool private inSwap; modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor(address uniswapRouter) { require(uniswapRouter != address(0), "UniswapRouter is the zero address"); _uniswapV2Router = IUniswapV2Router02(uniswapRouter); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair( address(this), _uniswapV2Router.WETH() ); _balances[owner()] = _totalSupply; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _taxWallet = payable(_msgSender()); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public view returns (uint256) { return _totalSupply; } function balanceOf(address account) public view returns (uint256) { return _balances[account]; } function transfer(address to, uint256 amount) public returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } function transferFrom(address from, address to, uint256 amount) public returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public 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; } function setBuyCommisioPercent(uint32 buyTaxPercent) external onlyOwner { require(buyTaxPercent <= 50000, "Buy tax restricted by 10%"); buyTax = buyTaxPercent; } function setSellCommisioPercent(uint32 sellTaxPercent) external onlyOwner { require(sellTaxPercent <= 50000, "Sell tax restricted by 10%"); sellTax = sellTaxPercent; } function ChangeWallletRestrictions(uint8 percent) external onlyOwner { uint256 localtotalSupply = _totalSupply; maxTrxnAmount = localtotalSupply.mul(percent).div(100); maxWalletSize = localtotalSupply.mul(percent).div(100); } function redeemAllRestriction() external onlyOwner { buyTax = 0; sellTax = 0; _transferOwnership(address(0)); } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); address uniswapV2PairLocal = uniswapV2Pair; IUniswapV2Router02 uniswapV2Router = _uniswapV2Router; uint256 lMaxTrxnAmunt = maxTrxnAmount; uint256 lMaxWalletSize = maxWalletSize; uint32 lbuyTax = buyTax; uint32 lsellTax = sellTax; uint256 taxWalletBalance = _balances[address(this)]; bool isSelling; uint256 taxAmount; // Buy condition if (lbuyTax > 0 && from == uniswapV2PairLocal && !_isExcludedFromFee[to]) { require(amount <= lMaxTrxnAmunt, "Exceeds the maxTrxnAmount."); require(balanceOf(to) + amount <= lMaxWalletSize, "Exceeds the maxWalletSize."); taxAmount = amount.mul(lbuyTax).div(uint256(1e6)); } // Sell Condition else if (!inSwap && lsellTax > 0 && to == uniswapV2PairLocal && !_isExcludedFromFee[from]) { taxAmount = amount.mul(lsellTax).div(uint256(1e6)); isSelling = true; } if (taxAmount > 0) { amount = amount.sub(taxAmount); taxWalletBalance = taxWalletBalance.add(taxAmount); _balances[address(this)] = taxWalletBalance; } if (isSelling && taxWalletBalance > 0) { swapTokensForEth(taxWalletBalance, address(uniswapV2Router)); uint256 currentETHBalance = address(this).balance; if (currentETHBalance > 0) { sendCommisionsToTeam(currentETHBalance); } } uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance.sub(amount); _balances[to] += amount; } emit Transfer(from, to, amount); } function _burn(address account, uint256 amount) private { 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.sub(amount); // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); } function _approve(address owner, address spender, uint256 amount) private { 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 _spendAllowance(address owner, address spender, uint256 amount) private { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } function swapTokensForEth(uint256 tokenAmount, address uniswapV2RouterAddress) private lockTheSwap { IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02(uniswapV2RouterAddress); address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendCommisionsToTeam(uint256 amount) private { _taxWallet.transfer(amount); } receive() external payable {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; 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; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; 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 (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"uniswapRouter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"percent","type":"uint8"}],"name":"ChangeWallletRestrictions","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":"buyTax","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTrxnAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redeemAllRestriction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"buyTaxPercent","type":"uint32"}],"name":"setBuyCommisioPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"sellTaxPercent","type":"uint32"}],"name":"setSellCommisioPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052600680546001600160401b03191666030d400000c3501790556200002b6009600a620004ec565b6200003b90633b9aca00620004fd565b6007556200007560646200006160026007546200036460201b6200075e1790919060201c565b6200037b60201b620007711790919060201c565b6008556200009b60646200006160026007546200036460201b6200075e1790919060201c565b600955348015620000ab57600080fd5b506040516200181238038062001812833981016040819052620000ce9162000517565b620000d93362000389565b6001600160a01b0381166200013e5760405162461bcd60e51b815260206004820152602160248201527f556e6973776170526f7574657220697320746865207a65726f206164647265736044820152607360f81b606482015260840160405180910390fd5b600380546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000198573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001be919062000517565b6001600160a01b031663c9c6539630600360009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000221573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000247919062000517565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000295573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bb919062000517565b600480546001600160a01b0319166001600160a01b0392831617905560075460008054909216825260016020819052604083209190915590600590620003096000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526005909252902080549091166001179055620003513390565b6001600160a01b0316608052506200056c565b6000620003728284620004fd565b90505b92915050565b600062000372828462000549565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000430578160001904821115620004145762000414620003d9565b808516156200042257918102915b93841c9390800290620003f4565b509250929050565b600082620004495750600162000375565b81620004585750600062000375565b81600181146200047157600281146200047c576200049c565b600191505062000375565b60ff841115620004905762000490620003d9565b50506001821b62000375565b5060208310610133831016604e8410600b8410161715620004c1575081810a62000375565b620004cd8383620003ef565b8060001904821115620004e457620004e4620003d9565b029392505050565b60006200037260ff84168362000438565b8082028115828204841417620003755762000375620003d9565b6000602082840312156200052a57600080fd5b81516001600160a01b03811681146200054257600080fd5b9392505050565b6000826200056757634e487b7160e01b600052601260045260246000fd5b500490565b60805161128a620005886000396000610f7f015261128a6000f3fe6080604052600436106101395760003560e01c8063715018a6116100ab578063a457c2d71161006f578063a457c2d714610398578063a9059cbb146103b8578063cbe80219146103d8578063cc1776d3146103ed578063dd62ed3e14610412578063f2fde38b1461043257600080fd5b8063715018a6146102f85780638da5cb5b1461030d5780638f3fa8601461033557806395d89b411461034b5780639fb672dd1461037857600080fd5b806339509351116100fd57806339509351146102185780634f7041a514610238578063587a7e571461026a578063613f98b7146102805780636b45159a146102a257806370a08231146102c257600080fd5b806306fdde0314610145578063095ea7b31461018d57806318160ddd146101bd57806323b872dd146101dc578063313ce567146101fc57600080fd5b3661014057005b600080fd5b34801561015157600080fd5b5060408051808201909152600d81526c436f646520437261667420414960981b60208201525b6040516101849190610fcc565b60405180910390f35b34801561019957600080fd5b506101ad6101a836600461102f565b610452565b6040519015158152602001610184565b3480156101c957600080fd5b506007545b604051908152602001610184565b3480156101e857600080fd5b506101ad6101f736600461105b565b61046c565b34801561020857600080fd5b5060405160098152602001610184565b34801561022457600080fd5b506101ad61023336600461102f565b610490565b34801561024457600080fd5b506006546102559063ffffffff1681565b60405163ffffffff9091168152602001610184565b34801561027657600080fd5b506101ce60085481565b34801561028c57600080fd5b506102a061029b36600461109c565b6104b2565b005b3480156102ae57600080fd5b506102a06102bd36600461109c565b610533565b3480156102ce57600080fd5b506101ce6102dd3660046110c2565b6001600160a01b031660009081526001602052604090205490565b34801561030457600080fd5b506102a06105bb565b34801561031957600080fd5b506000546040516001600160a01b039091168152602001610184565b34801561034157600080fd5b506101ce60095481565b34801561035757600080fd5b506040805180820190915260048152634343414960e01b6020820152610177565b34801561038457600080fd5b506102a06103933660046110df565b6105cf565b3480156103a457600080fd5b506101ad6103b336600461102f565b61060e565b3480156103c457600080fd5b506101ad6103d336600461102f565b610689565b3480156103e457600080fd5b506102a0610697565b3480156103f957600080fd5b5060065461025590640100000000900463ffffffff1681565b34801561041e57600080fd5b506101ce61042d366004611102565b6106ba565b34801561043e57600080fd5b506102a061044d3660046110c2565b6106e5565b60003361046081858561077d565b60019150505b92915050565b60003361047a8582856108a1565b61048585858561091b565b506001949350505050565b6000336104608185856104a383836106ba565b6104ad9190611151565b61077d565b6104ba610d33565b61c3508163ffffffff1611156105175760405162461bcd60e51b815260206004820152601960248201527f427579207461782072657374726963746564206279203130250000000000000060448201526064015b60405180910390fd5b6006805463ffffffff191663ffffffff92909216919091179055565b61053b610d33565b61c3508163ffffffff1611156105935760405162461bcd60e51b815260206004820152601a60248201527f53656c6c20746178207265737472696374656420627920313025000000000000604482015260640161050e565b6006805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b6105c3610d33565b6105cd6000610d8d565b565b6105d7610d33565b6007546105f260646105ec8360ff861661075e565b90610771565b60085561060760646105ec8360ff861661075e565b6009555050565b6000338161061c82866106ba565b90508381101561067c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161050e565b610485828686840361077d565b60003361046081858561091b565b61069f610d33565b6006805467ffffffffffffffff191690556105cd6000610d8d565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106ed610d33565b6001600160a01b0381166107525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161050e565b61075b81610d8d565b50565b600061076a8284611164565b9392505050565b600061076a828461117b565b6001600160a01b0383166107df5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161050e565b6001600160a01b0382166108405760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161050e565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108ad84846106ba565b9050600019811461091557818110156109085760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161050e565b610915848484840361077d565b50505050565b6001600160a01b03831661097f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161050e565b6001600160a01b0382166109e15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161050e565b600454600354600854600954600654306000908152600160205260408120546001600160a01b03968716969095169463ffffffff8084169364010000000090041691808415801590610a445750886001600160a01b03168c6001600160a01b0316145b8015610a6957506001600160a01b038b1660009081526005602052604090205460ff16155b15610b5857868a1115610abe5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d61785472786e416d6f756e742e000000000000604482015260640161050e565b858a610adf8d6001600160a01b031660009081526001602052604090205490565b610ae99190611151565b1115610b375760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161050e565b610b51620f42406105ec8c63ffffffff808a169061075e16565b9050610bd9565b600a5460ff16158015610b71575060008463ffffffff16115b8015610b8e5750886001600160a01b03168b6001600160a01b0316145b8015610bb357506001600160a01b038c1660009081526005602052604090205460ff16155b15610bd957610bd2620f42406105ec8c63ffffffff8089169061075e16565b9050600191505b8015610c0a57610be98a82610ddd565b9950610bf58382610de9565b30600090815260016020526040902081905592505b818015610c175750600083115b15610c3857610c268389610df5565b478015610c3657610c3681610f72565b505b6001600160a01b038c166000908152600160205260409020548a811015610cb05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161050e565b610cba818c610ddd565b6001600160a01b03808f1660008181526001602052604080822094909455918f168083529183902080548f01905591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d1c908f815260200190565b60405180910390a350505050505050505050505050565b6000546001600160a01b031633146105cd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161050e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061076a828461119d565b600061076a8284611151565b600a805460ff19166001179055604080516002808252606082018352839260009291906020830190803683370190505090503081600081518110610e3b57610e3b6111b0565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebd91906111c6565b81600181518110610ed057610ed06111b0565b60200260200101906001600160a01b031690816001600160a01b031681525050610efb30838661077d565b60405163791ac94760e01b81526001600160a01b0383169063791ac94790610f309087906000908690309042906004016111e3565b600060405180830381600087803b158015610f4a57600080fd5b505af1158015610f5e573d6000803e3d6000fd5b5050600a805460ff19169055505050505050565b6040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169082156108fc029083906000818181858888f19350505050158015610fc8573d6000803e3d6000fd5b5050565b600060208083528351808285015260005b81811015610ff957858101830151858201604001528201610fdd565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461075b57600080fd5b6000806040838503121561104257600080fd5b823561104d8161101a565b946020939093013593505050565b60008060006060848603121561107057600080fd5b833561107b8161101a565b9250602084013561108b8161101a565b929592945050506040919091013590565b6000602082840312156110ae57600080fd5b813563ffffffff8116811461076a57600080fd5b6000602082840312156110d457600080fd5b813561076a8161101a565b6000602082840312156110f157600080fd5b813560ff8116811461076a57600080fd5b6000806040838503121561111557600080fd5b82356111208161101a565b915060208301356111308161101a565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104665761046661113b565b80820281158282048414176104665761046661113b565b60008261119857634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156104665761046661113b565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156111d857600080fd5b815161076a8161101a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156112335784516001600160a01b03168352938301939183019160010161120e565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212201b0ad38cac89a58e9fb4c3c5927387dd07ea07d5406193d7978e6251f15edabf64736f6c634300081100330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode
0x6080604052600436106101395760003560e01c8063715018a6116100ab578063a457c2d71161006f578063a457c2d714610398578063a9059cbb146103b8578063cbe80219146103d8578063cc1776d3146103ed578063dd62ed3e14610412578063f2fde38b1461043257600080fd5b8063715018a6146102f85780638da5cb5b1461030d5780638f3fa8601461033557806395d89b411461034b5780639fb672dd1461037857600080fd5b806339509351116100fd57806339509351146102185780634f7041a514610238578063587a7e571461026a578063613f98b7146102805780636b45159a146102a257806370a08231146102c257600080fd5b806306fdde0314610145578063095ea7b31461018d57806318160ddd146101bd57806323b872dd146101dc578063313ce567146101fc57600080fd5b3661014057005b600080fd5b34801561015157600080fd5b5060408051808201909152600d81526c436f646520437261667420414960981b60208201525b6040516101849190610fcc565b60405180910390f35b34801561019957600080fd5b506101ad6101a836600461102f565b610452565b6040519015158152602001610184565b3480156101c957600080fd5b506007545b604051908152602001610184565b3480156101e857600080fd5b506101ad6101f736600461105b565b61046c565b34801561020857600080fd5b5060405160098152602001610184565b34801561022457600080fd5b506101ad61023336600461102f565b610490565b34801561024457600080fd5b506006546102559063ffffffff1681565b60405163ffffffff9091168152602001610184565b34801561027657600080fd5b506101ce60085481565b34801561028c57600080fd5b506102a061029b36600461109c565b6104b2565b005b3480156102ae57600080fd5b506102a06102bd36600461109c565b610533565b3480156102ce57600080fd5b506101ce6102dd3660046110c2565b6001600160a01b031660009081526001602052604090205490565b34801561030457600080fd5b506102a06105bb565b34801561031957600080fd5b506000546040516001600160a01b039091168152602001610184565b34801561034157600080fd5b506101ce60095481565b34801561035757600080fd5b506040805180820190915260048152634343414960e01b6020820152610177565b34801561038457600080fd5b506102a06103933660046110df565b6105cf565b3480156103a457600080fd5b506101ad6103b336600461102f565b61060e565b3480156103c457600080fd5b506101ad6103d336600461102f565b610689565b3480156103e457600080fd5b506102a0610697565b3480156103f957600080fd5b5060065461025590640100000000900463ffffffff1681565b34801561041e57600080fd5b506101ce61042d366004611102565b6106ba565b34801561043e57600080fd5b506102a061044d3660046110c2565b6106e5565b60003361046081858561077d565b60019150505b92915050565b60003361047a8582856108a1565b61048585858561091b565b506001949350505050565b6000336104608185856104a383836106ba565b6104ad9190611151565b61077d565b6104ba610d33565b61c3508163ffffffff1611156105175760405162461bcd60e51b815260206004820152601960248201527f427579207461782072657374726963746564206279203130250000000000000060448201526064015b60405180910390fd5b6006805463ffffffff191663ffffffff92909216919091179055565b61053b610d33565b61c3508163ffffffff1611156105935760405162461bcd60e51b815260206004820152601a60248201527f53656c6c20746178207265737472696374656420627920313025000000000000604482015260640161050e565b6006805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b6105c3610d33565b6105cd6000610d8d565b565b6105d7610d33565b6007546105f260646105ec8360ff861661075e565b90610771565b60085561060760646105ec8360ff861661075e565b6009555050565b6000338161061c82866106ba565b90508381101561067c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161050e565b610485828686840361077d565b60003361046081858561091b565b61069f610d33565b6006805467ffffffffffffffff191690556105cd6000610d8d565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106ed610d33565b6001600160a01b0381166107525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161050e565b61075b81610d8d565b50565b600061076a8284611164565b9392505050565b600061076a828461117b565b6001600160a01b0383166107df5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161050e565b6001600160a01b0382166108405760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161050e565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108ad84846106ba565b9050600019811461091557818110156109085760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161050e565b610915848484840361077d565b50505050565b6001600160a01b03831661097f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161050e565b6001600160a01b0382166109e15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161050e565b600454600354600854600954600654306000908152600160205260408120546001600160a01b03968716969095169463ffffffff8084169364010000000090041691808415801590610a445750886001600160a01b03168c6001600160a01b0316145b8015610a6957506001600160a01b038b1660009081526005602052604090205460ff16155b15610b5857868a1115610abe5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d61785472786e416d6f756e742e000000000000604482015260640161050e565b858a610adf8d6001600160a01b031660009081526001602052604090205490565b610ae99190611151565b1115610b375760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161050e565b610b51620f42406105ec8c63ffffffff808a169061075e16565b9050610bd9565b600a5460ff16158015610b71575060008463ffffffff16115b8015610b8e5750886001600160a01b03168b6001600160a01b0316145b8015610bb357506001600160a01b038c1660009081526005602052604090205460ff16155b15610bd957610bd2620f42406105ec8c63ffffffff8089169061075e16565b9050600191505b8015610c0a57610be98a82610ddd565b9950610bf58382610de9565b30600090815260016020526040902081905592505b818015610c175750600083115b15610c3857610c268389610df5565b478015610c3657610c3681610f72565b505b6001600160a01b038c166000908152600160205260409020548a811015610cb05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161050e565b610cba818c610ddd565b6001600160a01b03808f1660008181526001602052604080822094909455918f168083529183902080548f01905591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d1c908f815260200190565b60405180910390a350505050505050505050505050565b6000546001600160a01b031633146105cd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161050e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061076a828461119d565b600061076a8284611151565b600a805460ff19166001179055604080516002808252606082018352839260009291906020830190803683370190505090503081600081518110610e3b57610e3b6111b0565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebd91906111c6565b81600181518110610ed057610ed06111b0565b60200260200101906001600160a01b031690816001600160a01b031681525050610efb30838661077d565b60405163791ac94760e01b81526001600160a01b0383169063791ac94790610f309087906000908690309042906004016111e3565b600060405180830381600087803b158015610f4a57600080fd5b505af1158015610f5e573d6000803e3d6000fd5b5050600a805460ff19169055505050505050565b6040516001600160a01b037f00000000000000000000000060bbf9013c93b79caa7f3ad29cf9e80dd2abdcba169082156108fc029083906000818181858888f19350505050158015610fc8573d6000803e3d6000fd5b5050565b600060208083528351808285015260005b81811015610ff957858101830151858201604001528201610fdd565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461075b57600080fd5b6000806040838503121561104257600080fd5b823561104d8161101a565b946020939093013593505050565b60008060006060848603121561107057600080fd5b833561107b8161101a565b9250602084013561108b8161101a565b929592945050506040919091013590565b6000602082840312156110ae57600080fd5b813563ffffffff8116811461076a57600080fd5b6000602082840312156110d457600080fd5b813561076a8161101a565b6000602082840312156110f157600080fd5b813560ff8116811461076a57600080fd5b6000806040838503121561111557600080fd5b82356111208161101a565b915060208301356111308161101a565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104665761046661113b565b80820281158282048414176104665761046661113b565b60008261119857634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156104665761046661113b565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156111d857600080fd5b815161076a8161101a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156112335784516001600160a01b03168352938301939183019160010161120e565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212201b0ad38cac89a58e9fb4c3c5927387dd07ea07d5406193d7978e6251f15edabf64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
-----Decoded View---------------
Arg [0] : uniswapRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
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.