ETH Price: $2,051.39 (+5.63%)
 

Overview

Max Total Supply

500,000,000 GALEON

Holders

312 (0.00%)

Transfers

-
0

Market

Price

$0.01 @ 0.000005 ETH (-0.45%)

Onchain Market Cap

-

Circulating Supply Market Cap

$8,180,404.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Galeon is an AI-powered healthcare community that empowers patients, researchers and caregivers to collaborate and drive innovation in medicine with the biggest high-quality medical database. Galeon builds the next generation of Electronic Health Records (EHR) and train medical AI with blockchain.

Market

Volume (24H):$95,325.00
Market Capitalization:$8,180,404.00
Circulating Supply:824,803,131.00 GALEON
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GALEON

Compiler Version
v0.8.30+commit.73712a01

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2025-09-18
*/

// SPDX-License-Identifier: MIT
// Compatible with OpenZeppelin Contracts ^5.4.0

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)

pragma solidity >=0.4.16;

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

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


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

pragma solidity >=0.6.2;


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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.20;

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

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

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

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;

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

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


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

pragma solidity ^0.8.20;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of 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}.
     *
     * Both 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;
    }

    /// @inheritdoc IERC20
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

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

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

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


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

pragma solidity ^0.8.20;



/**
 * @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 a `value` amount of tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 value) public virtual {
        _burn(_msgSender(), value);
    }

    /**
     * @dev Destroys a `value` amount of 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
     * `value`.
     */
    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }
}

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


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

pragma solidity ^0.8.20;


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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

// File: Galeon.sol


// Compatible with OpenZeppelin Contracts ^5.4.0
pragma solidity ^0.8.27;




