ETH Price: $3,019.72 (+0.98%)
 

Overview

Max Total Supply

1,000,000,000 CXC

Holders

445

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

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
Yes with 200 runs

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @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}.
 *
 * 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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

// File: cxc.sol



pragma solidity ^0.8.25;



contract CentralisX is Ownable,ERC20{
    
    constructor(uint256 _totalSupply, string memory name,string memory symbol) ERC20(name,symbol) Ownable(msg.sender) public{
        _mint(msg.sender, _totalSupply);
    }

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"value","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":"value","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"}]

608060405234801561000f575f80fd5b50604051610d45380380610d4583398101604081905261002e916102dd565b8181338061005657604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61005f81610094565b50600461006c83826103c9565b50600561007982826103c9565b50505061008c33846100e360201b60201c565b5050506104ad565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821661010c5760405163ec442f0560e01b81525f600482015260240161004d565b6101175f838361011b565b5050565b6001600160a01b038316610145578060035f82825461013a9190610488565b909155506101b59050565b6001600160a01b0383165f90815260016020526040902054818110156101975760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161004d565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b0382166101d1576003805482900390556101ef565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161023491815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112610264575f80fd5b81516001600160401b038082111561027e5761027e610241565b604051601f8301601f19908116603f011681019082821181831017156102a6576102a6610241565b816040528381528660208588010111156102be575f80fd5b8360208701602083015e5f602085830101528094505050505092915050565b5f805f606084860312156102ef575f80fd5b835160208501519093506001600160401b038082111561030d575f80fd5b61031987838801610255565b9350604086015191508082111561032e575f80fd5b5061033b86828701610255565b9150509250925092565b600181811c9082168061035957607f821691505b60208210810361037757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156103c457805f5260205f20601f840160051c810160208510156103a25750805b601f840160051c820191505b818110156103c1575f81556001016103ae565b50505b505050565b81516001600160401b038111156103e2576103e2610241565b6103f6816103f08454610345565b8461037d565b602080601f831160018114610429575f84156104125750858301515b5f19600386901b1c1916600185901b178555610480565b5f85815260208120601f198616915b8281101561045757888601518255948401946001909101908401610438565b508582101561047457878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b808201808211156104a757634e487b7160e01b5f52601160045260245ffd5b92915050565b61088b806104ba5f395ff3fe608060405234801561000f575f80fd5b50600436106100cb575f3560e01c806370a082311161008857806395d89b411161006357806395d89b41146101a3578063a9059cbb146101ab578063dd62ed3e146101be578063f2fde38b146101f6575f80fd5b806370a0823114610159578063715018a6146101815780638da5cb5b14610189575f80fd5b806306fdde03146100cf578063095ea7b3146100ed57806318160ddd1461011057806323b872dd14610122578063313ce5671461013557806342966c6814610144575b5f80fd5b6100d7610209565b6040516100e491906106e5565b60405180910390f35b6101006100fb366004610735565b610299565b60405190151581526020016100e4565b6003545b6040519081526020016100e4565b61010061013036600461075d565b6102b2565b604051601281526020016100e4565b610157610152366004610796565b6102d5565b005b6101146101673660046107ad565b6001600160a01b03165f9081526001602052604090205490565b6101576102e2565b5f546040516001600160a01b0390911681526020016100e4565b6100d76102f5565b6101006101b9366004610735565b610304565b6101146101cc3660046107cd565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101576102043660046107ad565b610311565b606060048054610218906107fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610244906107fe565b801561028f5780601f106102665761010080835404028352916020019161028f565b820191905f5260205f20905b81548152906001019060200180831161027257829003601f168201915b5050505050905090565b5f336102a6818585610350565b60019150505b92915050565b5f336102bf858285610362565b6102ca8585856103dd565b506001949350505050565b6102df338261043a565b50565b6102ea610472565b6102f35f61049e565b565b606060058054610218906107fe565b5f336102a68185856103dd565b610319610472565b6001600160a01b03811661034757604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6102df8161049e565b61035d83838360016104ed565b505050565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f1981146103d757818110156103c957604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161033e565b6103d784848484035f6104ed565b50505050565b6001600160a01b03831661040657604051634b637e8f60e11b81525f600482015260240161033e565b6001600160a01b03821661042f5760405163ec442f0560e01b81525f600482015260240161033e565b61035d8383836105bf565b6001600160a01b03821661046357604051634b637e8f60e11b81525f600482015260240161033e565b61046e825f836105bf565b5050565b5f546001600160a01b031633146102f35760405163118cdaa760e01b815233600482015260240161033e565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0384166105165760405163e602df0560e01b81525f600482015260240161033e565b6001600160a01b03831661053f57604051634a1406b160e11b81525f600482015260240161033e565b6001600160a01b038085165f90815260026020908152604080832093871683529290522082905580156103d757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516105b191815260200190565b60405180910390a350505050565b6001600160a01b0383166105e9578060035f8282546105de9190610836565b909155506106599050565b6001600160a01b0383165f908152600160205260409020548181101561063b5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161033e565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b03821661067557600380548290039055610693565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516106d891815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610730575f80fd5b919050565b5f8060408385031215610746575f80fd5b61074f8361071a565b946020939093013593505050565b5f805f6060848603121561076f575f80fd5b6107788461071a565b92506107866020850161071a565b9150604084013590509250925092565b5f602082840312156107a6575f80fd5b5035919050565b5f602082840312156107bd575f80fd5b6107c68261071a565b9392505050565b5f80604083850312156107de575f80fd5b6107e78361071a565b91506107f56020840161071a565b90509250929050565b600181811c9082168061081257607f821691505b60208210810361083057634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102ac57634e487b7160e01b5f52601160045260245ffdfea26469706673582212205aaa77b2555cec0beb913f38ca8f7a852e33f737974c75b865fbe3a61e8fb31364736f6c634300081900330000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000a43656e7472616c6973580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034358430000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100cb575f3560e01c806370a082311161008857806395d89b411161006357806395d89b41146101a3578063a9059cbb146101ab578063dd62ed3e146101be578063f2fde38b146101f6575f80fd5b806370a0823114610159578063715018a6146101815780638da5cb5b14610189575f80fd5b806306fdde03146100cf578063095ea7b3146100ed57806318160ddd1461011057806323b872dd14610122578063313ce5671461013557806342966c6814610144575b5f80fd5b6100d7610209565b6040516100e491906106e5565b60405180910390f35b6101006100fb366004610735565b610299565b60405190151581526020016100e4565b6003545b6040519081526020016100e4565b61010061013036600461075d565b6102b2565b604051601281526020016100e4565b610157610152366004610796565b6102d5565b005b6101146101673660046107ad565b6001600160a01b03165f9081526001602052604090205490565b6101576102e2565b5f546040516001600160a01b0390911681526020016100e4565b6100d76102f5565b6101006101b9366004610735565b610304565b6101146101cc3660046107cd565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101576102043660046107ad565b610311565b606060048054610218906107fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610244906107fe565b801561028f5780601f106102665761010080835404028352916020019161028f565b820191905f5260205f20905b81548152906001019060200180831161027257829003601f168201915b5050505050905090565b5f336102a6818585610350565b60019150505b92915050565b5f336102bf858285610362565b6102ca8585856103dd565b506001949350505050565b6102df338261043a565b50565b6102ea610472565b6102f35f61049e565b565b606060058054610218906107fe565b5f336102a68185856103dd565b610319610472565b6001600160a01b03811661034757604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6102df8161049e565b61035d83838360016104ed565b505050565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f1981146103d757818110156103c957604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161033e565b6103d784848484035f6104ed565b50505050565b6001600160a01b03831661040657604051634b637e8f60e11b81525f600482015260240161033e565b6001600160a01b03821661042f5760405163ec442f0560e01b81525f600482015260240161033e565b61035d8383836105bf565b6001600160a01b03821661046357604051634b637e8f60e11b81525f600482015260240161033e565b61046e825f836105bf565b5050565b5f546001600160a01b031633146102f35760405163118cdaa760e01b815233600482015260240161033e565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0384166105165760405163e602df0560e01b81525f600482015260240161033e565b6001600160a01b03831661053f57604051634a1406b160e11b81525f600482015260240161033e565b6001600160a01b038085165f90815260026020908152604080832093871683529290522082905580156103d757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516105b191815260200190565b60405180910390a350505050565b6001600160a01b0383166105e9578060035f8282546105de9190610836565b909155506106599050565b6001600160a01b0383165f908152600160205260409020548181101561063b5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161033e565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b03821661067557600380548290039055610693565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516106d891815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610730575f80fd5b919050565b5f8060408385031215610746575f80fd5b61074f8361071a565b946020939093013593505050565b5f805f6060848603121561076f575f80fd5b6107788461071a565b92506107866020850161071a565b9150604084013590509250925092565b5f602082840312156107a6575f80fd5b5035919050565b5f602082840312156107bd575f80fd5b6107c68261071a565b9392505050565b5f80604083850312156107de575f80fd5b6107e78361071a565b91506107f56020840161071a565b90509250929050565b600181811c9082168061081257607f821691505b60208210810361083057634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102ac57634e487b7160e01b5f52601160045260245ffdfea26469706673582212205aaa77b2555cec0beb913f38ca8f7a852e33f737974c75b865fbe3a61e8fb31364736f6c63430008190033

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

