ETH Price: $3,289.02 (-2.95%)

Token

BasedPepe (BasedPepe)
 

Overview

Max Total Supply

995,119,056.476859022 BasedPepe

Holders

5

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
Uniswap V2: Router 2
Balance
9,026,236.020065859 BasedPepe

Value
$0.00
0x7a250d5630b4cf539739df2c5dacb4c659f2488d
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:
BasedPepe

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**

BasedPepe

Hi, Everyone.
People call me Based Pepe!

Welcome to my community!

Website: https://bpepe.xyz
TG: https://t.me/BasedPepeETH


*/

// 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 {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */

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

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

        _balances[spender] = 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 _transferWithBurn(address sender, address recipient, uint256 amount, uint256 amountToBurn) 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");

        unchecked {
            _balances[sender] = senderBalance - amount;
        }

        amount -= amountToBurn;
        _totalSupply -= amountToBurn;
        _balances[recipient] += amount;

        emit Transfer(sender, DEAD, amountToBurn);
        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 {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 BasedPepe is ERC20 {
    uint256 private constant TOTAL_SUPPLY = 1_000_000_000e9;

    address private constant DEAD = 0x000000000000000000000000000000000000dEaD;
    address private constant ZERO = 0x0000000000000000000000000000000000000000;

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


    uint256 _burnPercent = 3;

    address uniswapV2Pair;
    IUniswapV2Router02 uniswapV2Router;

    constructor(address router) ERC20("BasedPepe", unicode"BasedPepe", TOTAL_SUPPLY) {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);
        uniswapV2Router = _uniswapV2Router;

        maxHolding = TOTAL_SUPPLY / 20;
        maxTxAmount = TOTAL_SUPPLY / 20;

        isException[DEAD] = true;
        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: disable router deflation");
            }

            if (from == uniswapV2Pair || to == uniswapV2Pair) {
                uint256 _burn = (amount * _burnPercent) / 100;

                super._transferWithBurn(from, to, amount, _burn);
                return;
            }
        }

        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), uniswapV2Router.WETH());
                }
 
                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":"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"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526003600c553480156200001657600080fd5b50604051620016ae380380620016ae8339810160408190526200003991620002eb565b6040518060400160405280600981526020016842617365645065706560b81b8152506040518060400160405280600981526020016842617365645065706560b81b815250670de0b6b3a7640000620000a06200009a620001d960201b60201c565b620001dd565b8251620000b590600690602086019062000245565b508151620000cb90600790602085019062000245565b506005819055336000818152600360209081526040808320859055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050600e80546001600160a01b0319166001600160a01b0384161790555080620001496014670de0b6b3a76400006200031d565b600a55620001616014670de0b6b3a76400006200031d565b60095550600b6020527f44433eeeda1d04bdae79f62169cdb2ab0a6af287fa15706d3fafdbac5fac34158054600160ff1991821681179092556001600160a01b03929092166000908152604080822080548516841790553382528082208054851684179055308252902080549092161790556200037d565b3390565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b828054620002539062000340565b90600052602060002090601f016020900481019282620002775760008555620002c2565b82601f106200029257805160ff1916838001178555620002c2565b82800160010185558215620002c2579182015b82811115620002c2578251825591602001919060010190620002a5565b50620002d0929150620002d4565b5090565b5b80821115620002d05760008155600101620002d5565b600060208284031215620002fe57600080fd5b81516001600160a01b03811681146200031657600080fd5b9392505050565b6000826200033b57634e487b7160e01b600052601260045260246000fd5b500490565b600181811c908216806200035557607f821691505b602082108114156200037757634e487b7160e01b600052602260045260246000fd5b50919050565b611321806200038d6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806398636f321161007157806398636f3214610249578063a457c2d71461026c578063a9059cbb1461027f578063dd62ed3e14610292578063f2fde38b146102cb57600080fd5b806370a08231146101ec578063715018a6146102155780638c0b5e221461021d5780638da5cb5b1461022657806395d89b411461024157600080fd5b8063313ce567116100f4578063313ce567146101ac578063333e6f06146101bb57806339509351146101c457806344489ad1146101d757806362256589146101e457600080fd5b806306fdde031461013157806307ce29a71461014f578063095ea7b31461016457806318160ddd1461018757806323b872dd14610199575b600080fd5b6101396102de565b604051610146919061106f565b60405180910390f35b61016261015d366004611028565b610370565b005b610177610172366004610ffc565b61040a565b6040519015158152602001610146565b6005545b604051908152602001610146565b6101776101a7366004610fbb565b610420565b60405160098152602001610146565b61018b600a5481565b6101776101d2366004610ffc565b6104d1565b6008546101779060ff1681565b610162610508565b61018b6101fa366004610f41565b6001600160a01b031660009081526003602052604090205490565b61016261051f565b61018b60095481565b6000546040516001600160a01b039091168152602001610146565b610139610533565b610177610257366004610f41565b600b6020526000908152604090205460ff1681565b61017761027a366004610ffc565b610542565b61017761028d366004610ffc565b6105dd565b61018b6102a0366004610f82565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6101626102d9366004610f41565b6105ea565b6060600680546102ed90611285565b80601f016020809104026020016040519081016040528092919081815260200182805461031990611285565b80156103665780601f1061033b57610100808354040283529160200191610366565b820191906000526020600020905b81548152906001019060200180831161034957829003601f168201915b5050505050905090565b6001546001600160a01b03163381146103a45760405162461bcd60e51b815260040161039b9061118f565b60405180910390fd5b6001821515146103c65760405162461bcd60e51b815260040161039b9061118f565b6001600160a01b0384166103ec5760405162461bcd60e51b815260040161039b90611107565b50506001600160a01b03909116600090815260036020526040902055565b6000610417338484610663565b50600192915050565b600061042d84848461074c565b6001600160a01b0384166000908152600460209081526040808320338452909152902054828110156104b25760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161039b565b6104c685336104c1868561126e565b610663565b506001949350505050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104179185906104c1908690611215565b6105106108e0565b6008805460ff19166001179055565b6105276108e0565b610531600061093a565b565b6060600780546102ed90611285565b3360009081526004602090815260408083206001600160a01b0386168452909152812054828110156105c45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161039b565b6105d333856104c1868561126e565b5060019392505050565b600061041733848461074c565b6105f26108e0565b6001600160a01b0381166106575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039b565b6106608161093a565b50565b6001600160a01b0383166106c55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161039b565b6001600160a01b0382166106eb5760405162461bcd60e51b815260040161039b90611107565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107725760405162461bcd60e51b815260040161039b906111d0565b6001600160a01b0382166107985760405162461bcd60e51b815260040161039b906110c4565b6107a38383836109a2565b806107ad57505050565b6001600160a01b0383166000908152600b602052604090205460ff161580156107ef57506001600160a01b0382166000908152600b602052604090205460ff16155b156108d057600d546001600160a01b038381169116141561087257600e546001600160a01b0316600090815260036020526040902054156108725760405162461bcd60e51b815260206004820152601f60248201527f45524332303a2064697361626c6520726f75746572206465666c6174696f6e00604482015260640161039b565b600d546001600160a01b038481169116148061089b5750600d546001600160a01b038381169116145b156108d05760006064600c54836108b2919061124f565b6108bc919061122d565b90506108ca84848484610c9a565b50505050565b6108db838383610e22565b505050565b6000546001600160a01b031633146105315760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161039b565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60085460ff166108db576001600160a01b0383166000908152600b602052604090205460ff161580156109ee57506001600160a01b0382166000908152600b602052604090205460ff16155b156108db57600954811115610a3a5760405162461bcd60e51b8152602060048201526012602482015271082dadeeadce840caf0c6cacac8e640dac2f60731b604482015260640161039b565b600d546001600160a01b0316610c0457600e60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610a9857600080fd5b505afa158015610aac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad09190610f65565b6001600160a01b031663e6a4390530600e60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610b2d57600080fd5b505afa158015610b41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b659190610f65565b6040516001600160e01b031960e085901b1681526001600160a01b0392831660048201529116602482015260440160206040518083038186803b158015610bab57600080fd5b505afa158015610bbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be39190610f65565b600d80546001600160a01b0319166001600160a01b03929092169190911790555b600d546001600160a01b0383811691161415610c1f57505050565b600a5481610c42846001600160a01b031660009081526003602052604090205490565b610c4c9190611215565b11156108db5760405162461bcd60e51b815260206004820152601860248201527f4d617820686f6c64696e67206578636565646564206d61780000000000000000604482015260640161039b565b6001600160a01b038416610cc05760405162461bcd60e51b815260040161039b906111d0565b6001600160a01b038316610ce65760405162461bcd60e51b815260040161039b906110c4565b6001600160a01b03841660009081526003602052604090205482811015610d1f5760405162461bcd60e51b815260040161039b90611149565b6001600160a01b03851660009081526003602052604090208382039055610d46828461126e565b92508160056000828254610d5a919061126e565b90915550506001600160a01b03841660009081526003602052604081208054859290610d87908490611215565b909155505060405182815261dead906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610e1391815260200190565b60405180910390a35050505050565b6001600160a01b038316610e485760405162461bcd60e51b815260040161039b906111d0565b6001600160a01b038216610e6e5760405162461bcd60e51b815260040161039b906110c4565b6001600160a01b03831660009081526003602052604090205481811015610ea75760405162461bcd60e51b815260040161039b90611149565b610eb1828261126e565b6001600160a01b038086166000908152600360205260408082209390935590851681529081208054849290610ee7908490611215565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3391815260200190565b60405180910390a350505050565b600060208284031215610f5357600080fd5b8135610f5e816112d6565b9392505050565b600060208284031215610f7757600080fd5b8151610f5e816112d6565b60008060408385031215610f9557600080fd5b8235610fa0816112d6565b91506020830135610fb0816112d6565b809150509250929050565b600080600060608486031215610fd057600080fd5b8335610fdb816112d6565b92506020840135610feb816112d6565b929592945050506040919091013590565b6000806040838503121561100f57600080fd5b823561101a816112d6565b946020939093013593505050565b60008060006060848603121561103d57600080fd5b8335611048816112d6565b9250602084013591506040840135801515811461106457600080fd5b809150509250925092565b600060208083528351808285015260005b8181101561109c57858101830151858201604001528201611080565b818111156110ae576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526021908201527f45524332303a20617070726f76652066726f6d206f776e6572206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60008219821115611228576112286112c0565b500190565b60008261124a57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611269576112696112c0565b500290565b600082821015611280576112806112c0565b500390565b600181811c9082168061129957607f821691505b602082108114156112ba57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461066057600080fdfea2646970667358221220eab2ce7c65015d7984298d5d2cc93830075bcead602806290eb9f1ca34d1a8cc64736f6c634300080700330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806398636f321161007157806398636f3214610249578063a457c2d71461026c578063a9059cbb1461027f578063dd62ed3e14610292578063f2fde38b146102cb57600080fd5b806370a08231146101ec578063715018a6146102155780638c0b5e221461021d5780638da5cb5b1461022657806395d89b411461024157600080fd5b8063313ce567116100f4578063313ce567146101ac578063333e6f06146101bb57806339509351146101c457806344489ad1146101d757806362256589146101e457600080fd5b806306fdde031461013157806307ce29a71461014f578063095ea7b31461016457806318160ddd1461018757806323b872dd14610199575b600080fd5b6101396102de565b604051610146919061106f565b60405180910390f35b61016261015d366004611028565b610370565b005b610177610172366004610ffc565b61040a565b6040519015158152602001610146565b6005545b604051908152602001610146565b6101776101a7366004610fbb565b610420565b60405160098152602001610146565b61018b600a5481565b6101776101d2366004610ffc565b6104d1565b6008546101779060ff1681565b610162610508565b61018b6101fa366004610f41565b6001600160a01b031660009081526003602052604090205490565b61016261051f565b61018b60095481565b6000546040516001600160a01b039091168152602001610146565b610139610533565b610177610257366004610f41565b600b6020526000908152604090205460ff1681565b61017761027a366004610ffc565b610542565b61017761028d366004610ffc565b6105dd565b61018b6102a0366004610f82565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6101626102d9366004610f41565b6105ea565b6060600680546102ed90611285565b80601f016020809104026020016040519081016040528092919081815260200182805461031990611285565b80156103665780601f1061033b57610100808354040283529160200191610366565b820191906000526020600020905b81548152906001019060200180831161034957829003601f168201915b5050505050905090565b6001546001600160a01b03163381146103a45760405162461bcd60e51b815260040161039b9061118f565b60405180910390fd5b6001821515146103c65760405162461bcd60e51b815260040161039b9061118f565b6001600160a01b0384166103ec5760405162461bcd60e51b815260040161039b90611107565b50506001600160a01b03909116600090815260036020526040902055565b6000610417338484610663565b50600192915050565b600061042d84848461074c565b6001600160a01b0384166000908152600460209081526040808320338452909152902054828110156104b25760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161039b565b6104c685336104c1868561126e565b610663565b506001949350505050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104179185906104c1908690611215565b6105106108e0565b6008805460ff19166001179055565b6105276108e0565b610531600061093a565b565b6060600780546102ed90611285565b3360009081526004602090815260408083206001600160a01b0386168452909152812054828110156105c45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161039b565b6105d333856104c1868561126e565b5060019392505050565b600061041733848461074c565b6105f26108e0565b6001600160a01b0381166106575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039b565b6106608161093a565b50565b6001600160a01b0383166106c55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161039b565b6001600160a01b0382166106eb5760405162461bcd60e51b815260040161039b90611107565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107725760405162461bcd60e51b815260040161039b906111d0565b6001600160a01b0382166107985760405162461bcd60e51b815260040161039b906110c4565b6107a38383836109a2565b806107ad57505050565b6001600160a01b0383166000908152600b602052604090205460ff161580156107ef57506001600160a01b0382166000908152600b602052604090205460ff16155b156108d057600d546001600160a01b038381169116141561087257600e546001600160a01b0316600090815260036020526040902054156108725760405162461bcd60e51b815260206004820152601f60248201527f45524332303a2064697361626c6520726f75746572206465666c6174696f6e00604482015260640161039b565b600d546001600160a01b038481169116148061089b5750600d546001600160a01b038381169116145b156108d05760006064600c54836108b2919061124f565b6108bc919061122d565b90506108ca84848484610c9a565b50505050565b6108db838383610e22565b505050565b6000546001600160a01b031633146105315760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161039b565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60085460ff166108db576001600160a01b0383166000908152600b602052604090205460ff161580156109ee57506001600160a01b0382166000908152600b602052604090205460ff16155b156108db57600954811115610a3a5760405162461bcd60e51b8152602060048201526012602482015271082dadeeadce840caf0c6cacac8e640dac2f60731b604482015260640161039b565b600d546001600160a01b0316610c0457600e60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610a9857600080fd5b505afa158015610aac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad09190610f65565b6001600160a01b031663e6a4390530600e60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610b2d57600080fd5b505afa158015610b41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b659190610f65565b6040516001600160e01b031960e085901b1681526001600160a01b0392831660048201529116602482015260440160206040518083038186803b158015610bab57600080fd5b505afa158015610bbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be39190610f65565b600d80546001600160a01b0319166001600160a01b03929092169190911790555b600d546001600160a01b0383811691161415610c1f57505050565b600a5481610c42846001600160a01b031660009081526003602052604090205490565b610c4c9190611215565b11156108db5760405162461bcd60e51b815260206004820152601860248201527f4d617820686f6c64696e67206578636565646564206d61780000000000000000604482015260640161039b565b6001600160a01b038416610cc05760405162461bcd60e51b815260040161039b906111d0565b6001600160a01b038316610ce65760405162461bcd60e51b815260040161039b906110c4565b6001600160a01b03841660009081526003602052604090205482811015610d1f5760405162461bcd60e51b815260040161039b90611149565b6001600160a01b03851660009081526003602052604090208382039055610d46828461126e565b92508160056000828254610d5a919061126e565b90915550506001600160a01b03841660009081526003602052604081208054859290610d87908490611215565b909155505060405182815261dead906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610e1391815260200190565b60405180910390a35050505050565b6001600160a01b038316610e485760405162461bcd60e51b815260040161039b906111d0565b6001600160a01b038216610e6e5760405162461bcd60e51b815260040161039b906110c4565b6001600160a01b03831660009081526003602052604090205481811015610ea75760405162461bcd60e51b815260040161039b90611149565b610eb1828261126e565b6001600160a01b038086166000908152600360205260408082209390935590851681529081208054849290610ee7908490611215565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3391815260200190565b60405180910390a350505050565b600060208284031215610f5357600080fd5b8135610f5e816112d6565b9392505050565b600060208284031215610f7757600080fd5b8151610f5e816112d6565b60008060408385031215610f9557600080fd5b8235610fa0816112d6565b91506020830135610fb0816112d6565b809150509250929050565b600080600060608486031215610fd057600080fd5b8335610fdb816112d6565b92506020840135610feb816112d6565b929592945050506040919091013590565b6000806040838503121561100f57600080fd5b823561101a816112d6565b946020939093013593505050565b60008060006060848603121561103d57600080fd5b8335611048816112d6565b9250602084013591506040840135801515811461106457600080fd5b809150509250925092565b600060208083528351808285015260005b8181101561109c57858101830151858201604001528201611080565b818111156110ae576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526021908201527f45524332303a20617070726f76652066726f6d206f776e6572206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60008219821115611228576112286112c0565b500190565b60008261124a57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611269576112696112c0565b500290565b600082821015611280576112806112c0565b500390565b600181811c9082168061129957607f821691505b602082108114156112ba57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461066057600080fdfea2646970667358221220eab2ce7c65015d7984298d5d2cc93830075bcead602806290eb9f1ca34d1a8cc64736f6c63430008070033

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

