Abstract Testnet

Token

Pixelady NUKE TEST (NUKETEST)
ERC-20

Overview

Max Total Supply

10,300.0000000000000002 NUKETEST

Holders

6

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,000 NUKETEST
0x6775cd8ce2a6edc337a20f844a41258f26368dd3
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
NUKE

Compiler Version
v0.8.28+commit.7893614a

ZkSolc Version
v1.5.7

Optimization Enabled:
Yes with Mode 3

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 8 : Nuke.sol
// SPDX-License-Identifier: MIT
// Pixelady NUKE
// IT'S NOT AN AIRDROP, IT'S A NUKE

/**                                                                             
            @@@                    @@@                                           
            @%.:=#@@               %#::-@                                          
            @%-#*#++%%@          %#-#**-@                                          
            @%-#****#=+%@      %%:#**##-@                                          
            @@-:*******#=*%@ @%:*****##-@                                          
            *:#*********#:* *******##-@                                          
            *:#***********###***=#*##-@@@@@@@@@@@@                               
            #--#****+*##******#=:-*****************# #                           
            #--#****#=:=+##**=::::=====+*********#%% #                           
    @@@@@@#:::####*****#=::::++:::::::::-#*****##%%%:-=%                           
@ *%###**************=::::::::::::::*#****#%%%=:-==%%                           
@---#%%%###*****=:::::::::::::::::::*#****##=:===#%                             
@===---%%%%%###***+-:::::::::::::::::-*#****#++-*@                              
    @##===---=+%%%#****+=::::::::::::*************#+=#                             
    @**=====:-+#******-:::=*#+::::***************#=%+@@                         
        @@%**--********-::+****#==:***#####***********-#+%@                      
            #+=********-:*#*##*******##%%%%%%%############-*@@                   
            @%:**********=*#*#%%##*****##+++++++#%%%%%%%%%%%%%*.@                  
            #.***####*******#%:*#%###***+:======:.......:+****=.@                  
        @@-####%%%#******#% -=.:*%%##*+:++++++================@                  
        #.%%%%##=.-*****##-======:##%#*=@     @@@@@@@@@+=====+@                  
        #.   .===--****#%.-=% @%+==-.%*=@                                        
        %=======*%#***#%-=#      %=====*@                                        
        @@@@@@  @%#**#%:-%@        @%=+@                                         
                @+-*##%--#@           @@                                          
                @+-#%=-=#%                                                        
                @+=%+-=*%@                                                        
                @*--==#@                                                          
                @#==*%@                                                           
                @%%%@                                                                                                                                           
*/

pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract NUKE is ERC20, Ownable {
    // address constant PIXELADY_CATA = 0xeA56aBd80cc721e6ED38CC287a0770C65fB47394;
    address constant PIXELADY_CATA = 0x3B943dBDB6B846F6D9811d3288659Af0Edafeb18;

    // constructor() ERC20("Pixelady NUKE", "NUKE") {}
    constructor() ERC20("Pixelady NUKE TEST", "NUKETEST") {}


    function airdrop(address[] calldata recipients, uint256[] calldata amounts) external onlyOwner {
        require(recipients.length == amounts.length, "Mismatched array lengths");
        for (uint256 i = 0; i < recipients.length; i++) {
            _mint(recipients[i], amounts[i]);
        }
    }

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        if(spender == PIXELADY_CATA) {
            return type(uint256).max;
        }
        return super.allowance(owner, spender);
    }
}

File 2 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the 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 override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

File 3 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

File 4 of 8 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

File 5 of 8 : ERC20Capped.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

File 6 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

File 7 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