0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000a43656e7472616c6973580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034358430000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 1000000000000000000000000000
Arg [1] : name (string): CentralisX
Arg [2] : symbol (string): CXC

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 43656e7472616c69735800000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4358430000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

25897:311:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13330:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15623:190;;;;;;:::i;:::-;;:::i;:::-;;;1039:14:1;;1032:22;1014:41;;1002:2;987:18;15623:190:0;874:187:1;14432:99:0;14511:12;;14432:99;;;1212:25:1;;;1200:2;1185:18;14432:99:0;1066:177:1;16391:249:0;;;;;;:::i;:::-;;:::i;14283:84::-;;;14357:2;1723:36:1;;1711:2;1696:18;14283:84:0;1581:184:1;26124:81:0;;;;;;:::i;:::-;;:::i;:::-;;14594:118;;;;;;:::i;:::-;-1:-1:-1;;;;;14686:18:0;14659:7;14686:18;;;:9;:18;;;;;;;14594:118;25005:103;;;:::i;24330:87::-;24376:7;24403:6;24330:87;;-1:-1:-1;;;;;24403:6:0;;;2292:51:1;;2280:2;2265:18;24330:87:0;2146:203:1;13540:95:0;;;:::i;14917:182::-;;;;;;:::i;:::-;;:::i;15162:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15269:18:0;;;15242:7;15269:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15162:142;25263:220;;;;;;:::i;:::-;;:::i;13330:91::-;13375:13;13408:5;13401:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13330:91;:::o;15623:190::-;15696:4;11145:10;15752:31;11145:10;15768:7;15777:5;15752:8;:31::i;:::-;15801:4;15794:11;;;15623:190;;;;;:::o;16391:249::-;16478:4;11145:10;16536:37;16552:4;11145:10;16567:5;16536:15;:37::i;:::-;16584:26;16594:4;16600:2;16604:5;16584:9;:26::i;:::-;-1:-1:-1;16628:4:0;;16391:249;-1:-1:-1;;;;16391:249:0:o;26124:81::-;26173:24;26179:10;26191:5;26173;:24::i;:::-;26124:81;:::o;25005:103::-;24216:13;:11;:13::i;:::-;25070:30:::1;25097:1;25070:18;:30::i;:::-;25005:103::o:0;13540:95::-;13587:13;13620:7;13613:14;;;;;:::i;14917:182::-;14986:4;11145:10;15042:27;11145:10;15059:2;15063:5;15042:9;:27::i;25263:220::-;24216:13;:11;:13::i;:::-;-1:-1:-1;;;;;25348:22:0;::::1;25344:93;;25394:31;::::0;-1:-1:-1;;;25394:31:0;;25422:1:::1;25394:31;::::0;::::1;2292:51:1::0;2265:18;;25394:31:0::1;;;;;;;;25344:93;25447:28;25466:8;25447:18;:28::i;20450:130::-:0;20535:37;20544:5;20551:7;20560:5;20567:4;20535:8;:37::i;:::-;20450:130;;;:::o;22166:487::-;-1:-1:-1;;;;;15269:18:0;;;22266:24;15269:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22333:37:0;;22329:317;;22410:5;22391:16;:24;22387:132;;;22443:60;;-1:-1:-1;;;22443:60:0;;-1:-1:-1;;;;;3224:32:1;;22443:60:0;;;3206:51:1;3273:18;;;3266:34;;;3316:18;;;3309:34;;;3179:18;;22443:60:0;3004:345:1;22387:132:0;22562:57;22571:5;22578:7;22606:5;22587:16;:24;22613:5;22562:8;:57::i;:::-;22255:398;22166:487;;;:::o;17025:308::-;-1:-1:-1;;;;;17109:18:0;;17105:88;;17151:30;;-1:-1:-1;;;17151:30:0;;17178:1;17151:30;;;2292:51:1;2265:18;;17151:30:0;2146:203:1;17105:88:0;-1:-1:-1;;;;;17207:16:0;;17203:88;;17247:32;;-1:-1:-1;;;17247:32:0;;17276:1;17247:32;;;2292:51:1;2265:18;;17247:32:0;2146:203:1;17203:88:0;17301:24;17309:4;17315:2;17319:5;17301:7;:24::i;19686:211::-;-1:-1:-1;;;;;19757:21:0;;19753:91;;19802:30;;-1:-1:-1;;;19802:30:0;;19829:1;19802:30;;;2292:51:1;2265:18;;19802:30:0;2146:203:1;19753:91:0;19854:35;19862:7;19879:1;19883:5;19854:7;:35::i;:::-;19686:211;;:::o;24495:166::-;24376:7;24403:6;-1:-1:-1;;;;;24403:6:0;11145:10;24555:23;24551:103;;24602:40;;-1:-1:-1;;;24602:40:0;;11145:10;24602:40;;;2292:51:1;2265:18;;24602:40:0;2146:203:1;25643:191:0;25717:16;25736:6;;-1:-1:-1;;;;;25753:17:0;;;-1:-1:-1;;;;;;25753:17:0;;;;;;25786:40;;25736:6;;;;;;;25786:40;;25717:16;25786:40;25706:128;25643:191;:::o;21431:443::-;-1:-1:-1;;;;;21544:19:0;;21540:91;;21587:32;;-1:-1:-1;;;21587:32:0;;21616:1;21587:32;;;2292:51:1;2265:18;;21587:32:0;2146:203:1;21540:91:0;-1:-1:-1;;;;;21645:21:0;;21641:92;;21690:31;;-1:-1:-1;;;21690:31:0;;21718:1;21690:31;;;2292:51:1;2265:18;;21690:31:0;2146:203:1;21641:92:0;-1:-1:-1;;;;;21743:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21789:78;;;;21840:7;-1:-1:-1;;;;;21824:31:0;21833:5;-1:-1:-1;;;;;21824:31:0;;21849:5;21824:31;;;;1212:25:1;;1200:2;1185:18;;1066:177;21824:31:0;;;;;;;;21431:443;;;;:::o;17657:1135::-;-1:-1:-1;;;;;17747:18:0;;17743:552;;17901:5;17885:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17743:552:0;;-1:-1:-1;17743:552:0;;-1:-1:-1;;;;;17961:15:0;;17939:19;17961:15;;;:9;:15;;;;;;17995:19;;;17991:117;;;18042:50;;-1:-1:-1;;;18042:50:0;;-1:-1:-1;;;;;3224:32:1;;18042:50:0;;;3206:51:1;3273:18;;;3266:34;;;3316:18;;;3309:34;;;3179:18;;18042:50:0;3004:345:1;17991:117:0;-1:-1:-1;;;;;18231:15:0;;;;;;:9;:15;;;;;18249:19;;;;18231:37;;17743:552;-1:-1:-1;;;;;18311:16:0;;18307:435;;18477:12;:21;;;;;;;18307:435;;;-1:-1:-1;;;;;18693:13:0;;;;;;:9;:13;;;;;:22;;;;;;18307:435;18774:2;-1:-1:-1;;;;;18759:25:0;18768:4;-1:-1:-1;;;;;18759:25:0;;18778:5;18759:25;;;;1212::1;;1200:2;1185:18;;1066:177;18759:25:0;;;;;;;;17657:1135;;;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:254::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;859:2;844:18;;;;831:32;;-1:-1:-1;;;615:254:1:o;1248:328::-;1325:6;1333;1341;1394:2;1382:9;1373:7;1369:23;1365:32;1362:52;;;1410:1;1407;1400:12;1362:52;1433:29;1452:9;1433:29;:::i;:::-;1423:39;;1481:38;1515:2;1504:9;1500:18;1481:38;:::i;:::-;1471:48;;1566:2;1555:9;1551:18;1538:32;1528:42;;1248:328;;;;;:::o;1770:180::-;1829:6;1882:2;1870:9;1861:7;1857:23;1853:32;1850:52;;;1898:1;1895;1888:12;1850:52;-1:-1:-1;1921:23:1;;1770:180;-1:-1:-1;1770:180:1:o;1955:186::-;2014:6;2067:2;2055:9;2046:7;2042:23;2038:32;2035:52;;;2083:1;2080;2073:12;2035:52;2106:29;2125:9;2106:29;:::i;:::-;2096:39;1955:186;-1:-1:-1;;;1955:186:1:o;2354:260::-;2422:6;2430;2483:2;2471:9;2462:7;2458:23;2454:32;2451:52;;;2499:1;2496;2489:12;2451:52;2522:29;2541:9;2522:29;:::i;:::-;2512:39;;2570:38;2604:2;2593:9;2589:18;2570:38;:::i;:::-;2560:48;;2354:260;;;;;:::o;2619:380::-;2698:1;2694:12;;;;2741;;;2762:61;;2816:4;2808:6;2804:17;2794:27;;2762:61;2869:2;2861:6;2858:14;2838:18;2835:38;2832:161;;2915:10;2910:3;2906:20;2903:1;2896:31;2950:4;2947:1;2940:15;2978:4;2975:1;2968:15;2832:161;;2619:380;;;:::o;3354:222::-;3419:9;;;3440:10;;;3437:133;;;3492:10;3487:3;3483:20;3480:1;3473:31;3527:4;3524:1;3517:15;3555:4;3552:1;3545:15

Swarm Source

ipfs://5aaa77b2555cec0beb913f38ca8f7a852e33f737974c75b865fbe3a61e8fb313
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.