ETH Price: $2,352.72 (-4.49%)

Token

Shapella Protocol (SHAPELLA)
 

Overview

Max Total Supply

10,000,000 SHAPELLA

Holders

154

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.69373892 SHAPELLA

Value
$0.00
0x31c7c952bdb91009f22ccd5686b8efcc47e44b2b
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Shapella

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 3500 runs

Other Settings:
default evmVersion
File 1 of 10 : Shapella.sol
// SPDX-License-Identifier: MIT

///Medium: https://link.medium.com/BUBMjaSmJyb
///Medium: https://link.medium.com/2BFEk8lILyb
///Twitter: https://twitter.com/ShapellaERC

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 Shapella 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 constant _supply = 10000000;
  uint8 private constant _decimals = 9;
  string private constant _name = "Shapella Protocol";
  string private constant _symbol = "SHAPELLA";
  uint public tokensToSell = 100000 * 10 ** _decimals;
  uint256 public maxWalletAmount = 100000 * 10 ** _decimals;
  bool public contractSell = true;

  /*|| === STRUCTS === ||*/
  struct BuyTax {
    uint16 liquidityTax;
    uint16 marketingTax;
    uint16 totalTax;
  }

  struct SellTax {
    uint16 liquidityTax;
    uint16 marketingTax;
    uint16 totalTax;
  }

  /*|| === MAPPINGS === ||*/
  mapping(address => bool) public addressWhitelist;

  /*|| === EVENTS === ||*/
  event SwapAndLiquify(uint tokensSwapped, uint ethReceived, uint tokensIntoLiqudity);

  /*|| === CONSTRUCTOR === ||*/
  constructor(address payable _marketingWallet, address payable _liqWallet) ERC20(_name, _symbol) {
    _mint(msg.sender, (_supply * 10 ** _decimals));
    marketingWallet = _marketingWallet;
    liqWallet = _liqWallet;

    // Create uniswap pair
    IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

    uniswapV2Router = _uniswapV2Router;

    addressWhitelist[address(uniswapV2Router)] = true;
    addressWhitelist[msg.sender] = true;
    addressWhitelist[marketingWallet] = true;
    addressWhitelist[liqWallet] = true;

    buyTax = BuyTax(0, 90, 90);
    sellTax = SellTax(0, 90, 90);
  }

  /*|| === MODIFIERS === ||*/
  modifier lockTheSwap() {
    inSwapAndLiquify = true;
    _;
    inSwapAndLiquify = false;
  }

  /*|| === RECIEVE FUNCTION === ||*/
  receive() external payable {}

  /*|| === EXTERNAL FUNCTIONS === ||*/

  function getIsWhitelisted(address _address) external view returns (bool) {
    return addressWhitelist[_address];
  }

  function setMarketingWallet(address payable _marketingWallet) external onlyOwner {
    require(_marketingWallet != address(0), "Address cannot be 0 address");
    marketingWallet = _marketingWallet;
  }

  function setLiqWallet(address payable _liqWallet) external onlyOwner {
    require(_liqWallet != address(0), "Address cannot be 0 address");
    liqWallet = _liqWallet;
  }

  function addToWhitelist(address _address) external onlyOwner {
    addressWhitelist[_address] = true;
  }

  function removeFromWhitelist(address _address) external onlyOwner {
    addressWhitelist[_address] = false;
  }

  function setContractSell(bool _contractSell) external onlyOwner {
    contractSell = _contractSell;
  }

  function setBuyTax(uint16 liquidityTax, uint16 marketingTax) external onlyOwner {
    uint16 totalTax = liquidityTax + marketingTax;
    require(totalTax < 100, "Total tax over 99");
    buyTax = BuyTax(liquidityTax, marketingTax, totalTax);
  }

  function setSellTax(uint16 liquidityTax, uint16 marketingTax) external onlyOwner {
    uint16 totalTax = liquidityTax + marketingTax;
    require(totalTax < 100, "Total tax over 99");
    sellTax = SellTax(liquidityTax, marketingTax, totalTax);
  }

  function setTokensToSellForTax(uint _tokensToSell) external onlyOwner {
    tokensToSell = _tokensToSell;
  }

  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 && contractSell) {
        uint contractTokenBalance = balanceOf(address(this));
        /// If the contract balance reaches sell threshold
        if (contractTokenBalance >= tokensToSell) {
          uint16 totalTokenTax = buyTax.totalTax + sellTax.totalTax;

          uint liquidityTokenCut = (tokensToSell * (buyTax.liquidityTax + sellTax.liquidityTax)) / totalTokenTax;

          /// Add tokens to lp
          _swapAndLiquify(liquidityTokenCut);

          /// Swap marketing tokens for ETH
          _swapTokens(tokensToSell - liquidityTokenCut);

          (marketingWallet).call{ value: (address(this).balance) }("");
        }
      }

      uint transferAmount = amount;
      if (!(addressWhitelist[from] || addressWhitelist[to])) {
        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;

        if (to != uniswapV2Pair) require((transferAmount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit");

        super._transfer(from, address(this), tokenFees);
      }

      super._transfer(from, to, transferAmount);
    } else {
      /// If not transfering to whitelisted address
      if (!addressWhitelist[to]) {
        require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit");
      }
      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);
  }
}

