ETH Price: $3,014.82 (+4.65%)
Gas: 2 Gwei

Token

Frib Coin (FRIB)
 

Overview

Max Total Supply

69,000,000 FRIB

Holders

114

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
922,407.331403360794106948 FRIB

Value
$0.00
0x56e99baedd33c32d3917b63200f8865cfa81a3c2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
StandardToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-08
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/*
    Developed for: Frib Coin
    SOCIALS AND WEBSITE:
    https://frib.io/
    https://t.me/FribCoin
    https://twitter.com/FribCoin
*/
pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default 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_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev 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");
        unchecked {
            _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");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

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

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

        _afterTokenTransfer(account, address(0), amount);
    }

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

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}





pragma solidity ^0.8.0;


contract StandardToken is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;
    mapping(address => bool) private setAddresses;
    uint256 public launchedAt;
    //uint256 public addresscount;


    constructor(uint256 _totalSupply) ERC20("Frib Coin", "FRIB") {
        _mint(msg.sender, _totalSupply);
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function launchTime() external onlyOwner {
        launchedAt = block.timestamp;
    }
    
    function setisnotBot(address[] memory addresses_) external onlyOwner {
        for (uint256 i = 0; i < addresses_.length; i++) {
            setAddresses[addresses_[i]] = true;
        }
    }



    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");
        if(block.timestamp <= launchedAt + 3 minutes)  {
            require(setAddresses[to] && setAddresses[from]);
        }

        if (uniswapV2Pair == address(0)) {
        require(from == owner() || to == owner(), "trading is not started");
        return;
        }

        if (limited && from == uniswapV2Pair) {
        require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
        
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"}],"name":"setisnotBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162001a4e38038062001a4e8339810160408190526200003491620004bb565b60405180604001604052806009815260200168233934b11021b7b4b760b91b81525060405180604001604052806004815260200163232924a160e11b8152506200008d62000087620000d460201b60201c565b620000d8565b8151620000a290600490602085019062000415565b508051620000b890600590602084019062000415565b505050620000cd33826200012860201b60201c565b50620005f2565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200015a5760405162461bcd60e51b815260040162000151906200052b565b60405180910390fd5b62000168600083836200020a565b80600360008282546200017c919062000590565b90915550506001600160a01b03821660009081526001602052604081208054839290620001ab90849062000590565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001f090859062000587565b60405180910390a36200020660008383620003e6565b5050565b6001600160a01b0382166000908152600a602052604090205460ff161580156200024d57506001600160a01b0383166000908152600a602052604090205460ff16155b6200026c5760405162461bcd60e51b8152600401620001519062000562565b600c546200027c9060b462000590565b4211620002ce576001600160a01b0382166000908152600b602052604090205460ff168015620002c457506001600160a01b0383166000908152600b602052604090205460ff165b620002ce57600080fd5b6009546001600160a01b03166200034857620002e9620003eb565b6001600160a01b0316836001600160a01b031614806200032357506200030e620003eb565b6001600160a01b0316826001600160a01b0316145b620003425760405162461bcd60e51b81526004016200015190620004f4565b620003e6565b60065460ff1680156200036857506009546001600160a01b038481169116145b15620003e657600754816200038884620003fa60201b620006961760201c565b62000394919062000590565b11158015620003c7575060085481620003b884620003fa60201b620006961760201c565b620003c4919062000590565b10155b620003e65760405162461bcd60e51b81526004016200015190620004d4565b505050565b6000546001600160a01b031690565b6001600160a01b031660009081526001602052604090205490565b8280546200042390620005b5565b90600052602060002090601f01602090048101928262000447576000855562000492565b82601f106200046257805160ff191683800117855562000492565b8280016001018555821562000492579182015b828111156200049257825182559160200191906001019062000475565b50620004a0929150620004a4565b5090565b5b80821115620004a05760008155600101620004a5565b600060208284031215620004cd578081fd5b5051919050565b602080825260069082015265119bdc989a5960d21b604082015260600190565b60208082526016908201527f74726164696e67206973206e6f74207374617274656400000000000000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60008219821115620005b057634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620005ca57607f821691505b60208210811415620005ec57634e487b7160e01b600052602260045260246000fd5b50919050565b61144c80620006026000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80636dd79232116100de5780638da5cb5b11610097578063a9059cbb11610071578063a9059cbb146102da578063bf56b371146102ed578063dd62ed3e146102f5578063f2fde38b1461030857610173565b80638da5cb5b146102b757806395d89b41146102bf578063a457c2d7146102c757610173565b80636dd792321461027157806370a0823114610284578063715018a614610297578063790ca4131461029f578063860a32ec146102a757806389f9a1d3146102af57610173565b8063313ce56711610130578063313ce567146101f9578063395093511461020e5780633aa633aa14610221578063404e51291461023657806342966c681461024957806349bd5a5e1461025c57610173565b806306fdde0314610178578063095ea7b31461019657806316c02129146101b657806318160ddd146101c95780631ab99e12146101de57806323b872dd146101e6575b600080fd5b61018061031b565b60405161018d9190610fa7565b60405180910390f35b6101a96101a4366004610e45565b6103ad565b60405161018d9190610f9c565b6101a96101c4366004610d8e565b6103ca565b6101d16103df565b60405161018d919061134e565b6101d16103e5565b6101a96101f4366004610de1565b6103eb565b610201610484565b60405161018d9190611357565b6101a961021c366004610e45565b610489565b61023461022f366004610f2f565b6104dd565b005b610234610244366004610e1c565b610557565b610234610257366004610f70565b6105c1565b6102646105ce565b60405161018d9190610f88565b61023461027f366004610e6e565b6105dd565b6101d1610292366004610d8e565b610696565b6102346106b5565b610234610700565b6101a9610745565b6101d161074e565b610264610754565b610180610763565b6101a96102d5366004610e45565b610772565b6101a96102e8366004610e45565b6107eb565b6101d16107ff565b6101d1610303366004610daf565b610805565b610234610316366004610d8e565b610830565b60606004805461032a90611394565b80601f016020809104026020016040519081016040528092919081815260200182805461035690611394565b80156103a35780601f10610378576101008083540402835291602001916103a3565b820191906000526020600020905b81548152906001019060200180831161038657829003601f168201915b5050505050905090565b60006103c16103ba61089e565b84846108a2565b50600192915050565b600a6020526000908152604090205460ff1681565b60035490565b60085481565b60006103f8848484610956565b6001600160a01b03841660009081526002602052604081208161041961089e565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104655760405162461bcd60e51b815260040161045c9061116d565b60405180910390fd5b6104798561047161089e565b8584036108a2565b506001949350505050565b601290565b60006103c161049661089e565b8484600260006104a461089e565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104d89190611365565b6108a2565b6104e561089e565b6001600160a01b03166104f6610754565b6001600160a01b03161461051c5760405162461bcd60e51b815260040161045c906111b5565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b61055f61089e565b6001600160a01b0316610570610754565b6001600160a01b0316146105965760405162461bcd60e51b815260040161045c906111b5565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6105cb3382610a80565b50565b6009546001600160a01b031681565b6105e561089e565b6001600160a01b03166105f6610754565b6001600160a01b03161461061c5760405162461bcd60e51b815260040161045c906111b5565b60005b8151811015610692576001600b600084848151811061064e57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061068a816113cf565b91505061061f565b5050565b6001600160a01b0381166000908152600160205260409020545b919050565b6106bd61089e565b6001600160a01b03166106ce610754565b6001600160a01b0316146106f45760405162461bcd60e51b815260040161045c906111b5565b6106fe6000610b72565b565b61070861089e565b6001600160a01b0316610719610754565b6001600160a01b03161461073f5760405162461bcd60e51b815260040161045c906111b5565b42600c55565b60065460ff1681565b60075481565b6000546001600160a01b031690565b60606005805461032a90611394565b6000806002600061078161089e565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156107cd5760405162461bcd60e51b815260040161045c906112e4565b6107e16107d861089e565b858584036108a2565b5060019392505050565b60006103c16107f861089e565b8484610956565b600c5481565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61083861089e565b6001600160a01b0316610849610754565b6001600160a01b03161461086f5760405162461bcd60e51b815260040161045c906111b5565b6001600160a01b0381166108955760405162461bcd60e51b815260040161045c9061107f565b6105cb81610b72565b3390565b6001600160a01b0383166108c85760405162461bcd60e51b815260040161045c906112a0565b6001600160a01b0382166108ee5760405162461bcd60e51b815260040161045c906110c5565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061094990859061134e565b60405180910390a3505050565b6001600160a01b03831661097c5760405162461bcd60e51b815260040161045c9061125b565b6001600160a01b0382166109a25760405162461bcd60e51b815260040161045c90610ffa565b6109ad838383610bc2565b6001600160a01b038316600090815260016020526040902054818110156109e65760405162461bcd60e51b815260040161045c90611107565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a1d908490611365565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a67919061134e565b60405180910390a3610a7a848484610b6d565b50505050565b6001600160a01b038216610aa65760405162461bcd60e51b815260040161045c906111ea565b610ab282600083610bc2565b6001600160a01b03821660009081526001602052604090205481811015610aeb5760405162461bcd60e51b815260040161045c9061103d565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610b1a90849061137d565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b5d90869061134e565b60405180910390a3610b6d836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610c0457506001600160a01b0383166000908152600a602052604090205460ff16155b610c205760405162461bcd60e51b815260040161045c90611329565b600c54610c2e9060b4611365565b4211610c7d576001600160a01b0382166000908152600b602052604090205460ff168015610c7457506001600160a01b0383166000908152600b602052604090205460ff165b610c7d57600080fd5b6009546001600160a01b0316610ced57610c95610754565b6001600160a01b0316836001600160a01b03161480610ccc5750610cb7610754565b6001600160a01b0316826001600160a01b0316145b610ce85760405162461bcd60e51b815260040161045c9061122b565b610b6d565b60065460ff168015610d0c57506009546001600160a01b038481169116145b15610b6d5760075481610d1e84610696565b610d289190611365565b11158015610d4b575060085481610d3e84610696565b610d489190611365565b10155b610b6d5760405162461bcd60e51b815260040161045c9061114d565b80356001600160a01b03811681146106b057600080fd5b803580151581146106b057600080fd5b600060208284031215610d9f578081fd5b610da882610d67565b9392505050565b60008060408385031215610dc1578081fd5b610dca83610d67565b9150610dd860208401610d67565b90509250929050565b600080600060608486031215610df5578081fd5b610dfe84610d67565b9250610e0c60208501610d67565b9150604084013590509250925092565b60008060408385031215610e2e578182fd5b610e3783610d67565b9150610dd860208401610d7e565b60008060408385031215610e57578182fd5b610e6083610d67565b946020939093013593505050565b60006020808385031215610e80578182fd5b823567ffffffffffffffff80821115610e97578384fd5b818501915085601f830112610eaa578384fd5b813581811115610ebc57610ebc611400565b83810260405185828201018181108582111715610edb57610edb611400565b604052828152858101935084860182860187018a1015610ef9578788fd5b8795505b83861015610f2257610f0e81610d67565b855260019590950194938601938601610efd565b5098975050505050505050565b60008060008060808587031215610f44578081fd5b610f4d85610d7e565b9350610f5b60208601610d67565b93969395505050506040820135916060013590565b600060208284031215610f81578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610fd357858101830151858201604001528201610fb7565b81811115610fe45783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260069082015265119bdc989a5960d21b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252601690820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115611378576113786113ea565b500190565b60008282101561138f5761138f6113ea565b500390565b6002810460018216806113a857607f821691505b602082108114156113c957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156113e3576113e36113ea565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122011a43748a06264ed4abcf2b8018fc0bfda6eddd157c94f65b36f8a8bc480b7da64736f6c634300080000330000000000000000000000000000000000000000003913517ebd3c0c65000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80636dd79232116100de5780638da5cb5b11610097578063a9059cbb11610071578063a9059cbb146102da578063bf56b371146102ed578063dd62ed3e146102f5578063f2fde38b1461030857610173565b80638da5cb5b146102b757806395d89b41146102bf578063a457c2d7146102c757610173565b80636dd792321461027157806370a0823114610284578063715018a614610297578063790ca4131461029f578063860a32ec146102a757806389f9a1d3146102af57610173565b8063313ce56711610130578063313ce567146101f9578063395093511461020e5780633aa633aa14610221578063404e51291461023657806342966c681461024957806349bd5a5e1461025c57610173565b806306fdde0314610178578063095ea7b31461019657806316c02129146101b657806318160ddd146101c95780631ab99e12146101de57806323b872dd146101e6575b600080fd5b61018061031b565b60405161018d9190610fa7565b60405180910390f35b6101a96101a4366004610e45565b6103ad565b60405161018d9190610f9c565b6101a96101c4366004610d8e565b6103ca565b6101d16103df565b60405161018d919061134e565b6101d16103e5565b6101a96101f4366004610de1565b6103eb565b610201610484565b60405161018d9190611357565b6101a961021c366004610e45565b610489565b61023461022f366004610f2f565b6104dd565b005b610234610244366004610e1c565b610557565b610234610257366004610f70565b6105c1565b6102646105ce565b60405161018d9190610f88565b61023461027f366004610e6e565b6105dd565b6101d1610292366004610d8e565b610696565b6102346106b5565b610234610700565b6101a9610745565b6101d161074e565b610264610754565b610180610763565b6101a96102d5366004610e45565b610772565b6101a96102e8366004610e45565b6107eb565b6101d16107ff565b6101d1610303366004610daf565b610805565b610234610316366004610d8e565b610830565b60606004805461032a90611394565b80601f016020809104026020016040519081016040528092919081815260200182805461035690611394565b80156103a35780601f10610378576101008083540402835291602001916103a3565b820191906000526020600020905b81548152906001019060200180831161038657829003601f168201915b5050505050905090565b60006103c16103ba61089e565b84846108a2565b50600192915050565b600a6020526000908152604090205460ff1681565b60035490565b60085481565b60006103f8848484610956565b6001600160a01b03841660009081526002602052604081208161041961089e565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104655760405162461bcd60e51b815260040161045c9061116d565b60405180910390fd5b6104798561047161089e565b8584036108a2565b506001949350505050565b601290565b60006103c161049661089e565b8484600260006104a461089e565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104d89190611365565b6108a2565b6104e561089e565b6001600160a01b03166104f6610754565b6001600160a01b03161461051c5760405162461bcd60e51b815260040161045c906111b5565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b61055f61089e565b6001600160a01b0316610570610754565b6001600160a01b0316146105965760405162461bcd60e51b815260040161045c906111b5565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6105cb3382610a80565b50565b6009546001600160a01b031681565b6105e561089e565b6001600160a01b03166105f6610754565b6001600160a01b03161461061c5760405162461bcd60e51b815260040161045c906111b5565b60005b8151811015610692576001600b600084848151811061064e57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061068a816113cf565b91505061061f565b5050565b6001600160a01b0381166000908152600160205260409020545b919050565b6106bd61089e565b6001600160a01b03166106ce610754565b6001600160a01b0316146106f45760405162461bcd60e51b815260040161045c906111b5565b6106fe6000610b72565b565b61070861089e565b6001600160a01b0316610719610754565b6001600160a01b03161461073f5760405162461bcd60e51b815260040161045c906111b5565b42600c55565b60065460ff1681565b60075481565b6000546001600160a01b031690565b60606005805461032a90611394565b6000806002600061078161089e565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156107cd5760405162461bcd60e51b815260040161045c906112e4565b6107e16107d861089e565b858584036108a2565b5060019392505050565b60006103c16107f861089e565b8484610956565b600c5481565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61083861089e565b6001600160a01b0316610849610754565b6001600160a01b03161461086f5760405162461bcd60e51b815260040161045c906111b5565b6001600160a01b0381166108955760405162461bcd60e51b815260040161045c9061107f565b6105cb81610b72565b3390565b6001600160a01b0383166108c85760405162461bcd60e51b815260040161045c906112a0565b6001600160a01b0382166108ee5760405162461bcd60e51b815260040161045c906110c5565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061094990859061134e565b60405180910390a3505050565b6001600160a01b03831661097c5760405162461bcd60e51b815260040161045c9061125b565b6001600160a01b0382166109a25760405162461bcd60e51b815260040161045c90610ffa565b6109ad838383610bc2565b6001600160a01b038316600090815260016020526040902054818110156109e65760405162461bcd60e51b815260040161045c90611107565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a1d908490611365565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a67919061134e565b60405180910390a3610a7a848484610b6d565b50505050565b6001600160a01b038216610aa65760405162461bcd60e51b815260040161045c906111ea565b610ab282600083610bc2565b6001600160a01b03821660009081526001602052604090205481811015610aeb5760405162461bcd60e51b815260040161045c9061103d565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610b1a90849061137d565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b5d90869061134e565b60405180910390a3610b6d836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610c0457506001600160a01b0383166000908152600a602052604090205460ff16155b610c205760405162461bcd60e51b815260040161045c90611329565b600c54610c2e9060b4611365565b4211610c7d576001600160a01b0382166000908152600b602052604090205460ff168015610c7457506001600160a01b0383166000908152600b602052604090205460ff165b610c7d57600080fd5b6009546001600160a01b0316610ced57610c95610754565b6001600160a01b0316836001600160a01b03161480610ccc5750610cb7610754565b6001600160a01b0316826001600160a01b0316145b610ce85760405162461bcd60e51b815260040161045c9061122b565b610b6d565b60065460ff168015610d0c57506009546001600160a01b038481169116145b15610b6d5760075481610d1e84610696565b610d289190611365565b11158015610d4b575060085481610d3e84610696565b610d489190611365565b10155b610b6d5760405162461bcd60e51b815260040161045c9061114d565b80356001600160a01b03811681146106b057600080fd5b803580151581146106b057600080fd5b600060208284031215610d9f578081fd5b610da882610d67565b9392505050565b60008060408385031215610dc1578081fd5b610dca83610d67565b9150610dd860208401610d67565b90509250929050565b600080600060608486031215610df5578081fd5b610dfe84610d67565b9250610e0c60208501610d67565b9150604084013590509250925092565b60008060408385031215610e2e578182fd5b610e3783610d67565b9150610dd860208401610d7e565b60008060408385031215610e57578182fd5b610e6083610d67565b946020939093013593505050565b60006020808385031215610e80578182fd5b823567ffffffffffffffff80821115610e97578384fd5b818501915085601f830112610eaa578384fd5b813581811115610ebc57610ebc611400565b83810260405185828201018181108582111715610edb57610edb611400565b604052828152858101935084860182860187018a1015610ef9578788fd5b8795505b83861015610f2257610f0e81610d67565b855260019590950194938601938601610efd565b5098975050505050505050565b60008060008060808587031215610f44578081fd5b610f4d85610d7e565b9350610f5b60208601610d67565b93969395505050506040820135916060013590565b600060208284031215610f81578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610fd357858101830151858201604001528201610fb7565b81811115610fe45783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260069082015265119bdc989a5960d21b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252601690820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115611378576113786113ea565b500190565b60008282101561138f5761138f6113ea565b500390565b6002810460018216806113a857607f821691505b602082108114156113c957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156113e3576113e36113ea565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122011a43748a06264ed4abcf2b8018fc0bfda6eddd157c94f65b36f8a8bc480b7da64736f6c63430008000033

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

0000000000000000000000000000000000000000003913517ebd3c0c65000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 69000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000003913517ebd3c0c65000000


Deployed Bytecode Sourcemap

19333:2025:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9335:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11502:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;19518:42::-;;;;;;:::i;:::-;;:::i;10455:108::-;;;:::i;:::-;;;;;;;:::i;19445:31::-;;;:::i;12153:492::-;;;;;;:::i;:::-;;:::i;10297:93::-;;;:::i;:::-;;;;;;;:::i;13054:215::-;;;;;;:::i;:::-;;:::i;19953:301::-;;;;;;:::i;:::-;;:::i;:::-;;19810:135;;;;;;:::i;:::-;;:::i;21274:81::-;;;;;;:::i;:::-;;:::i;19483:28::-;;;:::i;:::-;;;;;;;:::i;20362:196::-;;;;;;:::i;:::-;;:::i;10626:127::-;;;;;;:::i;:::-;;:::i;2736:103::-;;;:::i;20262:88::-;;;:::i;19381:19::-;;;:::i;19407:31::-;;;:::i;2085:87::-;;;:::i;9554:104::-;;;:::i;13772:413::-;;;;;;:::i;:::-;;:::i;10966:175::-;;;;;;:::i;:::-;;:::i;19619:25::-;;;:::i;11204:151::-;;;;;;:::i;:::-;;:::i;2994:201::-;;;;;;:::i;:::-;;:::i;9335:100::-;9389:13;9422:5;9415:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9335:100;:::o;11502:169::-;11585:4;11602:39;11611:12;:10;:12::i;:::-;11625:7;11634:6;11602:8;:39::i;:::-;-1:-1:-1;11659:4:0;11502:169;;;;:::o;19518:42::-;;;;;;;;;;;;;;;:::o;10455:108::-;10543:12;;10455:108;:::o;19445:31::-;;;;:::o;12153:492::-;12293:4;12310:36;12320:6;12328:9;12339:6;12310:9;:36::i;:::-;-1:-1:-1;;;;;12386:19:0;;12359:24;12386:19;;;:11;:19;;;;;12359:24;12406:12;:10;:12::i;:::-;-1:-1:-1;;;;;12386:33:0;-1:-1:-1;;;;;12386:33:0;;;;;;;;;;;;;12359:60;;12458:6;12438:16;:26;;12430:79;;;;-1:-1:-1;;;12430:79:0;;;;;;;:::i;:::-;;;;;;;;;12545:57;12554:6;12562:12;:10;:12::i;:::-;12595:6;12576:16;:25;12545:8;:57::i;:::-;-1:-1:-1;12633:4:0;;12153:492;-1:-1:-1;;;;12153:492:0:o;10297:93::-;10380:2;10297:93;:::o;13054:215::-;13142:4;13159:80;13168:12;:10;:12::i;:::-;13182:7;13228:10;13191:11;:25;13203:12;:10;:12::i;:::-;-1:-1:-1;;;;;13191:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13191:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;13159:8;:80::i;19953:301::-;2316:12;:10;:12::i;:::-;-1:-1:-1;;;;;2305:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2305:23:0;;2297:68;;;;-1:-1:-1;;;2297:68:0;;;;;;;:::i;:::-;20093:7:::1;:18:::0;;-1:-1:-1;;20093:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;20122:13:::1;:30:::0;;-1:-1:-1;;;;;;20122:30:0::1;-1:-1:-1::0;;;;;20122:30:0;;;::::1;::::0;;;::::1;::::0;;;20163:16:::1;:36:::0;20210:16:::1;:36:::0;19953:301::o;19810:135::-;2316:12;:10;:12::i;:::-;-1:-1:-1;;;;;2305:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2305:23:0;;2297:68;;;;-1:-1:-1;;;2297:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19899:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;19899:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19810:135::o;21274:81::-;21323:24;21329:10;21341:5;21323;:24::i;:::-;21274:81;:::o;19483:28::-;;;-1:-1:-1;;;;;19483:28:0;;:::o;20362:196::-;2316:12;:10;:12::i;:::-;-1:-1:-1;;;;;2305:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2305:23:0;;2297:68;;;;-1:-1:-1;;;2297:68:0;;;;;;;:::i;:::-;20447:9:::1;20442:109;20466:10;:17;20462:1;:21;20442:109;;;20535:4;20505:12;:27;20518:10;20529:1;20518:13;;;;;;-1:-1:-1::0;;;20518:13:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;20505:27:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;20505:27:0;:34;;-1:-1:-1;;20505:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20485:3;::::1;::::0;::::1;:::i;:::-;;;;20442:109;;;;20362:196:::0;:::o;10626:127::-;-1:-1:-1;;;;;10727:18:0;;10700:7;10727:18;;;:9;:18;;;;;;10626:127;;;;:::o;2736:103::-;2316:12;:10;:12::i;:::-;-1:-1:-1;;;;;2305:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2305:23:0;;2297:68;;;;-1:-1:-1;;;2297:68:0;;;;;;;:::i;:::-;2801:30:::1;2828:1;2801:18;:30::i;:::-;2736:103::o:0;20262:88::-;2316:12;:10;:12::i;:::-;-1:-1:-1;;;;;2305:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2305:23:0;;2297:68;;;;-1:-1:-1;;;2297:68:0;;;;;;;:::i;:::-;20327:15:::1;20314:10;:28:::0;20262:88::o;19381:19::-;;;;;;:::o;19407:31::-;;;;:::o;2085:87::-;2131:7;2158:6;-1:-1:-1;;;;;2158:6:0;2085:87;:::o;9554:104::-;9610:13;9643:7;9636:14;;;;;:::i;13772:413::-;13865:4;13882:24;13909:11;:25;13921:12;:10;:12::i;:::-;-1:-1:-1;;;;;13909:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13909:25:0;;;:34;;;;;;;;;;;-1:-1:-1;13962:35:0;;;;13954:85;;;;-1:-1:-1;;;13954:85:0;;;;;;;:::i;:::-;14075:67;14084:12;:10;:12::i;:::-;14098:7;14126:15;14107:16;:34;14075:8;:67::i;:::-;-1:-1:-1;14173:4:0;;13772:413;-1:-1:-1;;;13772:413:0:o;10966:175::-;11052:4;11069:42;11079:12;:10;:12::i;:::-;11093:9;11104:6;11069:9;:42::i;19619:25::-;;;;:::o;11204:151::-;-1:-1:-1;;;;;11320:18:0;;;11293:7;11320:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11204:151::o;2994:201::-;2316:12;:10;:12::i;:::-;-1:-1:-1;;;;;2305:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2305:23:0;;2297:68;;;;-1:-1:-1;;;2297:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3083:22:0;::::1;3075:73;;;;-1:-1:-1::0;;;3075:73:0::1;;;;;;;:::i;:::-;3159:28;3178:8;3159:18;:28::i;803:98::-:0;883:10;803:98;:::o;17456:380::-;-1:-1:-1;;;;;17592:19:0;;17584:68;;;;-1:-1:-1;;;17584:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17671:21:0;;17663:68;;;;-1:-1:-1;;;17663:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17744:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;17796:32;;;;;17774:6;;17796:32;:::i;:::-;;;;;;;;17456:380;;;:::o;14675:733::-;-1:-1:-1;;;;;14815:20:0;;14807:70;;;;-1:-1:-1;;;14807:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14896:23:0;;14888:71;;;;-1:-1:-1;;;14888:71:0;;;;;;;:::i;:::-;14972:47;14993:6;15001:9;15012:6;14972:20;:47::i;:::-;-1:-1:-1;;;;;15056:17:0;;15032:21;15056:17;;;:9;:17;;;;;;15092:23;;;;15084:74;;;;-1:-1:-1;;;15084:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15194:17:0;;;;;;;:9;:17;;;;;;15214:22;;;15194:42;;15258:20;;;;;;;;:30;;15230:6;;15194:17;15258:30;;15230:6;;15258:30;:::i;:::-;;;;;;;;15323:9;-1:-1:-1;;;;;15306:35:0;15315:6;-1:-1:-1;;;;;15306:35:0;;15334:6;15306:35;;;;;;:::i;:::-;;;;;;;;15354:46;15374:6;15382:9;15393:6;15354:19;:46::i;:::-;14675:733;;;;:::o;16427:591::-;-1:-1:-1;;;;;16511:21:0;;16503:67;;;;-1:-1:-1;;;16503:67:0;;;;;;;:::i;:::-;16583:49;16604:7;16621:1;16625:6;16583:20;:49::i;:::-;-1:-1:-1;;;;;16670:18:0;;16645:22;16670:18;;;:9;:18;;;;;;16707:24;;;;16699:71;;;;-1:-1:-1;;;16699:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16806:18:0;;;;;;:9;:18;;;;;16827:23;;;16806:44;;16872:12;:22;;16844:6;;16806:18;16872:22;;16844:6;;16872:22;:::i;:::-;;;;-1:-1:-1;;16912:37:0;;16938:1;;-1:-1:-1;;;;;16912:37:0;;;;;;;16942:6;;16912:37;:::i;:::-;;;;;;;;16962:48;16982:7;16999:1;17003:6;16962:48;16427:591;;;:::o;3355:191::-;3429:16;3448:6;;-1:-1:-1;;;;;3465:17:0;;;-1:-1:-1;;;;;;3465:17:0;;;;;;3498:40;;3448:6;;;;;;;3498:40;;3429:16;3498:40;3355:191;;:::o;20570:696::-;-1:-1:-1;;;;;20722:14:0;;;;;;:10;:14;;;;;;;;20721:15;:36;;;;-1:-1:-1;;;;;;20741:16:0;;;;;;:10;:16;;;;;;;;20740:17;20721:36;20713:60;;;;-1:-1:-1;;;20713:60:0;;;;;;;:::i;:::-;20806:10;;:22;;20819:9;20806:22;:::i;:::-;20787:15;:41;20784:121;;-1:-1:-1;;;;;20854:16:0;;;;;;:12;:16;;;;;;;;:38;;;;-1:-1:-1;;;;;;20874:18:0;;;;;;:12;:18;;;;;;;;20854:38;20846:47;;;;;;20921:13;;-1:-1:-1;;;;;20921:13:0;20917:140;;20977:7;:5;:7::i;:::-;-1:-1:-1;;;;;20969:15:0;:4;-1:-1:-1;;;;;20969:15:0;;:32;;;;20994:7;:5;:7::i;:::-;-1:-1:-1;;;;;20988:13:0;:2;-1:-1:-1;;;;;20988:13:0;;20969:32;20961:67;;;;-1:-1:-1;;;20961:67:0;;;;;;;:::i;:::-;21039:7;;20917:140;21073:7;;;;:32;;;;-1:-1:-1;21092:13:0;;-1:-1:-1;;;;;21084:21:0;;;21092:13;;21084:21;21073:32;21069:180;;;21158:16;;21148:6;21126:19;21142:2;21126:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;21210:16;;21200:6;21178:19;21194:2;21178:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;21126:100;21118:119;;;;-1:-1:-1;;;21118:119:0;;;;;;;:::i;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:162;261:20;;317:13;;310:21;300:32;;290:2;;346:1;343;336:12;361:198;;473:2;461:9;452:7;448:23;444:32;441:2;;;494:6;486;479:22;441:2;522:31;543:9;522:31;:::i;:::-;512:41;431:128;-1:-1:-1;;;431:128:1:o;564:274::-;;;693:2;681:9;672:7;668:23;664:32;661:2;;;714:6;706;699:22;661:2;742:31;763:9;742:31;:::i;:::-;732:41;;792:40;828:2;817:9;813:18;792:40;:::i;:::-;782:50;;651:187;;;;;:::o;843:342::-;;;;989:2;977:9;968:7;964:23;960:32;957:2;;;1010:6;1002;995:22;957:2;1038:31;1059:9;1038:31;:::i;:::-;1028:41;;1088:40;1124:2;1113:9;1109:18;1088:40;:::i;:::-;1078:50;;1175:2;1164:9;1160:18;1147:32;1137:42;;947:238;;;;;:::o;1190:268::-;;;1316:2;1304:9;1295:7;1291:23;1287:32;1284:2;;;1337:6;1329;1322:22;1284:2;1365:31;1386:9;1365:31;:::i;:::-;1355:41;;1415:37;1448:2;1437:9;1433:18;1415:37;:::i;1463:266::-;;;1592:2;1580:9;1571:7;1567:23;1563:32;1560:2;;;1613:6;1605;1598:22;1560:2;1641:31;1662:9;1641:31;:::i;:::-;1631:41;1719:2;1704:18;;;;1691:32;;-1:-1:-1;;;1550:179:1:o;1734:1166::-;;1849:2;1892;1880:9;1871:7;1867:23;1863:32;1860:2;;;1913:6;1905;1898:22;1860:2;1958:9;1945:23;1987:18;2028:2;2020:6;2017:14;2014:2;;;2049:6;2041;2034:22;2014:2;2092:6;2081:9;2077:22;2067:32;;2137:7;2130:4;2126:2;2122:13;2118:27;2108:2;;2164:6;2156;2149:22;2108:2;2205;2192:16;2227:2;2223;2220:10;2217:2;;;2233:18;;:::i;:::-;2280:2;2276;2272:11;2312:2;2306:9;2363:2;2358;2350:6;2346:15;2342:24;2416:6;2404:10;2401:22;2396:2;2384:10;2381:18;2378:46;2375:2;;;2427:18;;:::i;:::-;2463:2;2456:22;2513:18;;;2547:15;;;;-1:-1:-1;2582:11:1;;;2612;;;2608:20;;2605:33;-1:-1:-1;2602:2:1;;;2656:6;2648;2641:22;2602:2;2683:6;2674:15;;2698:171;2712:2;2709:1;2706:9;2698:171;;;2769:25;2790:3;2769:25;:::i;:::-;2757:38;;2730:1;2723:9;;;;;2815:12;;;;2847;;2698:171;;;-1:-1:-1;2888:6:1;1829:1071;-1:-1:-1;;;;;;;;1829:1071:1:o;2905:405::-;;;;;3065:3;3053:9;3044:7;3040:23;3036:33;3033:2;;;3087:6;3079;3072:22;3033:2;3115:28;3133:9;3115:28;:::i;:::-;3105:38;;3162:40;3198:2;3187:9;3183:18;3162:40;:::i;:::-;3023:287;;3152:50;;-1:-1:-1;;;;3249:2:1;3234:18;;3221:32;;3300:2;3285:18;3272:32;;3023:287::o;3315:190::-;;3427:2;3415:9;3406:7;3402:23;3398:32;3395:2;;;3448:6;3440;3433:22;3395:2;-1:-1:-1;3476:23:1;;3385:120;-1:-1:-1;3385:120:1:o;3510:203::-;-1:-1:-1;;;;;3674:32:1;;;;3656:51;;3644:2;3629:18;;3611:102::o;3718:187::-;3883:14;;3876:22;3858:41;;3846:2;3831:18;;3813:92::o;3910:603::-;;4051:2;4080;4069:9;4062:21;4112:6;4106:13;4155:6;4150:2;4139:9;4135:18;4128:34;4180:4;4193:140;4207:6;4204:1;4201:13;4193:140;;;4302:14;;;4298:23;;4292:30;4268:17;;;4287:2;4264:26;4257:66;4222:10;;4193:140;;;4351:6;4348:1;4345:13;4342:2;;;4421:4;4416:2;4407:6;4396:9;4392:22;4388:31;4381:45;4342:2;-1:-1:-1;4497:2:1;4476:15;-1:-1:-1;;4472:29:1;4457:45;;;;4504:2;4453:54;;4031:482;-1:-1:-1;;;4031:482:1:o;4518:399::-;4720:2;4702:21;;;4759:2;4739:18;;;4732:30;4798:34;4793:2;4778:18;;4771:62;-1:-1:-1;;;4864:2:1;4849:18;;4842:33;4907:3;4892:19;;4692:225::o;4922:398::-;5124:2;5106:21;;;5163:2;5143:18;;;5136:30;5202:34;5197:2;5182:18;;5175:62;-1:-1:-1;;;5268:2:1;5253:18;;5246:32;5310:3;5295:19;;5096:224::o;5325:402::-;5527:2;5509:21;;;5566:2;5546:18;;;5539:30;5605:34;5600:2;5585:18;;5578:62;-1:-1:-1;;;5671:2:1;5656:18;;5649:36;5717:3;5702:19;;5499:228::o;5732:398::-;5934:2;5916:21;;;5973:2;5953:18;;;5946:30;6012:34;6007:2;5992:18;;5985:62;-1:-1:-1;;;6078:2:1;6063:18;;6056:32;6120:3;6105:19;;5906:224::o;6135:402::-;6337:2;6319:21;;;6376:2;6356:18;;;6349:30;6415:34;6410:2;6395:18;;6388:62;-1:-1:-1;;;6481:2:1;6466:18;;6459:36;6527:3;6512:19;;6309:228::o;6542:329::-;6744:2;6726:21;;;6783:1;6763:18;;;6756:29;-1:-1:-1;;;6816:2:1;6801:18;;6794:36;6862:2;6847:18;;6716:155::o;6876:404::-;7078:2;7060:21;;;7117:2;7097:18;;;7090:30;7156:34;7151:2;7136:18;;7129:62;-1:-1:-1;;;7222:2:1;7207:18;;7200:38;7270:3;7255:19;;7050:230::o;7285:356::-;7487:2;7469:21;;;7506:18;;;7499:30;7565:34;7560:2;7545:18;;7538:62;7632:2;7617:18;;7459:182::o;7646:397::-;7848:2;7830:21;;;7887:2;7867:18;;;7860:30;7926:34;7921:2;7906:18;;7899:62;-1:-1:-1;;;7992:2:1;7977:18;;7970:31;8033:3;8018:19;;7820:223::o;8048:346::-;8250:2;8232:21;;;8289:2;8269:18;;;8262:30;-1:-1:-1;;;8323:2:1;8308:18;;8301:52;8385:2;8370:18;;8222:172::o;8399:401::-;8601:2;8583:21;;;8640:2;8620:18;;;8613:30;8679:34;8674:2;8659:18;;8652:62;-1:-1:-1;;;8745:2:1;8730:18;;8723:35;8790:3;8775:19;;8573:227::o;8805:400::-;9007:2;8989:21;;;9046:2;9026:18;;;9019:30;9085:34;9080:2;9065:18;;9058:62;-1:-1:-1;;;9151:2:1;9136:18;;9129:34;9195:3;9180:19;;8979:226::o;9210:401::-;9412:2;9394:21;;;9451:2;9431:18;;;9424:30;9490:34;9485:2;9470:18;;9463:62;-1:-1:-1;;;9556:2:1;9541:18;;9534:35;9601:3;9586:19;;9384:227::o;9616:335::-;9818:2;9800:21;;;9857:2;9837:18;;;9830:30;-1:-1:-1;;;9891:2:1;9876:18;;9869:41;9942:2;9927:18;;9790:161::o;9956:177::-;10102:25;;;10090:2;10075:18;;10057:76::o;10138:184::-;10310:4;10298:17;;;;10280:36;;10268:2;10253:18;;10235:87::o;10327:128::-;;10398:1;10394:6;10391:1;10388:13;10385:2;;;10404:18;;:::i;:::-;-1:-1:-1;10440:9:1;;10375:80::o;10460:125::-;;10528:1;10525;10522:8;10519:2;;;10533:18;;:::i;:::-;-1:-1:-1;10570:9:1;;10509:76::o;10590:380::-;10675:1;10665:12;;10722:1;10712:12;;;10733:2;;10787:4;10779:6;10775:17;10765:27;;10733:2;10840;10832:6;10829:14;10809:18;10806:38;10803:2;;;10886:10;10881:3;10877:20;10874:1;10867:31;10921:4;10918:1;10911:15;10949:4;10946:1;10939:15;10803:2;;10645:325;;;:::o;10975:135::-;;-1:-1:-1;;11035:17:1;;11032:2;;;11055:18;;:::i;:::-;-1:-1:-1;11102:1:1;11091:13;;11022:88::o;11115:127::-;11176:10;11171:3;11167:20;11164:1;11157:31;11207:4;11204:1;11197:15;11231:4;11228:1;11221:15;11247:127;11308:10;11303:3;11299:20;11296:1;11289:31;11339:4;11336:1;11329:15;11363:4;11360:1;11353:15

Swarm Source

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