ETH Price: $3,055.52 (+1.04%)
Gas: 4 Gwei

Token

CoxRider ($COX)
 

Overview

Max Total Supply

6,969,696,969 $COX

Holders

71

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
47,787.878783 $COX

Value
$0.00
0x2047ce3478f497d49b481102dcc81ac885ba3772
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:
CoxRider

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-08
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.15;

/*
Foundation was built. Legacies were made.
Generational wealth came to those that stared at the abyss and saw an opportunity rather than darkness.
Cryptocurrency has changed the lives of many and irrefutably will be as indispensable as the cars we drive.
Friendships were forged, ingenuity shared, and bear markets were a collective and learning experience.

Unfortunately, as cryptocurrency became more mainstream, it became a prime target for condemnation and repudiation.
This reputation has been brought on by malicious actors who use deception for person gains and poisoned the well that is the web3 ecosystem.
Methods such as rug pulling, making false promises to their communities, and providing a useless so-called "utility” are among the many appearances of such schemes.
 
The erosion of trust and seeds of doubt are slowly destroying everything we, you and I have built.

CoxRider represents the rider of the crypto and blockchain as a whole, regardless of what the CT has always called it, Bear or Bull, whatever.
We're riding it all the way down the depth of hades

We're here to repair people's trust and to make the ecosystem great again.
We're here to provide a safe haven for people to ride the chart without having to worry about the key foundations of cryptocurrencies, which are transparency, security, and trust.

We present to you $COX, 0% tax, liquidity burnt during launch, and ownership being renounced.

The destiny of $COX is relying on you, anons, the community.

We are not promising moons x10 x100 x1000, we are here to ride together as coxriders, but where the destination is headed, it all depends on you, my fellow survivors.

twitter: cox_rider

LMFAO WHAT A LONG ASS READ, I GUESS YOU DEGENS DON’T READ THOSE FUCKING MOVEMENT BULLSHIT, YOU’RE HERE FOR THE PROFIT.
YOU’RE FOMOING CAUSE YOU MISS ALL THE INU AND THAT DICKER, WE MEANT DUCKER.

WE’RE HERE FOR THAT TOO, IF WE MISS IT WE’LL CREATE IT OURSELVES, FUXX IT.
BOT OUR SHIT, SCALP ON OUR SHIT, WHATEVER FLOATS YOUR BOAT MAN.
*/

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


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


