ETH Price: $3,336.31 (+2.19%)
Gas: 4 Gwei

Token

Not my Queen (NMQ)
 

Overview

Max Total Supply

100,000,000,000 NMQ

Holders

6

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
84,260,325,149.771726137172980914 NMQ

Value
$0.00
0xcd52426f30ad7cb3bd61a60ddae8e2675cf0b632
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:
NMQ

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-08
*/

/**
 
 * NMQ is a community token for those who remember Britain's history  #NotmyQueen
 * 2% auto LP tax  -2% marketing wallet
 * First lock extension at 30k Mcap = 1 month
 * Second lock extension at 100K Mcap = 3 months

 */
 
//SPDX-License-Identifier: MIT 
// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


pragma solidity 0.8.16;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

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

    function setFeeTo(address) external;

    function allPairsLength() external view returns (uint256);

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);
}



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() external view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() external view virtual override returns (string memory) {
        return _name;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    /**
     * @dev 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 value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount)
        external
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        external
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        external
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        external
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);
    }

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);
    }
}

contract NMQ is Ownable, ERC20 {
    uint256 private _numTokensSellToAddToSwap = 100000 * (10**decimals());
    bool inSwapAndLiquify;

    // 1% buy/sell tax
    uint256 public constant buySellLiquidityTax = 4;
    uint256 public constant sellDevelopmentTax = 4;
    address public developmentWallet =
        0xCD52426f30Ad7CB3BD61A60DDAE8E2675Cf0b632;
    address public constant  DEAD = address(0xdead);// burn LP to dead address    

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    mapping(address => bool) private _isExcludedFromFee;

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

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

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor() ERC20("Not my Queen ", "NMQ") {
        _mint(msg.sender, (100000000000 * 10**decimals()));

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[address(uniswapV2Router)] = true;
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
       
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

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

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function excludeFromFee (address _user, bool value) external onlyOwner {
        _isExcludedFromFee[_user]= value;
    }

    function swapAndSendToMarketing (uint256 tokens) private lockTheSwap {
        uint256 initialBalance = address(this).balance;
        _swapTokensForEth(tokens);
        uint256 newBalance = address(this).balance - initialBalance;
        payable (developmentWallet).transfer(newBalance);

    }

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

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

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

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            DEAD,
            block.timestamp
        );
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(
            balanceOf(from) >= amount,
            "ERC20: transfer amount exceeds balance"
        );

        uint256 transferAmount;
        if (
            (from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify
        ) {
            // DEX transaction
            if (
                from != uniswapV2Pair &&
                ((balanceOf(address(this))) >= _numTokensSellToAddToSwap)

            ) {
                    uint256 totalfee = 2*(buySellLiquidityTax)+sellDevelopmentTax;
                    _numTokensSellToAddToSwap = balanceOf(address(this));

                    uint256 marketingTokens = _numTokensSellToAddToSwap * sellDevelopmentTax / totalfee;
                    swapAndSendToMarketing(marketingTokens); 

                    uint256 liquidityTokens = _numTokensSellToAddToSwap - marketingTokens;

                // sell transaction with threshold to swap
                _swapAndLiquify(liquidityTokens);
            }
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                // no tax on excluded account
                transferAmount = amount;
            } else {
                // 1% buy tax to LP, 2% sell tax (1% to LP, 1% to dev wallet)
                uint256 liquidityAmount = ((amount * buySellLiquidityTax) /
                    100);
                if (from == uniswapV2Pair) {
                    // buy transaction
                    transferAmount = amount - liquidityAmount;
                } else {
                    // sell transaction
                    uint256 developmentAmount = ((amount * sellDevelopmentTax) /
                        100);

                    transferAmount =
                        amount -
                        liquidityAmount -
                        developmentAmount;
                    super._transfer(from, address(this), developmentAmount); // only on sell transaction
                }
                super._transfer(from, address(this), liquidityAmount); // on buy/sell both transactions
            }
        } else {
            // normal wallet transaction
            transferAmount = amount;
        }
        super._transfer(from, to, transferAmount);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","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":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buySellLiquidityTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevelopmentTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052620000126012600a620004f1565b6200002190620186a062000509565b60065560078054610100600160a81b03191674cd52426f30ad7cb3bd61a60ddae8e2675cf0b632001790553480156200005957600080fd5b506040518060400160405280600d81526020016c02737ba1036bc9028bab2b2b71609d1b815250604051806040016040528060038152602001624e4d5160e81b815250620000b6620000b0620002c060201b60201c565b620002c4565b6004620000c48382620005d0565b506005620000d38282620005d0565b5050506200010f33620000eb620002bb60201b60201c565b620000f890600a620004f1565b620001099064174876e80062000509565b62000314565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000167573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018d91906200069c565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020191906200069c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200024f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027591906200069c565b6001600160a01b0390811660a052166080819052336000908152600860205260408082208054600160ff19918216811790925593835291208054909216179055620006dd565b601290565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200036f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620003839190620006c7565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000433578160001904821115620004175762000417620003dc565b808516156200042557918102915b93841c9390800290620003f7565b509250929050565b6000826200044c57506001620004eb565b816200045b57506000620004eb565b81600181146200047457600281146200047f576200049f565b6001915050620004eb565b60ff841115620004935762000493620003dc565b50506001821b620004eb565b5060208310610133831016604e8410600b8410161715620004c4575081810a620004eb565b620004d08383620003f2565b8060001904821115620004e757620004e7620003dc565b0290505b92915050565b60006200050260ff8416836200043b565b9392505050565b6000816000190483118215151615620005265762000526620003dc565b500290565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200055657607f821691505b6020821081036200057757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005cb57600081815260208120601f850160051c81016020861015620005a65750805b601f850160051c820191505b81811015620005c757828155600101620005b2565b5050505b505050565b81516001600160401b03811115620005ec57620005ec6200052b565b6200060481620005fd845462000541565b846200057d565b602080601f8311600181146200063c5760008415620006235750858301515b600019600386901b1c1916600185901b178555620005c7565b600085815260208120601f198616915b828110156200066d578886015182559484019460019091019084016200064c565b50858210156200068c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620006af57600080fd5b81516001600160a01b03811681146200050257600080fd5b80820180821115620004eb57620004eb620003dc565b60805160a05161148b62000742600039600081816102800152818161090c01528181610947015281816109910152610ac30152600081816101d101528181610e1401528181610ecd01528181610efc01528181610f8e0152610feb015261148b6000f3fe60806040526004361061012e5760003560e01c8063715018a6116100ab578063a9059cbb1161006f578063a9059cbb14610357578063ad8052bb146102ef578063c04a541414610377578063dd62ed3e1461039c578063df8408fe146103bc578063f2fde38b146103dc57600080fd5b8063715018a6146102d8578063739822b2146102ef5780638da5cb5b1461030457806395d89b4114610322578063a457c2d71461033757600080fd5b806323b872dd116100f257806323b872dd14610212578063313ce56714610232578063395093511461024e57806349bd5a5e1461026e57806370a08231146102a257600080fd5b806303fd2a451461013a57806306fdde031461016d578063095ea7b31461018f5780631694505e146101bf57806318160ddd146101f357600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061015061dead81565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561017957600080fd5b506101826103fc565b6040516101649190611069565b34801561019b57600080fd5b506101af6101aa3660046110cc565b61048e565b6040519015158152602001610164565b3480156101cb57600080fd5b506101507f000000000000000000000000000000000000000000000000000000000000000081565b3480156101ff57600080fd5b506003545b604051908152602001610164565b34801561021e57600080fd5b506101af61022d3660046110f8565b6104a8565b34801561023e57600080fd5b5060405160128152602001610164565b34801561025a57600080fd5b506101af6102693660046110cc565b6104cc565b34801561027a57600080fd5b506101507f000000000000000000000000000000000000000000000000000000000000000081565b3480156102ae57600080fd5b506102046102bd366004611139565b6001600160a01b031660009081526001602052604090205490565b3480156102e457600080fd5b506102ed6104ee565b005b3480156102fb57600080fd5b50610204600481565b34801561031057600080fd5b506000546001600160a01b0316610150565b34801561032e57600080fd5b5061018261052d565b34801561034357600080fd5b506101af6103523660046110cc565b61053c565b34801561036357600080fd5b506101af6103723660046110cc565b6105b7565b34801561038357600080fd5b506007546101509061010090046001600160a01b031681565b3480156103a857600080fd5b506102046103b736600461115d565b6105c5565b3480156103c857600080fd5b506102ed6103d7366004611196565b6105f0565b3480156103e857600080fd5b506102ed6103f7366004611139565b610645565b60606004805461040b906111c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610437906111c9565b80156104845780601f1061045957610100808354040283529160200191610484565b820191906000526020600020905b81548152906001019060200180831161046757829003601f168201915b5050505050905090565b60003361049c8185856106e0565b60019150505b92915050565b6000336104b6858285610804565b6104c185858561087e565b506001949350505050565b60003361049c8185856104df83836105c5565b6104e99190611219565b6106e0565b6000546001600160a01b031633146105215760405162461bcd60e51b81526004016105189061122c565b60405180910390fd5b61052b6000610b69565b565b60606005805461040b906111c9565b6000338161054a82866105c5565b9050838110156105aa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610518565b6104c182868684036106e0565b60003361049c81858561087e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6000546001600160a01b0316331461061a5760405162461bcd60e51b81526004016105189061122c565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461066f5760405162461bcd60e51b81526004016105189061122c565b6001600160a01b0381166106d45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610518565b6106dd81610b69565b50565b6001600160a01b0383166107425760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610518565b6001600160a01b0382166107a35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610518565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061081084846105c5565b90506000198114610878578181101561086b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610518565b61087884848484036106e0565b50505050565b6001600160a01b0383166108a45760405162461bcd60e51b815260040161051890611261565b6001600160a01b0382166108ca5760405162461bcd60e51b8152600401610518906112a6565b806108ea846001600160a01b031660009081526001602052604090205490565b10156109085760405162461bcd60e51b8152600401610518906112e9565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316148061097b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316145b801561098a575060075460ff16155b15610b5b577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316141580156109e257506006543060009081526001602052604090205410155b15610a5b57600060046109f681600261132f565b610a009190611219565b306000908152600160205260408120546006819055919250908290610a279060049061132f565b610a31919061134e565b9050610a3c81610bb9565b600081600654610a4c9190611370565b9050610a5781610c2c565b5050505b6001600160a01b03841660009081526008602052604090205460ff1680610a9a57506001600160a01b03831660009081526008602052604090205460ff165b15610aa6575080610b5e565b60006064610ab560048561132f565b610abf919061134e565b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031603610b0b57610b048184611370565b9150610b4a565b60006064610b1a60048661132f565b610b24919061134e565b905080610b318386611370565b610b3b9190611370565b9250610b48863083610cca565b505b610b55853083610cca565b50610b5e565b50805b610878848483610cca565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6007805460ff1916600117905547610bd082610dbd565b6000610bdc8247611370565b60075460405191925061010090046001600160a01b0316906108fc8315029083906000818181858888f19350505050158015610c1c573d6000803e3d6000fd5b50506007805460ff191690555050565b6007805460ff191660011790556000610c4660028361134e565b90506000610c548284611370565b905047610c6083610dbd565b6000610c6c8247611370565b9050610c788382610f88565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506007805460ff19169055505050565b6001600160a01b038316610cf05760405162461bcd60e51b815260040161051890611261565b6001600160a01b038216610d165760405162461bcd60e51b8152600401610518906112a6565b6001600160a01b03831660009081526001602052604090205481811015610d4f5760405162461bcd60e51b8152600401610518906112e9565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610daf9086815260200190565b60405180910390a350505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610df257610df2611383565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e949190611399565b81600181518110610ea757610ea7611383565b60200260200101906001600160a01b031690816001600160a01b031681525050610ef2307f0000000000000000000000000000000000000000000000000000000000000000846106e0565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663791ac9478360008430610f324261012c611219565b6040518663ffffffff1660e01b8152600401610f529594939291906113b6565b600060405180830381600087803b158015610f6c57600080fd5b505af1158015610f80573d6000803e3d6000fd5b505050505050565b610fb3307f0000000000000000000000000000000000000000000000000000000000000000846106e0565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561103d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110629190611427565b5050505050565b600060208083528351808285015260005b818110156110965785810183015185820160400152820161107a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146106dd57600080fd5b600080604083850312156110df57600080fd5b82356110ea816110b7565b946020939093013593505050565b60008060006060848603121561110d57600080fd5b8335611118816110b7565b92506020840135611128816110b7565b929592945050506040919091013590565b60006020828403121561114b57600080fd5b8135611156816110b7565b9392505050565b6000806040838503121561117057600080fd5b823561117b816110b7565b9150602083013561118b816110b7565b809150509250929050565b600080604083850312156111a957600080fd5b82356111b4816110b7565b91506020830135801515811461118b57600080fd5b600181811c908216806111dd57607f821691505b6020821081036111fd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104a2576104a2611203565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b600081600019048311821515161561134957611349611203565b500290565b60008261136b57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156104a2576104a2611203565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156113ab57600080fd5b8151611156816110b7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156114065784516001600160a01b0316835293830193918301916001016113e1565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561143c57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122053e3e4b25b709943703ea92223ec053221f1bf0f48951be4cbe5a44bb295646364736f6c63430008100033

Deployed Bytecode

0x60806040526004361061012e5760003560e01c8063715018a6116100ab578063a9059cbb1161006f578063a9059cbb14610357578063ad8052bb146102ef578063c04a541414610377578063dd62ed3e1461039c578063df8408fe146103bc578063f2fde38b146103dc57600080fd5b8063715018a6146102d8578063739822b2146102ef5780638da5cb5b1461030457806395d89b4114610322578063a457c2d71461033757600080fd5b806323b872dd116100f257806323b872dd14610212578063313ce56714610232578063395093511461024e57806349bd5a5e1461026e57806370a08231146102a257600080fd5b806303fd2a451461013a57806306fdde031461016d578063095ea7b31461018f5780631694505e146101bf57806318160ddd146101f357600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061015061dead81565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561017957600080fd5b506101826103fc565b6040516101649190611069565b34801561019b57600080fd5b506101af6101aa3660046110cc565b61048e565b6040519015158152602001610164565b3480156101cb57600080fd5b506101507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156101ff57600080fd5b506003545b604051908152602001610164565b34801561021e57600080fd5b506101af61022d3660046110f8565b6104a8565b34801561023e57600080fd5b5060405160128152602001610164565b34801561025a57600080fd5b506101af6102693660046110cc565b6104cc565b34801561027a57600080fd5b506101507f00000000000000000000000034054611d51e97991194fb0dfc1ff816311df0a981565b3480156102ae57600080fd5b506102046102bd366004611139565b6001600160a01b031660009081526001602052604090205490565b3480156102e457600080fd5b506102ed6104ee565b005b3480156102fb57600080fd5b50610204600481565b34801561031057600080fd5b506000546001600160a01b0316610150565b34801561032e57600080fd5b5061018261052d565b34801561034357600080fd5b506101af6103523660046110cc565b61053c565b34801561036357600080fd5b506101af6103723660046110cc565b6105b7565b34801561038357600080fd5b506007546101509061010090046001600160a01b031681565b3480156103a857600080fd5b506102046103b736600461115d565b6105c5565b3480156103c857600080fd5b506102ed6103d7366004611196565b6105f0565b3480156103e857600080fd5b506102ed6103f7366004611139565b610645565b60606004805461040b906111c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610437906111c9565b80156104845780601f1061045957610100808354040283529160200191610484565b820191906000526020600020905b81548152906001019060200180831161046757829003601f168201915b5050505050905090565b60003361049c8185856106e0565b60019150505b92915050565b6000336104b6858285610804565b6104c185858561087e565b506001949350505050565b60003361049c8185856104df83836105c5565b6104e99190611219565b6106e0565b6000546001600160a01b031633146105215760405162461bcd60e51b81526004016105189061122c565b60405180910390fd5b61052b6000610b69565b565b60606005805461040b906111c9565b6000338161054a82866105c5565b9050838110156105aa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610518565b6104c182868684036106e0565b60003361049c81858561087e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6000546001600160a01b0316331461061a5760405162461bcd60e51b81526004016105189061122c565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461066f5760405162461bcd60e51b81526004016105189061122c565b6001600160a01b0381166106d45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610518565b6106dd81610b69565b50565b6001600160a01b0383166107425760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610518565b6001600160a01b0382166107a35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610518565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061081084846105c5565b90506000198114610878578181101561086b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610518565b61087884848484036106e0565b50505050565b6001600160a01b0383166108a45760405162461bcd60e51b815260040161051890611261565b6001600160a01b0382166108ca5760405162461bcd60e51b8152600401610518906112a6565b806108ea846001600160a01b031660009081526001602052604090205490565b10156109085760405162461bcd60e51b8152600401610518906112e9565b60007f00000000000000000000000034054611d51e97991194fb0dfc1ff816311df0a96001600160a01b0316846001600160a01b0316148061097b57507f00000000000000000000000034054611d51e97991194fb0dfc1ff816311df0a96001600160a01b0316836001600160a01b0316145b801561098a575060075460ff16155b15610b5b577f00000000000000000000000034054611d51e97991194fb0dfc1ff816311df0a96001600160a01b0316846001600160a01b0316141580156109e257506006543060009081526001602052604090205410155b15610a5b57600060046109f681600261132f565b610a009190611219565b306000908152600160205260408120546006819055919250908290610a279060049061132f565b610a31919061134e565b9050610a3c81610bb9565b600081600654610a4c9190611370565b9050610a5781610c2c565b5050505b6001600160a01b03841660009081526008602052604090205460ff1680610a9a57506001600160a01b03831660009081526008602052604090205460ff165b15610aa6575080610b5e565b60006064610ab560048561132f565b610abf919061134e565b90507f00000000000000000000000034054611d51e97991194fb0dfc1ff816311df0a96001600160a01b0316856001600160a01b031603610b0b57610b048184611370565b9150610b4a565b60006064610b1a60048661132f565b610b24919061134e565b905080610b318386611370565b610b3b9190611370565b9250610b48863083610cca565b505b610b55853083610cca565b50610b5e565b50805b610878848483610cca565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6007805460ff1916600117905547610bd082610dbd565b6000610bdc8247611370565b60075460405191925061010090046001600160a01b0316906108fc8315029083906000818181858888f19350505050158015610c1c573d6000803e3d6000fd5b50506007805460ff191690555050565b6007805460ff191660011790556000610c4660028361134e565b90506000610c548284611370565b905047610c6083610dbd565b6000610c6c8247611370565b9050610c788382610f88565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506007805460ff19169055505050565b6001600160a01b038316610cf05760405162461bcd60e51b815260040161051890611261565b6001600160a01b038216610d165760405162461bcd60e51b8152600401610518906112a6565b6001600160a01b03831660009081526001602052604090205481811015610d4f5760405162461bcd60e51b8152600401610518906112e9565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610daf9086815260200190565b60405180910390a350505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610df257610df2611383565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e949190611399565b81600181518110610ea757610ea7611383565b60200260200101906001600160a01b031690816001600160a01b031681525050610ef2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846106e0565b6001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663791ac9478360008430610f324261012c611219565b6040518663ffffffff1660e01b8152600401610f529594939291906113b6565b600060405180830381600087803b158015610f6c57600080fd5b505af1158015610f80573d6000803e3d6000fd5b505050505050565b610fb3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846106e0565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561103d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110629190611427565b5050505050565b600060208083528351808285015260005b818110156110965785810183015185820160400152820161107a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146106dd57600080fd5b600080604083850312156110df57600080fd5b82356110ea816110b7565b946020939093013593505050565b60008060006060848603121561110d57600080fd5b8335611118816110b7565b92506020840135611128816110b7565b929592945050506040919091013590565b60006020828403121561114b57600080fd5b8135611156816110b7565b9392505050565b6000806040838503121561117057600080fd5b823561117b816110b7565b9150602083013561118b816110b7565b809150509250929050565b600080604083850312156111a957600080fd5b82356111b4816110b7565b91506020830135801515811461118b57600080fd5b600181811c908216806111dd57607f821691505b6020821081036111fd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104a2576104a2611203565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b600081600019048311821515161561134957611349611203565b500290565b60008261136b57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156104a2576104a2611203565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156113ab57600080fd5b8151611156816110b7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156114065784516001600160a01b0316835293830193918301916001016113e1565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561143c57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122053e3e4b25b709943703ea92223ec053221f1bf0f48951be4cbe5a44bb295646364736f6c63430008100033

Deployed Bytecode Sourcemap

27366:6570:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27734:47;;;;;;;;;;;;27774:6;27734:47;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;27734:47:0;;;;;;;;18280:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20555:244::-;;;;;;;;;;-1:-1:-1;20555:244:0;;;;;:::i;:::-;;:::i;:::-;;;1396:14:1;;1389:22;1371:41;;1359:2;1344:18;20555:244:0;1231:187:1;27820:51:0;;;;;;;;;;;;;;;18447:110;;;;;;;;;;-1:-1:-1;18537:12:0;;18447:110;;;1803:25:1;;;1791:2;1776:18;18447:110:0;1657:177:1;21379:297:0;;;;;;;;;;-1:-1:-1;21379:297:0;;;;;:::i;:::-;;:::i;19436:93::-;;;;;;;;;;-1:-1:-1;19436:93:0;;19519:2;2442:36:1;;2430:2;2415:18;19436:93:0;2300:184:1;22085:272:0;;;;;;;;;;-1:-1:-1;22085:272:0;;;;;:::i;:::-;;:::i;27878:38::-;;;;;;;;;;;;;;;18620:177;;;;;;;;;;-1:-1:-1;18620:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;18771:18:0;18739:7;18771:18;;;:9;:18;;;;;;;18620:177;2878:103;;;;;;;;;;;;;:::i;:::-;;27534:47;;;;;;;;;;;;27580:1;27534:47;;2227:87;;;;;;;;;;-1:-1:-1;2273:7:0;2300:6;-1:-1:-1;;;;;2300:6:0;2227:87;;18104:106;;;;;;;;;;;;;:::i;22860:507::-;;;;;;;;;;-1:-1:-1;22860:507:0;;;;;:::i;:::-;;:::i;19999:236::-;;;;;;;;;;-1:-1:-1;19999:236:0;;;;;:::i;:::-;;:::i;27641:86::-;;;;;;;;;;-1:-1:-1;27641:86:0;;;;;;;-1:-1:-1;;;;;27641:86:0;;;19592:201;;;;;;;;;;-1:-1:-1;19592:201:0;;;;;:::i;:::-;;:::i;29593:122::-;;;;;;;;;;-1:-1:-1;29593:122:0;;;;;:::i;:::-;;:::i;3136:201::-;;;;;;;;;;-1:-1:-1;3136:201:0;;;;;:::i;:::-;;:::i;18280:102::-;18336:13;18369:5;18362:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18280:102;:::o;20555:244::-;20676:4;1031:10;20737:32;1031:10;20753:7;20762:6;20737:8;:32::i;:::-;20787:4;20780:11;;;20555:244;;;;;:::o;21379:297::-;21512:4;1031:10;21570:38;21586:4;1031:10;21601:6;21570:15;:38::i;:::-;21619:27;21629:4;21635:2;21639:6;21619:9;:27::i;:::-;-1:-1:-1;21664:4:0;;21379:297;-1:-1:-1;;;;21379:297:0:o;22085:272::-;22202:4;1031:10;22263:64;1031:10;22279:7;22316:10;22288:25;1031:10;22279:7;22288:9;:25::i;:::-;:38;;;;:::i;:::-;22263:8;:64::i;2878:103::-;2273:7;2300:6;-1:-1:-1;;;;;2300:6:0;1031:10;2447:23;2439:68;;;;-1:-1:-1;;;2439:68:0;;;;;;;:::i;:::-;;;;;;;;;2943:30:::1;2970:1;2943:18;:30::i;:::-;2878:103::o:0;18104:106::-;18162:13;18195:7;18188:14;;;;;:::i;22860:507::-;22982:4;1031:10;22982:4;23070:25;1031:10;23087:7;23070:9;:25::i;:::-;23043:52;;23148:15;23128:16;:35;;23106:122;;;;-1:-1:-1;;;23106:122:0;;4765:2:1;23106:122:0;;;4747:21:1;4804:2;4784:18;;;4777:30;4843:34;4823:18;;;4816:62;-1:-1:-1;;;4894:18:1;;;4887:35;4939:19;;23106:122:0;4563:401:1;23106:122:0;23264:60;23273:5;23280:7;23308:15;23289:16;:34;23264:8;:60::i;19999:236::-;20116:4;1031:10;20177:28;1031:10;20194:2;20198:6;20177:9;:28::i;19592:201::-;-1:-1:-1;;;;;19758:18:0;;;19726:7;19758:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19592:201::o;29593:122::-;2273:7;2300:6;-1:-1:-1;;;;;2300:6:0;1031:10;2447:23;2439:68;;;;-1:-1:-1;;;2439:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29675:25:0;;;::::1;;::::0;;;:18:::1;:25;::::0;;;;:32;;-1:-1:-1;;29675:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29593:122::o;3136:201::-;2273:7;2300:6;-1:-1:-1;;;;;2300:6:0;1031:10;2447:23;2439:68;;;;-1:-1:-1;;;2439:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3225:22:0;::::1;3217:73;;;::::0;-1:-1:-1;;;3217:73:0;;5171:2:1;3217:73:0::1;::::0;::::1;5153:21:1::0;5210:2;5190:18;;;5183:30;5249:34;5229:18;;;5222:62;-1:-1:-1;;;5300:18:1;;;5293:36;5346:19;;3217:73:0::1;4969:402:1::0;3217:73:0::1;3301:28;3320:8;3301:18;:28::i;:::-;3136:201:::0;:::o;26195:380::-;-1:-1:-1;;;;;26331:19:0;;26323:68;;;;-1:-1:-1;;;26323:68:0;;5578:2:1;26323:68:0;;;5560:21:1;5617:2;5597:18;;;5590:30;5656:34;5636:18;;;5629:62;-1:-1:-1;;;5707:18:1;;;5700:34;5751:19;;26323:68:0;5376:400:1;26323:68:0;-1:-1:-1;;;;;26410:21:0;;26402:68;;;;-1:-1:-1;;;26402:68:0;;5983:2:1;26402:68:0;;;5965:21:1;6022:2;6002:18;;;5995:30;6061:34;6041:18;;;6034:62;-1:-1:-1;;;6112:18:1;;;6105:32;6154:19;;26402:68:0;5781:398:1;26402:68:0;-1:-1:-1;;;;;26483:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26535:32;;1803:25:1;;;26535:32:0;;1776:18:1;26535:32:0;;;;;;;26195:380;;;:::o;25255:502::-;25390:24;25417:25;25427:5;25434:7;25417:9;:25::i;:::-;25390:52;;-1:-1:-1;;25457:16:0;:37;25453:297;;25557:6;25537:16;:26;;25511:117;;;;-1:-1:-1;;;25511:117:0;;6386:2:1;25511:117:0;;;6368:21:1;6425:2;6405:18;;;6398:30;6464:31;6444:18;;;6437:59;6513:18;;25511:117:0;6184:353:1;25511:117:0;25672:51;25681:5;25688:7;25716:6;25697:16;:25;25672:8;:51::i;:::-;25379:378;25255:502;;;:::o;31354:2542::-;-1:-1:-1;;;;;31486:18:0;;31478:68;;;;-1:-1:-1;;;31478:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31565:16:0;;31557:64;;;;-1:-1:-1;;;31557:64:0;;;;;;;:::i;:::-;31673:6;31654:15;31664:4;-1:-1:-1;;;;;18771:18:0;18739:7;18771:18;;;:9;:18;;;;;;;18620:177;31654:15;:25;;31632:113;;;;-1:-1:-1;;;31632:113:0;;;;;;;:::i;:::-;31758:22;31818:13;-1:-1:-1;;;;;31810:21:0;:4;-1:-1:-1;;;;;31810:21:0;;:44;;;;31841:13;-1:-1:-1;;;;;31835:19:0;:2;-1:-1:-1;;;;;31835:19:0;;31810:44;31809:67;;;;-1:-1:-1;31860:16:0;;;;31859:17;31809:67;31791:2046;;;31965:13;-1:-1:-1;;;;;31957:21:0;:4;-1:-1:-1;;;;;31957:21:0;;;:99;;;;-1:-1:-1;32030:25:0;;32019:4;18739:7;18771:18;;;:9;:18;;;;;;32000:55;;31957:99;31935:692;;;32097:16;27633:1;32116:23;27633:1;32116;:23;:::i;:::-;:42;;;;:::i;:::-;32227:4;18739:7;18771:18;;;:9;:18;;;;;;32181:25;:52;;;32097:61;;-1:-1:-1;18739:7:0;32097:61;;32284:46;;27633:1;;32284:46;:::i;:::-;:57;;;;:::i;:::-;32258:83;;32364:39;32387:15;32364:22;:39::i;:::-;32429:23;32483:15;32455:25;;:43;;;;:::i;:::-;32429:69;;32579:32;32595:15;32579;:32::i;:::-;32074:553;;;31935:692;-1:-1:-1;;;;;32645:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;32673:22:0;;;;;;:18;:22;;;;;;;;32645:50;32641:1087;;;-1:-1:-1;32780:6:0;31791:2046;;32641:1087;32906:23;32987:3;32934:28;27580:1;32934:6;:28;:::i;:::-;32933:57;;;;:::i;:::-;32906:85;;33022:13;-1:-1:-1;;;;;33014:21:0;:4;-1:-1:-1;;;;;33014:21:0;;33010:598;;33117:24;33126:15;33117:6;:24;:::i;:::-;33100:41;;33010:598;;;33231:25;33317:3;33261:27;27633:1;33261:6;:27;:::i;:::-;33260:60;;;;:::i;:::-;33231:90;-1:-1:-1;33231:90:0;33388:49;33422:15;33388:6;:49;:::i;:::-;:94;;;;:::i;:::-;33346:136;;33505:55;33521:4;33535;33542:17;33505:15;:55::i;:::-;33167:441;33010:598;33626:53;33642:4;33656;33663:15;33626;:53::i;:::-;32808:920;31791:2046;;;-1:-1:-1;33819:6:0;31791:2046;33847:41;33863:4;33869:2;33873:14;33847:15;:41::i;3497:191::-;3571:16;3590:6;;-1:-1:-1;;;;;3607:17:0;;;-1:-1:-1;;;;;;3607:17:0;;;;;;3640:40;;3590:6;;;;;;;3640:40;;3571:16;3640:40;3560:128;3497:191;:::o;29723:301::-;28152:16;:23;;-1:-1:-1;;28152:23:0;28171:4;28152:23;;;29828:21:::1;29860:25;29878:6:::0;29860:17:::1;:25::i;:::-;29896:18;29917:38;29941:14:::0;29917:21:::1;:38;:::i;:::-;29975:17;::::0;29966:48:::1;::::0;29896:59;;-1:-1:-1;29975:17:0::1;::::0;::::1;-1:-1:-1::0;;;;;29975:17:0::1;::::0;29966:48:::1;::::0;::::1;;::::0;29896:59;;29966:48:::1;::::0;;;29896:59;29975:17;29966:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;28198:16:0;:24;;-1:-1:-1;;28198:24:0;;;-1:-1:-1;;29723:301:0:o;29102:483::-;28152:16;:23;;-1:-1:-1;;28152:23:0;28171:4;28152:23;;;:16;29213:24:::1;29236:1;29213:20:::0;:24:::1;:::i;:::-;29197:41:::0;-1:-1:-1;29249:17:0::1;29270:27;29197:41:::0;29270:20;:27:::1;:::i;:::-;29249:49:::0;-1:-1:-1;29336:21:0::1;29370:23;29388:4:::0;29370:17:::1;:23::i;:::-;29406:18;29428:38;29452:14:::0;29428:21:::1;:38;:::i;:::-;29406:61;;29480:36;29494:9;29505:10;29480:13;:36::i;:::-;29534:43;::::0;;8489:25:1;;;8545:2;8530:18;;8523:34;;;8573:18;;;8566:34;;;29534:43:0::1;::::0;8477:2:1;8462:18;29534:43:0::1;;;;;;;-1:-1:-1::0;;28198:16:0;:24;;-1:-1:-1;;28198:24:0;;;-1:-1:-1;;;29102:483:0:o;26583:776::-;-1:-1:-1;;;;;26714:18:0;;26706:68;;;;-1:-1:-1;;;26706:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26793:16:0;;26785:64;;;;-1:-1:-1;;;26785:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26884:15:0;;26862:19;26884:15;;;:9;:15;;;;;;26932:21;;;;26910:109;;;;-1:-1:-1;;;26910:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27055:15:0;;;;;;;:9;:15;;;;;;27073:20;;;27055:38;;27273:13;;;;;;;;;;:23;;;;;;27325:26;;;;;;27087:6;1803:25:1;;1791:2;1776:18;;1657:177;27325:26:0;;;;;;;;26695:664;26583:776;;;:::o;30032:484::-;30123:16;;;30137:1;30123:16;;;;;;;;30099:21;;30123:16;;;;;;;;;;-1:-1:-1;30123:16:0;30099:40;;30168:4;30150;30155:1;30150:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;30150:23:0;;;-1:-1:-1;;;;;30150:23:0;;;;;30194:15;-1:-1:-1;;;;;30194:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30184:4;30189:1;30184:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;30184:32:0;;;-1:-1:-1;;;;;30184:32:0;;;;;30229:62;30246:4;30261:15;30279:11;30229:8;:62::i;:::-;-1:-1:-1;;;;;30304:15:0;:66;;30385:11;30411:1;30427:4;30454;30475:21;:15;30493:3;30475:21;:::i;:::-;30304:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30088:428;30032:484;:::o;30524:360::-;30606:62;30623:4;30638:15;30656:11;30606:8;:62::i;:::-;30681:195;;-1:-1:-1;;;30681:195:0;;30753:4;30681:195;;;10457:34:1;10507:18;;;10500:34;;;30799:1:0;10550:18:1;;;10543:34;;;10593:18;;;10586:34;27774:6:0;10636:19:1;;;10629:44;30850:15:0;10689:19:1;;;10682:35;30681:15:0;-1:-1:-1;;;;;30681:31:0;;;;30720:9;;10391:19:1;;30681:195:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;30524:360;;:::o;222:548:1:-;334:4;363:2;392;381:9;374:21;424:6;418:13;467:6;462:2;451:9;447:18;440:34;492:1;502:140;516:6;513:1;510:13;502:140;;;611:14;;;607:23;;601:30;577:17;;;596:2;573:26;566:66;531:10;;502:140;;;506:3;691:1;686:2;677:6;666:9;662:22;658:31;651:42;761:2;754;750:7;745:2;737:6;733:15;729:29;718:9;714:45;710:54;702:62;;;;222:548;;;;:::o;775:131::-;-1:-1:-1;;;;;850:31:1;;840:42;;830:70;;896:1;893;886:12;911:315;979:6;987;1040:2;1028:9;1019:7;1015:23;1011:32;1008:52;;;1056:1;1053;1046:12;1008:52;1095:9;1082:23;1114:31;1139:5;1114:31;:::i;:::-;1164:5;1216:2;1201:18;;;;1188:32;;-1:-1:-1;;;911:315:1:o;1839:456::-;1916:6;1924;1932;1985:2;1973:9;1964:7;1960:23;1956:32;1953:52;;;2001:1;1998;1991:12;1953:52;2040:9;2027:23;2059:31;2084:5;2059:31;:::i;:::-;2109:5;-1:-1:-1;2166:2:1;2151:18;;2138:32;2179:33;2138:32;2179:33;:::i;:::-;1839:456;;2231:7;;-1:-1:-1;;;2285:2:1;2270:18;;;;2257:32;;1839:456::o;2489:247::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;2656:9;2643:23;2675:31;2700:5;2675:31;:::i;:::-;2725:5;2489:247;-1:-1:-1;;;2489:247:1:o;2741:388::-;2809:6;2817;2870:2;2858:9;2849:7;2845:23;2841:32;2838:52;;;2886:1;2883;2876:12;2838:52;2925:9;2912:23;2944:31;2969:5;2944:31;:::i;:::-;2994:5;-1:-1:-1;3051:2:1;3036:18;;3023:32;3064:33;3023:32;3064:33;:::i;:::-;3116:7;3106:17;;;2741:388;;;;;:::o;3134:416::-;3199:6;3207;3260:2;3248:9;3239:7;3235:23;3231:32;3228:52;;;3276:1;3273;3266:12;3228:52;3315:9;3302:23;3334:31;3359:5;3334:31;:::i;:::-;3384:5;-1:-1:-1;3441:2:1;3426:18;;3413:32;3483:15;;3476:23;3464:36;;3454:64;;3514:1;3511;3504:12;3555:380;3634:1;3630:12;;;;3677;;;3698:61;;3752:4;3744:6;3740:17;3730:27;;3698:61;3805:2;3797:6;3794:14;3774:18;3771:38;3768:161;;3851:10;3846:3;3842:20;3839:1;3832:31;3886:4;3883:1;3876:15;3914:4;3911:1;3904:15;3768:161;;3555:380;;;:::o;3940:127::-;4001:10;3996:3;3992:20;3989:1;3982:31;4032:4;4029:1;4022:15;4056:4;4053:1;4046:15;4072:125;4137:9;;;4158:10;;;4155:36;;;4171:18;;:::i;4202:356::-;4404:2;4386:21;;;4423:18;;;4416:30;4482:34;4477:2;4462:18;;4455:62;4549:2;4534:18;;4202:356::o;6542:401::-;6744:2;6726:21;;;6783:2;6763:18;;;6756:30;6822:34;6817:2;6802:18;;6795:62;-1:-1:-1;;;6888:2:1;6873:18;;6866:35;6933:3;6918:19;;6542:401::o;6948:399::-;7150:2;7132:21;;;7189:2;7169:18;;;7162:30;7228:34;7223:2;7208:18;;7201:62;-1:-1:-1;;;7294:2:1;7279:18;;7272:33;7337:3;7322:19;;6948:399::o;7352:402::-;7554:2;7536:21;;;7593:2;7573:18;;;7566:30;7632:34;7627:2;7612:18;;7605:62;-1:-1:-1;;;7698:2:1;7683:18;;7676:36;7744:3;7729:19;;7352:402::o;7759:168::-;7799:7;7865:1;7861;7857:6;7853:14;7850:1;7847:21;7842:1;7835:9;7828:17;7824:45;7821:71;;;7872:18;;:::i;:::-;-1:-1:-1;7912:9:1;;7759:168::o;7932:217::-;7972:1;7998;7988:132;;8042:10;8037:3;8033:20;8030:1;8023:31;8077:4;8074:1;8067:15;8105:4;8102:1;8095:15;7988:132;-1:-1:-1;8134:9:1;;7932:217::o;8154:128::-;8221:9;;;8242:11;;;8239:37;;;8256:18;;:::i;8743:127::-;8804:10;8799:3;8795:20;8792:1;8785:31;8835:4;8832:1;8825:15;8859:4;8856:1;8849:15;8875:251;8945:6;8998:2;8986:9;8977:7;8973:23;8969:32;8966:52;;;9014:1;9011;9004:12;8966:52;9046:9;9040:16;9065:31;9090:5;9065:31;:::i;9131:980::-;9393:4;9441:3;9430:9;9426:19;9472:6;9461:9;9454:25;9498:2;9536:6;9531:2;9520:9;9516:18;9509:34;9579:3;9574:2;9563:9;9559:18;9552:31;9603:6;9638;9632:13;9669:6;9661;9654:22;9707:3;9696:9;9692:19;9685:26;;9746:2;9738:6;9734:15;9720:29;;9767:1;9777:195;9791:6;9788:1;9785:13;9777:195;;;9856:13;;-1:-1:-1;;;;;9852:39:1;9840:52;;9947:15;;;;9912:12;;;;9888:1;9806:9;9777:195;;;-1:-1:-1;;;;;;;10028:32:1;;;;10023:2;10008:18;;10001:60;-1:-1:-1;;;10092:3:1;10077:19;10070:35;9989:3;9131:980;-1:-1:-1;;;9131:980:1:o;10728:306::-;10816:6;10824;10832;10885:2;10873:9;10864:7;10860:23;10856:32;10853:52;;;10901:1;10898;10891:12;10853:52;10930:9;10924:16;10914:26;;10980:2;10969:9;10965:18;10959:25;10949:35;;11024:2;11013:9;11009:18;11003:25;10993:35;;10728:306;;;;;:::o

Swarm Source

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