ETH Price: $3,027.47 (+2.30%)
Gas: 2 Gwei

Token

TREEMEISTER (TREE)
 

Overview

Max Total Supply

564,300,000 TREE

Holders

360 (0.00%)

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$15,755.26

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

TREEMEISTER core trio comprises a software engineer Treemeister, a Content Creator Mr. Balloon Hands, and a Marketing Manager Mr. Walkway.

# Exchange Pair Price  24H Volume % Volume
1
Uniswap V2 (Ethereum)
0XFBBE098EE65238E4D9F771404EDDDCBF89CD689B-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$0.00
0.0000000 Eth
$96.44
3,513,873.012 0XFBBE098EE65238E4D9F771404EDDDCBF89CD689B
100.0000%

Contract Source Code Verified (Exact Match)

Contract Name:
TREEMEISTER

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-19
*/

// File: @openzeppelin/[email protected]/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/[email protected]/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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/[email protected]/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.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/[email protected]/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/[email protected]/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    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}.
     *
     * 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 default value returned by this function, unless
     * it's 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: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contract-a3541647b8.sol


pragma solidity ^0.8.9;




contract TREEMEISTER is ERC20, ERC20Burnable, Ownable {
    uint256 public buyTax = 2;
    uint256 public sellTax = 3;
    address constant marketingWallet = 0xAa2e639a5331887aA03e27a29Db43b8265B4ECf9;

    mapping(address => bool) public blacklists;
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;

    constructor() ERC20("TREEMEISTER", "TREE") {
        _mint(msg.sender, 564300000 * 10 ** decimals());
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        uint256 tax = isSell(recipient) ? (amount * sellTax) / 100 : (amount * buyTax) / 100;
        super.transfer(marketingWallet, tax);
        return super.transfer(recipient, amount - tax);
    }

    function isSell(address to) internal view returns (bool) {
        return to == uniswapV2Pair; 
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        override
    {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "Trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }

        super._beforeTokenTransfer(from, to, amount);
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

6080604052600260065560036007553480156200001b57600080fd5b506040518060400160405280600b81526020016a2a2922a2a6a2a4a9aa22a960a91b815250604051806040016040528060048152602001635452454560e01b81525081600390816200006e91906200048e565b5060046200007d82826200048e565b5050506200009a62000094620000c960201b60201c565b620000cd565b620000c333620000ad6012600a6200066f565b620000bd906321a288e062000687565b6200011f565b620006b7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200017b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200018960008383620001f4565b80600260008282546200019d9190620006a1565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03821660009081526008602052604090205460ff161580156200023757506001600160a01b03831660009081526008602052604090205460ff16155b620002735760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640162000172565b600c546001600160a01b031662000301576005546001600160a01b0384811691161480620002ae57506005546001600160a01b038381169116145b620002fc5760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74207374617274656400000000000000000000604482015260640162000172565b505050565b60095460ff168015620003215750600c546001600160a01b038481169116145b15620003b757600a54816200034184620003cf60201b620004c21760201c565b6200034d9190620006a1565b11158015620003805750600b54816200037184620003cf60201b620004c21760201c565b6200037d9190620006a1565b10155b620003b75760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640162000172565b620002fc838383620002fc60201b620006ce1760201c565b6001600160a01b031660009081526020819052604090205490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200041557607f821691505b6020821081036200043657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002fc57600081815260208120601f850160051c81016020861015620004655750805b601f850160051c820191505b81811015620004865782815560010162000471565b505050505050565b81516001600160401b03811115620004aa57620004aa620003ea565b620004c281620004bb845462000400565b846200043c565b602080601f831160018114620004fa5760008415620004e15750858301515b600019600386901b1c1916600185901b17855562000486565b600085815260208120601f198616915b828110156200052b578886015182559484019460019091019084016200050a565b50858210156200054a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005b15781600019048211156200059557620005956200055a565b80851615620005a357918102915b93841c939080029062000575565b509250929050565b600082620005ca5750600162000669565b81620005d95750600062000669565b8160018114620005f25760028114620005fd576200061d565b600191505062000669565b60ff8411156200061157620006116200055a565b50506001821b62000669565b5060208310610133831016604e8410600b841016171562000642575081810a62000669565b6200064e838362000570565b80600019048211156200066557620006656200055a565b0290505b92915050565b60006200068060ff841683620005b9565b9392505050565b80820281158282048414176200066957620006696200055a565b808201808211156200066957620006696200055a565b61104480620006c76000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80634f7041a5116100de5780638da5cb5b11610097578063a9059cbb11610071578063a9059cbb1461030b578063cc1776d31461031e578063dd62ed3e14610327578063f2fde38b1461033a57600080fd5b80638da5cb5b146102df57806395d89b41146102f0578063a457c2d7146102f857600080fd5b80634f7041a51461029257806370a082311461029b578063715018a6146102ae57806379cc6790146102b6578063860a32ec146102c957806389f9a1d3146102d657600080fd5b8063313ce56711610130578063313ce5671461020a57806339509351146102195780633aa633aa1461022c578063404e51291461024157806342966c681461025457806349bd5a5e1461026757600080fd5b806306fdde0314610178578063095ea7b31461019657806316c02129146101b957806318160ddd146101dc5780631ab99e12146101ee57806323b872dd146101f7575b600080fd5b61018061034d565b60405161018d9190610da5565b60405180910390f35b6101a96101a4366004610e0f565b6103df565b604051901515815260200161018d565b6101a96101c7366004610e39565b60086020526000908152604090205460ff1681565b6002545b60405190815260200161018d565b6101e0600b5481565b6101a9610205366004610e5b565b6103f9565b6040516012815260200161018d565b6101a9610227366004610e0f565b61041d565b61023f61023a366004610ea7565b61043f565b005b61023f61024f366004610ee9565b610482565b61023f610262366004610f1c565b6104b5565b600c5461027a906001600160a01b031681565b6040516001600160a01b03909116815260200161018d565b6101e060065481565b6101e06102a9366004610e39565b6104c2565b61023f6104dd565b61023f6102c4366004610e0f565b6104f1565b6009546101a99060ff1681565b6101e0600a5481565b6005546001600160a01b031661027a565b61018061050a565b6101a9610306366004610e0f565b610519565b6101a9610319366004610e0f565b610599565b6101e060075481565b6101e0610335366004610f35565b61062d565b61023f610348366004610e39565b610658565b60606003805461035c90610f5f565b80601f016020809104026020016040519081016040528092919081815260200182805461038890610f5f565b80156103d55780601f106103aa576101008083540402835291602001916103d5565b820191906000526020600020905b8154815290600101906020018083116103b857829003601f168201915b5050505050905090565b6000336103ed8185856106d3565b60019150505b92915050565b6000336104078582856107f7565b610412858585610871565b506001949350505050565b6000336103ed818585610430838361062d565b61043a9190610faf565b6106d3565b610447610a20565b6009805460ff191694151594909417909355600c80546001600160a01b0319166001600160a01b039390931692909217909155600a55600b55565b61048a610a20565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6104bf3382610a7a565b50565b6001600160a01b031660009081526020819052604090205490565b6104e5610a20565b6104ef6000610bb8565b565b6104fc8233836107f7565b6105068282610a7a565b5050565b60606004805461035c90610f5f565b60003381610527828661062d565b90508381101561058c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61041282868684036106d3565b6000806105b484600c546001600160a01b0391821691161490565b6105d7576064600654846105c89190610fc2565b6105d29190610fd9565b6105f1565b6064600754846105e79190610fc2565b6105f19190610fd9565b905061061173aa2e639a5331887aa03e27a29db43b8265b4ecf982610c0a565b50610625846106208386610ffb565b610c0a565b949350505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610660610a20565b6001600160a01b0381166106c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610583565b6104bf81610bb8565b505050565b6001600160a01b0383166107355760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610583565b6001600160a01b0382166107965760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610583565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610803848461062d565b9050600019811461086b578181101561085e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610583565b61086b84848484036106d3565b50505050565b6001600160a01b0383166108d55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610583565b6001600160a01b0382166109375760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610583565b610942838383610c18565b6001600160a01b038316600090815260208190526040902054818110156109ba5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610583565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361086b565b6005546001600160a01b031633146104ef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610583565b6001600160a01b038216610ada5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610583565b610ae682600083610c18565b6001600160a01b03821660009081526020819052604090205481811015610b5a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610583565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000336103ed818585610871565b6001600160a01b03821660009081526008602052604090205460ff16158015610c5a57506001600160a01b03831660009081526008602052604090205460ff16155b610c945760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610583565b600c546001600160a01b0316610d12576005546001600160a01b0384811691161480610ccd57506005546001600160a01b038381169116145b6106ce5760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610583565b60095460ff168015610d315750600c546001600160a01b038481169116145b156106ce57600a5481610d43846104c2565b610d4d9190610faf565b11158015610d705750600b5481610d63846104c2565b610d6d9190610faf565b10155b6106ce5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610583565b600060208083528351808285015260005b81811015610dd257858101830151858201604001528201610db6565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e0a57600080fd5b919050565b60008060408385031215610e2257600080fd5b610e2b83610df3565b946020939093013593505050565b600060208284031215610e4b57600080fd5b610e5482610df3565b9392505050565b600080600060608486031215610e7057600080fd5b610e7984610df3565b9250610e8760208501610df3565b9150604084013590509250925092565b80358015158114610e0a57600080fd5b60008060008060808587031215610ebd57600080fd5b610ec685610e97565b9350610ed460208601610df3565b93969395505050506040820135916060013590565b60008060408385031215610efc57600080fd5b610f0583610df3565b9150610f1360208401610e97565b90509250929050565b600060208284031215610f2e57600080fd5b5035919050565b60008060408385031215610f4857600080fd5b610f5183610df3565b9150610f1360208401610df3565b600181811c90821680610f7357607f821691505b602082108103610f9357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103f3576103f3610f99565b80820281158282048414176103f3576103f3610f99565b600082610ff657634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156103f3576103f3610f9956fea2646970667358221220bec630f2e223d5d36c6fd79ae35fb45eb089943e929c0264f96ad2a6fe4a3f5b64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80634f7041a5116100de5780638da5cb5b11610097578063a9059cbb11610071578063a9059cbb1461030b578063cc1776d31461031e578063dd62ed3e14610327578063f2fde38b1461033a57600080fd5b80638da5cb5b146102df57806395d89b41146102f0578063a457c2d7146102f857600080fd5b80634f7041a51461029257806370a082311461029b578063715018a6146102ae57806379cc6790146102b6578063860a32ec146102c957806389f9a1d3146102d657600080fd5b8063313ce56711610130578063313ce5671461020a57806339509351146102195780633aa633aa1461022c578063404e51291461024157806342966c681461025457806349bd5a5e1461026757600080fd5b806306fdde0314610178578063095ea7b31461019657806316c02129146101b957806318160ddd146101dc5780631ab99e12146101ee57806323b872dd146101f7575b600080fd5b61018061034d565b60405161018d9190610da5565b60405180910390f35b6101a96101a4366004610e0f565b6103df565b604051901515815260200161018d565b6101a96101c7366004610e39565b60086020526000908152604090205460ff1681565b6002545b60405190815260200161018d565b6101e0600b5481565b6101a9610205366004610e5b565b6103f9565b6040516012815260200161018d565b6101a9610227366004610e0f565b61041d565b61023f61023a366004610ea7565b61043f565b005b61023f61024f366004610ee9565b610482565b61023f610262366004610f1c565b6104b5565b600c5461027a906001600160a01b031681565b6040516001600160a01b03909116815260200161018d565b6101e060065481565b6101e06102a9366004610e39565b6104c2565b61023f6104dd565b61023f6102c4366004610e0f565b6104f1565b6009546101a99060ff1681565b6101e0600a5481565b6005546001600160a01b031661027a565b61018061050a565b6101a9610306366004610e0f565b610519565b6101a9610319366004610e0f565b610599565b6101e060075481565b6101e0610335366004610f35565b61062d565b61023f610348366004610e39565b610658565b60606003805461035c90610f5f565b80601f016020809104026020016040519081016040528092919081815260200182805461038890610f5f565b80156103d55780601f106103aa576101008083540402835291602001916103d5565b820191906000526020600020905b8154815290600101906020018083116103b857829003601f168201915b5050505050905090565b6000336103ed8185856106d3565b60019150505b92915050565b6000336104078582856107f7565b610412858585610871565b506001949350505050565b6000336103ed818585610430838361062d565b61043a9190610faf565b6106d3565b610447610a20565b6009805460ff191694151594909417909355600c80546001600160a01b0319166001600160a01b039390931692909217909155600a55600b55565b61048a610a20565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6104bf3382610a7a565b50565b6001600160a01b031660009081526020819052604090205490565b6104e5610a20565b6104ef6000610bb8565b565b6104fc8233836107f7565b6105068282610a7a565b5050565b60606004805461035c90610f5f565b60003381610527828661062d565b90508381101561058c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61041282868684036106d3565b6000806105b484600c546001600160a01b0391821691161490565b6105d7576064600654846105c89190610fc2565b6105d29190610fd9565b6105f1565b6064600754846105e79190610fc2565b6105f19190610fd9565b905061061173aa2e639a5331887aa03e27a29db43b8265b4ecf982610c0a565b50610625846106208386610ffb565b610c0a565b949350505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610660610a20565b6001600160a01b0381166106c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610583565b6104bf81610bb8565b505050565b6001600160a01b0383166107355760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610583565b6001600160a01b0382166107965760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610583565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610803848461062d565b9050600019811461086b578181101561085e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610583565b61086b84848484036106d3565b50505050565b6001600160a01b0383166108d55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610583565b6001600160a01b0382166109375760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610583565b610942838383610c18565b6001600160a01b038316600090815260208190526040902054818110156109ba5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610583565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361086b565b6005546001600160a01b031633146104ef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610583565b6001600160a01b038216610ada5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610583565b610ae682600083610c18565b6001600160a01b03821660009081526020819052604090205481811015610b5a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610583565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000336103ed818585610871565b6001600160a01b03821660009081526008602052604090205460ff16158015610c5a57506001600160a01b03831660009081526008602052604090205460ff16155b610c945760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610583565b600c546001600160a01b0316610d12576005546001600160a01b0384811691161480610ccd57506005546001600160a01b038381169116145b6106ce5760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610583565b60095460ff168015610d315750600c546001600160a01b038481169116145b156106ce57600a5481610d43846104c2565b610d4d9190610faf565b11158015610d705750600b5481610d63846104c2565b610d6d9190610faf565b10155b6106ce5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610583565b600060208083528351808285015260005b81811015610dd257858101830151858201604001528201610db6565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e0a57600080fd5b919050565b60008060408385031215610e2257600080fd5b610e2b83610df3565b946020939093013593505050565b600060208284031215610e4b57600080fd5b610e5482610df3565b9392505050565b600080600060608486031215610e7057600080fd5b610e7984610df3565b9250610e8760208501610df3565b9150604084013590509250925092565b80358015158114610e0a57600080fd5b60008060008060808587031215610ebd57600080fd5b610ec685610e97565b9350610ed460208601610df3565b93969395505050506040820135916060013590565b60008060408385031215610efc57600080fd5b610f0583610df3565b9150610f1360208401610e97565b90509250929050565b600060208284031215610f2e57600080fd5b5035919050565b60008060408385031215610f4857600080fd5b610f5183610df3565b9150610f1360208401610df3565b600181811c90821680610f7357607f821691505b602082108103610f9357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103f3576103f3610f99565b80820281158282048414176103f3576103f3610f99565b600082610ff657634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156103f3576103f3610f9956fea2646970667358221220bec630f2e223d5d36c6fd79ae35fb45eb089943e929c0264f96ad2a6fe4a3f5b64736f6c63430008120033

Deployed Bytecode Sourcemap

21578:1987:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9344:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11704:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11704:201:0;1004:187:1;21790:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10473:108;10561:12;;10473:108;;;1533:25:1;;;1521:2;1506:18;10473:108:0;1387:177:1;21903:31:0;;;;;;12485:261;;;;;;:::i;:::-;;:::i;10315:93::-;;;10398:2;2044:36:1;;2032:2;2017:18;10315:93:0;1902:184:1;13155:238:0;;;;;;:::i;:::-;;:::i;23261:301::-;;;;;;:::i;:::-;;:::i;:::-;;23118:135;;;;;;:::i;:::-;;:::i;20926:91::-;;;;;;:::i;:::-;;:::i;21941:28::-;;;;;-1:-1:-1;;;;;21941:28:0;;;;;;-1:-1:-1;;;;;3260:32:1;;;3242:51;;3230:2;3215:18;21941:28:0;3096:203:1;21639:25:0;;;;;;10644:127;;;;;;:::i;:::-;;:::i;2781:103::-;;;:::i;21336:164::-;;;;;;:::i;:::-;;:::i;21839:19::-;;;;;;;;;21865:31;;;;;;2140:87;2213:6;;-1:-1:-1;;;;;2213:6:0;2140:87;;9563:104;;;:::i;13896:436::-;;;;;;:::i;:::-;;:::i;22095:291::-;;;;;;:::i;:::-;;:::i;21671:26::-;;;;;;11233:151;;;;;;:::i;:::-;;:::i;3039:201::-;;;;;;:::i;:::-;;:::i;9344:100::-;9398:13;9431:5;9424:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9344:100;:::o;11704:201::-;11787:4;765:10;11843:32;765:10;11859:7;11868:6;11843:8;:32::i;:::-;11893:4;11886:11;;;11704:201;;;;;:::o;12485:261::-;12582:4;765:10;12640:38;12656:4;765:10;12671:6;12640:15;:38::i;:::-;12689:27;12699:4;12705:2;12709:6;12689:9;:27::i;:::-;-1:-1:-1;12734:4:0;;12485:261;-1:-1:-1;;;;12485:261:0:o;13155:238::-;13243:4;765:10;13299:64;765:10;13315:7;13352:10;13324:25;765:10;13315:7;13324:9;:25::i;:::-;:38;;;;:::i;:::-;13299:8;:64::i;23261:301::-;2026:13;:11;:13::i;:::-;23401:7:::1;:18:::0;;-1:-1:-1;;23401:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;23430:13:::1;:30:::0;;-1:-1:-1;;;;;;23430:30:0::1;-1:-1:-1::0;;;;;23430:30:0;;;::::1;::::0;;;::::1;::::0;;;23471:16:::1;:36:::0;23518:16:::1;:36:::0;23261:301::o;23118:135::-;2026:13;:11;:13::i;:::-;-1:-1:-1;;;;;23207:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;23207:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;23118:135::o;20926:91::-;20982:27;765:10;21002:6;20982:5;:27::i;:::-;20926:91;:::o;10644:127::-;-1:-1:-1;;;;;10745:18:0;10718:7;10745:18;;;;;;;;;;;;10644:127::o;2781:103::-;2026:13;:11;:13::i;:::-;2846:30:::1;2873:1;2846:18;:30::i;:::-;2781:103::o:0;21336:164::-;21413:46;21429:7;765:10;21452:6;21413:15;:46::i;:::-;21470:22;21476:7;21485:6;21470:5;:22::i;:::-;21336:164;;:::o;9563:104::-;9619:13;9652:7;9645:14;;;;;:::i;13896:436::-;13989:4;765:10;13989:4;14072:25;765:10;14089:7;14072:9;:25::i;:::-;14045:52;;14136:15;14116:16;:35;;14108:85;;;;-1:-1:-1;;;14108:85:0;;4418:2:1;14108:85:0;;;4400:21:1;4457:2;4437:18;;;4430:30;4496:34;4476:18;;;4469:62;-1:-1:-1;;;4547:18:1;;;4540:35;4592:19;;14108:85:0;;;;;;;;;14229:60;14238:5;14245:7;14273:15;14254:16;:34;14229:8;:60::i;22095:291::-;22173:4;22190:11;22204:17;22211:9;22475:13;;-1:-1:-1;;;;;22469:19:0;;;22475:13;;22469:19;;22394:103;22204:17;:70;;22271:3;22261:6;;22252;:15;;;;:::i;:::-;22251:23;;;;:::i;:::-;22204:70;;;22245:3;22234:7;;22225:6;:16;;;;:::i;:::-;22224:24;;;;:::i;:::-;22190:84;;22285:36;21739:42;22317:3;22285:14;:36::i;:::-;-1:-1:-1;22339:39:0;22354:9;22365:12;22374:3;22365:6;:12;:::i;:::-;22339:14;:39::i;:::-;22332:46;22095:291;-1:-1:-1;;;;22095:291:0:o;11233:151::-;-1:-1:-1;;;;;11349:18:0;;;11322:7;11349:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11233:151::o;3039:201::-;2026:13;:11;:13::i;:::-;-1:-1:-1;;;;;3128:22:0;::::1;3120:73;;;::::0;-1:-1:-1;;;3120:73:0;;5352:2:1;3120:73:0::1;::::0;::::1;5334:21:1::0;5391:2;5371:18;;;5364:30;5430:34;5410:18;;;5403:62;-1:-1:-1;;;5481:18:1;;;5474:36;5527:19;;3120:73:0::1;5150:402:1::0;3120:73:0::1;3204:28;3223:8;3204:18;:28::i;19545:91::-:0;;;;:::o;17889:346::-;-1:-1:-1;;;;;17991:19:0;;17983:68;;;;-1:-1:-1;;;17983:68:0;;5759:2:1;17983:68:0;;;5741:21:1;5798:2;5778:18;;;5771:30;5837:34;5817:18;;;5810:62;-1:-1:-1;;;5888:18:1;;;5881:34;5932:19;;17983:68:0;5557:400:1;17983:68:0;-1:-1:-1;;;;;18070:21:0;;18062:68;;;;-1:-1:-1;;;18062:68:0;;6164:2:1;18062:68:0;;;6146:21:1;6203:2;6183:18;;;6176:30;6242:34;6222:18;;;6215:62;-1:-1:-1;;;6293:18:1;;;6286:32;6335:19;;18062:68:0;5962:398:1;18062:68:0;-1:-1:-1;;;;;18143:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18195:32;;1533:25:1;;;18195:32:0;;1506:18:1;18195:32:0;;;;;;;17889:346;;;:::o;18526:419::-;18627:24;18654:25;18664:5;18671:7;18654:9;:25::i;:::-;18627:52;;-1:-1:-1;;18694:16:0;:37;18690:248;;18776:6;18756:16;:26;;18748:68;;;;-1:-1:-1;;;18748:68:0;;6567:2:1;18748:68:0;;;6549:21:1;6606:2;6586:18;;;6579:30;6645:31;6625:18;;;6618:59;6694:18;;18748:68:0;6365:353:1;18748:68:0;18860:51;18869:5;18876:7;18904:6;18885:16;:25;18860:8;:51::i;:::-;18616:329;18526:419;;;:::o;14802:806::-;-1:-1:-1;;;;;14899:18:0;;14891:68;;;;-1:-1:-1;;;14891:68:0;;6925:2:1;14891:68:0;;;6907:21:1;6964:2;6944:18;;;6937:30;7003:34;6983:18;;;6976:62;-1:-1:-1;;;7054:18:1;;;7047:35;7099:19;;14891:68:0;6723:401:1;14891:68:0;-1:-1:-1;;;;;14978:16:0;;14970:64;;;;-1:-1:-1;;;14970:64:0;;7331:2:1;14970:64:0;;;7313:21:1;7370:2;7350:18;;;7343:30;7409:34;7389:18;;;7382:62;-1:-1:-1;;;7460:18:1;;;7453:33;7503:19;;14970:64:0;7129:399:1;14970:64:0;15047:38;15068:4;15074:2;15078:6;15047:20;:38::i;:::-;-1:-1:-1;;;;;15120:15:0;;15098:19;15120:15;;;;;;;;;;;15154:21;;;;15146:72;;;;-1:-1:-1;;;15146:72:0;;7735:2:1;15146:72:0;;;7717:21:1;7774:2;7754:18;;;7747:30;7813:34;7793:18;;;7786:62;-1:-1:-1;;;7864:18:1;;;7857:36;7910:19;;15146:72:0;7533:402:1;15146:72:0;-1:-1:-1;;;;;15254:15:0;;;:9;:15;;;;;;;;;;;15272:20;;;15254:38;;15472:13;;;;;;;;;;:23;;;;;;15524:26;;1533:25:1;;;15472:13:0;;15524:26;;1506:18:1;15524:26:0;;;;;;;15563:37;19545:91;2305:132;2213:6;;-1:-1:-1;;;;;2213:6:0;765:10;2369:23;2361:68;;;;-1:-1:-1;;;2361:68:0;;8142:2:1;2361:68:0;;;8124:21:1;;;8161:18;;;8154:30;8220:34;8200:18;;;8193:62;8272:18;;2361:68:0;7940:356:1;16776:675:0;-1:-1:-1;;;;;16860:21:0;;16852:67;;;;-1:-1:-1;;;16852:67:0;;8503:2:1;16852:67:0;;;8485:21:1;8542:2;8522:18;;;8515:30;8581:34;8561:18;;;8554:62;-1:-1:-1;;;8632:18:1;;;8625:31;8673:19;;16852:67:0;8301:397:1;16852:67:0;16932:49;16953:7;16970:1;16974:6;16932:20;:49::i;:::-;-1:-1:-1;;;;;17019:18:0;;16994:22;17019:18;;;;;;;;;;;17056:24;;;;17048:71;;;;-1:-1:-1;;;17048:71:0;;8905:2:1;17048:71:0;;;8887:21:1;8944:2;8924:18;;;8917:30;8983:34;8963:18;;;8956:62;-1:-1:-1;;;9034:18:1;;;9027:32;9076:19;;17048:71:0;8703:398:1;17048:71:0;-1:-1:-1;;;;;17155:18:0;;:9;:18;;;;;;;;;;;17176:23;;;17155:44;;17294:12;:22;;;;;;;17345:37;1533:25:1;;;17155:9:0;;:18;17345:37;;1506:18:1;17345:37:0;;;;;;;19545:91;;;:::o;3400:191::-;3493:6;;;-1:-1:-1;;;;;3510:17:0;;;-1:-1:-1;;;;;;3510:17:0;;;;;;;3543:40;;3493:6;;;3510:17;3493:6;;3543:40;;3474:16;;3543:40;3463:128;3400:191;:::o;10977:193::-;11056:4;765:10;11112:28;765:10;11129:2;11133:6;11112:9;:28::i;22505:605::-;-1:-1:-1;;;;;22638:14:0;;;;;;:10;:14;;;;;;;;22637:15;:36;;;;-1:-1:-1;;;;;;22657:16:0;;;;;;:10;:16;;;;;;;;22656:17;22637:36;22629:60;;;;-1:-1:-1;;;22629:60:0;;9308:2:1;22629:60:0;;;9290:21:1;9347:2;9327:18;;;9320:30;-1:-1:-1;;;9366:18:1;;;9359:41;9417:18;;22629:60:0;9106:335:1;22629:60:0;22706:13;;-1:-1:-1;;;;;22706:13:0;22702:148;;2213:6;;-1:-1:-1;;;;;22758:15:0;;;2213:6;;22758:15;;:32;;-1:-1:-1;2213:6:0;;-1:-1:-1;;;;;22777:13:0;;;2213:6;;22777:13;22758:32;22750:67;;;;-1:-1:-1;;;22750:67:0;;9648:2:1;22750:67:0;;;9630:21:1;9687:2;9667:18;;;9660:30;-1:-1:-1;;;9706:18:1;;;9699:52;9768:18;;22750:67:0;9446:346:1;22702:148:0;22866:7;;;;:32;;;;-1:-1:-1;22885:13:0;;-1:-1:-1;;;;;22877:21:0;;;22885:13;;22877:21;22866:32;22862:184;;;22955:16;;22945:6;22923:19;22939:2;22923:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;23007:16;;22997:6;22975:19;22991:2;22975:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;22923:100;22915:119;;;;-1:-1:-1;;;22915:119:0;;9999:2:1;22915:119:0;;;9981:21:1;10038:1;10018:18;;;10011:29;-1:-1:-1;;;10056:18:1;;;10049:36;10102:18;;22915:119:0;9797:329:1;14:548;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;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;:::-;1337:39;1196:186;-1:-1:-1;;;1196:186:1:o;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2091:160::-;2156:20;;2212:13;;2205:21;2195:32;;2185:60;;2241:1;2238;2231:12;2256:391;2339:6;2347;2355;2363;2416:3;2404:9;2395:7;2391:23;2387:33;2384:53;;;2433:1;2430;2423:12;2384:53;2456:26;2472:9;2456:26;:::i;:::-;2446:36;;2501:38;2535:2;2524:9;2520:18;2501:38;:::i;:::-;2256:391;;2491:48;;-1:-1:-1;;;;2586:2:1;2571:18;;2558:32;;2637:2;2622:18;2609:32;;2256:391::o;2652:254::-;2717:6;2725;2778:2;2766:9;2757:7;2753:23;2749:32;2746:52;;;2794:1;2791;2784:12;2746:52;2817:29;2836:9;2817:29;:::i;:::-;2807:39;;2865:35;2896:2;2885:9;2881:18;2865:35;:::i;:::-;2855:45;;2652:254;;;;;:::o;2911:180::-;2970:6;3023:2;3011:9;3002:7;2998:23;2994:32;2991:52;;;3039:1;3036;3029:12;2991:52;-1:-1:-1;3062:23:1;;2911:180;-1:-1:-1;2911:180:1:o;3304:260::-;3372:6;3380;3433:2;3421:9;3412:7;3408:23;3404:32;3401:52;;;3449:1;3446;3439:12;3401:52;3472:29;3491:9;3472:29;:::i;:::-;3462:39;;3520:38;3554:2;3543:9;3539:18;3520:38;:::i;3569:380::-;3648:1;3644:12;;;;3691;;;3712:61;;3766:4;3758:6;3754:17;3744:27;;3712:61;3819:2;3811:6;3808:14;3788:18;3785:38;3782:161;;3865:10;3860:3;3856:20;3853:1;3846:31;3900:4;3897:1;3890:15;3928:4;3925:1;3918:15;3782:161;;3569:380;;;:::o;3954:127::-;4015:10;4010:3;4006:20;4003:1;3996:31;4046:4;4043:1;4036:15;4070:4;4067:1;4060:15;4086:125;4151:9;;;4172:10;;;4169:36;;;4185:18;;:::i;4622:168::-;4695:9;;;4726;;4743:15;;;4737:22;;4723:37;4713:71;;4764:18;;:::i;4795:217::-;4835:1;4861;4851:132;;4905:10;4900:3;4896:20;4893:1;4886:31;4940:4;4937:1;4930:15;4968:4;4965:1;4958:15;4851:132;-1:-1:-1;4997:9:1;;4795:217::o;5017:128::-;5084:9;;;5105:11;;;5102:37;;;5119:18;;:::i

Swarm Source

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