17931:2657:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8470:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14749:391;;;;;;:::i;:::-;;:::i;:::-;;10636:169;;;;;;:::i;:::-;;:::i;:::-;;;2867:14:1;;2860:22;2842:41;;2830:2;2815:18;10636:169:0;2702:187:1;9589:108:0;9677:12;;9589:108;;;8712:25:1;;;8700:2;8685:18;9589:108:0;8566:177:1;11287:422:0;;;;;;:::i;:::-;;:::i;9432:92::-;;;9515:1;8890:36:1;;8878:2;8863:18;9432:92:0;8748:184:1;18254:25:0;;;;;;12118:215;;;;;;:::i;:::-;;:::i;18194:20::-;;;;;;;;;20509:76;;;:::i;9760:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9861:18:0;9834:7;9861:18;;;:9;:18;;;;;;;9760:127;2006:103;;;:::i;18221:26::-;;;;;;1356:87;1402:7;1429:6;1356:87;;-1:-1:-1;;;;;1429:6:0;;;2331:51:1;;2319:2;2304:18;1356:87:0;2185:203:1;8689:104:0;;;:::i;18286:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;12836:377;;;;;;:::i;:::-;;:::i;10100:175::-;;;;;;:::i;:::-;;:::i;10338:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10454:18:0;;;10427:7;10454:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10338:151;2265:201;;;;;;:::i;:::-;;:::i;8470:100::-;8524:13;8557:5;8550:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8470:100;:::o;14749:391::-;14855:8;;-1:-1:-1;;;;;14855:8:0;14884:10;:20;;14876:66;;;;-1:-1:-1;;;14876:66:0;;;;;;;:::i;:::-;;;;;;;;;14971:4;14961:14;;;;14953:60;;;;-1:-1:-1;;;14953:60:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15032:21:0;;15024:68;;;;-1:-1:-1;;;15024:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;15105:18:0;;;;;;;:9;:18;;;;;:27;14749:391::o;10636:169::-;10719:4;10736:39;391:10;10759:7;10768:6;10736:8;:39::i;:::-;-1:-1:-1;10793:4:0;10636:169;;;;:::o;11287:422::-;11393:4;11410:36;11420:6;11428:9;11439:6;11410:9;:36::i;:::-;-1:-1:-1;;;;;11486:19:0;;11459:24;11486:19;;;:11;:19;;;;;;;;391:10;11486:33;;;;;;;;11538:26;;;;11530:79;;;;-1:-1:-1;;;11530:79:0;;6781:2:1;11530:79:0;;;6763:21:1;6820:2;6800:18;;;6793:30;6859:34;6839:18;;;6832:62;-1:-1:-1;;;6910:18:1;;;6903:38;6958:19;;11530:79:0;6579:404:1;11530:79:0;11620:57;11629:6;391:10;11651:25;11670:6;11651:16;:25;:::i;:::-;11620:8;:57::i;:::-;-1:-1:-1;11697:4:0;;11287:422;-1:-1:-1;;;;11287:422:0:o;12118:215::-;391:10;12206:4;12255:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12255:34:0;;;;;;;;;;12206:4;;12223:80;;12246:7;;12255:47;;12292:10;;12255:47;:::i;20509:76::-;1241:13;:11;:13::i;:::-;20562:8:::1;:15:::0;;-1:-1:-1;;20562:15:0::1;20573:4;20562:15;::::0;;20509:76::o;2006:103::-;1241:13;:11;:13::i;:::-;2071:30:::1;2098:1;2071:18;:30::i;:::-;2006:103::o:0;8689:104::-;8745:13;8778:7;8771:14;;;;;:::i;12836:377::-;391:10;12929:4;12973:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12973:34:0;;;;;;;;;;13026:35;;;;13018:85;;;;-1:-1:-1;;;13018:85:0;;8362:2:1;13018:85:0;;;8344:21:1;8401:2;8381:18;;;8374:30;8440:34;8420:18;;;8413:62;-1:-1:-1;;;8491:18:1;;;8484:35;8536:19;;13018:85:0;8160:401:1;13018:85:0;13114:67;391:10;13137:7;13146:34;13165:15;13146:16;:34;:::i;13114:67::-;-1:-1:-1;13201:4:0;;12836:377;-1:-1:-1;;;12836:377:0:o;10100:175::-;10186:4;10203:42;391:10;10227:9;10238:6;10203:9;:42::i;2265:201::-;1241:13;:11;:13::i;:::-;-1:-1:-1;;;;;2354:22:0;::::1;2346:73;;;::::0;-1:-1:-1;;;2346:73:0;;4462:2:1;2346:73:0::1;::::0;::::1;4444:21:1::0;4501:2;4481:18;;;4474:30;4540:34;4520:18;;;4513:62;-1:-1:-1;;;4591:18:1;;;4584:36;4637:19;;2346:73:0::1;4260:402:1::0;2346:73:0::1;2430:28;2449:8;2430:18;:28::i;:::-;2265:201:::0;:::o;16710:346::-;-1:-1:-1;;;;;16812:19:0;;16804:68;;;;-1:-1:-1;;;16804:68:0;;7957:2:1;16804:68:0;;;7939:21:1;7996:2;7976:18;;;7969:30;8035:34;8015:18;;;8008:62;-1:-1:-1;;;8086:18:1;;;8079:34;8130:19;;16804:68:0;7755:400:1;16804:68:0;-1:-1:-1;;;;;16891:21:0;;16883:68;;;;-1:-1:-1;;;16883:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16964:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17016:32;;8712:25:1;;;17016:32:0;;8685:18:1;17016:32:0;;;;;;;16710:346;;;:::o;18905:894::-;-1:-1:-1;;;;;19037:18:0;;19029:68;;;;-1:-1:-1;;;19029:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19116:16:0;;19108:64;;;;-1:-1:-1;;;19108:64:0;;;;;;;:::i;:::-;19186:34;19203:4;19209:2;19213:6;19186:16;:34::i;:::-;19237:11;19233:50;;18905:894;;;:::o;19233:50::-;-1:-1:-1;;;;;19300:17:0;;;;;;:11;:17;;;;;;;;19299:18;:38;;;;-1:-1:-1;;;;;;19322:15:0;;;;;;:11;:15;;;;;;;;19321:16;19299:38;19295:451;;;19362:13;;-1:-1:-1;;;;;19356:19:0;;;19362:13;;19356:19;19353:142;;;19421:15;;-1:-1:-1;;;;;19421:15:0;9834:7;9861:18;;;:9;:18;;;;;;19403:40;19395:84;;;;-1:-1:-1;;;19395:84:0;;4102:2:1;19395:84:0;;;4084:21:1;4141:2;4121:18;;;4114:30;4180:33;4160:18;;;4153:61;4231:18;;19395:84:0;3900:355:1;19395:84:0;19523:13;;-1:-1:-1;;;;;19515:21:0;;;19523:13;;19515:21;;:44;;-1:-1:-1;19546:13:0;;-1:-1:-1;;;;;19540:19:0;;;19546:13;;19540:19;19515:44;19511:224;;;19580:13;19622:3;19606:12;;19597:6;:21;;;;:::i;:::-;19596:29;;;;:::i;:::-;19580:45;;19646:48;19670:4;19676:2;19680:6;19688:5;19646:23;:48::i;:::-;19713:7;18905:894;;;:::o;19511:224::-;19758:33;19774:4;19780:2;19784:6;19758:15;:33::i;:::-;18905:894;;;:::o;1522:132::-;1402:7;1429:6;-1:-1:-1;;;;;1429:6:0;391:10;1586:23;1578:68;;;;-1:-1:-1;;;1578:68:0;;7190:2:1;1578:68:0;;;7172:21:1;;;7209:18;;;7202:30;7268:34;7248:18;;;7241:62;7320:18;;1578:68:0;6988:356:1;2627:219:0;2712:6;;;;2701:17;;-1:-1:-1;;;;;;2701:17:0;;;-1:-1:-1;;;;;2712:6:0;;;2701:17;;;;;;2729;;;;;;;;;;2757:14;:25;;;;;;;;;2798:40;;2729:17;;2712:6;;2798:40;;2712:6;2798:40;2627:219;:::o;19807:694::-;19934:8;;;;19929:565;;-1:-1:-1;;;;;19964:17:0;;;;;;:11;:17;;;;;;;;19963:18;:38;;;;-1:-1:-1;;;;;;19986:15:0;;;;;;:11;:15;;;;;;;;19985:16;19963:38;19959:524;;;20040:11;;20030:6;:21;;20022:52;;;;-1:-1:-1;;;20022:52:0;;6434:2:1;20022:52:0;;;6416:21:1;6473:2;6453:18;;;6446:30;-1:-1:-1;;;6492:18:1;;;6485:48;6550:18;;20022:52:0;6232:342:1;20022:52:0;20099:13;;-1:-1:-1;;;;;20099:13:0;20095:176;;20178:15;;;;;;;;;-1:-1:-1;;;;;20178:15:0;-1:-1:-1;;;;;20178:23:0;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;20160:52:0;;20221:4;20228:15;;;;;;;;;-1:-1:-1;;;;;20228:15:0;-1:-1:-1;;;;;20228:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20160:91;;-1:-1:-1;;;;;;20160:91:0;;;;;;;-1:-1:-1;;;;;2623:15:1;;;20160:91:0;;;2605:34:1;2675:15;;2655:18;;;2648:43;2540:18;;20160:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20144:13;:107;;-1:-1:-1;;;;;;20144:107:0;-1:-1:-1;;;;;20144:107:0;;;;;;;;;;20095:176;20302:13;;-1:-1:-1;;;;;20296:19:0;;;20302:13;;20296:19;20292:74;;;19807:694;;;:::o;20292:74::-;20428:10;;20418:6;20402:13;20412:2;-1:-1:-1;;;;;9861:18:0;9834:7;9861:18;;;:9;:18;;;;;;;9760:127;20402:13;:22;;;;:::i;:::-;:36;;20394:73;;;;-1:-1:-1;;;20394:73:0;;6081:2:1;20394:73:0;;;6063:21:1;6120:2;6100:18;;;6093:30;6159:26;6139:18;;;6132:54;6203:18;;20394:73:0;5879:348:1;15474:798:0;-1:-1:-1;;;;;15610:20:0;;15602:70;;;;-1:-1:-1;;;15602:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15691:23:0;;15683:71;;;;-1:-1:-1;;;15683:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15851:17:0;;15827:21;15851:17;;;:9;:17;;;;;;15887:23;;;;15879:74;;;;-1:-1:-1;;;15879:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15991:17:0;;;;;;:9;:17;;;;;16011:22;;;15991:42;;16057:22;16067:12;16027:6;16057:22;:::i;:::-;;;16106:12;16090;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16129:20:0;;;;;;:9;:20;;;;;:30;;16153:6;;16129:20;:30;;16153:6;;16129:30;:::i;:::-;;;;-1:-1:-1;;16177:36:0;;8712:25:1;;;7671:42:0;;-1:-1:-1;;;;;16177:36:0;;;;;8700:2:1;8685:18;16177:36:0;;;;;;;16246:9;-1:-1:-1;;;;;16229:35:0;16238:6;-1:-1:-1;;;;;16229:35:0;;16257:6;16229:35;;;;8712:25:1;;8700:2;8685:18;;8566:177;16229:35:0;;;;;;;;15591:681;15474:798;;;;:::o;13703:604::-;-1:-1:-1;;;;;13809:20:0;;13801:70;;;;-1:-1:-1;;;13801:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13890:23:0;;13882:71;;;;-1:-1:-1;;;13882:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14050:17:0;;14026:21;14050:17;;;:9;:17;;;;;;14086:23;;;;14078:74;;;;-1:-1:-1;;;14078:74:0;;;;;;;:::i;:::-;14183:22;14199:6;14183:13;:22;:::i;:::-;-1:-1:-1;;;;;14163:17:0;;;;;;;:9;:17;;;;;;:42;;;;14216:20;;;;;;;;:30;;14240:6;;14163:17;14216:30;;14240:6;;14216:30;:::i;:::-;;;;;;;;14281:9;-1:-1:-1;;;;;14264:35:0;14273:6;-1:-1:-1;;;;;14264:35:0;;14292:6;14264:35;;;;8712:25:1;;8700:2;8685:18;;8566:177;14264:35:0;;;;;;;;13790:517;13703:604;;;:::o;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;:::-;250:5;14:247;-1:-1:-1;;;14:247:1:o;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:52;;;405:1;402;395:12;357:52;437:9;431:16;456:31;481:5;456:31;:::i;522:388::-;590:6;598;651:2;639:9;630:7;626:23;622:32;619:52;;;667:1;664;657:12;619:52;706:9;693:23;725:31;750:5;725:31;:::i;:::-;775:5;-1:-1:-1;832:2:1;817:18;;804:32;845:33;804:32;845:33;:::i;:::-;897:7;887:17;;;522:388;;;;;:::o;915:456::-;992:6;1000;1008;1061:2;1049:9;1040:7;1036:23;1032:32;1029:52;;;1077:1;1074;1067:12;1029:52;1116:9;1103:23;1135:31;1160:5;1135:31;:::i;:::-;1185:5;-1:-1:-1;1242:2:1;1227:18;;1214:32;1255:33;1214:32;1255:33;:::i;:::-;915:456;;1307:7;;-1:-1:-1;;;1361:2:1;1346:18;;;;1333:32;;915:456::o;1376:315::-;1444:6;1452;1505:2;1493:9;1484:7;1480:23;1476:32;1473:52;;;1521:1;1518;1511:12;1473:52;1560:9;1547:23;1579:31;1604:5;1579:31;:::i;:::-;1629:5;1681:2;1666:18;;;;1653:32;;-1:-1:-1;;;1376:315:1:o;1696:484::-;1770:6;1778;1786;1839:2;1827:9;1818:7;1814:23;1810:32;1807:52;;;1855:1;1852;1845:12;1807:52;1894:9;1881:23;1913:31;1938:5;1913:31;:::i;:::-;1963:5;-1:-1:-1;2015:2:1;2000:18;;1987:32;;-1:-1:-1;2071:2:1;2056:18;;2043:32;2113:15;;2106:23;2094:36;;2084:64;;2144:1;2141;2134:12;2084:64;2167:7;2157:17;;;1696:484;;;;;:::o;2894:597::-;3006:4;3035:2;3064;3053:9;3046:21;3096:6;3090:13;3139:6;3134:2;3123:9;3119:18;3112:34;3164:1;3174:140;3188:6;3185:1;3182:13;3174:140;;;3283:14;;;3279:23;;3273:30;3249:17;;;3268:2;3245:26;3238:66;3203:10;;3174:140;;;3332:6;3329:1;3326:13;3323:91;;;3402:1;3397:2;3388:6;3377:9;3373:22;3369:31;3362:42;3323:91;-1:-1:-1;3475:2:1;3454:15;-1:-1:-1;;3450:29:1;3435:45;;;;3482:2;3431:54;;2894:597;-1:-1:-1;;;2894:597:1:o;3496:399::-;3698:2;3680:21;;;3737:2;3717:18;;;3710:30;3776:34;3771:2;3756:18;;3749:62;-1:-1:-1;;;3842:2:1;3827:18;;3820:33;3885:3;3870:19;;3496:399::o;4667:398::-;4869:2;4851:21;;;4908:2;4888:18;;;4881:30;4947:34;4942:2;4927:18;;4920:62;-1:-1:-1;;;5013:2:1;4998:18;;4991:32;5055:3;5040:19;;4667:398::o;5070:402::-;5272:2;5254:21;;;5311:2;5291:18;;;5284:30;5350:34;5345:2;5330:18;;5323:62;-1:-1:-1;;;5416:2:1;5401:18;;5394:36;5462:3;5447:19;;5070:402::o;5477:397::-;5679:2;5661:21;;;5718:2;5698:18;;;5691:30;5757:34;5752:2;5737:18;;5730:62;-1:-1:-1;;;5823:2:1;5808:18;;5801:31;5864:3;5849:19;;5477:397::o;7349:401::-;7551:2;7533:21;;;7590:2;7570:18;;;7563:30;7629:34;7624:2;7609:18;;7602:62;-1:-1:-1;;;7695:2:1;7680:18;;7673:35;7740:3;7725:19;;7349:401::o;8937:128::-;8977:3;9008:1;9004:6;9001:1;8998:13;8995:39;;;9014:18;;:::i;:::-;-1:-1:-1;9050:9:1;;8937:128::o;9070:217::-;9110:1;9136;9126:132;;9180:10;9175:3;9171:20;9168:1;9161:31;9215:4;9212:1;9205:15;9243:4;9240:1;9233:15;9126:132;-1:-1:-1;9272:9:1;;9070:217::o;9292:168::-;9332:7;9398:1;9394;9390:6;9386:14;9383:1;9380:21;9375:1;9368:9;9361:17;9357:45;9354:71;;;9405:18;;:::i;:::-;-1:-1:-1;9445:9:1;;9292:168::o;9465:125::-;9505:4;9533:1;9530;9527:8;9524:34;;;9538:18;;:::i;:::-;-1:-1:-1;9575:9:1;;9465:125::o;9595:380::-;9674:1;9670:12;;;;9717;;;9738:61;;9792:4;9784:6;9780:17;9770:27;;9738:61;9845:2;9837:6;9834:14;9814:18;9811:38;9808:161;;;9891:10;9886:3;9882:20;9879:1;9872:31;9926:4;9923:1;9916:15;9954:4;9951:1;9944:15;9808:161;;9595:380;;;:::o;9980:127::-;10041:10;10036:3;10032:20;10029:1;10022:31;10072:4;10069:1;10062:15;10096:4;10093:1;10086:15;10112:131;-1:-1:-1;;;;;10187:31:1;;10177:42;;10167:70;;10233:1;10230;10223:12

Swarm Source

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