ETH Price: $2,406.31 (+0.67%)

Token

MuzzleToken (MUZZ)
 

Overview

Max Total Supply

21,000,000,000 MUZZ

Holders

18

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
77,038,677.631729164807488783 MUZZ

Value
$0.00
0xb053f4aa31b24ece46556e246293a620d9fc5d95
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:
MuzzleToken

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Muzzle.sol
// 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);
    }
}

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

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"}]

608060405273040235c58c65e66ac538d46473b8b6a4f6177e8c600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073218f04bb5ecb45f9d36e95dab6ada575905de44d600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101f4600a55610190600b55670de0b6b3a7640000600c55348015620000d357600080fd5b50604051620030d5380380620030d58339818101604052810190620000f9919062000577565b6040518060400160405280600b81526020017f4d757a7a6c65546f6b656e0000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d555a5a00000000000000000000000000000000000000000000000000000000815250816003908162000176919062000823565b50806004908162000188919062000823565b5050506000600560006101000a81548160ff021916908315150217905550620001c6620001ba620002bf60201b60201c565b620002c760201b60201c565b6001600d60006101000a81548160ff021916908315150217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002b8336200028c6200038d60201b60201c565b600a6200029a919062000a9a565b6404e3b29200620002ac919062000aeb565b6200039660201b60201c565b5062000c22565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000408576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ff9062000b97565b60405180910390fd5b6200041c600083836200050360201b60201c565b806002600082825462000430919062000bb9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004e3919062000c05565b60405180910390a3620004ff600083836200050860201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200053f8262000512565b9050919050565b620005518162000532565b81146200055d57600080fd5b50565b600081519050620005718162000546565b92915050565b60006020828403121562000590576200058f6200050d565b5b6000620005a08482850162000560565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200062b57607f821691505b602082108103620006415762000640620005e3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006ab7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200066c565b620006b786836200066c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000704620006fe620006f884620006cf565b620006d9565b620006cf565b9050919050565b6000819050919050565b6200072083620006e3565b620007386200072f826200070b565b84845462000679565b825550505050565b600090565b6200074f62000740565b6200075c81848462000715565b505050565b5b8181101562000784576200077860008262000745565b60018101905062000762565b5050565b601f821115620007d3576200079d8162000647565b620007a8846200065c565b81016020851015620007b8578190505b620007d0620007c7856200065c565b83018262000761565b50505b505050565b600082821c905092915050565b6000620007f860001984600802620007d8565b1980831691505092915050565b6000620008138383620007e5565b9150826002028217905092915050565b6200082e82620005a9565b67ffffffffffffffff8111156200084a5762000849620005b4565b5b62000856825462000612565b6200086382828562000788565b600060209050601f8311600181146200089b576000841562000886578287015190505b62000892858262000805565b86555062000902565b601f198416620008ab8662000647565b60005b82811015620008d557848901518255600182019150602085019450602081019050620008ae565b86831015620008f55784890151620008f1601f891682620007e5565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620009985780860481111562000970576200096f6200090a565b5b6001851615620009805780820291505b8081029050620009908562000939565b945062000950565b94509492505050565b600082620009b3576001905062000a86565b81620009c3576000905062000a86565b8160018114620009dc5760028114620009e75762000a1d565b600191505062000a86565b60ff841115620009fc57620009fb6200090a565b5b8360020a91508482111562000a165762000a156200090a565b5b5062000a86565b5060208310610133831016604e8410600b841016171562000a575782820a90508381111562000a515762000a506200090a565b5b62000a86565b62000a66848484600162000946565b9250905081840481111562000a805762000a7f6200090a565b5b81810290505b9392505050565b600060ff82169050919050565b600062000aa782620006cf565b915062000ab48362000a8d565b925062000ae37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009a1565b905092915050565b600062000af882620006cf565b915062000b0583620006cf565b925082820262000b1581620006cf565b9150828204841483151762000b2f5762000b2e6200090a565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b7f601f8362000b36565b915062000b8c8262000b47565b602082019050919050565b6000602082019050818103600083015262000bb28162000b70565b9050919050565b600062000bc682620006cf565b915062000bd383620006cf565b925082820190508082111562000bee5762000bed6200090a565b5b92915050565b62000bff81620006cf565b82525050565b600060208201905062000c1c600083018462000bf4565b92915050565b6124a38062000c326000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a61161010457806395d89b41116100a2578063dc1052e211610071578063dc1052e2146104ec578063dd62ed3e14610508578063f14210a614610538578063f2fde38b14610554576101cf565b806395d89b4114610450578063a457c2d71461046e578063a9059cbb1461049e578063cc1776d3146104ce576101cf565b806388e7670f116100de57806388e7670f146103da5780638cd09d50146103f85780638da5cb5b14610414578063907af6c014610432576101cf565b8063715018a6146103a85780637b929c27146103b25780638456cb59146103d0576101cf565b8063313ce5671161017157806349bd5a5e1161014b57806349bd5a5e1461031e5780634f7041a51461033c5780635c975abb1461035a57806370a0823114610378576101cf565b8063313ce567146102c657806339509351146102e45780633f4ba83a14610314576101cf565b806313af4035116101ad57806313af40351461023e5780631694505e1461025a57806318160ddd1461027857806323b872dd14610296576101cf565b806306b091f9146101d457806306fdde03146101f0578063095ea7b31461020e575b600080fd5b6101ee60048036038101906101e9919061180a565b610570565b005b6101f86105fb565b60405161020591906118da565b60405180910390f35b6102286004803603810190610223919061180a565b61068d565b6040516102359190611917565b60405180910390f35b61025860048036038101906102539190611932565b6106b0565b005b6102626106c4565b60405161026f91906119be565b60405180910390f35b6102806106ea565b60405161028d91906119e8565b60405180910390f35b6102b060048036038101906102ab9190611a03565b6106f4565b6040516102bd9190611917565b60405180910390f35b6102ce610723565b6040516102db9190611a72565b60405180910390f35b6102fe60048036038101906102f9919061180a565b61072c565b60405161030b9190611917565b60405180910390f35b61031c610763565b005b610326610775565b6040516103339190611aae565b60405180910390f35b61034461079b565b60405161035191906119e8565b60405180910390f35b6103626107a1565b60405161036f9190611917565b60405180910390f35b610392600480360381019061038d9190611932565b6107b8565b60405161039f91906119e8565b60405180910390f35b6103b0610800565b005b6103ba610814565b6040516103c79190611ad8565b60405180910390f35b6103d861083a565b005b6103e261084c565b6040516103ef9190611ad8565b60405180910390f35b610412600480360381019061040d9190611af3565b610872565b005b61041c6108c9565b6040516104299190611ad8565b60405180910390f35b61043a6108f3565b60405161044791906119e8565b60405180910390f35b6104586108f9565b60405161046591906118da565b60405180910390f35b6104886004803603810190610483919061180a565b61098b565b6040516104959190611917565b60405180910390f35b6104b860048036038101906104b3919061180a565b610a02565b6040516104c59190611917565b60405180910390f35b6104d6610a25565b6040516104e391906119e8565b60405180910390f35b61050660048036038101906105019190611af3565b610a2b565b005b610522600480360381019061051d9190611b20565b610a82565b60405161052f91906119e8565b60405180910390f35b610552600480360381019061054d9190611af3565b610b09565b005b61056e60048036038101906105699190611932565b610b5b565b005b610578610bde565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016105b3929190611b60565b6020604051808303816000875af11580156105d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f69190611bb5565b505050565b60606003805461060a90611c11565b80601f016020809104026020016040519081016040528092919081815260200182805461063690611c11565b80156106835780601f1061065857610100808354040283529160200191610683565b820191906000526020600020905b81548152906001019060200180831161066657829003601f168201915b5050505050905090565b600080610698610c5c565b90506106a5818585610c64565b600191505092915050565b6106b8610bde565b6106c181610b5b565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6000806106ff610c5c565b905061070c858285610e2d565b610717858585610eb9565b60019150509392505050565b60006012905090565b600080610737610c5c565b90506107588185856107498589610a82565b6107539190611c71565b610c64565b600191505092915050565b61076b610bde565b6107736112d2565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610808610bde565b6108126000611335565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610842610bde565b61084a6113fb565b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61087a610bde565b6101908111156108bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b690611cf1565b60405180910390fd5b80600a8190555050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b60606004805461090890611c11565b80601f016020809104026020016040519081016040528092919081815260200182805461093490611c11565b80156109815780601f1061095657610100808354040283529160200191610981565b820191906000526020600020905b81548152906001019060200180831161096457829003601f168201915b5050505050905090565b600080610996610c5c565b905060006109a48286610a82565b9050838110156109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090611d83565b60405180910390fd5b6109f68286868403610c64565b60019250505092915050565b600080610a0d610c5c565b9050610a1a818585610eb9565b600191505092915050565b600a5481565b610a33610bde565b610190811115610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f90611def565b60405180910390fd5b80600b8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b11610bde565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b57573d6000803e3d6000fd5b5050565b610b63610bde565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc990611e81565b60405180910390fd5b610bdb81611335565b50565b610be6610c5c565b73ffffffffffffffffffffffffffffffffffffffff16610c046108c9565b73ffffffffffffffffffffffffffffffffffffffff1614610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190611eed565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90611f7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990612011565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e2091906119e8565b60405180910390a3505050565b6000610e398484610a82565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eb35781811015610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c9061207d565b60405180910390fd5b610eb28484848403610c64565b5b50505050565b600d60009054906101000a900460ff16610f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eff906120e9565b60405180910390fd5b6000600d60006101000a81548160ff021916908315150217905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480610f8957503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15610f9e57610f9983838361145e565b6112b1565b610fa66108c9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806110115750610fe26108c9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156110265761102183838361145e565b6112b0565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff160361112957612710600b548361108e9190612109565b611098919061217a565b90506110df84600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660046003856110d09190612109565b6110da919061217a565b61145e565b61112484600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660046001856111159190612109565b61111f919061217a565b61145e565b611298565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156111d55750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561128657612710600a54836111eb9190612109565b6111f5919061217a565b905061123c84600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600560048561122d9190612109565b611237919061217a565b61145e565b61128184600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660056001856112729190612109565b61127c919061217a565b61145e565b611297565b61129184848461145e565b506112b2565b5b6112ae848483856112a991906121ab565b61145e565b505b5b5b6001600d60006101000a81548160ff021916908315150217905550505050565b6112da6116d4565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61131e610c5c565b60405161132b9190611ad8565b60405180910390a1565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61140361171d565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611447610c5c565b6040516114549190611ad8565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490612251565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361153c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611533906122e3565b60405180910390fd5b611547838383611767565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c490612375565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116bb91906119e8565b60405180910390a36116ce84848461176c565b50505050565b6116dc6107a1565b61171b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611712906123e1565b60405180910390fd5b565b6117256107a1565b15611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c9061244d565b60405180910390fd5b565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117a182611776565b9050919050565b6117b181611796565b81146117bc57600080fd5b50565b6000813590506117ce816117a8565b92915050565b6000819050919050565b6117e7816117d4565b81146117f257600080fd5b50565b600081359050611804816117de565b92915050565b6000806040838503121561182157611820611771565b5b600061182f858286016117bf565b9250506020611840858286016117f5565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611884578082015181840152602081019050611869565b60008484015250505050565b6000601f19601f8301169050919050565b60006118ac8261184a565b6118b68185611855565b93506118c6818560208601611866565b6118cf81611890565b840191505092915050565b600060208201905081810360008301526118f481846118a1565b905092915050565b60008115159050919050565b611911816118fc565b82525050565b600060208201905061192c6000830184611908565b92915050565b60006020828403121561194857611947611771565b5b6000611956848285016117bf565b91505092915050565b6000819050919050565b600061198461197f61197a84611776565b61195f565b611776565b9050919050565b600061199682611969565b9050919050565b60006119a88261198b565b9050919050565b6119b88161199d565b82525050565b60006020820190506119d360008301846119af565b92915050565b6119e2816117d4565b82525050565b60006020820190506119fd60008301846119d9565b92915050565b600080600060608486031215611a1c57611a1b611771565b5b6000611a2a868287016117bf565b9350506020611a3b868287016117bf565b9250506040611a4c868287016117f5565b9150509250925092565b600060ff82169050919050565b611a6c81611a56565b82525050565b6000602082019050611a876000830184611a63565b92915050565b6000611a988261198b565b9050919050565b611aa881611a8d565b82525050565b6000602082019050611ac36000830184611a9f565b92915050565b611ad281611796565b82525050565b6000602082019050611aed6000830184611ac9565b92915050565b600060208284031215611b0957611b08611771565b5b6000611b17848285016117f5565b91505092915050565b60008060408385031215611b3757611b36611771565b5b6000611b45858286016117bf565b9250506020611b56858286016117bf565b9150509250929050565b6000604082019050611b756000830185611ac9565b611b8260208301846119d9565b9392505050565b611b92816118fc565b8114611b9d57600080fd5b50565b600081519050611baf81611b89565b92915050565b600060208284031215611bcb57611bca611771565b5b6000611bd984828501611ba0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c2957607f821691505b602082108103611c3c57611c3b611be2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c7c826117d4565b9150611c87836117d4565b9250828201905080821115611c9f57611c9e611c42565b5b92915050565b7f53656c6c2074617820746f6f2068696768000000000000000000000000000000600082015250565b6000611cdb601183611855565b9150611ce682611ca5565b602082019050919050565b60006020820190508181036000830152611d0a81611cce565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d6d602583611855565b9150611d7882611d11565b604082019050919050565b60006020820190508181036000830152611d9c81611d60565b9050919050565b7f4275792074617820746f6f206869676800000000000000000000000000000000600082015250565b6000611dd9601083611855565b9150611de482611da3565b602082019050919050565b60006020820190508181036000830152611e0881611dcc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e6b602683611855565b9150611e7682611e0f565b604082019050919050565b60006020820190508181036000830152611e9a81611e5e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ed7602083611855565b9150611ee282611ea1565b602082019050919050565b60006020820190508181036000830152611f0681611eca565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611f69602483611855565b9150611f7482611f0d565b604082019050919050565b60006020820190508181036000830152611f9881611f5c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ffb602283611855565b915061200682611f9f565b604082019050919050565b6000602082019050818103600083015261202a81611fee565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612067601d83611855565b915061207282612031565b602082019050919050565b600060208201905081810360008301526120968161205a565b9050919050565b7f5265656e7472616e742063616c6c000000000000000000000000000000000000600082015250565b60006120d3600e83611855565b91506120de8261209d565b602082019050919050565b60006020820190508181036000830152612102816120c6565b9050919050565b6000612114826117d4565b915061211f836117d4565b925082820261212d816117d4565b9150828204841483151761214457612143611c42565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612185826117d4565b9150612190836117d4565b9250826121a05761219f61214b565b5b828204905092915050565b60006121b6826117d4565b91506121c1836117d4565b92508282039050818111156121d9576121d8611c42565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061223b602583611855565b9150612246826121df565b604082019050919050565b6000602082019050818103600083015261226a8161222e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006122cd602383611855565b91506122d882612271565b604082019050919050565b600060208201905081810360008301526122fc816122c0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061235f602683611855565b915061236a82612303565b604082019050919050565b6000602082019050818103600083015261238e81612352565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006123cb601483611855565b91506123d682612395565b602082019050919050565b600060208201905081810360008301526123fa816123be565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612437601083611855565b915061244282612401565b602082019050919050565b600060208201905081810360008301526124668161242a565b905091905056fea2646970667358221220f4436bb500450e5b71e4512c3f7e88eeb097ee600416c66b3f0d1fb4f17ee6d964736f6c634300081300330000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a61161010457806395d89b41116100a2578063dc1052e211610071578063dc1052e2146104ec578063dd62ed3e14610508578063f14210a614610538578063f2fde38b14610554576101cf565b806395d89b4114610450578063a457c2d71461046e578063a9059cbb1461049e578063cc1776d3146104ce576101cf565b806388e7670f116100de57806388e7670f146103da5780638cd09d50146103f85780638da5cb5b14610414578063907af6c014610432576101cf565b8063715018a6146103a85780637b929c27146103b25780638456cb59146103d0576101cf565b8063313ce5671161017157806349bd5a5e1161014b57806349bd5a5e1461031e5780634f7041a51461033c5780635c975abb1461035a57806370a0823114610378576101cf565b8063313ce567146102c657806339509351146102e45780633f4ba83a14610314576101cf565b806313af4035116101ad57806313af40351461023e5780631694505e1461025a57806318160ddd1461027857806323b872dd14610296576101cf565b806306b091f9146101d457806306fdde03146101f0578063095ea7b31461020e575b600080fd5b6101ee60048036038101906101e9919061180a565b610570565b005b6101f86105fb565b60405161020591906118da565b60405180910390f35b6102286004803603810190610223919061180a565b61068d565b6040516102359190611917565b60405180910390f35b61025860048036038101906102539190611932565b6106b0565b005b6102626106c4565b60405161026f91906119be565b60405180910390f35b6102806106ea565b60405161028d91906119e8565b60405180910390f35b6102b060048036038101906102ab9190611a03565b6106f4565b6040516102bd9190611917565b60405180910390f35b6102ce610723565b6040516102db9190611a72565b60405180910390f35b6102fe60048036038101906102f9919061180a565b61072c565b60405161030b9190611917565b60405180910390f35b61031c610763565b005b610326610775565b6040516103339190611aae565b60405180910390f35b61034461079b565b60405161035191906119e8565b60405180910390f35b6103626107a1565b60405161036f9190611917565b60405180910390f35b610392600480360381019061038d9190611932565b6107b8565b60405161039f91906119e8565b60405180910390f35b6103b0610800565b005b6103ba610814565b6040516103c79190611ad8565b60405180910390f35b6103d861083a565b005b6103e261084c565b6040516103ef9190611ad8565b60405180910390f35b610412600480360381019061040d9190611af3565b610872565b005b61041c6108c9565b6040516104299190611ad8565b60405180910390f35b61043a6108f3565b60405161044791906119e8565b60405180910390f35b6104586108f9565b60405161046591906118da565b60405180910390f35b6104886004803603810190610483919061180a565b61098b565b6040516104959190611917565b60405180910390f35b6104b860048036038101906104b3919061180a565b610a02565b6040516104c59190611917565b60405180910390f35b6104d6610a25565b6040516104e391906119e8565b60405180910390f35b61050660048036038101906105019190611af3565b610a2b565b005b610522600480360381019061051d9190611b20565b610a82565b60405161052f91906119e8565b60405180910390f35b610552600480360381019061054d9190611af3565b610b09565b005b61056e60048036038101906105699190611932565b610b5b565b005b610578610bde565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016105b3929190611b60565b6020604051808303816000875af11580156105d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f69190611bb5565b505050565b60606003805461060a90611c11565b80601f016020809104026020016040519081016040528092919081815260200182805461063690611c11565b80156106835780601f1061065857610100808354040283529160200191610683565b820191906000526020600020905b81548152906001019060200180831161066657829003601f168201915b5050505050905090565b600080610698610c5c565b90506106a5818585610c64565b600191505092915050565b6106b8610bde565b6106c181610b5b565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6000806106ff610c5c565b905061070c858285610e2d565b610717858585610eb9565b60019150509392505050565b60006012905090565b600080610737610c5c565b90506107588185856107498589610a82565b6107539190611c71565b610c64565b600191505092915050565b61076b610bde565b6107736112d2565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610808610bde565b6108126000611335565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610842610bde565b61084a6113fb565b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61087a610bde565b6101908111156108bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b690611cf1565b60405180910390fd5b80600a8190555050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b60606004805461090890611c11565b80601f016020809104026020016040519081016040528092919081815260200182805461093490611c11565b80156109815780601f1061095657610100808354040283529160200191610981565b820191906000526020600020905b81548152906001019060200180831161096457829003601f168201915b5050505050905090565b600080610996610c5c565b905060006109a48286610a82565b9050838110156109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090611d83565b60405180910390fd5b6109f68286868403610c64565b60019250505092915050565b600080610a0d610c5c565b9050610a1a818585610eb9565b600191505092915050565b600a5481565b610a33610bde565b610190811115610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f90611def565b60405180910390fd5b80600b8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b11610bde565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b57573d6000803e3d6000fd5b5050565b610b63610bde565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc990611e81565b60405180910390fd5b610bdb81611335565b50565b610be6610c5c565b73ffffffffffffffffffffffffffffffffffffffff16610c046108c9565b73ffffffffffffffffffffffffffffffffffffffff1614610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190611eed565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90611f7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990612011565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e2091906119e8565b60405180910390a3505050565b6000610e398484610a82565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eb35781811015610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c9061207d565b60405180910390fd5b610eb28484848403610c64565b5b50505050565b600d60009054906101000a900460ff16610f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eff906120e9565b60405180910390fd5b6000600d60006101000a81548160ff021916908315150217905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480610f8957503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15610f9e57610f9983838361145e565b6112b1565b610fa66108c9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806110115750610fe26108c9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156110265761102183838361145e565b6112b0565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff160361112957612710600b548361108e9190612109565b611098919061217a565b90506110df84600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660046003856110d09190612109565b6110da919061217a565b61145e565b61112484600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660046001856111159190612109565b61111f919061217a565b61145e565b611298565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156111d55750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561128657612710600a54836111eb9190612109565b6111f5919061217a565b905061123c84600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600560048561122d9190612109565b611237919061217a565b61145e565b61128184600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660056001856112729190612109565b61127c919061217a565b61145e565b611297565b61129184848461145e565b506112b2565b5b6112ae848483856112a991906121ab565b61145e565b505b5b5b6001600d60006101000a81548160ff021916908315150217905550505050565b6112da6116d4565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61131e610c5c565b60405161132b9190611ad8565b60405180910390a1565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61140361171d565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611447610c5c565b6040516114549190611ad8565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490612251565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361153c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611533906122e3565b60405180910390fd5b611547838383611767565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c490612375565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116bb91906119e8565b60405180910390a36116ce84848461176c565b50505050565b6116dc6107a1565b61171b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611712906123e1565b60405180910390fd5b565b6117256107a1565b15611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c9061244d565b60405180910390fd5b565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117a182611776565b9050919050565b6117b181611796565b81146117bc57600080fd5b50565b6000813590506117ce816117a8565b92915050565b6000819050919050565b6117e7816117d4565b81146117f257600080fd5b50565b600081359050611804816117de565b92915050565b6000806040838503121561182157611820611771565b5b600061182f858286016117bf565b9250506020611840858286016117f5565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611884578082015181840152602081019050611869565b60008484015250505050565b6000601f19601f8301169050919050565b60006118ac8261184a565b6118b68185611855565b93506118c6818560208601611866565b6118cf81611890565b840191505092915050565b600060208201905081810360008301526118f481846118a1565b905092915050565b60008115159050919050565b611911816118fc565b82525050565b600060208201905061192c6000830184611908565b92915050565b60006020828403121561194857611947611771565b5b6000611956848285016117bf565b91505092915050565b6000819050919050565b600061198461197f61197a84611776565b61195f565b611776565b9050919050565b600061199682611969565b9050919050565b60006119a88261198b565b9050919050565b6119b88161199d565b82525050565b60006020820190506119d360008301846119af565b92915050565b6119e2816117d4565b82525050565b60006020820190506119fd60008301846119d9565b92915050565b600080600060608486031215611a1c57611a1b611771565b5b6000611a2a868287016117bf565b9350506020611a3b868287016117bf565b9250506040611a4c868287016117f5565b9150509250925092565b600060ff82169050919050565b611a6c81611a56565b82525050565b6000602082019050611a876000830184611a63565b92915050565b6000611a988261198b565b9050919050565b611aa881611a8d565b82525050565b6000602082019050611ac36000830184611a9f565b92915050565b611ad281611796565b82525050565b6000602082019050611aed6000830184611ac9565b92915050565b600060208284031215611b0957611b08611771565b5b6000611b17848285016117f5565b91505092915050565b60008060408385031215611b3757611b36611771565b5b6000611b45858286016117bf565b9250506020611b56858286016117bf565b9150509250929050565b6000604082019050611b756000830185611ac9565b611b8260208301846119d9565b9392505050565b611b92816118fc565b8114611b9d57600080fd5b50565b600081519050611baf81611b89565b92915050565b600060208284031215611bcb57611bca611771565b5b6000611bd984828501611ba0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c2957607f821691505b602082108103611c3c57611c3b611be2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c7c826117d4565b9150611c87836117d4565b9250828201905080821115611c9f57611c9e611c42565b5b92915050565b7f53656c6c2074617820746f6f2068696768000000000000000000000000000000600082015250565b6000611cdb601183611855565b9150611ce682611ca5565b602082019050919050565b60006020820190508181036000830152611d0a81611cce565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d6d602583611855565b9150611d7882611d11565b604082019050919050565b60006020820190508181036000830152611d9c81611d60565b9050919050565b7f4275792074617820746f6f206869676800000000000000000000000000000000600082015250565b6000611dd9601083611855565b9150611de482611da3565b602082019050919050565b60006020820190508181036000830152611e0881611dcc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e6b602683611855565b9150611e7682611e0f565b604082019050919050565b60006020820190508181036000830152611e9a81611e5e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ed7602083611855565b9150611ee282611ea1565b602082019050919050565b60006020820190508181036000830152611f0681611eca565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611f69602483611855565b9150611f7482611f0d565b604082019050919050565b60006020820190508181036000830152611f9881611f5c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ffb602283611855565b915061200682611f9f565b604082019050919050565b6000602082019050818103600083015261202a81611fee565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612067601d83611855565b915061207282612031565b602082019050919050565b600060208201905081810360008301526120968161205a565b9050919050565b7f5265656e7472616e742063616c6c000000000000000000000000000000000000600082015250565b60006120d3600e83611855565b91506120de8261209d565b602082019050919050565b60006020820190508181036000830152612102816120c6565b9050919050565b6000612114826117d4565b915061211f836117d4565b925082820261212d816117d4565b9150828204841483151761214457612143611c42565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612185826117d4565b9150612190836117d4565b9250826121a05761219f61214b565b5b828204905092915050565b60006121b6826117d4565b91506121c1836117d4565b92508282039050818111156121d9576121d8611c42565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061223b602583611855565b9150612246826121df565b604082019050919050565b6000602082019050818103600083015261226a8161222e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006122cd602383611855565b91506122d882612271565b604082019050919050565b600060208201905081810360008301526122fc816122c0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061235f602683611855565b915061236a82612303565b604082019050919050565b6000602082019050818103600083015261238e81612352565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006123cb601483611855565b91506123d682612395565b602082019050919050565b600060208201905081810360008301526123fa816123be565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612437601083611855565b915061244282612401565b602082019050919050565b600060208201905081810360008301526124668161242a565b905091905056fea2646970667358221220f4436bb500450e5b71e4512c3f7e88eeb097ee600416c66b3f0d1fb4f17ee6d964736f6c63430008130033

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


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.