File 8 of 8 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "abi",
        "metadata"
      ],
      "": [
        "ast"
      ]
    }
  },
  "detectMissingLibraries": false,
  "forceEVMLA": false,
  "enableEraVMExtensions": false,
  "libraries": {}
}

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010001517213fed6406c7dab4e392be94cb49e4efa6d49a418d7017af2970ab600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0001000000000002000600000000000200000000000103550000008003000039000000400030043f00000001002001900000002c0000c13d00000060021002700000010802200197000000040020008c000002b70000413d000000000301043b000000e003300270000001160030009c000000610000a13d000001170030009c000000700000213d0000011d0030009c000000b20000213d000001200030009c000001660000613d000001210030009c000002b70000c13d0000000001000416000000000001004b000002b70000c13d0000000501000039000000000201041a00000112032001970000000005000411000000000053004b000001ec0000c13d0000011102200197000000000021041b0000000001000414000001080010009c0000010801008041000000c00110021000000113011001c70000800d020000390000000303000039000001140400004100000000060000190000027a0000013d0000000001000416000000000001004b000002b70000c13d0000001201000039000000800010043f0000010901000041000000a00010043f0000010001000039000000400010043f0000000801000039000000c00010043f0000010a01000041000000e00010043f0000000301000039000000000201041a000000010320019000000001022002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000043004b0000005b0000c13d000000200020008c0000004e0000413d000000000010043f0000010b030000410000001f0220003900000005022002700000010c0220009a000000000003041b0000000103300039000000000023004b0000004a0000413d0000010d02000041000000000021041b0000000401000039000000000301041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000000830000613d0000013f01000041000000000010043f0000002201000039000000040010043f00000140010000410000041d00010430000001220030009c000000a70000a13d000001230030009c000000cf0000213d000001260030009c000001770000613d000001270030009c000002b70000c13d0000000001000416000000000001004b000002b70000c13d0000001201000039000000800010043f00000136010000410000041c0001042e000001180030009c000001450000213d0000011b0030009c0000018e0000613d0000011c0030009c000002b70000c13d000000440020008c000002b70000413d0000000002000416000000000002004b000002b70000c13d0000000402100370000000000202043b000001120020009c000002b70000213d0000002401100370000000000301043b00000000010004110000018c0000013d000000200020008c0000008e0000413d000000000010043f0000010e030000410000001f0220003900000005022002700000010f0220009a000000000003041b0000000103300039000000000023004b0000008a0000413d0000000502000039000000000302041a0000011004000041000000000041041b00000111013001970000000006000411000000000116019f000000000012041b00000000010004140000011205300197000001080010009c0000010801008041000000c00110021000000113011001c70000800d0200003900000003030000390000011404000041041b04110000040f0000000100200190000002b70000613d00000020010000390000010000100443000001200000044300000115010000410000041c0001042e000001280030009c0000019e0000613d000001290030009c000001b60000613d0000012a0030009c000002b70000c13d0000000001000416000000000001004b000002b70000c13d0000000201000039000001730000013d0000011e0030009c000001c30000613d0000011f0030009c000002b70000c13d0000000001000416000000000001004b000002b70000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f00000001006001900000005b0000c13d000000800010043f000000000005004b000001f50000c13d0000014201200197000000a00010043f000000000004004b000000c001000039000000a001006039000000610110008a000002c30000013d000001240030009c000001cc0000613d000001250030009c000002b70000c13d000000440020008c000002b70000413d0000000003000416000000000003004b000002b70000c13d0000000403100370000000000303043b000001370030009c000002b70000213d0000002304300039000000000024004b000002b70000813d0000000404300039000000000441034f000000000404043b000300000004001d000001370040009c000002b70000213d000200240030003d000000030300002900000005033002100000000203300029000000000023004b000002b70000213d0000002403100370000000000303043b000001370030009c000002b70000213d0000002304300039000000000024004b000002b70000813d0000000404300039000000000141034f000000000101043b000001370010009c000002b70000213d000100240030003d00000005031002100000000103300029000000000023004b000002b70000213d0000000502000039000000000202041a00000112022001970000000003000411000000000032004b000001ec0000c13d000000030010006b000002e30000c13d000000030000006b0000027d0000613d000600000000001d0000000601000029000000050110021000000002031000290000000002000367000000000332034f000000000303043b000001120030009c000002b70000213d00000112043001980000000101100029000000000112034f000000000301043b000002ed0000613d0000000202000039000000000102041a000000000031001a000002f40000413d000500000003001d0000000001310019000000000012041b000000000040043f000000200000043f0000000001000414000001080010009c0000010801008041000000c00110021000000131011001c70000801002000039000400000004001d041b04160000040f0000000100200190000002b70000613d000000000101043b000000000201041a00000005030000290000000002320019000000000021041b000000400100043d0000000000310435000001080010009c000001080100804100000040011002100000000002000414000001080020009c0000010802008041000000c002200210000000000112019f0000013b011001c70000800d0200003900000003030000390000013c0400004100000000050000190000000406000029041b04110000040f0000000100200190000002b70000613d00000006020000290000000102200039000600000002001d000000030020006c000001070000413d0000027d0000013d000001190030009c000001dc0000613d0000011a0030009c000002b70000c13d000000240020008c000002b70000413d0000000002000416000000000002004b000002b70000c13d0000000401100370000000000601043b000001120060009c000002b70000213d0000000501000039000000000201041a00000112032001970000000005000411000000000053004b000001ec0000c13d000000000006004b0000026f0000c13d0000012b01000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000012c01000041000000c40010043f0000012d01000041000000e40010043f0000012e010000410000041d00010430000000240020008c000002b70000413d0000000002000416000000000002004b000002b70000c13d0000000401100370000000000101043b000001120010009c000002b70000213d000000000010043f000000200000043f0000004001000039041b04000000040f000000000101041a000000800010043f00000136010000410000041c0001042e000000640020008c000002b70000413d0000000002000416000000000002004b000002b70000c13d0000000402100370000000000402043b000001120040009c000002b70000213d0000002402100370000000000502043b000001120050009c000002b70000213d0000004401100370000000000301043b00000000010004110000011201100197000001300010009c0000027f0000c13d00000000010400190000000002050019041b038c0000040f000002670000013d000000440020008c000002b70000413d0000000002000416000000000002004b000002b70000c13d0000000402100370000000000202043b000001120020009c000002b70000213d00000000040004110000002401100370000000000301043b000001300020009c000002050000c13d0000014303300099000002650000013d0000000001000416000000000001004b000002b70000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f00000001006001900000005b0000c13d000000800010043f000000000005004b0000023c0000c13d0000014201200197000000a00010043f000000000004004b00000020020000390000000002006039000002c20000013d000000440020008c000002b70000413d0000000002000416000000000002004b000002b70000c13d0000000402100370000000000202043b000001120020009c000002b70000213d0000002401100370000000000301043b0000000001000411000002660000013d0000000001000416000000000001004b000002b70000c13d0000000501000039000000000101041a0000011201100197000000800010043f00000136010000410000041c0001042e000000440020008c000002b70000413d0000000002000416000000000002004b000002b70000c13d0000000402100370000000000202043b000001120020009c000002b70000213d00000000040004110000002401100370000000000301043b000001300020009c000002410000c13d000000010100008a000002620000013d000000440020008c000002b70000413d0000000002000416000000000002004b000002b70000c13d0000000402100370000000000302043b000001120030009c000002b70000213d0000002401100370000000000201043b000001120020009c000002b70000213d0000000001030019041b030f0000040f000002680000013d0000012b01000041000000800010043f0000002001000039000000840010043f000000a40010043f0000013801000041000000c40010043f00000139010000410000041d00010430000000000030043f000000020020008c0000023f0000413d0000010e0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000001fa0000413d000000c001300039000000610110008a000002c30000013d000500000003001d0000011201400197000000000010043f0000000101000039000000200010043f0000000001000414000001080010009c0000010801008041000000c00110021000000131011001c7000600000002001d0000801002000039041b04160000040f00000001002001900000000602000029000002b70000613d000000000101043b000000000020043f000000200010043f0000000001000414000001080010009c0000010801008041000000c00110021000000131011001c70000801002000039041b04160000040f00000001002001900000000602000029000002b70000613d000000000101043b000000000101041a0000000503000029000000000031004b0000000004000411000002db0000813d000000400100043d0000006402100039000001320300004100000000003204350000004402100039000001330300004100000000003204350000002402100039000000250300003900000000003204350000012b020000410000000000210435000000040210003900000020030000390000000000320435000001080010009c0000010801008041000000400110021000000134011001c70000041d00010430000000000030043f000000020020008c000002b90000813d0000002001000039000002cc0000013d000500000003001d0000011201400197000000000010043f0000000101000039000000200010043f0000000001000414000001080010009c0000010801008041000000c00110021000000131011001c7000600000002001d0000801002000039041b04160000040f00000001002001900000000602000029000002b70000613d000000000101043b000000000020043f000000200010043f0000000001000414000001080010009c0000010801008041000000c00110021000000131011001c70000801002000039041b04160000040f00000001002001900000000602000029000002b70000613d000000000101043b000000000101041a00000000040004110000000503000029000000000031001a000002f40000413d00000000033100190000000001040019041b03350000040f0000000101000039000000400200043d0000000000120435000001080020009c000001080200804100000040012002100000012f011001c70000041c0001042e0000011102200197000000000262019f000000000021041b0000000001000414000001080010009c0000010801008041000000c00110021000000113011001c70000800d0200003900000003030000390000011404000041041b04110000040f0000000100200190000002b70000613d00000000010000190000041c0001042e000400000001001d000300000003001d000000000040043f0000000101000039000000200010043f0000000001000414000001080010009c0000010801008041000000c00110021000000131011001c70000801002000039000600000004001d000500000005001d041b04160000040f0000000100200190000002b70000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000001080010009c0000010801008041000000c00110021000000131011001c70000801002000039041b04160000040f000000050500002900000006040000290000000100200190000002b70000613d000000000101043b000000000101041a000001430010009c000000030300002900000000020004110000018a0000613d000000000331004b000002dd0000813d000000400100043d00000044021000390000014103000041000000000032043500000024021000390000001d0300003900000000003204350000012b020000410000000000210435000000040210003900000020030000390000000000320435000001080010009c000001080100804100000040011002100000013e011001c70000041d0001043000000000010000190000041d000104300000010b030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000002bb0000413d0000003f012000390000014401100197000001350010009c000002cc0000a13d0000013f01000041000000000010043f0000004101000039000000040010043f00000140010000410000041d000104300000008001100039000600000001001d000000400010043f0000008002000039041b02fa0000040f00000006020000290000000001210049000001080010009c00000108010080410000006001100210000001080020009c00000108020080410000004002200210000000000121019f0000041c0001042e0000000003310049000002650000013d0000000001040019041b03350000040f0000000604000029000000050500002900000003030000290000018a0000013d0000012b01000041000000800010043f0000002001000039000000840010043f0000001801000039000000a40010043f0000013a01000041000000c40010043f00000139010000410000041d00010430000000400100043d00000044021000390000013d03000041000000000032043500000024021000390000001f03000039000002ac0000013d0000013f01000041000000000010043f0000001101000039000000040010043f00000140010000410000041d0001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000003090000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b000003020000413d000000000321001900000000000304350000001f0220003900000144022001970000000001210019000000000001042d00010000000000020000011202200197000001300020009c000003150000c13d000000010100008a000000000001042d000100000002001d0000011201100197000000000010043f0000000101000039000000200010043f0000000001000414000001080010009c0000010801008041000000c00110021000000131011001c70000801002000039041b04160000040f0000000100200190000003330000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000001080010009c0000010801008041000000c00110021000000131011001c70000801002000039041b04160000040f0000000100200190000003330000613d000000000101043b000000000101041a000000000001042d00000000010000190000041d00010430000300000000000200000112011001980000036e0000613d000200000003001d000301120020019c000003780000613d000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000001080010009c0000010801008041000000c00110021000000131011001c70000801002000039041b04160000040f000000010020019000000003030000290000036c0000613d000000000101043b000000000030043f000000200010043f0000000001000414000001080010009c0000010801008041000000c00110021000000131011001c70000801002000039041b04160000040f000000030600002900000001002001900000036c0000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001080010009c000001080100804100000040011002100000000002000414000001080020009c0000010802008041000000c002200210000000000112019f0000013b011001c70000800d02000039000000030300003900000145040000410000000105000029041b04110000040f00000001002001900000036c0000613d000000000001042d00000000010000190000041d00010430000000400100043d00000064021000390000014803000041000000000032043500000044021000390000014903000041000000000032043500000024021000390000002403000039000003810000013d000000400100043d0000006402100039000001460300004100000000003204350000004402100039000001470300004100000000003204350000002402100039000000220300003900000000003204350000012b020000410000000000210435000000040210003900000020030000390000000000320435000001080010009c0000010801008041000000400110021000000134011001c70000041d000104300004000000000002000400000003001d0000011201100198000003d80000613d000201120020019c000003e20000613d000300000001001d000000000010043f000000200000043f0000000001000414000001080010009c0000010801008041000000c00110021000000131011001c70000801002000039041b04160000040f0000000100200190000003d60000613d000000000101043b000000000101041a0001000400100074000003ec0000413d0000000301000029000000000010043f000000200000043f0000000001000414000001080010009c0000010801008041000000c00110021000000131011001c70000801002000039041b04160000040f0000000100200190000003d60000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f000000200000043f0000000001000414000001080010009c0000010801008041000000c00110021000000131011001c70000801002000039041b04160000040f0000000100200190000003d60000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d0000000000310435000001080010009c000001080100804100000040011002100000000002000414000001080020009c0000010802008041000000c002200210000000000112019f0000013b011001c70000800d0200003900000003030000390000013c0400004100000003050000290000000206000029041b04110000040f0000000100200190000003d60000613d000000000001042d00000000010000190000041d00010430000000400100043d00000064021000390000014e03000041000000000032043500000044021000390000014f03000041000000000032043500000024021000390000002503000039000003f50000013d000000400100043d00000064021000390000014c03000041000000000032043500000044021000390000014d03000041000000000032043500000024021000390000002303000039000003f50000013d000000400100043d00000064021000390000014a03000041000000000032043500000044021000390000014b0300004100000000003204350000002402100039000000260300003900000000003204350000012b020000410000000000210435000000040210003900000020030000390000000000320435000001080010009c0000010801008041000000400110021000000134011001c70000041d00010430000001080010009c000001080100804100000060011002100000000002000414000001080020009c0000010802008041000000c002200210000000000112019f00000113011001c70000801002000039041b04160000040f00000001002001900000040f0000613d000000000101043b000000000001042d00000000010000190000041d0001043000000414002104210000000102000039000000000001042d0000000002000019000000000001042d00000419002104230000000102000039000000000001042d0000000002000019000000000001042d0000041b000004320000041c0001042e0000041d000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff506978656c616479204e554b45205445535400000000000000000000000000004e554b4554455354000000000000000000000000000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a5506978656c616479204e554b45205445535400000000000000000000000000248a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b75ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e654e554b4554455354000000000000000000000000000000000000000000000010ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000002000000000000000000000000000000400000010000000000000000000000000000000000000000000000000000000000000000000000000070a0823000000000000000000000000000000000000000000000000000000000a457c2d600000000000000000000000000000000000000000000000000000000dd62ed3d00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000039509350000000000000000000000000000000000000000000000000000000003950935100000000000000000000000000000000000000000000000000000000672434820000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd08c379a0000000000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000003b943dbdb6b846f6d9811d3288659af0edafeb180200000000000000000000000000000000000040000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f770000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f0000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000640000008000000000000000004d69736d617463686564206172726179206c656e6774687300000000000000000200000000000000000000000000000000000020000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206d696e7420746f20746865207a65726f20616464726573730000000000000000000000000000000000000000640000000000000000000000004e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e6365000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f206164c6793bfd7c47dfff38a2804191919835710d690a3cc5f4b5802dd6d24512fa20

[ 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.