ERC-20
Overview
Max Total Supply
1,000,000,000 SHIBAI
Holders
198
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0.288273097 SHIBAIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ShibariumAI
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 /// Telegram: https://t.me/shibarium_shibai 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 ShibariumAI is ERC20, Ownable { /*|| === STATE VARIABLES === ||*/ address payable public marketingWallet; address payable public teamWallet; address payable public liqWallet; address public immutable uniswapV2Pair; IUniswapV2Router02 public immutable uniswapV2Router; bool private inSwapAndLiquify; BuyTax public buyTax; SellTax public sellTax; uint private _supply = 1000000000; uint8 private _decimals = 9; string private _name = "Shibarium AI"; string private _symbol = "SHIBAI"; uint public numTokensSellForTax = 1000000 * 10 ** _decimals; uint256 public maxTxAmount = 1000000 * 10 ** _decimals; uint256 public maxWalletAmount = 1000000 * 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(10, 30, 0, 0, 40); sellTax = SellTax(10, 30, 0, 0, 40); } /*|| === MODIFIERS === ||*/ modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } /*|| === RECIEVE FUNCTION === ||*/ receive() external payable {} /*|| === EXTERNAL FUNCTIONS === ||*/ 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; 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; sellTax = SellTax(liquidityTax, marketingTax, teamTax, burnTax, totalTax); } function setTokensToSellForTax(uint _numTokensSellForTax) external onlyOwner { numTokensSellForTax = _numTokensSellForTax; } function setMaxTxAmount(uint256 _maxTxAmount) public onlyOwner { maxTxAmount = _maxTxAmount; } function setMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner { maxWalletAmount = _maxWalletAmount; } /*|| === 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(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount"); if (from == uniswapV2Pair) { require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit"); } 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":"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":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"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":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"setMaxWalletAmount","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
633b9aca00600b55600c805460ff1916600917815561010060405260c09081526b53686962617269756d20414960a01b60e052600d906200004190826200070e565b5060408051808201909152600681526553484942414960d01b6020820152600e906200006e90826200070e565b50600c54620000829060ff16600a620008ef565b6200009190620f424062000907565b600f55600c54620000a79060ff16600a620008ef565b620000b690620f424062000907565b601055600c54620000cc9060ff16600a620008ef565b620000db90620f424062000907565b6011556012805460ff19166001179055348015620000f857600080fd5b5060405162002ea438038062002ea48339810160408190526200011b916200093a565b600d80546200012a9062000680565b80601f0160208091040260200160405190810160405280929190818152602001828054620001589062000680565b8015620001a95780601f106200017d57610100808354040283529160200191620001a9565b820191906000526020600020905b8154815290600101906020018083116200018b57829003601f168201915b5050505050600e8054620001bd9062000680565b80601f0160208091040260200160405190810160405280929190818152602001828054620001eb9062000680565b80156200023c5780601f1062000210576101008083540402835291602001916200023c565b820191906000526020600020905b8154815290600101906020018083116200021e57829003601f168201915b505050505081600390816200025291906200070e565b5060046200026182826200070e565b5050506200027e620002786200054960201b60201c565b6200054d565b600c54620002ad903390620002989060ff16600a620008ef565b600b54620002a7919062000907565b6200059f565b600680546001600160a01b038086166001600160a01b0319928316179092556007805485841690831617905560088054928416929091169190911790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d91829163c45a0155916004808201926020929091908290030181865afa1580156200033e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036491906200098e565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003b2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003d891906200098e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000426573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200044c91906200098e565b6001600160a01b03908116608090815291811660a08181526000918252601360209081526040808420805460ff1990811660019081179092553386528286208054821683179055600654871686528286208054821683179055600754871686528286208054821683179055600854909616855281852080549096161790945583518083018552600a808252601e8284018190528287018690526060838101879052602893890184905260098054682800000000001e000a6001600160501b0319918216811790925589519788018a5284885295870192909252968501869052958401949094529190940152805490921617905550620009c4915050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005fa5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200060e9190620009ae565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200069557607f821691505b602082108103620006b657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200066557600081815260208120601f850160051c81016020861015620006e55750805b601f850160051c820191505b818110156200070657828155600101620006f1565b505050505050565b81516001600160401b038111156200072a576200072a6200066a565b62000742816200073b845462000680565b84620006bc565b602080601f8311600181146200077a5760008415620007615750858301515b600019600386901b1c1916600185901b17855562000706565b600085815260208120601f198616915b82811015620007ab578886015182559484019460019091019084016200078a565b5085821015620007ca5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000831578160001904821115620008155762000815620007da565b808516156200082357918102915b93841c9390800290620007f5565b509250929050565b6000826200084a57506001620008e9565b816200085957506000620008e9565b81600181146200087257600281146200087d576200089d565b6001915050620008e9565b60ff841115620008915762000891620007da565b50506001821b620008e9565b5060208310610133831016604e8410600b8410161715620008c2575081810a620008e9565b620008ce8383620007f0565b8060001904821115620008e557620008e5620007da565b0290505b92915050565b60006200090060ff84168362000839565b9392505050565b8082028115828204841417620008e957620008e9620007da565b6001600160a01b03811681146200093757600080fd5b50565b6000806000606084860312156200095057600080fd5b83516200095d8162000921565b6020850151909350620009708162000921565b6040850151909250620009838162000921565b809150509250925092565b600060208284031215620009a157600080fd5b8151620009008162000921565b80820180821115620008e957620008e9620007da565b60805160a05161246d62000a376000396000818161032901528181611d2f01528181611de801528181611e3d01528181611f1e0152611f9f01526000818161043001528181611397015281816113d201528181611434015281816117920152818161186701526118b9015261246d6000f3fe60806040526004361061026e5760003560e01c806370a08231116101535780639a59c148116100cb578063dd62ed3e1161007f578063e854f11411610064578063e854f114146107b1578063ec28438a146107d1578063f2fde38b146107f157600080fd5b8063dd62ed3e1461074b578063e43252d71461079157600080fd5b8063a9059cbb116100b0578063a9059cbb146106c8578063aa4bde28146106e8578063cc1776d3146106fe57600080fd5b80639a59c14814610688578063a457c2d7146106a857600080fd5b8063882be51a116101225780638c0b5e22116101075780638c0b5e221461063f5780638da5cb5b1461065557806395d89b411461067357600080fd5b8063882be51a146105ff5780638ab1d6811461061f57600080fd5b806370a0823114610564578063715018a61461059a57806375f0a874146105af57806385ecafd7146105cf57600080fd5b8063313ce567116101e65780634ec39ba9116101b5578063556dbe881161019a578063556dbe881461050e57806359927044146105245780635d098b381461054457600080fd5b80634ec39ba91461046c5780634f7041a51461048c57600080fd5b8063313ce567146103e257806339509351146103fe57806349bd5a5e1461041e5780634cdc8da41461045257600080fd5b80631694505e1161023d5780631d4a4417116102225780631d4a44171461038257806323b872dd146103a257806327a14fc2146103c257600080fd5b80631694505e1461031757806318160ddd1461036357600080fd5b806306fdde031461027a578063095ea7b3146102a55780630b01aa51146102d55780631525ff7d146102f757600080fd5b3661027557005b600080fd5b34801561028657600080fd5b5061028f610811565b60405161029c919061203f565b60405180910390f35b3480156102b157600080fd5b506102c56102c03660046120c0565b6108a3565b604051901515815260200161029c565b3480156102e157600080fd5b506102f56102f03660046120ec565b6108bd565b005b34801561030357600080fd5b506102f56103123660046120ec565b61095a565b34801561032357600080fd5b5061034b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161029c565b34801561036f57600080fd5b506002545b60405190815260200161029c565b34801561038e57600080fd5b506102f561039d366004612110565b6109f2565b3480156103ae57600080fd5b506102c56103bd366004612129565b6109ff565b3480156103ce57600080fd5b506102f56103dd366004612110565b610a23565b3480156103ee57600080fd5b506040516009815260200161029c565b34801561040a57600080fd5b506102c56104193660046120c0565b610a30565b34801561042a57600080fd5b5061034b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561045e57600080fd5b506012546102c59060ff1681565b34801561047857600080fd5b5060085461034b906001600160a01b031681565b34801561049857600080fd5b506009546104d99061ffff80821691620100008104821691640100000000820481169166010000000000008104821691680100000000000000009091041685565b6040805161ffff968716815294861660208601529285169284019290925283166060830152909116608082015260a00161029c565b34801561051a57600080fd5b50610374600f5481565b34801561053057600080fd5b5060075461034b906001600160a01b031681565b34801561055057600080fd5b506102f561055f3660046120ec565b610a6f565b34801561057057600080fd5b5061037461057f3660046120ec565b6001600160a01b031660009081526020819052604090205490565b3480156105a657600080fd5b506102f5610b07565b3480156105bb57600080fd5b5060065461034b906001600160a01b031681565b3480156105db57600080fd5b506102c56105ea3660046120ec565b60136020526000908152604090205460ff1681565b34801561060b57600080fd5b506102f561061a366004612181565b610b1b565b34801561062b57600080fd5b506102f561063a3660046120ec565b610c4a565b34801561064b57600080fd5b5061037460105481565b34801561066157600080fd5b506005546001600160a01b031661034b565b34801561067f57600080fd5b5061028f610c91565b34801561069457600080fd5b506102f56106a33660046121d5565b610ca0565b3480156106b457600080fd5b506102c56106c33660046120c0565b610cd9565b3480156106d457600080fd5b506102c56106e33660046120c0565b610d83565b3480156106f457600080fd5b5061037460115481565b34801561070a57600080fd5b50600a546104d99061ffff80821691620100008104821691640100000000820481169166010000000000008104821691680100000000000000009091041685565b34801561075757600080fd5b506103746107663660046121f7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561079d57600080fd5b506102f56107ac3660046120ec565b610d91565b3480156107bd57600080fd5b506102f56107cc366004612181565b610ddb565b3480156107dd57600080fd5b506102f56107ec366004612110565b610f0a565b3480156107fd57600080fd5b506102f561080c3660046120ec565b610f17565b60606003805461082090612230565b80601f016020809104026020016040519081016040528092919081815260200182805461084c90612230565b80156108995780601f1061086e57610100808354040283529160200191610899565b820191906000526020600020905b81548152906001019060200180831161087c57829003601f168201915b5050505050905090565b6000336108b1818585610fa7565b60019150505b92915050565b6108c56110ff565b6001600160a01b0381166109205760405162461bcd60e51b815260206004820152601b60248201527f416464726573732063616e6e6f7420626520302061646472657373000000000060448201526064015b60405180910390fd5b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6109626110ff565b6001600160a01b0381166109b85760405162461bcd60e51b815260206004820152601b60248201527f416464726573732063616e6e6f742062652030206164647265737300000000006044820152606401610917565b600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6109fa6110ff565b600f55565b600033610a0d858285611159565b610a18858585611209565b506001949350505050565b610a2b6110ff565b601155565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906108b19082908690610a6a9087906122b2565b610fa7565b610a776110ff565b6001600160a01b038116610acd5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732063616e6e6f742062652030206164647265737300000000006044820152606401610917565b600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b610b0f6110ff565b610b196000611954565b565b610b236110ff565b60008183610b3186886122c5565b610b3b91906122c5565b610b4591906122c5565b6040805160a08101825261ffff9788168082529688166020820181905295881691810182905293871660608501819052919096166080909301839052600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001690951762010000909402939093177fffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff166401000000009095027fffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffff16949094176601000000000000909202919091177fffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffff166801000000000000000090910217905550565b610c526110ff565b6001600160a01b0316600090815260136020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60606004805461082090612230565b610ca86110ff565b601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610d765760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610917565b610a188286868403610fa7565b6000336108b1818585611209565b610d996110ff565b6001600160a01b0316600090815260136020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b610de36110ff565b60008183610df186886122c5565b610dfb91906122c5565b610e0591906122c5565b6040805160a08101825261ffff9788168082529688166020820181905295881691810182905293871660608501819052919096166080909301839052600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001690951762010000909402939093177fffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff166401000000009095027fffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffff16949094176601000000000000909202919091177fffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffff166801000000000000000090910217905550565b610f126110ff565b601055565b610f1f6110ff565b6001600160a01b038116610f9b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610917565b610fa481611954565b50565b6001600160a01b0383166110225760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610917565b6001600160a01b03821661109e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610917565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610b195760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610917565b6001600160a01b038381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461120357818110156111f65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610917565b6112038484848403610fa7565b50505050565b6001600160a01b0383166112855760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610917565b6001600160a01b0382166113015760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610917565b80611321846001600160a01b031660009081526020819052604090205490565b10156113955760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610917565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148061140657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b801561142d575060085474010000000000000000000000000000000000000000900460ff16155b15611944577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316148015611475575060125460ff165b156116d35730600090815260208190526040902054600f5481106116d157600a546009546000916114bd9161ffff6801000000000000000092839004811692909104166122c5565b600a546009549192506000916114e59161ffff620100009182900481169291909104166122c5565b600a5460095491925060009161150f9161ffff6401000000009182900481169291909104166122c5565b600a5460095491925060009161ffff808716926115309290821691166122c5565b61ffff16600f5461154191906122e7565b61154b91906122fe565b90506000611558826119be565b6009546601000000000000900461ffff161515806115855750600a546601000000000000900461ffff1615155b156115dd57600a5460095461ffff808816926115b392660100000000000091829004831692919004166122c5565b61ffff16600f546115c491906122e7565b6115ce91906122fe565b90506115dd3061dead83611aac565b6115fe8183600f546115ef9190612339565b6115f99190612339565b611c99565b6006546001600160a01b031661161484866122c5565b61ffff168561ffff164761162891906122e7565b61163291906122fe565b604051600081818185875af1925050503d806000811461166e576040519150601f19603f3d011682016040523d82523d6000602084013e611673565b606091505b50506007546040516001600160a01b0390911691504790600081818185875af1925050503d80600081146116c3576040519150601f19603f3d011682016040523d82523d6000602084013e6116c8565b606091505b50505050505050505b505b6001600160a01b038316600090815260136020526040902054819060ff168061171457506001600160a01b03831660009081526013602052604090205460ff165b611939576010548211156117905760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610917565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031603611863576011546001600160a01b0384166000908152602081905260409020546117ef90846122b2565b11156118635760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60448201527f61782077616c6c657420616d6f756e74206c696d6974000000000000000000006064820152608401610917565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036118b75750600a5468010000000000000000900461ffff16611905565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031603611905575060095468010000000000000000900461ffff165b6000606461191383866122e7565b61191d91906122fe565b90506119298184612339565b9250611936863083611aac565b50505b611203848483611aac565b61194f838383611aac565b505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556000611a0a6002836122fe565b90506000611a188284612339565b905047611a2483611c99565b6000611a308247612339565b9050611a3c8382611ed9565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055505050565b6001600160a01b038316611b285760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610917565b6001600160a01b038216611ba45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610917565b6001600160a01b03831660009081526020819052604090205481811015611c335760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610917565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611203565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611d0d57611d0d61234c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611daf919061237b565b81600181518110611dc257611dc261234c565b60200260200101906001600160a01b031690816001600160a01b031681525050611e0d307f000000000000000000000000000000000000000000000000000000000000000084610fa7565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611e7b908590600090869030904290600401612398565b600060405180830381600087803b158015611e9557600080fd5b505af1158015611ea9573d6000803e3d6000fd5b5050600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905550505050565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055611f43307f000000000000000000000000000000000000000000000000000000000000000084610fa7565b6008546040517ff305d7190000000000000000000000000000000000000000000000000000000081523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015611feb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120109190612409565b5050600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055505050565b600060208083528351808285015260005b8181101561206c57858101830151858201604001528201612050565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b6001600160a01b0381168114610fa457600080fd5b600080604083850312156120d357600080fd5b82356120de816120ab565b946020939093013593505050565b6000602082840312156120fe57600080fd5b8135612109816120ab565b9392505050565b60006020828403121561212257600080fd5b5035919050565b60008060006060848603121561213e57600080fd5b8335612149816120ab565b92506020840135612159816120ab565b929592945050506040919091013590565b803561ffff8116811461217c57600080fd5b919050565b6000806000806080858703121561219757600080fd5b6121a08561216a565b93506121ae6020860161216a565b92506121bc6040860161216a565b91506121ca6060860161216a565b905092959194509250565b6000602082840312156121e757600080fd5b8135801515811461210957600080fd5b6000806040838503121561220a57600080fd5b8235612215816120ab565b91506020830135612225816120ab565b809150509250929050565b600181811c9082168061224457607f821691505b60208210810361227d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156108b7576108b7612283565b61ffff8181168382160190808211156122e0576122e0612283565b5092915050565b80820281158282048414176108b7576108b7612283565b600082612334577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b818103818111156108b7576108b7612283565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561238d57600080fd5b8151612109816120ab565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123e85784516001600160a01b0316835293830193918301916001016123c3565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561241e57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220bb1247782e4ec33670297c0fbca1e9521f787c9d5a2a22223eaf2784fc82f33364736f6c63430008110033000000000000000000000000823eb3638e12da61b12e2f0e44e7d5469520130e000000000000000000000000299454be46d87cd1f976ef04f1c29b23e7800772000000000000000000000000000000000000000000000000000000000000dead
Deployed Bytecode
0x60806040526004361061026e5760003560e01c806370a08231116101535780639a59c148116100cb578063dd62ed3e1161007f578063e854f11411610064578063e854f114146107b1578063ec28438a146107d1578063f2fde38b146107f157600080fd5b8063dd62ed3e1461074b578063e43252d71461079157600080fd5b8063a9059cbb116100b0578063a9059cbb146106c8578063aa4bde28146106e8578063cc1776d3146106fe57600080fd5b80639a59c14814610688578063a457c2d7146106a857600080fd5b8063882be51a116101225780638c0b5e22116101075780638c0b5e221461063f5780638da5cb5b1461065557806395d89b411461067357600080fd5b8063882be51a146105ff5780638ab1d6811461061f57600080fd5b806370a0823114610564578063715018a61461059a57806375f0a874146105af57806385ecafd7146105cf57600080fd5b8063313ce567116101e65780634ec39ba9116101b5578063556dbe881161019a578063556dbe881461050e57806359927044146105245780635d098b381461054457600080fd5b80634ec39ba91461046c5780634f7041a51461048c57600080fd5b8063313ce567146103e257806339509351146103fe57806349bd5a5e1461041e5780634cdc8da41461045257600080fd5b80631694505e1161023d5780631d4a4417116102225780631d4a44171461038257806323b872dd146103a257806327a14fc2146103c257600080fd5b80631694505e1461031757806318160ddd1461036357600080fd5b806306fdde031461027a578063095ea7b3146102a55780630b01aa51146102d55780631525ff7d146102f757600080fd5b3661027557005b600080fd5b34801561028657600080fd5b5061028f610811565b60405161029c919061203f565b60405180910390f35b3480156102b157600080fd5b506102c56102c03660046120c0565b6108a3565b604051901515815260200161029c565b3480156102e157600080fd5b506102f56102f03660046120ec565b6108bd565b005b34801561030357600080fd5b506102f56103123660046120ec565b61095a565b34801561032357600080fd5b5061034b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161029c565b34801561036f57600080fd5b506002545b60405190815260200161029c565b34801561038e57600080fd5b506102f561039d366004612110565b6109f2565b3480156103ae57600080fd5b506102c56103bd366004612129565b6109ff565b3480156103ce57600080fd5b506102f56103dd366004612110565b610a23565b3480156103ee57600080fd5b506040516009815260200161029c565b34801561040a57600080fd5b506102c56104193660046120c0565b610a30565b34801561042a57600080fd5b5061034b7f00000000000000000000000000a8203696b54c94a900a7a8baabc72aed48e8fe81565b34801561045e57600080fd5b506012546102c59060ff1681565b34801561047857600080fd5b5060085461034b906001600160a01b031681565b34801561049857600080fd5b506009546104d99061ffff80821691620100008104821691640100000000820481169166010000000000008104821691680100000000000000009091041685565b6040805161ffff968716815294861660208601529285169284019290925283166060830152909116608082015260a00161029c565b34801561051a57600080fd5b50610374600f5481565b34801561053057600080fd5b5060075461034b906001600160a01b031681565b34801561055057600080fd5b506102f561055f3660046120ec565b610a6f565b34801561057057600080fd5b5061037461057f3660046120ec565b6001600160a01b031660009081526020819052604090205490565b3480156105a657600080fd5b506102f5610b07565b3480156105bb57600080fd5b5060065461034b906001600160a01b031681565b3480156105db57600080fd5b506102c56105ea3660046120ec565b60136020526000908152604090205460ff1681565b34801561060b57600080fd5b506102f561061a366004612181565b610b1b565b34801561062b57600080fd5b506102f561063a3660046120ec565b610c4a565b34801561064b57600080fd5b5061037460105481565b34801561066157600080fd5b506005546001600160a01b031661034b565b34801561067f57600080fd5b5061028f610c91565b34801561069457600080fd5b506102f56106a33660046121d5565b610ca0565b3480156106b457600080fd5b506102c56106c33660046120c0565b610cd9565b3480156106d457600080fd5b506102c56106e33660046120c0565b610d83565b3480156106f457600080fd5b5061037460115481565b34801561070a57600080fd5b50600a546104d99061ffff80821691620100008104821691640100000000820481169166010000000000008104821691680100000000000000009091041685565b34801561075757600080fd5b506103746107663660046121f7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561079d57600080fd5b506102f56107ac3660046120ec565b610d91565b3480156107bd57600080fd5b506102f56107cc366004612181565b610ddb565b3480156107dd57600080fd5b506102f56107ec366004612110565b610f0a565b3480156107fd57600080fd5b506102f561080c3660046120ec565b610f17565b60606003805461082090612230565b80601f016020809104026020016040519081016040528092919081815260200182805461084c90612230565b80156108995780601f1061086e57610100808354040283529160200191610899565b820191906000526020600020905b81548152906001019060200180831161087c57829003601f168201915b5050505050905090565b6000336108b1818585610fa7565b60019150505b92915050565b6108c56110ff565b6001600160a01b0381166109205760405162461bcd60e51b815260206004820152601b60248201527f416464726573732063616e6e6f7420626520302061646472657373000000000060448201526064015b60405180910390fd5b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6109626110ff565b6001600160a01b0381166109b85760405162461bcd60e51b815260206004820152601b60248201527f416464726573732063616e6e6f742062652030206164647265737300000000006044820152606401610917565b600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6109fa6110ff565b600f55565b600033610a0d858285611159565b610a18858585611209565b506001949350505050565b610a2b6110ff565b601155565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906108b19082908690610a6a9087906122b2565b610fa7565b610a776110ff565b6001600160a01b038116610acd5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732063616e6e6f742062652030206164647265737300000000006044820152606401610917565b600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b610b0f6110ff565b610b196000611954565b565b610b236110ff565b60008183610b3186886122c5565b610b3b91906122c5565b610b4591906122c5565b6040805160a08101825261ffff9788168082529688166020820181905295881691810182905293871660608501819052919096166080909301839052600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001690951762010000909402939093177fffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff166401000000009095027fffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffff16949094176601000000000000909202919091177fffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffff166801000000000000000090910217905550565b610c526110ff565b6001600160a01b0316600090815260136020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60606004805461082090612230565b610ca86110ff565b601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610d765760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610917565b610a188286868403610fa7565b6000336108b1818585611209565b610d996110ff565b6001600160a01b0316600090815260136020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b610de36110ff565b60008183610df186886122c5565b610dfb91906122c5565b610e0591906122c5565b6040805160a08101825261ffff9788168082529688166020820181905295881691810182905293871660608501819052919096166080909301839052600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001690951762010000909402939093177fffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff166401000000009095027fffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffff16949094176601000000000000909202919091177fffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffff166801000000000000000090910217905550565b610f126110ff565b601055565b610f1f6110ff565b6001600160a01b038116610f9b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610917565b610fa481611954565b50565b6001600160a01b0383166110225760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610917565b6001600160a01b03821661109e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610917565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610b195760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610917565b6001600160a01b038381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461120357818110156111f65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610917565b6112038484848403610fa7565b50505050565b6001600160a01b0383166112855760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610917565b6001600160a01b0382166113015760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610917565b80611321846001600160a01b031660009081526020819052604090205490565b10156113955760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610917565b7f00000000000000000000000000a8203696b54c94a900a7a8baabc72aed48e8fe6001600160a01b0316836001600160a01b0316148061140657507f00000000000000000000000000a8203696b54c94a900a7a8baabc72aed48e8fe6001600160a01b0316826001600160a01b0316145b801561142d575060085474010000000000000000000000000000000000000000900460ff16155b15611944577f00000000000000000000000000a8203696b54c94a900a7a8baabc72aed48e8fe6001600160a01b0316826001600160a01b0316148015611475575060125460ff165b156116d35730600090815260208190526040902054600f5481106116d157600a546009546000916114bd9161ffff6801000000000000000092839004811692909104166122c5565b600a546009549192506000916114e59161ffff620100009182900481169291909104166122c5565b600a5460095491925060009161150f9161ffff6401000000009182900481169291909104166122c5565b600a5460095491925060009161ffff808716926115309290821691166122c5565b61ffff16600f5461154191906122e7565b61154b91906122fe565b90506000611558826119be565b6009546601000000000000900461ffff161515806115855750600a546601000000000000900461ffff1615155b156115dd57600a5460095461ffff808816926115b392660100000000000091829004831692919004166122c5565b61ffff16600f546115c491906122e7565b6115ce91906122fe565b90506115dd3061dead83611aac565b6115fe8183600f546115ef9190612339565b6115f99190612339565b611c99565b6006546001600160a01b031661161484866122c5565b61ffff168561ffff164761162891906122e7565b61163291906122fe565b604051600081818185875af1925050503d806000811461166e576040519150601f19603f3d011682016040523d82523d6000602084013e611673565b606091505b50506007546040516001600160a01b0390911691504790600081818185875af1925050503d80600081146116c3576040519150601f19603f3d011682016040523d82523d6000602084013e6116c8565b606091505b50505050505050505b505b6001600160a01b038316600090815260136020526040902054819060ff168061171457506001600160a01b03831660009081526013602052604090205460ff165b611939576010548211156117905760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610917565b7f00000000000000000000000000a8203696b54c94a900a7a8baabc72aed48e8fe6001600160a01b0316846001600160a01b031603611863576011546001600160a01b0384166000908152602081905260409020546117ef90846122b2565b11156118635760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60448201527f61782077616c6c657420616d6f756e74206c696d6974000000000000000000006064820152608401610917565b60007f00000000000000000000000000a8203696b54c94a900a7a8baabc72aed48e8fe6001600160a01b0316846001600160a01b0316036118b75750600a5468010000000000000000900461ffff16611905565b7f00000000000000000000000000a8203696b54c94a900a7a8baabc72aed48e8fe6001600160a01b0316856001600160a01b031603611905575060095468010000000000000000900461ffff165b6000606461191383866122e7565b61191d91906122fe565b90506119298184612339565b9250611936863083611aac565b50505b611203848483611aac565b61194f838383611aac565b505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556000611a0a6002836122fe565b90506000611a188284612339565b905047611a2483611c99565b6000611a308247612339565b9050611a3c8382611ed9565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055505050565b6001600160a01b038316611b285760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610917565b6001600160a01b038216611ba45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610917565b6001600160a01b03831660009081526020819052604090205481811015611c335760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610917565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611203565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611d0d57611d0d61234c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611daf919061237b565b81600181518110611dc257611dc261234c565b60200260200101906001600160a01b031690816001600160a01b031681525050611e0d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610fa7565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611e7b908590600090869030904290600401612398565b600060405180830381600087803b158015611e9557600080fd5b505af1158015611ea9573d6000803e3d6000fd5b5050600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905550505050565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055611f43307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610fa7565b6008546040517ff305d7190000000000000000000000000000000000000000000000000000000081523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015611feb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120109190612409565b5050600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055505050565b600060208083528351808285015260005b8181101561206c57858101830151858201604001528201612050565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b6001600160a01b0381168114610fa457600080fd5b600080604083850312156120d357600080fd5b82356120de816120ab565b946020939093013593505050565b6000602082840312156120fe57600080fd5b8135612109816120ab565b9392505050565b60006020828403121561212257600080fd5b5035919050565b60008060006060848603121561213e57600080fd5b8335612149816120ab565b92506020840135612159816120ab565b929592945050506040919091013590565b803561ffff8116811461217c57600080fd5b919050565b6000806000806080858703121561219757600080fd5b6121a08561216a565b93506121ae6020860161216a565b92506121bc6040860161216a565b91506121ca6060860161216a565b905092959194509250565b6000602082840312156121e757600080fd5b8135801515811461210957600080fd5b6000806040838503121561220a57600080fd5b8235612215816120ab565b91506020830135612225816120ab565b809150509250929050565b600181811c9082168061224457607f821691505b60208210810361227d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156108b7576108b7612283565b61ffff8181168382160190808211156122e0576122e0612283565b5092915050565b80820281158282048414176108b7576108b7612283565b600082612334577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b818103818111156108b7576108b7612283565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561238d57600080fd5b8151612109816120ab565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123e85784516001600160a01b0316835293830193918301916001016123c3565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561241e57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220bb1247782e4ec33670297c0fbca1e9521f787c9d5a2a22223eaf2784fc82f33364736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000823eb3638e12da61b12e2f0e44e7d5469520130e000000000000000000000000299454be46d87cd1f976ef04f1c29b23e7800772000000000000000000000000000000000000000000000000000000000000dead
-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0x823Eb3638E12Da61b12E2F0E44E7d5469520130E
Arg [1] : _teamWallet (address): 0x299454bE46D87CD1F976Ef04F1C29B23e7800772
Arg [2] : _liqWallet (address): 0x000000000000000000000000000000000000dEaD
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000823eb3638e12da61b12e2f0e44e7d5469520130e
Arg [1] : 000000000000000000000000299454be46d87cd1f976ef04f1c29b23e7800772
Arg [2] : 000000000000000000000000000000000000000000000000000000000000dead
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.