ETH Price: $2,843.77 (-3.23%)
 

Overview

Max Total Supply

290,560,000 KILT

Holders

1,383 (0.00%)

Market

Price

$0.0003 @ 0.000000 ETH (-2.70%)

Onchain Market Cap

$81,621.21

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
froddosaggins.base.eth
Balance
30,607.966155866541424254 KILT

Value
$8.60 ( ~0.00302415241053376 ETH) [0.0105%]
0x80f40ed437d2b597c04317badd9238ff7e2bf230
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Secure, practical identity solutions for enterprises, governments and consumers.

Contract Source Code Verified (Exact Match)

Contract Name:
KILT

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2025-04-29
*/

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


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

pragma solidity ^0.8.20;

/**
 * @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.1.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @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.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

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

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

// File: KILT_Mainnet4.sol


pragma solidity ^0.8.20;


contract KILT is ERC20 {
    address public immutable treasuryAddress;    
    address public immutable migrationContract;
    uint256 public constant TREASURY_AMOUNT = 13_587_418 * 10**18;
    uint256 public constant MIGRATION_AMOUNT = TOTAL_SUPPLY - TREASURY_AMOUNT;
    uint256 public constant TOTAL_SUPPLY = 290_560_000 * 10**18;

    event KILTDeployed(address indexed migrationContract, address indexed treasuryAddress, uint256 treasuryAmount, uint256 migrationAmount);

    constructor(address _migrationContract, address _treasuryAddress) 
        ERC20("KILT Protocol", "KILT")
    {
        require(_migrationContract != address(0), "KILT: Migration contract cannot be zero address");
        require(_treasuryAddress != address(0), "KILT: Treasury address cannot be zero address");
        
        migrationContract = _migrationContract;
        treasuryAddress = _treasuryAddress;

        _mint(_treasuryAddress, TREASURY_AMOUNT);
        _mint(_migrationContract, MIGRATION_AMOUNT);
        
        emit KILTDeployed(_migrationContract, _treasuryAddress, TREASURY_AMOUNT, MIGRATION_AMOUNT);
    }

    function decimals() public pure override returns (uint8) {
        return 18;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_migrationContract","type":"address"},{"internalType":"address","name":"_treasuryAddress","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"},{"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":"migrationContract","type":"address"},{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"treasuryAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"migrationAmount","type":"uint256"}],"name":"KILTDeployed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MIGRATION_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREASURY_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"migrationContract","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":"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":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60c060405234801561000f575f80fd5b50604051611b3a380380611b3a833981810160405281019061003191906105da565b6040518060400160405280600d81526020017f4b494c542050726f746f636f6c000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b494c540000000000000000000000000000000000000000000000000000000081525081600390816100ac9190610852565b5080600490816100bc9190610852565b5050505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361012d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610124906109a1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361019b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019290610a2f565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505061021e816a0b3d3f67dc2e1df72800006102de60201b60201c565b61024f826a0b3d3f67dc2e1df72800006af0587929704607600000006102449190610a7a565b6102de60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f1322ec85eef5e68da1fcbde42a86516e3d63f8fc063e7dc07b9b47ffa475df506a0b3d3f67dc2e1df7280000806af0587929704607600000006102c19190610a7a565b6040516102cf929190610abc565b60405180910390a35050610b8c565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361034e575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016103459190610af2565b60405180910390fd5b61035f5f838361036360201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036103b3578060025f8282546103a79190610b0b565b92505081905550610481565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561043c578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161043393929190610b3e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036104c8578060025f8282540392505081905550610512565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161056f9190610b73565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6105a982610580565b9050919050565b6105b98161059f565b81146105c3575f80fd5b50565b5f815190506105d4816105b0565b92915050565b5f80604083850312156105f0576105ef61057c565b5b5f6105fd858286016105c6565b925050602061060e858286016105c6565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061069357607f821691505b6020821081036106a6576106a561064f565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026107087fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826106cd565b61071286836106cd565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61075661075161074c8461072a565b610733565b61072a565b9050919050565b5f819050919050565b61076f8361073c565b61078361077b8261075d565b8484546106d9565b825550505050565b5f90565b61079761078b565b6107a2818484610766565b505050565b5b818110156107c5576107ba5f8261078f565b6001810190506107a8565b5050565b601f82111561080a576107db816106ac565b6107e4846106be565b810160208510156107f3578190505b6108076107ff856106be565b8301826107a7565b50505b505050565b5f82821c905092915050565b5f61082a5f198460080261080f565b1980831691505092915050565b5f610842838361081b565b9150826002028217905092915050565b61085b82610618565b67ffffffffffffffff81111561087457610873610622565b5b61087e825461067c565b6108898282856107c9565b5f60209050601f8311600181146108ba575f84156108a8578287015190505b6108b28582610837565b865550610919565b601f1984166108c8866106ac565b5f5b828110156108ef578489015182556001820191506020850194506020810190506108ca565b8683101561090c5784890151610908601f89168261081b565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f4b494c543a204d6967726174696f6e20636f6e74726163742063616e6e6f74205f8201527f6265207a65726f20616464726573730000000000000000000000000000000000602082015250565b5f61098b602f83610921565b915061099682610931565b604082019050919050565b5f6020820190508181035f8301526109b88161097f565b9050919050565b7f4b494c543a20547265617375727920616464726573732063616e6e6f742062655f8201527f207a65726f206164647265737300000000000000000000000000000000000000602082015250565b5f610a19602d83610921565b9150610a24826109bf565b604082019050919050565b5f6020820190508181035f830152610a4681610a0d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610a848261072a565b9150610a8f8361072a565b9250828203905081811115610aa757610aa6610a4d565b5b92915050565b610ab68161072a565b82525050565b5f604082019050610acf5f830185610aad565b610adc6020830184610aad565b9392505050565b610aec8161059f565b82525050565b5f602082019050610b055f830184610ae3565b92915050565b5f610b158261072a565b9150610b208361072a565b9250828201905080821115610b3857610b37610a4d565b5b92915050565b5f606082019050610b515f830186610ae3565b610b5e6020830185610aad565b610b6b6040830184610aad565b949350505050565b5f602082019050610b865f830184610aad565b92915050565b60805160a051610f8d610bad5f395f61039e01525f61053b0152610f8d5ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b411461024e578063a9059cbb1461026c578063c5f956af1461029c578063dd62ed3e146102ba576100e8565b806370a08231146101e25780637fbd1b5a14610212578063902d55a514610230576100e8565b806318160ddd116100c657806318160ddd1461015857806323b872dd14610176578063313ce567146101a65780634dab0bf3146101c4576100e8565b806306fdde03146100ec578063095ea7b31461010a5780630fee1a201461013a575b5f80fd5b6100f46102ea565b6040516101019190610bd3565b60405180910390f35b610124600480360381019061011f9190610c84565b61037a565b6040516101319190610cdc565b60405180910390f35b61014261039c565b60405161014f9190610d04565b60405180910390f35b6101606103c0565b60405161016d9190610d2c565b60405180910390f35b610190600480360381019061018b9190610d45565b6103c9565b60405161019d9190610cdc565b60405180910390f35b6101ae6103f7565b6040516101bb9190610db0565b60405180910390f35b6101cc6103ff565b6040516101d99190610d2c565b60405180910390f35b6101fc60048036038101906101f79190610dc9565b610424565b6040516102099190610d2c565b60405180910390f35b61021a610469565b6040516102279190610d2c565b60405180910390f35b610238610478565b6040516102459190610d2c565b60405180910390f35b610256610487565b6040516102639190610bd3565b60405180910390f35b61028660048036038101906102819190610c84565b610517565b6040516102939190610cdc565b60405180910390f35b6102a4610539565b6040516102b19190610d04565b60405180910390f35b6102d460048036038101906102cf9190610df4565b61055d565b6040516102e19190610d2c565b60405180910390f35b6060600380546102f990610e5f565b80601f016020809104026020016040519081016040528092919081815260200182805461032590610e5f565b80156103705780601f1061034757610100808354040283529160200191610370565b820191905f5260205f20905b81548152906001019060200180831161035357829003601f168201915b5050505050905090565b5f806103846105df565b90506103918185856105e6565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b5f806103d36105df565b90506103e08582856105f8565b6103eb85858561068b565b60019150509392505050565b5f6012905090565b6a0b3d3f67dc2e1df72800006af0587929704607600000006104219190610ebc565b81565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6a0b3d3f67dc2e1df728000081565b6af05879297046076000000081565b60606004805461049690610e5f565b80601f01602080910402602001604051908101604052809291908181526020018280546104c290610e5f565b801561050d5780601f106104e45761010080835404028352916020019161050d565b820191905f5260205f20905b8154815290600101906020018083116104f057829003601f168201915b5050505050905090565b5f806105216105df565b905061052e81858561068b565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6105f3838383600161077b565b505050565b5f610603848461055d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110156106855781811015610676578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161066d93929190610eef565b60405180910390fd5b61068484848484035f61077b565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106fb575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106f29190610d04565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361076b575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107629190610d04565b60405180910390fd5b61077683838361094a565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036107eb575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016107e29190610d04565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361085b575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016108529190610d04565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610944578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161093b9190610d2c565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361099a578060025f82825461098e9190610f24565b92505081905550610a68565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a23578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610a1a93929190610eef565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aaf578060025f8282540392505081905550610af9565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b569190610d2c565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610ba582610b63565b610baf8185610b6d565b9350610bbf818560208601610b7d565b610bc881610b8b565b840191505092915050565b5f6020820190508181035f830152610beb8184610b9b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c2082610bf7565b9050919050565b610c3081610c16565b8114610c3a575f80fd5b50565b5f81359050610c4b81610c27565b92915050565b5f819050919050565b610c6381610c51565b8114610c6d575f80fd5b50565b5f81359050610c7e81610c5a565b92915050565b5f8060408385031215610c9a57610c99610bf3565b5b5f610ca785828601610c3d565b9250506020610cb885828601610c70565b9150509250929050565b5f8115159050919050565b610cd681610cc2565b82525050565b5f602082019050610cef5f830184610ccd565b92915050565b610cfe81610c16565b82525050565b5f602082019050610d175f830184610cf5565b92915050565b610d2681610c51565b82525050565b5f602082019050610d3f5f830184610d1d565b92915050565b5f805f60608486031215610d5c57610d5b610bf3565b5b5f610d6986828701610c3d565b9350506020610d7a86828701610c3d565b9250506040610d8b86828701610c70565b9150509250925092565b5f60ff82169050919050565b610daa81610d95565b82525050565b5f602082019050610dc35f830184610da1565b92915050565b5f60208284031215610dde57610ddd610bf3565b5b5f610deb84828501610c3d565b91505092915050565b5f8060408385031215610e0a57610e09610bf3565b5b5f610e1785828601610c3d565b9250506020610e2885828601610c3d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610e7657607f821691505b602082108103610e8957610e88610e32565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610ec682610c51565b9150610ed183610c51565b9250828203905081811115610ee957610ee8610e8f565b5b92915050565b5f606082019050610f025f830186610cf5565b610f0f6020830185610d1d565b610f1c6040830184610d1d565b949350505050565b5f610f2e82610c51565b9150610f3983610c51565b9250828201905080821115610f5157610f50610e8f565b5b9291505056fea2646970667358221220a851dd855f6fa6ff3157f458829e162eb416848e00af2a58ac8583b071b9f20864736f6c634300081a00330000000000000000000000004a62f30d95a8350fc682642a455b299c074b3b8c00000000000000000000000027fd6f738e8dc4677e8e2fdc9928a47d93ebcd9f

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b411461024e578063a9059cbb1461026c578063c5f956af1461029c578063dd62ed3e146102ba576100e8565b806370a08231146101e25780637fbd1b5a14610212578063902d55a514610230576100e8565b806318160ddd116100c657806318160ddd1461015857806323b872dd14610176578063313ce567146101a65780634dab0bf3146101c4576100e8565b806306fdde03146100ec578063095ea7b31461010a5780630fee1a201461013a575b5f80fd5b6100f46102ea565b6040516101019190610bd3565b60405180910390f35b610124600480360381019061011f9190610c84565b61037a565b6040516101319190610cdc565b60405180910390f35b61014261039c565b60405161014f9190610d04565b60405180910390f35b6101606103c0565b60405161016d9190610d2c565b60405180910390f35b610190600480360381019061018b9190610d45565b6103c9565b60405161019d9190610cdc565b60405180910390f35b6101ae6103f7565b6040516101bb9190610db0565b60405180910390f35b6101cc6103ff565b6040516101d99190610d2c565b60405180910390f35b6101fc60048036038101906101f79190610dc9565b610424565b6040516102099190610d2c565b60405180910390f35b61021a610469565b6040516102279190610d2c565b60405180910390f35b610238610478565b6040516102459190610d2c565b60405180910390f35b610256610487565b6040516102639190610bd3565b60405180910390f35b61028660048036038101906102819190610c84565b610517565b6040516102939190610cdc565b60405180910390f35b6102a4610539565b6040516102b19190610d04565b60405180910390f35b6102d460048036038101906102cf9190610df4565b61055d565b6040516102e19190610d2c565b60405180910390f35b6060600380546102f990610e5f565b80601f016020809104026020016040519081016040528092919081815260200182805461032590610e5f565b80156103705780601f1061034757610100808354040283529160200191610370565b820191905f5260205f20905b81548152906001019060200180831161035357829003601f168201915b5050505050905090565b5f806103846105df565b90506103918185856105e6565b600191505092915050565b7f0000000000000000000000004a62f30d95a8350fc682642a455b299c074b3b8c81565b5f600254905090565b5f806103d36105df565b90506103e08582856105f8565b6103eb85858561068b565b60019150509392505050565b5f6012905090565b6a0b3d3f67dc2e1df72800006af0587929704607600000006104219190610ebc565b81565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6a0b3d3f67dc2e1df728000081565b6af05879297046076000000081565b60606004805461049690610e5f565b80601f01602080910402602001604051908101604052809291908181526020018280546104c290610e5f565b801561050d5780601f106104e45761010080835404028352916020019161050d565b820191905f5260205f20905b8154815290600101906020018083116104f057829003601f168201915b5050505050905090565b5f806105216105df565b905061052e81858561068b565b600191505092915050565b7f00000000000000000000000027fd6f738e8dc4677e8e2fdc9928a47d93ebcd9f81565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6105f3838383600161077b565b505050565b5f610603848461055d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110156106855781811015610676578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161066d93929190610eef565b60405180910390fd5b61068484848484035f61077b565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106fb575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106f29190610d04565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361076b575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107629190610d04565b60405180910390fd5b61077683838361094a565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036107eb575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016107e29190610d04565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361085b575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016108529190610d04565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610944578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161093b9190610d2c565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361099a578060025f82825461098e9190610f24565b92505081905550610a68565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a23578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610a1a93929190610eef565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aaf578060025f8282540392505081905550610af9565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b569190610d2c565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610ba582610b63565b610baf8185610b6d565b9350610bbf818560208601610b7d565b610bc881610b8b565b840191505092915050565b5f6020820190508181035f830152610beb8184610b9b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c2082610bf7565b9050919050565b610c3081610c16565b8114610c3a575f80fd5b50565b5f81359050610c4b81610c27565b92915050565b5f819050919050565b610c6381610c51565b8114610c6d575f80fd5b50565b5f81359050610c7e81610c5a565b92915050565b5f8060408385031215610c9a57610c99610bf3565b5b5f610ca785828601610c3d565b9250506020610cb885828601610c70565b9150509250929050565b5f8115159050919050565b610cd681610cc2565b82525050565b5f602082019050610cef5f830184610ccd565b92915050565b610cfe81610c16565b82525050565b5f602082019050610d175f830184610cf5565b92915050565b610d2681610c51565b82525050565b5f602082019050610d3f5f830184610d1d565b92915050565b5f805f60608486031215610d5c57610d5b610bf3565b5b5f610d6986828701610c3d565b9350506020610d7a86828701610c3d565b9250506040610d8b86828701610c70565b9150509250925092565b5f60ff82169050919050565b610daa81610d95565b82525050565b5f602082019050610dc35f830184610da1565b92915050565b5f60208284031215610dde57610ddd610bf3565b5b5f610deb84828501610c3d565b91505092915050565b5f8060408385031215610e0a57610e09610bf3565b5b5f610e1785828601610c3d565b9250506020610e2885828601610c3d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610e7657607f821691505b602082108103610e8957610e88610e32565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610ec682610c51565b9150610ed183610c51565b9250828203905081811115610ee957610ee8610e8f565b5b92915050565b5f606082019050610f025f830186610cf5565b610f0f6020830185610d1d565b610f1c6040830184610d1d565b949350505050565b5f610f2e82610c51565b9150610f3983610c51565b9250828201905080821115610f5157610f50610e8f565b5b9291505056fea2646970667358221220a851dd855f6fa6ff3157f458829e162eb416848e00af2a58ac8583b071b9f20864736f6c634300081a0033

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

0000000000000000000000004a62f30d95a8350fc682642a455b299c074b3b8c00000000000000000000000027fd6f738e8dc4677e8e2fdc9928a47d93ebcd9f

-----Decoded View---------------
Arg [0] : _migrationContract (address): 0x4A62F30d95a8350Fc682642A455B299C074B3B8c
Arg [1] : _treasuryAddress (address): 0x27FD6f738E8DC4677e8E2fdC9928A47D93EbCD9F

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000004a62f30d95a8350fc682642a455b299c074b3b8c
Arg [1] : 00000000000000000000000027fd6f738e8dc4677e8e2fdc9928a47d93ebcd9f


Deployed Bytecode Sourcemap

22424:1230:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12985:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15278:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22505:42;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14087:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16078:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23566:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22622:73;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14249:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22554:61;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22702:59;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13195:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14572:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22454:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14817:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12985:91;13030:13;13063:5;13056:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12985:91;:::o;15278:190::-;15351:4;15368:13;15384:12;:10;:12::i;:::-;15368:28;;15407:31;15416:5;15423:7;15432:5;15407:8;:31::i;:::-;15456:4;15449:11;;;15278:190;;;;:::o;22505:42::-;;;:::o;14087:99::-;14139:7;14166:12;;14159:19;;14087:99;:::o;16078:249::-;16165:4;16182:15;16200:12;:10;:12::i;:::-;16182:30;;16223:37;16239:4;16245:7;16254:5;16223:15;:37::i;:::-;16271:26;16281:4;16287:2;16291:5;16271:9;:26::i;:::-;16315:4;16308:11;;;16078:249;;;;;:::o;23566:85::-;23616:5;23641:2;23634:9;;23566:85;:::o;22622:73::-;22596:19;22741:20;22665:30;;;;:::i;:::-;22622:73;:::o;14249:118::-;14314:7;14341:9;:18;14351:7;14341:18;;;;;;;;;;;;;;;;14334:25;;14249:118;;;:::o;22554:61::-;22596:19;22554:61;:::o;22702:59::-;22741:20;22702:59;:::o;13195:95::-;13242:13;13275:7;13268:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13195:95;:::o;14572:182::-;14641:4;14658:13;14674:12;:10;:12::i;:::-;14658:28;;14697:27;14707:5;14714:2;14718:5;14697:9;:27::i;:::-;14742:4;14735:11;;;14572:182;;;;:::o;22454:40::-;;;:::o;14817:142::-;14897:7;14924:11;:18;14936:5;14924:18;;;;;;;;;;;;;;;:27;14943:7;14924:27;;;;;;;;;;;;;;;;14917:34;;14817:142;;;;:::o;4304:98::-;4357:7;4384:10;4377:17;;4304:98;:::o;20137:130::-;20222:37;20231:5;20238:7;20247:5;20254:4;20222:8;:37::i;:::-;20137:130;;;:::o;21869:486::-;21969:24;21996:25;22006:5;22013:7;21996:9;:25::i;:::-;21969:52;;22055:17;22036:16;:36;22032:316;;;22112:5;22093:16;:24;22089:132;;;22172:7;22181:16;22199:5;22145:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22089:132;22264:57;22273:5;22280:7;22308:5;22289:16;:24;22315:5;22264:8;:57::i;:::-;22032:316;21958:397;21869:486;;;:::o;16712:308::-;16812:1;16796:18;;:4;:18;;;16792:88;;16865:1;16838:30;;;;;;;;;;;:::i;:::-;;;;;;;;16792:88;16908:1;16894:16;;:2;:16;;;16890:88;;16963:1;16934:32;;;;;;;;;;;:::i;:::-;;;;;;;;16890:88;16988:24;16996:4;17002:2;17006:5;16988:7;:24::i;:::-;16712:308;;;:::o;21134:443::-;21264:1;21247:19;;:5;:19;;;21243:91;;21319:1;21290:32;;;;;;;;;;;:::i;:::-;;;;;;;;21243:91;21367:1;21348:21;;:7;:21;;;21344:92;;21421:1;21393:31;;;;;;;;;;;:::i;:::-;;;;;;;;21344:92;21476:5;21446:11;:18;21458:5;21446:18;;;;;;;;;;;;;;;:27;21465:7;21446:27;;;;;;;;;;;;;;;:35;;;;21496:9;21492:78;;;21543:7;21527:31;;21536:5;21527:31;;;21552:5;21527:31;;;;;;:::i;:::-;;;;;;;;21492:78;21134:443;;;;:::o;17344:1135::-;17450:1;17434:18;;:4;:18;;;17430:552;;17588:5;17572:12;;:21;;;;;;;:::i;:::-;;;;;;;;17430:552;;;17626:19;17648:9;:15;17658:4;17648:15;;;;;;;;;;;;;;;;17626:37;;17696:5;17682:11;:19;17678:117;;;17754:4;17760:11;17773:5;17729:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17678:117;17950:5;17936:11;:19;17918:9;:15;17928:4;17918:15;;;;;;;;;;;;;;;:37;;;;17611:371;17430:552;18012:1;17998:16;;:2;:16;;;17994:435;;18180:5;18164:12;;:21;;;;;;;;;;;17994:435;;;18397:5;18380:9;:13;18390:2;18380:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;17994:435;18461:2;18446:25;;18455:4;18446:25;;;18465:5;18446:25;;;;;;:::i;:::-;;;;;;;;17344: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:118::-;3778:24;3796:5;3778:24;:::i;:::-;3773:3;3766:37;3691:118;;:::o;3815:222::-;3908:4;3946:2;3935:9;3931:18;3923:26;;3959:71;4027:1;4016:9;4012:17;4003:6;3959:71;:::i;:::-;3815:222;;;;:::o;4043:619::-;4120:6;4128;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:119;;;4191:79;;:::i;:::-;4153:119;4311:1;4336:53;4381:7;4372:6;4361:9;4357:22;4336:53;:::i;:::-;4326:63;;4282:117;4438:2;4464:53;4509:7;4500:6;4489:9;4485:22;4464:53;:::i;:::-;4454:63;;4409:118;4566:2;4592:53;4637:7;4628:6;4617:9;4613:22;4592:53;:::i;:::-;4582:63;;4537:118;4043:619;;;;;:::o;4668:86::-;4703:7;4743:4;4736:5;4732:16;4721:27;;4668:86;;;:::o;4760:112::-;4843:22;4859:5;4843:22;:::i;:::-;4838:3;4831:35;4760:112;;:::o;4878:214::-;4967:4;5005:2;4994:9;4990:18;4982:26;;5018:67;5082:1;5071:9;5067:17;5058:6;5018:67;:::i;:::-;4878:214;;;;:::o;5098:329::-;5157:6;5206:2;5194:9;5185:7;5181:23;5177:32;5174:119;;;5212:79;;:::i;:::-;5174:119;5332:1;5357:53;5402:7;5393:6;5382:9;5378:22;5357:53;:::i;:::-;5347:63;;5303:117;5098:329;;;;:::o;5433:474::-;5501:6;5509;5558:2;5546:9;5537:7;5533:23;5529:32;5526:119;;;5564:79;;:::i;:::-;5526:119;5684:1;5709:53;5754:7;5745:6;5734:9;5730:22;5709:53;:::i;:::-;5699:63;;5655:117;5811:2;5837:53;5882:7;5873:6;5862:9;5858:22;5837:53;:::i;:::-;5827:63;;5782:118;5433:474;;;;;:::o;5913:180::-;5961:77;5958:1;5951:88;6058:4;6055:1;6048:15;6082:4;6079:1;6072:15;6099:320;6143:6;6180:1;6174:4;6170:12;6160:22;;6227:1;6221:4;6217:12;6248:18;6238:81;;6304:4;6296:6;6292:17;6282:27;;6238:81;6366:2;6358:6;6355:14;6335:18;6332:38;6329:84;;6385:18;;:::i;:::-;6329:84;6150:269;6099:320;;;:::o;6425:180::-;6473:77;6470:1;6463:88;6570:4;6567:1;6560:15;6594:4;6591:1;6584:15;6611:194;6651:4;6671:20;6689:1;6671:20;:::i;:::-;6666:25;;6705:20;6723:1;6705:20;:::i;:::-;6700:25;;6749:1;6746;6742:9;6734:17;;6773:1;6767:4;6764:11;6761:37;;;6778:18;;:::i;:::-;6761:37;6611:194;;;;:::o;6811:442::-;6960:4;6998:2;6987:9;6983:18;6975:26;;7011:71;7079:1;7068:9;7064:17;7055:6;7011:71;:::i;:::-;7092:72;7160:2;7149:9;7145:18;7136:6;7092:72;:::i;:::-;7174;7242:2;7231:9;7227:18;7218:6;7174:72;:::i;:::-;6811:442;;;;;;:::o;7259:191::-;7299:3;7318:20;7336:1;7318:20;:::i;:::-;7313:25;;7352:20;7370:1;7352:20;:::i;:::-;7347:25;;7395:1;7392;7388:9;7381:16;;7416:3;7413:1;7410:10;7407:36;;;7423:18;;:::i;:::-;7407:36;7259:191;;;;:::o

Swarm Source

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