ETH Price: $3,004.25 (+2.39%)
 

Overview

Max Total Supply

388,000,000 SMHY

Holders

23

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
//xxx
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract Token is ERC20 {
    uint256 public constant FEE_PERCENT = 0;
    uint256 public cumulativeFeesPerToken;
    mapping(address => uint256) public lastCumulativeFeesPerToken;
    address public exceptionAddress;
    address[] public excludedAddresses;
    bool public airdropPhaseActive;
    address public liquidityPool;
    address public owner;

    event AirdropPhaseToggled(bool active);
    event LiquidityPoolSet(address pool);

    constructor(
        string memory name,
        string memory symbol,
        uint256 initialSupply,
        address _exceptionAddress,
        address[] memory _excludedAddresses
    ) ERC20(name, symbol) {
        _mint(msg.sender, initialSupply * 10 ** decimals());
        exceptionAddress = _exceptionAddress;
        excludedAddresses = _excludedAddresses;
        owner = msg.sender;
        airdropPhaseActive = false;
        emit AirdropPhaseToggled(false);
    }

    modifier onlyOwner() {
        require(msg.sender == owner, "Only owner can call this function");
        _;
    }

    function toggleAirdropPhase(bool active) public onlyOwner {
        airdropPhaseActive = active;
        emit AirdropPhaseToggled(active);
    }

    function setLiquidityPool(address pool) public onlyOwner {
        liquidityPool = pool;
        emit LiquidityPoolSet(pool);
    }

    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        bool isExcludedSender = isExcluded(_msgSender()) || _msgSender() == owner;
        require(!airdropPhaseActive || isExcludedSender, "Airdrop phase is active");

        uint256 fee = isExcluded(to) ? 0 : (amount * FEE_PERCENT) / 100;
        uint256 amountAfterFee = amount - fee;

        super.transfer(to, amountAfterFee);

        if (fee > 0 && totalSupply() > 0) {
            cumulativeFeesPerToken += (fee * 10 ** 18) / totalSupply();
        }

        return true;
    }

    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        bool isExcludedSender = isExcluded(from) || from == owner;
        require(!airdropPhaseActive || isExcludedSender, "Airdrop phase is active");

        uint256 fee = isExcluded(to) ? 0 : (amount * FEE_PERCENT) / 100;
        uint256 amountAfterFee = amount - fee;

        super.transferFrom(from, to, amountAfterFee);

        if (fee > 0 && totalSupply() > 0) {
            cumulativeFeesPerToken += (fee * 10 ** 18) / totalSupply();
        }

        return true;
    }

    function claim() public {
        address holder = _msgSender();
        uint256 balance = balanceOf(holder);
        require(balance > 0, "No tokens held");

        uint256 claimableFees = ((cumulativeFeesPerToken - lastCumulativeFeesPerToken[holder]) * balance) / 10 ** 18;
        require(claimableFees > 0, "No fees to claim");

        lastCumulativeFeesPerToken[holder] = cumulativeFeesPerToken;
        _transfer(address(this), holder, claimableFees);
    }

    function isExcluded(address account) internal view returns (bool) {
        if (account == exceptionAddress) return true;
        if (account == liquidityPool && liquidityPool != address(0)) return true;
        for (uint256 i = 0; i < excludedAddresses.length; i++) {
            if (excludedAddresses[i] == account) return true;
        }
        return false;
    }
}

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

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => 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 override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override 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 `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` 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 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

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

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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 v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` 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 amount) external returns (bool);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "paris",
  "metadata": {
    "bytecodeHash": "ipfs"
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"_exceptionAddress","type":"address"},{"internalType":"address[]","name":"_excludedAddresses","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"active","type":"bool"}],"name":"AirdropPhaseToggled","type":"event"},{"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":false,"internalType":"address","name":"pool","type":"address"}],"name":"LiquidityPoolSet","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":"FEE_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropPhaseActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cumulativeFeesPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exceptionAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"excludedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastCumulativeFeesPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"setLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"toggleAirdropPhase","outputs":[],"stateMutability":"nonpayable","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":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b506040516116c23803806116c283398101604081905261002f91610330565b8484600361003d83826104df565b50600461004a82826104df565b5050506100793361005f61010260201b60201c565b61006a90600a61069c565b61007490866106b2565b610107565b600780546001600160a01b0319166001600160a01b03841617905580516100a79060089060208401906101cf565b50600a80546001600160a01b031916331790556009805460ff19169055604051600081527fe1e05f8608a3aa686fa8e136a92a94b35d2971078f20ecacbf75e892a029a6389060200160405180910390a150505050506106dc565b601290565b6001600160a01b0382166101615760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825461017391906106c9565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b828054828255906000526020600020908101928215610224579160200282015b8281111561022457825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906101ef565b50610230929150610234565b5090565b5b808211156102305760008155600101610235565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561028757610287610249565b604052919050565b600082601f8301126102a057600080fd5b81516001600160401b038111156102b9576102b9610249565b6102cc601f8201601f191660200161025f565b8181528460208386010111156102e157600080fd5b60005b82811015610300576020818601810151838301820152016102e4565b506000918101602001919091529392505050565b80516001600160a01b038116811461032b57600080fd5b919050565b600080600080600060a0868803121561034857600080fd5b85516001600160401b0381111561035e57600080fd5b61036a8882890161028f565b602088015190965090506001600160401b0381111561038857600080fd5b6103948882890161028f565b945050604086015192506103aa60608701610314565b60808701519092506001600160401b038111156103c657600080fd5b8601601f810188136103d757600080fd5b80516001600160401b038111156103f0576103f0610249565b8060051b6104006020820161025f565b9182526020818401810192908101908b84111561041c57600080fd5b6020850194505b838510156104455761043485610314565b825260209485019490910190610423565b80955050505050509295509295909350565b600181811c9082168061046b57607f821691505b60208210810361048b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156101ca57806000526020600020601f840160051c810160208510156104b85750805b601f840160051c820191505b818110156104d857600081556001016104c4565b5050505050565b81516001600160401b038111156104f8576104f8610249565b61050c816105068454610457565b84610491565b6020601f82116001811461054057600083156105285750848201515b600019600385901b1c1916600184901b1784556104d8565b600084815260208120601f198516915b828110156105705787850151825560209485019460019092019101610550565b508482101561058e5786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6001815b60018411156105ee578085048111156105d2576105d261059d565b60018416156105e057908102905b60019390931c9280026105b7565b935093915050565b60008261060557506001610696565b8161061257506000610696565b816001811461062857600281146106325761064e565b6001915050610696565b60ff8411156106435761064361059d565b50506001821b610696565b5060208310610133831016604e8410600b8410161715610671575081810a610696565b61067e60001984846105b3565b80600019048211156106925761069261059d565b0290505b92915050565b60006106ab60ff8416836105f6565b9392505050565b80820281158282048414176106965761069661059d565b808201808211156106965761069661059d565b610fd7806106eb6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063665a11ca116100b857806395d89b411161007c57806395d89b41146102b8578063a457c2d7146102c0578063a9059cbb146102d3578063a9e7c0f4146102e6578063dd62ed3e146102f9578063eaf98d231461030c57600080fd5b8063665a11ca1461024857806370a08231146102605780637cff3fa8146102895780638da5cb5b1461029c57806393e7d445146102af57600080fd5b806323b872dd1161010a57806323b872dd146101d35780632f4c4678146101e6578063313ce56714610211578063395093511461022057806348d77917146102335780634e71d92d1461024057600080fd5b8063018770201461014757806306fdde031461015c5780630728002a1461017a578063095ea7b3146101a857806318160ddd146101cb575b600080fd5b61015a610155366004610d56565b610314565b005b6101646103a4565b6040516101719190610d78565b60405180910390f35b61019a610188366004610d56565b60066020526000908152604090205481565b604051908152602001610171565b6101bb6101b6366004610dc6565b610436565b6040519015158152602001610171565b60025461019a565b6101bb6101e1366004610df0565b610450565b6101f96101f4366004610e2d565b610576565b6040516001600160a01b039091168152602001610171565b60405160128152602001610171565b6101bb61022e366004610dc6565b6105a0565b6009546101bb9060ff1681565b61015a6105c2565b6009546101f99061010090046001600160a01b031681565b61019a61026e366004610d56565b6001600160a01b031660009081526020819052604090205490565b61015a610297366004610e46565b6106c7565b600a546101f9906001600160a01b031681565b61019a60055481565b610164610732565b6101bb6102ce366004610dc6565b610741565b6101bb6102e1366004610dc6565b6107c7565b6007546101f9906001600160a01b031681565b61019a610307366004610e68565b6108f1565b61019a600081565b600a546001600160a01b031633146103475760405162461bcd60e51b815260040161033e90610e9b565b60405180910390fd5b60098054610100600160a81b0319166101006001600160a01b038416908102919091179091556040519081527fe57f71636571365571c0eaeaeb54e1d9e0065804f056a57a2a29448524f7d18a906020015b60405180910390a150565b6060600380546103b390610edc565b80601f01602080910402602001604051908101604052809291908181526020018280546103df90610edc565b801561042c5780601f106104015761010080835404028352916020019161042c565b820191906000526020600020905b81548152906001019060200180831161040f57829003601f168201915b5050505050905090565b60003361044481858561091c565b60019150505b92915050565b60008061045c85610a40565b806104745750600a546001600160a01b038681169116145b60095490915060ff1615806104865750805b6104cc5760405162461bcd60e51b815260206004820152601760248201527641697264726f702070686173652069732061637469766560481b604482015260640161033e565b60006104d785610a40565b6104f75760646104e8600086610f2c565b6104f29190610f43565b6104fa565b60005b905060006105088286610f65565b9050610515878783610afd565b5060008211801561052e5750600061052c60025490565b115b156105695760025461054883670de0b6b3a7640000610f2c565b6105529190610f43565b600560008282546105639190610f78565b90915550505b5060019695505050505050565b6008818154811061058657600080fd5b6000918252602090912001546001600160a01b0316905081565b6000336104448185856105b383836108f1565b6105bd9190610f78565b61091c565b33600081815260208190526040902054806106105760405162461bcd60e51b815260206004820152600e60248201526d139bc81d1bdad95b9cc81a195b1960921b604482015260640161033e565b6001600160a01b038216600090815260066020526040812054600554670de0b6b3a76400009184916106429190610f65565b61064c9190610f2c565b6106569190610f43565b90506000811161069b5760405162461bcd60e51b815260206004820152601060248201526f4e6f206665657320746f20636c61696d60801b604482015260640161033e565b6005546001600160a01b0384166000908152600660205260409020556106c2308483610b12565b505050565b600a546001600160a01b031633146106f15760405162461bcd60e51b815260040161033e90610e9b565b6009805460ff19168215159081179091556040519081527fe1e05f8608a3aa686fa8e136a92a94b35d2971078f20ecacbf75e892a029a63890602001610399565b6060600480546103b390610edc565b6000338161074f82866108f1565b9050838110156107af5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161033e565b6107bc828686840361091c565b506001949350505050565b6000806107d333610a40565b806107f15750600a546001600160a01b0316336001600160a01b0316145b60095490915060ff1615806108035750805b6108495760405162461bcd60e51b815260206004820152601760248201527641697264726f702070686173652069732061637469766560481b604482015260640161033e565b600061085485610a40565b610874576064610865600086610f2c565b61086f9190610f43565b610877565b60005b905060006108858286610f65565b90506108918682610cb8565b506000821180156108aa575060006108a860025490565b115b156108e5576002546108c483670de0b6b3a7640000610f2c565b6108ce9190610f43565b600560008282546108df9190610f78565b90915550505b50600195945050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661097e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161033e565b6001600160a01b0382166109df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161033e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6007546000906001600160a01b0390811690831603610a6157506001919050565b6009546001600160a01b0383811661010090920416148015610a92575060095461010090046001600160a01b031615155b15610a9f57506001919050565b60005b600854811015610af457826001600160a01b031660088281548110610ac957610ac9610f8b565b6000918252602090912001546001600160a01b031603610aec5750600192915050565b600101610aa2565b50600092915050565b600033610b0b858285610cc6565b6107bc8585855b6001600160a01b038316610b765760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161033e565b6001600160a01b038216610bd85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161033e565b6001600160a01b03831660009081526020819052604090205481811015610c505760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161033e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b50505050565b600033610444818585610b12565b6000610cd284846108f1565b90506000198114610cb25781811015610d2d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161033e565b610cb2848484840361091c565b80356001600160a01b0381168114610d5157600080fd5b919050565b600060208284031215610d6857600080fd5b610d7182610d3a565b9392505050565b602081526000825180602084015260005b81811015610da65760208186018101516040868401015201610d89565b506000604082850101526040601f19601f83011684010191505092915050565b60008060408385031215610dd957600080fd5b610de283610d3a565b946020939093013593505050565b600080600060608486031215610e0557600080fd5b610e0e84610d3a565b9250610e1c60208501610d3a565b929592945050506040919091013590565b600060208284031215610e3f57600080fd5b5035919050565b600060208284031215610e5857600080fd5b81358015158114610d7157600080fd5b60008060408385031215610e7b57600080fd5b610e8483610d3a565b9150610e9260208401610d3a565b90509250929050565b60208082526021908201527f4f6e6c79206f776e65722063616e2063616c6c20746869732066756e6374696f6040820152603760f91b606082015260800190565b600181811c90821680610ef057607f821691505b602082108103610f1057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761044a5761044a610f16565b600082610f6057634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561044a5761044a610f16565b8082018082111561044a5761044a610f16565b634e487b7160e01b600052603260045260246000fdfea26469706673582212206b66aad14d5f554eb7bbebd3a613ba60aedf0bd926a45ce99b414edd123ce0cb64736f6c634300081c003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000017206900000000000000000000000000f9b713b692fdcba7e81bea062c1cb1b4cf2c77a00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000c536d6f6f636879536372697000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004534d48590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000002a6907df19a58956a15be8ab581fef024bc25569000000000000000000000000a49525ffe1b45af57924d583d8689cb99e488448000000000000000000000000962a7ea7b86ba5d71c0c41984cb1d8d059e21e6b000000000000000000000000fe96ade32d7407c8d8c8ef25ecc558cf4744934f0000000000000000000000009d3c725186fcc40202607cec135679b5e8be43b80000000000000000000000005a0311015f3a43cd48a61c07f4d190868f4e7c11000000000000000000000000d5ffa812f8de1b6851faffccccbd2f903638da8d000000000000000000000000edfb8a9f2008690113d9e850eb8d148e37ce8e5b0000000000000000000000003d30ce81c678c69c15586cc49fa099eb0ddbfe140000000000000000000000004254696d7ba52ed730d6396b35e78ef4961ed3dc00000000000000000000000070a508c552a6817bbfa660073968b5c66cb367640000000000000000000000003de53f6e7e3b992501574a387f4852e8d96015de0000000000000000000000008a47bf090a2e878627e1f7546858359f1952d1730000000000000000000000001143050d3d28d3c2d34bee8af65502db8f17b7850000000000000000000000000ff54e4214fbdb8082f97a5afbb957a82a31b036000000000000000000000000e0020a8100c509d75258cfe5ba30593561c69dbe000000000000000000000000682f39fc0f3c4c3a4f97966ee7c99e4855709619000000000000000000000000c16a62710b9e743d591474741a43e51044b01e1e000000000000000000000000c4dfec41d1c551d68fcf9693aa819539e0df1d4b00000000000000000000000014a3582c37a3647bb1d3f5827d3a2c54e60d0295

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063665a11ca116100b857806395d89b411161007c57806395d89b41146102b8578063a457c2d7146102c0578063a9059cbb146102d3578063a9e7c0f4146102e6578063dd62ed3e146102f9578063eaf98d231461030c57600080fd5b8063665a11ca1461024857806370a08231146102605780637cff3fa8146102895780638da5cb5b1461029c57806393e7d445146102af57600080fd5b806323b872dd1161010a57806323b872dd146101d35780632f4c4678146101e6578063313ce56714610211578063395093511461022057806348d77917146102335780634e71d92d1461024057600080fd5b8063018770201461014757806306fdde031461015c5780630728002a1461017a578063095ea7b3146101a857806318160ddd146101cb575b600080fd5b61015a610155366004610d56565b610314565b005b6101646103a4565b6040516101719190610d78565b60405180910390f35b61019a610188366004610d56565b60066020526000908152604090205481565b604051908152602001610171565b6101bb6101b6366004610dc6565b610436565b6040519015158152602001610171565b60025461019a565b6101bb6101e1366004610df0565b610450565b6101f96101f4366004610e2d565b610576565b6040516001600160a01b039091168152602001610171565b60405160128152602001610171565b6101bb61022e366004610dc6565b6105a0565b6009546101bb9060ff1681565b61015a6105c2565b6009546101f99061010090046001600160a01b031681565b61019a61026e366004610d56565b6001600160a01b031660009081526020819052604090205490565b61015a610297366004610e46565b6106c7565b600a546101f9906001600160a01b031681565b61019a60055481565b610164610732565b6101bb6102ce366004610dc6565b610741565b6101bb6102e1366004610dc6565b6107c7565b6007546101f9906001600160a01b031681565b61019a610307366004610e68565b6108f1565b61019a600081565b600a546001600160a01b031633146103475760405162461bcd60e51b815260040161033e90610e9b565b60405180910390fd5b60098054610100600160a81b0319166101006001600160a01b038416908102919091179091556040519081527fe57f71636571365571c0eaeaeb54e1d9e0065804f056a57a2a29448524f7d18a906020015b60405180910390a150565b6060600380546103b390610edc565b80601f01602080910402602001604051908101604052809291908181526020018280546103df90610edc565b801561042c5780601f106104015761010080835404028352916020019161042c565b820191906000526020600020905b81548152906001019060200180831161040f57829003601f168201915b5050505050905090565b60003361044481858561091c565b60019150505b92915050565b60008061045c85610a40565b806104745750600a546001600160a01b038681169116145b60095490915060ff1615806104865750805b6104cc5760405162461bcd60e51b815260206004820152601760248201527641697264726f702070686173652069732061637469766560481b604482015260640161033e565b60006104d785610a40565b6104f75760646104e8600086610f2c565b6104f29190610f43565b6104fa565b60005b905060006105088286610f65565b9050610515878783610afd565b5060008211801561052e5750600061052c60025490565b115b156105695760025461054883670de0b6b3a7640000610f2c565b6105529190610f43565b600560008282546105639190610f78565b90915550505b5060019695505050505050565b6008818154811061058657600080fd5b6000918252602090912001546001600160a01b0316905081565b6000336104448185856105b383836108f1565b6105bd9190610f78565b61091c565b33600081815260208190526040902054806106105760405162461bcd60e51b815260206004820152600e60248201526d139bc81d1bdad95b9cc81a195b1960921b604482015260640161033e565b6001600160a01b038216600090815260066020526040812054600554670de0b6b3a76400009184916106429190610f65565b61064c9190610f2c565b6106569190610f43565b90506000811161069b5760405162461bcd60e51b815260206004820152601060248201526f4e6f206665657320746f20636c61696d60801b604482015260640161033e565b6005546001600160a01b0384166000908152600660205260409020556106c2308483610b12565b505050565b600a546001600160a01b031633146106f15760405162461bcd60e51b815260040161033e90610e9b565b6009805460ff19168215159081179091556040519081527fe1e05f8608a3aa686fa8e136a92a94b35d2971078f20ecacbf75e892a029a63890602001610399565b6060600480546103b390610edc565b6000338161074f82866108f1565b9050838110156107af5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161033e565b6107bc828686840361091c565b506001949350505050565b6000806107d333610a40565b806107f15750600a546001600160a01b0316336001600160a01b0316145b60095490915060ff1615806108035750805b6108495760405162461bcd60e51b815260206004820152601760248201527641697264726f702070686173652069732061637469766560481b604482015260640161033e565b600061085485610a40565b610874576064610865600086610f2c565b61086f9190610f43565b610877565b60005b905060006108858286610f65565b90506108918682610cb8565b506000821180156108aa575060006108a860025490565b115b156108e5576002546108c483670de0b6b3a7640000610f2c565b6108ce9190610f43565b600560008282546108df9190610f78565b90915550505b50600195945050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661097e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161033e565b6001600160a01b0382166109df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161033e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6007546000906001600160a01b0390811690831603610a6157506001919050565b6009546001600160a01b0383811661010090920416148015610a92575060095461010090046001600160a01b031615155b15610a9f57506001919050565b60005b600854811015610af457826001600160a01b031660088281548110610ac957610ac9610f8b565b6000918252602090912001546001600160a01b031603610aec5750600192915050565b600101610aa2565b50600092915050565b600033610b0b858285610cc6565b6107bc8585855b6001600160a01b038316610b765760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161033e565b6001600160a01b038216610bd85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161033e565b6001600160a01b03831660009081526020819052604090205481811015610c505760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161033e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b50505050565b600033610444818585610b12565b6000610cd284846108f1565b90506000198114610cb25781811015610d2d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161033e565b610cb2848484840361091c565b80356001600160a01b0381168114610d5157600080fd5b919050565b600060208284031215610d6857600080fd5b610d7182610d3a565b9392505050565b602081526000825180602084015260005b81811015610da65760208186018101516040868401015201610d89565b506000604082850101526040601f19601f83011684010191505092915050565b60008060408385031215610dd957600080fd5b610de283610d3a565b946020939093013593505050565b600080600060608486031215610e0557600080fd5b610e0e84610d3a565b9250610e1c60208501610d3a565b929592945050506040919091013590565b600060208284031215610e3f57600080fd5b5035919050565b600060208284031215610e5857600080fd5b81358015158114610d7157600080fd5b60008060408385031215610e7b57600080fd5b610e8483610d3a565b9150610e9260208401610d3a565b90509250929050565b60208082526021908201527f4f6e6c79206f776e65722063616e2063616c6c20746869732066756e6374696f6040820152603760f91b606082015260800190565b600181811c90821680610ef057607f821691505b602082108103610f1057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761044a5761044a610f16565b600082610f6057634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561044a5761044a610f16565b8082018082111561044a5761044a610f16565b634e487b7160e01b600052603260045260246000fdfea26469706673582212206b66aad14d5f554eb7bbebd3a613ba60aedf0bd926a45ce99b414edd123ce0cb64736f6c634300081c0033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000017206900000000000000000000000000f9b713b692fdcba7e81bea062c1cb1b4cf2c77a00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000c536d6f6f636879536372697000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004534d48590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000002a6907df19a58956a15be8ab581fef024bc25569000000000000000000000000a49525ffe1b45af57924d583d8689cb99e488448000000000000000000000000962a7ea7b86ba5d71c0c41984cb1d8d059e21e6b000000000000000000000000fe96ade32d7407c8d8c8ef25ecc558cf4744934f0000000000000000000000009d3c725186fcc40202607cec135679b5e8be43b80000000000000000000000005a0311015f3a43cd48a61c07f4d190868f4e7c11000000000000000000000000d5ffa812f8de1b6851faffccccbd2f903638da8d000000000000000000000000edfb8a9f2008690113d9e850eb8d148e37ce8e5b0000000000000000000000003d30ce81c678c69c15586cc49fa099eb0ddbfe140000000000000000000000004254696d7ba52ed730d6396b35e78ef4961ed3dc00000000000000000000000070a508c552a6817bbfa660073968b5c66cb367640000000000000000000000003de53f6e7e3b992501574a387f4852e8d96015de0000000000000000000000008a47bf090a2e878627e1f7546858359f1952d1730000000000000000000000001143050d3d28d3c2d34bee8af65502db8f17b7850000000000000000000000000ff54e4214fbdb8082f97a5afbb957a82a31b036000000000000000000000000e0020a8100c509d75258cfe5ba30593561c69dbe000000000000000000000000682f39fc0f3c4c3a4f97966ee7c99e4855709619000000000000000000000000c16a62710b9e743d591474741a43e51044b01e1e000000000000000000000000c4dfec41d1c551d68fcf9693aa819539e0df1d4b00000000000000000000000014a3582c37a3647bb1d3f5827d3a2c54e60d0295

-----Decoded View---------------
Arg [0] : name (string): SmoochyScrip
Arg [1] : symbol (string): SMHY
Arg [2] : initialSupply (uint256): 388000000
Arg [3] : _exceptionAddress (address): 0xf9B713b692fdCba7E81bEA062c1Cb1B4Cf2c77a0
Arg [4] : _excludedAddresses (address[]): 0x2A6907df19A58956A15bE8AB581fEf024BC25569,0xa49525Ffe1B45af57924D583d8689cB99E488448,0x962a7eA7b86bA5d71c0c41984Cb1d8d059E21E6b,0xfE96aDE32d7407C8d8C8EF25eCc558Cf4744934f,0x9D3C725186fCc40202607ceC135679B5e8bE43B8,0x5a0311015F3a43cD48A61C07F4d190868f4e7C11,0xd5FfA812f8dE1B6851FAfFCCCCBd2f903638da8d,0xedFB8a9F2008690113d9E850Eb8d148E37Ce8E5B,0x3d30ce81C678C69C15586cC49FA099Eb0ddbfE14,0x4254696d7BA52Ed730d6396b35e78eF4961ed3dc,0x70a508c552A6817BBFA660073968b5c66cB36764,0x3De53F6E7e3B992501574a387F4852E8D96015dE,0x8a47bF090A2E878627e1F7546858359f1952D173,0x1143050D3D28D3c2D34BEe8af65502Db8f17B785,0x0Ff54e4214fBDB8082F97a5afBB957A82a31b036,0xe0020A8100c509d75258CFe5Ba30593561c69DbE,0x682f39Fc0F3c4c3a4f97966EE7C99e4855709619,0xC16a62710B9e743d591474741a43E51044B01e1e,0xC4DfEc41D1C551D68fCf9693AA819539E0dF1d4B,0x14a3582C37a3647bB1D3f5827D3A2C54E60d0295

-----Encoded View---------------
30 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000017206900
Arg [3] : 000000000000000000000000f9b713b692fdcba7e81bea062c1cb1b4cf2c77a0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [6] : 536d6f6f63687953637269700000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 534d485900000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [10] : 0000000000000000000000002a6907df19a58956a15be8ab581fef024bc25569
Arg [11] : 000000000000000000000000a49525ffe1b45af57924d583d8689cb99e488448
Arg [12] : 000000000000000000000000962a7ea7b86ba5d71c0c41984cb1d8d059e21e6b
Arg [13] : 000000000000000000000000fe96ade32d7407c8d8c8ef25ecc558cf4744934f
Arg [14] : 0000000000000000000000009d3c725186fcc40202607cec135679b5e8be43b8
Arg [15] : 0000000000000000000000005a0311015f3a43cd48a61c07f4d190868f4e7c11
Arg [16] : 000000000000000000000000d5ffa812f8de1b6851faffccccbd2f903638da8d
Arg [17] : 000000000000000000000000edfb8a9f2008690113d9e850eb8d148e37ce8e5b
Arg [18] : 0000000000000000000000003d30ce81c678c69c15586cc49fa099eb0ddbfe14
Arg [19] : 0000000000000000000000004254696d7ba52ed730d6396b35e78ef4961ed3dc
Arg [20] : 00000000000000000000000070a508c552a6817bbfa660073968b5c66cb36764
Arg [21] : 0000000000000000000000003de53f6e7e3b992501574a387f4852e8d96015de
Arg [22] : 0000000000000000000000008a47bf090a2e878627e1f7546858359f1952d173
Arg [23] : 0000000000000000000000001143050d3d28d3c2d34bee8af65502db8f17b785
Arg [24] : 0000000000000000000000000ff54e4214fbdb8082f97a5afbb957a82a31b036
Arg [25] : 000000000000000000000000e0020a8100c509d75258cfe5ba30593561c69dbe
Arg [26] : 000000000000000000000000682f39fc0f3c4c3a4f97966ee7c99e4855709619
Arg [27] : 000000000000000000000000c16a62710b9e743d591474741a43e51044b01e1e
Arg [28] : 000000000000000000000000c4dfec41d1c551d68fcf9693aa819539e0df1d4b
Arg [29] : 00000000000000000000000014a3582c37a3647bb1d3f5827d3a2c54e60d0295


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.