ETH Price: $3,463.35 (-1.51%)
Gas: 4 Gwei

Token

BITCOIN LAYER (BITL)
 

Overview

Max Total Supply

21,000,000 BITL

Holders

25

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
66,757.819411078796853148 BITL

Value
$0.00
0xce3416324d4695cd700ae4d1f760f51cb38af7c2
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:
BITL

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-19
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.23;

/*

Web: https://bitcoinlayer.net
TG: https://t.me/bitcoinlayernet

*/

interface IUniswapV2Factory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

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

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value
    ) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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);
}

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(
        address sender,
        uint256 balance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(
        address spender,
        uint256 allowance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @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}.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(
        address owner,
        address spender
    ) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value
    ) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(
        address owner,
        address spender,
        uint256 value,
        bool emitEvent
    ) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 value
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(
                    spender,
                    currentAllowance,
                    value
                );
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}

contract BITL is ERC20, Ownable {
    uint8 public buySellTaxPercentage = 30;
    uint256 public maxTransaction = 420_000 * 10 ** 18;
    uint256 public maxWallet = 840_000 * 10 ** 18;
    uint256 public transactionCounter = 0;

    address public immutable uniswapV2Pair;
    address public taxCollectionWallet =
        0x735B6ad2fe8Df874564293d63434e6290F4285e7;
    IUniswapV2Router02 public constant uniswapV2Router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    bool private _inSwapAndLiquify;

    modifier lockTheSwap() {
        _inSwapAndLiquify = true;
        _;
        _inSwapAndLiquify = false;
    }

    constructor(address _owner) ERC20("BITCOIN LAYER", "BITL") Ownable(_owner) {
        _mint(_owner, 21_000_000 * 10 ** decimals());
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`)˚º is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(
        address from,
        address to,
        uint256 value
    ) internal override {
        if ((from == uniswapV2Pair || to == uniswapV2Pair) && from != address(0) && !(from == owner() || to == owner())) {
            if (!(to == uniswapV2Pair || to == owner())) {
                require(value <= maxTransaction, "ERC20: maxTransaction limit exceeded");
            }

            uint256 taxValue = (value * buySellTaxPercentage) / 100;
            value -= taxValue;
            super._update(from, address(this), taxValue);

            if (!(to == uniswapV2Pair || to == owner())) {
                require((balanceOf(to) + value) <= maxWallet, "ERC20: maxWallet limit exceeded");
            }

            transactionCounter += 1;
            if (transactionCounter >= 100) {
                buySellTaxPercentage = 3;
            }
        }
        super._update(from, to, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"value","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":"buySellTaxPercentage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxCollectionWallet","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":"transactionCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60a060405260058054600f60a11b60ff60a01b199091161790556958f03ee118a13e80000060065569b1e07dc231427d0000006007555f600855600980546001600160a01b03191673735b6ad2fe8df874564293d63434e6290f4285e71790553480156200006b575f80fd5b5060405162001674380380620016748339810160408190526200008e91620006f7565b806040518060400160405280600d81526020016c2124aa21a7a4a7102620aca2a960991b815250604051806040016040528060048152602001631092551360e21b8152508160039081620000e39190620007c3565b506004620000f28282620007c3565b5050506001600160a01b0381166200012457604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6200012f81620002da565b506200015981620001436012600a6200099e565b62000153906301406f40620009ae565b6200032b565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001aa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001d09190620006f7565b6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000230573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002569190620006f7565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620002a1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002c79190620006f7565b6001600160a01b03166080525062000a14565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620003565760405163ec442f0560e01b81525f60048201526024016200011b565b620003635f838362000367565b5050565b6080516001600160a01b0316836001600160a01b031614806200039d57506080516001600160a01b0316826001600160a01b0316145b8015620003b257506001600160a01b03831615155b8015620003e657506005546001600160a01b0384811691161480620003e457506005546001600160a01b038381169116145b155b15620005b6576080516001600160a01b0316826001600160a01b031614806200041c57506005546001600160a01b038381169116145b6200048157600654811115620004815760405162461bcd60e51b8152602060048201526024808201527f45524332303a206d61785472616e73616374696f6e206c696d697420657863656044820152631959195960e21b60648201526084016200011b565b6005545f906064906200049f90600160a01b900460ff1684620009ae565b620004ab9190620009c8565b9050620004b98183620009e8565b9150620004c8843083620005c8565b6080516001600160a01b0316836001600160a01b03161480620004f857506005546001600160a01b038481169116145b6200057c576007548262000520856001600160a01b03165f9081526020819052604090205490565b6200052c9190620009fe565b11156200057c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d617857616c6c6574206c696d69742065786365656465640060448201526064016200011b565b600160085f828254620005909190620009fe565b9091555050600854606411620005b4576005805460ff60a01b1916600360a01b1790555b505b620005c3838383620005c8565b505050565b6001600160a01b038316620005f6578060025f828254620005ea9190620009fe565b90915550620006689050565b6001600160a01b0383165f90815260208190526040902054818110156200064a5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016200011b565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166200068657600280548290039055620006a4565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006ea91815260200190565b60405180910390a3505050565b5f6020828403121562000708575f80fd5b81516001600160a01b03811681146200071f575f80fd5b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200074f57607f821691505b6020821081036200076e57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620005c357805f5260205f20601f840160051c810160208510156200079b5750805b601f840160051c820191505b81811015620007bc575f8155600101620007a7565b5050505050565b81516001600160401b03811115620007df57620007df62000726565b620007f781620007f084546200073a565b8462000774565b602080601f8311600181146200082d575f8415620008155750858301515b5f19600386901b1c1916600185901b17855562000887565b5f85815260208120601f198616915b828110156200085d578886015182559484019460019091019084016200083c565b50858210156200087b57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620008e357815f1904821115620008c757620008c76200088f565b80851615620008d557918102915b93841c9390800290620008a8565b509250929050565b5f82620008fb5750600162000998565b816200090957505f62000998565b81600181146200092257600281146200092d576200094d565b600191505062000998565b60ff8411156200094157620009416200088f565b50506001821b62000998565b5060208310610133831016604e8410600b841016171562000972575081810a62000998565b6200097e8383620008a3565b805f19048211156200099457620009946200088f565b0290505b92915050565b5f6200071f60ff841683620008eb565b80820281158282048414176200099857620009986200088f565b5f82620009e357634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156200099857620009986200088f565b808201808211156200099857620009986200088f565b608051610c2b62000a495f395f81816101e00152818161065d015281816106980152818161071901526108070152610c2b5ff3fe608060405234801561000f575f80fd5b506004361061011c575f3560e01c806370a08231116100a9578063c3f70b521161006e578063c3f70b5214610274578063dd62ed3e1461027d578063f2fde38b146102b5578063f462fe38146102c8578063f8b45b05146102db575f80fd5b806370a0823114610216578063715018a61461023e5780638da5cb5b1461024857806395d89b4114610259578063a9059cbb14610261575f80fd5b806318160ddd116100ef57806318160ddd146101ab57806323b872dd146101b3578063313ce567146101c657806349bd5a5e146101db57806366ab2e8c14610202575f80fd5b806306fdde0314610120578063095ea7b31461013e57806314e887e8146101615780631694505e14610178575b5f80fd5b6101286102e4565b6040516101359190610a34565b60405180910390f35b61015161014c366004610a9b565b610374565b6040519015158152602001610135565b61016a60085481565b604051908152602001610135565b610193737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610135565b60025461016a565b6101516101c1366004610ac3565b61038d565b60125b60405160ff9091168152602001610135565b6101937f000000000000000000000000000000000000000000000000000000000000000081565b6005546101c990600160a01b900460ff1681565b61016a610224366004610afc565b6001600160a01b03165f9081526020819052604090205490565b6102466103b0565b005b6005546001600160a01b0316610193565b6101286103c3565b61015161026f366004610a9b565b6103d2565b61016a60065481565b61016a61028b366004610b1c565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6102466102c3366004610afc565b6103df565b600954610193906001600160a01b031681565b61016a60075481565b6060600380546102f390610b4d565b80601f016020809104026020016040519081016040528092919081815260200182805461031f90610b4d565b801561036a5780601f106103415761010080835404028352916020019161036a565b820191905f5260205f20905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b5f33610381818585610421565b60019150505b92915050565b5f3361039a858285610433565b6103a58585856104ae565b506001949350505050565b6103b861050b565b6103c15f610538565b565b6060600480546102f390610b4d565b5f336103818185856104ae565b6103e761050b565b6001600160a01b03811661041557604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61041e81610538565b50565b61042e8383836001610589565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146104a8578181101561049a57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161040c565b6104a884848484035f610589565b50505050565b6001600160a01b0383166104d757604051634b637e8f60e11b81525f600482015260240161040c565b6001600160a01b0382166105005760405163ec442f0560e01b81525f600482015260240161040c565b61042e83838361065b565b6005546001600160a01b031633146103c15760405163118cdaa760e01b815233600482015260240161040c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166105b25760405163e602df0560e01b81525f600482015260240161040c565b6001600160a01b0383166105db57604051634a1406b160e11b81525f600482015260240161040c565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156104a857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161064d91815260200190565b60405180910390a350505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614806106cc57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b80156106e057506001600160a01b03831615155b801561071257506005546001600160a01b038481169116148061071057506005546001600160a01b038381169116145b155b15610907577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316148061076457506005546001600160a01b038381169116145b6107c6576006548111156107c65760405162461bcd60e51b8152602060048201526024808201527f45524332303a206d61785472616e73616374696f6e206c696d697420657863656044820152631959195960e21b606482015260840161040c565b6005545f906064906107e290600160a01b900460ff1684610b99565b6107ec9190610bb0565b90506107f88183610bcf565b915061080584308361090e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148061085257506005546001600160a01b038481169116145b6108d05760075482610878856001600160a01b03165f9081526020819052604090205490565b6108829190610be2565b11156108d05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d617857616c6c6574206c696d697420657863656564656400604482015260640161040c565b600160085f8282546108e29190610be2565b9091555050600854606411610905576005805460ff60a01b1916600360a01b1790555b505b61042e8383835b6001600160a01b038316610938578060025f82825461092d9190610be2565b909155506109a89050565b6001600160a01b0383165f908152602081905260409020548181101561098a5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161040c565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166109c4576002805482900390556109e2565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a2791815260200190565b60405180910390a3505050565b5f602080835283518060208501525f5b81811015610a6057858101830151858201604001528201610a44565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a96575f80fd5b919050565b5f8060408385031215610aac575f80fd5b610ab583610a80565b946020939093013593505050565b5f805f60608486031215610ad5575f80fd5b610ade84610a80565b9250610aec60208501610a80565b9150604084013590509250925092565b5f60208284031215610b0c575f80fd5b610b1582610a80565b9392505050565b5f8060408385031215610b2d575f80fd5b610b3683610a80565b9150610b4460208401610a80565b90509250929050565b600181811c90821680610b6157607f821691505b602082108103610b7f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761038757610387610b85565b5f82610bca57634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561038757610387610b85565b8082018082111561038757610387610b8556fea26469706673582212205c1a2296549ee6e9fd48d760ba94d6bcdfab622090339126df1fcc8ffd5fa26764736f6c63430008170033000000000000000000000000735b6ad2fe8df874564293d63434e6290f4285e7

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061011c575f3560e01c806370a08231116100a9578063c3f70b521161006e578063c3f70b5214610274578063dd62ed3e1461027d578063f2fde38b146102b5578063f462fe38146102c8578063f8b45b05146102db575f80fd5b806370a0823114610216578063715018a61461023e5780638da5cb5b1461024857806395d89b4114610259578063a9059cbb14610261575f80fd5b806318160ddd116100ef57806318160ddd146101ab57806323b872dd146101b3578063313ce567146101c657806349bd5a5e146101db57806366ab2e8c14610202575f80fd5b806306fdde0314610120578063095ea7b31461013e57806314e887e8146101615780631694505e14610178575b5f80fd5b6101286102e4565b6040516101359190610a34565b60405180910390f35b61015161014c366004610a9b565b610374565b6040519015158152602001610135565b61016a60085481565b604051908152602001610135565b610193737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610135565b60025461016a565b6101516101c1366004610ac3565b61038d565b60125b60405160ff9091168152602001610135565b6101937f000000000000000000000000f169a97af7e2d38e88840ec8d64e0f25a170330f81565b6005546101c990600160a01b900460ff1681565b61016a610224366004610afc565b6001600160a01b03165f9081526020819052604090205490565b6102466103b0565b005b6005546001600160a01b0316610193565b6101286103c3565b61015161026f366004610a9b565b6103d2565b61016a60065481565b61016a61028b366004610b1c565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6102466102c3366004610afc565b6103df565b600954610193906001600160a01b031681565b61016a60075481565b6060600380546102f390610b4d565b80601f016020809104026020016040519081016040528092919081815260200182805461031f90610b4d565b801561036a5780601f106103415761010080835404028352916020019161036a565b820191905f5260205f20905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b5f33610381818585610421565b60019150505b92915050565b5f3361039a858285610433565b6103a58585856104ae565b506001949350505050565b6103b861050b565b6103c15f610538565b565b6060600480546102f390610b4d565b5f336103818185856104ae565b6103e761050b565b6001600160a01b03811661041557604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61041e81610538565b50565b61042e8383836001610589565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146104a8578181101561049a57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161040c565b6104a884848484035f610589565b50505050565b6001600160a01b0383166104d757604051634b637e8f60e11b81525f600482015260240161040c565b6001600160a01b0382166105005760405163ec442f0560e01b81525f600482015260240161040c565b61042e83838361065b565b6005546001600160a01b031633146103c15760405163118cdaa760e01b815233600482015260240161040c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166105b25760405163e602df0560e01b81525f600482015260240161040c565b6001600160a01b0383166105db57604051634a1406b160e11b81525f600482015260240161040c565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156104a857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161064d91815260200190565b60405180910390a350505050565b7f000000000000000000000000f169a97af7e2d38e88840ec8d64e0f25a170330f6001600160a01b0316836001600160a01b031614806106cc57507f000000000000000000000000f169a97af7e2d38e88840ec8d64e0f25a170330f6001600160a01b0316826001600160a01b0316145b80156106e057506001600160a01b03831615155b801561071257506005546001600160a01b038481169116148061071057506005546001600160a01b038381169116145b155b15610907577f000000000000000000000000f169a97af7e2d38e88840ec8d64e0f25a170330f6001600160a01b0316826001600160a01b0316148061076457506005546001600160a01b038381169116145b6107c6576006548111156107c65760405162461bcd60e51b8152602060048201526024808201527f45524332303a206d61785472616e73616374696f6e206c696d697420657863656044820152631959195960e21b606482015260840161040c565b6005545f906064906107e290600160a01b900460ff1684610b99565b6107ec9190610bb0565b90506107f88183610bcf565b915061080584308361090e565b7f000000000000000000000000f169a97af7e2d38e88840ec8d64e0f25a170330f6001600160a01b0316836001600160a01b0316148061085257506005546001600160a01b038481169116145b6108d05760075482610878856001600160a01b03165f9081526020819052604090205490565b6108829190610be2565b11156108d05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d617857616c6c6574206c696d697420657863656564656400604482015260640161040c565b600160085f8282546108e29190610be2565b9091555050600854606411610905576005805460ff60a01b1916600360a01b1790555b505b61042e8383835b6001600160a01b038316610938578060025f82825461092d9190610be2565b909155506109a89050565b6001600160a01b0383165f908152602081905260409020548181101561098a5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161040c565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166109c4576002805482900390556109e2565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a2791815260200190565b60405180910390a3505050565b5f602080835283518060208501525f5b81811015610a6057858101830151858201604001528201610a44565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a96575f80fd5b919050565b5f8060408385031215610aac575f80fd5b610ab583610a80565b946020939093013593505050565b5f805f60608486031215610ad5575f80fd5b610ade84610a80565b9250610aec60208501610a80565b9150604084013590509250925092565b5f60208284031215610b0c575f80fd5b610b1582610a80565b9392505050565b5f8060408385031215610b2d575f80fd5b610b3683610a80565b9150610b4460208401610a80565b90509250929050565b600181811c90821680610b6157607f821691505b602082108103610b7f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761038757610387610b85565b5f82610bca57634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561038757610387610b85565b8082018082111561038757610387610b8556fea26469706673582212205c1a2296549ee6e9fd48d760ba94d6bcdfab622090339126df1fcc8ffd5fa26764736f6c63430008170033

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

000000000000000000000000735b6ad2fe8df874564293d63434e6290f4285e7

-----Decoded View---------------
Arg [0] : _owner (address): 0x735B6ad2fe8Df874564293d63434e6290F4285e7

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000735b6ad2fe8df874564293d63434e6290f4285e7


Deployed Bytecode Sourcemap

20522:2243:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8441:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10759:215;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;10759:215:0;1004:187:1;20715:37:0;;;;;;;;;1342:25:1;;;1330:2;1315:18;20715:37:0;1196:177:1;20901:124:0;;20982:42;20901:124;;;;;-1:-1:-1;;;;;1567:32:1;;;1549:51;;1537:2;1522:18;20901:124:0;1378:228:1;9543:99:0;9622:12;;9543:99;;11552:283;;;;;;:::i;:::-;;:::i;9394:84::-;9468:2;9394:84;;;2116:4:1;2104:17;;;2086:36;;2074:2;2059:18;9394:84:0;1944:184:1;20761:38:0;;;;;20561;;;;;-1:-1:-1;;;20561:38:0;;;;;;9705:118;;;;;;:::i;:::-;-1:-1:-1;;;;;9797:18:0;9770:7;9797:18;;;;;;;;;;;;9705:118;19686:103;;;:::i;:::-;;19011:87;19084:6;;-1:-1:-1;;;;;19084:6:0;19011:87;;8651:95;;;:::i;10028:182::-;;;;;;:::i;:::-;;:::i;20606:50::-;;;;;;10273:167;;;;;;:::i;:::-;-1:-1:-1;;;;;10405:18:0;;;10378:7;10405:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10273:167;19944:220;;;;;;:::i;:::-;;:::i;20806:88::-;;;;;-1:-1:-1;;;;;20806:88:0;;;20663:45;;;;;;8441:91;8486:13;8519:5;8512:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8441:91;:::o;10759:215::-;10857:4;1284:10;10913:31;1284:10;10929:7;10938:5;10913:8;:31::i;:::-;10962:4;10955:11;;;10759:215;;;;;:::o;11552:283::-;11673:4;1284:10;11731:37;11747:4;1284:10;11762:5;11731:15;:37::i;:::-;11779:26;11789:4;11795:2;11799:5;11779:9;:26::i;:::-;-1:-1:-1;11823:4:0;;11552:283;-1:-1:-1;;;;11552:283:0:o;19686:103::-;18897:13;:11;:13::i;:::-;19751:30:::1;19778:1;19751:18;:30::i;:::-;19686:103::o:0;8651:95::-;8698:13;8731:7;8724:14;;;;;:::i;10028:182::-;10097:4;1284:10;10153:27;1284:10;10170:2;10174:5;10153:9;:27::i;19944:220::-;18897:13;:11;:13::i;:::-;-1:-1:-1;;;;;20029:22:0;::::1;20025:93;;20075:31;::::0;-1:-1:-1;;;20075:31:0;;20103:1:::1;20075:31;::::0;::::1;1549:51:1::0;1522:18;;20075:31:0::1;;;;;;;;20025:93;20128:28;20147:8;20128:18;:28::i;:::-;19944:220:::0;:::o;15106:130::-;15191:37;15200:5;15207:7;15216:5;15223:4;15191:8;:37::i;:::-;15106:130;;;:::o;16865:603::-;-1:-1:-1;;;;;10405:18:0;;;16999:24;10405:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;17066:37:0;;17062:399;;17143:5;17124:16;:24;17120:214;;;17176:142;;-1:-1:-1;;;17176:142:0;;-1:-1:-1;;;;;3402:32:1;;17176:142:0;;;3384:51:1;3451:18;;;3444:34;;;3494:18;;;3487:34;;;3357:18;;17176:142:0;3182:345:1;17120:214:0;17377:57;17386:5;17393:7;17421:5;17402:16;:24;17428:5;17377:8;:57::i;:::-;16988:480;16865:603;;;:::o;12220:308::-;-1:-1:-1;;;;;12304:18:0;;12300:88;;12346:30;;-1:-1:-1;;;12346:30:0;;12373:1;12346:30;;;1549:51:1;1522:18;;12346:30:0;1378:228:1;12300:88:0;-1:-1:-1;;;;;12402:16:0;;12398:88;;12442:32;;-1:-1:-1;;;12442:32:0;;12471:1;12442:32;;;1549:51:1;1522:18;;12442:32:0;1378:228:1;12398:88:0;12496:24;12504:4;12510:2;12514:5;12496:7;:24::i;19176:166::-;19084:6;;-1:-1:-1;;;;;19084:6:0;1284:10;19236:23;19232:103;;19283:40;;-1:-1:-1;;;19283:40:0;;1284:10;19283:40;;;1549:51:1;1522:18;;19283:40:0;1378:228:1;20324:191:0;20417:6;;;-1:-1:-1;;;;;20434:17:0;;;-1:-1:-1;;;;;;20434:17:0;;;;;;;20467:40;;20417:6;;;20434:17;20417:6;;20467:40;;20398:16;;20467:40;20387:128;20324:191;:::o;16087:486::-;-1:-1:-1;;;;;16243:19:0;;16239:91;;16286:32;;-1:-1:-1;;;16286:32:0;;16315:1;16286:32;;;1549:51:1;1522:18;;16286:32:0;1378:228:1;16239:91:0;-1:-1:-1;;;;;16344:21:0;;16340:92;;16389:31;;-1:-1:-1;;;16389:31:0;;16417:1;16389:31;;;1549:51:1;1522:18;;16389:31:0;1378:228:1;16340:92:0;-1:-1:-1;;;;;16442:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;16488:78;;;;16539:7;-1:-1:-1;;;;;16523:31:0;16532:5;-1:-1:-1;;;;;16523:31:0;;16548:5;16523:31;;;;1342:25:1;;1330:2;1315:18;;1196:177;16523:31:0;;;;;;;;16087:486;;;;:::o;21819:943::-;21953:13;-1:-1:-1;;;;;21945:21:0;:4;-1:-1:-1;;;;;21945:21:0;;:44;;;;21976:13;-1:-1:-1;;;;;21970:19:0;:2;-1:-1:-1;;;;;21970:19:0;;21945:44;21944:68;;;;-1:-1:-1;;;;;;21994:18:0;;;;21944:68;:107;;;;-1:-1:-1;19084:6:0;;-1:-1:-1;;;;;22018:15:0;;;19084:6;;22018:15;;:32;;-1:-1:-1;19084:6:0;;-1:-1:-1;;;;;22037:13:0;;;19084:6;;22037:13;22018:32;22016:35;21944:107;21940:774;;;22080:13;-1:-1:-1;;;;;22074:19:0;:2;-1:-1:-1;;;;;22074:19:0;;:36;;;-1:-1:-1;19084:6:0;;-1:-1:-1;;;;;22097:13:0;;;19084:6;;22097:13;22074:36;22068:152;;22149:14;;22140:5;:23;;22132:72;;;;-1:-1:-1;;;22132:72:0;;3734:2:1;22132:72:0;;;3716:21:1;3773:2;3753:18;;;3746:30;3812:34;3792:18;;;3785:62;-1:-1:-1;;;3863:18:1;;;3856:34;3907:19;;22132:72:0;3532:400:1;22132:72:0;22264:20;;22236:16;;22288:3;;22256:28;;-1:-1:-1;;;22264:20:0;;;;22256:5;:28;:::i;:::-;22255:36;;;;:::i;:::-;22236:55;-1:-1:-1;22306:17:0;22236:55;22306:17;;:::i;:::-;;;22338:44;22352:4;22366;22373:8;22338:13;:44::i;:::-;22411:13;-1:-1:-1;;;;;22405:19:0;:2;-1:-1:-1;;;;;22405:19:0;;:36;;;-1:-1:-1;19084:6:0;;-1:-1:-1;;;;;22428:13:0;;;19084:6;;22428:13;22405:36;22399:160;;22498:9;;22488:5;22472:13;22482:2;-1:-1:-1;;;;;9797:18:0;9770:7;9797:18;;;;;;;;;;;;9705:118;22472:13;:21;;;;:::i;:::-;22471:36;;22463:80;;;;-1:-1:-1;;;22463:80:0;;4929:2:1;22463:80:0;;;4911:21:1;4968:2;4948:18;;;4941:30;5007:33;4987:18;;;4980:61;5058:18;;22463:80:0;4727:355:1;22463:80:0;22597:1;22575:18;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;;22617:18:0;;22639:3;-1:-1:-1;22613:90:0;;22663:20;:24;;-1:-1:-1;;;;22663:24:0;-1:-1:-1;;;22663:24:0;;;22613:90;22053:661;21940:774;22724:30;22738:4;22744:2;22748:5;12852:1135;-1:-1:-1;;;;;12942:18:0;;12938:552;;13096:5;13080:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;12938:552:0;;-1:-1:-1;12938:552:0;;-1:-1:-1;;;;;13156:15:0;;13134:19;13156:15;;;;;;;;;;;13190:19;;;13186:117;;;13237:50;;-1:-1:-1;;;13237:50:0;;-1:-1:-1;;;;;3402:32:1;;13237:50:0;;;3384:51:1;3451:18;;;3444:34;;;3494:18;;;3487:34;;;3357:18;;13237:50:0;3182:345:1;13186:117:0;-1:-1:-1;;;;;13426:15:0;;:9;:15;;;;;;;;;;13444:19;;;;13426:37;;12938:552;-1:-1:-1;;;;;13506:16:0;;13502:435;;13672:12;:21;;;;;;;13502:435;;;-1:-1:-1;;;;;13888:13:0;;:9;:13;;;;;;;;;;:22;;;;;;13502:435;13969:2;-1:-1:-1;;;;;13954:25:0;13963:4;-1:-1:-1;;;;;13954:25:0;;13973:5;13954:25;;;;1342::1;;1330:2;1315:18;;1196:177;13954:25:0;;;;;;;;12852:1135;;;:::o;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;1611:328::-;1688:6;1696;1704;1757:2;1745:9;1736:7;1732:23;1728:32;1725:52;;;1773:1;1770;1763:12;1725:52;1796:29;1815:9;1796:29;:::i;:::-;1786:39;;1844:38;1878:2;1867:9;1863:18;1844:38;:::i;:::-;1834:48;;1929:2;1918:9;1914:18;1901:32;1891:42;;1611:328;;;;;:::o;2341:186::-;2400:6;2453:2;2441:9;2432:7;2428:23;2424:32;2421:52;;;2469:1;2466;2459:12;2421:52;2492:29;2511:9;2492:29;:::i;:::-;2482:39;2341:186;-1:-1:-1;;;2341:186:1:o;2532:260::-;2600:6;2608;2661:2;2649:9;2640:7;2636:23;2632:32;2629:52;;;2677:1;2674;2667:12;2629:52;2700:29;2719:9;2700:29;:::i;:::-;2690:39;;2748:38;2782:2;2771:9;2767:18;2748:38;:::i;:::-;2738:48;;2532:260;;;;;:::o;2797:380::-;2876:1;2872:12;;;;2919;;;2940:61;;2994:4;2986:6;2982:17;2972:27;;2940:61;3047:2;3039:6;3036:14;3016:18;3013:38;3010:161;;3093:10;3088:3;3084:20;3081:1;3074:31;3128:4;3125:1;3118:15;3156:4;3153:1;3146:15;3010:161;;2797:380;;;:::o;3937:127::-;3998:10;3993:3;3989:20;3986:1;3979:31;4029:4;4026:1;4019:15;4053:4;4050:1;4043:15;4069:168;4142:9;;;4173;;4190:15;;;4184:22;;4170:37;4160:71;;4211:18;;:::i;4242:217::-;4282:1;4308;4298:132;;4352:10;4347:3;4343:20;4340:1;4333:31;4387:4;4384:1;4377:15;4415:4;4412:1;4405:15;4298:132;-1:-1:-1;4444:9:1;;4242:217::o;4464:128::-;4531:9;;;4552:11;;;4549:37;;;4566:18;;:::i;4597:125::-;4662:9;;;4683:10;;;4680:36;;;4696:18;;:::i

Swarm Source

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