ETH Price: $1,914.85 (-1.45%)
 

Overview

Max Total Supply

1,000,000,000 PCGAMEFI

Holders

218

Transfers

-
39 ( 85.71%)

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
PCGAMEFIToken

Compiler Version
v0.8.30+commit.73712a01

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/*
    PCGAMEFI
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;

import {ERC20} from"@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {IUniswapV2Router02} from "./IUniswapV2Router.sol";
import {IUniswapV2Factory} from "./IUniswapV2Factory.sol";

contract PCGAMEFIToken is ERC20, Ownable {
    error TaxExceedsMaximum();
    error ZeroAddress();
    error SwapAmountTooLow();
    error ETHTransferFailed();

    uint256 public constant MAX_FEE = 10**4 / 4; // 25%

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    address public taxCollectionWallet;

    bool inSwap;
    bool public swapEnabled;
    bool public tradingTaxEnabled;

    uint256 public swapTokensAtAmount;
    uint256 public buyTax;
    uint256 public sellTax;

    mapping(address => bool) private _isExcludedFromFee;

    event SwapTokensAtAmountUpdated(uint256 amount);
    event OwnerTaxSwapped(uint256 tokensSwapped, uint256 ethReceived);

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

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 totalSupply_,
        address router_,
        uint16 buyTaxBps_,
        uint16 sellTaxBps_,
        address taxWallet_
    ) ERC20(name_, symbol_) Ownable(msg.sender) {
        require(buyTaxBps_ <= MAX_FEE, TaxExceedsMaximum());
        require(sellTaxBps_ <= MAX_FEE, TaxExceedsMaximum());
        require(taxWallet_ != address(0), ZeroAddress());

        _mint(msg.sender, totalSupply_);

        uniswapV2Router = IUniswapV2Router02(router_);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());

        buyTax = buyTaxBps_;
        sellTax = sellTaxBps_;
        taxCollectionWallet = taxWallet_;
        swapTokensAtAmount = 40000 * 10**decimals(); // 40,000 tokens
        swapEnabled = true;
        tradingTaxEnabled = true; // Taxes enabled by default

        // Exclude owner and contract from fees
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[address(this)] = true;
    }

    function setBuyTax(uint16 taxBps) external onlyOwner {
        require(taxBps <= MAX_FEE, TaxExceedsMaximum());
        buyTax = taxBps;
    }

    function setSellTax(uint16 taxBps) external onlyOwner {
        require(taxBps <= MAX_FEE, TaxExceedsMaximum());
        sellTax = taxBps;
    }

    function setSwapTokensAtAmount(uint256 amount) external onlyOwner {
        require(amount >= (totalSupply() * 5) / 10**4, SwapAmountTooLow());
        swapTokensAtAmount = amount;
        emit SwapTokensAtAmountUpdated(amount);
    }

    function setTaxCollectionWallet(address wallet) external onlyOwner {
        require(wallet != address(0), ZeroAddress());
        taxCollectionWallet = wallet;
    }

    function setSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function setTradingTaxEnabled(bool enabled) external onlyOwner {
        tradingTaxEnabled = enabled;
    }

    function excludeFromFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function isExcludedFromFee(address account) external view returns (bool) {
        return _isExcludedFromFee[account];
    }

    receive() external payable {}

    function _update(address from, address to, uint256 amount) internal override {
        // Check if we should swap owner tax for ETH
        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            !inSwap &&
            from != uniswapV2Pair &&
            swapEnabled
        ) {
            swapOwnerTaxForETH(swapTokensAtAmount);
        }

        // Determine if fee should be applied and which fee (buy/sell/none)
        bool takeFee = true;

        // No fee for excluded addresses
        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }

        // Detect buy vs sell vs transfer
        bool isBuy = from == uniswapV2Pair;
        bool isSell = to == uniswapV2Pair;

        uint256 taxAmount = 0;

        // Apply appropriate fees (only if trading tax is enabled)
        if (takeFee && tradingTaxEnabled) {
            if (isBuy) {
                taxAmount = (amount * buyTax) / 10**4;
            } else if (isSell) {
                taxAmount = (amount * sellTax) / 10**4;
            }
        }

        // Execute transfer with tax
        if (taxAmount > 0) {
            uint256 amountAfterTax = amount - taxAmount;
            super._update(from, to, amountAfterTax);
            super._update(from, address(this), taxAmount);
        } else {
            super._update(from, to, amount);
        }
    }

    function swapOwnerTaxForETH(uint256 tokenAmount) private lockTheSwap {
        uint256 initialBalance = address(this).balance;

        swapTokensForEth(tokenAmount);

        uint256 newBalance = address(this).balance - initialBalance;

        (bool success, ) = taxCollectionWallet.call{value: newBalance}("");
        require(success, ETHTransferFailed());

        emit OwnerTaxSwapped(tokenAmount, newBalance);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

}

// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.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 ERC-20
 * applications.
 */
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}.
     *
     * Both 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;
    }

    /// @inheritdoc IERC20
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

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

    /// @inheritdoc IERC20
    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}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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:
     *
     * ```solidity
     * 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);
            }
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity >=0.6.2;

import {IERC20} from "../IERC20.sol";

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)

pragma solidity >=0.4.16;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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);
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"address","name":"router_","type":"address"},{"internalType":"uint16","name":"buyTaxBps_","type":"uint16"},{"internalType":"uint16","name":"sellTaxBps_","type":"uint16"},{"internalType":"address","name":"taxWallet_","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":[],"name":"ETHTransferFailed","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"SwapAmountTooLow","type":"error"},{"inputs":[],"name":"TaxExceedsMaximum","type":"error"},{"inputs":[],"name":"ZeroAddress","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"OwnerTaxSwapped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapTokensAtAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","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":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"taxBps","type":"uint16"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"taxBps","type":"uint16"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setTaxCollectionWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setTradingTaxEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tradingTaxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"stateMutability":"payable","type":"receive"}]

608060405234801561000f575f5ffd5b506040516120fb3803806120fb83398101604081905261002e91610a31565b338787600361003d8382610b62565b50600461004a8282610b62565b5050506001600160a01b03811661007b57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61008481610321565b506109c48361ffff1611156100ac57604051638f29344360e01b815260040160405180910390fd5b6109c48261ffff1611156100d357604051638f29344360e01b815260040160405180910390fd5b6001600160a01b0381166100fa5760405163d92e233d60e01b815260040160405180910390fd5b6101043386610372565b600680546001600160a01b0319166001600160a01b0386169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801561015b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061017f9190610c1c565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101de573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102029190610c1c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561024c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102709190610c1c565b600780546001600160a01b03199081166001600160a01b039384161790915561ffff858116600a558416600b55600880549091169183169190911790556102b5601290565b6102c090600a610d35565b6102cc90619c40610d43565b60095550506008805461ffff60a81b191661010160a81b1790555050335f908152600c6020526040808220805460ff199081166001908117909255308452919092208054909116909117905550610e23915050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03821661039b5760405163ec442f0560e01b81525f6004820152602401610072565b6103a65f83836103aa565b5050565b305f90815260208190526040902054600954811080159081906103d75750600854600160a01b900460ff16155b80156103f157506007546001600160a01b03868116911614155b80156104065750600854600160a81b900460ff165b156104175760095461041790610523565b6001600160a01b0385165f908152600c602052604090205460019060ff168061045757506001600160a01b0385165f908152600c602052604090205460ff165b1561045f57505f5b6007546001600160a01b039081168782168114918716145f83801561048d5750600854600160b01b900460ff165b156104de5782156104ba57612710600a54886104a99190610d43565b6104b39190610d5a565b90506104de565b81156104de57612710600b54886104d19190610d43565b6104db9190610d5a565b90505b801561050d575f6104ef8289610d79565b90506104fc8a8a8361060d565b6105078a308461060d565b50610518565b61051889898961060d565b505050505050505050565b6008805460ff60a01b1916600160a01b1790554761054082610733565b5f61054b8247610d79565b6008546040519192505f916001600160a01b039091169083908381818185875af1925050503d805f811461059a576040519150601f19603f3d011682016040523d82523d5f602084013e61059f565b606091505b50509050806105c15760405163b12d13eb60e01b815260040160405180910390fd5b60408051858152602081018490527fe43fe8454229f9e0c488937ed07ae1345c9a47ab45abe73fecb168efb7655329910160405180910390a150506008805460ff60a01b191690555050565b6001600160a01b038316610637578060025f82825461062c9190610d8c565b909155506106a79050565b6001600160a01b0383165f90815260208190526040902054818110156106895760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610072565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166106c3576002805482900390556106e1565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161072691815260200190565b60405180910390a3505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061076657610766610d9f565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156107bd573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107e19190610c1c565b816001815181106107f4576107f4610d9f565b6001600160a01b03928316602091820292909201015260065461081a9130911684610883565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906108529085905f90869030904290600401610db3565b5f604051808303815f87803b158015610869575f5ffd5b505af115801561087b573d5f5f3e3d5ffd5b505050505050565b6108908383836001610895565b505050565b6001600160a01b0384166108be5760405163e602df0560e01b81525f6004820152602401610072565b6001600160a01b0383166108e757604051634a1406b160e11b81525f6004820152602401610072565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561096257826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161095991815260200190565b60405180910390a35b50505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011261098b575f5ffd5b81516001600160401b038111156109a4576109a4610968565b604051601f8201601f19908116603f011681016001600160401b03811182821017156109d2576109d2610968565b6040528181528382016020018510156109e9575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b80516001600160a01b0381168114610a1b575f5ffd5b919050565b805161ffff81168114610a1b575f5ffd5b5f5f5f5f5f5f5f60e0888a031215610a47575f5ffd5b87516001600160401b03811115610a5c575f5ffd5b610a688a828b0161097c565b60208a015190985090506001600160401b03811115610a85575f5ffd5b610a918a828b0161097c565b96505060408801519450610aa760608901610a05565b9350610ab560808901610a20565b9250610ac360a08901610a20565b9150610ad160c08901610a05565b905092959891949750929550565b600181811c90821680610af357607f821691505b602082108103610b1157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561089057805f5260205f20601f840160051c81016020851015610b3c5750805b601f840160051c820191505b81811015610b5b575f8155600101610b48565b5050505050565b81516001600160401b03811115610b7b57610b7b610968565b610b8f81610b898454610adf565b84610b17565b6020601f821160018114610bc1575f8315610baa5750848201515b5f19600385901b1c1916600184901b178455610b5b565b5f84815260208120601f198516915b82811015610bf05787850151825560209485019460019092019101610bd0565b5084821015610c0d57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215610c2c575f5ffd5b610c3582610a05565b9392505050565b634e487b7160e01b5f52601160045260245ffd5b6001815b6001841115610c8b57808504811115610c6f57610c6f610c3c565b6001841615610c7d57908102905b60019390931c928002610c54565b935093915050565b5f82610ca157506001610d2f565b81610cad57505f610d2f565b8160018114610cc35760028114610ccd57610ce9565b6001915050610d2f565b60ff841115610cde57610cde610c3c565b50506001821b610d2f565b5060208310610133831016604e8410600b8410161715610d0c575081810a610d2f565b610d185f198484610c50565b805f1904821115610d2b57610d2b610c3c565b0290505b92915050565b5f610c3560ff841683610c93565b8082028115828204841417610d2f57610d2f610c3c565b5f82610d7457634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610d2f57610d2f610c3c565b80820180821115610d2f57610d2f610c3c565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b81811015610e035783516001600160a01b0316835260209384019390920191600101610ddc565b50506001600160a01b039590951660608401525050608001529392505050565b6112cb80610e305f395ff3fe6080604052600436106101c8575f3560e01c80639c138b7b116100f2578063d5e2754411610092578063e2f4560511610062578063e2f4560514610547578063ea2f0b371461055c578063f2fde38b1461057b578063f462fe381461059a575f5ffd5b8063d5e27544146104a5578063dd62ed3e146104c5578063de3ac0af14610509578063e01af92c14610528575f5ffd5b8063bc063e1a116100cd578063bc063e1a1461043d578063c3b045e414610452578063cc1776d314610471578063cf7179be14610486575f5ffd5b80639c138b7b146103e0578063a9059cbb146103ff578063afa4f3b21461041e575f5ffd5b806349bd5a5e1161016857806370a082311161013857806370a0823114610367578063715018a61461039b5780638da5cb5b146103af57806395d89b41146103cc575f5ffd5b806349bd5a5e146102dc5780634f7041a5146102fb5780635342acb4146103105780636ddd171314610347575f5ffd5b806318160ddd116101a357806318160ddd1461026357806323b872dd14610281578063313ce567146102a0578063437823ec146102bb575f5ffd5b806306fdde03146101d3578063095ea7b3146101fd5780631694505e1461022c575f5ffd5b366101cf57005b5f5ffd5b3480156101de575f5ffd5b506101e76105b9565b6040516101f49190610fed565b60405180910390f35b348015610208575f5ffd5b5061021c610217366004611036565b610649565b60405190151581526020016101f4565b348015610237575f5ffd5b5060065461024b906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b34801561026e575f5ffd5b506002545b6040519081526020016101f4565b34801561028c575f5ffd5b5061021c61029b366004611060565b610662565b3480156102ab575f5ffd5b50604051601281526020016101f4565b3480156102c6575f5ffd5b506102da6102d536600461109e565b610685565b005b3480156102e7575f5ffd5b5060075461024b906001600160a01b031681565b348015610306575f5ffd5b50610273600a5481565b34801561031b575f5ffd5b5061021c61032a36600461109e565b6001600160a01b03165f908152600c602052604090205460ff1690565b348015610352575f5ffd5b5060085461021c90600160a81b900460ff1681565b348015610372575f5ffd5b5061027361038136600461109e565b6001600160a01b03165f9081526020819052604090205490565b3480156103a6575f5ffd5b506102da6106b0565b3480156103ba575f5ffd5b506005546001600160a01b031661024b565b3480156103d7575f5ffd5b506101e76106c3565b3480156103eb575f5ffd5b506102da6103fa3660046110c0565b6106d2565b34801561040a575f5ffd5b5061021c610419366004611036565b61070a565b348015610429575f5ffd5b506102da6104383660046110e1565b610717565b348015610448575f5ffd5b506102736109c481565b34801561045d575f5ffd5b506102da61046c3660046110c0565b61079b565b34801561047c575f5ffd5b50610273600b5481565b348015610491575f5ffd5b506102da6104a03660046110f8565b6107d3565b3480156104b0575f5ffd5b5060085461021c90600160b01b900460ff1681565b3480156104d0575f5ffd5b506102736104df366004611117565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610514575f5ffd5b506102da61052336600461109e565b6107f9565b348015610533575f5ffd5b506102da6105423660046110f8565b61084a565b348015610552575f5ffd5b5061027360095481565b348015610567575f5ffd5b506102da61057636600461109e565b610870565b348015610586575f5ffd5b506102da61059536600461109e565b610898565b3480156105a5575f5ffd5b5060085461024b906001600160a01b031681565b6060600380546105c89061114e565b80601f01602080910402602001604051908101604052809291908181526020018280546105f49061114e565b801561063f5780601f106106165761010080835404028352916020019161063f565b820191905f5260205f20905b81548152906001019060200180831161062257829003601f168201915b5050505050905090565b5f336106568185856108da565b60019150505b92915050565b5f3361066f8582856108ec565b61067a858585610968565b506001949350505050565b61068d6109c5565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6106b86109c5565b6106c15f6109f2565b565b6060600480546105c89061114e565b6106da6109c5565b6109c48161ffff16111561070157604051638f29344360e01b815260040160405180910390fd5b61ffff16600b55565b5f33610656818585610968565b61071f6109c5565b61271061072b60025490565b61073690600561119a565b61074091906111b1565b8110156107605760405163f570cd7760e01b815260040160405180910390fd5b60098190556040518181527f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b1459060200160405180910390a150565b6107a36109c5565b6109c48161ffff1611156107ca57604051638f29344360e01b815260040160405180910390fd5b61ffff16600a55565b6107db6109c5565b60088054911515600160b01b0260ff60b01b19909216919091179055565b6108016109c5565b6001600160a01b0381166108285760405163d92e233d60e01b815260040160405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6108526109c5565b60088054911515600160a81b0260ff60a81b19909216919091179055565b6108786109c5565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b6108a06109c5565b6001600160a01b0381166108ce57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6108d7816109f2565b50565b6108e78383836001610a43565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610962578181101561095457604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016108c5565b61096284848484035f610a43565b50505050565b6001600160a01b03831661099157604051634b637e8f60e11b81525f60048201526024016108c5565b6001600160a01b0382166109ba5760405163ec442f0560e01b81525f60048201526024016108c5565b6108e7838383610b15565b6005546001600160a01b031633146106c15760405163118cdaa760e01b81523360048201526024016108c5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610a6c5760405163e602df0560e01b81525f60048201526024016108c5565b6001600160a01b038316610a9557604051634a1406b160e11b81525f60048201526024016108c5565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561096257826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b0791815260200190565b60405180910390a350505050565b305f9081526020819052604090205460095481108015908190610b425750600854600160a01b900460ff16155b8015610b5c57506007546001600160a01b03868116911614155b8015610b715750600854600160a81b900460ff165b15610b8157610b81600954610c8d565b6001600160a01b0385165f908152600c602052604090205460019060ff1680610bc157506001600160a01b0385165f908152600c602052604090205460ff165b15610bc957505f5b6007546001600160a01b039081168782168114918716145f838015610bf75750600854600160b01b900460ff165b15610c48578215610c2457612710600a5488610c13919061119a565b610c1d91906111b1565b9050610c48565b8115610c4857612710600b5488610c3b919061119a565b610c4591906111b1565b90505b8015610c77575f610c5982896111d0565b9050610c668a8a83610d77565b610c718a3084610d77565b50610c82565b610c82898989610d77565b505050505050505050565b6008805460ff60a01b1916600160a01b17905547610caa82610e9d565b5f610cb582476111d0565b6008546040519192505f916001600160a01b039091169083908381818185875af1925050503d805f8114610d04576040519150601f19603f3d011682016040523d82523d5f602084013e610d09565b606091505b5050905080610d2b5760405163b12d13eb60e01b815260040160405180910390fd5b60408051858152602081018490527fe43fe8454229f9e0c488937ed07ae1345c9a47ab45abe73fecb168efb7655329910160405180910390a150506008805460ff60a01b191690555050565b6001600160a01b038316610da1578060025f828254610d9691906111e3565b90915550610e119050565b6001600160a01b0383165f9081526020819052604090205481811015610df35760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016108c5565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610e2d57600280548290039055610e4b565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e9091815260200190565b60405180910390a3505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110610ed057610ed06111f6565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610f27573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f4b919061120a565b81600181518110610f5e57610f5e6111f6565b6001600160a01b039283166020918202929092010152600654610f8491309116846108da565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790610fbc9085905f90869030904290600401611225565b5f604051808303815f87803b158015610fd3575f5ffd5b505af1158015610fe5573d5f5f3e3d5ffd5b505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146108d7575f5ffd5b5f5f60408385031215611047575f5ffd5b823561105281611022565b946020939093013593505050565b5f5f5f60608486031215611072575f5ffd5b833561107d81611022565b9250602084013561108d81611022565b929592945050506040919091013590565b5f602082840312156110ae575f5ffd5b81356110b981611022565b9392505050565b5f602082840312156110d0575f5ffd5b813561ffff811681146110b9575f5ffd5b5f602082840312156110f1575f5ffd5b5035919050565b5f60208284031215611108575f5ffd5b813580151581146110b9575f5ffd5b5f5f60408385031215611128575f5ffd5b823561113381611022565b9150602083013561114381611022565b809150509250929050565b600181811c9082168061116257607f821691505b60208210810361118057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761065c5761065c611186565b5f826111cb57634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561065c5761065c611186565b8082018082111561065c5761065c611186565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561121a575f5ffd5b81516110b981611022565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156112755783516001600160a01b031683526020938401939092019160010161124e565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212206c04048fc10def9d9973d9aedf6d5b03ff82d3ae294f8ff1b158eb3bff84707d64736f6c634300081e003300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000fe74b66413f5354175b2c62a58a6ea8cfbb04d230000000000000000000000000000000000000000000000000000000000000008504347414d4546490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008504347414d454649000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c8575f3560e01c80639c138b7b116100f2578063d5e2754411610092578063e2f4560511610062578063e2f4560514610547578063ea2f0b371461055c578063f2fde38b1461057b578063f462fe381461059a575f5ffd5b8063d5e27544146104a5578063dd62ed3e146104c5578063de3ac0af14610509578063e01af92c14610528575f5ffd5b8063bc063e1a116100cd578063bc063e1a1461043d578063c3b045e414610452578063cc1776d314610471578063cf7179be14610486575f5ffd5b80639c138b7b146103e0578063a9059cbb146103ff578063afa4f3b21461041e575f5ffd5b806349bd5a5e1161016857806370a082311161013857806370a0823114610367578063715018a61461039b5780638da5cb5b146103af57806395d89b41146103cc575f5ffd5b806349bd5a5e146102dc5780634f7041a5146102fb5780635342acb4146103105780636ddd171314610347575f5ffd5b806318160ddd116101a357806318160ddd1461026357806323b872dd14610281578063313ce567146102a0578063437823ec146102bb575f5ffd5b806306fdde03146101d3578063095ea7b3146101fd5780631694505e1461022c575f5ffd5b366101cf57005b5f5ffd5b3480156101de575f5ffd5b506101e76105b9565b6040516101f49190610fed565b60405180910390f35b348015610208575f5ffd5b5061021c610217366004611036565b610649565b60405190151581526020016101f4565b348015610237575f5ffd5b5060065461024b906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b34801561026e575f5ffd5b506002545b6040519081526020016101f4565b34801561028c575f5ffd5b5061021c61029b366004611060565b610662565b3480156102ab575f5ffd5b50604051601281526020016101f4565b3480156102c6575f5ffd5b506102da6102d536600461109e565b610685565b005b3480156102e7575f5ffd5b5060075461024b906001600160a01b031681565b348015610306575f5ffd5b50610273600a5481565b34801561031b575f5ffd5b5061021c61032a36600461109e565b6001600160a01b03165f908152600c602052604090205460ff1690565b348015610352575f5ffd5b5060085461021c90600160a81b900460ff1681565b348015610372575f5ffd5b5061027361038136600461109e565b6001600160a01b03165f9081526020819052604090205490565b3480156103a6575f5ffd5b506102da6106b0565b3480156103ba575f5ffd5b506005546001600160a01b031661024b565b3480156103d7575f5ffd5b506101e76106c3565b3480156103eb575f5ffd5b506102da6103fa3660046110c0565b6106d2565b34801561040a575f5ffd5b5061021c610419366004611036565b61070a565b348015610429575f5ffd5b506102da6104383660046110e1565b610717565b348015610448575f5ffd5b506102736109c481565b34801561045d575f5ffd5b506102da61046c3660046110c0565b61079b565b34801561047c575f5ffd5b50610273600b5481565b348015610491575f5ffd5b506102da6104a03660046110f8565b6107d3565b3480156104b0575f5ffd5b5060085461021c90600160b01b900460ff1681565b3480156104d0575f5ffd5b506102736104df366004611117565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610514575f5ffd5b506102da61052336600461109e565b6107f9565b348015610533575f5ffd5b506102da6105423660046110f8565b61084a565b348015610552575f5ffd5b5061027360095481565b348015610567575f5ffd5b506102da61057636600461109e565b610870565b348015610586575f5ffd5b506102da61059536600461109e565b610898565b3480156105a5575f5ffd5b5060085461024b906001600160a01b031681565b6060600380546105c89061114e565b80601f01602080910402602001604051908101604052809291908181526020018280546105f49061114e565b801561063f5780601f106106165761010080835404028352916020019161063f565b820191905f5260205f20905b81548152906001019060200180831161062257829003601f168201915b5050505050905090565b5f336106568185856108da565b60019150505b92915050565b5f3361066f8582856108ec565b61067a858585610968565b506001949350505050565b61068d6109c5565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6106b86109c5565b6106c15f6109f2565b565b6060600480546105c89061114e565b6106da6109c5565b6109c48161ffff16111561070157604051638f29344360e01b815260040160405180910390fd5b61ffff16600b55565b5f33610656818585610968565b61071f6109c5565b61271061072b60025490565b61073690600561119a565b61074091906111b1565b8110156107605760405163f570cd7760e01b815260040160405180910390fd5b60098190556040518181527f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b1459060200160405180910390a150565b6107a36109c5565b6109c48161ffff1611156107ca57604051638f29344360e01b815260040160405180910390fd5b61ffff16600a55565b6107db6109c5565b60088054911515600160b01b0260ff60b01b19909216919091179055565b6108016109c5565b6001600160a01b0381166108285760405163d92e233d60e01b815260040160405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6108526109c5565b60088054911515600160a81b0260ff60a81b19909216919091179055565b6108786109c5565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b6108a06109c5565b6001600160a01b0381166108ce57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6108d7816109f2565b50565b6108e78383836001610a43565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610962578181101561095457604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016108c5565b61096284848484035f610a43565b50505050565b6001600160a01b03831661099157604051634b637e8f60e11b81525f60048201526024016108c5565b6001600160a01b0382166109ba5760405163ec442f0560e01b81525f60048201526024016108c5565b6108e7838383610b15565b6005546001600160a01b031633146106c15760405163118cdaa760e01b81523360048201526024016108c5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610a6c5760405163e602df0560e01b81525f60048201526024016108c5565b6001600160a01b038316610a9557604051634a1406b160e11b81525f60048201526024016108c5565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561096257826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b0791815260200190565b60405180910390a350505050565b305f9081526020819052604090205460095481108015908190610b425750600854600160a01b900460ff16155b8015610b5c57506007546001600160a01b03868116911614155b8015610b715750600854600160a81b900460ff165b15610b8157610b81600954610c8d565b6001600160a01b0385165f908152600c602052604090205460019060ff1680610bc157506001600160a01b0385165f908152600c602052604090205460ff165b15610bc957505f5b6007546001600160a01b039081168782168114918716145f838015610bf75750600854600160b01b900460ff165b15610c48578215610c2457612710600a5488610c13919061119a565b610c1d91906111b1565b9050610c48565b8115610c4857612710600b5488610c3b919061119a565b610c4591906111b1565b90505b8015610c77575f610c5982896111d0565b9050610c668a8a83610d77565b610c718a3084610d77565b50610c82565b610c82898989610d77565b505050505050505050565b6008805460ff60a01b1916600160a01b17905547610caa82610e9d565b5f610cb582476111d0565b6008546040519192505f916001600160a01b039091169083908381818185875af1925050503d805f8114610d04576040519150601f19603f3d011682016040523d82523d5f602084013e610d09565b606091505b5050905080610d2b5760405163b12d13eb60e01b815260040160405180910390fd5b60408051858152602081018490527fe43fe8454229f9e0c488937ed07ae1345c9a47ab45abe73fecb168efb7655329910160405180910390a150506008805460ff60a01b191690555050565b6001600160a01b038316610da1578060025f828254610d9691906111e3565b90915550610e119050565b6001600160a01b0383165f9081526020819052604090205481811015610df35760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016108c5565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610e2d57600280548290039055610e4b565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e9091815260200190565b60405180910390a3505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110610ed057610ed06111f6565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610f27573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f4b919061120a565b81600181518110610f5e57610f5e6111f6565b6001600160a01b039283166020918202929092010152600654610f8491309116846108da565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790610fbc9085905f90869030904290600401611225565b5f604051808303815f87803b158015610fd3575f5ffd5b505af1158015610fe5573d5f5f3e3d5ffd5b505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146108d7575f5ffd5b5f5f60408385031215611047575f5ffd5b823561105281611022565b946020939093013593505050565b5f5f5f60608486031215611072575f5ffd5b833561107d81611022565b9250602084013561108d81611022565b929592945050506040919091013590565b5f602082840312156110ae575f5ffd5b81356110b981611022565b9392505050565b5f602082840312156110d0575f5ffd5b813561ffff811681146110b9575f5ffd5b5f602082840312156110f1575f5ffd5b5035919050565b5f60208284031215611108575f5ffd5b813580151581146110b9575f5ffd5b5f5f60408385031215611128575f5ffd5b823561113381611022565b9150602083013561114381611022565b809150509250929050565b600181811c9082168061116257607f821691505b60208210810361118057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761065c5761065c611186565b5f826111cb57634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561065c5761065c611186565b8082018082111561065c5761065c611186565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561121a575f5ffd5b81516110b981611022565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156112755783516001600160a01b031683526020938401939092019160010161124e565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212206c04048fc10def9d9973d9aedf6d5b03ff82d3ae294f8ff1b158eb3bff84707d64736f6c634300081e0033

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

00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000fe74b66413f5354175b2c62a58a6ea8cfbb04d230000000000000000000000000000000000000000000000000000000000000008504347414d4546490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008504347414d454649000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): PCGAMEFI
Arg [1] : symbol_ (string): PCGAMEFI
Arg [2] : totalSupply_ (uint256): 1000000000000000000000000000
Arg [3] : router_ (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [4] : buyTaxBps_ (uint16): 250
Arg [5] : sellTaxBps_ (uint16): 250
Arg [6] : taxWallet_ (address): 0xfe74B66413f5354175B2C62A58a6eA8cfbB04D23

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [3] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000fa
Arg [5] : 00000000000000000000000000000000000000000000000000000000000000fa
Arg [6] : 000000000000000000000000fe74b66413f5354175b2c62a58a6ea8cfbb04d23
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [8] : 504347414d454649000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [10] : 504347414d454649000000000000000000000000000000000000000000000000


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.