ETH Price: $2,004.79 (+3.01%)

Token

Vultisig Token (VULT)
 

Overview

Max Total Supply

100,000,000 VULT

Holders

4,009 (0.00%)

Transfers

-
57 ( -25.00%)

Market

Price

$0.21 @ 0.000104 ETH (-2.96%)

Onchain Market Cap

$20,795,700.00

Circulating Supply Market Cap

$20,791,687.00

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

Vultisig is multichain multasset crypto vault with agentic infrastructure.

Market

Volume (24H):$19,688.46
Market Capitalization:$20,791,687.00
Circulating Supply:100,000,000.00 VULT
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ERC20

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
No with 200 runs

Other Settings:
cancun EvmVersion
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

import {Token} from "../Token.sol";
import {ILaunchList} from "../interfaces/ILaunchList.sol";

/**
 * @title Extended token contract with launch list contract interactions
 * @notice During launch list period, `_beforeTokenTransfer` function will call `isTransactionAllowed` function of launch list contract
 * @notice If launch list period is ended, owner will set launch list contract address back to address(0) and tokens will be transferred freely
 */
contract ERC20 is Token {
    /// @notice launch list contract address
    address public _launchListContract;
    bool private _launchListRevoked = false;

    constructor(string memory name_, string memory ticker_) Token(name_, ticker_) {}

    /// @notice Returns current launch list contract address
    function launchListContract() external view returns (address) {
        return _launchListContract;
    }

    /// @notice Ownable function to revoke setting LaunchList
    function revokeSettingLaunchList() external onlyOwner {
        _launchListRevoked = true;
        _launchListContract = address(0);
    }

    /// @notice Ownable function to set new launch list contract address
    function setLaunchListContract(address newLaunchListContract) external onlyOwner {
        // Allow setting the launch list contract only if not revoked
        if (!_launchListRevoked) {
            _launchListContract = newLaunchListContract;
        }
    }

    /// @notice Before token transfer hook
    /// @dev It will call `isTransactionAllowed` function and if it's succsessful, it will transfer tokens, unless revert
    function _update(address from, address to, uint256 amount) internal override {
        require(to != address(this), "Cannot transfer to the token contract address");
        if (_launchListContract != address(0)) {
            require(
                ILaunchList(_launchListContract).isTransactionAllowed(from, to, amount),
                "Transaction not allowed by launch list"
            );
        }
        super._update(from, to, amount);
    }
}

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

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";

import {IERC1363} from "./interfaces/IERC1363.sol";
import {IERC1363Receiver} from "./interfaces/IERC1363Receiver.sol";
import {IERC1363Spender} from "./interfaces/IERC1363Spender.sol";

/**
 * @title Token with ERC1363 standard functions like approveAndCall, transferAndCall
 */
