ETH Price: $2,467.66 (-4.25%)

Token

MuzzleToken (MUZZ)
 

Overview

Max Total Supply

21,000,000,000 MUZZ

Holders

602 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
501,279,691.697705057069616078 MUZZ

Value
$0.00
0x3b3aa5939f492fe63957997112d8703c897a8cb2
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Muzzle is an exciting software ecosystem that aims to develop a diverse range of applications, establish sustainable business models, and promote a scalable economy.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MuzzleToken

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license, Audited

Contract Source Code (Solidity)Audit Report

/**
 *Submitted for verification at Etherscan.io on 2023-03-30
*/

// SPDX-License-Identifier: MIT
// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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

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

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

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

pragma solidity >=0.6.2;


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

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

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol

pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// 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 (last updated v4.7.0) (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 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 {
        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);
    }
}

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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 symbol of the token.
     */
    function symbol() external view returns (string memory);

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

    /**
     * @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(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 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-totalSupply}.
     */
    function totalSupply() public 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 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) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @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) public 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
    ) public 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) public 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) public 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 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 virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        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);

        _afterTokenTransfer(from, to, amount);
    }

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

        _beforeTokenTransfer(address(0), account, amount);

        _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);

        _afterTokenTransfer(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");

        _beforeTokenTransfer(account, address(0), amount);

        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);

        _afterTokenTransfer(account, address(0), 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);
    }

    /**
     * @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 Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: MuzzleToken.sol


// ..
pragma solidity ^0.8.19;






contract MuzzleToken is ERC20, Pausable, Ownable {
    IUniswapV2Router02 public uniswapV2Router;
    IUniswapV2Pair public uniswapV2Pair;
    
    address public development = 0x040235C58C65E66Ac538d46473B8B6A4F6177E8C;
    address public muzzleLock = 0x218f04bB5ECB45F9D36e95daB6AdA575905de44D;
    uint256 public sellTax = 500; // 5%
    uint256 public buyTax = 400; // 4%
    uint256 public unit = 10**18; // hoerutai
    
    bool private _notEntered;


    constructor(address _uniswapV2Pair) ERC20("MuzzleToken", "MUZZ") {
    _notEntered = true;
    uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // dirección del router de Uniswap en la red Ethereum
    uniswapV2Pair = IUniswapV2Pair(_uniswapV2Pair);
    _mint(msg.sender, 21000000000 * 10 ** decimals());
    }
    
    
    modifier nonReentrant() {
        require(_notEntered, "Reentrant call");
        _notEntered = false;
        _;
        _notEntered = true;
    }


    function _transfer(address sender, address recipient, uint256 amount) internal virtual override nonReentrant {
        if (recipient == address(0) || recipient == address(this)) {
            // Burning or Liquidity Injection
            super._transfer(sender, recipient, amount);
        } else if (sender == owner() || recipient == owner()) {
            // Owner can send and receive tokens without tax
            super._transfer(sender, recipient, amount);
        } else {
            uint256 taxAmount;
            if (msg.sender == address(uniswapV2Pair)) {
                // Buying tokens
                taxAmount = (amount * buyTax) / 10000;
                super._transfer(sender, development, (taxAmount * 3) / 4);
                super._transfer(sender, muzzleLock, (taxAmount * 1) / 4);                    
               
            } else {
                // Selling tokens
                if (sender != muzzleLock && sender != development) {
                    // Excluding the addresses from tax when selling tokens   
                    taxAmount = (amount * sellTax) / 10000;
                    super._transfer(sender, muzzleLock, (taxAmount * 4) / 5);
                    super._transfer(sender, development, (taxAmount * 1) / 5);
                } else {
                    // No tax for excluded addresses when selling tokens
                    super._transfer(sender, recipient, amount);
                    return;
                }
            }
            super._transfer(sender, recipient, amount - taxAmount);
        }            
    }
    function setSellTax(uint256 newSellTax) external onlyOwner {
        require(newSellTax <= 400, "Sell tax too high");
        sellTax = newSellTax;
    }

    function setBuyTax(uint256 newBuyTax) external onlyOwner {
        require(newBuyTax <= 400, "Buy tax too high");
        buyTax = newBuyTax;
    }

    function setOwner(address newOwner) external onlyOwner {
        transferOwnership(newOwner); 
    }
    // ..we are back..
    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    function withdrawTokens(address token, uint256 amount) external onlyOwner {
        IERC20(token).transfer(msg.sender, amount);
    }

    function withdrawETH(uint256 amount) external onlyOwner {
        payable(msg.sender).transfer(amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"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":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"development","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"muzzleLock","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyTax","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"contract IUniswapV2Pair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600880546001600160a01b031990811673040235c58c65e66ac538d46473b8b6a4f6177e8c179091556009805490911673218f04bb5ecb45f9d36e95dab6ada575905de44d1790556101f4600a55610190600b55670de0b6b3a7640000600c553480156200007157600080fd5b50604051620016e5380380620016e58339810160408190526200009491620002af565b6040518060400160405280600b81526020016a26babd3d3632aa37b5b2b760a91b8152506040518060400160405280600481526020016326aaad2d60e11b8152508160039081620000e6919062000385565b506004620000f5828262000385565b50506005805460ff19169055506200010d336200018a565b600d805460ff19166001179055600680546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d17909155600780546001600160a01b038416921691909117905562000183336200016c6012600a62000566565b6200017d906404e3b2920062000577565b620001e4565b50620005a7565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200023f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000253919062000591565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b600060208284031215620002c257600080fd5b81516001600160a01b0381168114620002da57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200030c57607f821691505b6020821081036200032d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002aa57600081815260208120601f850160051c810160208610156200035c5750805b601f850160051c820191505b818110156200037d5782815560010162000368565b505050505050565b81516001600160401b03811115620003a157620003a1620002e1565b620003b981620003b28454620002f7565b8462000333565b602080601f831160018114620003f15760008415620003d85750858301515b600019600386901b1c1916600185901b1785556200037d565b600085815260208120601f198616915b82811015620004225788860151825594840194600190910190840162000401565b5085821015620004415787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004a85781600019048211156200048c576200048c62000451565b808516156200049a57918102915b93841c93908002906200046c565b509250929050565b600082620004c15750600162000560565b81620004d05750600062000560565b8160018114620004e95760028114620004f45762000514565b600191505062000560565b60ff84111562000508576200050862000451565b50506001821b62000560565b5060208310610133831016604e8410600b841016171562000539575081810a62000560565b62000545838362000467565b80600019048211156200055c576200055c62000451565b0290505b92915050565b6000620002da60ff841683620004b0565b808202811582820484141762000560576200056062000451565b8082018082111562000560576200056062000451565b61112e80620005b76000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a61161010457806395d89b41116100a2578063dc1052e211610071578063dc1052e2146103a6578063dd62ed3e146103b9578063f14210a6146103cc578063f2fde38b146103df57600080fd5b806395d89b411461036f578063a457c2d714610377578063a9059cbb1461038a578063cc1776d31461039d57600080fd5b806388e7670f116100de57806388e7670f1461032a5780638cd09d501461033d5780638da5cb5b14610350578063907af6c01461036657600080fd5b8063715018a6146103075780637b929c271461030f5780638456cb591461032257600080fd5b8063313ce5671161017157806349bd5a5e1161014b57806349bd5a5e146102b75780634f7041a5146102ca5780635c975abb146102d357806370a08231146102de57600080fd5b8063313ce5671461028d578063395093511461029c5780633f4ba83a146102af57600080fd5b806313af4035116101ad57806313af40351461022a5780631694505e1461023d57806318160ddd1461026857806323b872dd1461027a57600080fd5b806306b091f9146101d457806306fdde03146101e9578063095ea7b314610207575b600080fd5b6101e76101e2366004610f05565b6103f2565b005b6101f1610470565b6040516101fe9190610f2f565b60405180910390f35b61021a610215366004610f05565b610502565b60405190151581526020016101fe565b6101e7610238366004610f7d565b61051c565b600654610250906001600160a01b031681565b6040516001600160a01b0390911681526020016101fe565b6002545b6040519081526020016101fe565b61021a610288366004610f9f565b610530565b604051601281526020016101fe565b61021a6102aa366004610f05565b610554565b6101e7610576565b600754610250906001600160a01b031681565b61026c600b5481565b60055460ff1661021a565b61026c6102ec366004610f7d565b6001600160a01b031660009081526020819052604090205490565b6101e7610588565b600854610250906001600160a01b031681565b6101e761059a565b600954610250906001600160a01b031681565b6101e761034b366004610fdb565b6105aa565b60055461010090046001600160a01b0316610250565b61026c600c5481565b6101f1610602565b61021a610385366004610f05565b610611565b61021a610398366004610f05565b61068c565b61026c600a5481565b6101e76103b4366004610fdb565b61069a565b61026c6103c7366004610ff4565b6106ec565b6101e76103da366004610fdb565b610717565b6101e76103ed366004610f7d565b610750565b6103fa6107c6565b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610447573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061046b9190611027565b505050565b60606003805461047f90611049565b80601f01602080910402602001604051908101604052809291908181526020018280546104ab90611049565b80156104f85780601f106104cd576101008083540402835291602001916104f8565b820191906000526020600020905b8154815290600101906020018083116104db57829003601f168201915b5050505050905090565b600033610510818585610826565b60019150505b92915050565b6105246107c6565b61052d81610750565b50565b60003361053e85828561094a565b6105498585856109c4565b506001949350505050565b60003361051081858561056783836106ec565b6105719190611099565b610826565b61057e6107c6565b610586610bcd565b565b6105906107c6565b6105866000610c1f565b6105a26107c6565b610586610c79565b6105b26107c6565b6101908111156105fd5760405162461bcd60e51b81526020600482015260116024820152700a6cad8d840e8c2f040e8dede40d0d2ced607b1b60448201526064015b60405180910390fd5b600a55565b60606004805461047f90611049565b6000338161061f82866106ec565b90508381101561067f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105f4565b6105498286868403610826565b6000336105108185856109c4565b6106a26107c6565b6101908111156106e75760405162461bcd60e51b815260206004820152601060248201526f084eaf240e8c2f040e8dede40d0d2ced60831b60448201526064016105f4565b600b55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61071f6107c6565b604051339082156108fc029083906000818181858888f1935050505015801561074c573d6000803e3d6000fd5b5050565b6107586107c6565b6001600160a01b0381166107bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105f4565b61052d81610c1f565b6005546001600160a01b036101009091041633146105865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f4565b6001600160a01b0383166108885760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105f4565b6001600160a01b0382166108e95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105f4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061095684846106ec565b905060001981146109be57818110156109b15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105f4565b6109be8484848403610826565b50505050565b600d5460ff16610a075760405162461bcd60e51b815260206004820152600e60248201526d1499595b9d1c985b9d0818d85b1b60921b60448201526064016105f4565b600d805460ff191690556001600160a01b0382161580610a2f57506001600160a01b03821630145b15610a4457610a3f838383610cb6565b610bbb565b6005546001600160a01b03848116610100909204161480610a7757506005546001600160a01b0383811661010090920416145b15610a8757610a3f838383610cb6565b6007546000906001600160a01b03163303610b0c57612710600b5483610aad91906110ac565b610ab791906110c3565b600854909150610ae89085906001600160a01b03166004610ad98560036110ac565b610ae391906110c3565b610cb6565b600954610b079085906001600160a01b03166004610ad98560016110ac565b610baa565b6009546001600160a01b03858116911614801590610b3857506008546001600160a01b03858116911614155b15610b9957612710600a5483610b4e91906110ac565b610b5891906110c3565b600954909150610b7a9085906001600160a01b03166005610ad98560046110ac565b600854610b079085906001600160a01b03166005610ad98560016110ac565b610ba4848484610cb6565b50610bbb565b610bb98484610ae384866110e5565b505b5050600d805460ff1916600117905550565b610bd5610e5a565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c81610ea3565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610c023390565b6001600160a01b038316610d1a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105f4565b6001600160a01b038216610d7c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105f4565b6001600160a01b03831660009081526020819052604090205481811015610df45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105f4565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109be565b60055460ff166105865760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105f4565b60055460ff16156105865760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105f4565b80356001600160a01b0381168114610f0057600080fd5b919050565b60008060408385031215610f1857600080fd5b610f2183610ee9565b946020939093013593505050565b600060208083528351808285015260005b81811015610f5c57858101830151858201604001528201610f40565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215610f8f57600080fd5b610f9882610ee9565b9392505050565b600080600060608486031215610fb457600080fd5b610fbd84610ee9565b9250610fcb60208501610ee9565b9150604084013590509250925092565b600060208284031215610fed57600080fd5b5035919050565b6000806040838503121561100757600080fd5b61101083610ee9565b915061101e60208401610ee9565b90509250929050565b60006020828403121561103957600080fd5b81518015158114610f9857600080fd5b600181811c9082168061105d57607f821691505b60208210810361107d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561051657610516611083565b808202811582820484141761051657610516611083565b6000826110e057634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156105165761051661108356fea26469706673582212202668176e9fe60fea65b37b314669fea51504c0c36bb26f88ac9d0b21f2c4c2cc64736f6c634300081300330000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a61161010457806395d89b41116100a2578063dc1052e211610071578063dc1052e2146103a6578063dd62ed3e146103b9578063f14210a6146103cc578063f2fde38b146103df57600080fd5b806395d89b411461036f578063a457c2d714610377578063a9059cbb1461038a578063cc1776d31461039d57600080fd5b806388e7670f116100de57806388e7670f1461032a5780638cd09d501461033d5780638da5cb5b14610350578063907af6c01461036657600080fd5b8063715018a6146103075780637b929c271461030f5780638456cb591461032257600080fd5b8063313ce5671161017157806349bd5a5e1161014b57806349bd5a5e146102b75780634f7041a5146102ca5780635c975abb146102d357806370a08231146102de57600080fd5b8063313ce5671461028d578063395093511461029c5780633f4ba83a146102af57600080fd5b806313af4035116101ad57806313af40351461022a5780631694505e1461023d57806318160ddd1461026857806323b872dd1461027a57600080fd5b806306b091f9146101d457806306fdde03146101e9578063095ea7b314610207575b600080fd5b6101e76101e2366004610f05565b6103f2565b005b6101f1610470565b6040516101fe9190610f2f565b60405180910390f35b61021a610215366004610f05565b610502565b60405190151581526020016101fe565b6101e7610238366004610f7d565b61051c565b600654610250906001600160a01b031681565b6040516001600160a01b0390911681526020016101fe565b6002545b6040519081526020016101fe565b61021a610288366004610f9f565b610530565b604051601281526020016101fe565b61021a6102aa366004610f05565b610554565b6101e7610576565b600754610250906001600160a01b031681565b61026c600b5481565b60055460ff1661021a565b61026c6102ec366004610f7d565b6001600160a01b031660009081526020819052604090205490565b6101e7610588565b600854610250906001600160a01b031681565b6101e761059a565b600954610250906001600160a01b031681565b6101e761034b366004610fdb565b6105aa565b60055461010090046001600160a01b0316610250565b61026c600c5481565b6101f1610602565b61021a610385366004610f05565b610611565b61021a610398366004610f05565b61068c565b61026c600a5481565b6101e76103b4366004610fdb565b61069a565b61026c6103c7366004610ff4565b6106ec565b6101e76103da366004610fdb565b610717565b6101e76103ed366004610f7d565b610750565b6103fa6107c6565b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610447573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061046b9190611027565b505050565b60606003805461047f90611049565b80601f01602080910402602001604051908101604052809291908181526020018280546104ab90611049565b80156104f85780601f106104cd576101008083540402835291602001916104f8565b820191906000526020600020905b8154815290600101906020018083116104db57829003601f168201915b5050505050905090565b600033610510818585610826565b60019150505b92915050565b6105246107c6565b61052d81610750565b50565b60003361053e85828561094a565b6105498585856109c4565b506001949350505050565b60003361051081858561056783836106ec565b6105719190611099565b610826565b61057e6107c6565b610586610bcd565b565b6105906107c6565b6105866000610c1f565b6105a26107c6565b610586610c79565b6105b26107c6565b6101908111156105fd5760405162461bcd60e51b81526020600482015260116024820152700a6cad8d840e8c2f040e8dede40d0d2ced607b1b60448201526064015b60405180910390fd5b600a55565b60606004805461047f90611049565b6000338161061f82866106ec565b90508381101561067f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105f4565b6105498286868403610826565b6000336105108185856109c4565b6106a26107c6565b6101908111156106e75760405162461bcd60e51b815260206004820152601060248201526f084eaf240e8c2f040e8dede40d0d2ced60831b60448201526064016105f4565b600b55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61071f6107c6565b604051339082156108fc029083906000818181858888f1935050505015801561074c573d6000803e3d6000fd5b5050565b6107586107c6565b6001600160a01b0381166107bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105f4565b61052d81610c1f565b6005546001600160a01b036101009091041633146105865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f4565b6001600160a01b0383166108885760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105f4565b6001600160a01b0382166108e95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105f4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061095684846106ec565b905060001981146109be57818110156109b15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105f4565b6109be8484848403610826565b50505050565b600d5460ff16610a075760405162461bcd60e51b815260206004820152600e60248201526d1499595b9d1c985b9d0818d85b1b60921b60448201526064016105f4565b600d805460ff191690556001600160a01b0382161580610a2f57506001600160a01b03821630145b15610a4457610a3f838383610cb6565b610bbb565b6005546001600160a01b03848116610100909204161480610a7757506005546001600160a01b0383811661010090920416145b15610a8757610a3f838383610cb6565b6007546000906001600160a01b03163303610b0c57612710600b5483610aad91906110ac565b610ab791906110c3565b600854909150610ae89085906001600160a01b03166004610ad98560036110ac565b610ae391906110c3565b610cb6565b600954610b079085906001600160a01b03166004610ad98560016110ac565b610baa565b6009546001600160a01b03858116911614801590610b3857506008546001600160a01b03858116911614155b15610b9957612710600a5483610b4e91906110ac565b610b5891906110c3565b600954909150610b7a9085906001600160a01b03166005610ad98560046110ac565b600854610b079085906001600160a01b03166005610ad98560016110ac565b610ba4848484610cb6565b50610bbb565b610bb98484610ae384866110e5565b505b5050600d805460ff1916600117905550565b610bd5610e5a565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c81610ea3565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610c023390565b6001600160a01b038316610d1a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105f4565b6001600160a01b038216610d7c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105f4565b6001600160a01b03831660009081526020819052604090205481811015610df45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105f4565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109be565b60055460ff166105865760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105f4565b60055460ff16156105865760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105f4565b80356001600160a01b0381168114610f0057600080fd5b919050565b60008060408385031215610f1857600080fd5b610f2183610ee9565b946020939093013593505050565b600060208083528351808285015260005b81811015610f5c57858101830151858201604001528201610f40565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215610f8f57600080fd5b610f9882610ee9565b9392505050565b600080600060608486031215610fb457600080fd5b610fbd84610ee9565b9250610fcb60208501610ee9565b9150604084013590509250925092565b600060208284031215610fed57600080fd5b5035919050565b6000806040838503121561100757600080fd5b61101083610ee9565b915061101e60208401610ee9565b90509250929050565b60006020828403121561103957600080fd5b81518015158114610f9857600080fd5b600181811c9082168061105d57607f821691505b60208210810361107d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561051657610516611083565b808202811582820484141761051657610516611083565b6000826110e057634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156105165761051661108356fea26469706673582212202668176e9fe60fea65b37b314669fea51504c0c36bb26f88ac9d0b21f2c4c2cc64736f6c63430008130033

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

0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f

-----Decoded View---------------
Arg [0] : _uniswapV2Pair (address): 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f


Deployed Bytecode Sourcemap

30924:3475:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34142:135;;;;;;:::i;:::-;;:::i;:::-;;19661:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22012:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;22012:201:0;1004:187:1;33864:102:0;;;;;;:::i;:::-;;:::i;30980:41::-;;;;;-1:-1:-1;;;;;30980:41:0;;;;;;-1:-1:-1;;;;;1577:32:1;;;1559:51;;1547:2;1532:18;30980:41:0;1387:229:1;20781:108:0;20869:12;;20781:108;;;1767:25:1;;;1755:2;1740:18;20781:108:0;1621:177:1;22793:295:0;;;;;;:::i;:::-;;:::i;20623:93::-;;;20706:2;2278:36:1;;2266:2;2251:18;20623:93:0;2136:184:1;23497:238:0;;;;;;:::i;:::-;;:::i;34067:67::-;;;:::i;31028:35::-;;;;;-1:-1:-1;;;;;31028:35:0;;;31272:27;;;;;;12921:86;12992:7;;;;12921:86;;20952:127;;;;;;:::i;:::-;-1:-1:-1;;;;;21053:18:0;21026:7;21053:18;;;;;;;;;;;;20952:127;10431:103;;;:::i;31076:71::-;;;;;-1:-1:-1;;;;;31076:71:0;;;33996:63;;;:::i;31154:70::-;;;;;-1:-1:-1;;;;;31154:70:0;;;33542:156;;;;;;:::i;:::-;;:::i;9783:87::-;9856:6;;;;;-1:-1:-1;;;;;9856:6:0;9783:87;;31312:28;;;;;;19880:104;;;:::i;24238:436::-;;;;;;:::i;:::-;;:::i;21285:193::-;;;;;;:::i;:::-;;:::i;31231:28::-;;;;;;33706:150;;;;;;:::i;:::-;;:::i;21541:151::-;;;;;;:::i;:::-;;:::i;34285:111::-;;;;;;:::i;:::-;;:::i;10689:201::-;;;;;;:::i;:::-;;:::i;34142:135::-;9669:13;:11;:13::i;:::-;34227:42:::1;::::0;-1:-1:-1;;;34227:42:0;;34250:10:::1;34227:42;::::0;::::1;3387:51:1::0;3454:18;;;3447:34;;;-1:-1:-1;;;;;34227:22:0;::::1;::::0;::::1;::::0;3360:18:1;;34227:42:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34142:135:::0;;:::o;19661:100::-;19715:13;19748:5;19741:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19661:100;:::o;22012:201::-;22095:4;8414:10;22151:32;8414:10;22167:7;22176:6;22151:8;:32::i;:::-;22201:4;22194:11;;;22012:201;;;;;:::o;33864:102::-;9669:13;:11;:13::i;:::-;33930:27:::1;33948:8;33930:17;:27::i;:::-;33864:102:::0;:::o;22793:295::-;22924:4;8414:10;22982:38;22998:4;8414:10;23013:6;22982:15;:38::i;:::-;23031:27;23041:4;23047:2;23051:6;23031:9;:27::i;:::-;-1:-1:-1;23076:4:0;;22793:295;-1:-1:-1;;;;22793:295:0:o;23497:238::-;23585:4;8414:10;23641:64;8414:10;23657:7;23694:10;23666:25;8414:10;23657:7;23666:9;:25::i;:::-;:38;;;;:::i;:::-;23641:8;:64::i;34067:67::-;9669:13;:11;:13::i;:::-;34116:10:::1;:8;:10::i;:::-;34067:67::o:0;10431:103::-;9669:13;:11;:13::i;:::-;10496:30:::1;10523:1;10496:18;:30::i;33996:63::-:0;9669:13;:11;:13::i;:::-;34043:8:::1;:6;:8::i;33542:156::-:0;9669:13;:11;:13::i;:::-;33634:3:::1;33620:10;:17;;33612:47;;;::::0;-1:-1:-1;;;33612:47:0;;4623:2:1;33612:47:0::1;::::0;::::1;4605:21:1::0;4662:2;4642:18;;;4635:30;-1:-1:-1;;;4681:18:1;;;4674:47;4738:18;;33612:47:0::1;;;;;;;;;33670:7;:20:::0;33542:156::o;19880:104::-;19936:13;19969:7;19962:14;;;;;:::i;24238:436::-;24331:4;8414:10;24331:4;24414:25;8414:10;24431:7;24414:9;:25::i;:::-;24387:52;;24478:15;24458:16;:35;;24450:85;;;;-1:-1:-1;;;24450:85:0;;4969:2:1;24450:85:0;;;4951:21:1;5008:2;4988:18;;;4981:30;5047:34;5027:18;;;5020:62;-1:-1:-1;;;5098:18:1;;;5091:35;5143:19;;24450:85:0;4767:401:1;24450:85:0;24571:60;24580:5;24587:7;24615:15;24596:16;:34;24571:8;:60::i;21285:193::-;21364:4;8414:10;21420:28;8414:10;21437:2;21441:6;21420:9;:28::i;33706:150::-;9669:13;:11;:13::i;:::-;33795:3:::1;33782:9;:16;;33774:45;;;::::0;-1:-1:-1;;;33774:45:0;;5375:2:1;33774:45:0::1;::::0;::::1;5357:21:1::0;5414:2;5394:18;;;5387:30;-1:-1:-1;;;5433:18:1;;;5426:46;5489:18;;33774:45:0::1;5173:340:1::0;33774:45:0::1;33830:6;:18:::0;33706:150::o;21541:151::-;-1:-1:-1;;;;;21657:18:0;;;21630:7;21657:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21541:151::o;34285:111::-;9669:13;:11;:13::i;:::-;34352:36:::1;::::0;34360:10:::1;::::0;34352:36;::::1;;;::::0;34381:6;;34352:36:::1;::::0;;;34381:6;34360:10;34352:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;34285:111:::0;:::o;10689:201::-;9669:13;:11;:13::i;:::-;-1:-1:-1;;;;;10778:22:0;::::1;10770:73;;;::::0;-1:-1:-1;;;10770:73:0;;5720:2:1;10770:73:0::1;::::0;::::1;5702:21:1::0;5759:2;5739:18;;;5732:30;5798:34;5778:18;;;5771:62;-1:-1:-1;;;5849:18:1;;;5842:36;5895:19;;10770:73:0::1;5518:402:1::0;10770:73:0::1;10854:28;10873:8;10854:18;:28::i;9948:132::-:0;9856:6;;-1:-1:-1;;;;;9856:6:0;;;;;8414:10;10012:23;10004:68;;;;-1:-1:-1;;;10004:68:0;;6127:2:1;10004:68:0;;;6109:21:1;;;6146:18;;;6139:30;6205:34;6185:18;;;6178:62;6257:18;;10004:68:0;5925:356:1;28265:380:0;-1:-1:-1;;;;;28401:19:0;;28393:68;;;;-1:-1:-1;;;28393:68:0;;6488:2:1;28393:68:0;;;6470:21:1;6527:2;6507:18;;;6500:30;6566:34;6546:18;;;6539:62;-1:-1:-1;;;6617:18:1;;;6610:34;6661:19;;28393:68:0;6286:400:1;28393:68:0;-1:-1:-1;;;;;28480:21:0;;28472:68;;;;-1:-1:-1;;;28472:68:0;;6893:2:1;28472:68:0;;;6875:21:1;6932:2;6912:18;;;6905:30;6971:34;6951:18;;;6944:62;-1:-1:-1;;;7022:18:1;;;7015:32;7064:19;;28472:68:0;6691:398:1;28472:68:0;-1:-1:-1;;;;;28553:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28605:32;;1767:25:1;;;28605:32:0;;1740:18:1;28605:32:0;;;;;;;28265:380;;;:::o;28936:453::-;29071:24;29098:25;29108:5;29115:7;29098:9;:25::i;:::-;29071:52;;-1:-1:-1;;29138:16:0;:37;29134:248;;29220:6;29200:16;:26;;29192:68;;;;-1:-1:-1;;;29192:68:0;;7296:2:1;29192:68:0;;;7278:21:1;7335:2;7315:18;;;7308:30;7374:31;7354:18;;;7347:59;7423:18;;29192:68:0;7094:353:1;29192:68:0;29304:51;29313:5;29320:7;29348:6;29329:16;:25;29304:8;:51::i;:::-;29060:329;28936:453;;;:::o;31929:1607::-;31810:11;;;;31802:38;;;;-1:-1:-1;;;31802:38:0;;7654:2:1;31802:38:0;;;7636:21:1;7693:2;7673:18;;;7666:30;-1:-1:-1;;;7712:18:1;;;7705:44;7766:18;;31802:38:0;7452:338:1;31802:38:0;31851:11;:19;;-1:-1:-1;;31851:19:0;;;-1:-1:-1;;;;;32053:23:0;::::1;::::0;;:53:::1;;-1:-1:-1::0;;;;;;32080:26:0;::::1;32101:4;32080:26;32053:53;32049:1468;;;32170:42;32186:6;32194:9;32205:6;32170:15;:42::i;:::-;32049:1468;;;9856:6:::0;;-1:-1:-1;;;;;32234:17:0;;::::1;9856:6:::0;;;;;32234:17:::1;::::0;:41:::1;;-1:-1:-1::0;9856:6:0;;-1:-1:-1;;;;;32255:20:0;;::::1;9856:6:::0;;;;;32255:20:::1;32234:41;32230:1287;;;32354:42;32370:6;32378:9;32389:6;32354:15;:42::i;32230:1287::-;32487:13;::::0;32429:17:::1;::::0;-1:-1:-1;;;;;32487:13:0::1;32465:10;:36:::0;32461:976:::1;;32588:5;32578:6;;32569;:15;;;;:::i;:::-;32568:25;;;;:::i;:::-;32636:11;::::0;32556:37;;-1:-1:-1;32612:57:0::1;::::0;32628:6;;-1:-1:-1;;;;;32636:11:0::1;32667:1;32650:13;32556:37:::0;32662:1:::1;32650:13;:::i;:::-;32649:19;;;;:::i;:::-;32612:15;:57::i;:::-;32712:10;::::0;32688:56:::1;::::0;32704:6;;-1:-1:-1;;;;;32712:10:0::1;32742:1;32725:13;:9:::0;32712:10;32725:13:::1;:::i;32688:56::-;32461:976;;;32871:10;::::0;-1:-1:-1;;;;;32861:20:0;;::::1;32871:10:::0;::::1;32861:20;::::0;::::1;::::0;:45:::1;;-1:-1:-1::0;32895:11:0::1;::::0;-1:-1:-1;;;;;32885:21:0;;::::1;32895:11:::0;::::1;32885:21;;32861:45;32857:565;;;33044:5;33033:7;;33024:6;:16;;;;:::i;:::-;33023:26;;;;:::i;:::-;33096:10;::::0;33011:38;;-1:-1:-1;33072:56:0::1;::::0;33088:6;;-1:-1:-1;;;;;33096:10:0::1;33126:1;33109:13;33011:38:::0;33121:1:::1;33109:13;:::i;33072:56::-;33175:11;::::0;33151:57:::1;::::0;33167:6;;-1:-1:-1;;;;;33175:11:0::1;33206:1;33189:13;:9:::0;33175:11;33189:13:::1;:::i;32857:565::-;33331:42;33347:6;33355:9;33366:6;33331:15;:42::i;:::-;33396:7;;;32857:565;33451:54;33467:6:::0;33475:9;33486:18:::1;33495:9:::0;33486:6;:18:::1;:::i;33451:54::-;32414:1103;32230:1287;-1:-1:-1::0;;31893:11:0;:18;;-1:-1:-1;;31893:18:0;31907:4;31893:18;;;-1:-1:-1;31929:1607:0:o;13776:120::-;12785:16;:14;:16::i;:::-;13835:7:::1;:15:::0;;-1:-1:-1;;13835:15:0::1;::::0;;13866:22:::1;8414:10:::0;13875:12:::1;13866:22;::::0;-1:-1:-1;;;;;1577:32:1;;;1559:51;;1547:2;1532:18;13866:22:0::1;;;;;;;13776:120::o:0;11050:191::-;11143:6;;;-1:-1:-1;;;;;11160:17:0;;;11143:6;11160:17;;;-1:-1:-1;;;;;;11160:17:0;;;;;;11193:40;;11143:6;;;;;;;;11193:40;;11124:16;;11193:40;11113:128;11050:191;:::o;13517:118::-;12526:19;:17;:19::i;:::-;13577:7:::1;:14:::0;;-1:-1:-1;;13577:14:0::1;13587:4;13577:14;::::0;;13607:20:::1;13614:12;8414:10:::0;;8334:98;25144:840;-1:-1:-1;;;;;25275:18:0;;25267:68;;;;-1:-1:-1;;;25267:68:0;;8525:2:1;25267:68:0;;;8507:21:1;8564:2;8544:18;;;8537:30;8603:34;8583:18;;;8576:62;-1:-1:-1;;;8654:18:1;;;8647:35;8699:19;;25267:68:0;8323:401:1;25267:68:0;-1:-1:-1;;;;;25354:16:0;;25346:64;;;;-1:-1:-1;;;25346:64:0;;8931:2:1;25346:64:0;;;8913:21:1;8970:2;8950:18;;;8943:30;9009:34;8989:18;;;8982:62;-1:-1:-1;;;9060:18:1;;;9053:33;9103:19;;25346:64:0;8729:399:1;25346:64:0;-1:-1:-1;;;;;25496:15:0;;25474:19;25496:15;;;;;;;;;;;25530:21;;;;25522:72;;;;-1:-1:-1;;;25522:72:0;;9335:2:1;25522:72:0;;;9317:21:1;9374:2;9354:18;;;9347:30;9413:34;9393:18;;;9386:62;-1:-1:-1;;;9464:18:1;;;9457:36;9510:19;;25522:72:0;9133:402:1;25522:72:0;-1:-1:-1;;;;;25630:15:0;;;:9;:15;;;;;;;;;;;25648:20;;;25630:38;;25848:13;;;;;;;;;;:23;;;;;;25900:26;;1767:25:1;;;25848:13:0;;25900:26;;1740:18:1;25900:26:0;;;;;;;25939:37;34142:135;13265:108;12992:7;;;;13324:41;;;;-1:-1:-1;;;13324:41:0;;9742:2:1;13324:41:0;;;9724:21:1;9781:2;9761:18;;;9754:30;-1:-1:-1;;;9800:18:1;;;9793:50;9860:18;;13324:41:0;9540:344:1;13080:108:0;12992:7;;;;13150:9;13142:38;;;;-1:-1:-1;;;13142:38:0;;10091:2:1;13142:38:0;;;10073:21:1;10130:2;10110:18;;;10103:30;-1:-1:-1;;;10149:18:1;;;10142:46;10205:18;;13142:38:0;9889:340:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;451:548::-;563:4;592:2;621;610:9;603:21;653:6;647:13;696:6;691:2;680:9;676:18;669:34;721:1;731:140;745:6;742:1;739:13;731:140;;;840:14;;;836:23;;830:30;806:17;;;825:2;802:26;795:66;760:10;;731:140;;;735:3;920:1;915:2;906:6;895:9;891:22;887:31;880:42;990:2;983;979:7;974:2;966:6;962:15;958:29;947:9;943:45;939:54;931:62;;;;451:548;;;;:::o;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;:::-;1337:39;1196:186;-1:-1:-1;;;1196:186:1:o;1803:328::-;1880:6;1888;1896;1949:2;1937:9;1928:7;1924:23;1920:32;1917:52;;;1965:1;1962;1955:12;1917:52;1988:29;2007:9;1988:29;:::i;:::-;1978:39;;2036:38;2070:2;2059:9;2055:18;2036:38;:::i;:::-;2026:48;;2121:2;2110:9;2106:18;2093:32;2083:42;;1803:328;;;;;:::o;2763:180::-;2822:6;2875:2;2863:9;2854:7;2850:23;2846:32;2843:52;;;2891:1;2888;2881:12;2843:52;-1:-1:-1;2914:23:1;;2763:180;-1:-1:-1;2763:180:1:o;2948:260::-;3016:6;3024;3077:2;3065:9;3056:7;3052:23;3048:32;3045:52;;;3093:1;3090;3083:12;3045:52;3116:29;3135:9;3116:29;:::i;:::-;3106:39;;3164:38;3198:2;3187:9;3183:18;3164:38;:::i;:::-;3154:48;;2948:260;;;;;:::o;3492:277::-;3559:6;3612:2;3600:9;3591:7;3587:23;3583:32;3580:52;;;3628:1;3625;3618:12;3580:52;3660:9;3654:16;3713:5;3706:13;3699:21;3692:5;3689:32;3679:60;;3735:1;3732;3725:12;3774:380;3853:1;3849:12;;;;3896;;;3917:61;;3971:4;3963:6;3959:17;3949:27;;3917:61;4024:2;4016:6;4013:14;3993:18;3990:38;3987:161;;4070:10;4065:3;4061:20;4058:1;4051:31;4105:4;4102:1;4095:15;4133:4;4130:1;4123:15;3987:161;;3774:380;;;:::o;4159:127::-;4220:10;4215:3;4211:20;4208:1;4201:31;4251:4;4248:1;4241:15;4275:4;4272:1;4265:15;4291:125;4356:9;;;4377:10;;;4374:36;;;4390:18;;:::i;7795:168::-;7868:9;;;7899;;7916:15;;;7910:22;;7896:37;7886:71;;7937:18;;:::i;7968:217::-;8008:1;8034;8024:132;;8078:10;8073:3;8069:20;8066:1;8059:31;8113:4;8110:1;8103:15;8141:4;8138:1;8131:15;8024:132;-1:-1:-1;8170:9:1;;7968:217::o;8190:128::-;8257:9;;;8278:11;;;8275:37;;;8292:18;;:::i

Swarm Source

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