ETH Price: $3,384.36 (+0.55%)
Gas: 4.83 Gwei

Token

ERC20 ***
 

Overview

Max Total Supply

200,000,000 ERC20 ***

Holders

270

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
455,759.874100562164602191 ERC20 ***

Value
$0.00
0x337a852b838a117979a61cd830512f39a62a5fec
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:
NOAI

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 7 : NOAI.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;


import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

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

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

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

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

contract NOAI is Ownable, ERC20 {
    struct AccountInfo {
        bool isLPPool;
        bool isLiquidityHolder;
    }
    mapping(address => AccountInfo) public accountInfo;
    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private constant TOTAL_SUPPLY = 200 * (1e6) * (1e18);
    uint256 public constant DENOMINATOR = 10000; // 100%
    uint256 public constant MAX_BUY_FEE_NUMERATOR = 500; // 5%
    uint256 public constant MAX_SELL_FEE_NUMERATOR = 500; // 5%
    uint256 public maxSellNumerator = 8000; // 80%
    uint256 public maxBuyNumerator = 8000; // 80%

    uint256 public constant MAX_HOLD_AMOUNT = 4 * (1e6) * (1e18); // 4M
    uint256 public constant MAX_SELL_AMOUNT = 1 * (1e6) * (1e18); // 2M
    uint256 public maxBuyAmount = 2 * (1e6) * (1e18); // 2M

    IDexRouter public immutable uniswapV2Router;

    // mainnet
    IDexFactory UNISWAP_FACTORY =
        IDexFactory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); // UNISWAP_FACTORY
    address UNISWAP_V2_ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // uniswapRouter
    address WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; // wrapped ETH

    // Sepolia
    // IDexFactory constant UNISWAP_FACTORY =
    //     IDexFactory(0xB7f907f7A9eBC822a80BD25E224be42Ce0A698A0); // UNISWAP_FACTORY
    // address constant UNISWAP_V2_ROUTER = 0x425141165d3DE9FEC831896C016617a52363b687; // uniswapRouter
    // address constant WETH = 0x7b79995e5f793A07Bc00c21412e50Ecae098E7f9; // wrapped ETH

    address public immutable uniswapV2Pair; // liquidity pool address

    address payable public taxAddress;

    bool public tradingEnabled = false;
    bool private inSwap = false;
    bool private swapEnabled = false;

    /// @notice Emitted when a liquidity pool pair is updated.
    event LPPairSet(address indexed pair, bool enabled);

    /// @notice Emitted when an account is marked or unmarked as a liquidity holder (treasury, staking, etc).
    event LiquidityHolderSet(address indexed account, bool flag);

    event TaxAddressSet(address _taxAddress);
    event BuyFeePaid(address indexed from, address indexed to, uint256 amount);
    event SellFeePaid(address indexed from, address indexed to, uint256 amount);
    event SwapBackResult(uint256 amountIn, uint256 amountOut);
    event EnabledTrading(bool tradingActive);

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

    constructor(
        address _taxAddress
    ) ERC20("NordAI", "$NOAI") Ownable(msg.sender) {
        uniswapV2Pair = UNISWAP_FACTORY.createPair(address(this), WETH);
        IDexRouter _uniswapV2Router = IDexRouter(UNISWAP_V2_ROUTER);
        uniswapV2Router = _uniswapV2Router;

        setLiquidityHolder(msg.sender, true);
        setLiquidityHolder(address(this), true);
        setLiquidityHolder(_taxAddress, true);
        setLiquidityHolder(UNISWAP_V2_ROUTER, true);
        setLiquidityHolder(uniswapV2Pair, true);
        setLiquidityHolder(address(0xdEAD000000000000000042069420694206942069), true);

        setLpPair(uniswapV2Pair, true);
        setTaxAddress(_taxAddress);

        _mint(msg.sender, TOTAL_SUPPLY);
    }

    receive() external payable {}

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uint ethBalanceBeforeSwap = address(this).balance;
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );

        emit SwapBackResult(
            tokenAmount,
            address(this).balance - ethBalanceBeforeSwap
        );
    }

    function sendETHToFee(uint256 amount) private {
       taxAddress.transfer(amount);
    }

    // Setters with onlyOwner

    function toggleMaxSellNumerator() public onlyOwner {
        maxSellNumerator = MAX_SELL_FEE_NUMERATOR;
    }
    function toggleMaxBuyNumerator() public onlyOwner {
        maxBuyNumerator = MAX_BUY_FEE_NUMERATOR;
    }

    function setLpPair(address pair, bool enabled) public onlyOwner {
        accountInfo[pair].isLPPool = enabled;
        emit LPPairSet(pair, enabled);
    }

    function setLiquidityHolder(address account, bool flag) public onlyOwner {
        accountInfo[account].isLiquidityHolder = flag;
        emit LiquidityHolderSet(account, flag);
    }

    function setTaxAddress(address newTaxAddress) public onlyOwner {
        require(newTaxAddress != address(0), "Tax address cannot be zero");
        taxAddress = payable(newTaxAddress);
        setLiquidityHolder(newTaxAddress, true);
        emit TaxAddressSet(newTaxAddress);
    }

    // enable trading
    function enableTrading() external onlyOwner {
        tradingEnabled = true;
        swapEnabled = true;
        emit EnabledTrading(true);
    }

    function _hasLimits(
        AccountInfo memory fromInfo,
        AccountInfo memory toInfo
    ) internal pure returns (bool) {
        return (!fromInfo.isLiquidityHolder || !toInfo.isLiquidityHolder);
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        AccountInfo memory fromInfo = accountInfo[from];
        AccountInfo memory toInfo = accountInfo[to];
        super._update(from, to, amount);
        if (
            !_hasLimits(fromInfo, toInfo) ||
            (fromInfo.isLPPool && toInfo.isLPPool)
        ) {
            return;
        }

        uint256 taxFee = 0;

        if (fromInfo.isLPPool) {
            require(tradingEnabled, "Trading is not enabled!");
            taxFee = (amount * maxBuyNumerator) / DENOMINATOR;
            require(
                amount - taxFee <= maxBuyAmount,
                "Transfer amount exceeds the max buy amount"
            );
            emit BuyFeePaid(from, taxAddress, taxFee);
        } else if (toInfo.isLPPool) {
            require(tradingEnabled, "Trading is not enabled!");
            taxFee = (amount * maxSellNumerator) / DENOMINATOR;
            require(
                amount - taxFee <= MAX_SELL_AMOUNT,
                "Transfer amount exceeds the max sell amount"
            );
            emit SellFeePaid(from, taxAddress, taxFee);
        }
        if (taxFee > 0) {
            super._update(to, taxAddress, taxFee);
        }

        // check max holding amount
        if (!toInfo.isLiquidityHolder) {
            require(
                balanceOf(to) <= MAX_HOLD_AMOUNT,
                "Transfer amount exceeds the max holding amount"
            );
        }
    }

}

