ETH Price: $3,261.80 (+3.37%)

Token

Sapling (SPG)

Overview

Max Total Supply

19,999,990.000010100000899999 SPG

Holders

14

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
12,753.769164515864767933 SPG

Value
$0.00
0x7df4e182da01eba2ff902b3f13b7a7b12bb87dea
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:
SaplingDex

Compiler Version
v0.8.24+commit.e11b9ed9

ZkSolc Version
v1.5.7

Optimization Enabled:
Yes with Mode 3

Other Settings:
paris EvmVersion
File 1 of 1 : SaplingDex.sol
// Sapling Dex on Abstract
// x.com/SaplingDex
// t.me/SaplingDex

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

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

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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);
}


/**
 * @dev Interface for the optional metadata functions from the ERC-20 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);
}

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 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 ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-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 ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 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);
}

/**
 * @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 ERC-20
 * applications.
 */
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}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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:
     *
     * ```solidity
     * 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);
            }
        }
    }
}

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
    if (a == 0) {
      return 0;
    }
    c = a * b;
    assert(c / a == b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    // uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return a / b;
  }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
    c = a + b;
    assert(c >= a);
    return c;
  }
}

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

contract SaplingDex is ERC20, Ownable {
    using SafeMath for uint256;
    
    uint256 public initialSupply = 10_000_000;
    address[] public minters;

    constructor(address initialOwner)
        ERC20("Sapling", "SPG")
        Ownable(initialOwner)
    {
        _mint(_msgSender(), initialSupply * 10 ** decimals());
    }

    /// @notice Creates `_amount` token to `_to`. Must only be called by the minter.
    function mint(address _to, uint256 _amount) public onlyMinter returns(bool) {
        _mint(_to, _amount);
        return true;
    }

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual returns (bool) {
        _burn(_msgSender(), amount);
        return true;
    }

    /**
     * @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 returns (bool) {
        uint256 currentAllowance = allowance(account, _msgSender());
        if (currentAllowance < amount) {
            revert ERC20InsufficientAllowance(_msgSender(), currentAllowance, amount);
        }

        uint256 decreasedAllowance = currentAllowance.sub(amount);
        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
        return true;
    }

    function addMinter(address _addMinter) public onlyOwner returns (bool) {
        require(_addMinter != address(0), "SPG: _addMinter is the zero address");
        if (!isMinter(_addMinter)) {
            minters.push(_addMinter);
            return true;
        }

        return false;
    }

    function delMinter(address _delMinter) public onlyOwner returns (bool) {
        require(_delMinter != address(0), "SPG: _delMinter is the zero address");
        if (minters.length > 0) {
            for (uint256 i = 0; i < minters.length; i++) {
                if (minters[i] == _delMinter) {
                    minters[i] = minters[minters.length - 1];
                    minters.pop();
                    return true;
                }
            }
        }

        return false;
    }

    function getMinterLength() public view returns (uint256) {
        return minters.length;
    }

    function isMinter(address account) public view returns (bool) {
        bool _found = false;
        for (uint256 i = 0; i < minters.length; i++) {
            if (minters[i] == account) {
                _found = true;
                break;
            }
        }

        return _found;
    }

    // modifier for mint function
    modifier onlyMinter() {
        require(isMinter(_msgSender()), "Caller is not the minter");
        _;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"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":"_addMinter","type":"address"}],"name":"addMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_delMinter","type":"address"}],"name":"delMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMinterLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minters","outputs":[{"internalType":"address","name":"","type":"address"}],"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"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010001cddecc595dbc304ae3e8f5dbe6ee26452ab584a8af7f65b3c61b6b0a1200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000fbdb5a61ca278ba318a1131c832b1a24292ab049

Deployed Bytecode

0x0007000000000002000000600310027000000180033001970000000100200190000000250000c13d0000008002000039000000400020043f000000040030008c000000480000413d000000000201043b000000e002200270000001950020009c0000004a0000a13d000001960020009c000000ce0000a13d000001970020009c000000f10000213d0000019b0020009c000001550000613d0000019c0020009c0000016a0000613d0000019d0020009c000000480000c13d000000440030008c000000480000413d0000000002000416000000000002004b000000480000c13d0000000402100370000000000202043b000001830020009c000000480000213d0000002401100370000000000301043b000000000100041105fd04d20000040f000001940000013d0000000002000416000000000002004b000000480000c13d0000001f0230003900000181022001970000008002200039000000400020043f0000001f0430018f00000182053001980000008002500039000000360000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000000320000c13d000000000004004b000000430000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000200030008c000000480000413d000000800600043d000001830060009c0000006d0000a13d0000000001000019000005ff00010430000001a40020009c000000df0000213d000001ab0020009c0000010a0000a13d000001ac0020009c000001870000613d000001ad0020009c000001960000613d000001ae0020009c000000480000c13d000000240030008c000000480000413d0000000002000416000000000002004b000000480000c13d0000000401100370000000000201043b000001830020009c000000480000213d0000000501000039000000000101041a00000183031001970000000001000411000000000013004b0000029d0000c13d000000000002004b000002ac0000c13d000001b601000041000000800010043f0000002001000039000000840010043f0000002301000039000000a40010043f000001c301000041000001820000013d000000400300043d000001840030009c0000032e0000213d0000004001300039000000400010043f0000000701000039000000000513043600000185010000410000000000150435000000400700043d000001840070009c0000032e0000213d0000004001700039000000400010043f00000003090000390000000008970436000001860100004100000000001804350000000004030433000001870040009c0000032e0000213d000000000109041a0000000102100190000000010a1002700000007f0aa0618f0000001f00a0008c00000000010000390000000101002039000000000012004b000001640000c13d0000002000a0008c000700000006001d000500000007001d000600000008001d000000b50000413d00010000000a001d000200000005001d000300000004001d000400000003001d000000000090043f0000000001000414000001800010009c0000018001008041000000c00110021000000188011001c7000080100200003905fd05f80000040f00000007060000290000000100200190000000480000613d00000003040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000005070000290000000608000029000000030900003900000004030000290000000205000029000000b50000813d000000000002041b0000000102200039000000000012004b000000b10000413d0000001f0040008c000002920000a13d000300000004001d000400000003001d000000000090043f0000000001000414000001800010009c0000018001008041000000c00110021000000188011001c7000080100200003905fd05f80000040f00000007060000290000000100200190000000480000613d000000030b000029000001c502b00198000000000101043b000000040a0000290000030f0000c13d00000020030000390000000507000029000000060800002900000003090000390000031e0000013d0000019e0020009c0000012e0000a13d0000019f0020009c0000019b0000613d000001a00020009c000001ce0000613d000001a10020009c000000480000c13d0000000001000416000000000001004b000000480000c13d0000000501000039000000000101041a0000018301100197000000800010043f000001b301000041000005fe0001042e000001a50020009c0000014a0000a13d000001a60020009c000001e10000613d000001a70020009c000001e60000613d000001a80020009c000000480000c13d000000240030008c000000480000413d0000000002000416000000000002004b000000480000c13d0000000401100370000000000201043b000000000100041105fd053d0000040f000001940000013d000001980020009c0000020a0000613d000001990020009c0000021e0000613d0000019a0020009c000000480000c13d000000240030008c000000480000413d0000000002000416000000000002004b000000480000c13d0000000401100370000000000601043b000001830060009c000000480000213d0000000501000039000000000201041a00000183032001970000000005000411000000000053004b000002840000c13d000000000006004b000002be0000c13d0000019401000041000002ed0000013d000001af0020009c000002380000613d000001b00020009c000000480000c13d0000000001000416000000000001004b000000480000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000001640000c13d000000800010043f000000000005004b0000028c0000613d000000000030043f000000020020008c000002aa0000413d000001c40200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000001250000413d000002fb0000013d000001a20020009c0000023d0000613d000001a30020009c000000480000c13d0000000001000416000000000001004b000000480000c13d0000000501000039000000000201041a00000183032001970000000005000411000000000053004b000002840000c13d0000018902200197000000000021041b0000000001000414000001800010009c0000018001008041000000c0011002100000018a011001c70000800d0200003900000003030000390000018b04000041000000000600001905fd05f30000040f0000000100200190000000480000613d000002cc0000013d000001a90020009c0000024f0000613d000001aa0020009c000000480000c13d0000000001000416000000000001004b000000480000c13d0000001201000039000000800010043f000001b301000041000005fe0001042e0000000001000416000000000001004b000000480000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000002890000613d000001bd01000041000000000010043f0000002201000039000000040010043f0000019301000041000005ff00010430000000240030008c000000480000413d0000000002000416000000000002004b000000480000c13d0000000401100370000000000101043b000001830010009c000000480000213d0000000502000039000000000202041a00000183032001970000000002000411000000000023004b000002a20000c13d000000000001004b000002ce0000c13d000001b601000041000000800010043f0000002001000039000000840010043f0000002301000039000000a40010043f000001b701000041000000c40010043f000001b801000041000000e40010043f000001b901000041000005ff00010430000000440030008c000000480000413d0000000002000416000000000002004b000000480000c13d0000000402100370000000000202043b000001830020009c000000480000213d0000002401100370000000000301043b000000000100041105fd05980000040f0000000101000039000002170000013d0000000001000416000000000001004b000000480000c13d00000002010000390000024b0000013d000000440030008c000000480000413d0000000002000416000000000002004b000000480000c13d0000000402100370000000000202043b000700000002001d000001830020009c000000480000213d0000002401100370000000000101043b000600000001001d0000000701000029000000000010043f0000000101000039000000200010043f0000000001000414000001800010009c0000018001008041000000c0011002100000018e011001c7000080100200003905fd05f80000040f0000000100200190000000480000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001800010009c0000018001008041000000c0011002100000018e011001c7000080100200003905fd05f80000040f0000000100200190000000480000613d000000000101043b000000000301041a0000000604000029000000000543004b000003750000813d000000400200043d000700000002001d000001bc01000041000000000012043500000004012000390000000002000411000003c40000013d000000240030008c000000480000413d0000000002000416000000000002004b000000480000c13d0000000401100370000000000101043b0000000702000039000000000202041a000000000021004b000000480000813d05fd04aa0000040f0000000302200210000000000101041a000000000121022f0000018301100197000000ff0020008c0000000001002019000002170000013d0000000001000416000000000001004b000000480000c13d00000006010000390000024b0000013d000000440030008c000000480000413d0000000002000416000000000002004b000000480000c13d0000000402100370000000000202043b000001830020009c000000480000213d0000002401100370000000000601043b0000000704000039000000000104041a000000000001004b000002000000613d0000000003000411000000000040043f0000000004000019000001b50540009a000000000505041a000000000535013f0000018300500198000002ea0000613d0000000104400039000000000014004b000001f80000413d000001b601000041000000800010043f0000002001000039000000840010043f0000001801000039000000a40010043f000001be01000041000000c40010043f000001bf01000041000005ff00010430000000240030008c000000480000413d0000000002000416000000000002004b000000480000c13d0000000401100370000000000101043b000001830010009c000000480000213d05fd04c00000040f000000000001004b0000000001000039000000010100c039000000400200043d0000000000120435000001800020009c00000180020080410000004001200210000001b4011001c7000005fe0001042e000000440030008c000000480000413d0000000002000416000000000002004b000000480000c13d0000000402100370000000000202043b000001830020009c000000480000213d0000002401100370000000000101043b000700000001001d000001830010009c000000480000213d000000000020043f0000000101000039000000200010043f0000004002000039000000000100001905fd05de0000040f0000000702000029000000000020043f000000200010043f000000000100001900000040020000390000024a0000013d0000000001000416000000000001004b000000480000c13d00000007010000390000024b0000013d000000240030008c000000480000413d0000000002000416000000000002004b000000480000c13d0000000401100370000000000101043b000001830010009c000000480000213d000000000010043f000000200000043f0000004002000039000000000100001905fd05de0000040f000000000101041a000000800010043f000001b301000041000005fe0001042e000000640030008c000000480000413d0000000002000416000000000002004b000000480000c13d0000000402100370000000000202043b000700000002001d000001830020009c000000480000213d0000002402100370000000000202043b000600000002001d000001830020009c000000480000213d0000004401100370000000000101043b000500000001001d0000000701000029000000000010043f0000000101000039000000200010043f0000000001000414000001800010009c0000018001008041000000c0011002100000018e011001c7000080100200003905fd05f80000040f0000000100200190000000480000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001800010009c0000018001008041000000c0011002100000018e011001c7000080100200003905fd05f80000040f0000000100200190000000480000613d000000000101043b000000000301041a000001c60030009c000003bb0000c13d00000007010000290000000602000029000000050300002905fd04d20000040f000003a80000013d000001b101000041000000800010043f000000840050043f000001b201000041000005ff00010430000000800010043f000000000005004b000002a70000c13d000001c701200197000000a00010043f000000000004004b000000c001000039000000a001006039000002fc0000013d000000000004004b0000000001000019000002960000613d00000000010504330000000302400210000001c60220027f000001c602200167000000000121016f0000000102400210000000000121019f0000032a0000013d000001b102000041000000800020043f000000840010043f000001b201000041000005ff00010430000001b101000041000000800010043f000000840020043f000001b201000041000005ff00010430000000000030043f000000020020008c000002f10000813d0000002001000039000003000000013d0000000701000039000000000301041a000000000003004b0000000004000019000003ef0000613d000000000010043f0000000004000019000001b50540009a000000000605041a0000018307600197000000000027004b000003cf0000613d0000000104400039000000000034004b000002b30000413d000000800000043f000001b301000041000005fe0001042e0000018902200197000000000262019f000000000021041b0000000001000414000001800010009c0000018001008041000000c0011002100000018a011001c70000800d0200003900000003030000390000018b0400004105fd05f30000040f0000000100200190000000480000613d0000000001000019000005fe0001042e0000000703000039000000000203041a000000000002004b000002de0000613d000000000030043f0000000004000019000001b50540009a000000000505041a000000000515013f0000018300500198000003de0000613d0000000104400039000000000024004b000002d40000413d000001870020009c0000032e0000213d0000000104200039000000000043041b000000000030043f000001b50220009a000000000302041a0000018903300197000000000113019f000000000012041b0000000101000039000000800010043f000001b301000041000005fe0001042e00000183032001980000037d0000c13d0000019201000041000000800010043f000000840000043f000001b201000041000005ff00010430000001ba0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002f30000413d000000c001300039000000610110008a000001c501100197000001bb0010009c0000032e0000213d0000008001100039000700000001001d000000400010043f000000800200003905fd04950000040f00000007020000290000000001210049000001800010009c00000180010080410000006001100210000001800020009c00000180020080410000004002200210000000000121019f000005fe0001042e000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000507000029000000060800002900000003090000390000000005a300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000003170000c13d0000000000b2004b000003280000813d0000000302b00210000000f80220018f000001c60220027f000001c6022001670000000003a300190000000003030433000000000223016f000000000021041b0000000101b0021000000001011001bf000000000019041b0000000005070433000001870050009c000003340000a13d000001bd01000041000000000010043f0000004101000039000000040010043f0000019301000041000005ff000104300000000404000039000000000104041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000001640000c13d000000200030008c000003610000413d000300000003001d000400000005001d000000000040043f0000000001000414000001800010009c0000018001008041000000c00110021000000188011001c7000080100200003905fd05f80000040f00000007060000290000000100200190000000480000613d00000004050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000006080000290000000404000039000003610000813d000000000002041b0000000102200039000000000012004b0000035d0000413d0000001f0050008c000003b00000a13d000400000005001d000000000040043f0000000001000414000001800010009c0000018001008041000000c00110021000000188011001c7000080100200003905fd05f80000040f0000000100200190000000480000613d000000200200008a0000000402200180000000000101043b000003f20000c13d00000020030000390000000506000029000003ff0000013d00000007010000290000000002000411000000000305001905fd05980000040f0000000701000029000000060200002905fd053d0000040f000003a80000013d0000000201000039000000000201041a000000000062001a000004470000413d000700000006001d0000000002620019000000000021041b000600000003001d000000000030043f000000200000043f0000000001000414000001800010009c0000018001008041000000c0011002100000018e011001c7000080100200003905fd05f80000040f0000000100200190000000480000613d000000000101043b000000000201041a00000007030000290000000002320019000000000021041b000000400100043d0000000000310435000001800010009c000001800100804100000040011002100000000002000414000001800020009c0000018002008041000000c002200210000000000112019f00000188011001c70000800d02000039000000030300003900000190040000410000000005000019000000060600002905fd05f30000040f0000000100200190000000480000613d000000400100043d00000001020000390000000000210435000001800010009c00000180010080410000004001100210000001b4011001c7000005fe0001042e000000000005004b0000000001000019000003b40000613d00000000010804330000000302500210000001c60220027f000001c602200167000000000121016f0000000102500210000000000121019f0000040e0000013d000000050130006c000003e10000813d000000400200043d000700000002001d000001bc01000041000000000012043500000004012000390000000002000411000000050400002905fd04b80000040f00000007020000290000000001210049000001800010009c00000180010080410000006001100210000001800020009c00000180020080410000004002200210000000000121019f000005ff000104300000018902600197000001c20330009a000000000303041a0000018303300197000000000223019f000000000025041b000000000201041a000000000002004b000003e70000c13d000001bd01000041000000000010043f0000003101000039000000040010043f0000019301000041000005ff00010430000000800000043f000001b301000041000005fe0001042e000400000001001d000000070000006b000004360000c13d000000400100043d000001c1020000410000043b0000013d000000000010043f000001c20320009a000000000403041a0000018904400197000000000043041b000000010220008a000000000021041b0000000104000039000000800040043f000001b301000041000005fe0001042e000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000050600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000003f80000c13d0000000405000029000000000052004b0000040a0000813d0000000302500210000000f80220018f000001c60220027f000001c60220016700000000036300190000000003030433000000000223016f000000000021041b000000010150021000000001011001bf000000070600002900000004040000390000018306600198000000000014041b000000400200043d000004140000c13d00000194010000410000042e0000013d000700000002001d0000000501000039000000000201041a0000018903200197000000000363019f000000000031041b00000000010004140000018305200197000001800010009c0000018001008041000000c0011002100000018a011001c70000800d0200003900000003030000390000018b0400004105fd05f30000040f0000000100200190000000480000613d0000018c010000410000000602000039000000000012041b0000000001000411000000000001004b000004430000c13d00000192010000410000000702000029000000000012043500000004012000390000000000010435000001800020009c0000018002008041000000400120021000000193011001c7000005ff000104300000000001000411000000000001004b0000044d0000c13d000000400100043d000001c002000041000000000021043500000004021000390000000000020435000001800010009c0000018001008041000000400110021000000193011001c7000005ff000104300000000201000039000000000201041a0000018d0220009c0000046b0000413d000001bd01000041000000000010043f0000001101000039000000040010043f0000019301000041000005ff000104300000000701000029000000000010043f0000000101000039000000200010043f0000000001000414000001800010009c0000018001008041000000c0011002100000018e011001c7000080100200003905fd05f80000040f0000000100200190000000480000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001800010009c0000018001008041000000c0011002100000018e011001c7000080100200003905fd05f80000040f0000000100200190000000480000613d000000000101043b0000000402000029000000000021041b0000027f0000013d000000000021041b0000000001000411000000000010043f000000200000043f0000000001000414000001800010009c0000018001008041000000c0011002100000018e011001c7000080100200003905fd05f80000040f0000000100200190000000480000613d000000000101043b000000000201041a0000018d0220009a000000000021041b0000018f01000041000000400200043d0000000000120435000001800020009c000001800200804100000040012002100000000002000414000001800020009c0000018002008041000000c002200210000000000121019f00000188011001c70000800d02000039000000030300003900000190040000410000000005000019000000000600041105fd05f30000040f0000000100200190000000480000613d0000002001000039000001000010044300000120000004430000019101000041000005fe0001042e00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000004a40000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000049d0000413d000000000321001900000000000304350000001f02200039000001c5022001970000000001210019000000000001042d0000000702000039000000000302041a000000000013004b000004b20000a13d000000000020043f000001b50110009a0000000002000019000000000001042d000001bd01000041000000000010043f0000003201000039000000040010043f0000019301000041000005ff000104300000004005100039000000000045043500000020041000390000000000340435000001830220019700000000002104350000006001100039000000000001042d0000000702000039000000000302041a000000000003004b000004ce0000613d000000000020043f0000000004000019000001b50540009a000000000505041a000000000515013f0000018300500198000004d00000613d0000000104400039000000000034004b000004c60000413d0000000001000019000000000001042d0000000101000039000000000001042d0005000000000002000500000003001d00000183031001980000051e0000613d000100000001001d000301830020019c000005210000613d000400000003001d000000000030043f000000200000043f0000000001000414000001800010009c0000018001008041000000c0011002100000018e011001c7000080100200003905fd05f80000040f00000001002001900000051c0000613d000000000101043b000000000301041a00020005003000740000052b0000413d0000000401000029000000000010043f000000200000043f0000000001000414000001800010009c0000018001008041000000c0011002100000018e011001c7000080100200003905fd05f80000040f00000001002001900000051c0000613d000000000101043b0000000202000029000000000021041b0000000301000029000000000010043f0000000001000414000001800010009c0000018001008041000000c0011002100000018e011001c7000080100200003905fd05f80000040f00000001002001900000051c0000613d000000000101043b000000000201041a00000005030000290000000002320019000000000021041b000000400100043d0000000000310435000001800010009c000001800100804100000040011002100000000002000414000001800020009c0000018002008041000000c002200210000000000112019f00000188011001c70000800d02000039000000030300003900000190040000410000000405000029000000030600002905fd05f30000040f00000001002001900000051c0000613d000000000001042d0000000001000019000005ff00010430000000400100043d000001c902000041000005230000013d000000400100043d0000019202000041000000000021043500000004021000390000000000020435000001800010009c0000018001008041000000400110021000000193011001c7000005ff00010430000000400200043d000400000002001d000001c801000041000000000012043500000004012000390000000102000029000000050400002905fd04b80000040f00000004020000290000000001210049000001800010009c00000180010080410000006001100210000001800020009c00000180020080410000004002200210000000000121019f000005ff000104300004000000000002000400000002001d000100000001001d00000183031001980000057c0000613d000000000030043f000000200000043f0000000001000414000001800010009c0000018001008041000000c0011002100000018e011001c70000801002000039000300000003001d05fd05f80000040f00000001002001900000057a0000613d0000000302000029000000000101043b000000000301041a0002000400300074000005860000413d000000000020043f000000200000043f0000000001000414000001800010009c0000018001008041000000c0011002100000018e011001c7000080100200003905fd05f80000040f00000001002001900000057a0000613d000000000101043b0000000202000029000000000021041b0000000201000039000000000201041a00000004030000290000000002320049000000000021041b000000400100043d0000000000310435000001800010009c000001800100804100000040011002100000000002000414000001800020009c0000018002008041000000c002200210000000000112019f00000188011001c70000800d02000039000000030300003900000190040000410000000305000029000000000600001905fd05f30000040f00000001002001900000057a0000613d000000000001042d0000000001000019000005ff00010430000000400100043d000001c902000041000000000021043500000004021000390000000000020435000001800010009c0000018001008041000000400110021000000193011001c7000005ff00010430000000400200043d000300000002001d000001c801000041000000000012043500000004012000390000000102000029000000040400002905fd04b80000040f00000003020000290000000001210049000001800010009c00000180010080410000006001100210000001800020009c00000180020080410000004002200210000000000121019f000005ff0001043000030000000000020000018301100198000005d10000613d000200000003001d000301830020019c000005d40000613d000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000001800010009c0000018001008041000000c0011002100000018e011001c7000080100200003905fd05f80000040f00000001002001900000000303000029000005cf0000613d000000000101043b000000000030043f000000200010043f0000000001000414000001800010009c0000018001008041000000c0011002100000018e011001c7000080100200003905fd05f80000040f00000003060000290000000100200190000005cf0000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001800010009c000001800100804100000040011002100000000002000414000001800020009c0000018002008041000000c002200210000000000112019f00000188011001c70000800d020000390000000303000039000001ca04000041000000010500002905fd05f30000040f0000000100200190000005cf0000613d000000000001042d0000000001000019000005ff00010430000000400100043d000001c102000041000005d60000013d000000400100043d000001c002000041000000000021043500000004021000390000000000020435000001800010009c0000018001008041000000400110021000000193011001c7000005ff00010430000001800010009c00000180010080410000004001100210000001800020009c00000180020080410000006002200210000000000112019f0000000002000414000001800020009c0000018002008041000000c002200210000000000112019f0000018a011001c7000080100200003905fd05f80000040f0000000100200190000005f10000613d000000000101043b000000000001042d0000000001000019000005ff00010430000005f6002104210000000102000039000000000001042d0000000002000019000000000001042d000005fb002104230000000102000039000000000001042d0000000002000019000000000001042d000005fd00000432000005fe0001042e000005ff0001043000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf5361706c696e67000000000000000000000000000000000000000000000000005350470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e00000000000000000000000000000000000000000000000000000000000989680fffffffffffffffffffffffffffffffffffffffffff7ba6ae9ebfeb7b60000000200000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000084595161401484a000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000200000000000000000000000000000040000001000000000000000000ec442f050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000001e4fbdf7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000aa271e1900000000000000000000000000000000000000000000000000000000aa271e1a00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000f2fde38b0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000983b2d5600000000000000000000000000000000000000000000000000000000a9059cbb0000000000000000000000000000000000000000000000000000000079cc678f0000000000000000000000000000000000000000000000000000000079cc6790000000000000000000000000000000000000000000000000000000008623ec7b000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000023b872dc00000000000000000000000000000000000000000000000000000000378dc3db00000000000000000000000000000000000000000000000000000000378dc3dc0000000000000000000000000000000000000000000000000000000040c10f190000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000095ea7b200000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023338b88000000000000000000000000000000000000000000000000000000000323aac70000000000000000000000000000000000000000000000000000000006fdde03118cdaa700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000080000000000000000000000000000000000000000000000000000000200000008000000000000000000000000000000000000000000000000000000020000000000000000000000000599336d74a1247d50642b66dd6abeaa5484f6bd96b415b31bb99e26578c9397808c379a0000000000000000000000000000000000000000000000000000000005350473a205f6164644d696e74657220697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b000000000000000000000000000000000000000000000000ffffffffffffff7ffb8f41b2000000000000000000000000000000000000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000043616c6c6572206973206e6f7420746865206d696e7465720000000000000000000000000000000000000000000000000000006400000080000000000000000094280d6200000000000000000000000000000000000000000000000000000000e602df0500000000000000000000000000000000000000000000000000000000599336d74a1247d50642b66dd6abeaa5484f6bd96b415b31bb99e26578c939795350473a205f64656c4d696e74657220697320746865207a65726f2061646472c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00e450d38c0000000000000000000000000000000000000000000000000000000096c6fd1e000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9250000000000000000000000000000000000000000000000000000000000000000b90f72bc54cf661c45a416864995debc49d87d9ab4b4a376ded2df3ff3580d87

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

000000000000000000000000fbdb5a61ca278ba318a1131c832b1a24292ab049

-----Decoded View---------------
Arg [0] : initialOwner (address): 0xfbdB5A61ca278BA318A1131C832b1A24292aB049

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000fbdb5a61ca278ba318a1131c832b1a24292ab049


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