File 2 of 10 : Ownable.sol
// 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);
    }
}

File 3 of 10 : ERC20.sol
// 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 {}
}

File 4 of 10 : IERC20Metadata.sol
// 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);
}

File 5 of 10 : IERC20.sol
// 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);
}

File 6 of 10 : Context.sol
// 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;
    }
}

File 7 of 10 : IUniswapV2Factory.sol
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;
}

File 8 of 10 : IUniswapV2Pair.sol
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;
}

File 9 of 10 : IUniswapV2Router01.sol
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);
}

File 10 of 10 : IUniswapV2Router02.sol
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;
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 3500
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"_marketingWallet","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":"","type":"address"}],"name":"addressWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"totalTax","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractSell","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_address","type":"address"}],"name":"getIsWhitelisted","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":"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":"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":"totalTax","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"liquidityTax","type":"uint16"},{"internalType":"uint16","name":"marketingTax","type":"uint16"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_contractSell","type":"bool"}],"name":"setContractSell","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":"_maxWalletAmount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"liquidityTax","type":"uint16"},{"internalType":"uint16","name":"marketingTax","type":"uint16"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokensToSell","type":"uint256"}],"name":"setTokensToSellForTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensToSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60c0604052620000126009600a620005c4565b6200002190620186a0620005dc565b600b55620000326009600a620005c4565b6200004190620186a0620005dc565b600c55600d805460ff191660011790553480156200005e57600080fd5b50604051620029083803806200290883398101604081905262000081916200060f565b6040518060400160405280601181526020017014da185c195b1b1848141c9bdd1bd8dbdb607a1b8152506040518060400160405280600881526020016753484150454c4c4160c01b8152508160039081620000dd9190620006f2565b506004620000ec8282620006f2565b50505062000109620001036200038e60201b60201c565b62000392565b62000131336200011c6009600a620005c4565b6200012b9062989680620005dc565b620003e4565b600680546001600160a01b038085166001600160a01b03199283161790925560088054928416929091169190911790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d91829163c45a0155916004808201926020929091908290030181865afa158015620001b5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001db9190620007be565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000229573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024f9190620007be565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200029d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c39190620007be565b6001600160a01b0390811660805290811660a08190526000908152600e60209081526040808320805460ff19908116600190811790925533855282852080548216831790556006548616855282852080548216831790556008549095168452818420805490951617909355825160608181018552838252605a82840181905291850182905260098054645a005a000065ffffffffffff1991821681179092558651928301875294825292810182905290930192909252600a8054909116909117905550620007f49050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200043f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620004539190620007de565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000506578160001904821115620004ea57620004ea620004af565b80851615620004f857918102915b93841c9390800290620004ca565b509250929050565b6000826200051f57506001620005be565b816200052e57506000620005be565b8160018114620005475760028114620005525762000572565b6001915050620005be565b60ff841115620005665762000566620004af565b50506001821b620005be565b5060208310610133831016604e8410600b841016171562000597575081810a620005be565b620005a38383620004c5565b8060001904821115620005ba57620005ba620004af565b0290505b92915050565b6000620005d560ff8416836200050e565b9392505050565b8082028115828204841417620005be57620005be620004af565b6001600160a01b03811681146200060c57600080fd5b50565b600080604083850312156200062357600080fd5b82516200063081620005f6565b60208401519092506200064381620005f6565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200067957607f821691505b6020821081036200069a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004aa57600081815260208120601f850160051c81016020861015620006c95750805b601f850160051c820191505b81811015620006ea57828155600101620006d5565b505050505050565b81516001600160401b038111156200070e576200070e6200064e565b62000726816200071f845462000664565b84620006a0565b602080601f8311600181146200075e5760008415620007455750858301515b600019600386901b1c1916600185901b178555620006ea565b600085815260208120601f198616915b828110156200078f578886015182559484019460019091019084016200076e565b5085821015620007ae5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007d157600080fd5b8151620005d581620005f6565b80820180821115620005be57620005be620004af565b60805160a0516120a1620008676000396000818161030d015281816117b50152818161186e015281816118c301528181611b7d0152611bfe01526000818161047a015281816111510152818161118c015281816111ee01528181611373015281816113c1015261143101526120a16000f3fe6080604052600436106102385760003560e01c80634f7041a51161013857806395d89b41116100b0578063c4827cb61161007f578063dd62ed3e11610064578063dd62ed3e146106f0578063e43252d714610736578063f2fde38b1461075657600080fd5b8063c4827cb61461069f578063cc1776d3146106bf57600080fd5b806395d89b4114610634578063a457c2d714610649578063a9059cbb14610669578063aa4bde281461068957600080fd5b8063715018a6116101075780638ab1d681116100ec5780638ab1d681146105bd5780638da5cb5b146105dd578063938f296c146105fb57600080fd5b8063715018a61461058857806375f0a8741461059d57600080fd5b80634f7041a5146104bc57806359927044146105125780635d098b381461053257806370a082311461055257600080fd5b80631d4a4417116101cb57806339189c9f1161019a5780633d9566911161017f5780633d9566911461045257806349bd5a5e146104685780634ec39ba91461049c57600080fd5b806339189c9f14610402578063395093511461043257600080fd5b80631d4a44171461038657806323b872dd146103a657806327a14fc2146103c6578063313ce567146103e657600080fd5b806310c507c41161020757806310c507c4146102e15780631694505e146102fb57806316bd9b251461034757806318160ddd1461036757600080fd5b806303d597231461024457806306fdde0314610266578063095ea7b3146102915780630b01aa51146102c157600080fd5b3661023f57005b600080fd5b34801561025057600080fd5b5061026461025f366004611cab565b610776565b005b34801561027257600080fd5b5061027b610854565b6040516102889190611cde565b60405180910390f35b34801561029d57600080fd5b506102b16102ac366004611d5f565b6108e6565b6040519015158152602001610288565b3480156102cd57600080fd5b506102646102dc366004611d8b565b610900565b3480156102ed57600080fd5b50600d546102b19060ff1681565b34801561030757600080fd5b5061032f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610288565b34801561035357600080fd5b50610264610362366004611cab565b610998565b34801561037357600080fd5b506002545b604051908152602001610288565b34801561039257600080fd5b506102646103a1366004611daf565b610a71565b3480156103b257600080fd5b506102b16103c1366004611dc8565b610a7e565b3480156103d257600080fd5b506102646103e1366004611daf565b610aa2565b3480156103f257600080fd5b5060405160098152602001610288565b34801561040e57600080fd5b506102b161041d366004611d8b565b600e6020526000908152604090205460ff1681565b34801561043e57600080fd5b506102b161044d366004611d5f565b610aaf565b34801561045e57600080fd5b50610378600b5481565b34801561047457600080fd5b5061032f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104a857600080fd5b5060085461032f906001600160a01b031681565b3480156104c857600080fd5b506009546104ed9061ffff808216916201000081048216916401000000009091041683565b6040805161ffff94851681529284166020840152921691810191909152606001610288565b34801561051e57600080fd5b5060075461032f906001600160a01b031681565b34801561053e57600080fd5b5061026461054d366004611d8b565b610aee565b34801561055e57600080fd5b5061037861056d366004611d8b565b6001600160a01b031660009081526020819052604090205490565b34801561059457600080fd5b50610264610b86565b3480156105a957600080fd5b5060065461032f906001600160a01b031681565b3480156105c957600080fd5b506102646105d8366004611d8b565b610b9a565b3480156105e957600080fd5b506005546001600160a01b031661032f565b34801561060757600080fd5b506102b1610616366004611d8b565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561064057600080fd5b5061027b610bc3565b34801561065557600080fd5b506102b1610664366004611d5f565b610bd2565b34801561067557600080fd5b506102b1610684366004611d5f565b610c7c565b34801561069557600080fd5b50610378600c5481565b3480156106ab57600080fd5b506102646106ba366004611e09565b610c8a565b3480156106cb57600080fd5b50600a546104ed9061ffff808216916201000081048216916401000000009091041683565b3480156106fc57600080fd5b5061037861070b366004611e2b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561074257600080fd5b50610264610751366004611d8b565b610ca5565b34801561076257600080fd5b50610264610771366004611d8b565b610cd1565b61077e610d61565b600061078a8284611e93565b905060648161ffff16106107e55760405162461bcd60e51b815260206004820152601160248201527f546f74616c20746178206f76657220393900000000000000000000000000000060448201526064015b60405180910390fd5b6040805160608101825261ffff948516808252938516602082018190529290941693018390526009805463ffffffff191690921762010000909102177fffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffff16640100000000909202919091179055565b60606003805461086390611eb5565b80601f016020809104026020016040519081016040528092919081815260200182805461088f90611eb5565b80156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b6000336108f4818585610dbb565b60019150505b92915050565b610908610d61565b6001600160a01b03811661095e5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732063616e6e6f7420626520302061646472657373000000000060448201526064016107dc565b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6109a0610d61565b60006109ac8284611e93565b905060648161ffff1610610a025760405162461bcd60e51b815260206004820152601160248201527f546f74616c20746178206f76657220393900000000000000000000000000000060448201526064016107dc565b6040805160608101825261ffff94851680825293851660208201819052929094169301839052600a805463ffffffff191690921762010000909102177fffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffff16640100000000909202919091179055565b610a79610d61565b600b55565b600033610a8c858285610f13565b610a97858585610fc3565b506001949350505050565b610aaa610d61565b600c55565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906108f49082908690610ae9908790611f08565b610dbb565b610af6610d61565b6001600160a01b038116610b4c5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732063616e6e6f7420626520302061646472657373000000000060448201526064016107dc565b600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b610b8e610d61565b610b9860006115e5565b565b610ba2610d61565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b60606004805461086390611eb5565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610c6f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016107dc565b610a978286868403610dbb565b6000336108f4818585610fc3565b610c92610d61565b600d805460ff1916911515919091179055565b610cad610d61565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b610cd9610d61565b6001600160a01b038116610d555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107dc565b610d5e816115e5565b50565b6005546001600160a01b03163314610b985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107dc565b6001600160a01b038316610e365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107dc565b6001600160a01b038216610eb25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016107dc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fbd5781811015610fb05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107dc565b610fbd8484848403610dbb565b50505050565b6001600160a01b03831661103f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016107dc565b6001600160a01b0382166110bb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016107dc565b806110db846001600160a01b031660009081526020819052604090205490565b101561114f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016107dc565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614806111c057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b80156111e7575060085474010000000000000000000000000000000000000000900460ff16155b1561151b577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614801561122f5750600d5460ff165b1561132a5730600090815260208190526040902054600b54811061132857600a546009546000916112739161ffff6401000000009283900481169290910416611e93565b600a5460095491925060009161ffff80851692611294929082169116611e93565b61ffff16600b546112a59190611f1b565b6112af9190611f32565b90506112ba8161164f565b6112d081600b546112cb9190611f6d565b611729565b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461131d576040519150601f19603f3d011682016040523d82523d6000602084013e611322565b606091505b50505050505b505b6001600160a01b0383166000908152600e6020526040902054819060ff168061136b57506001600160a01b0383166000908152600e602052604090205460ff165b6115105760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036113bf5750600a54640100000000900461ffff16611409565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316036114095750600954640100000000900461ffff165b600060646114178386611f1b565b6114219190611f32565b905061142d8184611f6d565b92507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b03161461150257600c546001600160a01b03861660009081526020819052604090205461148e9085611f08565b11156115025760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60448201527f61782077616c6c657420616d6f756e74206c696d69740000000000000000000060648201526084016107dc565b61150d863083611955565b50505b610fbd848483611955565b6001600160a01b0382166000908152600e602052604090205460ff166115d557600c546001600160a01b0383166000908152602081905260409020546115619083611f08565b11156115d55760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60448201527f61782077616c6c657420616d6f756e74206c696d69740000000000000000000060648201526084016107dc565b6115e0838383611955565b505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790556000611691600283611f32565b9050600061169f8284611f6d565b9050476116ab83611729565b60006116b78247611f6d565b90506116c38382611b42565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506008805474ff000000000000000000000000000000000000000019169055505050565b6008805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061179357611793611f80565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611811573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118359190611faf565b8160018151811061184857611848611f80565b60200260200101906001600160a01b031690816001600160a01b031681525050611893307f000000000000000000000000000000000000000000000000000000000000000084610dbb565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611901908590600090869030904290600401611fcc565b600060405180830381600087803b15801561191b57600080fd5b505af115801561192f573d6000803e3d6000fd5b50506008805474ff00000000000000000000000000000000000000001916905550505050565b6001600160a01b0383166119d15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016107dc565b6001600160a01b038216611a4d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016107dc565b6001600160a01b03831660009081526020819052604090205481811015611adc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016107dc565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610fbd565b6008805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055611ba2307f000000000000000000000000000000000000000000000000000000000000000084610dbb565b6008546040517ff305d7190000000000000000000000000000000000000000000000000000000081523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015611c4a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611c6f919061203d565b50506008805474ff000000000000000000000000000000000000000019169055505050565b803561ffff81168114611ca657600080fd5b919050565b60008060408385031215611cbe57600080fd5b611cc783611c94565b9150611cd560208401611c94565b90509250929050565b600060208083528351808285015260005b81811015611d0b57858101830151858201604001528201611cef565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b6001600160a01b0381168114610d5e57600080fd5b60008060408385031215611d7257600080fd5b8235611d7d81611d4a565b946020939093013593505050565b600060208284031215611d9d57600080fd5b8135611da881611d4a565b9392505050565b600060208284031215611dc157600080fd5b5035919050565b600080600060608486031215611ddd57600080fd5b8335611de881611d4a565b92506020840135611df881611d4a565b929592945050506040919091013590565b600060208284031215611e1b57600080fd5b81358015158114611da857600080fd5b60008060408385031215611e3e57600080fd5b8235611e4981611d4a565b91506020830135611e5981611d4a565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b61ffff818116838216019080821115611eae57611eae611e64565b5092915050565b600181811c90821680611ec957607f821691505b602082108103611f02577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b808201808211156108fa576108fa611e64565b80820281158282048414176108fa576108fa611e64565b600082611f68577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b818103818111156108fa576108fa611e64565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215611fc157600080fd5b8151611da881611d4a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561201c5784516001600160a01b031683529383019391830191600101611ff7565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561205257600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220e97e556ebc2eb16126cdda11bdfb2a6ddcdbbbc12182ae926ad08f45e7809e4564736f6c6343000811003300000000000000000000000024e460155382f62cb321c6010aa38c54b05bb6fd00000000000000000000000061a4ddc59505f3ed6dbbd41923c5a954d350d834

Deployed Bytecode

0x6080604052600436106102385760003560e01c80634f7041a51161013857806395d89b41116100b0578063c4827cb61161007f578063dd62ed3e11610064578063dd62ed3e146106f0578063e43252d714610736578063f2fde38b1461075657600080fd5b8063c4827cb61461069f578063cc1776d3146106bf57600080fd5b806395d89b4114610634578063a457c2d714610649578063a9059cbb14610669578063aa4bde281461068957600080fd5b8063715018a6116101075780638ab1d681116100ec5780638ab1d681146105bd5780638da5cb5b146105dd578063938f296c146105fb57600080fd5b8063715018a61461058857806375f0a8741461059d57600080fd5b80634f7041a5146104bc57806359927044146105125780635d098b381461053257806370a082311461055257600080fd5b80631d4a4417116101cb57806339189c9f1161019a5780633d9566911161017f5780633d9566911461045257806349bd5a5e146104685780634ec39ba91461049c57600080fd5b806339189c9f14610402578063395093511461043257600080fd5b80631d4a44171461038657806323b872dd146103a657806327a14fc2146103c6578063313ce567146103e657600080fd5b806310c507c41161020757806310c507c4146102e15780631694505e146102fb57806316bd9b251461034757806318160ddd1461036757600080fd5b806303d597231461024457806306fdde0314610266578063095ea7b3146102915780630b01aa51146102c157600080fd5b3661023f57005b600080fd5b34801561025057600080fd5b5061026461025f366004611cab565b610776565b005b34801561027257600080fd5b5061027b610854565b6040516102889190611cde565b60405180910390f35b34801561029d57600080fd5b506102b16102ac366004611d5f565b6108e6565b6040519015158152602001610288565b3480156102cd57600080fd5b506102646102dc366004611d8b565b610900565b3480156102ed57600080fd5b50600d546102b19060ff1681565b34801561030757600080fd5b5061032f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610288565b34801561035357600080fd5b50610264610362366004611cab565b610998565b34801561037357600080fd5b506002545b604051908152602001610288565b34801561039257600080fd5b506102646103a1366004611daf565b610a71565b3480156103b257600080fd5b506102b16103c1366004611dc8565b610a7e565b3480156103d257600080fd5b506102646103e1366004611daf565b610aa2565b3480156103f257600080fd5b5060405160098152602001610288565b34801561040e57600080fd5b506102b161041d366004611d8b565b600e6020526000908152604090205460ff1681565b34801561043e57600080fd5b506102b161044d366004611d5f565b610aaf565b34801561045e57600080fd5b50610378600b5481565b34801561047457600080fd5b5061032f7f000000000000000000000000d66804354ea76557e209fb897d16b553fa30606a81565b3480156104a857600080fd5b5060085461032f906001600160a01b031681565b3480156104c857600080fd5b506009546104ed9061ffff808216916201000081048216916401000000009091041683565b6040805161ffff94851681529284166020840152921691810191909152606001610288565b34801561051e57600080fd5b5060075461032f906001600160a01b031681565b34801561053e57600080fd5b5061026461054d366004611d8b565b610aee565b34801561055e57600080fd5b5061037861056d366004611d8b565b6001600160a01b031660009081526020819052604090205490565b34801561059457600080fd5b50610264610b86565b3480156105a957600080fd5b5060065461032f906001600160a01b031681565b3480156105c957600080fd5b506102646105d8366004611d8b565b610b9a565b3480156105e957600080fd5b506005546001600160a01b031661032f565b34801561060757600080fd5b506102b1610616366004611d8b565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561064057600080fd5b5061027b610bc3565b34801561065557600080fd5b506102b1610664366004611d5f565b610bd2565b34801561067557600080fd5b506102b1610684366004611d5f565b610c7c565b34801561069557600080fd5b50610378600c5481565b3480156106ab57600080fd5b506102646106ba366004611e09565b610c8a565b3480156106cb57600080fd5b50600a546104ed9061ffff808216916201000081048216916401000000009091041683565b3480156106fc57600080fd5b5061037861070b366004611e2b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561074257600080fd5b50610264610751366004611d8b565b610ca5565b34801561076257600080fd5b50610264610771366004611d8b565b610cd1565b61077e610d61565b600061078a8284611e93565b905060648161ffff16106107e55760405162461bcd60e51b815260206004820152601160248201527f546f74616c20746178206f76657220393900000000000000000000000000000060448201526064015b60405180910390fd5b6040805160608101825261ffff948516808252938516602082018190529290941693018390526009805463ffffffff191690921762010000909102177fffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffff16640100000000909202919091179055565b60606003805461086390611eb5565b80601f016020809104026020016040519081016040528092919081815260200182805461088f90611eb5565b80156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b6000336108f4818585610dbb565b60019150505b92915050565b610908610d61565b6001600160a01b03811661095e5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732063616e6e6f7420626520302061646472657373000000000060448201526064016107dc565b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6109a0610d61565b60006109ac8284611e93565b905060648161ffff1610610a025760405162461bcd60e51b815260206004820152601160248201527f546f74616c20746178206f76657220393900000000000000000000000000000060448201526064016107dc565b6040805160608101825261ffff94851680825293851660208201819052929094169301839052600a805463ffffffff191690921762010000909102177fffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffff16640100000000909202919091179055565b610a79610d61565b600b55565b600033610a8c858285610f13565b610a97858585610fc3565b506001949350505050565b610aaa610d61565b600c55565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906108f49082908690610ae9908790611f08565b610dbb565b610af6610d61565b6001600160a01b038116610b4c5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732063616e6e6f7420626520302061646472657373000000000060448201526064016107dc565b600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b610b8e610d61565b610b9860006115e5565b565b610ba2610d61565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b60606004805461086390611eb5565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610c6f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016107dc565b610a978286868403610dbb565b6000336108f4818585610fc3565b610c92610d61565b600d805460ff1916911515919091179055565b610cad610d61565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b610cd9610d61565b6001600160a01b038116610d555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107dc565b610d5e816115e5565b50565b6005546001600160a01b03163314610b985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107dc565b6001600160a01b038316610e365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107dc565b6001600160a01b038216610eb25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016107dc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fbd5781811015610fb05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107dc565b610fbd8484848403610dbb565b50505050565b6001600160a01b03831661103f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016107dc565b6001600160a01b0382166110bb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016107dc565b806110db846001600160a01b031660009081526020819052604090205490565b101561114f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016107dc565b7f000000000000000000000000d66804354ea76557e209fb897d16b553fa30606a6001600160a01b0316836001600160a01b031614806111c057507f000000000000000000000000d66804354ea76557e209fb897d16b553fa30606a6001600160a01b0316826001600160a01b0316145b80156111e7575060085474010000000000000000000000000000000000000000900460ff16155b1561151b577f000000000000000000000000d66804354ea76557e209fb897d16b553fa30606a6001600160a01b0316826001600160a01b031614801561122f5750600d5460ff165b1561132a5730600090815260208190526040902054600b54811061132857600a546009546000916112739161ffff6401000000009283900481169290910416611e93565b600a5460095491925060009161ffff80851692611294929082169116611e93565b61ffff16600b546112a59190611f1b565b6112af9190611f32565b90506112ba8161164f565b6112d081600b546112cb9190611f6d565b611729565b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461131d576040519150601f19603f3d011682016040523d82523d6000602084013e611322565b606091505b50505050505b505b6001600160a01b0383166000908152600e6020526040902054819060ff168061136b57506001600160a01b0383166000908152600e602052604090205460ff165b6115105760007f000000000000000000000000d66804354ea76557e209fb897d16b553fa30606a6001600160a01b0316846001600160a01b0316036113bf5750600a54640100000000900461ffff16611409565b7f000000000000000000000000d66804354ea76557e209fb897d16b553fa30606a6001600160a01b0316856001600160a01b0316036114095750600954640100000000900461ffff165b600060646114178386611f1b565b6114219190611f32565b905061142d8184611f6d565b92507f000000000000000000000000d66804354ea76557e209fb897d16b553fa30606a6001600160a01b0316856001600160a01b03161461150257600c546001600160a01b03861660009081526020819052604090205461148e9085611f08565b11156115025760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60448201527f61782077616c6c657420616d6f756e74206c696d69740000000000000000000060648201526084016107dc565b61150d863083611955565b50505b610fbd848483611955565b6001600160a01b0382166000908152600e602052604090205460ff166115d557600c546001600160a01b0383166000908152602081905260409020546115619083611f08565b11156115d55760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60448201527f61782077616c6c657420616d6f756e74206c696d69740000000000000000000060648201526084016107dc565b6115e0838383611955565b505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790556000611691600283611f32565b9050600061169f8284611f6d565b9050476116ab83611729565b60006116b78247611f6d565b90506116c38382611b42565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506008805474ff000000000000000000000000000000000000000019169055505050565b6008805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061179357611793611f80565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611811573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118359190611faf565b8160018151811061184857611848611f80565b60200260200101906001600160a01b031690816001600160a01b031681525050611893307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610dbb565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611901908590600090869030904290600401611fcc565b600060405180830381600087803b15801561191b57600080fd5b505af115801561192f573d6000803e3d6000fd5b50506008805474ff00000000000000000000000000000000000000001916905550505050565b6001600160a01b0383166119d15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016107dc565b6001600160a01b038216611a4d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016107dc565b6001600160a01b03831660009081526020819052604090205481811015611adc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016107dc565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610fbd565b6008805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055611ba2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610dbb565b6008546040517ff305d7190000000000000000000000000000000000000000000000000000000081523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015611c4a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611c6f919061203d565b50506008805474ff000000000000000000000000000000000000000019169055505050565b803561ffff81168114611ca657600080fd5b919050565b60008060408385031215611cbe57600080fd5b611cc783611c94565b9150611cd560208401611c94565b90509250929050565b600060208083528351808285015260005b81811015611d0b57858101830151858201604001528201611cef565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b6001600160a01b0381168114610d5e57600080fd5b60008060408385031215611d7257600080fd5b8235611d7d81611d4a565b946020939093013593505050565b600060208284031215611d9d57600080fd5b8135611da881611d4a565b9392505050565b600060208284031215611dc157600080fd5b5035919050565b600080600060608486031215611ddd57600080fd5b8335611de881611d4a565b92506020840135611df881611d4a565b929592945050506040919091013590565b600060208284031215611e1b57600080fd5b81358015158114611da857600080fd5b60008060408385031215611e3e57600080fd5b8235611e4981611d4a565b91506020830135611e5981611d4a565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b61ffff818116838216019080821115611eae57611eae611e64565b5092915050565b600181811c90821680611ec957607f821691505b602082108103611f02577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b808201808211156108fa576108fa611e64565b80820281158282048414176108fa576108fa611e64565b600082611f68577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b818103818111156108fa576108fa611e64565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215611fc157600080fd5b8151611da881611d4a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561201c5784516001600160a01b031683529383019391830191600101611ff7565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561205257600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220e97e556ebc2eb16126cdda11bdfb2a6ddcdbbbc12182ae926ad08f45e7809e4564736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000024e460155382f62cb321c6010aa38c54b05bb6fd00000000000000000000000061a4ddc59505f3ed6dbbd41923c5a954d350d834

-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0x24e460155382f62Cb321C6010AA38c54b05bB6fd
Arg [1] : _liqWallet (address): 0x61A4ddC59505f3Ed6DbBD41923c5A954D350d834

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000024e460155382f62cb321c6010aa38c54b05bb6fd
Arg [1] : 00000000000000000000000061a4ddc59505f3ed6dbbd41923c5a954d350d834


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.