File 2 of 7 : Ownable.sol
// 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);
    }
}

File 3 of 7 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @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 4 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.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 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 5 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.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 6 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

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 7 of 7 : Context.sol
// 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;
    }
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_taxAddress","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BuyFeePaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"tradingActive","type":"bool"}],"name":"EnabledTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"LPPairSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"LiquidityHolderSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SellFeePaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountOut","type":"uint256"}],"name":"SwapBackResult","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_taxAddress","type":"address"}],"name":"TaxAddressSet","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":"DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BUY_FEE_NUMERATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_HOLD_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SELL_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SELL_FEE_NUMERATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"accountInfo","outputs":[{"internalType":"bool","name":"isLPPool","type":"bool"},{"internalType":"bool","name":"isLiquidityHolder","type":"bool"}],"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"setLiquidityHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setLpPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTaxAddress","type":"address"}],"name":"setTaxAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMaxBuyNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMaxSellNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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 IDexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052611f40600855611f406009556a01a784379d99db42000000600a55735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600e60146101000a81548160ff0219169083151502179055506000600e60156101000a81548160ff0219169083151502179055506000600e60166101000a81548160ff0219169083151502179055503480156200017c57600080fd5b5060405162003d5538038062003d558339818101604052810190620001a2919062001192565b6040518060400160405280600681526020017f4e6f7264414900000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f244e4f414900000000000000000000000000000000000000000000000000000081525033600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620002845760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200027b9190620011d5565b60405180910390fd5b62000295816200050660201b60201c565b508160049081620002a791906200146c565b508060059081620002b991906200146c565b505050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200033d92919062001553565b6020604051808303816000875af11580156200035d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000383919062001192565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000424336001620005ca60201b60201c565b62000437306001620005ca60201b60201c565b6200044a826001620005ca60201b60201c565b6200047f600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620005ca60201b60201c565b6200049460a0516001620005ca60201b60201c565b620004bb73dead0000000000000000420694206942069420696001620005ca60201b60201c565b620004d060a05160016200068860201b60201c565b620004e1826200074660201b60201c565b620004fe336aa56fa5b99019a5c80000006200085860201b60201c565b505062001a39565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005da620008e560201b60201c565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f37ddb83c57306cf4a7e1d5fd89bd61315769b66997f105b1dc1adef3f1eccf2b826040516200067c91906200159d565b60405180910390a25050565b62000698620008e560201b60201c565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f1d1828d49ecf2fd34a77f1ec24b3098991a6cd7d3733c384719bd155867ad877826040516200073a91906200159d565b60405180910390a25050565b62000756620008e560201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620007c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007bf906200161b565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200081c816001620005ca60201b60201c565b7f08c94e54371efaf317c231c7f5ddefe44ec016b884c58c475117f1d8cd5d60ae816040516200084d9190620011d5565b60405180910390a150565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008cd5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620008c49190620011d5565b60405180910390fd5b620008e1600083836200098760201b60201c565b5050565b620008f562000e5d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200091b62000e6560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000985576200094762000e5d60201b60201c565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016200097c9190620011d5565b60405180910390fd5b565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff16151515158152505090506000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff161515151581525050905062000aa285858562000e8e60201b60201c565b62000ab48282620010c160201b60201c565b158062000ad057508160000151801562000acf575080600001515b5b1562000ade57505062000e58565b600082600001511562000c4257600e60149054906101000a900460ff1662000b3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b34906200168d565b60405180910390fd5b6127106009548562000b509190620016de565b62000b5c919062001758565b9050600a54818562000b6f919062001790565b111562000bb3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000baa9062001841565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f532fcbcddc07ca8480be9b7111dcb7d530d63ae65a68283d808c4016d4fa592a8360405162000c34919062001874565b60405180910390a362000da8565b81600001511562000da757600e60149054906101000a900460ff1662000c9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c96906200168d565b60405180910390fd5b6127106008548562000cb29190620016de565b62000cbe919062001758565b905069d3c21bcecceda1000000818562000cd9919062001790565b111562000d1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d149062001907565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fc46a16a84e30033fd7115642681df05ba5aba3f0e5f93e8966dce06bf841b7828360405162000d9e919062001874565b60405180910390a35b5b600081111562000de85762000de785600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000e8e60201b60201c565b5b816020015162000e54576a034f086f3b33b68400000062000e0f86620010df60201b60201c565b111562000e53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e4a906200199f565b60405180910390fd5b5b5050505b505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000ee457806003600082825462000ed79190620019c1565b9250508190555062000fbc565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000f74578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000f6b93929190620019fc565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001007578060036000828254039250508190555062001055565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620010b4919062001874565b60405180910390a3505050565b600082602001511580620010d757508160200151155b905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200115a826200112d565b9050919050565b6200116c816200114d565b81146200117857600080fd5b50565b6000815190506200118c8162001161565b92915050565b600060208284031215620011ab57620011aa62001128565b5b6000620011bb848285016200117b565b91505092915050565b620011cf816200114d565b82525050565b6000602082019050620011ec6000830184620011c4565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200127457607f821691505b6020821081036200128a57620012896200122c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620012f47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620012b5565b620013008683620012b5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200134d62001347620013418462001318565b62001322565b62001318565b9050919050565b6000819050919050565b62001369836200132c565b62001381620013788262001354565b848454620012c2565b825550505050565b600090565b6200139862001389565b620013a58184846200135e565b505050565b5b81811015620013cd57620013c16000826200138e565b600181019050620013ab565b5050565b601f8211156200141c57620013e68162001290565b620013f184620012a5565b8101602085101562001401578190505b620014196200141085620012a5565b830182620013aa565b50505b505050565b600082821c905092915050565b6000620014416000198460080262001421565b1980831691505092915050565b60006200145c83836200142e565b9150826002028217905092915050565b6200147782620011f2565b67ffffffffffffffff811115620014935762001492620011fd565b5b6200149f82546200125b565b620014ac828285620013d1565b600060209050601f831160018114620014e45760008415620014cf578287015190505b620014db85826200144e565b8655506200154b565b601f198416620014f48662001290565b60005b828110156200151e57848901518255600182019150602085019450602081019050620014f7565b868310156200153e57848901516200153a601f8916826200142e565b8355505b6001600288020188555050505b505050505050565b60006040820190506200156a6000830185620011c4565b620015796020830184620011c4565b9392505050565b60008115159050919050565b620015978162001580565b82525050565b6000602082019050620015b460008301846200158c565b92915050565b600082825260208201905092915050565b7f54617820616464726573732063616e6e6f74206265207a65726f000000000000600082015250565b600062001603601a83620015ba565b91506200161082620015cb565b602082019050919050565b600060208201905081810360008301526200163681620015f4565b9050919050565b7f54726164696e67206973206e6f7420656e61626c656421000000000000000000600082015250565b600062001675601783620015ba565b915062001682826200163d565b602082019050919050565b60006020820190508181036000830152620016a88162001666565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620016eb8262001318565b9150620016f88362001318565b9250828202620017088162001318565b91508282048414831517620017225762001721620016af565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620017658262001318565b9150620017728362001318565b92508262001785576200178462001729565b5b828204905092915050565b60006200179d8262001318565b9150620017aa8362001318565b9250828203905081811115620017c557620017c4620016af565b5b92915050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61782060008201527f62757920616d6f756e7400000000000000000000000000000000000000000000602082015250565b600062001829602a83620015ba565b91506200183682620017cb565b604082019050919050565b600060208201905081810360008301526200185c816200181a565b9050919050565b6200186e8162001318565b82525050565b60006020820190506200188b600083018462001863565b92915050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61782060008201527f73656c6c20616d6f756e74000000000000000000000000000000000000000000602082015250565b6000620018ef602b83620015ba565b9150620018fc8262001891565b604082019050919050565b600060208201905081810360008301526200192281620018e0565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61782060008201527f686f6c64696e6720616d6f756e74000000000000000000000000000000000000602082015250565b600062001987602e83620015ba565b9150620019948262001929565b604082019050919050565b60006020820190508181036000830152620019ba8162001978565b9050919050565b6000620019ce8262001318565b9150620019db8362001318565b9250828201905080821115620019f657620019f5620016af565b5b92915050565b600060608201905062001a136000830186620011c4565b62001a22602083018562001863565b62001a31604083018462001863565b949350505050565b60805160a0516122f662001a5f6000396000610864015260006107f801526122f66000f3fe6080604052600436106101dc5760003560e01c80638a8c523c11610102578063a4b1a28711610095578063db0e1bdf11610064578063db0e1bdf1461068a578063dd62ed3e146106b5578063e884d56e146106f2578063f2fde38b14610709576101e3565b8063a4b1a287146105cd578063a7310b58146105e4578063a9059cbb14610622578063b7bda68f1461065f576101e3565b8063918f8674116100d1578063918f86741461052357806395d89b411461054e5780639897baa014610579578063a1883d26146105a4576101e3565b80638a8c523c1461048b5780638da5cb5b146104a25780638f3b957f146104cd578063911d32c1146104f8576101e3565b8063313ce5671161017a578063715018a611610149578063715018a6146103f7578063719f75c51461040e57806380c581d11461043757806388e765ff14610460576101e3565b8063313ce5671461033957806349bd5a5e146103645780634ada218b1461038f57806370a08231146103ba576101e3565b80631694505e116101b65780631694505e1461027b57806318160ddd146102a65780631ff32a6e146102d157806323b872dd146102fc576101e3565b806306fdde03146101e8578063091f845414610213578063095ea7b31461023e576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd610732565b60405161020a9190611a9b565b60405180910390f35b34801561021f57600080fd5b506102286107c4565b6040516102359190611ad6565b60405180910390f35b34801561024a57600080fd5b5061026560048036038101906102609190611b80565b6107d3565b6040516102729190611bdb565b60405180910390f35b34801561028757600080fd5b506102906107f6565b60405161029d9190611c55565b60405180910390f35b3480156102b257600080fd5b506102bb61081a565b6040516102c89190611ad6565b60405180910390f35b3480156102dd57600080fd5b506102e6610824565b6040516102f39190611ad6565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190611c70565b61082a565b6040516103309190611bdb565b60405180910390f35b34801561034557600080fd5b5061034e610859565b60405161035b9190611cdf565b60405180910390f35b34801561037057600080fd5b50610379610862565b6040516103869190611d09565b60405180910390f35b34801561039b57600080fd5b506103a4610886565b6040516103b19190611bdb565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190611d24565b610899565b6040516103ee9190611ad6565b60405180910390f35b34801561040357600080fd5b5061040c6108e2565b005b34801561041a57600080fd5b5061043560048036038101906104309190611d7d565b6108f6565b005b34801561044357600080fd5b5061045e60048036038101906104599190611d7d565b6109aa565b005b34801561046c57600080fd5b50610475610a5e565b6040516104829190611ad6565b60405180910390f35b34801561049757600080fd5b506104a0610a64565b005b3480156104ae57600080fd5b506104b7610adc565b6040516104c49190611d09565b60405180910390f35b3480156104d957600080fd5b506104e2610b05565b6040516104ef9190611ad6565b60405180910390f35b34801561050457600080fd5b5061050d610b0b565b60405161051a9190611ad6565b60405180910390f35b34801561052f57600080fd5b50610538610b11565b6040516105459190611ad6565b60405180910390f35b34801561055a57600080fd5b50610563610b17565b6040516105709190611a9b565b60405180910390f35b34801561058557600080fd5b5061058e610ba9565b60405161059b9190611ad6565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c69190611d24565b610baf565b005b3480156105d957600080fd5b506105e2610cac565b005b3480156105f057600080fd5b5061060b60048036038101906106069190611d24565b610cbf565b604051610619929190611dbd565b60405180910390f35b34801561062e57600080fd5b5061064960048036038101906106449190611b80565b610cfd565b6040516106569190611bdb565b60405180910390f35b34801561066b57600080fd5b50610674610d20565b6040516106819190611e07565b60405180910390f35b34801561069657600080fd5b5061069f610d46565b6040516106ac9190611ad6565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190611e22565b610d54565b6040516106e99190611ad6565b60405180910390f35b3480156106fe57600080fd5b50610707610ddb565b005b34801561071557600080fd5b50610730600480360381019061072b9190611d24565b610dee565b005b60606004805461074190611e91565b80601f016020809104026020016040519081016040528092919081815260200182805461076d90611e91565b80156107ba5780601f1061078f576101008083540402835291602001916107ba565b820191906000526020600020905b81548152906001019060200180831161079d57829003601f168201915b5050505050905090565b6a034f086f3b33b68400000081565b6000806107de610e74565b90506107eb818585610e7c565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600354905090565b6101f481565b600080610835610e74565b9050610842858285610e8e565b61084d858585610f22565b60019150509392505050565b60006012905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600e60149054906101000a900460ff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108ea611016565b6108f4600061109d565b565b6108fe611016565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f37ddb83c57306cf4a7e1d5fd89bd61315769b66997f105b1dc1adef3f1eccf2b8260405161099e9190611bdb565b60405180910390a25050565b6109b2611016565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f1d1828d49ecf2fd34a77f1ec24b3098991a6cd7d3733c384719bd155867ad87782604051610a529190611bdb565b60405180910390a25050565b600a5481565b610a6c611016565b6001600e60146101000a81548160ff0219169083151502179055506001600e60166101000a81548160ff0219169083151502179055507fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe520896001604051610ad29190611bdb565b60405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6101f481565b60085481565b61271081565b606060058054610b2690611e91565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5290611e91565b8015610b9f5780601f10610b7457610100808354040283529160200191610b9f565b820191906000526020600020905b815481529060010190602001808311610b8257829003601f168201915b5050505050905090565b60095481565b610bb7611016565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90611f0e565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610c728160016108f6565b7f08c94e54371efaf317c231c7f5ddefe44ec016b884c58c475117f1d8cd5d60ae81604051610ca19190611d09565b60405180910390a150565b610cb4611016565b6101f4600981905550565b60066020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16905082565b600080610d08610e74565b9050610d15818585610f22565b600191505092915050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b69d3c21bcecceda100000081565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610de3611016565b6101f4600881905550565b610df6611016565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e685760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e5f9190611d09565b60405180910390fd5b610e718161109d565b50565b600033905090565b610e898383836001611161565b505050565b6000610e9a8484610d54565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f1c5781811015610f0c578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610f0393929190611f2e565b60405180910390fd5b610f1b84848484036000611161565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f945760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f8b9190611d09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110065760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ffd9190611d09565b60405180910390fd5b611011838383611338565b505050565b61101e610e74565b73ffffffffffffffffffffffffffffffffffffffff1661103c610adc565b73ffffffffffffffffffffffffffffffffffffffff161461109b5761105f610e74565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110929190611d09565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036111d35760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016111ca9190611d09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112455760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161123c9190611d09565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611332578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516113299190611ad6565b60405180910390a35b50505050565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff16151515158152505090506000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff161515151581525050905061144b8585856117c6565b61145582826119ee565b158061146f57508160000151801561146e575080600001515b5b1561147b5750506117c1565b60008260000151156115cf57600e60149054906101000a900460ff166114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd90611fb1565b60405180910390fd5b612710600954856114e79190612000565b6114f19190612071565b9050600a54818561150291906120a2565b1115611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90612148565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f532fcbcddc07ca8480be9b7111dcb7d530d63ae65a68283d808c4016d4fa592a836040516115c29190611ad6565b60405180910390a3611726565b81600001511561172557600e60149054906101000a900460ff16611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f90611fb1565b60405180910390fd5b612710600854856116399190612000565b6116439190612071565b905069d3c21bcecceda1000000818561165c91906120a2565b111561169d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611694906121da565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fc46a16a84e30033fd7115642681df05ba5aba3f0e5f93e8966dce06bf841b7828360405161171c9190611ad6565b60405180910390a35b5b600081111561175d5761175c85600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836117c6565b5b81602001516117bd576a034f086f3b33b68400000061177b86610899565b11156117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b39061226c565b60405180910390fd5b5b5050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361181857806003600082825461180c919061228c565b925050819055506118ed565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118a5578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161189c93929190611f2e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119365780600360008282540392505081905550611984565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119e19190611ad6565b60405180910390a3505050565b600082602001511580611a0357508160200151155b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a45578082015181840152602081019050611a2a565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a6d82611a0b565b611a778185611a16565b9350611a87818560208601611a27565b611a9081611a51565b840191505092915050565b60006020820190508181036000830152611ab58184611a62565b905092915050565b6000819050919050565b611ad081611abd565b82525050565b6000602082019050611aeb6000830184611ac7565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b2182611af6565b9050919050565b611b3181611b16565b8114611b3c57600080fd5b50565b600081359050611b4e81611b28565b92915050565b611b5d81611abd565b8114611b6857600080fd5b50565b600081359050611b7a81611b54565b92915050565b60008060408385031215611b9757611b96611af1565b5b6000611ba585828601611b3f565b9250506020611bb685828601611b6b565b9150509250929050565b60008115159050919050565b611bd581611bc0565b82525050565b6000602082019050611bf06000830184611bcc565b92915050565b6000819050919050565b6000611c1b611c16611c1184611af6565b611bf6565b611af6565b9050919050565b6000611c2d82611c00565b9050919050565b6000611c3f82611c22565b9050919050565b611c4f81611c34565b82525050565b6000602082019050611c6a6000830184611c46565b92915050565b600080600060608486031215611c8957611c88611af1565b5b6000611c9786828701611b3f565b9350506020611ca886828701611b3f565b9250506040611cb986828701611b6b565b9150509250925092565b600060ff82169050919050565b611cd981611cc3565b82525050565b6000602082019050611cf46000830184611cd0565b92915050565b611d0381611b16565b82525050565b6000602082019050611d1e6000830184611cfa565b92915050565b600060208284031215611d3a57611d39611af1565b5b6000611d4884828501611b3f565b91505092915050565b611d5a81611bc0565b8114611d6557600080fd5b50565b600081359050611d7781611d51565b92915050565b60008060408385031215611d9457611d93611af1565b5b6000611da285828601611b3f565b9250506020611db385828601611d68565b9150509250929050565b6000604082019050611dd26000830185611bcc565b611ddf6020830184611bcc565b9392505050565b6000611df182611af6565b9050919050565b611e0181611de6565b82525050565b6000602082019050611e1c6000830184611df8565b92915050565b60008060408385031215611e3957611e38611af1565b5b6000611e4785828601611b3f565b9250506020611e5885828601611b3f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ea957607f821691505b602082108103611ebc57611ebb611e62565b5b50919050565b7f54617820616464726573732063616e6e6f74206265207a65726f000000000000600082015250565b6000611ef8601a83611a16565b9150611f0382611ec2565b602082019050919050565b60006020820190508181036000830152611f2781611eeb565b9050919050565b6000606082019050611f436000830186611cfa565b611f506020830185611ac7565b611f5d6040830184611ac7565b949350505050565b7f54726164696e67206973206e6f7420656e61626c656421000000000000000000600082015250565b6000611f9b601783611a16565b9150611fa682611f65565b602082019050919050565b60006020820190508181036000830152611fca81611f8e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061200b82611abd565b915061201683611abd565b925082820261202481611abd565b9150828204841483151761203b5761203a611fd1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061207c82611abd565b915061208783611abd565b92508261209757612096612042565b5b828204905092915050565b60006120ad82611abd565b91506120b883611abd565b92508282039050818111156120d0576120cf611fd1565b5b92915050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61782060008201527f62757920616d6f756e7400000000000000000000000000000000000000000000602082015250565b6000612132602a83611a16565b915061213d826120d6565b604082019050919050565b6000602082019050818103600083015261216181612125565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61782060008201527f73656c6c20616d6f756e74000000000000000000000000000000000000000000602082015250565b60006121c4602b83611a16565b91506121cf82612168565b604082019050919050565b600060208201905081810360008301526121f3816121b7565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61782060008201527f686f6c64696e6720616d6f756e74000000000000000000000000000000000000602082015250565b6000612256602e83611a16565b9150612261826121fa565b604082019050919050565b6000602082019050818103600083015261228581612249565b9050919050565b600061229782611abd565b91506122a283611abd565b92508282019050808211156122ba576122b9611fd1565b5b9291505056fea264697066735822122035d04d44cd503e4275b4b33371216ef949c3e297ddecbb5db7d700fd44d9ea0d64736f6c63430008180033000000000000000000000000246505a78c07977f08ba261a52aadbaa981606f0