contract Token is ERC20, Ownable, IERC1363 {
    string private _name;
    string private _ticker;

    constructor(string memory name_, string memory ticker_) ERC20(name_, ticker_) Ownable(_msgSender()) {
        _mint(_msgSender(), 100_000_000 * 1e18);
        _name = name_;
        _ticker = ticker_;
    }

    function mint(uint256 amount) external onlyOwner {
        _mint(_msgSender(), amount);
    }

    /**
     * @dev Burns a specific amount of tokens.
     * @param amount The amount of token to be burned.
     */
    function burn(uint256 amount) external {
        _burn(_msgSender(), amount);
    }

    function setNameAndTicker(string calldata name_, string calldata ticker_) external onlyOwner {
        _name = name_;
        _ticker = ticker_;
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's allowance.
     * See {ERC20-_burn} and {ERC20-allowance}.
     */
    function burnFrom(address account, uint256 amount) external {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }

    function name() public view override(ERC20) returns (string memory) {
        return _name;
    }

    function symbol() public view override(ERC20) returns (string memory) {
        return _ticker;
    }

    /**
     * @inheritdoc IERC1363
     */
    function transferAndCall(address to, uint256 value) public virtual returns (bool) {
        return transferAndCall(to, value, "");
    }

    /**
     * @inheritdoc IERC1363
     */
    function transferAndCall(address to, uint256 value, bytes memory data) public virtual returns (bool) {
        if (!transfer(to, value)) {
            revert ERC1363TransferFailed(to, value);
        }
        _checkOnTransferReceived(_msgSender(), to, value, data);
        return true;
    }

    /**
     * @inheritdoc IERC1363
     */
    function transferFromAndCall(address from, address to, uint256 value) public virtual returns (bool) {
        return transferFromAndCall(from, to, value, "");
    }

    /**
     * @inheritdoc IERC1363
     */
    function transferFromAndCall(address from, address to, uint256 value, bytes memory data)
        public
        virtual
        returns (bool)
    {
        if (!transferFrom(from, to, value)) {
            revert ERC1363TransferFromFailed(from, to, value);
        }
        _checkOnTransferReceived(from, to, value, data);
        return true;
    }

    /**
     * @inheritdoc IERC1363
     */
    function approveAndCall(address spender, uint256 value) public virtual returns (bool) {
        return approveAndCall(spender, value, "");
    }

    /**
     * @inheritdoc IERC1363
     */
    function approveAndCall(address spender, uint256 value, bytes memory data) public virtual returns (bool) {
        if (!approve(spender, value)) {
            revert ERC1363ApproveFailed(spender, value);
        }
        _checkOnApprovalReceived(spender, value, data);
        return true;
    }

    /**
     * @dev Performs a call to `IERC1363Receiver::onTransferReceived` on a target address.
     * This will revert if the target doesn't implement the `IERC1363Receiver` interface or
     * if the target doesn't accept the token transfer or
     * if the target address is not a contract.
     *
     * @param from Address representing the previous owner of the given token amount.
     * @param to Target address that will receive the tokens.
     * @param value The amount of tokens to be transferred.
     * @param data Optional data to send along with the call.
     */
    function _checkOnTransferReceived(address from, address to, uint256 value, bytes memory data) private {
        if (to.code.length == 0) {
            revert ERC1363EOAReceiver(to);
        }

        try IERC1363Receiver(to).onTransferReceived(_msgSender(), from, value, data) returns (bytes4 retval) {
            if (retval != IERC1363Receiver.onTransferReceived.selector) {
                revert ERC1363InvalidReceiver(to);
            }
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert ERC1363InvalidReceiver(to);
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Performs a call to `IERC1363Spender::onApprovalReceived` on a target address.
     * This will revert if the target doesn't implement the `IERC1363Spender` interface or
     * if the target doesn't accept the token approval or
     * if the target address is not a contract.
     *
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     * @param data Optional data to send along with the call.
     */
    function _checkOnApprovalReceived(address spender, uint256 value, bytes memory data) private {
        if (spender.code.length == 0) {
            revert ERC1363EOASpender(spender);
        }

        try IERC1363Spender(spender).onApprovalReceived(_msgSender(), value, data) returns (bytes4 retval) {
            if (retval != IERC1363Spender.onApprovalReceived.selector) {
                revert ERC1363InvalidSpender(spender);
            }
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert ERC1363InvalidSpender(spender);
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }
}

pragma solidity ^0.8.28;

interface ILaunchList {
    function isTransactionAllowed(address from, address to, uint256 amount) external returns (bool);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @title IERC1363
 * @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].
 *
 * An extension interface for ERC-20 tokens that supports executing code on a recipient contract after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.
 */
interface IERC1363 {
    /**
     * @dev Indicates a failure with the token `receiver` as it can't be an EOA. Used in transfers.
     * @param receiver The address to which tokens are being transferred.
     */
    error ERC1363EOAReceiver(address receiver);

    /**
     * @dev Indicates a failure with the token `spender` as it can't be an EOA. Used in approvals.
     * @param spender The address which will spend the funds.
     */
    error ERC1363EOASpender(address spender);

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

    /**
     * @dev Indicates a failure with the token `spender`. Used in approvals.
     * @param spender The address which will spend the funds.
     */
    error ERC1363InvalidSpender(address spender);

    /**
     * @dev Indicates a failure with the ERC-20 `transfer` during a `transferAndCall` operation. Used in transfers.
     * @param receiver The address to which tokens are being transferred.
     * @param value The amount of tokens to be transferred.
     */
    error ERC1363TransferFailed(address receiver, uint256 value);

    /**
     * @dev Indicates a failure with the ERC-20 `transferFrom` during a `transferFromAndCall` operation. Used in transfers.
     * @param sender The address from which to send tokens.
     * @param receiver The address to which tokens are being transferred.
     * @param value The amount of tokens to be transferred.
     */
    error ERC1363TransferFromFailed(address sender, address receiver, uint256 value);

    /**
     * @dev Indicates a failure with the ERC-20 `approve` during a `approveAndCall` operation. Used in approvals.
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    error ERC1363ApproveFailed(address spender, uint256 value);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to` and then calls `IERC1363Receiver::onTransferReceived` on `to`.
     * @param to The address to which tokens are being transferred.
     * @param value The amount of tokens to be transferred.
     * @return A boolean value indicating the operation succeeded unless throwing.
     */
    function transferAndCall(address to, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to` and then calls `IERC1363Receiver::onTransferReceived` on `to`.
     * @param to The address to which tokens are being transferred.
     * @param value The amount of tokens to be transferred.
     * @param data Additional data with no specified format, sent in call to `to`.
     * @return A boolean value indicating the operation succeeded unless throwing.
     */
    function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism and then calls `IERC1363Receiver::onTransferReceived` on `to`.
     * @param from The address from which to send tokens.
     * @param to The address to which tokens are being transferred.
     * @param value The amount of tokens to be transferred.
     * @return A boolean value indicating the operation succeeded unless throwing.
     */
    function transferFromAndCall(address from, address to, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism and then calls `IERC1363Receiver::onTransferReceived` on `to`.
     * @param from The address from which to send tokens.
     * @param to The address to which tokens are being transferred.
     * @param value The amount of tokens to be transferred.
     * @param data Additional data with no specified format, sent in call to `to`.
     * @return A boolean value indicating the operation succeeded unless throwing.
     */
    function transferFromAndCall(address from, address to, uint256 value, bytes calldata data)
        external
        returns (bool);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the caller's tokens and then calls `IERC1363Spender::onApprovalReceived` on `spender`.
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     * @return A boolean value indicating the operation succeeded unless throwing.
     */
    function approveAndCall(address spender, uint256 value) external returns (bool);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the caller's tokens and then calls `IERC1363Spender::onApprovalReceived` on `spender`.
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     * @param data Additional data with no specified format, sent in call to `spender`.
     * @return A boolean value indicating the operation succeeded unless throwing.
     */
    function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool);
}

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

/**
 * @title IERC1363Receiver
 * @dev Interface for any contract that wants to support `transferAndCall` or `transferFromAndCall` from ERC-1363 token contracts.
 */
interface IERC1363Receiver {
    /**
     * @dev Whenever ERC-1363 tokens are transferred to this contract via `IERC1363::transferAndCall` or `IERC1363::transferFromAndCall` by `operator` from `from`, this function is called.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onTransferReceived(address,address,uint256,bytes)"))`
     * (i.e. 0x88a7ca5c, or its own function selector).
     *
     * @param operator The address which called `transferAndCall` or `transferFromAndCall` function.
     * @param from The address which are tokens transferred from.
     * @param value The amount of tokens transferred.
     * @param data Additional data with no specified format.
     * @return `bytes4(keccak256("onTransferReceived(address,address,uint256,bytes)"))` if transfer is allowed unless throwing.
     */
    function onTransferReceived(address operator, address from, uint256 value, bytes calldata data)
        external
        returns (bytes4);
}

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

/**
 * @title ERC1363Spender
 * @dev Interface for any contract that wants to support `approveAndCall` from ERC-1363 token contracts.
 */
interface IERC1363Spender {
    /**
     * @dev Whenever an ERC-1363 tokens `owner` approves this contract via `IERC1363::approveAndCall` to spend their tokens, this function is called.
     *
     * NOTE: To accept the approval, this must return
     * `bytes4(keccak256("onApprovalReceived(address,uint256,bytes)"))`
     * (i.e. 0x7b04a2d0, or its own function selector).
     *
     * @param owner The address which called `approveAndCall` function and previously owned the tokens.
     * @param value The amount of tokens to be spent.
     * @param data Additional data with no specified format.
     * @return `bytes4(keccak256("onApprovalReceived(address,uint256,bytes)"))` if approval is allowed unless throwing.
     */
    function onApprovalReceived(address owner, uint256 value, bytes calldata data) external returns (bytes4);
}

// SPDX-License-Identifier: MIT
// 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);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

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

// SPDX-License-Identifier: MIT
// 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;
    }
}

// SPDX-License-Identifier: MIT
// 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);
}

Settings
{
  "remappings": [
    "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
    "@layerzerolabs/=node_modules/@layerzerolabs/",
    "@openzeppelin-3/=node_modules/@openzeppelin-3/",
    "@uniswap/=node_modules/@uniswap/",
    "base64-sol/=node_modules/base64-sol/",
    "devtools/=lib/devtools/packages/toolbox-foundry/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "erc721a/=node_modules/erc721a/",
    "eth-gas-reporter/=node_modules/eth-gas-reporter/",
    "forge-std/=lib/forge-std/src/",
    "halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/",
    "hardhat-deploy/=node_modules/hardhat-deploy/",
    "hardhat/=node_modules/hardhat/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "solidity-bytes-utils/=lib/solidity-bytes-utils/contracts/"
  ],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "cancun",
  "viaIR": false,
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"ticker_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"ERC1363ApproveFailed","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC1363EOAReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC1363EOASpender","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC1363InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC1363InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"ERC1363TransferFailed","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"ERC1363TransferFromFailed","type":"error"},{"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":[],"name":"_launchListContract","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchListContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revokeSettingLaunchList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newLaunchListContract","type":"address"}],"name":"setLaunchListContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"ticker_","type":"string"}],"name":"setNameAndTicker","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferFromAndCall","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":"transferFromAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040525f600860146101000a81548160ff021916908315150217905550348015610029575f5ffd5b50604051613390380380613390833981810160405281019061004b91906107bb565b818161005b61015060201b60201c565b8282816003908161006c9190610a41565b50806004908161007c9190610a41565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100ef575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016100e69190610b4f565b60405180910390fd5b6100fe8161015760201b60201c565b5061012761011061015060201b60201c565b6a52b7d2dcc80cd2e400000061021a60201b60201c565b81600690816101369190610a41565b5080600790816101469190610a41565b5050505050610de6565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361028a575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016102819190610b4f565b60405180910390fd5b61029b5f838361029f60201b60201c565b5050565b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361030d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161030490610be8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461043f5760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fe01d0b78484846040518463ffffffff1660e01b81526004016103bf93929190610c15565b6020604051808303815f875af11580156103db573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103ff9190610c7f565b61043e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043590610d1a565b60405180910390fd5b5b61045083838361045560201b60201c565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036104a5578060025f8282546104999190610d65565b92505081905550610573565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561052e578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161052593929190610d98565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036105ba578060025f8282540392505081905550610604565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516106619190610dcd565b60405180910390a3505050565b5f604051905090565b5f5ffd5b5f5ffd5b5f5ffd5b5f5ffd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6106cd82610687565b810181811067ffffffffffffffff821117156106ec576106eb610697565b5b80604052505050565b5f6106fe61066e565b905061070a82826106c4565b919050565b5f67ffffffffffffffff82111561072957610728610697565b5b61073282610687565b9050602081019050919050565b8281835e5f83830152505050565b5f61075f61075a8461070f565b6106f5565b90508281526020810184848401111561077b5761077a610683565b5b61078684828561073f565b509392505050565b5f82601f8301126107a2576107a161067f565b5b81516107b284826020860161074d565b91505092915050565b5f5f604083850312156107d1576107d0610677565b5b5f83015167ffffffffffffffff8111156107ee576107ed61067b565b5b6107fa8582860161078e565b925050602083015167ffffffffffffffff81111561081b5761081a61067b565b5b6108278582860161078e565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061087f57607f821691505b6020821081036108925761089161083b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026108f47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826108b9565b6108fe86836108b9565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61094261093d61093884610916565b61091f565b610916565b9050919050565b5f819050919050565b61095b83610928565b61096f61096782610949565b8484546108c5565b825550505050565b5f5f905090565b610986610977565b610991818484610952565b505050565b5b818110156109b4576109a95f8261097e565b600181019050610997565b5050565b601f8211156109f9576109ca81610898565b6109d3846108aa565b810160208510156109e2578190505b6109f66109ee856108aa565b830182610996565b50505b505050565b5f82821c905092915050565b5f610a195f19846008026109fe565b1980831691505092915050565b5f610a318383610a0a565b9150826002028217905092915050565b610a4a82610831565b67ffffffffffffffff811115610a6357610a62610697565b5b610a6d8254610868565b610a788282856109b8565b5f60209050601f831160018114610aa9575f8415610a97578287015190505b610aa18582610a26565b865550610b08565b601f198416610ab786610898565b5f5b82811015610ade57848901518255600182019150602085019450602081019050610ab9565b86831015610afb5784890151610af7601f891682610a0a565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b3982610b10565b9050919050565b610b4981610b2f565b82525050565b5f602082019050610b625f830184610b40565b92915050565b5f82825260208201905092915050565b7f43616e6e6f74207472616e7366657220746f2074686520746f6b656e20636f6e5f8201527f7472616374206164647265737300000000000000000000000000000000000000602082015250565b5f610bd2602d83610b68565b9150610bdd82610b78565b604082019050919050565b5f6020820190508181035f830152610bff81610bc6565b9050919050565b610c0f81610916565b82525050565b5f606082019050610c285f830186610b40565b610c356020830185610b40565b610c426040830184610c06565b949350505050565b5f8115159050919050565b610c5e81610c4a565b8114610c68575f5ffd5b50565b5f81519050610c7981610c55565b92915050565b5f60208284031215610c9457610c93610677565b5b5f610ca184828501610c6b565b91505092915050565b7f5472616e73616374696f6e206e6f7420616c6c6f776564206279206c61756e635f8201527f68206c6973740000000000000000000000000000000000000000000000000000602082015250565b5f610d04602683610b68565b9150610d0f82610caa565b604082019050919050565b5f6020820190508181035f830152610d3181610cf8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610d6f82610916565b9150610d7a83610916565b9250828201905080821115610d9257610d91610d38565b5b92915050565b5f606082019050610dab5f830186610b40565b610db86020830185610c06565b610dc56040830184610c06565b949350505050565b5f602082019050610de05f830184610c06565b92915050565b61259d80610df35f395ff3fe608060405234801561000f575f5ffd5b506004361061018c575f3560e01c80638da5cb5b116100dc578063c1d34b8911610095578063d8fbe9941161006f578063d8fbe99414610494578063dd62ed3e146104c4578063e9ecd521146104f4578063f2fde38b146105125761018c565b8063c1d34b8914610418578063c388c16714610448578063cae9ca51146104645761018c565b80638da5cb5b1461036a5780638e6837db1461038857806395d89b4114610392578063a0712d68146103b0578063a9059cbb146103cc578063bd4fa2f4146103fc5761018c565b8063313ce5671161014957806342966c681161012357806342966c68146102f857806370a0823114610314578063715018a61461034457806379cc67901461034e5761018c565b8063313ce5671461027a5780633177029f146102985780634000aea0146102c85761018c565b806306fdde0314610190578063095ea7b3146101ae5780631296ee62146101de57806318160ddd1461020e57806323b872dd1461022c57806326b8561d1461025c575b5f5ffd5b61019861052e565b6040516101a5919061194f565b60405180910390f35b6101c860048036038101906101c39190611a0d565b6105be565b6040516101d59190611a65565b60405180910390f35b6101f860048036038101906101f39190611a0d565b6105e0565b6040516102059190611a65565b60405180910390f35b610216610602565b6040516102239190611a8d565b60405180910390f35b61024660048036038101906102419190611aa6565b61060b565b6040516102539190611a65565b60405180910390f35b610264610639565b6040516102719190611b05565b60405180910390f35b61028261065e565b60405161028f9190611b39565b60405180910390f35b6102b260048036038101906102ad9190611a0d565b610666565b6040516102bf9190611a65565b60405180910390f35b6102e260048036038101906102dd9190611c7e565b610688565b6040516102ef9190611a65565b60405180910390f35b610312600480360381019061030d9190611cea565b6106f4565b005b61032e60048036038101906103299190611d15565b610708565b60405161033b9190611a8d565b60405180910390f35b61034c61074d565b005b61036860048036038101906103639190611a0d565b610760565b005b610372610780565b60405161037f9190611b05565b60405180910390f35b6103906107a8565b005b61039a61080d565b6040516103a7919061194f565b60405180910390f35b6103ca60048036038101906103c59190611cea565b61089d565b005b6103e660048036038101906103e19190611a0d565b6108b9565b6040516103f39190611a65565b60405180910390f35b61041660048036038101906104119190611d15565b6108db565b005b610432600480360381019061042d9190611d40565b61093b565b60405161043f9190611a65565b60405180910390f35b610462600480360381019061045d9190611e1d565b6109a4565b005b61047e60048036038101906104799190611c7e565b6109d6565b60405161048b9190611a65565b60405180910390f35b6104ae60048036038101906104a99190611aa6565b610a3a565b6040516104bb9190611a65565b60405180910390f35b6104de60048036038101906104d99190611e9b565b610a5e565b6040516104eb9190611a8d565b60405180910390f35b6104fc610ae0565b6040516105099190611b05565b60405180910390f35b61052c60048036038101906105279190611d15565b610b08565b005b60606006805461053d90611f06565b80601f016020809104026020016040519081016040528092919081815260200182805461056990611f06565b80156105b45780601f1061058b576101008083540402835291602001916105b4565b820191905f5260205f20905b81548152906001019060200180831161059757829003601f168201915b5050505050905090565b5f5f6105c8610b8c565b90506105d5818585610b93565b600191505092915050565b5f6105fa838360405180602001604052805f815250610688565b905092915050565b5f600254905090565b5f5f610615610b8c565b9050610622858285610ba5565b61062d858585610c38565b60019150509392505050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f610680838360405180602001604052805f8152506109d6565b905092915050565b5f61069384846108b9565b6106d65783836040517f231b03ae0000000000000000000000000000000000000000000000000000000081526004016106cd929190611f36565b60405180910390fd5b6106e96106e1610b8c565b858585610d28565b600190509392505050565b6107056106ff610b8c565b82610f15565b50565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610755610f94565b61075e5f61101b565b565b6107728261076c610b8c565b83610ba5565b61077c8282610f15565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6107b0610f94565b6001600860146101000a81548160ff0219169083151502179055505f60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60606007805461081c90611f06565b80601f016020809104026020016040519081016040528092919081815260200182805461084890611f06565b80156108935780601f1061086a57610100808354040283529160200191610893565b820191905f5260205f20905b81548152906001019060200180831161087657829003601f168201915b5050505050905090565b6108a5610f94565b6108b66108b0610b8c565b826110de565b50565b5f5f6108c3610b8c565b90506108d0818585610c38565b600191505092915050565b6108e3610f94565b600860149054906101000a900460ff16610938578060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b5f61094785858561060b565b61098c578484846040517fb56855e600000000000000000000000000000000000000000000000000000000815260040161098393929190611f5d565b60405180910390fd5b61099885858585610d28565b60019050949350505050565b6109ac610f94565b8383600691826109bd92919061213c565b508181600791826109cf92919061213c565b5050505050565b5f6109e184846105be565b610a245783836040517f50e555c4000000000000000000000000000000000000000000000000000000008152600401610a1b929190611f36565b60405180910390fd5b610a2f84848461115d565b600190509392505050565b5f610a5584848460405180602001604052805f81525061093b565b90509392505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610b10610f94565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b80575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b779190611b05565b60405180910390fd5b610b898161101b565b50565b5f33905090565b610ba08383836001611347565b505050565b5f610bb08484610a5e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610c325781811015610c23578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c1a93929190612209565b60405180910390fd5b610c3184848484035f611347565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca8575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c9f9190611b05565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d18575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d0f9190611b05565b60405180910390fd5b610d23838383611516565b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b03610d8357826040517f14b41af4000000000000000000000000000000000000000000000000000000008152600401610d7a9190611b05565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166388a7ca5c610da7610b8c565b8685856040518563ffffffff1660e01b8152600401610dc99493929190612290565b6020604051808303815f875af1925050508015610e0457506040513d601f19601f82011682018060405250810190610e01919061232f565b60015b610e85573d805f8114610e32576040519150601f19603f3d011682016040523d82523d5f602084013e610e37565b606091505b505f815103610e7d57836040517f8a96cd9c000000000000000000000000000000000000000000000000000000008152600401610e749190611b05565b60405180910390fd5b805181602001fd5b6388a7ca5c60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614610f0e57836040517f8a96cd9c000000000000000000000000000000000000000000000000000000008152600401610f059190611b05565b60405180910390fd5b5050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f85575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f7c9190611b05565b60405180910390fd5b610f90825f83611516565b5050565b610f9c610b8c565b73ffffffffffffffffffffffffffffffffffffffff16610fba610780565b73ffffffffffffffffffffffffffffffffffffffff161461101957610fdd610b8c565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110109190611b05565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361114e575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016111459190611b05565b60405180910390fd5b6111595f8383611516565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b036111b857826040517f0778150c0000000000000000000000000000000000000000000000000000000081526004016111af9190611b05565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff16637b04a2d06111dc610b8c565b84846040518463ffffffff1660e01b81526004016111fc9392919061235a565b6020604051808303815f875af192505050801561123757506040513d601f19601f82011682018060405250810190611234919061232f565b60015b6112b8573d805f8114611265576040519150601f19603f3d011682016040523d82523d5f602084013e61126a565b606091505b505f8151036112b057836040517fdeb6d3ed0000000000000000000000000000000000000000000000000000000081526004016112a79190611b05565b60405180910390fd5b805181602001fd5b637b04a2d060e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461134157836040517fdeb6d3ed0000000000000000000000000000000000000000000000000000000081526004016113389190611b05565b60405180910390fd5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113b7575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016113ae9190611b05565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611427575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161141e9190611b05565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611510578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516115079190611a8d565b60405180910390a35b50505050565b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157b90612406565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116b65760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fe01d0b78484846040518463ffffffff1660e01b815260040161163693929190611f5d565b6020604051808303815f875af1158015611652573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611676919061244e565b6116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac906124e9565b60405180910390fd5b5b6116c18383836116c6565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611716578060025f82825461170a9190612534565b925050819055506117e4565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561179f578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161179693929190612209565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361182b578060025f8282540392505081905550611875565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118d29190611a8d565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611921826118df565b61192b81856118e9565b935061193b8185602086016118f9565b61194481611907565b840191505092915050565b5f6020820190508181035f8301526119678184611917565b905092915050565b5f604051905090565b5f5ffd5b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6119a982611980565b9050919050565b6119b98161199f565b81146119c3575f5ffd5b50565b5f813590506119d4816119b0565b92915050565b5f819050919050565b6119ec816119da565b81146119f6575f5ffd5b50565b5f81359050611a07816119e3565b92915050565b5f5f60408385031215611a2357611a22611978565b5b5f611a30858286016119c6565b9250506020611a41858286016119f9565b9150509250929050565b5f8115159050919050565b611a5f81611a4b565b82525050565b5f602082019050611a785f830184611a56565b92915050565b611a87816119da565b82525050565b5f602082019050611aa05f830184611a7e565b92915050565b5f5f5f60608486031215611abd57611abc611978565b5b5f611aca868287016119c6565b9350506020611adb868287016119c6565b9250506040611aec868287016119f9565b9150509250925092565b611aff8161199f565b82525050565b5f602082019050611b185f830184611af6565b92915050565b5f60ff82169050919050565b611b3381611b1e565b82525050565b5f602082019050611b4c5f830184611b2a565b92915050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611b9082611907565b810181811067ffffffffffffffff82111715611baf57611bae611b5a565b5b80604052505050565b5f611bc161196f565b9050611bcd8282611b87565b919050565b5f67ffffffffffffffff821115611bec57611beb611b5a565b5b611bf582611907565b9050602081019050919050565b828183375f83830152505050565b5f611c22611c1d84611bd2565b611bb8565b905082815260208101848484011115611c3e57611c3d611b56565b5b611c49848285611c02565b509392505050565b5f82601f830112611c6557611c64611b52565b5b8135611c75848260208601611c10565b91505092915050565b5f5f5f60608486031215611c9557611c94611978565b5b5f611ca2868287016119c6565b9350506020611cb3868287016119f9565b925050604084013567ffffffffffffffff811115611cd457611cd361197c565b5b611ce086828701611c51565b9150509250925092565b5f60208284031215611cff57611cfe611978565b5b5f611d0c848285016119f9565b91505092915050565b5f60208284031215611d2a57611d29611978565b5b5f611d37848285016119c6565b91505092915050565b5f5f5f5f60808587031215611d5857611d57611978565b5b5f611d65878288016119c6565b9450506020611d76878288016119c6565b9350506040611d87878288016119f9565b925050606085013567ffffffffffffffff811115611da857611da761197c565b5b611db487828801611c51565b91505092959194509250565b5f5ffd5b5f5ffd5b5f5f83601f840112611ddd57611ddc611b52565b5b8235905067ffffffffffffffff811115611dfa57611df9611dc0565b5b602083019150836001820283011115611e1657611e15611dc4565b5b9250929050565b5f5f5f5f60408587031215611e3557611e34611978565b5b5f85013567ffffffffffffffff811115611e5257611e5161197c565b5b611e5e87828801611dc8565b9450945050602085013567ffffffffffffffff811115611e8157611e8061197c565b5b611e8d87828801611dc8565b925092505092959194509250565b5f5f60408385031215611eb157611eb0611978565b5b5f611ebe858286016119c6565b9250506020611ecf858286016119c6565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f1d57607f821691505b602082108103611f3057611f2f611ed9565b5b50919050565b5f604082019050611f495f830185611af6565b611f566020830184611a7e565b9392505050565b5f606082019050611f705f830186611af6565b611f7d6020830185611af6565b611f8a6040830184611a7e565b949350505050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302611ff87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611fbd565b6120028683611fbd565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61203d612038612033846119da565b61201a565b6119da565b9050919050565b5f819050919050565b61205683612023565b61206a61206282612044565b848454611fc9565b825550505050565b5f5f905090565b612081612072565b61208c81848461204d565b505050565b5b818110156120af576120a45f82612079565b600181019050612092565b5050565b601f8211156120f4576120c581611f9c565b6120ce84611fae565b810160208510156120dd578190505b6120f16120e985611fae565b830182612091565b50505b505050565b5f82821c905092915050565b5f6121145f19846008026120f9565b1980831691505092915050565b5f61212c8383612105565b9150826002028217905092915050565b6121468383611f92565b67ffffffffffffffff81111561215f5761215e611b5a565b5b6121698254611f06565b6121748282856120b3565b5f601f8311600181146121a1575f841561218f578287013590505b6121998582612121565b865550612200565b601f1984166121af86611f9c565b5f5b828110156121d6578489013582556001820191506020850194506020810190506121b1565b868310156121f357848901356121ef601f891682612105565b8355505b6001600288020188555050505b50505050505050565b5f60608201905061221c5f830186611af6565b6122296020830185611a7e565b6122366040830184611a7e565b949350505050565b5f81519050919050565b5f82825260208201905092915050565b5f6122628261223e565b61226c8185612248565b935061227c8185602086016118f9565b61228581611907565b840191505092915050565b5f6080820190506122a35f830187611af6565b6122b06020830186611af6565b6122bd6040830185611a7e565b81810360608301526122cf8184612258565b905095945050505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61230e816122da565b8114612318575f5ffd5b50565b5f8151905061232981612305565b92915050565b5f6020828403121561234457612343611978565b5b5f6123518482850161231b565b91505092915050565b5f60608201905061236d5f830186611af6565b61237a6020830185611a7e565b818103604083015261238c8184612258565b9050949350505050565b7f43616e6e6f74207472616e7366657220746f2074686520746f6b656e20636f6e5f8201527f7472616374206164647265737300000000000000000000000000000000000000602082015250565b5f6123f0602d836118e9565b91506123fb82612396565b604082019050919050565b5f6020820190508181035f83015261241d816123e4565b9050919050565b61242d81611a4b565b8114612437575f5ffd5b50565b5f8151905061244881612424565b92915050565b5f6020828403121561246357612462611978565b5b5f6124708482850161243a565b91505092915050565b7f5472616e73616374696f6e206e6f7420616c6c6f776564206279206c61756e635f8201527f68206c6973740000000000000000000000000000000000000000000000000000602082015250565b5f6124d36026836118e9565b91506124de82612479565b604082019050919050565b5f6020820190508181035f830152612500816124c7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61253e826119da565b9150612549836119da565b925082820190508082111561256157612560612507565b5b9291505056fea2646970667358221220c4aff34e30d7699946bfbd93243b44fef940dc481c977deeec52e7982a9c8bca64736f6c634300081c003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e56756c746973696720546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000456554c5400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f5ffd5b506004361061018c575f3560e01c80638da5cb5b116100dc578063c1d34b8911610095578063d8fbe9941161006f578063d8fbe99414610494578063dd62ed3e146104c4578063e9ecd521146104f4578063f2fde38b146105125761018c565b8063c1d34b8914610418578063c388c16714610448578063cae9ca51146104645761018c565b80638da5cb5b1461036a5780638e6837db1461038857806395d89b4114610392578063a0712d68146103b0578063a9059cbb146103cc578063bd4fa2f4146103fc5761018c565b8063313ce5671161014957806342966c681161012357806342966c68146102f857806370a0823114610314578063715018a61461034457806379cc67901461034e5761018c565b8063313ce5671461027a5780633177029f146102985780634000aea0146102c85761018c565b806306fdde0314610190578063095ea7b3146101ae5780631296ee62146101de57806318160ddd1461020e57806323b872dd1461022c57806326b8561d1461025c575b5f5ffd5b61019861052e565b6040516101a5919061194f565b60405180910390f35b6101c860048036038101906101c39190611a0d565b6105be565b6040516101d59190611a65565b60405180910390f35b6101f860048036038101906101f39190611a0d565b6105e0565b6040516102059190611a65565b60405180910390f35b610216610602565b6040516102239190611a8d565b60405180910390f35b61024660048036038101906102419190611aa6565b61060b565b6040516102539190611a65565b60405180910390f35b610264610639565b6040516102719190611b05565b60405180910390f35b61028261065e565b60405161028f9190611b39565b60405180910390f35b6102b260048036038101906102ad9190611a0d565b610666565b6040516102bf9190611a65565b60405180910390f35b6102e260048036038101906102dd9190611c7e565b610688565b6040516102ef9190611a65565b60405180910390f35b610312600480360381019061030d9190611cea565b6106f4565b005b61032e60048036038101906103299190611d15565b610708565b60405161033b9190611a8d565b60405180910390f35b61034c61074d565b005b61036860048036038101906103639190611a0d565b610760565b005b610372610780565b60405161037f9190611b05565b60405180910390f35b6103906107a8565b005b61039a61080d565b6040516103a7919061194f565b60405180910390f35b6103ca60048036038101906103c59190611cea565b61089d565b005b6103e660048036038101906103e19190611a0d565b6108b9565b6040516103f39190611a65565b60405180910390f35b61041660048036038101906104119190611d15565b6108db565b005b610432600480360381019061042d9190611d40565b61093b565b60405161043f9190611a65565b60405180910390f35b610462600480360381019061045d9190611e1d565b6109a4565b005b61047e60048036038101906104799190611c7e565b6109d6565b60405161048b9190611a65565b60405180910390f35b6104ae60048036038101906104a99190611aa6565b610a3a565b6040516104bb9190611a65565b60405180910390f35b6104de60048036038101906104d99190611e9b565b610a5e565b6040516104eb9190611a8d565b60405180910390f35b6104fc610ae0565b6040516105099190611b05565b60405180910390f35b61052c60048036038101906105279190611d15565b610b08565b005b60606006805461053d90611f06565b80601f016020809104026020016040519081016040528092919081815260200182805461056990611f06565b80156105b45780601f1061058b576101008083540402835291602001916105b4565b820191905f5260205f20905b81548152906001019060200180831161059757829003601f168201915b5050505050905090565b5f5f6105c8610b8c565b90506105d5818585610b93565b600191505092915050565b5f6105fa838360405180602001604052805f815250610688565b905092915050565b5f600254905090565b5f5f610615610b8c565b9050610622858285610ba5565b61062d858585610c38565b60019150509392505050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f610680838360405180602001604052805f8152506109d6565b905092915050565b5f61069384846108b9565b6106d65783836040517f231b03ae0000000000000000000000000000000000000000000000000000000081526004016106cd929190611f36565b60405180910390fd5b6106e96106e1610b8c565b858585610d28565b600190509392505050565b6107056106ff610b8c565b82610f15565b50565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610755610f94565b61075e5f61101b565b565b6107728261076c610b8c565b83610ba5565b61077c8282610f15565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6107b0610f94565b6001600860146101000a81548160ff0219169083151502179055505f60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60606007805461081c90611f06565b80601f016020809104026020016040519081016040528092919081815260200182805461084890611f06565b80156108935780601f1061086a57610100808354040283529160200191610893565b820191905f5260205f20905b81548152906001019060200180831161087657829003601f168201915b5050505050905090565b6108a5610f94565b6108b66108b0610b8c565b826110de565b50565b5f5f6108c3610b8c565b90506108d0818585610c38565b600191505092915050565b6108e3610f94565b600860149054906101000a900460ff16610938578060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b5f61094785858561060b565b61098c578484846040517fb56855e600000000000000000000000000000000000000000000000000000000815260040161098393929190611f5d565b60405180910390fd5b61099885858585610d28565b60019050949350505050565b6109ac610f94565b8383600691826109bd92919061213c565b508181600791826109cf92919061213c565b5050505050565b5f6109e184846105be565b610a245783836040517f50e555c4000000000000000000000000000000000000000000000000000000008152600401610a1b929190611f36565b60405180910390fd5b610a2f84848461115d565b600190509392505050565b5f610a5584848460405180602001604052805f81525061093b565b90509392505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610b10610f94565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b80575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b779190611b05565b60405180910390fd5b610b898161101b565b50565b5f33905090565b610ba08383836001611347565b505050565b5f610bb08484610a5e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610c325781811015610c23578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c1a93929190612209565b60405180910390fd5b610c3184848484035f611347565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca8575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c9f9190611b05565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d18575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d0f9190611b05565b60405180910390fd5b610d23838383611516565b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b03610d8357826040517f14b41af4000000000000000000000000000000000000000000000000000000008152600401610d7a9190611b05565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166388a7ca5c610da7610b8c565b8685856040518563ffffffff1660e01b8152600401610dc99493929190612290565b6020604051808303815f875af1925050508015610e0457506040513d601f19601f82011682018060405250810190610e01919061232f565b60015b610e85573d805f8114610e32576040519150601f19603f3d011682016040523d82523d5f602084013e610e37565b606091505b505f815103610e7d57836040517f8a96cd9c000000000000000000000000000000000000000000000000000000008152600401610e749190611b05565b60405180910390fd5b805181602001fd5b6388a7ca5c60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614610f0e57836040517f8a96cd9c000000000000000000000000000000000000000000000000000000008152600401610f059190611b05565b60405180910390fd5b5050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f85575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f7c9190611b05565b60405180910390fd5b610f90825f83611516565b5050565b610f9c610b8c565b73ffffffffffffffffffffffffffffffffffffffff16610fba610780565b73ffffffffffffffffffffffffffffffffffffffff161461101957610fdd610b8c565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110109190611b05565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361114e575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016111459190611b05565b60405180910390fd5b6111595f8383611516565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b036111b857826040517f0778150c0000000000000000000000000000000000000000000000000000000081526004016111af9190611b05565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff16637b04a2d06111dc610b8c565b84846040518463ffffffff1660e01b81526004016111fc9392919061235a565b6020604051808303815f875af192505050801561123757506040513d601f19601f82011682018060405250810190611234919061232f565b60015b6112b8573d805f8114611265576040519150601f19603f3d011682016040523d82523d5f602084013e61126a565b606091505b505f8151036112b057836040517fdeb6d3ed0000000000000000000000000000000000000000000000000000000081526004016112a79190611b05565b60405180910390fd5b805181602001fd5b637b04a2d060e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461134157836040517fdeb6d3ed0000000000000000000000000000000000000000000000000000000081526004016113389190611b05565b60405180910390fd5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113b7575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016113ae9190611b05565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611427575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161141e9190611b05565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611510578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516115079190611a8d565b60405180910390a35b50505050565b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157b90612406565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116b65760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fe01d0b78484846040518463ffffffff1660e01b815260040161163693929190611f5d565b6020604051808303815f875af1158015611652573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611676919061244e565b6116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac906124e9565b60405180910390fd5b5b6116c18383836116c6565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611716578060025f82825461170a9190612534565b925050819055506117e4565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561179f578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161179693929190612209565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361182b578060025f8282540392505081905550611875565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118d29190611a8d565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611921826118df565b61192b81856118e9565b935061193b8185602086016118f9565b61194481611907565b840191505092915050565b5f6020820190508181035f8301526119678184611917565b905092915050565b5f604051905090565b5f5ffd5b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6119a982611980565b9050919050565b6119b98161199f565b81146119c3575f5ffd5b50565b5f813590506119d4816119b0565b92915050565b5f819050919050565b6119ec816119da565b81146119f6575f5ffd5b50565b5f81359050611a07816119e3565b92915050565b5f5f60408385031215611a2357611a22611978565b5b5f611a30858286016119c6565b9250506020611a41858286016119f9565b9150509250929050565b5f8115159050919050565b611a5f81611a4b565b82525050565b5f602082019050611a785f830184611a56565b92915050565b611a87816119da565b82525050565b5f602082019050611aa05f830184611a7e565b92915050565b5f5f5f60608486031215611abd57611abc611978565b5b5f611aca868287016119c6565b9350506020611adb868287016119c6565b9250506040611aec868287016119f9565b9150509250925092565b611aff8161199f565b82525050565b5f602082019050611b185f830184611af6565b92915050565b5f60ff82169050919050565b611b3381611b1e565b82525050565b5f602082019050611b4c5f830184611b2a565b92915050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611b9082611907565b810181811067ffffffffffffffff82111715611baf57611bae611b5a565b5b80604052505050565b5f611bc161196f565b9050611bcd8282611b87565b919050565b5f67ffffffffffffffff821115611bec57611beb611b5a565b5b611bf582611907565b9050602081019050919050565b828183375f83830152505050565b5f611c22611c1d84611bd2565b611bb8565b905082815260208101848484011115611c3e57611c3d611b56565b5b611c49848285611c02565b509392505050565b5f82601f830112611c6557611c64611b52565b5b8135611c75848260208601611c10565b91505092915050565b5f5f5f60608486031215611c9557611c94611978565b5b5f611ca2868287016119c6565b9350506020611cb3868287016119f9565b925050604084013567ffffffffffffffff811115611cd457611cd361197c565b5b611ce086828701611c51565b9150509250925092565b5f60208284031215611cff57611cfe611978565b5b5f611d0c848285016119f9565b91505092915050565b5f60208284031215611d2a57611d29611978565b5b5f611d37848285016119c6565b91505092915050565b5f5f5f5f60808587031215611d5857611d57611978565b5b5f611d65878288016119c6565b9450506020611d76878288016119c6565b9350506040611d87878288016119f9565b925050606085013567ffffffffffffffff811115611da857611da761197c565b5b611db487828801611c51565b91505092959194509250565b5f5ffd5b5f5ffd5b5f5f83601f840112611ddd57611ddc611b52565b5b8235905067ffffffffffffffff811115611dfa57611df9611dc0565b5b602083019150836001820283011115611e1657611e15611dc4565b5b9250929050565b5f5f5f5f60408587031215611e3557611e34611978565b5b5f85013567ffffffffffffffff811115611e5257611e5161197c565b5b611e5e87828801611dc8565b9450945050602085013567ffffffffffffffff811115611e8157611e8061197c565b5b611e8d87828801611dc8565b925092505092959194509250565b5f5f60408385031215611eb157611eb0611978565b5b5f611ebe858286016119c6565b9250506020611ecf858286016119c6565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f1d57607f821691505b602082108103611f3057611f2f611ed9565b5b50919050565b5f604082019050611f495f830185611af6565b611f566020830184611a7e565b9392505050565b5f606082019050611f705f830186611af6565b611f7d6020830185611af6565b611f8a6040830184611a7e565b949350505050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302611ff87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611fbd565b6120028683611fbd565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61203d612038612033846119da565b61201a565b6119da565b9050919050565b5f819050919050565b61205683612023565b61206a61206282612044565b848454611fc9565b825550505050565b5f5f905090565b612081612072565b61208c81848461204d565b505050565b5b818110156120af576120a45f82612079565b600181019050612092565b5050565b601f8211156120f4576120c581611f9c565b6120ce84611fae565b810160208510156120dd578190505b6120f16120e985611fae565b830182612091565b50505b505050565b5f82821c905092915050565b5f6121145f19846008026120f9565b1980831691505092915050565b5f61212c8383612105565b9150826002028217905092915050565b6121468383611f92565b67ffffffffffffffff81111561215f5761215e611b5a565b5b6121698254611f06565b6121748282856120b3565b5f601f8311600181146121a1575f841561218f578287013590505b6121998582612121565b865550612200565b601f1984166121af86611f9c565b5f5b828110156121d6578489013582556001820191506020850194506020810190506121b1565b868310156121f357848901356121ef601f891682612105565b8355505b6001600288020188555050505b50505050505050565b5f60608201905061221c5f830186611af6565b6122296020830185611a7e565b6122366040830184611a7e565b949350505050565b5f81519050919050565b5f82825260208201905092915050565b5f6122628261223e565b61226c8185612248565b935061227c8185602086016118f9565b61228581611907565b840191505092915050565b5f6080820190506122a35f830187611af6565b6122b06020830186611af6565b6122bd6040830185611a7e565b81810360608301526122cf8184612258565b905095945050505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61230e816122da565b8114612318575f5ffd5b50565b5f8151905061232981612305565b92915050565b5f6020828403121561234457612343611978565b5b5f6123518482850161231b565b91505092915050565b5f60608201905061236d5f830186611af6565b61237a6020830185611a7e565b818103604083015261238c8184612258565b9050949350505050565b7f43616e6e6f74207472616e7366657220746f2074686520746f6b656e20636f6e5f8201527f7472616374206164647265737300000000000000000000000000000000000000602082015250565b5f6123f0602d836118e9565b91506123fb82612396565b604082019050919050565b5f6020820190508181035f83015261241d816123e4565b9050919050565b61242d81611a4b565b8114612437575f5ffd5b50565b5f8151905061244881612424565b92915050565b5f6020828403121561246357612462611978565b5b5f6124708482850161243a565b91505092915050565b7f5472616e73616374696f6e206e6f7420616c6c6f776564206279206c61756e635f8201527f68206c6973740000000000000000000000000000000000000000000000000000602082015250565b5f6124d36026836118e9565b91506124de82612479565b604082019050919050565b5f6020820190508181035f830152612500816124c7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61253e826119da565b9150612549836119da565b925082820190508082111561256157612560612507565b5b9291505056fea2646970667358221220c4aff34e30d7699946bfbd93243b44fef940dc481c977deeec52e7982a9c8bca64736f6c634300081c0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e56756c746973696720546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000456554c5400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Vultisig Token
Arg [1] : ticker_ (string): VULT

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 56756c746973696720546f6b656e000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 56554c5400000000000000000000000000000000000000000000000000000000


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.