/// @custom:security-contact [email protected]
contract GALEON is ERC20, ERC20Burnable, Ownable {
    // Max supply: 4 billion tokens with 18 decimals
    uint256 public immutable maxSupply;
    
    // Event for mint tracking
    event TokensMinted(address indexed to, uint256 amount);
    
    constructor(address recipient, address initialOwner)
        ERC20("GALEON", "GALEON")
        Ownable(initialOwner)
    {
        require(recipient != address(0), "Cannot mint to zero address");
        
        // Set max supply with 18 decimals
        maxSupply = 4000000000 * 10**18;
        
        // Initial supply: 500 million tokens (12.5% of max supply)
        uint256 initialSupply = 500000000 * 10**18;
        require(initialSupply <= maxSupply, "Initial supply exceeds max supply");
        
        _mint(recipient, initialSupply);
        emit TokensMinted(recipient, initialSupply);
    }
    
    function decimals() public pure override returns (uint8) {
        return 18;
    }

    function mint(address to, uint256 amount) public onlyOwner {
        require(to != address(0), "Cannot mint to zero address");
        require(amount > 0, "Amount must be greater than zero");
        require(totalSupply() + amount <= maxSupply, "Minting exceeds max supply");
        
        _mint(to, amount);
        emit TokensMinted(to, amount);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"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":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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":"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"}]

60a060405234801561000f575f5ffd5b506040516120e03803806120e08339818101604052810190610031919061063c565b806040518060400160405280600681526020017f47414c454f4e00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f47414c454f4e000000000000000000000000000000000000000000000000000081525081600390816100ad91906108b7565b5080600490816100bd91906108b7565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610130575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101279190610995565b60405180910390fd5b61013f8161027d60201b60201c565b505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036101ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101a590610a08565b60405180910390fd5b6b0cecb8f27f4200f3a0000000608081815250505f6b019d971e4fe8401e740000009050608051811115610217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161020e90610a96565b60405180910390fd5b610227838261034060201b60201c565b8273ffffffffffffffffffffffffffffffffffffffff167f3f2c9d57c068687834f0de942a9babb9e5acab57d516d3480a3c16ee165a42738260405161026d9190610ac3565b60405180910390a2505050610b71565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036103b0575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016103a79190610995565b60405180910390fd5b6103c15f83836103c560201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610415578060025f8282546104099190610b09565b925050819055506104e3565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561049e578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161049593929190610b3c565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361052a578060025f8282540392505081905550610574565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105d19190610ac3565b60405180910390a3505050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61060b826105e2565b9050919050565b61061b81610601565b8114610625575f5ffd5b50565b5f8151905061063681610612565b92915050565b5f5f60408385031215610652576106516105de565b5b5f61065f85828601610628565b925050602061067085828601610628565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806106f557607f821691505b602082108103610708576107076106b1565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261076a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261072f565b610774868361072f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6107b86107b36107ae8461078c565b610795565b61078c565b9050919050565b5f819050919050565b6107d18361079e565b6107e56107dd826107bf565b84845461073b565b825550505050565b5f5f905090565b6107fc6107ed565b6108078184846107c8565b505050565b5b8181101561082a5761081f5f826107f4565b60018101905061080d565b5050565b601f82111561086f576108408161070e565b61084984610720565b81016020851015610858578190505b61086c61086485610720565b83018261080c565b50505b505050565b5f82821c905092915050565b5f61088f5f1984600802610874565b1980831691505092915050565b5f6108a78383610880565b9150826002028217905092915050565b6108c08261067a565b67ffffffffffffffff8111156108d9576108d8610684565b5b6108e382546106de565b6108ee82828561082e565b5f60209050601f83116001811461091f575f841561090d578287015190505b610917858261089c565b86555061097e565b601f19841661092d8661070e565b5f5b828110156109545784890151825560018201915060208501945060208101905061092f565b86831015610971578489015161096d601f891682610880565b8355505b6001600288020188555050505b505050505050565b61098f81610601565b82525050565b5f6020820190506109a85f830184610986565b92915050565b5f82825260208201905092915050565b7f43616e6e6f74206d696e7420746f207a65726f206164647265737300000000005f82015250565b5f6109f2601b836109ae565b91506109fd826109be565b602082019050919050565b5f6020820190508181035f830152610a1f816109e6565b9050919050565b7f496e697469616c20737570706c792065786365656473206d617820737570706c5f8201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b5f610a806021836109ae565b9150610a8b82610a26565b604082019050919050565b5f6020820190508181035f830152610aad81610a74565b9050919050565b610abd8161078c565b82525050565b5f602082019050610ad65f830184610ab4565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610b138261078c565b9150610b1e8361078c565b9250828201905080821115610b3657610b35610adc565b5b92915050565b5f606082019050610b4f5f830186610986565b610b5c6020830185610ab4565b610b696040830184610ab4565b949350505050565b608051611550610b905f395f81816104cb015261070201526115505ff3fe608060405234801561000f575f5ffd5b50600436106100fe575f3560e01c8063715018a611610095578063a9059cbb11610064578063a9059cbb14610286578063d5abeb01146102b6578063dd62ed3e146102d4578063f2fde38b14610304576100fe565b8063715018a61461022457806379cc67901461022e5780638da5cb5b1461024a57806395d89b4114610268576100fe565b8063313ce567116100d1578063313ce5671461019e57806340c10f19146101bc57806342966c68146101d857806370a08231146101f4576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f5ffd5b61010a610320565b6040516101179190611066565b60405180910390f35b61013a60048036038101906101359190611117565b6103b0565b604051610147919061116f565b60405180910390f35b6101586103d2565b6040516101659190611197565b60405180910390f35b610188600480360381019061018391906111b0565b6103db565b604051610195919061116f565b60405180910390f35b6101a6610409565b6040516101b3919061121b565b60405180910390f35b6101d660048036038101906101d19190611117565b610411565b005b6101f260048036038101906101ed9190611234565b61059a565b005b61020e6004803603810190610209919061125f565b6105ae565b60405161021b9190611197565b60405180910390f35b61022c6105f3565b005b61024860048036038101906102439190611117565b610606565b005b610252610626565b60405161025f9190611299565b60405180910390f35b61027061064e565b60405161027d9190611066565b60405180910390f35b6102a0600480360381019061029b9190611117565b6106de565b6040516102ad919061116f565b60405180910390f35b6102be610700565b6040516102cb9190611197565b60405180910390f35b6102ee60048036038101906102e991906112b2565b610724565b6040516102fb9190611197565b60405180910390f35b61031e6004803603810190610319919061125f565b6107a6565b005b60606003805461032f9061131d565b80601f016020809104026020016040519081016040528092919081815260200182805461035b9061131d565b80156103a65780601f1061037d576101008083540402835291602001916103a6565b820191905f5260205f20905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b5f5f6103ba61082a565b90506103c7818585610831565b600191505092915050565b5f600254905090565b5f5f6103e561082a565b90506103f2858285610843565b6103fd8585856108d6565b60019150509392505050565b5f6012905090565b6104196109c6565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047e90611397565b60405180910390fd5b5f81116104c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c0906113ff565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000816104f36103d2565b6104fd919061144a565b111561053e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610535906114c7565b60405180910390fd5b6105488282610a4d565b8173ffffffffffffffffffffffffffffffffffffffff167f3f2c9d57c068687834f0de942a9babb9e5acab57d516d3480a3c16ee165a42738260405161058e9190611197565b60405180910390a25050565b6105ab6105a561082a565b82610acc565b50565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105fb6109c6565b6106045f610b4b565b565b6106188261061261082a565b83610843565b6106228282610acc565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461065d9061131d565b80601f01602080910402602001604051908101604052809291908181526020018280546106899061131d565b80156106d45780601f106106ab576101008083540402835291602001916106d4565b820191905f5260205f20905b8154815290600101906020018083116106b757829003601f168201915b5050505050905090565b5f5f6106e861082a565b90506106f58185856108d6565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107ae6109c6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361081e575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016108159190611299565b60405180910390fd5b61082781610b4b565b50565b5f33905090565b61083e8383836001610c0e565b505050565b5f61084e8484610724565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110156108d057818110156108c1578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016108b8939291906114e5565b60405180910390fd5b6108cf84848484035f610c0e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610946575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161093d9190611299565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109b6575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109ad9190611299565b60405180910390fd5b6109c1838383610ddd565b505050565b6109ce61082a565b73ffffffffffffffffffffffffffffffffffffffff166109ec610626565b73ffffffffffffffffffffffffffffffffffffffff1614610a4b57610a0f61082a565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610a429190611299565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610abd575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ab49190611299565b60405180910390fd5b610ac85f8383610ddd565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b3c575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b339190611299565b60405180910390fd5b610b47825f83610ddd565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c7e575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610c759190611299565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cee575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610ce59190611299565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610dd7578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610dce9190611197565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e2d578060025f828254610e21919061144a565b92505081905550610efb565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610eb6578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ead939291906114e5565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f42578060025f8282540392505081905550610f8c565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fe99190611197565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61103882610ff6565b6110428185611000565b9350611052818560208601611010565b61105b8161101e565b840191505092915050565b5f6020820190508181035f83015261107e818461102e565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110b38261108a565b9050919050565b6110c3816110a9565b81146110cd575f5ffd5b50565b5f813590506110de816110ba565b92915050565b5f819050919050565b6110f6816110e4565b8114611100575f5ffd5b50565b5f81359050611111816110ed565b92915050565b5f5f6040838503121561112d5761112c611086565b5b5f61113a858286016110d0565b925050602061114b85828601611103565b9150509250929050565b5f8115159050919050565b61116981611155565b82525050565b5f6020820190506111825f830184611160565b92915050565b611191816110e4565b82525050565b5f6020820190506111aa5f830184611188565b92915050565b5f5f5f606084860312156111c7576111c6611086565b5b5f6111d4868287016110d0565b93505060206111e5868287016110d0565b92505060406111f686828701611103565b9150509250925092565b5f60ff82169050919050565b61121581611200565b82525050565b5f60208201905061122e5f83018461120c565b92915050565b5f6020828403121561124957611248611086565b5b5f61125684828501611103565b91505092915050565b5f6020828403121561127457611273611086565b5b5f611281848285016110d0565b91505092915050565b611293816110a9565b82525050565b5f6020820190506112ac5f83018461128a565b92915050565b5f5f604083850312156112c8576112c7611086565b5b5f6112d5858286016110d0565b92505060206112e6858286016110d0565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061133457607f821691505b602082108103611347576113466112f0565b5b50919050565b7f43616e6e6f74206d696e7420746f207a65726f206164647265737300000000005f82015250565b5f611381601b83611000565b915061138c8261134d565b602082019050919050565b5f6020820190508181035f8301526113ae81611375565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e207a65726f5f82015250565b5f6113e9602083611000565b91506113f4826113b5565b602082019050919050565b5f6020820190508181035f830152611416816113dd565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611454826110e4565b915061145f836110e4565b92508282019050808211156114775761147661141d565b5b92915050565b7f4d696e74696e672065786365656473206d617820737570706c790000000000005f82015250565b5f6114b1601a83611000565b91506114bc8261147d565b602082019050919050565b5f6020820190508181035f8301526114de816114a5565b9050919050565b5f6060820190506114f85f83018661128a565b6115056020830185611188565b6115126040830184611188565b94935050505056fea2646970667358221220ec9c78b98c7653c238e822721dd04002b99cf280edc243e5f3ce5fbd01805c5464736f6c634300081e003300000000000000000000000095e2439bf331a8f6d3f4705c5b629647fe36745000000000000000000000000095e2439bf331a8f6d3f4705c5b629647fe367450

Deployed Bytecode

0x608060405234801561000f575f5ffd5b50600436106100fe575f3560e01c8063715018a611610095578063a9059cbb11610064578063a9059cbb14610286578063d5abeb01146102b6578063dd62ed3e146102d4578063f2fde38b14610304576100fe565b8063715018a61461022457806379cc67901461022e5780638da5cb5b1461024a57806395d89b4114610268576100fe565b8063313ce567116100d1578063313ce5671461019e57806340c10f19146101bc57806342966c68146101d857806370a08231146101f4576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f5ffd5b61010a610320565b6040516101179190611066565b60405180910390f35b61013a60048036038101906101359190611117565b6103b0565b604051610147919061116f565b60405180910390f35b6101586103d2565b6040516101659190611197565b60405180910390f35b610188600480360381019061018391906111b0565b6103db565b604051610195919061116f565b60405180910390f35b6101a6610409565b6040516101b3919061121b565b60405180910390f35b6101d660048036038101906101d19190611117565b610411565b005b6101f260048036038101906101ed9190611234565b61059a565b005b61020e6004803603810190610209919061125f565b6105ae565b60405161021b9190611197565b60405180910390f35b61022c6105f3565b005b61024860048036038101906102439190611117565b610606565b005b610252610626565b60405161025f9190611299565b60405180910390f35b61027061064e565b60405161027d9190611066565b60405180910390f35b6102a0600480360381019061029b9190611117565b6106de565b6040516102ad919061116f565b60405180910390f35b6102be610700565b6040516102cb9190611197565b60405180910390f35b6102ee60048036038101906102e991906112b2565b610724565b6040516102fb9190611197565b60405180910390f35b61031e6004803603810190610319919061125f565b6107a6565b005b60606003805461032f9061131d565b80601f016020809104026020016040519081016040528092919081815260200182805461035b9061131d565b80156103a65780601f1061037d576101008083540402835291602001916103a6565b820191905f5260205f20905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b5f5f6103ba61082a565b90506103c7818585610831565b600191505092915050565b5f600254905090565b5f5f6103e561082a565b90506103f2858285610843565b6103fd8585856108d6565b60019150509392505050565b5f6012905090565b6104196109c6565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047e90611397565b60405180910390fd5b5f81116104c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c0906113ff565b60405180910390fd5b7f00000000000000000000000000000000000000000cecb8f27f4200f3a0000000816104f36103d2565b6104fd919061144a565b111561053e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610535906114c7565b60405180910390fd5b6105488282610a4d565b8173ffffffffffffffffffffffffffffffffffffffff167f3f2c9d57c068687834f0de942a9babb9e5acab57d516d3480a3c16ee165a42738260405161058e9190611197565b60405180910390a25050565b6105ab6105a561082a565b82610acc565b50565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105fb6109c6565b6106045f610b4b565b565b6106188261061261082a565b83610843565b6106228282610acc565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461065d9061131d565b80601f01602080910402602001604051908101604052809291908181526020018280546106899061131d565b80156106d45780601f106106ab576101008083540402835291602001916106d4565b820191905f5260205f20905b8154815290600101906020018083116106b757829003601f168201915b5050505050905090565b5f5f6106e861082a565b90506106f58185856108d6565b600191505092915050565b7f00000000000000000000000000000000000000000cecb8f27f4200f3a000000081565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107ae6109c6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361081e575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016108159190611299565b60405180910390fd5b61082781610b4b565b50565b5f33905090565b61083e8383836001610c0e565b505050565b5f61084e8484610724565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110156108d057818110156108c1578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016108b8939291906114e5565b60405180910390fd5b6108cf84848484035f610c0e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610946575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161093d9190611299565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109b6575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109ad9190611299565b60405180910390fd5b6109c1838383610ddd565b505050565b6109ce61082a565b73ffffffffffffffffffffffffffffffffffffffff166109ec610626565b73ffffffffffffffffffffffffffffffffffffffff1614610a4b57610a0f61082a565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610a429190611299565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610abd575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ab49190611299565b60405180910390fd5b610ac85f8383610ddd565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b3c575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b339190611299565b60405180910390fd5b610b47825f83610ddd565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c7e575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610c759190611299565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cee575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610ce59190611299565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610dd7578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610dce9190611197565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e2d578060025f828254610e21919061144a565b92505081905550610efb565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610eb6578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ead939291906114e5565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f42578060025f8282540392505081905550610f8c565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fe99190611197565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61103882610ff6565b6110428185611000565b9350611052818560208601611010565b61105b8161101e565b840191505092915050565b5f6020820190508181035f83015261107e818461102e565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110b38261108a565b9050919050565b6110c3816110a9565b81146110cd575f5ffd5b50565b5f813590506110de816110ba565b92915050565b5f819050919050565b6110f6816110e4565b8114611100575f5ffd5b50565b5f81359050611111816110ed565b92915050565b5f5f6040838503121561112d5761112c611086565b5b5f61113a858286016110d0565b925050602061114b85828601611103565b9150509250929050565b5f8115159050919050565b61116981611155565b82525050565b5f6020820190506111825f830184611160565b92915050565b611191816110e4565b82525050565b5f6020820190506111aa5f830184611188565b92915050565b5f5f5f606084860312156111c7576111c6611086565b5b5f6111d4868287016110d0565b93505060206111e5868287016110d0565b92505060406111f686828701611103565b9150509250925092565b5f60ff82169050919050565b61121581611200565b82525050565b5f60208201905061122e5f83018461120c565b92915050565b5f6020828403121561124957611248611086565b5b5f61125684828501611103565b91505092915050565b5f6020828403121561127457611273611086565b5b5f611281848285016110d0565b91505092915050565b611293816110a9565b82525050565b5f6020820190506112ac5f83018461128a565b92915050565b5f5f604083850312156112c8576112c7611086565b5b5f6112d5858286016110d0565b92505060206112e6858286016110d0565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061133457607f821691505b602082108103611347576113466112f0565b5b50919050565b7f43616e6e6f74206d696e7420746f207a65726f206164647265737300000000005f82015250565b5f611381601b83611000565b915061138c8261134d565b602082019050919050565b5f6020820190508181035f8301526113ae81611375565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e207a65726f5f82015250565b5f6113e9602083611000565b91506113f4826113b5565b602082019050919050565b5f6020820190508181035f830152611416816113dd565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611454826110e4565b915061145f836110e4565b92508282019050808211156114775761147661141d565b5b92915050565b7f4d696e74696e672065786365656473206d617820737570706c790000000000005f82015250565b5f6114b1601a83611000565b91506114bc8261147d565b602082019050919050565b5f6020820190508181035f8301526114de816114a5565b9050919050565b5f6060820190506114f85f83018661128a565b6115056020830185611188565b6115126040830184611188565b94935050505056fea2646970667358221220ec9c78b98c7653c238e822721dd04002b99cf280edc243e5f3ce5fbd01805c5464736f6c634300081e0033

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

00000000000000000000000095e2439bf331a8f6d3f4705c5b629647fe36745000000000000000000000000095e2439bf331a8f6d3f4705c5b629647fe367450

-----Decoded View---------------
Arg [0] : recipient (address): 0x95E2439bF331A8f6d3F4705c5B629647fe367450
Arg [1] : initialOwner (address): 0x95E2439bF331A8f6d3F4705c5B629647fe367450

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000095e2439bf331a8f6d3f4705c5b629647fe367450
Arg [1] : 00000000000000000000000095e2439bf331a8f6d3f4705c5b629647fe367450


Deployed Bytecode Sourcemap

26882:1350:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13067:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15277:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14140:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16077:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27773:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27866:363;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22956:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14275:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25887:103;;;:::i;:::-;;23374:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25212:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13277:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14598:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26992:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14816:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26145:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13067:91;13112:13;13145:5;13138:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13067:91;:::o;15277:190::-;15350:4;15367:13;15383:12;:10;:12::i;:::-;15367:28;;15406:31;15415:5;15422:7;15431:5;15406:8;:31::i;:::-;15455:4;15448:11;;;15277:190;;;;:::o;14140:99::-;14192:7;14219:12;;14212:19;;14140:99;:::o;16077:249::-;16164:4;16181:15;16199:12;:10;:12::i;:::-;16181:30;;16222:37;16238:4;16244:7;16253:5;16222:15;:37::i;:::-;16270:26;16280:4;16286:2;16290:5;16270:9;:26::i;:::-;16314:4;16307:11;;;16077:249;;;;;:::o;27773:85::-;27823:5;27848:2;27841:9;;27773:85;:::o;27866:363::-;25098:13;:11;:13::i;:::-;27958:1:::1;27944:16;;:2;:16;;::::0;27936:56:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;28020:1;28011:6;:10;28003:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;28103:9;28093:6;28077:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;28069:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28164:17;28170:2;28174:6;28164:5;:17::i;:::-;28210:2;28197:24;;;28214:6;28197:24;;;;;;:::i;:::-;;;;;;;;27866:363:::0;;:::o;22956:89::-;23011:26;23017:12;:10;:12::i;:::-;23031:5;23011;:26::i;:::-;22956:89;:::o;14275:118::-;14340:7;14367:9;:18;14377:7;14367:18;;;;;;;;;;;;;;;;14360:25;;14275:118;;;:::o;25887:103::-;25098:13;:11;:13::i;:::-;25952:30:::1;25979:1;25952:18;:30::i;:::-;25887:103::o:0;23374:161::-;23450:45;23466:7;23475:12;:10;:12::i;:::-;23489:5;23450:15;:45::i;:::-;23506:21;23512:7;23521:5;23506;:21::i;:::-;23374:161;;:::o;25212:87::-;25258:7;25285:6;;;;;;;;;;;25278:13;;25212:87;:::o;13277:95::-;13324:13;13357:7;13350:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13277:95;:::o;14598:182::-;14667:4;14684:13;14700:12;:10;:12::i;:::-;14684:28;;14723:27;14733:5;14740:2;14744:5;14723:9;:27::i;:::-;14768:4;14761:11;;;14598:182;;;;:::o;26992:34::-;;;:::o;14816:142::-;14896:7;14923:11;:18;14935:5;14923:18;;;;;;;;;;;;;;;:27;14942:7;14923:27;;;;;;;;;;;;;;;;14916:34;;14816:142;;;;:::o;26145:220::-;25098:13;:11;:13::i;:::-;26250:1:::1;26230:22;;:8;:22;;::::0;26226:93:::1;;26304:1;26276:31;;;;;;;;;;;:::i;:::-;;;;;;;;26226:93;26329:28;26348:8;26329:18;:28::i;:::-;26145:220:::0;:::o;4386:98::-;4439:7;4466:10;4459:17;;4386:98;:::o;20136:130::-;20221:37;20230:5;20237:7;20246:5;20253:4;20221:8;:37::i;:::-;20136:130;;;:::o;21868:486::-;21968:24;21995:25;22005:5;22012:7;21995:9;:25::i;:::-;21968:52;;22054:17;22035:16;:36;22031:316;;;22111:5;22092:16;:24;22088:132;;;22171:7;22180:16;22198:5;22144:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22088:132;22263:57;22272:5;22279:7;22307:5;22288:16;:24;22314:5;22263:8;:57::i;:::-;22031:316;21957:397;21868:486;;;:::o;16711:308::-;16811:1;16795:18;;:4;:18;;;16791:88;;16864:1;16837:30;;;;;;;;;;;:::i;:::-;;;;;;;;16791:88;16907:1;16893:16;;:2;:16;;;16889:88;;16962:1;16933:32;;;;;;;;;;;:::i;:::-;;;;;;;;16889:88;16987:24;16995:4;17001:2;17005:5;16987:7;:24::i;:::-;16711:308;;;:::o;25377:166::-;25448:12;:10;:12::i;:::-;25437:23;;:7;:5;:7::i;:::-;:23;;;25433:103;;25511:12;:10;:12::i;:::-;25484:40;;;;;;;;;;;:::i;:::-;;;;;;;;25433:103;25377:166::o;18831:213::-;18921:1;18902:21;;:7;:21;;;18898:93;;18976:1;18947:32;;;;;;;;;;;:::i;:::-;;;;;;;;18898:93;19001:35;19017:1;19021:7;19030:5;19001:7;:35::i;:::-;18831:213;;:::o;19372:211::-;19462:1;19443:21;;:7;:21;;;19439:91;;19515:1;19488:30;;;;;;;;;;;:::i;:::-;;;;;;;;19439:91;19540:35;19548:7;19565:1;19569:5;19540:7;:35::i;:::-;19372:211;;:::o;26525:191::-;26599:16;26618:6;;;;;;;;;;;26599:25;;26644:8;26635:6;;:17;;;;;;;;;;;;;;;;;;26699:8;26668:40;;26689:8;26668:40;;;;;;;;;;;;26588:128;26525:191;:::o;21133:443::-;21263:1;21246:19;;:5;:19;;;21242:91;;21318:1;21289:32;;;;;;;;;;;:::i;:::-;;;;;;;;21242:91;21366:1;21347:21;;:7;:21;;;21343:92;;21420:1;21392:31;;;;;;;;;;;:::i;:::-;;;;;;;;21343:92;21475:5;21445:11;:18;21457:5;21445:18;;;;;;;;;;;;;;;:27;21464:7;21445:27;;;;;;;;;;;;;;;:35;;;;21495:9;21491:78;;;21542:7;21526:31;;21535:5;21526:31;;;21551:5;21526:31;;;;;;:::i;:::-;;;;;;;;21491:78;21133:443;;;;:::o;17343:1135::-;17449:1;17433:18;;:4;:18;;;17429:552;;17587:5;17571:12;;:21;;;;;;;:::i;:::-;;;;;;;;17429:552;;;17625:19;17647:9;:15;17657:4;17647:15;;;;;;;;;;;;;;;;17625:37;;17695:5;17681:11;:19;17677:117;;;17753:4;17759:11;17772:5;17728:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17677:117;17949:5;17935:11;:19;17917:9;:15;17927:4;17917:15;;;;;;;;;;;;;;;:37;;;;17610:371;17429:552;18011:1;17997:16;;:2;:16;;;17993:435;;18179:5;18163:12;;:21;;;;;;;;;;;17993:435;;;18396:5;18379:9;:13;18389:2;18379:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;17993:435;18460:2;18445:25;;18454:4;18445:25;;;18464:5;18445:25;;;;;;:::i;:::-;;;;;;;;17343:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:::-;5140:6;5189:2;5177:9;5168:7;5164:23;5160:32;5157:119;;;5195:79;;:::i;:::-;5157:119;5315:1;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5286:117;5081:329;;;;:::o;5416:118::-;5503:24;5521:5;5503:24;:::i;:::-;5498:3;5491:37;5416:118;;:::o;5540:222::-;5633:4;5671:2;5660:9;5656:18;5648:26;;5684:71;5752:1;5741:9;5737:17;5728:6;5684:71;:::i;:::-;5540:222;;;;:::o;5768:474::-;5836:6;5844;5893:2;5881:9;5872:7;5868:23;5864:32;5861:119;;;5899:79;;:::i;:::-;5861:119;6019:1;6044:53;6089:7;6080:6;6069:9;6065:22;6044:53;:::i;:::-;6034:63;;5990:117;6146:2;6172:53;6217:7;6208:6;6197:9;6193:22;6172:53;:::i;:::-;6162:63;;6117:118;5768:474;;;;;:::o;6248:180::-;6296:77;6293:1;6286:88;6393:4;6390:1;6383:15;6417:4;6414:1;6407:15;6434:320;6478:6;6515:1;6509:4;6505:12;6495:22;;6562:1;6556:4;6552:12;6583:18;6573:81;;6639:4;6631:6;6627:17;6617:27;;6573:81;6701:2;6693:6;6690:14;6670:18;6667:38;6664:84;;6720:18;;:::i;:::-;6664:84;6485:269;6434:320;;;:::o;6760:177::-;6900:29;6896:1;6888:6;6884:14;6877:53;6760:177;:::o;6943:366::-;7085:3;7106:67;7170:2;7165:3;7106:67;:::i;:::-;7099:74;;7182:93;7271:3;7182:93;:::i;:::-;7300:2;7295:3;7291:12;7284:19;;6943:366;;;:::o;7315:419::-;7481:4;7519:2;7508:9;7504:18;7496:26;;7568:9;7562:4;7558:20;7554:1;7543:9;7539:17;7532:47;7596:131;7722:4;7596:131;:::i;:::-;7588:139;;7315:419;;;:::o;7740:182::-;7880:34;7876:1;7868:6;7864:14;7857:58;7740:182;:::o;7928:366::-;8070:3;8091:67;8155:2;8150:3;8091:67;:::i;:::-;8084:74;;8167:93;8256:3;8167:93;:::i;:::-;8285:2;8280:3;8276:12;8269:19;;7928:366;;;:::o;8300:419::-;8466:4;8504:2;8493:9;8489:18;8481:26;;8553:9;8547:4;8543:20;8539:1;8528:9;8524:17;8517:47;8581:131;8707:4;8581:131;:::i;:::-;8573:139;;8300:419;;;:::o;8725:180::-;8773:77;8770:1;8763:88;8870:4;8867:1;8860:15;8894:4;8891:1;8884:15;8911:191;8951:3;8970:20;8988:1;8970:20;:::i;:::-;8965:25;;9004:20;9022:1;9004:20;:::i;:::-;8999:25;;9047:1;9044;9040:9;9033:16;;9068:3;9065:1;9062:10;9059:36;;;9075:18;;:::i;:::-;9059:36;8911:191;;;;:::o;9108:176::-;9248:28;9244:1;9236:6;9232:14;9225:52;9108:176;:::o;9290:366::-;9432:3;9453:67;9517:2;9512:3;9453:67;:::i;:::-;9446:74;;9529:93;9618:3;9529:93;:::i;:::-;9647:2;9642:3;9638:12;9631:19;;9290:366;;;:::o;9662:419::-;9828:4;9866:2;9855:9;9851:18;9843:26;;9915:9;9909:4;9905:20;9901:1;9890:9;9886:17;9879:47;9943:131;10069:4;9943:131;:::i;:::-;9935:139;;9662:419;;;:::o;10087:442::-;10236:4;10274:2;10263:9;10259:18;10251:26;;10287:71;10355:1;10344:9;10340:17;10331:6;10287:71;:::i;:::-;10368:72;10436:2;10425:9;10421:18;10412:6;10368:72;:::i;:::-;10450;10518:2;10507:9;10503:18;10494:6;10450:72;:::i;:::-;10087:442;;;;;;:::o

Swarm Source

ipfs://ec9c78b98c7653c238e822721dd04002b99cf280edc243e5f3ce5fbd01805c54
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.