/**
 * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        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);
}


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


/**
 * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[owner][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) {
        address owner = _msgSender();
        uint256 currentAllowance = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}


interface IDexFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}


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


contract CoxRider is ERC20, Ownable {
    address public immutable pair;
    uint256 public maxBalance = 48090909 * 10**18;
    bool private tradingEnabled;

    event EnableTrading();
    event SetMaxBalance(uint256 oldLimit, uint256 newLimit);

    constructor() ERC20("CoxRider", "$COX") {
        IDexRouter router = IDexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        pair = IDexFactory(router.factory()).createPair(address(this), router.WETH());
        _mint(msg.sender, 6969696969 * 10**18);
    }

    // Override

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        if (sender == owner()) {
            super._transfer(sender, recipient, amount);
            return;
        }
        require(tradingEnabled, "Trading is disabled");

        if (recipient != pair) {
            require(balanceOf(recipient) + amount <= maxBalance, "Max balance limit");
        }

        super._transfer(sender, recipient, amount);
    }

    // Owner

    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading is already enabled");
        tradingEnabled = true;
        emit EnableTrading();
    }

    function setMaxBalance(uint256 newLimit) external onlyOwner {
        require(newLimit >= 48090909 * 10**18, "Too low max balance limit");
        emit SetMaxBalance(maxBalance, newLimit);
        maxBalance = newLimit;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"name":"EnableTrading","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":false,"internalType":"uint256","name":"oldLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"SetMaxBalance","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":[],"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":"enableTrading","outputs":[],"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":"maxBalance","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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setMaxBalance","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]

60a06040526a27c7a566964007d25400006006553480156200002057600080fd5b506040518060400160405280600881526020016721b7bc2934b232b960c11b81525060405180604001604052806004815260200163048869eb60e31b815250816003908162000070919062000414565b5060046200007f828262000414565b5050506200009c620000966200022d60201b60201c565b62000231565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620000f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200011a9190620004e0565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000168573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018e9190620004e0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002029190620004e0565b6001600160a01b031660805262000226336b168532bdc48cb0ddb584000062000283565b5062000539565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002de5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002f2919062000512565b90915550506001600160a01b038216600090815260208190526040812080548392906200032190849062000512565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200039b57607f821691505b602082108103620003bc57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200036b57600081815260208120601f850160051c81016020861015620003eb5750805b601f850160051c820191505b818110156200040c57828155600101620003f7565b505050505050565b81516001600160401b0381111562000430576200043062000370565b620004488162000441845462000386565b84620003c2565b602080601f831160018114620004805760008415620004675750858301515b600019600386901b1c1916600185901b1785556200040c565b600085815260208120601f198616915b82811015620004b15788860151825594840194600190910190840162000490565b5085821015620004d05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620004f357600080fd5b81516001600160a01b03811681146200050b57600080fd5b9392505050565b600082198211156200053457634e487b7160e01b600052601160045260246000fd5b500190565b608051610de66200055c6000396000818161023f01526109050152610de66000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638a8c523c116100a2578063a457c2d711610071578063a457c2d714610227578063a8aa1b311461023a578063a9059cbb14610261578063dd62ed3e14610274578063f2fde38b146102ad57600080fd5b80638a8c523c146101df5780638da5cb5b146101e757806395d89b411461020c5780639d51d9b71461021457600080fd5b8063313ce567116100e9578063313ce56714610181578063395093511461019057806370a08231146101a3578063715018a6146101cc57806373ad468a146101d657600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b6101236102c0565b6040516101309190610bd6565b60405180910390f35b61014c610147366004610c47565b610352565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610c71565b61036a565b60405160128152602001610130565b61014c61019e366004610c47565b61038e565b6101606101b1366004610cad565b6001600160a01b031660009081526020819052604090205490565b6101d46103cd565b005b61016060065481565b6101d461040c565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610130565b6101236104c1565b6101d4610222366004610ccf565b6104d0565b61014c610235366004610c47565b610596565b6101f47f000000000000000000000000000000000000000000000000000000000000000081565b61014c61026f366004610c47565b610628565b610160610282366004610ce8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101d46102bb366004610cad565b610636565b6060600380546102cf90610d1b565b80601f01602080910402602001604051908101604052809291908181526020018280546102fb90610d1b565b80156103485780601f1061031d57610100808354040283529160200191610348565b820191906000526020600020905b81548152906001019060200180831161032b57829003601f168201915b5050505050905090565b6000336103608185856106d1565b5060019392505050565b6000336103788582856107f5565b610383858585610887565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061036090829086906103c8908790610d55565b6106d1565b6005546001600160a01b031633146104005760405162461bcd60e51b81526004016103f790610d7b565b60405180910390fd5b61040a60006109b6565b565b6005546001600160a01b031633146104365760405162461bcd60e51b81526004016103f790610d7b565b60075460ff16156104895760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064016103f7565b6007805460ff191660011790556040517f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d90600090a1565b6060600480546102cf90610d1b565b6005546001600160a01b031633146104fa5760405162461bcd60e51b81526004016103f790610d7b565b6a27c7a566964007d25400008110156105555760405162461bcd60e51b815260206004820152601960248201527f546f6f206c6f77206d61782062616c616e6365206c696d69740000000000000060448201526064016103f7565b60065460408051918252602082018390527f8eff895cc1b284147da15cb566ec4e2f6c9f11f72ba1a121e6089ed91523886a910160405180910390a1600655565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561061b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f7565b61038382868684036106d1565b600033610360818585610887565b6005546001600160a01b031633146106605760405162461bcd60e51b81526004016103f790610d7b565b6001600160a01b0381166106c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f7565b6106ce816109b6565b50565b6001600160a01b0383166107335760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f7565b6001600160a01b0382166107945760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461088157818110156108745760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f7565b61088184848484036106d1565b50505050565b6005546001600160a01b03166001600160a01b0316836001600160a01b0316036108bb576108b6838383610a08565b505050565b60075460ff166109035760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81a5cc8191a5cd8589b1959606a1b60448201526064016103f7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316146109ab576006548161095f846001600160a01b031660009081526020819052604090205490565b6109699190610d55565b11156109ab5760405162461bcd60e51b815260206004820152601160248201527013585e0818985b185b98d9481b1a5b5a5d607a1b60448201526064016103f7565b6108b6838383610a08565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610a6c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f7565b6001600160a01b038216610ace5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f7565b6001600160a01b03831660009081526020819052604090205481811015610b465760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f7565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610b7d908490610d55565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bc991815260200190565b60405180910390a3610881565b600060208083528351808285015260005b81811015610c0357858101830151858201604001528201610be7565b81811115610c15576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610c4257600080fd5b919050565b60008060408385031215610c5a57600080fd5b610c6383610c2b565b946020939093013593505050565b600080600060608486031215610c8657600080fd5b610c8f84610c2b565b9250610c9d60208501610c2b565b9150604084013590509250925092565b600060208284031215610cbf57600080fd5b610cc882610c2b565b9392505050565b600060208284031215610ce157600080fd5b5035919050565b60008060408385031215610cfb57600080fd5b610d0483610c2b565b9150610d1260208401610c2b565b90509250929050565b600181811c90821680610d2f57607f821691505b602082108103610d4f57634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610d7657634e487b7160e01b600052601160045260246000fd5b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea26469706673582212202b6a51834119346f446ac8699afcaec4e44b787926ea974507fa925c7ccee6aa64736f6c634300080f0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80638a8c523c116100a2578063a457c2d711610071578063a457c2d714610227578063a8aa1b311461023a578063a9059cbb14610261578063dd62ed3e14610274578063f2fde38b146102ad57600080fd5b80638a8c523c146101df5780638da5cb5b146101e757806395d89b411461020c5780639d51d9b71461021457600080fd5b8063313ce567116100e9578063313ce56714610181578063395093511461019057806370a08231146101a3578063715018a6146101cc57806373ad468a146101d657600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b6101236102c0565b6040516101309190610bd6565b60405180910390f35b61014c610147366004610c47565b610352565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610c71565b61036a565b60405160128152602001610130565b61014c61019e366004610c47565b61038e565b6101606101b1366004610cad565b6001600160a01b031660009081526020819052604090205490565b6101d46103cd565b005b61016060065481565b6101d461040c565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610130565b6101236104c1565b6101d4610222366004610ccf565b6104d0565b61014c610235366004610c47565b610596565b6101f47f000000000000000000000000649d52ef2e98171ba88597efb289667a71d1e39c81565b61014c61026f366004610c47565b610628565b610160610282366004610ce8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101d46102bb366004610cad565b610636565b6060600380546102cf90610d1b565b80601f01602080910402602001604051908101604052809291908181526020018280546102fb90610d1b565b80156103485780601f1061031d57610100808354040283529160200191610348565b820191906000526020600020905b81548152906001019060200180831161032b57829003601f168201915b5050505050905090565b6000336103608185856106d1565b5060019392505050565b6000336103788582856107f5565b610383858585610887565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061036090829086906103c8908790610d55565b6106d1565b6005546001600160a01b031633146104005760405162461bcd60e51b81526004016103f790610d7b565b60405180910390fd5b61040a60006109b6565b565b6005546001600160a01b031633146104365760405162461bcd60e51b81526004016103f790610d7b565b60075460ff16156104895760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064016103f7565b6007805460ff191660011790556040517f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d90600090a1565b6060600480546102cf90610d1b565b6005546001600160a01b031633146104fa5760405162461bcd60e51b81526004016103f790610d7b565b6a27c7a566964007d25400008110156105555760405162461bcd60e51b815260206004820152601960248201527f546f6f206c6f77206d61782062616c616e6365206c696d69740000000000000060448201526064016103f7565b60065460408051918252602082018390527f8eff895cc1b284147da15cb566ec4e2f6c9f11f72ba1a121e6089ed91523886a910160405180910390a1600655565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561061b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f7565b61038382868684036106d1565b600033610360818585610887565b6005546001600160a01b031633146106605760405162461bcd60e51b81526004016103f790610d7b565b6001600160a01b0381166106c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f7565b6106ce816109b6565b50565b6001600160a01b0383166107335760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f7565b6001600160a01b0382166107945760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461088157818110156108745760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f7565b61088184848484036106d1565b50505050565b6005546001600160a01b03166001600160a01b0316836001600160a01b0316036108bb576108b6838383610a08565b505050565b60075460ff166109035760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81a5cc8191a5cd8589b1959606a1b60448201526064016103f7565b7f000000000000000000000000649d52ef2e98171ba88597efb289667a71d1e39c6001600160a01b0316826001600160a01b0316146109ab576006548161095f846001600160a01b031660009081526020819052604090205490565b6109699190610d55565b11156109ab5760405162461bcd60e51b815260206004820152601160248201527013585e0818985b185b98d9481b1a5b5a5d607a1b60448201526064016103f7565b6108b6838383610a08565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610a6c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f7565b6001600160a01b038216610ace5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f7565b6001600160a01b03831660009081526020819052604090205481811015610b465760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f7565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610b7d908490610d55565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bc991815260200190565b60405180910390a3610881565b600060208083528351808285015260005b81811015610c0357858101830151858201604001528201610be7565b81811115610c15576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610c4257600080fd5b919050565b60008060408385031215610c5a57600080fd5b610c6383610c2b565b946020939093013593505050565b600080600060608486031215610c8657600080fd5b610c8f84610c2b565b9250610c9d60208501610c2b565b9150604084013590509250925092565b600060208284031215610cbf57600080fd5b610cc882610c2b565b9392505050565b600060208284031215610ce157600080fd5b5035919050565b60008060408385031215610cfb57600080fd5b610d0483610c2b565b9150610d1260208401610c2b565b90509250929050565b600181811c90821680610d2f57607f821691505b602082108103610d4f57634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610d7657634e487b7160e01b600052601160045260246000fd5b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea26469706673582212202b6a51834119346f446ac8699afcaec4e44b787926ea974507fa925c7ccee6aa64736f6c634300080f0033

Deployed Bytecode Sourcemap

21577:1500:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10516:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12867:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;12867:201:0;1053:187:1;11636:108:0;11724:12;;11636:108;;;1391:25:1;;;1379:2;1364:18;11636:108:0;1245:177:1;13648:295:0;;;;;;:::i;:::-;;:::i;11478:93::-;;;11561:2;1902:36:1;;1890:2;1875:18;11478:93:0;1760:184:1;14352:240:0;;;;;;:::i;:::-;;:::i;11807:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11908:18:0;11881:7;11908:18;;;;;;;;;;;;11807:127;4454:103;;;:::i;:::-;;21656:45;;;;;;22657:180;;;:::i;3803:87::-;3876:6;;-1:-1:-1;;;;;3876:6:0;3803:87;;;-1:-1:-1;;;;;2304:32:1;;;2286:51;;2274:2;2259:18;3803:87:0;2140:203:1;10735:104:0;;;:::i;22845:229::-;;;;;;:::i;:::-;;:::i;15095:438::-;;;;;;:::i;:::-;;:::i;21620:29::-;;;;;12140:193;;;;;;:::i;:::-;;:::i;12396:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12512:18:0;;;12485:7;12512:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12396:151;4712:201;;;;;;:::i;:::-;;:::i;10516:100::-;10570:13;10603:5;10596:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10516:100;:::o;12867:201::-;12950:4;2748:10;13006:32;2748:10;13022:7;13031:6;13006:8;:32::i;:::-;-1:-1:-1;13056:4:0;;12867:201;-1:-1:-1;;;12867:201:0:o;13648:295::-;13779:4;2748:10;13837:38;13853:4;2748:10;13868:6;13837:15;:38::i;:::-;13886:27;13896:4;13902:2;13906:6;13886:9;:27::i;:::-;-1:-1:-1;13931:4:0;;13648:295;-1:-1:-1;;;;13648:295:0:o;14352:240::-;2748:10;14440:4;14521:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;14521:27:0;;;;;;;;;;14440:4;;2748:10;14496:66;;2748:10;;14521:27;;:40;;14551:10;;14521:40;:::i;:::-;14496:8;:66::i;4454:103::-;3876:6;;-1:-1:-1;;;;;3876:6:0;2748:10;4023:23;4015:68;;;;-1:-1:-1;;;4015:68:0;;;;;;;:::i;:::-;;;;;;;;;4519:30:::1;4546:1;4519:18;:30::i;:::-;4454:103::o:0;22657:180::-;3876:6;;-1:-1:-1;;;;;3876:6:0;2748:10;4023:23;4015:68;;;;-1:-1:-1;;;4015:68:0;;;;;;;:::i;:::-;22721:14:::1;::::0;::::1;;22720:15;22712:54;;;::::0;-1:-1:-1;;;22712:54:0;;3976:2:1;22712:54:0::1;::::0;::::1;3958:21:1::0;4015:2;3995:18;;;3988:30;4054:28;4034:18;;;4027:56;4100:18;;22712:54:0::1;3774:350:1::0;22712:54:0::1;22777:14;:21:::0;;-1:-1:-1;;22777:21:0::1;22794:4;22777:21;::::0;;22814:15:::1;::::0;::::1;::::0;22777:14:::1;::::0;22814:15:::1;22657:180::o:0;10735:104::-;10791:13;10824:7;10817:14;;;;;:::i;22845:229::-;3876:6;;-1:-1:-1;;;;;3876:6:0;2748:10;4023:23;4015:68;;;;-1:-1:-1;;;4015:68:0;;;;;;;:::i;:::-;22936:17:::1;22924:8;:29;;22916:67;;;::::0;-1:-1:-1;;;22916:67:0;;4331:2:1;22916:67:0::1;::::0;::::1;4313:21:1::0;4370:2;4350:18;;;4343:30;4409:27;4389:18;;;4382:55;4454:18;;22916:67:0::1;4129:349:1::0;22916:67:0::1;23013:10;::::0;22999:35:::1;::::0;;4657:25:1;;;4713:2;4698:18;;4691:34;;;22999:35:0::1;::::0;4630:18:1;22999:35:0::1;;;;;;;23045:10;:21:::0;22845:229::o;15095:438::-;2748:10;15188:4;15271:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;15271:27:0;;;;;;;;;;15188:4;;2748:10;15317:35;;;;15309:85;;;;-1:-1:-1;;;15309:85:0;;4938:2:1;15309:85:0;;;4920:21:1;4977:2;4957:18;;;4950:30;5016:34;4996:18;;;4989:62;-1:-1:-1;;;5067:18:1;;;5060:35;5112:19;;15309:85:0;4736:401:1;15309:85:0;15430:60;15439:5;15446:7;15474:15;15455:16;:34;15430:8;:60::i;12140:193::-;12219:4;2748:10;12275:28;2748:10;12292:2;12296:6;12275:9;:28::i;4712:201::-;3876:6;;-1:-1:-1;;;;;3876:6:0;2748:10;4023:23;4015:68;;;;-1:-1:-1;;;4015:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4801:22:0;::::1;4793:73;;;::::0;-1:-1:-1;;;4793:73:0;;5344:2:1;4793:73:0::1;::::0;::::1;5326:21:1::0;5383:2;5363:18;;;5356:30;5422:34;5402:18;;;5395:62;-1:-1:-1;;;5473:18:1;;;5466:36;5519:19;;4793:73:0::1;5142:402:1::0;4793:73:0::1;4877:28;4896:8;4877:18;:28::i;:::-;4712:201:::0;:::o;18731:380::-;-1:-1:-1;;;;;18867:19:0;;18859:68;;;;-1:-1:-1;;;18859:68:0;;5751:2:1;18859:68:0;;;5733:21:1;5790:2;5770:18;;;5763:30;5829:34;5809:18;;;5802:62;-1:-1:-1;;;5880:18:1;;;5873:34;5924:19;;18859:68:0;5549:400:1;18859:68:0;-1:-1:-1;;;;;18946:21:0;;18938:68;;;;-1:-1:-1;;;18938:68:0;;6156:2:1;18938:68:0;;;6138:21:1;6195:2;6175:18;;;6168:30;6234:34;6214:18;;;6207:62;-1:-1:-1;;;6285:18:1;;;6278:32;6327:19;;18938:68:0;5954:398:1;18938:68:0;-1:-1:-1;;;;;19019:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19071:32;;1391:25:1;;;19071:32:0;;1364:18:1;19071:32:0;;;;;;;18731:380;;;:::o;19398:453::-;-1:-1:-1;;;;;12512:18:0;;;19533:24;12512:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;19600:37:0;;19596:248;;19682:6;19662:16;:26;;19654:68;;;;-1:-1:-1;;;19654:68:0;;6559:2:1;19654:68:0;;;6541:21:1;6598:2;6578:18;;;6571:30;6637:31;6617:18;;;6610:59;6686:18;;19654:68:0;6357:353:1;19654:68:0;19766:51;19775:5;19782:7;19810:6;19791:16;:25;19766:8;:51::i;:::-;19522:329;19398:453;;;:::o;22133:500::-;3876:6;;-1:-1:-1;;;;;3876:6:0;-1:-1:-1;;;;;22270:17:0;:6;-1:-1:-1;;;;;22270:17:0;;22266:113;;22304:42;22320:6;22328:9;22339:6;22304:15;:42::i;:::-;22133:500;;;:::o;22266:113::-;22397:14;;;;22389:46;;;;-1:-1:-1;;;22389:46:0;;6917:2:1;22389:46:0;;;6899:21:1;6956:2;6936:18;;;6929:30;-1:-1:-1;;;6975:18:1;;;6968:49;7034:18;;22389:46:0;6715:343:1;22389:46:0;22465:4;-1:-1:-1;;;;;22452:17:0;:9;-1:-1:-1;;;;;22452:17:0;;22448:123;;22527:10;;22517:6;22494:20;22504:9;-1:-1:-1;;;;;11908:18:0;11881:7;11908:18;;;;;;;;;;;;11807:127;22494:20;:29;;;;:::i;:::-;:43;;22486:73;;;;-1:-1:-1;;;22486:73:0;;7265:2:1;22486:73:0;;;7247:21:1;7304:2;7284:18;;;7277:30;-1:-1:-1;;;7323:18:1;;;7316:47;7380:18;;22486:73:0;7063:341:1;22486:73:0;22583:42;22599:6;22607:9;22618:6;22583:15;:42::i;5073:191::-;5166:6;;;-1:-1:-1;;;;;5183:17:0;;;-1:-1:-1;;;;;;5183:17:0;;;;;;;5216:40;;5166:6;;;5183:17;5166:6;;5216:40;;5147:16;;5216:40;5136:128;5073:191;:::o;16012:671::-;-1:-1:-1;;;;;16143:18:0;;16135:68;;;;-1:-1:-1;;;16135:68:0;;7611:2:1;16135:68:0;;;7593:21:1;7650:2;7630:18;;;7623:30;7689:34;7669:18;;;7662:62;-1:-1:-1;;;7740:18:1;;;7733:35;7785:19;;16135:68:0;7409:401:1;16135:68:0;-1:-1:-1;;;;;16222:16:0;;16214:64;;;;-1:-1:-1;;;16214:64:0;;8017:2:1;16214:64:0;;;7999:21:1;8056:2;8036:18;;;8029:30;8095:34;8075:18;;;8068:62;-1:-1:-1;;;8146:18:1;;;8139:33;8189:19;;16214:64:0;7815:399:1;16214:64:0;-1:-1:-1;;;;;16364:15:0;;16342:19;16364:15;;;;;;;;;;;16398:21;;;;16390:72;;;;-1:-1:-1;;;16390:72:0;;8421:2:1;16390:72:0;;;8403:21:1;8460:2;8440:18;;;8433:30;8499:34;8479:18;;;8472:62;-1:-1:-1;;;8550:18:1;;;8543:36;8596:19;;16390:72:0;8219:402:1;16390:72:0;-1:-1:-1;;;;;16498:15:0;;;:9;:15;;;;;;;;;;;16516:20;;;16498:38;;16558:13;;;;;;;;:23;;16530:6;;16498:9;16558:23;;16530:6;;16558:23;:::i;:::-;;;;;;;;16614:2;-1:-1:-1;;;;;16599:26:0;16608:4;-1:-1:-1;;;;;16599:26:0;;16618:6;16599:26;;;;1391:25:1;;1379:2;1364:18;;1245:177;16599:26:0;;;;;;;;16638:37;22133:500;14:597:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2348:180::-;2407:6;2460:2;2448:9;2439:7;2435:23;2431:32;2428:52;;;2476:1;2473;2466:12;2428:52;-1:-1:-1;2499:23:1;;2348:180;-1:-1:-1;2348:180:1:o;2533:260::-;2601:6;2609;2662:2;2650:9;2641:7;2637:23;2633:32;2630:52;;;2678:1;2675;2668:12;2630:52;2701:29;2720:9;2701:29;:::i;:::-;2691:39;;2749:38;2783:2;2772:9;2768:18;2749:38;:::i;:::-;2739:48;;2533:260;;;;;:::o;2798:380::-;2877:1;2873:12;;;;2920;;;2941:61;;2995:4;2987:6;2983:17;2973:27;;2941:61;3048:2;3040:6;3037:14;3017:18;3014:38;3011:161;;3094:10;3089:3;3085:20;3082:1;3075:31;3129:4;3126:1;3119:15;3157:4;3154:1;3147:15;3011:161;;2798:380;;;:::o;3183:225::-;3223:3;3254:1;3250:6;3247:1;3244:13;3241:136;;;3299:10;3294:3;3290:20;3287:1;3280:31;3334:4;3331:1;3324:15;3362:4;3359:1;3352:15;3241:136;-1:-1:-1;3393:9:1;;3183:225::o;3413:356::-;3615:2;3597:21;;;3634:18;;;3627:30;3693:34;3688:2;3673:18;;3666:62;3760:2;3745:18;;3413:356::o

Swarm Source

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