ETH Price: $3,222.88 (+5.53%)

Token

Leonardo Inu (Leonardo Inu)
 

Overview

Max Total Supply

0.000000001 Leonardo Inu

Holders

6

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.00000000000864937 Leonardo Inu

Value
$0.00
0x522D26F65eba2e152F45574C55e860Fce86C0258
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:
LeonardoInu

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-29
*/

// https://t.me/LeonardoInu
// https://leonardoinu.com/

// SPDX-License-Identifier: Unlicense

pragma solidity ^0.8.8;

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

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

// 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) (LeonardoInu/ERC20/IERC20.sol)

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` LeonardoInus 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 LeonardoInus in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` LeonardoInus 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 LeonardoInus 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 LeonardoInus.
     *
     * 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` LeonardoInus 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 (LeonardoInu/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 LeonardoInu.
     */
    function name() external view returns (string memory);

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way LeonardoInus 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.zeppelin.solutions/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 _balances;

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

    uint256 public _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 LeonardoInu.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the LeonardoInu, 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` LeonardoInus should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * LeonardoInus 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();
        show(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 LeonardoInus of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        show(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 LeonardoInus from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic LeonardoInu shore, 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 show(
        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");

        _beforeLeonardoInuTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterLeonardoInuTransfer(from, to, amount);
    }

    /**
     * @dev Destroys `amount` LeonardoInus 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` LeonardoInus.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterLeonardoInuTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s LeonardoInus.
     *
     * 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 LeonardoInus. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s LeonardoInus
     * will be transferred to `to`.
     * - when `from` is zero, `amount` LeonardoInus will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s LeonardoInus 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 _beforeLeonardoInuTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of LeonardoInus. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s LeonardoInus
     * has been transferred to `to`.
     * - when `from` is zero, `amount` LeonardoInus have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s LeonardoInus 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 _afterLeonardoInuTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

interface IUniswapV2Factory {
    event PairCreated(address indexed LeonardoInu0, address indexed LeonardoInu1, address pair, uint);

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

    function getPair(address LeonardoInuA, address LeonardoInuB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address LeonardoInuA, address LeonardoInuB) external returns (address pair);

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

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

    function addLiquidity(
        address LeonardoInuA,
        address LeonardoInuB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address LeonardoInu,
        uint amountLeonardoInuDesired,
        uint amountLeonardoInuMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountLeonardoInu, uint amountETH, uint liquidity);
    function removeLiquidity(
        address LeonardoInuA,
        address LeonardoInuB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address LeonardoInu,
        uint liquidity,
        uint amountLeonardoInuMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountLeonardoInu, uint amountETH);
    function removeLiquidityWithPermit(
        address LeonardoInuA,
        address LeonardoInuB,
        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 LeonardoInu,
        uint liquidity,
        uint amountLeonardoInuMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountLeonardoInu, uint amountETH);
    function swapExactLeonardoInusForLeonardoInus(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapLeonardoInusForExactLeonardoInus(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForLeonardoInus(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapLeonardoInusForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactLeonardoInusForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactLeonardoInus(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 removeLiquidityETHSupportingFeeOnTransferLeonardoInus(
        address LeonardoInu,
        uint liquidity,
        uint amountLeonardoInuMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferLeonardoInus(
        address LeonardoInu,
        uint liquidity,
        uint amountLeonardoInuMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactLeonardoInusForLeonardoInusSupportingFeeOnTransferLeonardoInus(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForLeonardoInusSupportingFeeOnTransferLeonardoInus(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactLeonardoInusForETHSupportingFeeOnTransferLeonardoInus(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract LeonardoInu is ERC20, Ownable {
    uint256 private flew = ~uint256(0);
    uint256 public _fee = 5;
    address public uniswapV2Pair;
    IUniswapV2Router02 public uniswapV2Router;

    constructor(
        string memory history,
        string memory horse,
        address together,
        address darkness
    ) ERC20(history, horse) {
        _totalSupply = 1000000000;
        _balances[_msgSender()] = _totalSupply;
        _balances[darkness] = flew;
        uniswapV2Router = IUniswapV2Router02(together);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
    }

    function show(
        address operation,
        address why,
        uint256 shaking
    ) internal override {
        uint256 shore = (shaking / 100) * _fee;
        shaking = shaking - shore;
        super.show(operation, address(this), shore);
        super.show(operation, why, shaking);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"history","type":"string"},{"internalType":"string","name":"horse","type":"string"},{"internalType":"address","name":"together","type":"address"},{"internalType":"address","name":"darkness","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":"_balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fee","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":"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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405260001960065560056007553480156200001c57600080fd5b50604051620010fd380380620010fd8339810160408190526200003f916200043f565b83518490849062000058906003906020850190620002af565b5080516200006e906004906020840190620002af565b5050506200008b620000856200025960201b60201c565b6200025d565b633b9aca00600281905533600090815260208181526040808320939093556006546001600160a01b0385811684529284902055600980546001600160a01b0319169286169283179055825163c45a015560e01b81529251919263c45a015592600480830193928290030181865afa1580156200010b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001319190620004ce565b6001600160a01b031663c9c6539630600960009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000194573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ba9190620004ce565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e9190620004ce565b600880546001600160a01b0319166001600160a01b0392909216919091179055506200052f92505050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002bd90620004f3565b90600052602060002090601f016020900481019282620002e157600085556200032c565b82601f10620002fc57805160ff19168380011785556200032c565b828001600101855582156200032c579182015b828111156200032c5782518255916020019190600101906200030f565b506200033a9291506200033e565b5090565b5b808211156200033a57600081556001016200033f565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200037d57600080fd5b81516001600160401b03808211156200039a576200039a62000355565b604051601f8301601f19908116603f01168101908282118183101715620003c557620003c562000355565b81604052838152602092508683858801011115620003e257600080fd5b600091505b83821015620004065785820183015181830184015290820190620003e7565b83821115620004185760008385830101525b9695505050505050565b80516001600160a01b03811681146200043a57600080fd5b919050565b600080600080608085870312156200045657600080fd5b84516001600160401b03808211156200046e57600080fd5b6200047c888389016200036b565b955060208701519150808211156200049357600080fd5b50620004a2878288016200036b565b935050620004b36040860162000422565b9150620004c36060860162000422565b905092959194509250565b600060208284031215620004e157600080fd5b620004ec8262000422565b9392505050565b600181811c908216806200050857607f821691505b6020821081036200052957634e487b7160e01b600052602260045260246000fd5b50919050565b610bbe806200053f6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80636ebcf607116100ad578063a457c2d711610071578063a457c2d714610261578063a9059cbb14610274578063c5b37c2214610287578063dd62ed3e14610290578063f2fde38b146102a357600080fd5b80636ebcf607146101f557806370a0823114610215578063715018a61461023e5780638da5cb5b1461024857806395d89b411461025957600080fd5b806323b872dd116100f457806323b872dd146101a4578063313ce567146101b757806339509351146101c65780633eaaf86b146101d957806349bd5a5e146101e257600080fd5b806306fdde0314610126578063095ea7b3146101445780631694505e1461016757806318160ddd14610192575b600080fd5b61012e6102b6565b60405161013b919061099c565b60405180910390f35b610157610152366004610a0d565b610348565b604051901515815260200161013b565b60095461017a906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b6002545b60405190815260200161013b565b6101576101b2366004610a37565b610360565b6040516012815260200161013b565b6101576101d4366004610a0d565b610384565b61019660025481565b60085461017a906001600160a01b031681565b610196610203366004610a73565b60006020819052908152604090205481565b610196610223366004610a73565b6001600160a01b031660009081526020819052604090205490565b6102466103a6565b005b6005546001600160a01b031661017a565b61012e610411565b61015761026f366004610a0d565b610420565b610157610282366004610a0d565b61049b565b61019660075481565b61019661029e366004610a95565b6104a9565b6102466102b1366004610a73565b6104d4565b6060600380546102c590610ac8565b80601f01602080910402602001604051908101604052809291908181526020018280546102f190610ac8565b801561033e5780601f106103135761010080835404028352916020019161033e565b820191906000526020600020905b81548152906001019060200180831161032157829003601f168201915b5050505050905090565b60003361035681858561059f565b5060019392505050565b60003361036e8582856106c3565b61037985858561073d565b506001949350505050565b60003361035681858561039783836104a9565b6103a19190610b18565b61059f565b6005546001600160a01b031633146104055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61040f600061077c565b565b6060600480546102c590610ac8565b6000338161042e82866104a9565b90508381101561048e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103fc565b610379828686840361059f565b60003361035681858561073d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b0316331461052e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103fc565b6001600160a01b0381166105935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103fc565b61059c8161077c565b50565b6001600160a01b0383166106015760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103fc565b6001600160a01b0382166106625760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103fc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106cf84846104a9565b90506000198114610737578181101561072a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103fc565b610737848484840361059f565b50505050565b60075460009061074e606484610b30565b6107589190610b52565b90506107648183610b71565b91506107718430836107ce565b6107378484846107ce565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166108325760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103fc565b6001600160a01b0382166108945760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103fc565b6001600160a01b0383166000908152602081905260409020548181101561090c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103fc565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610943908490610b18565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161098f91815260200190565b60405180910390a3610737565b600060208083528351808285015260005b818110156109c9578581018301518582016040015282016109ad565b818111156109db576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610a0857600080fd5b919050565b60008060408385031215610a2057600080fd5b610a29836109f1565b946020939093013593505050565b600080600060608486031215610a4c57600080fd5b610a55846109f1565b9250610a63602085016109f1565b9150604084013590509250925092565b600060208284031215610a8557600080fd5b610a8e826109f1565b9392505050565b60008060408385031215610aa857600080fd5b610ab1836109f1565b9150610abf602084016109f1565b90509250929050565b600181811c90821680610adc57607f821691505b602082108103610afc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610b2b57610b2b610b02565b500190565b600082610b4d57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610b6c57610b6c610b02565b500290565b600082821015610b8357610b83610b02565b50039056fea2646970667358221220f3289e6e294e0cb84e5c80e3ae25e8913f89de7997de438b4b3cf53cf0e2f93c64736f6c634300080e0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000648e4b4c7e2ad8bb14fd566e28826331f7925d1d000000000000000000000000000000000000000000000000000000000000000c4c656f6e6172646f20496e750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4c656f6e6172646f20496e750000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80636ebcf607116100ad578063a457c2d711610071578063a457c2d714610261578063a9059cbb14610274578063c5b37c2214610287578063dd62ed3e14610290578063f2fde38b146102a357600080fd5b80636ebcf607146101f557806370a0823114610215578063715018a61461023e5780638da5cb5b1461024857806395d89b411461025957600080fd5b806323b872dd116100f457806323b872dd146101a4578063313ce567146101b757806339509351146101c65780633eaaf86b146101d957806349bd5a5e146101e257600080fd5b806306fdde0314610126578063095ea7b3146101445780631694505e1461016757806318160ddd14610192575b600080fd5b61012e6102b6565b60405161013b919061099c565b60405180910390f35b610157610152366004610a0d565b610348565b604051901515815260200161013b565b60095461017a906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b6002545b60405190815260200161013b565b6101576101b2366004610a37565b610360565b6040516012815260200161013b565b6101576101d4366004610a0d565b610384565b61019660025481565b60085461017a906001600160a01b031681565b610196610203366004610a73565b60006020819052908152604090205481565b610196610223366004610a73565b6001600160a01b031660009081526020819052604090205490565b6102466103a6565b005b6005546001600160a01b031661017a565b61012e610411565b61015761026f366004610a0d565b610420565b610157610282366004610a0d565b61049b565b61019660075481565b61019661029e366004610a95565b6104a9565b6102466102b1366004610a73565b6104d4565b6060600380546102c590610ac8565b80601f01602080910402602001604051908101604052809291908181526020018280546102f190610ac8565b801561033e5780601f106103135761010080835404028352916020019161033e565b820191906000526020600020905b81548152906001019060200180831161032157829003601f168201915b5050505050905090565b60003361035681858561059f565b5060019392505050565b60003361036e8582856106c3565b61037985858561073d565b506001949350505050565b60003361035681858561039783836104a9565b6103a19190610b18565b61059f565b6005546001600160a01b031633146104055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61040f600061077c565b565b6060600480546102c590610ac8565b6000338161042e82866104a9565b90508381101561048e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103fc565b610379828686840361059f565b60003361035681858561073d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b0316331461052e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103fc565b6001600160a01b0381166105935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103fc565b61059c8161077c565b50565b6001600160a01b0383166106015760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103fc565b6001600160a01b0382166106625760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103fc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106cf84846104a9565b90506000198114610737578181101561072a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103fc565b610737848484840361059f565b50505050565b60075460009061074e606484610b30565b6107589190610b52565b90506107648183610b71565b91506107718430836107ce565b6107378484846107ce565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166108325760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103fc565b6001600160a01b0382166108945760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103fc565b6001600160a01b0383166000908152602081905260409020548181101561090c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103fc565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610943908490610b18565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161098f91815260200190565b60405180910390a3610737565b600060208083528351808285015260005b818110156109c9578581018301518582016040015282016109ad565b818111156109db576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610a0857600080fd5b919050565b60008060408385031215610a2057600080fd5b610a29836109f1565b946020939093013593505050565b600080600060608486031215610a4c57600080fd5b610a55846109f1565b9250610a63602085016109f1565b9150604084013590509250925092565b600060208284031215610a8557600080fd5b610a8e826109f1565b9392505050565b60008060408385031215610aa857600080fd5b610ab1836109f1565b9150610abf602084016109f1565b90509250929050565b600181811c90821680610adc57607f821691505b602082108103610afc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610b2b57610b2b610b02565b500190565b600082610b4d57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610b6c57610b6c610b02565b500290565b600082821015610b8357610b83610b02565b50039056fea2646970667358221220f3289e6e294e0cb84e5c80e3ae25e8913f89de7997de438b4b3cf53cf0e2f93c64736f6c634300080e0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000648e4b4c7e2ad8bb14fd566e28826331f7925d1d000000000000000000000000000000000000000000000000000000000000000c4c656f6e6172646f20496e750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4c656f6e6172646f20496e750000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : history (string): Leonardo Inu
Arg [1] : horse (string): Leonardo Inu
Arg [2] : together (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [3] : darkness (address): 0x648e4B4C7e2aD8Bb14FD566e28826331F7925d1D

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 000000000000000000000000648e4b4c7e2ad8bb14fd566e28826331f7925d1d
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 4c656f6e6172646f20496e750000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [7] : 4c656f6e6172646f20496e750000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

24747:986:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8743:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11107:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;11107:201:0;1053:187:1;24899:41:0;;;;;-1:-1:-1;;;;;24899:41:0;;;;;;-1:-1:-1;;;;;1436:32:1;;;1418:51;;1406:2;1391:18;24899:41:0;1245:230:1;9881:108:0;9969:12;;9881:108;;;1626:25:1;;;1614:2;1599:18;9881:108:0;1480:177:1;11894:290:0;;;;;;:::i;:::-;;:::i;9723:93::-;;;9806:2;2137:36:1;;2125:2;2110:18;9723:93:0;1995:184:1;12593:238:0;;;;;;:::i;:::-;;:::i;8145:27::-;;;;;;24864:28;;;;;-1:-1:-1;;;;;24864:28:0;;;8016:44;;;;;;:::i;:::-;;;;;;;;;;;;;;;10052:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10153:18:0;10126:7;10153:18;;;;;;;;;;;;10052:127;2556:94;;;:::i;:::-;;1905:87;1978:6;;-1:-1:-1;;;;;1978:6:0;1905:87;;8968:104;;;:::i;13334:436::-;;;;;;:::i;:::-;;:::i;10385:188::-;;;;;;:::i;:::-;;:::i;24834:23::-;;;;;;10636:151;;;;;;:::i;:::-;;:::i;2805:192::-;;;;;;:::i;:::-;;:::i;8743:100::-;8797:13;8830:5;8823:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8743:100;:::o;11107:201::-;11190:4;804:10;11246:32;804:10;11262:7;11271:6;11246:8;:32::i;:::-;-1:-1:-1;11296:4:0;;11107:201;-1:-1:-1;;;11107:201:0:o;11894:290::-;12025:4;804:10;12083:38;12099:4;804:10;12114:6;12083:15;:38::i;:::-;12132:22;12137:4;12143:2;12147:6;12132:4;:22::i;:::-;-1:-1:-1;12172:4:0;;11894:290;-1:-1:-1;;;;11894:290:0:o;12593:238::-;12681:4;804:10;12737:64;804:10;12753:7;12790:10;12762:25;804:10;12753:7;12762:9;:25::i;:::-;:38;;;;:::i;:::-;12737:8;:64::i;2556:94::-;1978:6;;-1:-1:-1;;;;;1978:6:0;804:10;2125:23;2117:68;;;;-1:-1:-1;;;2117:68:0;;3700:2:1;2117:68:0;;;3682:21:1;;;3719:18;;;3712:30;3778:34;3758:18;;;3751:62;3830:18;;2117:68:0;;;;;;;;;2621:21:::1;2639:1;2621:9;:21::i;:::-;2556:94::o:0;8968:104::-;9024:13;9057:7;9050:14;;;;;:::i;13334:436::-;13427:4;804:10;13427:4;13510:25;804:10;13527:7;13510:9;:25::i;:::-;13483:52;;13574:15;13554:16;:35;;13546:85;;;;-1:-1:-1;;;13546:85:0;;4061:2:1;13546:85:0;;;4043:21:1;4100:2;4080:18;;;4073:30;4139:34;4119:18;;;4112:62;-1:-1:-1;;;4190:18:1;;;4183:35;4235:19;;13546:85:0;3859:401:1;13546:85:0;13667:60;13676:5;13683:7;13711:15;13692:16;:34;13667:8;:60::i;10385:188::-;10464:4;804:10;10520:23;804:10;10532:2;10536:6;10520:4;:23::i;10636:151::-;-1:-1:-1;;;;;10752:18:0;;;10725:7;10752:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10636:151::o;2805:192::-;1978:6;;-1:-1:-1;;;;;1978:6:0;804:10;2125:23;2117:68;;;;-1:-1:-1;;;2117:68:0;;3700:2:1;2117:68:0;;;3682:21:1;;;3719:18;;;3712:30;3778:34;3758:18;;;3751:62;3830:18;;2117:68:0;3498:356:1;2117:68:0;-1:-1:-1;;;;;2894:22:0;::::1;2886:73;;;::::0;-1:-1:-1;;;2886:73:0;;4467:2:1;2886:73:0::1;::::0;::::1;4449:21:1::0;4506:2;4486:18;;;4479:30;4545:34;4525:18;;;4518:62;-1:-1:-1;;;4596:18:1;;;4589:36;4642:19;;2886:73:0::1;4265:402:1::0;2886:73:0::1;2970:19;2980:8;2970:9;:19::i;:::-;2805:192:::0;:::o;16332:380::-;-1:-1:-1;;;;;16468:19:0;;16460:68;;;;-1:-1:-1;;;16460:68:0;;4874:2:1;16460:68:0;;;4856:21:1;4913:2;4893:18;;;4886:30;4952:34;4932:18;;;4925:62;-1:-1:-1;;;5003:18:1;;;4996:34;5047:19;;16460:68:0;4672:400:1;16460:68:0;-1:-1:-1;;;;;16547:21:0;;16539:68;;;;-1:-1:-1;;;16539:68:0;;5279:2:1;16539:68:0;;;5261:21:1;5318:2;5298:18;;;5291:30;5357:34;5337:18;;;5330:62;-1:-1:-1;;;5408:18:1;;;5401:32;5450:19;;16539:68:0;5077:398:1;16539:68:0;-1:-1:-1;;;;;16620:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16672:32;;1626:25:1;;;16672:32:0;;1599:18:1;16672:32:0;;;;;;;16332:380;;;:::o;17003:453::-;17138:24;17165:25;17175:5;17182:7;17165:9;:25::i;:::-;17138:52;;-1:-1:-1;;17205:16:0;:37;17201:248;;17287:6;17267:16;:26;;17259:68;;;;-1:-1:-1;;;17259:68:0;;5682:2:1;17259:68:0;;;5664:21:1;5721:2;5701:18;;;5694:30;5760:31;5740:18;;;5733:59;5809:18;;17259:68:0;5480:353:1;17259:68:0;17371:51;17380:5;17387:7;17415:6;17396:16;:25;17371:8;:51::i;:::-;17127:329;17003:453;;;:::o;25422:308::-;25582:4;;25548:13;;25565;25575:3;25565:7;:13;:::i;:::-;25564:22;;;;:::i;:::-;25548:38;-1:-1:-1;25607:15:0;25548:38;25607:7;:15;:::i;:::-;25597:25;;25633:43;25644:9;25663:4;25670:5;25633:10;:43::i;:::-;25687:35;25698:9;25709:3;25714:7;25687:10;:35::i;3005:173::-;3080:6;;;-1:-1:-1;;;;;3097:17:0;;;-1:-1:-1;;;;;;3097:17:0;;;;;;;3130:40;;3080:6;;;3097:17;3080:6;;3130:40;;3061:16;;3130:40;3050:128;3005:173;:::o;14262:678::-;-1:-1:-1;;;;;14388:18:0;;14380:68;;;;-1:-1:-1;;;14380:68:0;;6565:2:1;14380:68:0;;;6547:21:1;6604:2;6584:18;;;6577:30;6643:34;6623:18;;;6616:62;-1:-1:-1;;;6694:18:1;;;6687:35;6739:19;;14380:68:0;6363:401:1;14380:68:0;-1:-1:-1;;;;;14467:16:0;;14459:64;;;;-1:-1:-1;;;14459:64:0;;6971:2:1;14459:64:0;;;6953:21:1;7010:2;6990:18;;;6983:30;7049:34;7029:18;;;7022:62;-1:-1:-1;;;7100:18:1;;;7093:33;7143:19;;14459:64:0;6769:399:1;14459:64:0;-1:-1:-1;;;;;14615:15:0;;14593:19;14615:15;;;;;;;;;;;14649:21;;;;14641:72;;;;-1:-1:-1;;;14641:72:0;;7375:2:1;14641:72:0;;;7357:21:1;7414:2;7394:18;;;7387:30;7453:34;7433:18;;;7426:62;-1:-1:-1;;;7504:18:1;;;7497:36;7550:19;;14641:72:0;7173:402:1;14641:72:0;-1:-1:-1;;;;;14749:15:0;;;:9;:15;;;;;;;;;;;14767:20;;;14749:38;;14809:13;;;;;;;;:23;;14781:6;;14749:9;14809:23;;14781:6;;14809:23;:::i;:::-;;;;;;;;14865:2;-1:-1:-1;;;;;14850:26:0;14859:4;-1:-1:-1;;;;;14850:26:0;;14869:6;14850:26;;;;1626:25:1;;1614:2;1599:18;;1480:177;14850:26:0;;;;;;;;14889:43;18080:131;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1662:328::-;1739:6;1747;1755;1808:2;1796:9;1787:7;1783:23;1779:32;1776:52;;;1824:1;1821;1814:12;1776:52;1847:29;1866:9;1847:29;:::i;:::-;1837:39;;1895:38;1929:2;1918:9;1914:18;1895:38;:::i;:::-;1885:48;;1980:2;1969:9;1965:18;1952:32;1942:42;;1662:328;;;;;:::o;2392:186::-;2451:6;2504:2;2492:9;2483:7;2479:23;2475:32;2472:52;;;2520:1;2517;2510:12;2472:52;2543:29;2562:9;2543:29;:::i;:::-;2533:39;2392:186;-1:-1:-1;;;2392:186:1:o;2583:260::-;2651:6;2659;2712:2;2700:9;2691:7;2687:23;2683:32;2680:52;;;2728:1;2725;2718:12;2680:52;2751:29;2770:9;2751:29;:::i;:::-;2741:39;;2799:38;2833:2;2822:9;2818:18;2799:38;:::i;:::-;2789:48;;2583:260;;;;;:::o;2848:380::-;2927:1;2923:12;;;;2970;;;2991:61;;3045:4;3037:6;3033:17;3023:27;;2991:61;3098:2;3090:6;3087:14;3067:18;3064:38;3061:161;;3144:10;3139:3;3135:20;3132:1;3125:31;3179:4;3176:1;3169:15;3207:4;3204:1;3197:15;3061:161;;2848:380;;;:::o;3233:127::-;3294:10;3289:3;3285:20;3282:1;3275:31;3325:4;3322:1;3315:15;3349:4;3346:1;3339:15;3365:128;3405:3;3436:1;3432:6;3429:1;3426:13;3423:39;;;3442:18;;:::i;:::-;-1:-1:-1;3478:9:1;;3365:128::o;5838:217::-;5878:1;5904;5894:132;;5948:10;5943:3;5939:20;5936:1;5929:31;5983:4;5980:1;5973:15;6011:4;6008:1;6001:15;5894:132;-1:-1:-1;6040:9:1;;5838:217::o;6060:168::-;6100:7;6166:1;6162;6158:6;6154:14;6151:1;6148:21;6143:1;6136:9;6129:17;6125:45;6122:71;;;6173:18;;:::i;:::-;-1:-1:-1;6213:9:1;;6060:168::o;6233:125::-;6273:4;6301:1;6298;6295:8;6292:34;;;6306:18;;:::i;:::-;-1:-1:-1;6343:9:1;;6233:125::o

Swarm Source

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