BNB Price: $696.85 (-1.84%)
Gas: 1 GWei
 

Overview

Max Total Supply

9,999,999,900STX

Holders

180 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
BscScan: Donate
Balance
1,887 STX

Value
$0.00
0x71c7656ec7ab88b098defb751b7401b5f6d8976f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Startrix is a Web3 platform integrating Farming, Staking, and Play-to-Earn GameFi on Binance Smart Chain. Through secure smart contracts, users can earn passive income via daily farming investments, staking options, and play-to-earn rewards with $STX tokens.


Update? Click here to update the token ICO / general information

Contract Source Code Verified (Exact Match)

Contract Name:
STXToken

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at BscScan.com on 2024-10-09
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

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

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


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)


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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)

/**
 * @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 Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

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

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

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @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.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

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

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

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)


/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * 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 Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), 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);
            }
        }
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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);
    }
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}



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

contract STXToken is ERC20, Ownable {
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    uint256 public buyFee;
    uint256 public sellFee;
    address public feeWallet;

    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;

    mapping(address => bool) public automatedMarketMakerPairs;

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    constructor(
        uint256 initialSupply,
        address _feeWallet,
        address _usdt
    ) ERC20("Startrix", "STX") Ownable(msg.sender) {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x10ED43C718714eb63d5aA57B78B54704E256024E
        );
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _usdt);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        _updateFees(0, 300); 
        _updateFeeWallet(_feeWallet);

        // exclude from paying fees or having max transaction amount
        _excludeFromFees(msg.sender, true);
        _excludeFromFees(address(this), true);
        _excludeFromFees(address(0xdead), true);
        _mint(msg.sender, initialSupply);
    }

    receive() external payable {}

    function burn(uint256 value) public virtual {
        _burn(_msgSender(), value);
    }

    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }

    function updateFeeWallet(address _feeWallet) external onlyOwner {
        _updateFeeWallet(_feeWallet);
    }

    function _updateFeeWallet(address _feeWallet) private {
        require(_feeWallet != address(0), "Zero address");
        feeWallet = _feeWallet;
    }

    function updateFees(uint256 _buyFee, uint256 _sellFee) public onlyOwner {
        _updateFees(_buyFee, _sellFee);
    }

    function _updateFees(uint256 _buyFee, uint256 _sellFee) private {
        require(_buyFee <= 1_000 && _sellFee <= 1_000, "Invalid fees"); // _buyFee and _sellFee <= 10%
        buyFee = _buyFee;
        sellFee = _sellFee;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _excludeFromFees(account, excluded);
    }

    function _excludeFromFees(address account, bool excluded) private {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );
        require(pair != address(0), "Zero address");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (from == address(0x0) || to == address(0x0)) {
            super._update(from, to, amount);
            return;
        }

        if (amount == 0) {
            super._update(from, to, 0);
            return;
        }

        bool takeFee = true;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fee = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellFee > 0) {
                fee = (amount * sellFee) / 10_000;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyFee > 0) {
                fee = (amount * buyFee) / 10_000;
            }

            if (fee > 0) {
                super._update(from, feeWallet, fee);
            }

            amount -= fee;
        }

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

      function withdrawStuck() external onlyOwner {
        uint256 balance = balanceOf(address(this));
        if (balance > 0) {
            _transfer(address(this), msg.sender, balance);
        }
        uint256 ethBalance = address(this).balance;
        if (ethBalance > 0) {
            (bool success, ) = msg.sender.call{value: ethBalance}("");
            require(success, "ETH transfer failed");
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"_feeWallet","type":"address"},{"internalType":"address","name":"_usdt","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFee","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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","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":"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"},{"inputs":[{"internalType":"address","name":"_feeWallet","type":"address"}],"name":"updateFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405234801561000f575f80fd5b50604051611a2e380380611a2e83398101604081905261002e916106b6565b33604051806040016040528060088152602001670a6e8c2e4e8e4d2f60c31b815250604051806040016040528060038152602001620a6a8b60eb1b815250816003908161007b919061077f565b506004610088828261077f565b5050506001600160a01b0381166100b957604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6100c281610210565b507310ed43c718714eb63d5aa57b78b54704e256024e60808190526040805163c45a015560e01b81529051829163c45a01559160048083019260209291908290030181865afa158015610117573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061013b9190610839565b6040516364e329cb60e11b81523060048201526001600160a01b038481166024830152919091169063c9c65396906044016020604051808303815f875af1158015610188573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101ac9190610839565b6001600160a01b031660a08190526101c5906001610261565b6101d15f61012c6102b4565b6101da8361030e565b6101e5336001610375565b6101f0306001610375565b6101fd61dead6001610375565b61020733856103d3565b505050506108cf565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152600a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6103e882111580156102c857506103e88111155b6103035760405162461bcd60e51b815260206004820152600c60248201526b496e76616c6964206665657360a01b60448201526064016100b0565b600691909155600755565b6001600160a01b0381166103535760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b60448201526064016100b0565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382165f81815260096020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166103fc5760405163ec442f0560e01b81525f60048201526024016100b0565b6104075f838361040b565b5050565b6001600160a01b038316158061042857506001600160a01b038216155b1561043d57610438838383610575565b505050565b805f0361044f5761043883835f610575565b6001600160a01b0383165f9081526009602052604090205460019060ff168061048f57506001600160a01b0383165f9081526009602052604090205460ff165b1561049757505f5b5f8115610563576001600160a01b0384165f908152600a602052604090205460ff1680156104c657505f600754115b156104ed57612710600754846104dc919061086d565b6104e6919061088a565b9050610538565b6001600160a01b0385165f908152600a602052604090205460ff16801561051557505f600654115b15610538576127106006548461052b919061086d565b610535919061088a565b90505b8015610556576008546105569086906001600160a01b031683610575565b61056081846108a9565b92505b61056e858585610575565b5050505050565b6001600160a01b03831661059f578060025f82825461059491906108bc565b9091555061060f9050565b6001600160a01b0383165f90815260208190526040902054818110156105f15760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016100b0565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661062b57600280548290039055610649565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161068e91815260200190565b60405180910390a3505050565b80516001600160a01b03811681146106b1575f80fd5b919050565b5f805f606084860312156106c8575f80fd5b835192506106d86020850161069b565b91506106e66040850161069b565b90509250925092565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061071757607f821691505b60208210810361073557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561043857805f5260205f20601f840160051c810160208510156107605750805b601f840160051c820191505b8181101561056e575f815560010161076c565b81516001600160401b03811115610798576107986106ef565b6107ac816107a68454610703565b8461073b565b6020601f8211600181146107de575f83156107c75750848201515b5f19600385901b1c1916600184901b17845561056e565b5f84815260208120601f198516915b8281101561080d57878501518255602094850194600190920191016107ed565b508482101561082a57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215610849575f80fd5b6108528261069b565b9392505050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761088457610884610859565b92915050565b5f826108a457634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561088457610884610859565b8082018082111561088457610884610859565b60805160a0516111376108f75f395f81816102e1015261073301525f6101f301526111375ff3fe60806040526004361061017e575f3560e01c80636db79437116100cd5780639a7a23d611610087578063c024666811610062578063c024666814610490578063dd62ed3e146104af578063f25f4b56146104f3578063f2fde38b14610512575f80fd5b80639a7a23d614610424578063a9059cbb14610443578063b62496f514610462575f80fd5b80636db794371461036d57806370a082311461038c578063715018a6146103c057806379cc6790146103d45780638da5cb5b146103f357806395d89b4114610410575f80fd5b8063313ce5671161013857806349bd5a5e1161011357806349bd5a5e146102d05780634fbee19314610303578063667185241461033a57806367a1bd5514610359575f80fd5b8063313ce5671461027f57806342966c681461029a57806347062402146102bb575f80fd5b806306fdde0314610189578063095ea7b3146101b35780631694505e146101e257806318160ddd1461022d57806323b872dd1461024b5780632b14ca561461026a575f80fd5b3661018557005b5f80fd5b348015610194575f80fd5b5061019d610531565b6040516101aa9190610ee6565b60405180910390f35b3480156101be575f80fd5b506101d26101cd366004610f36565b6105c1565b60405190151581526020016101aa565b3480156101ed575f80fd5b506102157f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101aa565b348015610238575f80fd5b506002545b6040519081526020016101aa565b348015610256575f80fd5b506101d2610265366004610f5e565b6105da565b348015610275575f80fd5b5061023d60075481565b34801561028a575f80fd5b50604051601281526020016101aa565b3480156102a5575f80fd5b506102b96102b4366004610f98565b6105fd565b005b3480156102c6575f80fd5b5061023d60065481565b3480156102db575f80fd5b506102157f000000000000000000000000000000000000000000000000000000000000000081565b34801561030e575f80fd5b506101d261031d366004610faf565b6001600160a01b03165f9081526009602052604090205460ff1690565b348015610345575f80fd5b506102b9610354366004610faf565b61060a565b348015610364575f80fd5b506102b961061b565b348015610378575f80fd5b506102b9610387366004610fcf565b6106e0565b348015610397575f80fd5b5061023d6103a6366004610faf565b6001600160a01b03165f9081526020819052604090205490565b3480156103cb575f80fd5b506102b96106f2565b3480156103df575f80fd5b506102b96103ee366004610f36565b610705565b3480156103fe575f80fd5b506005546001600160a01b0316610215565b34801561041b575f80fd5b5061019d61071a565b34801561042f575f80fd5b506102b961043e366004610fef565b610729565b34801561044e575f80fd5b506101d261045d366004610f36565b610827565b34801561046d575f80fd5b506101d261047c366004610faf565b600a6020525f908152604090205460ff1681565b34801561049b575f80fd5b506102b96104aa366004610fef565b610834565b3480156104ba575f80fd5b5061023d6104c9366004611028565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156104fe575f80fd5b50600854610215906001600160a01b031681565b34801561051d575f80fd5b506102b961052c366004610faf565b610846565b60606003805461054090611059565b80601f016020809104026020016040519081016040528092919081815260200182805461056c90611059565b80156105b75780601f1061058e576101008083540402835291602001916105b7565b820191905f5260205f20905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b5f336105ce818585610880565b60019150505b92915050565b5f336105e785828561088d565b6105f2858585610908565b506001949350505050565b6106073382610965565b50565b610612610999565b610607816109c6565b610623610999565b305f90815260208190526040902054801561064357610643303383610908565b4780156106dc576040515f90339083908381818185875af1925050503d805f8114610689576040519150601f19603f3d011682016040523d82523d5f602084013e61068e565b606091505b50509050806106da5760405162461bcd60e51b8152602060048201526013602482015272115512081d1c985b9cd9995c8819985a5b1959606a1b60448201526064015b60405180910390fd5b505b5050565b6106e8610999565b6106dc8282610a2d565b6106fa610999565b6107035f610a87565b565b61071082338361088d565b6106dc8282610965565b60606004805461054090611059565b610731610999565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036107d85760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016106d1565b6001600160a01b03821661081d5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b60448201526064016106d1565b6106dc8282610ad8565b5f336105ce818585610908565b61083c610999565b6106dc8282610b2b565b61084e610999565b6001600160a01b03811661087757604051631e4fbdf760e01b81525f60048201526024016106d1565b61060781610a87565b6106da8383836001610b89565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461090257818110156108f457604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016106d1565b61090284848484035f610b89565b50505050565b6001600160a01b03831661093157604051634b637e8f60e11b81525f60048201526024016106d1565b6001600160a01b03821661095a5760405163ec442f0560e01b81525f60048201526024016106d1565b6106da838383610c5b565b6001600160a01b03821661098e57604051634b637e8f60e11b81525f60048201526024016106d1565b6106dc825f83610c5b565b6005546001600160a01b031633146107035760405163118cdaa760e01b81523360048201526024016106d1565b6001600160a01b038116610a0b5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b60448201526064016106d1565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6103e88211158015610a4157506103e88111155b610a7c5760405162461bcd60e51b815260206004820152600c60248201526b496e76616c6964206665657360a01b60448201526064016106d1565b600691909155600755565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152600a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0382165f81815260096020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038416610bb25760405163e602df0560e01b81525f60048201526024016106d1565b6001600160a01b038316610bdb57604051634a1406b160e11b81525f60048201526024016106d1565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561090257826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c4d91815260200190565b60405180910390a350505050565b6001600160a01b0383161580610c7857506001600160a01b038216155b15610c88576106da838383610dc0565b805f03610c9a576106da83835f610dc0565b6001600160a01b0383165f9081526009602052604090205460019060ff1680610cda57506001600160a01b0383165f9081526009602052604090205460ff165b15610ce257505f5b5f8115610dae576001600160a01b0384165f908152600a602052604090205460ff168015610d1157505f600754115b15610d385761271060075484610d2791906110a5565b610d3191906110bc565b9050610d83565b6001600160a01b0385165f908152600a602052604090205460ff168015610d6057505f600654115b15610d835761271060065484610d7691906110a5565b610d8091906110bc565b90505b8015610da157600854610da19086906001600160a01b031683610dc0565b610dab81846110db565b92505b610db9858585610dc0565b5050505050565b6001600160a01b038316610dea578060025f828254610ddf91906110ee565b90915550610e5a9050565b6001600160a01b0383165f9081526020819052604090205481811015610e3c5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016106d1565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610e7657600280548290039055610e94565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ed991815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610f31575f80fd5b919050565b5f8060408385031215610f47575f80fd5b610f5083610f1b565b946020939093013593505050565b5f805f60608486031215610f70575f80fd5b610f7984610f1b565b9250610f8760208501610f1b565b929592945050506040919091013590565b5f60208284031215610fa8575f80fd5b5035919050565b5f60208284031215610fbf575f80fd5b610fc882610f1b565b9392505050565b5f8060408385031215610fe0575f80fd5b50508035926020909101359150565b5f8060408385031215611000575f80fd5b61100983610f1b565b91506020830135801515811461101d575f80fd5b809150509250929050565b5f8060408385031215611039575f80fd5b61104283610f1b565b915061105060208401610f1b565b90509250929050565b600181811c9082168061106d57607f821691505b60208210810361108b57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176105d4576105d4611091565b5f826110d657634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156105d4576105d4611091565b808201808211156105d4576105d461109156fea2646970667358221220fd4085495d8134a6c03bd0ff53fe480110e95af54abecd78517ac76918232a4864736f6c634300081a00330000000000000000000000000000000000000000204fce5e3e250261100000000000000000000000000000006e17c213faba05d6fe7c73f43169d5146858c7da00000000000000000000000055d398326f99059ff775485246999027b3197955

Deployed Bytecode

0x60806040526004361061017e575f3560e01c80636db79437116100cd5780639a7a23d611610087578063c024666811610062578063c024666814610490578063dd62ed3e146104af578063f25f4b56146104f3578063f2fde38b14610512575f80fd5b80639a7a23d614610424578063a9059cbb14610443578063b62496f514610462575f80fd5b80636db794371461036d57806370a082311461038c578063715018a6146103c057806379cc6790146103d45780638da5cb5b146103f357806395d89b4114610410575f80fd5b8063313ce5671161013857806349bd5a5e1161011357806349bd5a5e146102d05780634fbee19314610303578063667185241461033a57806367a1bd5514610359575f80fd5b8063313ce5671461027f57806342966c681461029a57806347062402146102bb575f80fd5b806306fdde0314610189578063095ea7b3146101b35780631694505e146101e257806318160ddd1461022d57806323b872dd1461024b5780632b14ca561461026a575f80fd5b3661018557005b5f80fd5b348015610194575f80fd5b5061019d610531565b6040516101aa9190610ee6565b60405180910390f35b3480156101be575f80fd5b506101d26101cd366004610f36565b6105c1565b60405190151581526020016101aa565b3480156101ed575f80fd5b506102157f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e81565b6040516001600160a01b0390911681526020016101aa565b348015610238575f80fd5b506002545b6040519081526020016101aa565b348015610256575f80fd5b506101d2610265366004610f5e565b6105da565b348015610275575f80fd5b5061023d60075481565b34801561028a575f80fd5b50604051601281526020016101aa565b3480156102a5575f80fd5b506102b96102b4366004610f98565b6105fd565b005b3480156102c6575f80fd5b5061023d60065481565b3480156102db575f80fd5b506102157f000000000000000000000000e52be6f76929e91a6bee6e1c895c031e4112b9d981565b34801561030e575f80fd5b506101d261031d366004610faf565b6001600160a01b03165f9081526009602052604090205460ff1690565b348015610345575f80fd5b506102b9610354366004610faf565b61060a565b348015610364575f80fd5b506102b961061b565b348015610378575f80fd5b506102b9610387366004610fcf565b6106e0565b348015610397575f80fd5b5061023d6103a6366004610faf565b6001600160a01b03165f9081526020819052604090205490565b3480156103cb575f80fd5b506102b96106f2565b3480156103df575f80fd5b506102b96103ee366004610f36565b610705565b3480156103fe575f80fd5b506005546001600160a01b0316610215565b34801561041b575f80fd5b5061019d61071a565b34801561042f575f80fd5b506102b961043e366004610fef565b610729565b34801561044e575f80fd5b506101d261045d366004610f36565b610827565b34801561046d575f80fd5b506101d261047c366004610faf565b600a6020525f908152604090205460ff1681565b34801561049b575f80fd5b506102b96104aa366004610fef565b610834565b3480156104ba575f80fd5b5061023d6104c9366004611028565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156104fe575f80fd5b50600854610215906001600160a01b031681565b34801561051d575f80fd5b506102b961052c366004610faf565b610846565b60606003805461054090611059565b80601f016020809104026020016040519081016040528092919081815260200182805461056c90611059565b80156105b75780601f1061058e576101008083540402835291602001916105b7565b820191905f5260205f20905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b5f336105ce818585610880565b60019150505b92915050565b5f336105e785828561088d565b6105f2858585610908565b506001949350505050565b6106073382610965565b50565b610612610999565b610607816109c6565b610623610999565b305f90815260208190526040902054801561064357610643303383610908565b4780156106dc576040515f90339083908381818185875af1925050503d805f8114610689576040519150601f19603f3d011682016040523d82523d5f602084013e61068e565b606091505b50509050806106da5760405162461bcd60e51b8152602060048201526013602482015272115512081d1c985b9cd9995c8819985a5b1959606a1b60448201526064015b60405180910390fd5b505b5050565b6106e8610999565b6106dc8282610a2d565b6106fa610999565b6107035f610a87565b565b61071082338361088d565b6106dc8282610965565b60606004805461054090611059565b610731610999565b7f000000000000000000000000e52be6f76929e91a6bee6e1c895c031e4112b9d96001600160a01b0316826001600160a01b0316036107d85760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016106d1565b6001600160a01b03821661081d5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b60448201526064016106d1565b6106dc8282610ad8565b5f336105ce818585610908565b61083c610999565b6106dc8282610b2b565b61084e610999565b6001600160a01b03811661087757604051631e4fbdf760e01b81525f60048201526024016106d1565b61060781610a87565b6106da8383836001610b89565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461090257818110156108f457604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016106d1565b61090284848484035f610b89565b50505050565b6001600160a01b03831661093157604051634b637e8f60e11b81525f60048201526024016106d1565b6001600160a01b03821661095a5760405163ec442f0560e01b81525f60048201526024016106d1565b6106da838383610c5b565b6001600160a01b03821661098e57604051634b637e8f60e11b81525f60048201526024016106d1565b6106dc825f83610c5b565b6005546001600160a01b031633146107035760405163118cdaa760e01b81523360048201526024016106d1565b6001600160a01b038116610a0b5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b60448201526064016106d1565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6103e88211158015610a4157506103e88111155b610a7c5760405162461bcd60e51b815260206004820152600c60248201526b496e76616c6964206665657360a01b60448201526064016106d1565b600691909155600755565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152600a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0382165f81815260096020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038416610bb25760405163e602df0560e01b81525f60048201526024016106d1565b6001600160a01b038316610bdb57604051634a1406b160e11b81525f60048201526024016106d1565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561090257826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c4d91815260200190565b60405180910390a350505050565b6001600160a01b0383161580610c7857506001600160a01b038216155b15610c88576106da838383610dc0565b805f03610c9a576106da83835f610dc0565b6001600160a01b0383165f9081526009602052604090205460019060ff1680610cda57506001600160a01b0383165f9081526009602052604090205460ff165b15610ce257505f5b5f8115610dae576001600160a01b0384165f908152600a602052604090205460ff168015610d1157505f600754115b15610d385761271060075484610d2791906110a5565b610d3191906110bc565b9050610d83565b6001600160a01b0385165f908152600a602052604090205460ff168015610d6057505f600654115b15610d835761271060065484610d7691906110a5565b610d8091906110bc565b90505b8015610da157600854610da19086906001600160a01b031683610dc0565b610dab81846110db565b92505b610db9858585610dc0565b5050505050565b6001600160a01b038316610dea578060025f828254610ddf91906110ee565b90915550610e5a9050565b6001600160a01b0383165f9081526020819052604090205481811015610e3c5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016106d1565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610e7657600280548290039055610e94565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ed991815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610f31575f80fd5b919050565b5f8060408385031215610f47575f80fd5b610f5083610f1b565b946020939093013593505050565b5f805f60608486031215610f70575f80fd5b610f7984610f1b565b9250610f8760208501610f1b565b929592945050506040919091013590565b5f60208284031215610fa8575f80fd5b5035919050565b5f60208284031215610fbf575f80fd5b610fc882610f1b565b9392505050565b5f8060408385031215610fe0575f80fd5b50508035926020909101359150565b5f8060408385031215611000575f80fd5b61100983610f1b565b91506020830135801515811461101d575f80fd5b809150509250929050565b5f8060408385031215611039575f80fd5b61104283610f1b565b915061105060208401610f1b565b90509250929050565b600181811c9082168061106d57607f821691505b60208210810361108b57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176105d4576105d4611091565b5f826110d657634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156105d4576105d4611091565b808201808211156105d4576105d461109156fea2646970667358221220fd4085495d8134a6c03bd0ff53fe480110e95af54abecd78517ac76918232a4864736f6c634300081a0033

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

0000000000000000000000000000000000000000204fce5e3e250261100000000000000000000000000000006e17c213faba05d6fe7c73f43169d5146858c7da00000000000000000000000055d398326f99059ff775485246999027b3197955

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 10000000000000000000000000000
Arg [1] : _feeWallet (address): 0x6e17C213Faba05d6Fe7C73F43169D5146858C7da
Arg [2] : _usdt (address): 0x55d398326f99059fF775485246999027B3197955

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000204fce5e3e25026110000000
Arg [1] : 0000000000000000000000006e17c213faba05d6fe7c73f43169d5146858c7da
Arg [2] : 00000000000000000000000055d398326f99059ff775485246999027b3197955


Deployed Bytecode Sourcemap

30734:5055:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13079:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15372:190;;;;;;;;;;-1:-1:-1;15372:190:0;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;15372:190:0;920:187:1;30777:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1303:32:1;;;1285:51;;1273:2;1258:18;30777:51:0;1112:230:1;14181:99:0;;;;;;;;;;-1:-1:-1;14260:12:0;;14181:99;;;1493:25:1;;;1481:2;1466:18;14181:99:0;1347:177:1;16140:249:0;;;;;;;;;;-1:-1:-1;16140:249:0;;;;;:::i;:::-;;:::i;30908:22::-;;;;;;;;;;;;;;;;14032:84;;;;;;;;;;-1:-1:-1;14032:84:0;;14106:2;2050:36:1;;2038:2;2023:18;14032:84:0;1908:184:1;32204:89:0;;;;;;;;;;-1:-1:-1;32204:89:0;;;;;:::i;:::-;;:::i;:::-;;30880:21;;;;;;;;;;;;;;;;30835:38;;;;;;;;;;;;;;;34003:126;;;;;;;;;;-1:-1:-1;34003:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;34093:28:0;34069:4;34093:28;;;:19;:28;;;;;;;;;34003:126;32470:111;;;;;;;;;;-1:-1:-1;32470:111:0;;;;;:::i;:::-;;:::i;35361:425::-;;;;;;;;;;;;;:::i;32752:121::-;;;;;;;;;;-1:-1:-1;32752:121:0;;;;;:::i;:::-;;:::i;14343:118::-;;;;;;;;;;-1:-1:-1;14343:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14435:18:0;14408:7;14435:18;;;;;;;;;;;;14343:118;24726:103;;;;;;;;;;;;;:::i;32301:161::-;;;;;;;;;;-1:-1:-1;32301:161:0;;;;;:::i;:::-;;:::i;24051:87::-;;;;;;;;;;-1:-1:-1;24124:6:0;;-1:-1:-1;;;;;24124:6:0;24051:87;;13289:95;;;;;;;;;;;;;:::i;33439:360::-;;;;;;;;;;-1:-1:-1;33439:360:0;;;;;:::i;:::-;;:::i;14666:182::-;;;;;;;;;;-1:-1:-1;14666:182:0;;;;;:::i;:::-;;:::i;31084:57::-;;;;;;;;;;-1:-1:-1;31084:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33121:128;;;;;;;;;;-1:-1:-1;33121:128:0;;;;;:::i;:::-;;:::i;14911:142::-;;;;;;;;;;-1:-1:-1;14911:142:0;;;;;:::i;:::-;-1:-1:-1;;;;;15018:18:0;;;14991:7;15018:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14911:142;30937:24;;;;;;;;;;-1:-1:-1;30937:24:0;;;;-1:-1:-1;;;;;30937:24:0;;;24984:220;;;;;;;;;;-1:-1:-1;24984:220:0;;;;;:::i;:::-;;:::i;13079:91::-;13124:13;13157:5;13150:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13079:91;:::o;15372:190::-;15445:4;4224:10;15501:31;4224:10;15517:7;15526:5;15501:8;:31::i;:::-;15550:4;15543:11;;;15372:190;;;;;:::o;16140:249::-;16227:4;4224:10;16285:37;16301:4;4224:10;16316:5;16285:15;:37::i;:::-;16333:26;16343:4;16349:2;16353:5;16333:9;:26::i;:::-;-1:-1:-1;16377:4:0;;16140:249;-1:-1:-1;;;;16140:249:0:o;32204:89::-;32259:26;4224:10;32279:5;32259;:26::i;:::-;32204:89;:::o;32470:111::-;23937:13;:11;:13::i;:::-;32545:28:::1;32562:10;32545:16;:28::i;35361:425::-:0;23937:13;:11;:13::i;:::-;35452:4:::1;35416:15;14435:18:::0;;;;;;;;;;;35473:11;;35469:89:::1;;35501:45;35519:4;35526:10;35538:7;35501:9;:45::i;:::-;35589:21;35625:14:::0;;35621:158:::1;;35675:38;::::0;35657:12:::1;::::0;35675:10:::1;::::0;35698;;35657:12;35675:38;35657:12;35675:38;35698:10;35675;:38:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35656:57;;;35736:7;35728:39;;;::::0;-1:-1:-1;;;35728:39:0;;4492:2:1;35728:39:0::1;::::0;::::1;4474:21:1::0;4531:2;4511:18;;;4504:30;-1:-1:-1;;;4550:18:1;;;4543:49;4609:18;;35728:39:0::1;;;;;;;;;35641:138;35621:158;35405:381;;35361:425::o:0;32752:121::-;23937:13;:11;:13::i;:::-;32835:30:::1;32847:7;32856:8;32835:11;:30::i;24726:103::-:0;23937:13;:11;:13::i;:::-;24791:30:::1;24818:1;24791:18;:30::i;:::-;24726:103::o:0;32301:161::-;32377:45;32393:7;4224:10;32416:5;32377:15;:45::i;:::-;32433:21;32439:7;32448:5;32433;:21::i;13289:95::-;13336:13;13369:7;13362:14;;;;;:::i;33439:360::-;23937:13;:11;:13::i;:::-;33585::::1;-1:-1:-1::0;;;;;33577:21:0::1;:4;-1:-1:-1::0;;;;;33577:21:0::1;::::0;33555:128:::1;;;::::0;-1:-1:-1;;;33555:128:0;;4840:2:1;33555:128:0::1;::::0;::::1;4822:21:1::0;4879:2;4859:18;;;4852:30;4918:34;4898:18;;;4891:62;4989:27;4969:18;;;4962:55;5034:19;;33555:128:0::1;4638:421:1::0;33555:128:0::1;-1:-1:-1::0;;;;;33702:18:0;::::1;33694:43;;;::::0;-1:-1:-1;;;33694:43:0;;5266:2:1;33694:43:0::1;::::0;::::1;5248:21:1::0;5305:2;5285:18;;;5278:30;-1:-1:-1;;;5324:18:1;;;5317:42;5376:18;;33694:43:0::1;5064:336:1::0;33694:43:0::1;33750:41;33779:4;33785:5;33750:28;:41::i;14666:182::-:0;14735:4;4224:10;14791:27;4224:10;14808:2;14812:5;14791:9;:27::i;33121:128::-;23937:13;:11;:13::i;:::-;33206:35:::1;33223:7;33232:8;33206:16;:35::i;24984:220::-:0;23937:13;:11;:13::i;:::-;-1:-1:-1;;;;;25069:22:0;::::1;25065:93;;25115:31;::::0;-1:-1:-1;;;25115:31:0;;25143:1:::1;25115:31;::::0;::::1;1285:51:1::0;1258:18;;25115:31:0::1;1112:230:1::0;25065:93:0::1;25168:28;25187:8;25168:18;:28::i;20199:130::-:0;20284:37;20293:5;20300:7;20309:5;20316:4;20284:8;:37::i;21915:487::-;-1:-1:-1;;;;;15018:18:0;;;22015:24;15018:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22082:37:0;;22078:317;;22159:5;22140:16;:24;22136:132;;;22192:60;;-1:-1:-1;;;22192:60:0;;-1:-1:-1;;;;;5625:32:1;;22192:60:0;;;5607:51:1;5674:18;;;5667:34;;;5717:18;;;5710:34;;;5580:18;;22192:60:0;5405:345:1;22136:132:0;22311:57;22320:5;22327:7;22355:5;22336:16;:24;22362:5;22311:8;:57::i;:::-;22004:398;21915:487;;;:::o;16774:308::-;-1:-1:-1;;;;;16858:18:0;;16854:88;;16900:30;;-1:-1:-1;;;16900:30:0;;16927:1;16900:30;;;1285:51:1;1258:18;;16900:30:0;1112:230:1;16854:88:0;-1:-1:-1;;;;;16956:16:0;;16952:88;;16996:32;;-1:-1:-1;;;16996:32:0;;17025:1;16996:32;;;1285:51:1;1258:18;;16996:32:0;1112:230:1;16952:88:0;17050:24;17058:4;17064:2;17068:5;17050:7;:24::i;19435:211::-;-1:-1:-1;;;;;19506:21:0;;19502:91;;19551:30;;-1:-1:-1;;;19551:30:0;;19578:1;19551:30;;;1285:51:1;1258:18;;19551:30:0;1112:230:1;19502:91:0;19603:35;19611:7;19628:1;19632:5;19603:7;:35::i;24216:166::-;24124:6;;-1:-1:-1;;;;;24124:6:0;4224:10;24276:23;24272:103;;24323:40;;-1:-1:-1;;;24323:40:0;;4224:10;24323:40;;;1285:51:1;1258:18;;24323:40:0;1112:230:1;32589:155:0;-1:-1:-1;;;;;32662:24:0;;32654:49;;;;-1:-1:-1;;;32654:49:0;;5266:2:1;32654:49:0;;;5248:21:1;5305:2;5285:18;;;5278:30;-1:-1:-1;;;5324:18:1;;;5317:42;5376:18;;32654:49:0;5064:336:1;32654:49:0;32714:9;:22;;-1:-1:-1;;;;;;32714:22:0;-1:-1:-1;;;;;32714:22:0;;;;;;;;;;32589:155::o;32881:232::-;32975:5;32964:7;:16;;:37;;;;;32996:5;32984:8;:17;;32964:37;32956:62;;;;-1:-1:-1;;;32956:62:0;;5957:2:1;32956:62:0;;;5939:21:1;5996:2;5976:18;;;5969:30;-1:-1:-1;;;6015:18:1;;;6008:42;6067:18;;32956:62:0;5755:336:1;32956:62:0;33060:6;:16;;;;33087:7;:18;32881:232::o;25364:191::-;25457:6;;;-1:-1:-1;;;;;25474:17:0;;;-1:-1:-1;;;;;;25474:17:0;;;;;;;25507:40;;25457:6;;;25474:17;25457:6;;25507:40;;25438:16;;25507:40;25427:128;25364:191;:::o;33807:188::-;-1:-1:-1;;;;;33890:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;33890:39:0;;;;;;;;;;33947:40;;33890:39;;:31;33947:40;;;33807:188;;:::o;33257:174::-;-1:-1:-1;;;;;33334:28:0;;;;;;:19;:28;;;;;;;;;:39;;-1:-1:-1;;33334:39:0;;;;;;;;;;33389:34;;1060:41:1;;;33389:34:0;;1033:18:1;33389:34:0;;;;;;;33257:174;;:::o;21180:443::-;-1:-1:-1;;;;;21293:19:0;;21289:91;;21336:32;;-1:-1:-1;;;21336:32:0;;21365:1;21336:32;;;1285:51:1;1258:18;;21336:32:0;1112:230:1;21289:91:0;-1:-1:-1;;;;;21394:21:0;;21390:92;;21439:31;;-1:-1:-1;;;21439:31:0;;21467:1;21439:31;;;1285:51:1;1258:18;;21439:31:0;1112:230:1;21390:92:0;-1:-1:-1;;;;;21492:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21538:78;;;;21589:7;-1:-1:-1;;;;;21573:31:0;21582:5;-1:-1:-1;;;;;21573:31:0;;21598:5;21573:31;;;;1493:25:1;;1481:2;1466:18;;1347:177;21573:31:0;;;;;;;;21180:443;;;;:::o;34137:1214::-;-1:-1:-1;;;;;34263:20:0;;;;:42;;-1:-1:-1;;;;;;34287:18:0;;;34263:42;34259:127;;;34322:31;34336:4;34342:2;34346:6;34322:13;:31::i;34259:127::-;34402:6;34412:1;34402:11;34398:91;;34430:26;34444:4;34450:2;34454:1;34430:13;:26::i;34398:91::-;-1:-1:-1;;;;;34622:25:0;;34501:12;34622:25;;;:19;:25;;;;;;34516:4;;34622:25;;;:52;;-1:-1:-1;;;;;;34651:23:0;;;;;;:19;:23;;;;;;;;34622:52;34618:100;;;-1:-1:-1;34701:5:0;34618:100;34730:11;34834:7;34830:470;;;-1:-1:-1;;;;;34886:29:0;;;;;;:25;:29;;;;;;;;:44;;;;;34929:1;34919:7;;:11;34886:44;34882:278;;;34978:6;34967:7;;34958:6;:16;;;;:::i;:::-;34957:27;;;;:::i;:::-;34951:33;;34882:278;;;-1:-1:-1;;;;;35046:31:0;;;;;;:25;:31;;;;;;;;:45;;;;;35090:1;35081:6;;:10;35046:45;35042:118;;;35138:6;35128;;35119;:15;;;;:::i;:::-;35118:26;;;;:::i;:::-;35112:32;;35042:118;35180:7;;35176:83;;35228:9;;35208:35;;35222:4;;-1:-1:-1;;;;;35228:9:0;35239:3;35208:13;:35::i;:::-;35275:13;35285:3;35275:13;;:::i;:::-;;;34830:470;35312:31;35326:4;35332:2;35336:6;35312:13;:31::i;:::-;34248:1103;;34137:1214;;;:::o;17406:1135::-;-1:-1:-1;;;;;17496:18:0;;17492:552;;17650:5;17634:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17492:552:0;;-1:-1:-1;17492:552:0;;-1:-1:-1;;;;;17710:15:0;;17688:19;17710:15;;;;;;;;;;;17744:19;;;17740:117;;;17791:50;;-1:-1:-1;;;17791:50:0;;-1:-1:-1;;;;;5625:32:1;;17791:50:0;;;5607:51:1;5674:18;;;5667:34;;;5717:18;;;5710:34;;;5580:18;;17791:50:0;5405:345:1;17740:117:0;-1:-1:-1;;;;;17980:15:0;;:9;:15;;;;;;;;;;17998:19;;;;17980:37;;17492:552;-1:-1:-1;;;;;18060:16:0;;18056:435;;18226:12;:21;;;;;;;18056:435;;;-1:-1:-1;;;;;18442:13:0;;:9;:13;;;;;;;;;;:22;;;;;;18056:435;18523:2;-1:-1:-1;;;;;18508:25:0;18517:4;-1:-1:-1;;;;;18508:25:0;;18527:5;18508:25;;;;1493::1;;1481:2;1466:18;;1347:177;18508:25:0;;;;;;;;17406:1135;;;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1529:374::-;1606:6;1614;1622;1675:2;1663:9;1654:7;1650:23;1646:32;1643:52;;;1691:1;1688;1681:12;1643:52;1714:29;1733:9;1714:29;:::i;:::-;1704:39;;1762:38;1796:2;1785:9;1781:18;1762:38;:::i;:::-;1529:374;;1752:48;;-1:-1:-1;;;1869:2:1;1854:18;;;;1841:32;;1529:374::o;2097:226::-;2156:6;2209:2;2197:9;2188:7;2184:23;2180:32;2177:52;;;2225:1;2222;2215:12;2177:52;-1:-1:-1;2270:23:1;;2097:226;-1:-1:-1;2097:226:1:o;2536:186::-;2595:6;2648:2;2636:9;2627:7;2623:23;2619:32;2616:52;;;2664:1;2661;2654:12;2616:52;2687:29;2706:9;2687:29;:::i;:::-;2677:39;2536:186;-1:-1:-1;;;2536:186:1:o;2727:346::-;2795:6;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;-1:-1:-1;;2917:23:1;;;3037:2;3022:18;;;3009:32;;-1:-1:-1;2727:346:1:o;3078:347::-;3143:6;3151;3204:2;3192:9;3183:7;3179:23;3175:32;3172:52;;;3220:1;3217;3210:12;3172:52;3243:29;3262:9;3243:29;:::i;:::-;3233:39;;3322:2;3311:9;3307:18;3294:32;3369:5;3362:13;3355:21;3348:5;3345:32;3335:60;;3391:1;3388;3381:12;3335:60;3414:5;3404:15;;;3078:347;;;;;:::o;3430:260::-;3498:6;3506;3559:2;3547:9;3538:7;3534:23;3530:32;3527:52;;;3575:1;3572;3565:12;3527:52;3598:29;3617:9;3598:29;:::i;:::-;3588:39;;3646:38;3680:2;3669:9;3665:18;3646:38;:::i;:::-;3636:48;;3430:260;;;;;:::o;3695:380::-;3774:1;3770:12;;;;3817;;;3838:61;;3892:4;3884:6;3880:17;3870:27;;3838:61;3945:2;3937:6;3934:14;3914:18;3911:38;3908:161;;3991:10;3986:3;3982:20;3979:1;3972:31;4026:4;4023:1;4016:15;4054:4;4051:1;4044:15;3908:161;;3695:380;;;:::o;6096:127::-;6157:10;6152:3;6148:20;6145:1;6138:31;6188:4;6185:1;6178:15;6212:4;6209:1;6202:15;6228:168;6301:9;;;6332;;6349:15;;;6343:22;;6329:37;6319:71;;6370:18;;:::i;6401:217::-;6441:1;6467;6457:132;;6511:10;6506:3;6502:20;6499:1;6492:31;6546:4;6543:1;6536:15;6574:4;6571:1;6564:15;6457:132;-1:-1:-1;6603:9:1;;6401:217::o;6623:128::-;6690:9;;;6711:11;;;6708:37;;;6725:18;;:::i;6756:125::-;6821:9;;;6842:10;;;6839:36;;;6855:18;;:::i

Swarm Source

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