Deployed Bytecode

0x6080604052600436106101dc5760003560e01c80638a8c523c11610102578063a4b1a28711610095578063db0e1bdf11610064578063db0e1bdf1461068a578063dd62ed3e146106b5578063e884d56e146106f2578063f2fde38b14610709576101e3565b8063a4b1a287146105cd578063a7310b58146105e4578063a9059cbb14610622578063b7bda68f1461065f576101e3565b8063918f8674116100d1578063918f86741461052357806395d89b411461054e5780639897baa014610579578063a1883d26146105a4576101e3565b80638a8c523c1461048b5780638da5cb5b146104a25780638f3b957f146104cd578063911d32c1146104f8576101e3565b8063313ce5671161017a578063715018a611610149578063715018a6146103f7578063719f75c51461040e57806380c581d11461043757806388e765ff14610460576101e3565b8063313ce5671461033957806349bd5a5e146103645780634ada218b1461038f57806370a08231146103ba576101e3565b80631694505e116101b65780631694505e1461027b57806318160ddd146102a65780631ff32a6e146102d157806323b872dd146102fc576101e3565b806306fdde03146101e8578063091f845414610213578063095ea7b31461023e576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd610732565b60405161020a9190611a9b565b60405180910390f35b34801561021f57600080fd5b506102286107c4565b6040516102359190611ad6565b60405180910390f35b34801561024a57600080fd5b5061026560048036038101906102609190611b80565b6107d3565b6040516102729190611bdb565b60405180910390f35b34801561028757600080fd5b506102906107f6565b60405161029d9190611c55565b60405180910390f35b3480156102b257600080fd5b506102bb61081a565b6040516102c89190611ad6565b60405180910390f35b3480156102dd57600080fd5b506102e6610824565b6040516102f39190611ad6565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190611c70565b61082a565b6040516103309190611bdb565b60405180910390f35b34801561034557600080fd5b5061034e610859565b60405161035b9190611cdf565b60405180910390f35b34801561037057600080fd5b50610379610862565b6040516103869190611d09565b60405180910390f35b34801561039b57600080fd5b506103a4610886565b6040516103b19190611bdb565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190611d24565b610899565b6040516103ee9190611ad6565b60405180910390f35b34801561040357600080fd5b5061040c6108e2565b005b34801561041a57600080fd5b5061043560048036038101906104309190611d7d565b6108f6565b005b34801561044357600080fd5b5061045e60048036038101906104599190611d7d565b6109aa565b005b34801561046c57600080fd5b50610475610a5e565b6040516104829190611ad6565b60405180910390f35b34801561049757600080fd5b506104a0610a64565b005b3480156104ae57600080fd5b506104b7610adc565b6040516104c49190611d09565b60405180910390f35b3480156104d957600080fd5b506104e2610b05565b6040516104ef9190611ad6565b60405180910390f35b34801561050457600080fd5b5061050d610b0b565b60405161051a9190611ad6565b60405180910390f35b34801561052f57600080fd5b50610538610b11565b6040516105459190611ad6565b60405180910390f35b34801561055a57600080fd5b50610563610b17565b6040516105709190611a9b565b60405180910390f35b34801561058557600080fd5b5061058e610ba9565b60405161059b9190611ad6565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c69190611d24565b610baf565b005b3480156105d957600080fd5b506105e2610cac565b005b3480156105f057600080fd5b5061060b60048036038101906106069190611d24565b610cbf565b604051610619929190611dbd565b60405180910390f35b34801561062e57600080fd5b5061064960048036038101906106449190611b80565b610cfd565b6040516106569190611bdb565b60405180910390f35b34801561066b57600080fd5b50610674610d20565b6040516106819190611e07565b60405180910390f35b34801561069657600080fd5b5061069f610d46565b6040516106ac9190611ad6565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190611e22565b610d54565b6040516106e99190611ad6565b60405180910390f35b3480156106fe57600080fd5b50610707610ddb565b005b34801561071557600080fd5b50610730600480360381019061072b9190611d24565b610dee565b005b60606004805461074190611e91565b80601f016020809104026020016040519081016040528092919081815260200182805461076d90611e91565b80156107ba5780601f1061078f576101008083540402835291602001916107ba565b820191906000526020600020905b81548152906001019060200180831161079d57829003601f168201915b5050505050905090565b6a034f086f3b33b68400000081565b6000806107de610e74565b90506107eb818585610e7c565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600354905090565b6101f481565b600080610835610e74565b9050610842858285610e8e565b61084d858585610f22565b60019150509392505050565b60006012905090565b7f00000000000000000000000012a14069602588a0d6d3be74db5aaa62f862350281565b600e60149054906101000a900460ff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108ea611016565b6108f4600061109d565b565b6108fe611016565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f37ddb83c57306cf4a7e1d5fd89bd61315769b66997f105b1dc1adef3f1eccf2b8260405161099e9190611bdb565b60405180910390a25050565b6109b2611016565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f1d1828d49ecf2fd34a77f1ec24b3098991a6cd7d3733c384719bd155867ad87782604051610a529190611bdb565b60405180910390a25050565b600a5481565b610a6c611016565b6001600e60146101000a81548160ff0219169083151502179055506001600e60166101000a81548160ff0219169083151502179055507fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe520896001604051610ad29190611bdb565b60405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6101f481565b60085481565b61271081565b606060058054610b2690611e91565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5290611e91565b8015610b9f5780601f10610b7457610100808354040283529160200191610b9f565b820191906000526020600020905b815481529060010190602001808311610b8257829003601f168201915b5050505050905090565b60095481565b610bb7611016565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90611f0e565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610c728160016108f6565b7f08c94e54371efaf317c231c7f5ddefe44ec016b884c58c475117f1d8cd5d60ae81604051610ca19190611d09565b60405180910390a150565b610cb4611016565b6101f4600981905550565b60066020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16905082565b600080610d08610e74565b9050610d15818585610f22565b600191505092915050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b69d3c21bcecceda100000081565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610de3611016565b6101f4600881905550565b610df6611016565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e685760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e5f9190611d09565b60405180910390fd5b610e718161109d565b50565b600033905090565b610e898383836001611161565b505050565b6000610e9a8484610d54565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f1c5781811015610f0c578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610f0393929190611f2e565b60405180910390fd5b610f1b84848484036000611161565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f945760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f8b9190611d09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110065760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ffd9190611d09565b60405180910390fd5b611011838383611338565b505050565b61101e610e74565b73ffffffffffffffffffffffffffffffffffffffff1661103c610adc565b73ffffffffffffffffffffffffffffffffffffffff161461109b5761105f610e74565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110929190611d09565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036111d35760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016111ca9190611d09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112455760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161123c9190611d09565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611332578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516113299190611ad6565b60405180910390a35b50505050565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff16151515158152505090506000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff161515151581525050905061144b8585856117c6565b61145582826119ee565b158061146f57508160000151801561146e575080600001515b5b1561147b5750506117c1565b60008260000151156115cf57600e60149054906101000a900460ff166114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd90611fb1565b60405180910390fd5b612710600954856114e79190612000565b6114f19190612071565b9050600a54818561150291906120a2565b1115611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90612148565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f532fcbcddc07ca8480be9b7111dcb7d530d63ae65a68283d808c4016d4fa592a836040516115c29190611ad6565b60405180910390a3611726565b81600001511561172557600e60149054906101000a900460ff16611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f90611fb1565b60405180910390fd5b612710600854856116399190612000565b6116439190612071565b905069d3c21bcecceda1000000818561165c91906120a2565b111561169d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611694906121da565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fc46a16a84e30033fd7115642681df05ba5aba3f0e5f93e8966dce06bf841b7828360405161171c9190611ad6565b60405180910390a35b5b600081111561175d5761175c85600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836117c6565b5b81602001516117bd576a034f086f3b33b68400000061177b86610899565b11156117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b39061226c565b60405180910390fd5b5b5050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361181857806003600082825461180c919061228c565b925050819055506118ed565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118a5578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161189c93929190611f2e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119365780600360008282540392505081905550611984565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119e19190611ad6565b60405180910390a3505050565b600082602001511580611a0357508160200151155b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a45578082015181840152602081019050611a2a565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a6d82611a0b565b611a778185611a16565b9350611a87818560208601611a27565b611a9081611a51565b840191505092915050565b60006020820190508181036000830152611ab58184611a62565b905092915050565b6000819050919050565b611ad081611abd565b82525050565b6000602082019050611aeb6000830184611ac7565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b2182611af6565b9050919050565b611b3181611b16565b8114611b3c57600080fd5b50565b600081359050611b4e81611b28565b92915050565b611b5d81611abd565b8114611b6857600080fd5b50565b600081359050611b7a81611b54565b92915050565b60008060408385031215611b9757611b96611af1565b5b6000611ba585828601611b3f565b9250506020611bb685828601611b6b565b9150509250929050565b60008115159050919050565b611bd581611bc0565b82525050565b6000602082019050611bf06000830184611bcc565b92915050565b6000819050919050565b6000611c1b611c16611c1184611af6565b611bf6565b611af6565b9050919050565b6000611c2d82611c00565b9050919050565b6000611c3f82611c22565b9050919050565b611c4f81611c34565b82525050565b6000602082019050611c6a6000830184611c46565b92915050565b600080600060608486031215611c8957611c88611af1565b5b6000611c9786828701611b3f565b9350506020611ca886828701611b3f565b9250506040611cb986828701611b6b565b9150509250925092565b600060ff82169050919050565b611cd981611cc3565b82525050565b6000602082019050611cf46000830184611cd0565b92915050565b611d0381611b16565b82525050565b6000602082019050611d1e6000830184611cfa565b92915050565b600060208284031215611d3a57611d39611af1565b5b6000611d4884828501611b3f565b91505092915050565b611d5a81611bc0565b8114611d6557600080fd5b50565b600081359050611d7781611d51565b92915050565b60008060408385031215611d9457611d93611af1565b5b6000611da285828601611b3f565b9250506020611db385828601611d68565b9150509250929050565b6000604082019050611dd26000830185611bcc565b611ddf6020830184611bcc565b9392505050565b6000611df182611af6565b9050919050565b611e0181611de6565b82525050565b6000602082019050611e1c6000830184611df8565b92915050565b60008060408385031215611e3957611e38611af1565b5b6000611e4785828601611b3f565b9250506020611e5885828601611b3f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ea957607f821691505b602082108103611ebc57611ebb611e62565b5b50919050565b7f54617820616464726573732063616e6e6f74206265207a65726f000000000000600082015250565b6000611ef8601a83611a16565b9150611f0382611ec2565b602082019050919050565b60006020820190508181036000830152611f2781611eeb565b9050919050565b6000606082019050611f436000830186611cfa565b611f506020830185611ac7565b611f5d6040830184611ac7565b949350505050565b7f54726164696e67206973206e6f7420656e61626c656421000000000000000000600082015250565b6000611f9b601783611a16565b9150611fa682611f65565b602082019050919050565b60006020820190508181036000830152611fca81611f8e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061200b82611abd565b915061201683611abd565b925082820261202481611abd565b9150828204841483151761203b5761203a611fd1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061207c82611abd565b915061208783611abd565b92508261209757612096612042565b5b828204905092915050565b60006120ad82611abd565b91506120b883611abd565b92508282039050818111156120d0576120cf611fd1565b5b92915050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61782060008201527f62757920616d6f756e7400000000000000000000000000000000000000000000602082015250565b6000612132602a83611a16565b915061213d826120d6565b604082019050919050565b6000602082019050818103600083015261216181612125565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61782060008201527f73656c6c20616d6f756e74000000000000000000000000000000000000000000602082015250565b60006121c4602b83611a16565b91506121cf82612168565b604082019050919050565b600060208201905081810360008301526121f3816121b7565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61782060008201527f686f6c64696e6720616d6f756e74000000000000000000000000000000000000602082015250565b6000612256602e83611a16565b9150612261826121fa565b604082019050919050565b6000602082019050818103600083015261228581612249565b9050919050565b600061229782611abd565b91506122a283611abd565b92508282019050808211156122ba576122b9611fd1565b5b9291505056fea264697066735822122035d04d44cd503e4275b4b33371216ef949c3e297ddecbb5db7d700fd44d9ea0d64736f6c63430008180033

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

000000000000000000000000246505a78c07977f08ba261a52aadbaa981606f0

-----Decoded View---------------
Arg [0] : _taxAddress (address): 0x246505A78C07977f08bA261a52aAdbaa981606f0

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000246505a78c07977f08ba261a52aadbaa981606f0


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.