ERC-20
Overview
Max Total Supply
100,000,000 EVOAI
Holders
1,006
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
107,145.455889699 EVOAIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EvolveAI
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /** * ███████╗██╗ ██╗ ██████╗ ██╗ ██╗ ██╗███████╗ █████╗ ██╗ * ██╔════╝██║ ██║██╔═══██╗██║ ██║ ██║██╔════╝ ██╔══██╗██║ * █████╗ ██║ ██║██║ ██║██║ ██║ ██║█████╗ ███████║██║ * ██╔══╝ ╚██╗ ██╔╝██║ ██║██║ ╚██╗ ██╔╝██╔══╝ ██╔══██║██║ * ███████╗ ╚████╔╝ ╚██████╔╝███████╗╚████╔╝ ███████╗ ██║ ██║██║ * ╚══════╝ ╚═══╝ ╚═════╝ ╚══════╝ ╚═══╝ ╚══════╝ ╚═╝ ╚═╝╚═╝ */ pragma solidity 0.8.17; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract EvolveAI is ERC20, Ownable { /*|| === STATE VARIABLES === ||*/ uint public launchDate; address payable public marketingWallet; address payable public teamWallet; address payable public liqWallet; address public immutable uniswapV2Pair; IUniswapV2Router02 public immutable uniswapV2Router; bool private inSwapAndLiquify; bool public launched; BuyTax public buyTax; SellTax public sellTax; uint private _supply = 100000000; uint8 private _decimals = 9; string private _name = "EvolveAI"; string private _symbol = "EVOAI"; uint public numTokensSellForTax = 200000 * 10 ** _decimals; bool public taxSwap = true; /*|| === STRUCTS === ||*/ struct BuyTax { uint16 liquidityTax; uint16 marketingTax; uint16 teamTax; uint16 burnTax; uint16 totalTax; } struct SellTax { uint16 liquidityTax; uint16 marketingTax; uint16 teamTax; uint16 burnTax; uint16 totalTax; } /*|| === MAPPINGS === ||*/ mapping(address => bool) public excludedFromFee; /*|| === EVENTS === ||*/ event SwapAndLiquify(uint tokensSwapped, uint ethReceived, uint tokensIntoLiqudity); /*|| === CONSTRUCTOR === ||*/ constructor(address payable _marketingWallet, address payable _teamWallet, address payable _liqWallet) ERC20(_name, _symbol) { _mint(msg.sender, (_supply * 10 ** _decimals)); /// Mint and send all tokens to deployer marketingWallet = _marketingWallet; teamWallet = _teamWallet; liqWallet = _liqWallet; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); /// Create uniswap pair uniswapV2Router = _uniswapV2Router; excludedFromFee[address(uniswapV2Router)] = true; excludedFromFee[msg.sender] = true; excludedFromFee[marketingWallet] = true; excludedFromFee[teamWallet] = true; excludedFromFee[liqWallet] = true; buyTax = BuyTax(1, 2, 1, 0, 4); sellTax = SellTax(1, 2, 1, 0, 4); } /*|| === MODIFIERS === ||*/ modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } /*|| === RECIEVE FUNCTION === ||*/ receive() external payable {} /*|| === EXTERNAL FUNCTIONS === ||*/ /** * @notice Enables initial trading and logs time of activation. Once trading is started it cannot be stopped. */ function launch() external onlyOwner { launched = true; launchDate = block.timestamp; } function setMarketingWallet(address payable _marketingWallet) external onlyOwner { require(_marketingWallet != address(0), "Address cannot be 0 address"); marketingWallet = _marketingWallet; } function setTeamWallet(address payable _teamWallet) external onlyOwner { require(_teamWallet != address(0), "Address cannot be 0 address"); teamWallet = _teamWallet; } function setLiqWallet(address payable _liqWallet) external onlyOwner { require(_liqWallet != address(0), "Address cannot be 0 address"); liqWallet = _liqWallet; } function addToWhitelist(address _address) external onlyOwner { excludedFromFee[_address] = true; } function removeFromWhitelist(address _address) external onlyOwner { excludedFromFee[_address] = false; } function setTaxSwap(bool _taxSwap) external onlyOwner { taxSwap = _taxSwap; } function setBuyTax(uint16 liquidityTax, uint16 marketingTax, uint16 teamTax, uint16 burnTax) external onlyOwner { uint16 totalTax = liquidityTax + marketingTax + teamTax + burnTax; require(totalTax <= 10, "ERC20: total tax must not be greater than 10"); buyTax = BuyTax(liquidityTax, marketingTax, teamTax, burnTax, totalTax); } function setSellTax(uint16 liquidityTax, uint16 marketingTax, uint16 teamTax, uint16 burnTax) external onlyOwner { uint16 totalTax = liquidityTax + marketingTax + teamTax + burnTax; require(totalTax <= 10, "ERC20: total tax must not be greater than 10"); sellTax = SellTax(liquidityTax, marketingTax, teamTax, burnTax, totalTax); } function setTokensToSellForTax(uint _numTokensSellForTax) external onlyOwner { numTokensSellForTax = _numTokensSellForTax; } /*|| === INTERNAL FUNCTIONS === ||*/ function _transfer(address from, address to, uint amount) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance"); /// If buy or sell if ((from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) { /// On sell and if tax swap enabled if (to == uniswapV2Pair && taxSwap) { uint contractTokenBalance = balanceOf(address(this)); /// If the contract balance reaches sell threshold if (contractTokenBalance >= numTokensSellForTax) { uint16 totalTokenTax = buyTax.totalTax + sellTax.totalTax; uint16 marketingTax = buyTax.marketingTax + sellTax.marketingTax; uint16 teamTax = buyTax.teamTax + sellTax.teamTax; uint liquidityTokenCut = (numTokensSellForTax * (buyTax.liquidityTax + sellTax.liquidityTax)) / totalTokenTax; uint burnTokenCut; /// Add tokens to lp _swapAndLiquify(liquidityTokenCut); /// If burns are enabled if (buyTax.burnTax != 0 || sellTax.burnTax != 0) { burnTokenCut = (numTokensSellForTax * (buyTax.burnTax + sellTax.burnTax)) / totalTokenTax; /// Send tokens to dead address super._transfer(address(this), address(0xdead), burnTokenCut); } /// Swap marketing and team tokens for ETH _swapTokens(numTokensSellForTax - liquidityTokenCut - burnTokenCut); /// Distribute to corresponding wallets (marketingWallet).call{ value: (address(this).balance * marketingTax) / (marketingTax + teamTax) }(""); (teamWallet).call{ value: address(this).balance }(""); } } uint transferAmount = amount; if (!(excludedFromFee[from] || excludedFromFee[to])) { require(launched, "Token not launched"); uint fees; /// On sell if (to == uniswapV2Pair) { fees = sellTax.totalTax; /// On buy } else if (from == uniswapV2Pair) { fees = buyTax.totalTax; } uint tokenFees = (amount * fees) / 100; transferAmount -= tokenFees; super._transfer(from, address(this), tokenFees); } super._transfer(from, to, transferAmount); } else { super._transfer(from, to, amount); } } /*|| === PRIVATE FUNCTIONS === ||*/ function _swapTokens(uint tokenAmount) private lockTheSwap { 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 _swapAndLiquify(uint liquidityTokenCut) private lockTheSwap { uint ethHalf = (liquidityTokenCut / 2); uint tokenHalf = (liquidityTokenCut - ethHalf); uint balanceBefore = address(this).balance; _swapTokens(ethHalf); uint balanceAfter = (address(this).balance - balanceBefore); _addLiquidity(tokenHalf, balanceAfter); emit SwapAndLiquify(ethHalf, balanceAfter, tokenHalf); } function _addLiquidity(uint tokenAmount, uint ethAmount) private lockTheSwap { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{ value: ethAmount }(address(this), tokenAmount, 0, 0, liqWallet, 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"; /** * @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]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 9; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// 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) (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 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
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); }
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; }
{ "optimizer": { "enabled": true, "runs": 10000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"_marketingWallet","type":"address"},{"internalType":"address payable","name":"_teamWallet","type":"address"},{"internalType":"address payable","name":"_liqWallet","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addToWhitelist","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":"uint16","name":"liquidityTax","type":"uint16"},{"internalType":"uint16","name":"marketingTax","type":"uint16"},{"internalType":"uint16","name":"teamTax","type":"uint16"},{"internalType":"uint16","name":"burnTax","type":"uint16"},{"internalType":"uint16","name":"totalTax","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liqWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellForTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint16","name":"liquidityTax","type":"uint16"},{"internalType":"uint16","name":"marketingTax","type":"uint16"},{"internalType":"uint16","name":"teamTax","type":"uint16"},{"internalType":"uint16","name":"burnTax","type":"uint16"},{"internalType":"uint16","name":"totalTax","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"liquidityTax","type":"uint16"},{"internalType":"uint16","name":"marketingTax","type":"uint16"},{"internalType":"uint16","name":"teamTax","type":"uint16"},{"internalType":"uint16","name":"burnTax","type":"uint16"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_liqWallet","type":"address"}],"name":"setLiqWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"liquidityTax","type":"uint16"},{"internalType":"uint16","name":"marketingTax","type":"uint16"},{"internalType":"uint16","name":"teamTax","type":"uint16"},{"internalType":"uint16","name":"burnTax","type":"uint16"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_taxSwap","type":"bool"}],"name":"setTaxSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_teamWallet","type":"address"}],"name":"setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokensSellForTax","type":"uint256"}],"name":"setTokensToSellForTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6305f5e100600c55600d805460ff19166009179055610100604052600860c09081526745766f6c7665414960c01b60e052600e906200003f9082620006c1565b5060408051808201909152600581526445564f414960d81b6020820152600f906200006b9082620006c1565b50600d546200007f9060ff16600a620008a2565b6200008e9062030d40620008ba565b6010556011805460ff19166001179055348015620000ab57600080fd5b5060405162002e7338038062002e73833981016040819052620000ce91620008ed565b600e8054620000dd9062000633565b80601f01602080910402602001604051908101604052809291908181526020018280546200010b9062000633565b80156200015c5780601f1062000130576101008083540402835291602001916200015c565b820191906000526020600020905b8154815290600101906020018083116200013e57829003601f168201915b5050505050600f8054620001709062000633565b80601f01602080910402602001604051908101604052809291908181526020018280546200019e9062000633565b8015620001ef5780601f10620001c357610100808354040283529160200191620001ef565b820191906000526020600020905b815481529060010190602001808311620001d157829003601f168201915b50505050508160039081620002059190620006c1565b506004620002148282620006c1565b505050620002316200022b620004fc60201b60201c565b62000500565b600d54620002609033906200024b9060ff16600a620008a2565b600c546200025a9190620008ba565b62000552565b600780546001600160a01b038086166001600160a01b0319928316179092556008805485841690831617905560098054928416929091169190911790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d91829163c45a0155916004808201926020929091908290030181865afa158015620002f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000317919062000941565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000365573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200038b919062000941565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620003d9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003ff919062000941565b6001600160a01b03908116608090815291811660a08181526000918252601260209081526040808420805460ff199081166001908117909255338652828620805482168317905560075487168652828620805482168317905560085487168652828620805482168317905560095490961685528185208054909616811790955580518084018252858152600281840181905281830187905260608281018790526004928901839052600a8054680400000001000200016001600160501b0319918216811790925585519788018652898852958701929092529285019690965290830193909352930152600b80549092161790555062000977915050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005ad5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620005c1919062000961565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200064857607f821691505b6020821081036200066957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200061857600081815260208120601f850160051c81016020861015620006985750805b601f850160051c820191505b81811015620006b957828155600101620006a4565b505050505050565b81516001600160401b03811115620006dd57620006dd6200061d565b620006f581620006ee845462000633565b846200066f565b602080601f8311600181146200072d5760008415620007145750858301515b600019600386901b1c1916600185901b178555620006b9565b600085815260208120601f198616915b828110156200075e578886015182559484019460019091019084016200073d565b50858210156200077d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620007e4578160001904821115620007c857620007c86200078d565b80851615620007d657918102915b93841c9390800290620007a8565b509250929050565b600082620007fd575060016200089c565b816200080c575060006200089c565b8160018114620008255760028114620008305762000850565b60019150506200089c565b60ff8411156200084457620008446200078d565b50506001821b6200089c565b5060208310610133831016604e8410600b841016171562000875575081810a6200089c565b620008818383620007a3565b80600019048211156200089857620008986200078d565b0290505b92915050565b6000620008b360ff841683620007ec565b9392505050565b80820281158282048414176200089c576200089c6200078d565b6001600160a01b0381168114620008ea57600080fd5b50565b6000806000606084860312156200090357600080fd5b83516200091081620008d4565b60208501519093506200092381620008d4565b60408501519092506200093681620008d4565b809150509250925092565b6000602082840312156200095457600080fd5b8151620008b381620008d4565b808201808211156200089c576200089c6200078d565b60805160a051612490620009e36000396000818161032301528181611d5201528181611e0b01528181611e6001528181611f410152611fc201526000818161040a0152818161149a015281816114d5015281816115370152818161188a01526118dc01526124906000f3fe6080604052600436106102535760003560e01c806370a08231116101385780639a59c148116100b0578063dd62ed3e1161007f578063e854f11411610064578063e854f11414610792578063f2fde38b146107b2578063f8eeed62146107d257600080fd5b8063dd62ed3e1461072c578063e43252d71461077257600080fd5b80639a59c1481461067f578063a457c2d71461069f578063a9059cbb146106bf578063cc1776d3146106df57600080fd5b806385ecafd7116101075780638ab1d681116100ec5780638ab1d6811461062c5780638da5cb5b1461064c57806395d89b411461066a57600080fd5b806385ecafd7146105dc578063882be51a1461060c57600080fd5b806370a082311461053e578063715018a61461057457806375f0a874146105895780638091f3bf146105a957600080fd5b8063313ce567116101cb5780634ec39ba91161019a578063556dbe881161017f578063556dbe88146104e857806359927044146104fe5780635d098b381461051e57600080fd5b80634ec39ba9146104465780634f7041a51461046657600080fd5b8063313ce567146103bc57806339509351146103d857806349bd5a5e146103f85780634cdc8da41461042c57600080fd5b80631525ff7d1161022257806318160ddd1161020757806318160ddd1461035d5780631d4a44171461037c57806323b872dd1461039c57600080fd5b80631525ff7d146102f15780631694505e1461031157600080fd5b806301339c211461025f57806306fdde0314610276578063095ea7b3146102a15780630b01aa51146102d157600080fd5b3661025a57005b600080fd5b34801561026b57600080fd5b506102746107e8565b005b34801561028257600080fd5b5061028b610836565b6040516102989190612062565b60405180910390f35b3480156102ad57600080fd5b506102c16102bc3660046120e3565b6108c8565b6040519015158152602001610298565b3480156102dd57600080fd5b506102746102ec36600461210f565b6108e2565b3480156102fd57600080fd5b5061027461030c36600461210f565b61097f565b34801561031d57600080fd5b506103457f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610298565b34801561036957600080fd5b506002545b604051908152602001610298565b34801561038857600080fd5b50610274610397366004612133565b610a17565b3480156103a857600080fd5b506102c16103b736600461214c565b610a24565b3480156103c857600080fd5b5060405160098152602001610298565b3480156103e457600080fd5b506102c16103f33660046120e3565b610a48565b34801561040457600080fd5b506103457f000000000000000000000000000000000000000000000000000000000000000081565b34801561043857600080fd5b506011546102c19060ff1681565b34801561045257600080fd5b50600954610345906001600160a01b031681565b34801561047257600080fd5b50600a546104b39061ffff80821691620100008104821691640100000000820481169166010000000000008104821691680100000000000000009091041685565b6040805161ffff968716815294861660208601529285169284019290925283166060830152909116608082015260a001610298565b3480156104f457600080fd5b5061036e60105481565b34801561050a57600080fd5b50600854610345906001600160a01b031681565b34801561052a57600080fd5b5061027461053936600461210f565b610a87565b34801561054a57600080fd5b5061036e61055936600461210f565b6001600160a01b031660009081526020819052604090205490565b34801561058057600080fd5b50610274610b1f565b34801561059557600080fd5b50600754610345906001600160a01b031681565b3480156105b557600080fd5b506009546102c1907501000000000000000000000000000000000000000000900460ff1681565b3480156105e857600080fd5b506102c16105f736600461210f565b60126020526000908152604090205460ff1681565b34801561061857600080fd5b506102746106273660046121a4565b610b33565b34801561063857600080fd5b5061027461064736600461210f565b610cde565b34801561065857600080fd5b506005546001600160a01b0316610345565b34801561067657600080fd5b5061028b610d25565b34801561068b57600080fd5b5061027461069a3660046121f8565b610d34565b3480156106ab57600080fd5b506102c16106ba3660046120e3565b610d6d565b3480156106cb57600080fd5b506102c16106da3660046120e3565b610e17565b3480156106eb57600080fd5b50600b546104b39061ffff80821691620100008104821691640100000000820481169166010000000000008104821691680100000000000000009091041685565b34801561073857600080fd5b5061036e61074736600461221a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561077e57600080fd5b5061027461078d36600461210f565b610e25565b34801561079e57600080fd5b506102746107ad3660046121a4565b610e6f565b3480156107be57600080fd5b506102746107cd36600461210f565b61101a565b3480156107de57600080fd5b5061036e60065481565b6107f06110aa565b600980547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16750100000000000000000000000000000000000000000017905542600655565b60606003805461084590612253565b80601f016020809104026020016040519081016040528092919081815260200182805461087190612253565b80156108be5780601f10610893576101008083540402835291602001916108be565b820191906000526020600020905b8154815290600101906020018083116108a157829003601f168201915b5050505050905090565b6000336108d6818585611104565b60019150505b92915050565b6108ea6110aa565b6001600160a01b0381166109455760405162461bcd60e51b815260206004820152601b60248201527f416464726573732063616e6e6f7420626520302061646472657373000000000060448201526064015b60405180910390fd5b600980547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6109876110aa565b6001600160a01b0381166109dd5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732063616e6e6f74206265203020616464726573730000000000604482015260640161093c565b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b610a1f6110aa565b601055565b600033610a3285828561125c565b610a3d85858561130c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906108d69082908690610a829087906122d5565b611104565b610a8f6110aa565b6001600160a01b038116610ae55760405162461bcd60e51b815260206004820152601b60248201527f416464726573732063616e6e6f74206265203020616464726573730000000000604482015260640161093c565b600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b610b276110aa565b610b316000611977565b565b610b3b6110aa565b60008183610b4986886122e8565b610b5391906122e8565b610b5d91906122e8565b9050600a8161ffff161115610bda5760405162461bcd60e51b815260206004820152602c60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201527f61746572207468616e2031300000000000000000000000000000000000000000606482015260840161093c565b6040805160a08101825261ffff9687168082529587166020820181905294871691810182905292861660608401819052919095166080909201829052600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001690941762010000909302929092177fffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff166401000000009094027fffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffff16939093176601000000000000909102177fffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffff1668010000000000000000909202919091179055565b610ce66110aa565b6001600160a01b0316600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60606004805461084590612253565b610d3c6110aa565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610e0a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161093c565b610a3d8286868403611104565b6000336108d681858561130c565b610e2d6110aa565b6001600160a01b0316600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b610e776110aa565b60008183610e8586886122e8565b610e8f91906122e8565b610e9991906122e8565b9050600a8161ffff161115610f165760405162461bcd60e51b815260206004820152602c60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201527f61746572207468616e2031300000000000000000000000000000000000000000606482015260840161093c565b6040805160a08101825261ffff9687168082529587166020820181905294871691810182905292861660608401819052919095166080909201829052600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001690941762010000909302929092177fffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff166401000000009094027fffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffff16939093176601000000000000909102177fffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffff1668010000000000000000909202919091179055565b6110226110aa565b6001600160a01b03811661109e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161093c565b6110a781611977565b50565b6005546001600160a01b03163314610b315760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093c565b6001600160a01b03831661117f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161093c565b6001600160a01b0382166111fb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161093c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461130657818110156112f95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161093c565b6113068484848403611104565b50505050565b6001600160a01b0383166113885760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161093c565b6001600160a01b0382166114045760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161093c565b80611424846001600160a01b031660009081526020819052604090205490565b10156114985760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161093c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148061150957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b8015611530575060095474010000000000000000000000000000000000000000900460ff16155b15611967577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316148015611578575060115460ff165b156117d6573060009081526020819052604090205460105481106117d457600b54600a546000916115c09161ffff6801000000000000000092839004811692909104166122e8565b600b54600a549192506000916115e89161ffff620100009182900481169291909104166122e8565b600b54600a549192506000916116129161ffff6401000000009182900481169291909104166122e8565b600b54600a5491925060009161ffff808716926116339290821691166122e8565b61ffff16601054611644919061230a565b61164e9190612321565b9050600061165b826119e1565b600a546601000000000000900461ffff161515806116885750600b546601000000000000900461ffff1615155b156116e057600b54600a5461ffff808816926116b692660100000000000091829004831692919004166122e8565b61ffff166010546116c7919061230a565b6116d19190612321565b90506116e03061dead83611acf565b61170181836010546116f2919061235c565b6116fc919061235c565b611cbc565b6007546001600160a01b031661171784866122e8565b61ffff168561ffff164761172b919061230a565b6117359190612321565b604051600081818185875af1925050503d8060008114611771576040519150601f19603f3d011682016040523d82523d6000602084013e611776565b606091505b50506008546040516001600160a01b0390911691504790600081818185875af1925050503d80600081146117c6576040519150601f19603f3d011682016040523d82523d6000602084013e6117cb565b606091505b50505050505050505b505b6001600160a01b038316600090815260126020526040902054819060ff168061181757506001600160a01b03831660009081526012602052604090205460ff165b61195c576009547501000000000000000000000000000000000000000000900460ff166118865760405162461bcd60e51b815260206004820152601260248201527f546f6b656e206e6f74206c61756e636865640000000000000000000000000000604482015260640161093c565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036118da5750600b5468010000000000000000900461ffff16611928565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316036119285750600a5468010000000000000000900461ffff165b60006064611936838661230a565b6119409190612321565b905061194c818461235c565b9250611959863083611acf565b50505b611306848483611acf565b611972838383611acf565b505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556000611a2d600283612321565b90506000611a3b828461235c565b905047611a4783611cbc565b6000611a53824761235c565b9050611a5f8382611efc565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055505050565b6001600160a01b038316611b4b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161093c565b6001600160a01b038216611bc75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161093c565b6001600160a01b03831660009081526020819052604090205481811015611c565760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161093c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611306565b600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611d3057611d3061236f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611dae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dd2919061239e565b81600181518110611de557611de561236f565b60200260200101906001600160a01b031690816001600160a01b031681525050611e30307f000000000000000000000000000000000000000000000000000000000000000084611104565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611e9e9085906000908690309042906004016123bb565b600060405180830381600087803b158015611eb857600080fd5b505af1158015611ecc573d6000803e3d6000fd5b5050600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905550505050565b600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055611f66307f000000000000000000000000000000000000000000000000000000000000000084611104565b6009546040517ff305d7190000000000000000000000000000000000000000000000000000000081523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af115801561200e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612033919061242c565b5050600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055505050565b600060208083528351808285015260005b8181101561208f57858101830151858201604001528201612073565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b6001600160a01b03811681146110a757600080fd5b600080604083850312156120f657600080fd5b8235612101816120ce565b946020939093013593505050565b60006020828403121561212157600080fd5b813561212c816120ce565b9392505050565b60006020828403121561214557600080fd5b5035919050565b60008060006060848603121561216157600080fd5b833561216c816120ce565b9250602084013561217c816120ce565b929592945050506040919091013590565b803561ffff8116811461219f57600080fd5b919050565b600080600080608085870312156121ba57600080fd5b6121c38561218d565b93506121d16020860161218d565b92506121df6040860161218d565b91506121ed6060860161218d565b905092959194509250565b60006020828403121561220a57600080fd5b8135801515811461212c57600080fd5b6000806040838503121561222d57600080fd5b8235612238816120ce565b91506020830135612248816120ce565b809150509250929050565b600181811c9082168061226757607f821691505b6020821081036122a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156108dc576108dc6122a6565b61ffff818116838216019080821115612303576123036122a6565b5092915050565b80820281158282048414176108dc576108dc6122a6565b600082612357577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b818103818111156108dc576108dc6122a6565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156123b057600080fd5b815161212c816120ce565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561240b5784516001600160a01b0316835293830193918301916001016123e6565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561244157600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220506d7b0645ec4ada50f7444ae58387ce908e8c72852557d56b25e6a0c18f7f0f64736f6c634300081100330000000000000000000000009c1178c6c544357a2895bcc01323da2c8f4f5940000000000000000000000000a2549bec2944f3e4bf851e32ca7862ab6da48c770000000000000000000000009c1178c6c544357a2895bcc01323da2c8f4f5940
Deployed Bytecode
0x6080604052600436106102535760003560e01c806370a08231116101385780639a59c148116100b0578063dd62ed3e1161007f578063e854f11411610064578063e854f11414610792578063f2fde38b146107b2578063f8eeed62146107d257600080fd5b8063dd62ed3e1461072c578063e43252d71461077257600080fd5b80639a59c1481461067f578063a457c2d71461069f578063a9059cbb146106bf578063cc1776d3146106df57600080fd5b806385ecafd7116101075780638ab1d681116100ec5780638ab1d6811461062c5780638da5cb5b1461064c57806395d89b411461066a57600080fd5b806385ecafd7146105dc578063882be51a1461060c57600080fd5b806370a082311461053e578063715018a61461057457806375f0a874146105895780638091f3bf146105a957600080fd5b8063313ce567116101cb5780634ec39ba91161019a578063556dbe881161017f578063556dbe88146104e857806359927044146104fe5780635d098b381461051e57600080fd5b80634ec39ba9146104465780634f7041a51461046657600080fd5b8063313ce567146103bc57806339509351146103d857806349bd5a5e146103f85780634cdc8da41461042c57600080fd5b80631525ff7d1161022257806318160ddd1161020757806318160ddd1461035d5780631d4a44171461037c57806323b872dd1461039c57600080fd5b80631525ff7d146102f15780631694505e1461031157600080fd5b806301339c211461025f57806306fdde0314610276578063095ea7b3146102a15780630b01aa51146102d157600080fd5b3661025a57005b600080fd5b34801561026b57600080fd5b506102746107e8565b005b34801561028257600080fd5b5061028b610836565b6040516102989190612062565b60405180910390f35b3480156102ad57600080fd5b506102c16102bc3660046120e3565b6108c8565b6040519015158152602001610298565b3480156102dd57600080fd5b506102746102ec36600461210f565b6108e2565b3480156102fd57600080fd5b5061027461030c36600461210f565b61097f565b34801561031d57600080fd5b506103457f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610298565b34801561036957600080fd5b506002545b604051908152602001610298565b34801561038857600080fd5b50610274610397366004612133565b610a17565b3480156103a857600080fd5b506102c16103b736600461214c565b610a24565b3480156103c857600080fd5b5060405160098152602001610298565b3480156103e457600080fd5b506102c16103f33660046120e3565b610a48565b34801561040457600080fd5b506103457f000000000000000000000000e2bf84f6e15097378144b7fdcff20da1fab71b1481565b34801561043857600080fd5b506011546102c19060ff1681565b34801561045257600080fd5b50600954610345906001600160a01b031681565b34801561047257600080fd5b50600a546104b39061ffff80821691620100008104821691640100000000820481169166010000000000008104821691680100000000000000009091041685565b6040805161ffff968716815294861660208601529285169284019290925283166060830152909116608082015260a001610298565b3480156104f457600080fd5b5061036e60105481565b34801561050a57600080fd5b50600854610345906001600160a01b031681565b34801561052a57600080fd5b5061027461053936600461210f565b610a87565b34801561054a57600080fd5b5061036e61055936600461210f565b6001600160a01b031660009081526020819052604090205490565b34801561058057600080fd5b50610274610b1f565b34801561059557600080fd5b50600754610345906001600160a01b031681565b3480156105b557600080fd5b506009546102c1907501000000000000000000000000000000000000000000900460ff1681565b3480156105e857600080fd5b506102c16105f736600461210f565b60126020526000908152604090205460ff1681565b34801561061857600080fd5b506102746106273660046121a4565b610b33565b34801561063857600080fd5b5061027461064736600461210f565b610cde565b34801561065857600080fd5b506005546001600160a01b0316610345565b34801561067657600080fd5b5061028b610d25565b34801561068b57600080fd5b5061027461069a3660046121f8565b610d34565b3480156106ab57600080fd5b506102c16106ba3660046120e3565b610d6d565b3480156106cb57600080fd5b506102c16106da3660046120e3565b610e17565b3480156106eb57600080fd5b50600b546104b39061ffff80821691620100008104821691640100000000820481169166010000000000008104821691680100000000000000009091041685565b34801561073857600080fd5b5061036e61074736600461221a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561077e57600080fd5b5061027461078d36600461210f565b610e25565b34801561079e57600080fd5b506102746107ad3660046121a4565b610e6f565b3480156107be57600080fd5b506102746107cd36600461210f565b61101a565b3480156107de57600080fd5b5061036e60065481565b6107f06110aa565b600980547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16750100000000000000000000000000000000000000000017905542600655565b60606003805461084590612253565b80601f016020809104026020016040519081016040528092919081815260200182805461087190612253565b80156108be5780601f10610893576101008083540402835291602001916108be565b820191906000526020600020905b8154815290600101906020018083116108a157829003601f168201915b5050505050905090565b6000336108d6818585611104565b60019150505b92915050565b6108ea6110aa565b6001600160a01b0381166109455760405162461bcd60e51b815260206004820152601b60248201527f416464726573732063616e6e6f7420626520302061646472657373000000000060448201526064015b60405180910390fd5b600980547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6109876110aa565b6001600160a01b0381166109dd5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732063616e6e6f74206265203020616464726573730000000000604482015260640161093c565b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b610a1f6110aa565b601055565b600033610a3285828561125c565b610a3d85858561130c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906108d69082908690610a829087906122d5565b611104565b610a8f6110aa565b6001600160a01b038116610ae55760405162461bcd60e51b815260206004820152601b60248201527f416464726573732063616e6e6f74206265203020616464726573730000000000604482015260640161093c565b600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b610b276110aa565b610b316000611977565b565b610b3b6110aa565b60008183610b4986886122e8565b610b5391906122e8565b610b5d91906122e8565b9050600a8161ffff161115610bda5760405162461bcd60e51b815260206004820152602c60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201527f61746572207468616e2031300000000000000000000000000000000000000000606482015260840161093c565b6040805160a08101825261ffff9687168082529587166020820181905294871691810182905292861660608401819052919095166080909201829052600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001690941762010000909302929092177fffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff166401000000009094027fffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffff16939093176601000000000000909102177fffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffff1668010000000000000000909202919091179055565b610ce66110aa565b6001600160a01b0316600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60606004805461084590612253565b610d3c6110aa565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610e0a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161093c565b610a3d8286868403611104565b6000336108d681858561130c565b610e2d6110aa565b6001600160a01b0316600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b610e776110aa565b60008183610e8586886122e8565b610e8f91906122e8565b610e9991906122e8565b9050600a8161ffff161115610f165760405162461bcd60e51b815260206004820152602c60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201527f61746572207468616e2031300000000000000000000000000000000000000000606482015260840161093c565b6040805160a08101825261ffff9687168082529587166020820181905294871691810182905292861660608401819052919095166080909201829052600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001690941762010000909302929092177fffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff166401000000009094027fffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffff16939093176601000000000000909102177fffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffff1668010000000000000000909202919091179055565b6110226110aa565b6001600160a01b03811661109e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161093c565b6110a781611977565b50565b6005546001600160a01b03163314610b315760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093c565b6001600160a01b03831661117f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161093c565b6001600160a01b0382166111fb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161093c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461130657818110156112f95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161093c565b6113068484848403611104565b50505050565b6001600160a01b0383166113885760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161093c565b6001600160a01b0382166114045760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161093c565b80611424846001600160a01b031660009081526020819052604090205490565b10156114985760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161093c565b7f000000000000000000000000e2bf84f6e15097378144b7fdcff20da1fab71b146001600160a01b0316836001600160a01b0316148061150957507f000000000000000000000000e2bf84f6e15097378144b7fdcff20da1fab71b146001600160a01b0316826001600160a01b0316145b8015611530575060095474010000000000000000000000000000000000000000900460ff16155b15611967577f000000000000000000000000e2bf84f6e15097378144b7fdcff20da1fab71b146001600160a01b0316826001600160a01b0316148015611578575060115460ff165b156117d6573060009081526020819052604090205460105481106117d457600b54600a546000916115c09161ffff6801000000000000000092839004811692909104166122e8565b600b54600a549192506000916115e89161ffff620100009182900481169291909104166122e8565b600b54600a549192506000916116129161ffff6401000000009182900481169291909104166122e8565b600b54600a5491925060009161ffff808716926116339290821691166122e8565b61ffff16601054611644919061230a565b61164e9190612321565b9050600061165b826119e1565b600a546601000000000000900461ffff161515806116885750600b546601000000000000900461ffff1615155b156116e057600b54600a5461ffff808816926116b692660100000000000091829004831692919004166122e8565b61ffff166010546116c7919061230a565b6116d19190612321565b90506116e03061dead83611acf565b61170181836010546116f2919061235c565b6116fc919061235c565b611cbc565b6007546001600160a01b031661171784866122e8565b61ffff168561ffff164761172b919061230a565b6117359190612321565b604051600081818185875af1925050503d8060008114611771576040519150601f19603f3d011682016040523d82523d6000602084013e611776565b606091505b50506008546040516001600160a01b0390911691504790600081818185875af1925050503d80600081146117c6576040519150601f19603f3d011682016040523d82523d6000602084013e6117cb565b606091505b50505050505050505b505b6001600160a01b038316600090815260126020526040902054819060ff168061181757506001600160a01b03831660009081526012602052604090205460ff165b61195c576009547501000000000000000000000000000000000000000000900460ff166118865760405162461bcd60e51b815260206004820152601260248201527f546f6b656e206e6f74206c61756e636865640000000000000000000000000000604482015260640161093c565b60007f000000000000000000000000e2bf84f6e15097378144b7fdcff20da1fab71b146001600160a01b0316846001600160a01b0316036118da5750600b5468010000000000000000900461ffff16611928565b7f000000000000000000000000e2bf84f6e15097378144b7fdcff20da1fab71b146001600160a01b0316856001600160a01b0316036119285750600a5468010000000000000000900461ffff165b60006064611936838661230a565b6119409190612321565b905061194c818461235c565b9250611959863083611acf565b50505b611306848483611acf565b611972838383611acf565b505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556000611a2d600283612321565b90506000611a3b828461235c565b905047611a4783611cbc565b6000611a53824761235c565b9050611a5f8382611efc565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055505050565b6001600160a01b038316611b4b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161093c565b6001600160a01b038216611bc75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161093c565b6001600160a01b03831660009081526020819052604090205481811015611c565760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161093c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611306565b600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611d3057611d3061236f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611dae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dd2919061239e565b81600181518110611de557611de561236f565b60200260200101906001600160a01b031690816001600160a01b031681525050611e30307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611104565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611e9e9085906000908690309042906004016123bb565b600060405180830381600087803b158015611eb857600080fd5b505af1158015611ecc573d6000803e3d6000fd5b5050600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905550505050565b600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055611f66307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611104565b6009546040517ff305d7190000000000000000000000000000000000000000000000000000000081523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af115801561200e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612033919061242c565b5050600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055505050565b600060208083528351808285015260005b8181101561208f57858101830151858201604001528201612073565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b6001600160a01b03811681146110a757600080fd5b600080604083850312156120f657600080fd5b8235612101816120ce565b946020939093013593505050565b60006020828403121561212157600080fd5b813561212c816120ce565b9392505050565b60006020828403121561214557600080fd5b5035919050565b60008060006060848603121561216157600080fd5b833561216c816120ce565b9250602084013561217c816120ce565b929592945050506040919091013590565b803561ffff8116811461219f57600080fd5b919050565b600080600080608085870312156121ba57600080fd5b6121c38561218d565b93506121d16020860161218d565b92506121df6040860161218d565b91506121ed6060860161218d565b905092959194509250565b60006020828403121561220a57600080fd5b8135801515811461212c57600080fd5b6000806040838503121561222d57600080fd5b8235612238816120ce565b91506020830135612248816120ce565b809150509250929050565b600181811c9082168061226757607f821691505b6020821081036122a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156108dc576108dc6122a6565b61ffff818116838216019080821115612303576123036122a6565b5092915050565b80820281158282048414176108dc576108dc6122a6565b600082612357577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b818103818111156108dc576108dc6122a6565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156123b057600080fd5b815161212c816120ce565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561240b5784516001600160a01b0316835293830193918301916001016123e6565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561244157600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220506d7b0645ec4ada50f7444ae58387ce908e8c72852557d56b25e6a0c18f7f0f64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009c1178c6c544357a2895bcc01323da2c8f4f5940000000000000000000000000a2549bec2944f3e4bf851e32ca7862ab6da48c770000000000000000000000009c1178c6c544357a2895bcc01323da2c8f4f5940
-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0x9C1178C6C544357a2895BCC01323dA2c8F4F5940
Arg [1] : _teamWallet (address): 0xa2549bEc2944F3e4BF851E32ca7862ab6da48c77
Arg [2] : _liqWallet (address): 0x9C1178C6C544357a2895BCC01323dA2c8F4F5940
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000009c1178c6c544357a2895bcc01323da2c8f4f5940
Arg [1] : 000000000000000000000000a2549bec2944f3e4bf851e32ca7862ab6da48c77
Arg [2] : 0000000000000000000000009c1178c6c544357a2895bcc01323da2c8f4f5940
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.