ETH Price: $2,096.64 (+1.84%)

Token

CryptoQuokka (CQKK)
 

Overview

Max Total Supply

10,000,000,000 CQKK

Holders

1

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
CryptoQuokka

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2024-04-08
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.9;


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


interface IBEP20Metadata is IBEP20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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

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

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

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

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

    /**
     * @dev 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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

contract CryptoQuokka is Context, IBEP20Metadata, Ownable {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private constant _decimals = 18;
    uint256 public constant Supply = 10_000_000_000 * (10 ** _decimals);  // 10 billion

    /**
     * @dev Contract constructor.
     * @param name_ The name of the token.
     * @param symbol_ The symbol of the token.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _mint(0x70c8795A2854938099069474b034d46EE3Ff8391, Supply);
  
    }

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

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

    /**
     * @dev Returns the number of decimals used for token display.
     * @return The number of decimals.
     */
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Returns the total supply of the token.
     * @return The total supply.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Returns the balance of the specified account.
     * @param account The address to check the balance for.
     * @return The balance of the account.
     */
    function balanceOf(
        address account
    ) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev Transfers tokens from the caller to a specified recipient.
     * @param recipient The address to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     * @return A boolean value indicating whether the transfer was successful.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner.
     * @param from The address that approves the spending.
     * @param to The address that is allowed to spend.
     * @return The remaining allowance for the spender.
     */
    function allowance(
        address from,
        address to
    ) public view virtual override returns (uint256) {
        return _allowances[from][to];
    }

    /**
     * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller.
     * @param to The address to approve the spending for.
     * @param amount The amount of tokens to approve.
     * @return A boolean value indicating whether the approval was successful.
     */
    function approve(
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), to, amount);
        return true;
    }

    /**
     * @dev Transfers tokens from one address to another.
     * @param sender The address to transfer tokens from.
     * @param recipient The address to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     * @return A boolean value indicating whether the transfer was successful.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "BEP20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Increases the allowance of the specified address to spend tokens on behalf of the caller.
     * @param to The address to increase the allowance for.
     * @param addedValue The amount of tokens to increase the allowance by.
     * @return A boolean value indicating whether the increase was successful.
     */
    function increaseAllowance(
        address to,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue);
        return true;
    }

    /**
     * @dev Decreases the allowance granted by the owner of the tokens to `to` account.
     * @param to The account allowed to spend the tokens.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     * @return A boolean value indicating whether the operation succeeded.
     */
    function decreaseAllowance(
        address to,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][to];
        require(
            currentAllowance >= subtractedValue,
            "BEP20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), to, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Transfers `amount` tokens from `sender` to `recipient`.
     * @param sender The account to transfer tokens from.
     * @param recipient The account to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(amount > 0, "BEP20: transfer amount zero");
        require(sender != address(0), "BEP20: transfer from the zero address");
        require(recipient != address(0), "BEP20: transfer to the zero address");

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "BEP20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `account`.
     * @param account The account to assign the newly created tokens to.
     * @param amount The amount of tokens to create.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "BEP20: mint to the zero address");

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the total supply.
     * @param account The account to burn tokens from.
     * @param amount The amount of tokens to burn.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "BEP20: burn from the zero address");

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

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

    /**
     * @dev Destroys `amount` tokens from the caller's account, reducing the total supply.
     * @param amount The amount of tokens to burn.
     */
    function burn(uint256 amount) external {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `to` over the caller's tokens.
     * @param from The account granting the allowance.
     * @param to The account allowed to spend the tokens.
     * @param amount The amount of tokens to allow.
     */
    function _approve(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "BEP20: approve from the zero address");
        require(to != address(0), "BEP20: approve to the zero address");

        _allowances[from][to] = amount;
        emit Approval(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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":[],"name":"Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200132c3803806200132c83398101604081905262000034916200035c565b6200003f33620000b1565b815162000054906004906020850190620001e9565b5080516200006a906005906020840190620001e9565b50620000a97370c8795a2854938099069474b034d46ee3ff8391620000926012600a620004db565b620000a3906402540be400620004f3565b62000101565b50506200056d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200015c5760405162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806003600082825462000170919062000515565b90915550506001600160a01b038216600090815260016020526040812080548392906200019f90849062000515565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001f79062000530565b90600052602060002090601f0160209004810192826200021b576000855562000266565b82601f106200023657805160ff191683800117855562000266565b8280016001018555821562000266579182015b828111156200026657825182559160200191906001019062000249565b506200027492915062000278565b5090565b5b8082111562000274576000815560010162000279565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002b757600080fd5b81516001600160401b0380821115620002d457620002d46200028f565b604051601f8301601f19908116603f01168101908282118183101715620002ff57620002ff6200028f565b816040528381526020925086838588010111156200031c57600080fd5b600091505b8382101562000340578582018301518183018401529082019062000321565b83821115620003525760008385830101525b9695505050505050565b600080604083850312156200037057600080fd5b82516001600160401b03808211156200038857600080fd5b6200039686838701620002a5565b93506020850151915080821115620003ad57600080fd5b50620003bc85828601620002a5565b9150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200041d578160001904821115620004015762000401620003c6565b808516156200040f57918102915b93841c9390800290620003e1565b509250929050565b6000826200043657506001620004d5565b816200044557506000620004d5565b81600181146200045e5760028114620004695762000489565b6001915050620004d5565b60ff8411156200047d576200047d620003c6565b50506001821b620004d5565b5060208310610133831016604e8410600b8410161715620004ae575081810a620004d5565b620004ba8383620003dc565b8060001904821115620004d157620004d1620003c6565b0290505b92915050565b6000620004ec60ff84168362000425565b9392505050565b6000816000190483118215151615620005105762000510620003c6565b500290565b600082198211156200052b576200052b620003c6565b500190565b600181811c908216806200054557607f821691505b602082108114156200056757634e487b7160e01b600052602260045260246000fd5b50919050565b610daf806200057d6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb14610209578063dd62ed3e1461021c578063ee07bf2214610255578063f2fde38b1461025d57600080fd5b8063715018a6146101cb5780638da5cb5b146101d357806395d89b41146101ee578063a457c2d7146101f657600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806342966c681461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610270565b60405161011a9190610aa2565b60405180910390f35b610136610131366004610b13565b610302565b604051901515815260200161011a565b6003545b60405190815260200161011a565b610136610166366004610b3d565b610319565b6040516012815260200161011a565b610136610188366004610b13565b6103c8565b6101a061019b366004610b79565b610404565b005b61014a6101b0366004610b92565b6001600160a01b031660009081526001602052604090205490565b6101a0610411565b6000546040516001600160a01b03909116815260200161011a565b61010d610425565b610136610204366004610b13565b610434565b610136610217366004610b13565b6104cd565b61014a61022a366004610bb4565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61014a6104da565b6101a061026b366004610b92565b6104f8565b60606004805461027f90610be7565b80601f01602080910402602001604051908101604052809291908181526020018280546102ab90610be7565b80156102f85780601f106102cd576101008083540402835291602001916102f8565b820191906000526020600020905b8154815290600101906020018083116102db57829003601f168201915b5050505050905090565b600061030f33848461056e565b5060015b92915050565b6000610326848484610693565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103b05760405162461bcd60e51b815260206004820152602860248201527f42455032303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103bd853385840361056e565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161030f9185906103ff908690610c38565b61056e565b61040e33826108b2565b50565b6104196109f8565b6104236000610a52565b565b60606005805461027f90610be7565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156104b65760405162461bcd60e51b815260206004820152602560248201527f42455032303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103a7565b6104c3338585840361056e565b5060019392505050565b600061030f338484610693565b6104e66012600a610d34565b6104f5906402540be400610d43565b81565b6105006109f8565b6001600160a01b0381166105655760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a7565b61040e81610a52565b6001600160a01b0383166105d05760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a7565b6001600160a01b0382166106315760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a7565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600081116106e35760405162461bcd60e51b815260206004820152601b60248201527f42455032303a207472616e7366657220616d6f756e74207a65726f000000000060448201526064016103a7565b6001600160a01b0383166107475760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a7565b6001600160a01b0382166107a95760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a7565b6001600160a01b038316600090815260016020526040902054818110156108215760405162461bcd60e51b815260206004820152602660248201527f42455032303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103a7565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610858908490610c38565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108a491815260200190565b60405180910390a350505050565b6001600160a01b0382166109125760405162461bcd60e51b815260206004820152602160248201527f42455032303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103a7565b6001600160a01b038216600090815260016020526040902054818110156109865760405162461bcd60e51b815260206004820152602260248201527f42455032303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103a7565b6001600160a01b03831660009081526001602052604081208383039055600380548492906109b5908490610d62565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610686565b6000546001600160a01b031633146104235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103a7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610acf57858101830151858201604001528201610ab3565b81811115610ae1576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b0e57600080fd5b919050565b60008060408385031215610b2657600080fd5b610b2f83610af7565b946020939093013593505050565b600080600060608486031215610b5257600080fd5b610b5b84610af7565b9250610b6960208501610af7565b9150604084013590509250925092565b600060208284031215610b8b57600080fd5b5035919050565b600060208284031215610ba457600080fd5b610bad82610af7565b9392505050565b60008060408385031215610bc757600080fd5b610bd083610af7565b9150610bde60208401610af7565b90509250929050565b600181811c90821680610bfb57607f821691505b60208210811415610c1c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c4b57610c4b610c22565b500190565b600181815b80851115610c8b578160001904821115610c7157610c71610c22565b80851615610c7e57918102915b93841c9390800290610c55565b509250929050565b600082610ca257506001610313565b81610caf57506000610313565b8160018114610cc55760028114610ccf57610ceb565b6001915050610313565b60ff841115610ce057610ce0610c22565b50506001821b610313565b5060208310610133831016604e8410600b8410161715610d0e575081810a610313565b610d188383610c50565b8060001904821115610d2c57610d2c610c22565b029392505050565b6000610bad60ff841683610c93565b6000816000190483118215151615610d5d57610d5d610c22565b500290565b600082821015610d7457610d74610c22565b50039056fea264697066735822122010c7a563cce850a726603dda4d3f85c74b43607f3b429397e6566c4b4b608d7764736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c43727970746f51756f6b6b610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443514b4b00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb14610209578063dd62ed3e1461021c578063ee07bf2214610255578063f2fde38b1461025d57600080fd5b8063715018a6146101cb5780638da5cb5b146101d357806395d89b41146101ee578063a457c2d7146101f657600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806342966c681461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610270565b60405161011a9190610aa2565b60405180910390f35b610136610131366004610b13565b610302565b604051901515815260200161011a565b6003545b60405190815260200161011a565b610136610166366004610b3d565b610319565b6040516012815260200161011a565b610136610188366004610b13565b6103c8565b6101a061019b366004610b79565b610404565b005b61014a6101b0366004610b92565b6001600160a01b031660009081526001602052604090205490565b6101a0610411565b6000546040516001600160a01b03909116815260200161011a565b61010d610425565b610136610204366004610b13565b610434565b610136610217366004610b13565b6104cd565b61014a61022a366004610bb4565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61014a6104da565b6101a061026b366004610b92565b6104f8565b60606004805461027f90610be7565b80601f01602080910402602001604051908101604052809291908181526020018280546102ab90610be7565b80156102f85780601f106102cd576101008083540402835291602001916102f8565b820191906000526020600020905b8154815290600101906020018083116102db57829003601f168201915b5050505050905090565b600061030f33848461056e565b5060015b92915050565b6000610326848484610693565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103b05760405162461bcd60e51b815260206004820152602860248201527f42455032303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103bd853385840361056e565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161030f9185906103ff908690610c38565b61056e565b61040e33826108b2565b50565b6104196109f8565b6104236000610a52565b565b60606005805461027f90610be7565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156104b65760405162461bcd60e51b815260206004820152602560248201527f42455032303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103a7565b6104c3338585840361056e565b5060019392505050565b600061030f338484610693565b6104e66012600a610d34565b6104f5906402540be400610d43565b81565b6105006109f8565b6001600160a01b0381166105655760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a7565b61040e81610a52565b6001600160a01b0383166105d05760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a7565b6001600160a01b0382166106315760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a7565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600081116106e35760405162461bcd60e51b815260206004820152601b60248201527f42455032303a207472616e7366657220616d6f756e74207a65726f000000000060448201526064016103a7565b6001600160a01b0383166107475760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a7565b6001600160a01b0382166107a95760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a7565b6001600160a01b038316600090815260016020526040902054818110156108215760405162461bcd60e51b815260206004820152602660248201527f42455032303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103a7565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610858908490610c38565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108a491815260200190565b60405180910390a350505050565b6001600160a01b0382166109125760405162461bcd60e51b815260206004820152602160248201527f42455032303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103a7565b6001600160a01b038216600090815260016020526040902054818110156109865760405162461bcd60e51b815260206004820152602260248201527f42455032303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103a7565b6001600160a01b03831660009081526001602052604081208383039055600380548492906109b5908490610d62565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610686565b6000546001600160a01b031633146104235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103a7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610acf57858101830151858201604001528201610ab3565b81811115610ae1576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b0e57600080fd5b919050565b60008060408385031215610b2657600080fd5b610b2f83610af7565b946020939093013593505050565b600080600060608486031215610b5257600080fd5b610b5b84610af7565b9250610b6960208501610af7565b9150604084013590509250925092565b600060208284031215610b8b57600080fd5b5035919050565b600060208284031215610ba457600080fd5b610bad82610af7565b9392505050565b60008060408385031215610bc757600080fd5b610bd083610af7565b9150610bde60208401610af7565b90509250929050565b600181811c90821680610bfb57607f821691505b60208210811415610c1c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c4b57610c4b610c22565b500190565b600181815b80851115610c8b578160001904821115610c7157610c71610c22565b80851615610c7e57918102915b93841c9390800290610c55565b509250929050565b600082610ca257506001610313565b81610caf57506000610313565b8160018114610cc55760028114610ccf57610ceb565b6001915050610313565b60ff841115610ce057610ce0610c22565b50506001821b610313565b5060208310610133831016604e8410600b8410161715610d0e575081810a610313565b610d188383610c50565b8060001904821115610d2c57610d2c610c22565b029392505050565b6000610bad60ff841683610c93565b6000816000190483118215151615610d5d57610d5d610c22565b500290565b600082821015610d7457610d74610c22565b50039056fea264697066735822122010c7a563cce850a726603dda4d3f85c74b43607f3b429397e6566c4b4b608d7764736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c43727970746f51756f6b6b610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443514b4b00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): CryptoQuokka
Arg [1] : symbol_ (string): CQKK

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 43727970746f51756f6b6b610000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 43514b4b00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

6465:8724:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7330:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9723:184;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;9723:184:0;1053:187:1;7993:108:0;8081:12;;7993:108;;;1391:25:1;;;1379:2;1364:18;7993:108:0;1245:177:1;10247:529:0;;;;;;:::i;:::-;;:::i;7781:100::-;;;6788:2;1902:36:1;;1890:2;1875:18;7781:100:0;1760:184:1;11123:225:0;;;;;;:::i;:::-;;:::i;14473:85::-;;;;;;:::i;:::-;;:::i;:::-;;8291:143;;;;;;:::i;:::-;-1:-1:-1;;;;;8408:18:0;8381:7;8408:18;;;:9;:18;;;;;;;8291:143;5611:103;;;:::i;4970:87::-;5016:7;5043:6;4970:87;;-1:-1:-1;;;;;5043:6:0;;;2471:51:1;;2459:2;2444:18;4970:87:0;2325:203:1;7543:104:0;;;:::i;11680:460::-;;;;;;:::i;:::-;;:::i;8728:200::-;;;;;;:::i;:::-;;:::i;9230:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9365:17:0;;;9338:7;9365:17;;;:11;:17;;;;;;;;:21;;;;;;;;;;;;;9230:164;6797:67;;;:::i;5869:238::-;;;;;;:::i;:::-;;:::i;7330:100::-;7384:13;7417:5;7410:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7330:100;:::o;9723:184::-;9826:4;9843:34;3734:10;9866:2;9870:6;9843:8;:34::i;:::-;-1:-1:-1;9895:4:0;9723:184;;;;;:::o;10247:529::-;10387:4;10404:36;10414:6;10422:9;10433:6;10404:9;:36::i;:::-;-1:-1:-1;;;;;10480:19:0;;10453:24;10480:19;;;:11;:19;;;;;;;;3734:10;10480:33;;;;;;;;10546:26;;;;10524:116;;;;-1:-1:-1;;;10524:116:0;;3385:2:1;10524:116:0;;;3367:21:1;3424:2;3404:18;;;3397:30;3463:34;3443:18;;;3436:62;-1:-1:-1;;;3514:18:1;;;3507:38;3562:19;;10524:116:0;;;;;;;;;10676:57;10685:6;3734:10;10726:6;10707:16;:25;10676:8;:57::i;:::-;-1:-1:-1;10764:4:0;;10247:529;-1:-1:-1;;;;10247:529:0:o;11123:225::-;3734:10;11231:4;11275:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11275:29:0;;;;;;;;;;11231:4;;11248:70;;11271:2;;11275:42;;11307:10;;11275:42;:::i;:::-;11248:8;:70::i;14473:85::-;14523:27;3734:10;14543:6;14523:5;:27::i;:::-;14473:85;:::o;5611:103::-;4856:13;:11;:13::i;:::-;5676:30:::1;5703:1;5676:18;:30::i;:::-;5611:103::o:0;7543:104::-;7599:13;7632:7;7625:14;;;;;:::i;11680:460::-;3734:10;11793:4;11837:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11837:29:0;;;;;;;;;;11899:35;;;;11877:122;;;;-1:-1:-1;;;11877:122:0;;4059:2:1;11877:122:0;;;4041:21:1;4098:2;4078:18;;;4071:30;4137:34;4117:18;;;4110:62;-1:-1:-1;;;4188:18:1;;;4181:35;4233:19;;11877:122:0;3857:401:1;11877:122:0;12035:62;3734:10;12058:2;12081:15;12062:16;:34;12035:8;:62::i;:::-;-1:-1:-1;12128:4:0;;11680:460;-1:-1:-1;;;11680:460:0:o;8728:200::-;8839:4;8856:42;3734:10;8880:9;8891:6;8856:9;:42::i;6797:67::-;6848:15;6788:2;6848;:15;:::i;:::-;6830:34;;:14;:34;:::i;:::-;6797:67;:::o;5869:238::-;4856:13;:11;:13::i;:::-;-1:-1:-1;;;;;5972:22:0;::::1;5950:110;;;::::0;-1:-1:-1;;;5950:110:0;;6021:2:1;5950:110:0::1;::::0;::::1;6003:21:1::0;6060:2;6040:18;;;6033:30;6099:34;6079:18;;;6072:62;-1:-1:-1;;;6150:18:1;;;6143:36;6196:19;;5950:110:0::1;5819:402:1::0;5950:110:0::1;6071:28;6090:8;6071:18;:28::i;14830:356::-:0;-1:-1:-1;;;;;14960:18:0;;14952:67;;;;-1:-1:-1;;;14952:67:0;;6428:2:1;14952:67:0;;;6410:21:1;6467:2;6447:18;;;6440:30;6506:34;6486:18;;;6479:62;-1:-1:-1;;;6557:18:1;;;6550:34;6601:19;;14952:67:0;6226:400:1;14952:67:0;-1:-1:-1;;;;;15038:16:0;;15030:63;;;;-1:-1:-1;;;15030:63:0;;6833:2:1;15030:63:0;;;6815:21:1;6872:2;6852:18;;;6845:30;6911:34;6891:18;;;6884:62;-1:-1:-1;;;6962:18:1;;;6955:32;7004:19;;15030:63:0;6631:398:1;15030:63:0;-1:-1:-1;;;;;15106:17:0;;;;;;;:11;:17;;;;;;;;:21;;;;;;;;;;;;;:30;;;15152:26;;1391:25:1;;;15152:26:0;;1364:18:1;15152:26:0;;;;;;;;14830:356;;;:::o;12410:712::-;12559:1;12550:6;:10;12542:50;;;;-1:-1:-1;;;12542:50:0;;7236:2:1;12542:50:0;;;7218:21:1;7275:2;7255:18;;;7248:30;7314:29;7294:18;;;7287:57;7361:18;;12542:50:0;7034:351:1;12542:50:0;-1:-1:-1;;;;;12611:20:0;;12603:70;;;;-1:-1:-1;;;12603:70:0;;7592:2:1;12603:70:0;;;7574:21:1;7631:2;7611:18;;;7604:30;7670:34;7650:18;;;7643:62;-1:-1:-1;;;7721:18:1;;;7714:35;7766:19;;12603:70:0;7390:401:1;12603:70:0;-1:-1:-1;;;;;12692:23:0;;12684:71;;;;-1:-1:-1;;;12684:71:0;;7998:2:1;12684:71:0;;;7980:21:1;8037:2;8017:18;;;8010:30;8076:34;8056:18;;;8049:62;-1:-1:-1;;;8127:18:1;;;8120:33;8170:19;;12684:71:0;7796:399:1;12684:71:0;-1:-1:-1;;;;;12792:17:0;;12768:21;12792:17;;;:9;:17;;;;;;12842:23;;;;12820:111;;;;-1:-1:-1;;;12820:111:0;;8402:2:1;12820:111:0;;;8384:21:1;8441:2;8421:18;;;8414:30;8480:34;8460:18;;;8453:62;-1:-1:-1;;;8531:18:1;;;8524:36;8577:19;;12820:111:0;8200:402:1;12820:111:0;-1:-1:-1;;;;;12967:17:0;;;;;;;:9;:17;;;;;;12987:22;;;12967:42;;13031:20;;;;;;;;:30;;13003:6;;12967:17;13031:30;;13003:6;;13031:30;:::i;:::-;;;;;;;;13096:9;-1:-1:-1;;;;;13079:35:0;13088:6;-1:-1:-1;;;;;13079:35:0;;13107:6;13079:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;13079:35:0;;;;;;;;12531:591;12410:712;;;:::o;13835:468::-;-1:-1:-1;;;;;13919:21:0;;13911:67;;;;-1:-1:-1;;;13911:67:0;;8809:2:1;13911:67:0;;;8791:21:1;8848:2;8828:18;;;8821:30;8887:34;8867:18;;;8860:62;-1:-1:-1;;;8938:18:1;;;8931:31;8979:19;;13911:67:0;8607:397:1;13911:67:0;-1:-1:-1;;;;;14016:18:0;;13991:22;14016:18;;;:9;:18;;;;;;14053:24;;;;14045:71;;;;-1:-1:-1;;;14045:71:0;;9211:2:1;14045:71:0;;;9193:21:1;9250:2;9230:18;;;9223:30;9289:34;9269:18;;;9262:62;-1:-1:-1;;;9340:18:1;;;9333:32;9382:19;;14045:71:0;9009:398:1;14045:71:0;-1:-1:-1;;;;;14152:18:0;;;;;;:9;:18;;;;;14173:23;;;14152:44;;14218:12;:22;;14190:6;;14152:18;14218:22;;14190:6;;14218:22;:::i;:::-;;;;-1:-1:-1;;14258:37:0;;1391:25:1;;;14284:1:0;;-1:-1:-1;;;;;14258:37:0;;;;;1379:2:1;1364:18;14258:37:0;1245:177:1;5135:132:0;5016:7;5043:6;-1:-1:-1;;;;;5043:6:0;3734:10;5199:23;5191:68;;;;-1:-1:-1;;;5191:68:0;;9744:2:1;5191:68:0;;;9726:21:1;;;9763:18;;;9756:30;9822:34;9802:18;;;9795:62;9874:18;;5191:68:0;9542:356:1;6267:191:0;6341:16;6360:6;;-1:-1:-1;;;;;6377:17:0;;;-1:-1:-1;;;;;;6377:17:0;;;;;;6410:40;;6360:6;;;;;;;6410:40;;6341:16;6410:40;6330:128;6267:191;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:180::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;-1:-1:-1;2100:23:1;;1949:180;-1:-1:-1;1949:180:1:o;2134:186::-;2193:6;2246:2;2234:9;2225:7;2221:23;2217:32;2214:52;;;2262:1;2259;2252:12;2214:52;2285:29;2304:9;2285:29;:::i;:::-;2275:39;2134:186;-1:-1:-1;;;2134:186:1:o;2533:260::-;2601:6;2609;2662:2;2650:9;2641:7;2637:23;2633:32;2630:52;;;2678:1;2675;2668:12;2630:52;2701:29;2720:9;2701:29;:::i;:::-;2691:39;;2749:38;2783:2;2772:9;2768:18;2749:38;:::i;:::-;2739:48;;2533:260;;;;;:::o;2798:380::-;2877:1;2873:12;;;;2920;;;2941:61;;2995:4;2987:6;2983:17;2973:27;;2941:61;3048:2;3040:6;3037:14;3017:18;3014:38;3011:161;;;3094:10;3089:3;3085:20;3082:1;3075:31;3129:4;3126:1;3119:15;3157:4;3154:1;3147:15;3011:161;;2798:380;;;:::o;3592:127::-;3653:10;3648:3;3644:20;3641:1;3634:31;3684:4;3681:1;3674:15;3708:4;3705:1;3698:15;3724:128;3764:3;3795:1;3791:6;3788:1;3785:13;3782:39;;;3801:18;;:::i;:::-;-1:-1:-1;3837:9:1;;3724:128::o;4263:422::-;4352:1;4395:5;4352:1;4409:270;4430:7;4420:8;4417:21;4409:270;;;4489:4;4485:1;4481:6;4477:17;4471:4;4468:27;4465:53;;;4498:18;;:::i;:::-;4548:7;4538:8;4534:22;4531:55;;;4568:16;;;;4531:55;4647:22;;;;4607:15;;;;4409:270;;;4413:3;4263:422;;;;;:::o;4690:806::-;4739:5;4769:8;4759:80;;-1:-1:-1;4810:1:1;4824:5;;4759:80;4858:4;4848:76;;-1:-1:-1;4895:1:1;4909:5;;4848:76;4940:4;4958:1;4953:59;;;;5026:1;5021:130;;;;4933:218;;4953:59;4983:1;4974:10;;4997:5;;;5021:130;5058:3;5048:8;5045:17;5042:43;;;5065:18;;:::i;:::-;-1:-1:-1;;5121:1:1;5107:16;;5136:5;;4933:218;;5235:2;5225:8;5222:16;5216:3;5210:4;5207:13;5203:36;5197:2;5187:8;5184:16;5179:2;5173:4;5170:12;5166:35;5163:77;5160:159;;;-1:-1:-1;5272:19:1;;;5304:5;;5160:159;5351:34;5376:8;5370:4;5351:34;:::i;:::-;5421:6;5417:1;5413:6;5409:19;5400:7;5397:32;5394:58;;;5432:18;;:::i;:::-;5470:20;;4690:806;-1:-1:-1;;;4690:806:1:o;5501:140::-;5559:5;5588:47;5629:4;5619:8;5615:19;5609:4;5588:47;:::i;5646:168::-;5686:7;5752:1;5748;5744:6;5740:14;5737:1;5734:21;5729:1;5722:9;5715:17;5711:45;5708:71;;;5759:18;;:::i;:::-;-1:-1:-1;5799:9:1;;5646:168::o;9412:125::-;9452:4;9480:1;9477;9474:8;9471:34;;;9485:18;;:::i;:::-;-1:-1:-1;9522:9:1;;9412:125::o

Swarm Source

ipfs://10c7a563cce850a726603dda4d3f85c74b43607f3b429397e6566c4b4b608d77
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.