ETH Price: $2,966.65 (+3.55%)
Gas: 1 Gwei

Token

Jack AI (JACK)
 

Overview

Max Total Supply

69,696,969 JACK

Holders

579

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
morningwillcome.eth
Balance
0 JACK

Value
$0.00
0xa59b9ece9262d547a13f46b8e4f74e56acab75dc
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:
JackCoin

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-11
*/

/**

Website : https://jacked.vip
Twitter : https://twitter.com/clarifythisJack
Telegram : https://t.me/JackPortalErc

*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC20/IERC20.sol


// 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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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 18;
    }

    /**
     * @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: jack.sol



pragma solidity ^0.8.17;



contract JackCoin is ERC20, Ownable {

    uint256 public buyTaxPercentage;
    uint256 public sellTaxPercentage;
    uint256 public maxBuy;
    bool public tradingEnabled;
    address public uniswapPair;
    address public marketingWallet;
    address public cexWallet;
    address public partnershipWallet;
    address public taxWallet;
    bool private liquidityAdded;


    constructor(
        address _marketingWallet,
        address _cexWallet,
        address _taxWallet,
        address _partnershipWallet
    ) ERC20("Jack AI", "JACK") {
        uint256 initialSupply = 69696969 * 10**18;
        uint256 marketingAmount = (initialSupply * 8) / 100;
        uint256 cexAmount = (initialSupply * 3) / 100;
        uint256 partnershipAmount = (initialSupply * 4) / 100;
        uint256 remainingAmount = initialSupply - marketingAmount - cexAmount - partnershipAmount;

        marketingWallet = _marketingWallet;
        cexWallet = _cexWallet;
        taxWallet = _taxWallet;
        partnershipWallet = _partnershipWallet;

        _mint(marketingWallet, marketingAmount);
        _mint(cexWallet, cexAmount);
        _mint(partnershipWallet, partnershipAmount);
        _mint(msg.sender, remainingAmount);
    }

    function addLiquidity() public onlyOwner {
        require(!liquidityAdded, "Liquidity already added");
        liquidityAdded = true;
    }

    function setMaxBuy(uint256 _maxBuy) public onlyOwner {
        require(_maxBuy >= 0 && _maxBuy <= 100, "Invalid buy max buy");
        maxBuy = _maxBuy;
    }

    function setBuyTaxPercentage(uint256 _buyTaxPercentage) public onlyOwner {
        require(_buyTaxPercentage >= 0 && _buyTaxPercentage <= 100, "Invalid buy tax percentage");
        buyTaxPercentage = _buyTaxPercentage;
    }

    function setSellTaxPercentage(uint256 _sellTaxPercentage) public onlyOwner {
        require(_sellTaxPercentage >= 0 && _sellTaxPercentage <= 100, "Invalid sell tax percentage");
        sellTaxPercentage = _sellTaxPercentage;
    }

        function setUniswapPair(address _uniswapPair) public onlyOwner {
        uniswapPair = _uniswapPair;
    }

        function enableTrading() public onlyOwner {
        tradingEnabled = true;
    }

    // Override the _transfer function to apply taxes on transfers
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual override {
        require(tradingEnabled || sender == owner() || recipient == owner(), "Trading is not enabled");

        uint256 taxPercentage;
        if (sender == owner() || recipient == owner() || recipient == taxWallet || sender == taxWallet ) {
            taxPercentage = 0;
        } else if (recipient == uniswapPair) {
            taxPercentage = sellTaxPercentage;
        } else if (sender == uniswapPair) {
            taxPercentage = buyTaxPercentage;
        } else {
            taxPercentage = 0;
        }

        uint256 taxAmount = (amount * taxPercentage) / 100;
        uint256 netAmount = amount - taxAmount;

        uint256 maxWalletAmount = totalSupply() * maxBuy / 100;
        bool isExcludedWallet = (recipient == owner() || recipient == taxWallet || recipient == marketingWallet || recipient == cexWallet || recipient == partnershipWallet || recipient == uniswapPair);
        
        if ((tradingEnabled && sender == uniswapPair) && !isExcludedWallet) {
            require(balanceOf(recipient) + netAmount <= maxWalletAmount, "Forbid");
        }
        // Apply tax
        super._transfer(sender, taxWallet, taxAmount);
        // Transfer net amount to recipient
        super._transfer(sender, recipient, netAmount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_cexWallet","type":"address"},{"internalType":"address","name":"_taxWallet","type":"address"},{"internalType":"address","name":"_partnershipWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"addLiquidity","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":"buyTaxPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cexWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnershipWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTaxPercentage","type":"uint256"}],"name":"setBuyTaxPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuy","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTaxPercentage","type":"uint256"}],"name":"setSellTaxPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapPair","type":"address"}],"name":"setUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620016973803806200169783398101604081905262000034916200031f565b604051806040016040528060078152602001664a61636b20414960c81b815250604051806040016040528060048152602001634a41434b60e01b815250816003908162000082919062000420565b50600462000091828262000420565b505050620000ae620000a8620001e160201b60201c565b620001e5565b6a39a6e842a13c064184000060006064620000cb83600862000502565b620000d7919062000522565b905060006064620000ea84600362000502565b620000f6919062000522565b9050600060646200010985600462000502565b62000115919062000522565b90506000818362000127868862000545565b62000133919062000545565b6200013f919062000545565b600a80546001600160a01b03808d166001600160a01b03199283168117909355600b80548d8316908416179055600d80548c8316908416179055600c8054918b169190921617905590915062000196908562000237565b600b54620001ae906001600160a01b03168462000237565b600c54620001c6906001600160a01b03168362000237565b620001d2338262000237565b50505050505050505062000571565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002925760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002a691906200055b565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b80516001600160a01b03811681146200031a57600080fd5b919050565b600080600080608085870312156200033657600080fd5b620003418562000302565b9350620003516020860162000302565b9250620003616040860162000302565b9150620003716060860162000302565b905092959194509250565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003a757607f821691505b602082108103620003c857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002fd57600081815260208120601f850160051c81016020861015620003f75750805b601f850160051c820191505b81811015620004185782815560010162000403565b505050505050565b81516001600160401b038111156200043c576200043c6200037c565b62000454816200044d845462000392565b84620003ce565b602080601f8311600181146200048c5760008415620004735750858301515b600019600386901b1c1916600185901b17855562000418565b600085815260208120601f198616915b82811015620004bd578886015182559484019460019091019084016200049c565b5085821015620004dc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200051c576200051c620004ec565b92915050565b6000826200054057634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156200051c576200051c620004ec565b808201808211156200051c576200051c620004ec565b61111680620005816000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638a8c523c11610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e146103b3578063e8078d94146103c6578063f2fde38b146103ce578063f53bc835146103e157600080fd5b8063a9059cbb14610362578063b107594314610375578063c816841b14610388578063d5aed6bf146103a057600080fd5b80639e7d8d1d116100de5780639e7d8d1d146103205780639ec4be4114610329578063a457c2d71461033c578063a56d37f91461034f57600080fd5b80638a8c523c146102ff5780638da5cb5b1461030757806395d89b411461031857600080fd5b8063395093511161017157806370db69d61161014b57806370db69d6146102d0578063715018a6146102d957806375f0a874146102e3578063760bf186146102f657600080fd5b806339509351146102875780634ada218b1461029a57806370a08231146102a757600080fd5b806323b872dd116101ad57806323b872dd146102275780632dc0562d1461023a578063313ce56714610265578063367d53bc1461027457600080fd5b806306fdde03146101d4578063095ea7b3146101f257806318160ddd14610215575b600080fd5b6101dc6103f4565b6040516101e99190610ef3565b60405180910390f35b610205610200366004610f5d565b610486565b60405190151581526020016101e9565b6002545b6040519081526020016101e9565b610205610235366004610f87565b6104a0565b600d5461024d906001600160a01b031681565b6040516001600160a01b0390911681526020016101e9565b604051601281526020016101e9565b600c5461024d906001600160a01b031681565b610205610295366004610f5d565b6104c4565b6009546102059060ff1681565b6102196102b5366004610fc3565b6001600160a01b031660009081526020819052604090205490565b61021960085481565b6102e16104e6565b005b600a5461024d906001600160a01b031681565b61021960065481565b6102e16104fa565b6005546001600160a01b031661024d565b6101dc610511565b61021960075481565b6102e1610337366004610fe5565b610520565b61020561034a366004610f5d565b610583565b6102e161035d366004610fe5565b6105fe565b610205610370366004610f5d565b61065c565b600b5461024d906001600160a01b031681565b60095461024d9061010090046001600160a01b031681565b6102e16103ae366004610fc3565b61066a565b6102196103c1366004610ffe565b61069a565b6102e16106c5565b6102e16103dc366004610fc3565b61073c565b6102e16103ef366004610fe5565b6107b5565b60606003805461040390611031565b80601f016020809104026020016040519081016040528092919081815260200182805461042f90611031565b801561047c5780601f106104515761010080835404028352916020019161047c565b820191906000526020600020905b81548152906001019060200180831161045f57829003601f168201915b5050505050905090565b600033610494818585610809565b60019150505b92915050565b6000336104ae85828561092d565b6104b98585856109a7565b506001949350505050565b6000336104948185856104d7838361069a565b6104e19190611081565b610809565b6104ee610ca3565b6104f86000610cfd565b565b610502610ca3565b6009805460ff19166001179055565b60606004805461040390611031565b610528610ca3565b606481111561057e5760405162461bcd60e51b815260206004820152601b60248201527f496e76616c69642073656c6c207461782070657263656e74616765000000000060448201526064015b60405180910390fd5b600755565b60003381610591828661069a565b9050838110156105f15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610575565b6104b98286868403610809565b610606610ca3565b60648111156106575760405162461bcd60e51b815260206004820152601a60248201527f496e76616c696420627579207461782070657263656e746167650000000000006044820152606401610575565b600655565b6000336104948185856109a7565b610672610ca3565b600980546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106cd610ca3565b600d54600160a01b900460ff16156107275760405162461bcd60e51b815260206004820152601760248201527f4c697175696469747920616c72656164792061646465640000000000000000006044820152606401610575565b600d805460ff60a01b1916600160a01b179055565b610744610ca3565b6001600160a01b0381166107a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610575565b6107b281610cfd565b50565b6107bd610ca3565b60648111156108045760405162461bcd60e51b8152602060048201526013602482015272496e76616c696420627579206d61782062757960681b6044820152606401610575565b600855565b6001600160a01b03831661086b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610575565b6001600160a01b0382166108cc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610575565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610939848461069a565b905060001981146109a157818110156109945760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610575565b6109a18484848403610809565b50505050565b60095460ff16806109c557506005546001600160a01b038481169116145b806109dd57506005546001600160a01b038381169116145b610a225760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610575565b6000610a366005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161480610a6257506005546001600160a01b038481169116145b80610a7a5750600d546001600160a01b038481169116145b80610a925750600d546001600160a01b038581169116145b15610a9f57506000610aeb565b6009546001600160a01b03610100909104811690841603610ac35750600754610aeb565b6009546001600160a01b03610100909104811690851603610ae75750600654610aeb565b5060005b60006064610af98385611094565b610b0391906110ab565b90506000610b1182856110cd565b905060006064600854610b2360025490565b610b2d9190611094565b610b3791906110ab565b90506000610b4d6005546001600160a01b031690565b6001600160a01b0316876001600160a01b03161480610b795750600d546001600160a01b038881169116145b80610b915750600a546001600160a01b038881169116145b80610ba95750600b546001600160a01b038881169116145b80610bc15750600c546001600160a01b038881169116145b80610bde57506009546001600160a01b0388811661010090920416145b60095490915060ff168015610c0557506009546001600160a01b0389811661010090920416145b8015610c0f575080155b15610c76578183610c35896001600160a01b031660009081526020819052604090205490565b610c3f9190611081565b1115610c765760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610575565b600d54610c8e9089906001600160a01b031686610d4f565b610c99888885610d4f565b5050505050505050565b6005546001600160a01b031633146104f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610575565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610db35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610575565b6001600160a01b038216610e155760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610575565b6001600160a01b03831660009081526020819052604090205481811015610e8d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610575565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109a1565b600060208083528351808285015260005b81811015610f2057858101830151858201604001528201610f04565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f5857600080fd5b919050565b60008060408385031215610f7057600080fd5b610f7983610f41565b946020939093013593505050565b600080600060608486031215610f9c57600080fd5b610fa584610f41565b9250610fb360208501610f41565b9150604084013590509250925092565b600060208284031215610fd557600080fd5b610fde82610f41565b9392505050565b600060208284031215610ff757600080fd5b5035919050565b6000806040838503121561101157600080fd5b61101a83610f41565b915061102860208401610f41565b90509250929050565b600181811c9082168061104557607f821691505b60208210810361106557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561049a5761049a61106b565b808202811582820484141761049a5761049a61106b565b6000826110c857634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561049a5761049a61106b56fea26469706673582212205513ba52b5c69afe3e427c754011dd175e3b492f05ce49c6578d85bc96d19ed964736f6c634300081100330000000000000000000000009ae147998acc54e86a81daeebc67320e0371e92900000000000000000000000072f2d537c92a95f3d8eb7fd642381856904836780000000000000000000000004698294f1ac8f2f0131a8ad4ab5de7a046caa38b0000000000000000000000009435f22cf49601886a7485599ed3e8f8a68ff6bb

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638a8c523c11610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e146103b3578063e8078d94146103c6578063f2fde38b146103ce578063f53bc835146103e157600080fd5b8063a9059cbb14610362578063b107594314610375578063c816841b14610388578063d5aed6bf146103a057600080fd5b80639e7d8d1d116100de5780639e7d8d1d146103205780639ec4be4114610329578063a457c2d71461033c578063a56d37f91461034f57600080fd5b80638a8c523c146102ff5780638da5cb5b1461030757806395d89b411461031857600080fd5b8063395093511161017157806370db69d61161014b57806370db69d6146102d0578063715018a6146102d957806375f0a874146102e3578063760bf186146102f657600080fd5b806339509351146102875780634ada218b1461029a57806370a08231146102a757600080fd5b806323b872dd116101ad57806323b872dd146102275780632dc0562d1461023a578063313ce56714610265578063367d53bc1461027457600080fd5b806306fdde03146101d4578063095ea7b3146101f257806318160ddd14610215575b600080fd5b6101dc6103f4565b6040516101e99190610ef3565b60405180910390f35b610205610200366004610f5d565b610486565b60405190151581526020016101e9565b6002545b6040519081526020016101e9565b610205610235366004610f87565b6104a0565b600d5461024d906001600160a01b031681565b6040516001600160a01b0390911681526020016101e9565b604051601281526020016101e9565b600c5461024d906001600160a01b031681565b610205610295366004610f5d565b6104c4565b6009546102059060ff1681565b6102196102b5366004610fc3565b6001600160a01b031660009081526020819052604090205490565b61021960085481565b6102e16104e6565b005b600a5461024d906001600160a01b031681565b61021960065481565b6102e16104fa565b6005546001600160a01b031661024d565b6101dc610511565b61021960075481565b6102e1610337366004610fe5565b610520565b61020561034a366004610f5d565b610583565b6102e161035d366004610fe5565b6105fe565b610205610370366004610f5d565b61065c565b600b5461024d906001600160a01b031681565b60095461024d9061010090046001600160a01b031681565b6102e16103ae366004610fc3565b61066a565b6102196103c1366004610ffe565b61069a565b6102e16106c5565b6102e16103dc366004610fc3565b61073c565b6102e16103ef366004610fe5565b6107b5565b60606003805461040390611031565b80601f016020809104026020016040519081016040528092919081815260200182805461042f90611031565b801561047c5780601f106104515761010080835404028352916020019161047c565b820191906000526020600020905b81548152906001019060200180831161045f57829003601f168201915b5050505050905090565b600033610494818585610809565b60019150505b92915050565b6000336104ae85828561092d565b6104b98585856109a7565b506001949350505050565b6000336104948185856104d7838361069a565b6104e19190611081565b610809565b6104ee610ca3565b6104f86000610cfd565b565b610502610ca3565b6009805460ff19166001179055565b60606004805461040390611031565b610528610ca3565b606481111561057e5760405162461bcd60e51b815260206004820152601b60248201527f496e76616c69642073656c6c207461782070657263656e74616765000000000060448201526064015b60405180910390fd5b600755565b60003381610591828661069a565b9050838110156105f15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610575565b6104b98286868403610809565b610606610ca3565b60648111156106575760405162461bcd60e51b815260206004820152601a60248201527f496e76616c696420627579207461782070657263656e746167650000000000006044820152606401610575565b600655565b6000336104948185856109a7565b610672610ca3565b600980546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106cd610ca3565b600d54600160a01b900460ff16156107275760405162461bcd60e51b815260206004820152601760248201527f4c697175696469747920616c72656164792061646465640000000000000000006044820152606401610575565b600d805460ff60a01b1916600160a01b179055565b610744610ca3565b6001600160a01b0381166107a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610575565b6107b281610cfd565b50565b6107bd610ca3565b60648111156108045760405162461bcd60e51b8152602060048201526013602482015272496e76616c696420627579206d61782062757960681b6044820152606401610575565b600855565b6001600160a01b03831661086b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610575565b6001600160a01b0382166108cc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610575565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610939848461069a565b905060001981146109a157818110156109945760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610575565b6109a18484848403610809565b50505050565b60095460ff16806109c557506005546001600160a01b038481169116145b806109dd57506005546001600160a01b038381169116145b610a225760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610575565b6000610a366005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161480610a6257506005546001600160a01b038481169116145b80610a7a5750600d546001600160a01b038481169116145b80610a925750600d546001600160a01b038581169116145b15610a9f57506000610aeb565b6009546001600160a01b03610100909104811690841603610ac35750600754610aeb565b6009546001600160a01b03610100909104811690851603610ae75750600654610aeb565b5060005b60006064610af98385611094565b610b0391906110ab565b90506000610b1182856110cd565b905060006064600854610b2360025490565b610b2d9190611094565b610b3791906110ab565b90506000610b4d6005546001600160a01b031690565b6001600160a01b0316876001600160a01b03161480610b795750600d546001600160a01b038881169116145b80610b915750600a546001600160a01b038881169116145b80610ba95750600b546001600160a01b038881169116145b80610bc15750600c546001600160a01b038881169116145b80610bde57506009546001600160a01b0388811661010090920416145b60095490915060ff168015610c0557506009546001600160a01b0389811661010090920416145b8015610c0f575080155b15610c76578183610c35896001600160a01b031660009081526020819052604090205490565b610c3f9190611081565b1115610c765760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610575565b600d54610c8e9089906001600160a01b031686610d4f565b610c99888885610d4f565b5050505050505050565b6005546001600160a01b031633146104f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610575565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610db35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610575565b6001600160a01b038216610e155760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610575565b6001600160a01b03831660009081526020819052604090205481811015610e8d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610575565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109a1565b600060208083528351808285015260005b81811015610f2057858101830151858201604001528201610f04565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f5857600080fd5b919050565b60008060408385031215610f7057600080fd5b610f7983610f41565b946020939093013593505050565b600080600060608486031215610f9c57600080fd5b610fa584610f41565b9250610fb360208501610f41565b9150604084013590509250925092565b600060208284031215610fd557600080fd5b610fde82610f41565b9392505050565b600060208284031215610ff757600080fd5b5035919050565b6000806040838503121561101157600080fd5b61101a83610f41565b915061102860208401610f41565b90509250929050565b600181811c9082168061104557607f821691505b60208210810361106557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561049a5761049a61106b565b808202811582820484141761049a5761049a61106b565b6000826110c857634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561049a5761049a61106b56fea26469706673582212205513ba52b5c69afe3e427c754011dd175e3b492f05ce49c6578d85bc96d19ed964736f6c63430008110033

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

0000000000000000000000009ae147998acc54e86a81daeebc67320e0371e92900000000000000000000000072f2d537c92a95f3d8eb7fd642381856904836780000000000000000000000004698294f1ac8f2f0131a8ad4ab5de7a046caa38b0000000000000000000000009435f22cf49601886a7485599ed3e8f8a68ff6bb

-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0x9Ae147998Acc54e86A81dAeebc67320E0371E929
Arg [1] : _cexWallet (address): 0x72F2D537C92a95f3d8Eb7fD64238185690483678
Arg [2] : _taxWallet (address): 0x4698294f1ac8f2F0131a8AD4aB5De7a046Caa38b
Arg [3] : _partnershipWallet (address): 0x9435F22cf49601886A7485599ed3E8f8a68FF6BB

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000009ae147998acc54e86a81daeebc67320e0371e929
Arg [1] : 00000000000000000000000072f2d537c92a95f3d8eb7fd64238185690483678
Arg [2] : 0000000000000000000000004698294f1ac8f2f0131a8ad4ab5de7a046caa38b
Arg [3] : 0000000000000000000000009435f22cf49601886a7485599ed3e8f8a68ff6bb


Deployed Bytecode Sourcemap

20761:3763:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9516:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11867:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11867:201:0;1004:187:1;10636:108:0;10724:12;;10636:108;;;1342:25:1;;;1330:2;1315:18;10636:108:0;1196:177:1;12648:295:0;;;;;;:::i;:::-;;:::i;21084:24::-;;;;;-1:-1:-1;;;;;21084:24:0;;;;;;-1:-1:-1;;;;;1875:32:1;;;1857:51;;1845:2;1830:18;21084:24:0;1711:203:1;10478:93:0;;;10561:2;2061:36:1;;2049:2;2034:18;10478:93:0;1919:184:1;21045:32:0;;;;;-1:-1:-1;;;;;21045:32:0;;;13352:238;;;;;;:::i;:::-;;:::i;20911:26::-;;;;;;;;;10807:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10908:18:0;10881:7;10908:18;;;;;;;;;;;;10807:127;20883:21;;;;;;2942:103;;;:::i;:::-;;20977:30;;;;;-1:-1:-1;;;;;20977:30:0;;;20806:31;;;;;;22951:82;;;:::i;2294:87::-;2367:6;;-1:-1:-1;;;;;2367:6:0;2294:87;;9735:104;;;:::i;20844:32::-;;;;;;22584:235;;;;;;:::i;:::-;;:::i;14093:436::-;;;;;;:::i;:::-;;:::i;22348:228::-;;;;;;:::i;:::-;;:::i;11140:193::-;;;;;;:::i;:::-;;:::i;21014:24::-;;;;;-1:-1:-1;;;;;21014:24:0;;;20944:26;;;;;;;;-1:-1:-1;;;;;20944:26:0;;;22831:108;;;;;;:::i;:::-;;:::i;11396:151::-;;;;;;:::i;:::-;;:::i;22028:143::-;;;:::i;3200:201::-;;;;;;:::i;:::-;;:::i;22179:161::-;;;;;;:::i;:::-;;:::i;9516:100::-;9570:13;9603:5;9596:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9516:100;:::o;11867:201::-;11950:4;925:10;12006:32;925:10;12022:7;12031:6;12006:8;:32::i;:::-;12056:4;12049:11;;;11867:201;;;;;:::o;12648:295::-;12779:4;925:10;12837:38;12853:4;925:10;12868:6;12837:15;:38::i;:::-;12886:27;12896:4;12902:2;12906:6;12886:9;:27::i;:::-;-1:-1:-1;12931:4:0;;12648:295;-1:-1:-1;;;;12648:295:0:o;13352:238::-;13440:4;925:10;13496:64;925:10;13512:7;13549:10;13521:25;925:10;13512:7;13521:9;:25::i;:::-;:38;;;;:::i;:::-;13496:8;:64::i;2942:103::-;2180:13;:11;:13::i;:::-;3007:30:::1;3034:1;3007:18;:30::i;:::-;2942:103::o:0;22951:82::-;2180:13;:11;:13::i;:::-;23004:14:::1;:21:::0;;-1:-1:-1;;23004:21:0::1;23021:4;23004:21;::::0;;22951:82::o;9735:104::-;9791:13;9824:7;9817:14;;;;;:::i;22584:235::-;2180:13;:11;:13::i;:::-;22727:3:::1;22705:18;:25;;22670:92;;;::::0;-1:-1:-1;;;22670:92:0;;3598:2:1;22670:92:0::1;::::0;::::1;3580:21:1::0;3637:2;3617:18;;;3610:30;3676:29;3656:18;;;3649:57;3723:18;;22670:92:0::1;;;;;;;;;22773:17;:38:::0;22584:235::o;14093:436::-;14186:4;925:10;14186:4;14269:25;925:10;14286:7;14269:9;:25::i;:::-;14242:52;;14333:15;14313:16;:35;;14305:85;;;;-1:-1:-1;;;14305:85:0;;3954:2:1;14305:85:0;;;3936:21:1;3993:2;3973:18;;;3966:30;4032:34;4012:18;;;4005:62;-1:-1:-1;;;4083:18:1;;;4076:35;4128:19;;14305:85:0;3752:401:1;14305:85:0;14426:60;14435:5;14442:7;14470:15;14451:16;:34;14426:8;:60::i;22348:228::-;2180:13;:11;:13::i;:::-;22487:3:::1;22466:17;:24;;22432:89;;;::::0;-1:-1:-1;;;22432:89:0;;4360:2:1;22432:89:0::1;::::0;::::1;4342:21:1::0;4399:2;4379:18;;;4372:30;4438:28;4418:18;;;4411:56;4484:18;;22432:89:0::1;4158:350:1::0;22432:89:0::1;22532:16;:36:::0;22348:228::o;11140:193::-;11219:4;925:10;11275:28;925:10;11292:2;11296:6;11275:9;:28::i;22831:108::-;2180:13;:11;:13::i;:::-;22905:11:::1;:26:::0;;-1:-1:-1;;;;;22905:26:0;;::::1;;;-1:-1:-1::0;;;;;;22905:26:0;;::::1;::::0;;;::::1;::::0;;22831:108::o;11396:151::-;-1:-1:-1;;;;;11512:18:0;;;11485:7;11512:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11396:151::o;22028:143::-;2180:13;:11;:13::i;:::-;22089:14:::1;::::0;-1:-1:-1;;;22089:14:0;::::1;;;22088:15;22080:51;;;::::0;-1:-1:-1;;;22080:51:0;;4715:2:1;22080:51:0::1;::::0;::::1;4697:21:1::0;4754:2;4734:18;;;4727:30;4793:25;4773:18;;;4766:53;4836:18;;22080:51:0::1;4513:347:1::0;22080:51:0::1;22142:14;:21:::0;;-1:-1:-1;;;;22142:21:0::1;-1:-1:-1::0;;;22142:21:0::1;::::0;;22028:143::o;3200:201::-;2180:13;:11;:13::i;:::-;-1:-1:-1;;;;;3289:22:0;::::1;3281:73;;;::::0;-1:-1:-1;;;3281:73:0;;5067:2:1;3281:73:0::1;::::0;::::1;5049:21:1::0;5106:2;5086:18;;;5079:30;5145:34;5125:18;;;5118:62;-1:-1:-1;;;5196:18:1;;;5189:36;5242:19;;3281:73:0::1;4865:402:1::0;3281:73:0::1;3365:28;3384:8;3365:18;:28::i;:::-;3200:201:::0;:::o;22179:161::-;2180:13;:11;:13::i;:::-;22278:3:::1;22267:7;:14;;22243:62;;;::::0;-1:-1:-1;;;22243:62:0;;5474:2:1;22243:62:0::1;::::0;::::1;5456:21:1::0;5513:2;5493:18;;;5486:30;-1:-1:-1;;;5532:18:1;;;5525:49;5591:18;;22243:62:0::1;5272:343:1::0;22243:62:0::1;22316:6;:16:::0;22179:161::o;18120:380::-;-1:-1:-1;;;;;18256:19:0;;18248:68;;;;-1:-1:-1;;;18248:68:0;;5822:2:1;18248:68:0;;;5804:21:1;5861:2;5841:18;;;5834:30;5900:34;5880:18;;;5873:62;-1:-1:-1;;;5951:18:1;;;5944:34;5995:19;;18248:68:0;5620:400:1;18248:68:0;-1:-1:-1;;;;;18335:21:0;;18327:68;;;;-1:-1:-1;;;18327:68:0;;6227:2:1;18327:68:0;;;6209:21:1;6266:2;6246:18;;;6239:30;6305:34;6285:18;;;6278:62;-1:-1:-1;;;6356:18:1;;;6349:32;6398:19;;18327:68:0;6025:398:1;18327:68:0;-1:-1:-1;;;;;18408:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18460:32;;1342:25:1;;;18460:32:0;;1315:18:1;18460:32:0;;;;;;;18120:380;;;:::o;18791:453::-;18926:24;18953:25;18963:5;18970:7;18953:9;:25::i;:::-;18926:52;;-1:-1:-1;;18993:16:0;:37;18989:248;;19075:6;19055:16;:26;;19047:68;;;;-1:-1:-1;;;19047:68:0;;6630:2:1;19047:68:0;;;6612:21:1;6669:2;6649:18;;;6642:30;6708:31;6688:18;;;6681:59;6757:18;;19047:68:0;6428:353:1;19047:68:0;19159:51;19168:5;19175:7;19203:6;19184:16;:25;19159:8;:51::i;:::-;18915:329;18791:453;;;:::o;23109:1412::-;23258:14;;;;;:35;;-1:-1:-1;2367:6:0;;-1:-1:-1;;;;;23276:17:0;;;2367:6;;23276:17;23258:35;:59;;;-1:-1:-1;2367:6:0;;-1:-1:-1;;;;;23297:20:0;;;2367:6;;23297:20;23258:59;23250:94;;;;-1:-1:-1;;;23250:94:0;;6988:2:1;23250:94:0;;;6970:21:1;7027:2;7007:18;;;7000:30;-1:-1:-1;;;7046:18:1;;;7039:52;7108:18;;23250:94:0;6786:346:1;23250:94:0;23357:21;23403:7;2367:6;;-1:-1:-1;;;;;2367:6:0;;2294:87;23403:7;-1:-1:-1;;;;;23393:17:0;:6;-1:-1:-1;;;;;23393:17:0;;:41;;;-1:-1:-1;2367:6:0;;-1:-1:-1;;;;;23414:20:0;;;2367:6;;23414:20;23393:41;:67;;;-1:-1:-1;23451:9:0;;-1:-1:-1;;;;;23438:22:0;;;23451:9;;23438:22;23393:67;:90;;;-1:-1:-1;23474:9:0;;-1:-1:-1;;;;;23464:19:0;;;23474:9;;23464:19;23393:90;23389:379;;;-1:-1:-1;23517:1:0;23389:379;;;23553:11;;-1:-1:-1;;;;;23553:11:0;;;;;;23540:24;;;;23536:232;;-1:-1:-1;23597:17:0;;23536:232;;;23646:11;;-1:-1:-1;;;;;23646:11:0;;;;;;23636:21;;;;23632:136;;-1:-1:-1;23690:16:0;;23632:136;;;-1:-1:-1;23755:1:0;23632:136;23780:17;23827:3;23801:22;23810:13;23801:6;:22;:::i;:::-;23800:30;;;;:::i;:::-;23780:50;-1:-1:-1;23841:17:0;23861:18;23780:50;23861:6;:18;:::i;:::-;23841:38;;23892:23;23943:3;23934:6;;23918:13;10724:12;;;10636:108;23918:13;:22;;;;:::i;:::-;:28;;;;:::i;:::-;23892:54;;23957:21;23995:7;2367:6;;-1:-1:-1;;;;;2367:6:0;;2294:87;23995:7;-1:-1:-1;;;;;23982:20:0;:9;-1:-1:-1;;;;;23982:20:0;;:46;;;-1:-1:-1;24019:9:0;;-1:-1:-1;;;;;24006:22:0;;;24019:9;;24006:22;23982:46;:78;;;-1:-1:-1;24045:15:0;;-1:-1:-1;;;;;24032:28:0;;;24045:15;;24032:28;23982:78;:104;;;-1:-1:-1;24077:9:0;;-1:-1:-1;;;;;24064:22:0;;;24077:9;;24064:22;23982:104;:138;;;-1:-1:-1;24103:17:0;;-1:-1:-1;;;;;24090:30:0;;;24103:17;;24090:30;23982:138;:166;;;-1:-1:-1;24137:11:0;;-1:-1:-1;;;;;24124:24:0;;;24137:11;;;;;24124:24;23982:166;24175:14;;23957:192;;-1:-1:-1;24175:14:0;;:39;;;;-1:-1:-1;24203:11:0;;-1:-1:-1;;;;;24193:21:0;;;24203:11;;;;;24193:21;24175:39;24174:62;;;;;24220:16;24219:17;24174:62;24170:165;;;24297:15;24284:9;24261:20;24271:9;-1:-1:-1;;;;;10908:18:0;10881:7;10908:18;;;;;;;;;;;;10807:127;24261:20;:32;;;;:::i;:::-;:51;;24253:70;;;;-1:-1:-1;;;24253:70:0;;7867:2:1;24253:70:0;;;7849:21:1;7906:1;7886:18;;;7879:29;-1:-1:-1;;;7924:18:1;;;7917:36;7970:18;;24253:70:0;7665:329:1;24253:70:0;24391:9;;24367:45;;24383:6;;-1:-1:-1;;;;;24391:9:0;24402;24367:15;:45::i;:::-;24468;24484:6;24492:9;24503;24468:15;:45::i;:::-;23239:1282;;;;;23109:1412;;;:::o;2459:132::-;2367:6;;-1:-1:-1;;;;;2367:6:0;925:10;2523:23;2515:68;;;;-1:-1:-1;;;2515:68:0;;8201:2:1;2515:68:0;;;8183:21:1;;;8220:18;;;8213:30;8279:34;8259:18;;;8252:62;8331:18;;2515:68:0;7999:356:1;3561:191:0;3654:6;;;-1:-1:-1;;;;;3671:17:0;;;-1:-1:-1;;;;;;3671:17:0;;;;;;;3704:40;;3654:6;;;3671:17;3654:6;;3704:40;;3635:16;;3704:40;3624:128;3561:191;:::o;14999:840::-;-1:-1:-1;;;;;15130:18:0;;15122:68;;;;-1:-1:-1;;;15122:68:0;;8562:2:1;15122:68:0;;;8544:21:1;8601:2;8581:18;;;8574:30;8640:34;8620:18;;;8613:62;-1:-1:-1;;;8691:18:1;;;8684:35;8736:19;;15122:68:0;8360:401:1;15122:68:0;-1:-1:-1;;;;;15209:16:0;;15201:64;;;;-1:-1:-1;;;15201:64:0;;8968:2:1;15201:64:0;;;8950:21:1;9007:2;8987:18;;;8980:30;9046:34;9026:18;;;9019:62;-1:-1:-1;;;9097:18:1;;;9090:33;9140:19;;15201:64:0;8766:399:1;15201:64:0;-1:-1:-1;;;;;15351:15:0;;15329:19;15351:15;;;;;;;;;;;15385:21;;;;15377:72;;;;-1:-1:-1;;;15377:72:0;;9372:2:1;15377:72:0;;;9354:21:1;9411:2;9391:18;;;9384:30;9450:34;9430:18;;;9423:62;-1:-1:-1;;;9501:18:1;;;9494:36;9547:19;;15377:72:0;9170:402:1;15377:72:0;-1:-1:-1;;;;;15485:15:0;;;:9;:15;;;;;;;;;;;15503:20;;;15485:38;;15703:13;;;;;;;;;;:23;;;;;;15755:26;;1342:25:1;;;15703:13:0;;15755:26;;1315:18:1;15755:26:0;;;;;;;15794:37;19844:125;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;2108:186::-;2167:6;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;:::-;2249:39;2108:186;-1:-1:-1;;;2108:186:1:o;2299:180::-;2358:6;2411:2;2399:9;2390:7;2386:23;2382:32;2379:52;;;2427:1;2424;2417:12;2379:52;-1:-1:-1;2450:23:1;;2299:180;-1:-1:-1;2299:180:1:o;2484:260::-;2552:6;2560;2613:2;2601:9;2592:7;2588:23;2584:32;2581:52;;;2629:1;2626;2619:12;2581:52;2652:29;2671:9;2652:29;:::i;:::-;2642:39;;2700:38;2734:2;2723:9;2719:18;2700:38;:::i;:::-;2690:48;;2484:260;;;;;:::o;2749:380::-;2828:1;2824:12;;;;2871;;;2892:61;;2946:4;2938:6;2934:17;2924:27;;2892:61;2999:2;2991:6;2988:14;2968:18;2965:38;2962:161;;3045:10;3040:3;3036:20;3033:1;3026:31;3080:4;3077:1;3070:15;3108:4;3105:1;3098:15;2962:161;;2749:380;;;:::o;3134:127::-;3195:10;3190:3;3186:20;3183:1;3176:31;3226:4;3223:1;3216:15;3250:4;3247:1;3240:15;3266:125;3331:9;;;3352:10;;;3349:36;;;3365:18;;:::i;7137:168::-;7210:9;;;7241;;7258:15;;;7252:22;;7238:37;7228:71;;7279:18;;:::i;7310:217::-;7350:1;7376;7366:132;;7420:10;7415:3;7411:20;7408:1;7401:31;7455:4;7452:1;7445:15;7483:4;7480:1;7473:15;7366:132;-1:-1:-1;7512:9:1;;7310:217::o;7532:128::-;7599:9;;;7620:11;;;7617:37;;;7634:18;;:::i

Swarm Source

ipfs://5513ba52b5c69afe3e427c754011dd175e3b492f05ce49c6578d85bc96d19ed9
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.