ETH Price: $2,536.15 (-7.21%)

Token

sSPARTA (sSPARTA)

Overview

Max Total Supply

6,507,495.930870741612761014 sSPARTA

Holders

5,122

Transfers

-
0

Market

Price

$0.00 @ 0.000000 ETH

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

Contract Source Code Verified (Exact Match)

Contract Name:
StakedSparta

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
//SPDX-License-Identifier: Unlicense
pragma solidity 0.8.18;

import {IAccessControlHolder, IAccessControl} from "../IAccessControlHolder.sol";
import {IStakedSparta} from "./interfaces/IStakedSparta.sol";

import {ERC20, IERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract StakedSparta is IAccessControlHolder, IStakedSparta, ERC20 {
    IAccessControl public immutable override acl;

    error OperationNotAllowed();

    constructor(IAccessControl _acl) ERC20("sSPARTA", "sSPARTA") {
        acl = _acl;
    }

    bytes32 public constant STAKED_SPARTA_MINTER =
        keccak256("STAKED_SPARTA_MINTER");

    function transferFrom(
        address,
        address,
        uint256
    ) public virtual override(IERC20, ERC20) returns (bool) {
        revert OperationNotAllowed();
    }

    function transfer(
        address,
        uint256
    ) public virtual override(IERC20, ERC20) returns (bool) {
        revert OperationNotAllowed();
    }

    function approve(
        address spender,
        uint256 amount
    ) public virtual override(IERC20, ERC20) returns (bool) {
        if (!acl.hasRole(STAKED_SPARTA_MINTER, spender)) {
            revert OperationNotAllowed();
        }

        _approve(msg.sender, spender, amount);
        return true;
    }

    function mintTo(
        address to,
        uint256 amount
    ) external override onlyStakedSpartaMinterRoleAccess {
        _mint(to, amount);
    }

    function burnFrom(
        address wallet,
        uint256 amount
    ) external override onlyStakedSpartaMinterRoleAccess {
        _spendAllowance(wallet, msg.sender, amount);
        _burn(wallet, amount);
    }

    modifier onlyStakedSpartaMinterRoleAccess() {
        if (!acl.hasRole(STAKED_SPARTA_MINTER, msg.sender)) {
            revert OperationNotAllowed();
        }
        _;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

// 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 v4.4.1 (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;
    }
}

File 7 of 8 : IAccessControlHolder.sol
//SPDX-License-Identifier: Unlicense
pragma solidity 0.8.18;

import {IAccessControl} from "@openzeppelin/contracts/access/IAccessControl.sol";

/**
 * @title IAccessControlHolder
 * @notice Interface created to store reference to the access control.
 */
interface IAccessControlHolder {
    /**
     * @notice Function returns reference to IAccessControl.
     * @return IAccessControl reference to access control.
     */
    function acl() external view returns (IAccessControl);
}

//SPDX-License-Identifier: Unlicense
pragma solidity 0.8.18;

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

interface IStakedSparta is IERC20 {
    function mintTo(address to, uint256 amount) external;

    function burnFrom(address wallet, uint256 amount) external;
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"contract IAccessControl","name":"_acl","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"OperationNotAllowed","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":"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":"STAKED_SPARTA_MINTER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acl","outputs":[{"internalType":"contract IAccessControl","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":"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":[{"internalType":"address","name":"wallet","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":[{"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":[{"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b5060405162001d4a38038062001d4a833981810160405281019062000037919062000182565b6040518060400160405280600781526020017f73535041525441000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f73535041525441000000000000000000000000000000000000000000000000008152508160039081620000b491906200042e565b508060049081620000c691906200042e565b5050508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250505062000515565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620001368262000109565b9050919050565b60006200014a8262000129565b9050919050565b6200015c816200013d565b81146200016857600080fd5b50565b6000815190506200017c8162000151565b92915050565b6000602082840312156200019b576200019a62000104565b5b6000620001ab848285016200016b565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200023657607f821691505b6020821081036200024c576200024b620001ee565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002b67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000277565b620002c2868362000277565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200030f620003096200030384620002da565b620002e4565b620002da565b9050919050565b6000819050919050565b6200032b83620002ee565b620003436200033a8262000316565b84845462000284565b825550505050565b600090565b6200035a6200034b565b6200036781848462000320565b505050565b5b818110156200038f576200038360008262000350565b6001810190506200036d565b5050565b601f821115620003de57620003a88162000252565b620003b38462000267565b81016020851015620003c3578190505b620003db620003d28562000267565b8301826200036c565b50505b505050565b600082821c905092915050565b60006200040360001984600802620003e3565b1980831691505092915050565b60006200041e8383620003f0565b9150826002028217905092915050565b6200043982620001b4565b67ffffffffffffffff811115620004555762000454620001bf565b5b6200046182546200021d565b6200046e82828562000393565b600060209050601f831160018114620004a6576000841562000491578287015190505b6200049d858262000410565b8655506200050d565b601f198416620004b68662000252565b60005b82811015620004e057848901518255600182019150602085019450602081019050620004b9565b86831015620005005784890151620004fc601f891682620003f0565b8355505b6001600288020188555050505b505050505050565b60805161180462000546600039600081816103cc0152818161055101528181610699015261098c01526118046000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a9059cbb11610066578063a9059cbb1461029a578063af0ac64e146102ca578063dd62ed3e146102e8578063de28735914610318576100f5565b806370a082311461020057806379cc67901461023057806395d89b411461024c578063a457c2d71461026a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b4578063449a52f8146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610336565b60405161010f9190610fc8565b60405180910390f35b610132600480360381019061012d9190611083565b6103c8565b60405161013f91906110de565b60405180910390f35b6101506104d1565b60405161015d9190611108565b60405180910390f35b610180600480360381019061017b9190611123565b6104db565b60405161018d91906110de565b60405180910390f35b61019e61050f565b6040516101ab9190611192565b60405180910390f35b6101ce60048036038101906101c99190611083565b610518565b6040516101db91906110de565b60405180910390f35b6101fe60048036038101906101f99190611083565b61054f565b005b61021a600480360381019061021591906111ad565b61064f565b6040516102279190611108565b60405180910390f35b61024a60048036038101906102459190611083565b610697565b005b6102546107a2565b6040516102619190610fc8565b60405180910390f35b610284600480360381019061027f9190611083565b610834565b60405161029191906110de565b60405180910390f35b6102b460048036038101906102af9190611083565b6108ab565b6040516102c191906110de565b60405180910390f35b6102d26108df565b6040516102df91906111f3565b60405180910390f35b61030260048036038101906102fd919061120e565b610903565b60405161030f9190611108565b60405180910390f35b61032061098a565b60405161032d91906112ad565b60405180910390f35b606060038054610345906112f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610371906112f7565b80156103be5780601f10610393576101008083540402835291602001916103be565b820191906000526020600020905b8154815290600101906020018083116103a157829003601f168201915b5050505050905090565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166391d148547fe375467771a3da970adf947331fa16820d1549824b3d750554a5e1f0b81b1acf856040518363ffffffff1660e01b8152600401610445929190611337565b602060405180830381865afa158015610462573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610486919061138c565b6104bc576040517ff50a3b5200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6104c73384846109ae565b6001905092915050565b6000600254905090565b60006040517ff50a3b5200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006012905090565b600080610523610b77565b90506105448185856105358589610903565b61053f91906113e8565b6109ae565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166391d148547fe375467771a3da970adf947331fa16820d1549824b3d750554a5e1f0b81b1acf336040518363ffffffff1660e01b81526004016105ca929190611337565b602060405180830381865afa1580156105e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061060b919061138c565b610641576040517ff50a3b5200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61064b8282610b7f565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166391d148547fe375467771a3da970adf947331fa16820d1549824b3d750554a5e1f0b81b1acf336040518363ffffffff1660e01b8152600401610712929190611337565b602060405180830381865afa15801561072f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610753919061138c565b610789576040517ff50a3b5200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610794823383610cd5565b61079e8282610d61565b5050565b6060600480546107b1906112f7565b80601f01602080910402602001604051908101604052809291908181526020018280546107dd906112f7565b801561082a5780601f106107ff5761010080835404028352916020019161082a565b820191906000526020600020905b81548152906001019060200180831161080d57829003601f168201915b5050505050905090565b60008061083f610b77565b9050600061084d8286610903565b905083811015610892576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108899061148e565b60405180910390fd5b61089f82868684036109ae565b60019250505092915050565b60006040517ff50a3b5200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7fe375467771a3da970adf947331fa16820d1549824b3d750554a5e1f0b81b1acf81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1490611520565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a83906115b2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b6a9190611108565b60405180910390a3505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be59061161e565b60405180910390fd5b610bfa60008383610f2e565b8060026000828254610c0c91906113e8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cbd9190611108565b60405180910390a3610cd160008383610f33565b5050565b6000610ce18484610903565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d5b5781811015610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d449061168a565b60405180910390fd5b610d5a84848484036109ae565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc79061171c565b60405180910390fd5b610ddc82600083610f2e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e59906117ae565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f159190611108565b60405180910390a3610f2983600084610f33565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f72578082015181840152602081019050610f57565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f9a82610f38565b610fa48185610f43565b9350610fb4818560208601610f54565b610fbd81610f7e565b840191505092915050565b60006020820190508181036000830152610fe28184610f8f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061101a82610fef565b9050919050565b61102a8161100f565b811461103557600080fd5b50565b60008135905061104781611021565b92915050565b6000819050919050565b6110608161104d565b811461106b57600080fd5b50565b60008135905061107d81611057565b92915050565b6000806040838503121561109a57611099610fea565b5b60006110a885828601611038565b92505060206110b98582860161106e565b9150509250929050565b60008115159050919050565b6110d8816110c3565b82525050565b60006020820190506110f360008301846110cf565b92915050565b6111028161104d565b82525050565b600060208201905061111d60008301846110f9565b92915050565b60008060006060848603121561113c5761113b610fea565b5b600061114a86828701611038565b935050602061115b86828701611038565b925050604061116c8682870161106e565b9150509250925092565b600060ff82169050919050565b61118c81611176565b82525050565b60006020820190506111a76000830184611183565b92915050565b6000602082840312156111c3576111c2610fea565b5b60006111d184828501611038565b91505092915050565b6000819050919050565b6111ed816111da565b82525050565b600060208201905061120860008301846111e4565b92915050565b6000806040838503121561122557611224610fea565b5b600061123385828601611038565b925050602061124485828601611038565b9150509250929050565b6000819050919050565b600061127361126e61126984610fef565b61124e565b610fef565b9050919050565b600061128582611258565b9050919050565b60006112978261127a565b9050919050565b6112a78161128c565b82525050565b60006020820190506112c2600083018461129e565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061130f57607f821691505b602082108103611322576113216112c8565b5b50919050565b6113318161100f565b82525050565b600060408201905061134c60008301856111e4565b6113596020830184611328565b9392505050565b611369816110c3565b811461137457600080fd5b50565b60008151905061138681611360565b92915050565b6000602082840312156113a2576113a1610fea565b5b60006113b084828501611377565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113f38261104d565b91506113fe8361104d565b9250828201905080821115611416576114156113b9565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611478602583610f43565b91506114838261141c565b604082019050919050565b600060208201905081810360008301526114a78161146b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061150a602483610f43565b9150611515826114ae565b604082019050919050565b60006020820190508181036000830152611539816114fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061159c602283610f43565b91506115a782611540565b604082019050919050565b600060208201905081810360008301526115cb8161158f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611608601f83610f43565b9150611613826115d2565b602082019050919050565b60006020820190508181036000830152611637816115fb565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611674601d83610f43565b915061167f8261163e565b602082019050919050565b600060208201905081810360008301526116a381611667565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611706602183610f43565b9150611711826116aa565b604082019050919050565b60006020820190508181036000830152611735816116f9565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611798602283610f43565b91506117a38261173c565b604082019050919050565b600060208201905081810360008301526117c78161178b565b905091905056fea26469706673582212207d19b284998caff8f9965ef9613a4e5d5ecadff05abc878a7d3085407b915b7f64736f6c6343000812003300000000000000000000000001b3646adb846061411da058757b944049075b22

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a9059cbb11610066578063a9059cbb1461029a578063af0ac64e146102ca578063dd62ed3e146102e8578063de28735914610318576100f5565b806370a082311461020057806379cc67901461023057806395d89b411461024c578063a457c2d71461026a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b4578063449a52f8146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610336565b60405161010f9190610fc8565b60405180910390f35b610132600480360381019061012d9190611083565b6103c8565b60405161013f91906110de565b60405180910390f35b6101506104d1565b60405161015d9190611108565b60405180910390f35b610180600480360381019061017b9190611123565b6104db565b60405161018d91906110de565b60405180910390f35b61019e61050f565b6040516101ab9190611192565b60405180910390f35b6101ce60048036038101906101c99190611083565b610518565b6040516101db91906110de565b60405180910390f35b6101fe60048036038101906101f99190611083565b61054f565b005b61021a600480360381019061021591906111ad565b61064f565b6040516102279190611108565b60405180910390f35b61024a60048036038101906102459190611083565b610697565b005b6102546107a2565b6040516102619190610fc8565b60405180910390f35b610284600480360381019061027f9190611083565b610834565b60405161029191906110de565b60405180910390f35b6102b460048036038101906102af9190611083565b6108ab565b6040516102c191906110de565b60405180910390f35b6102d26108df565b6040516102df91906111f3565b60405180910390f35b61030260048036038101906102fd919061120e565b610903565b60405161030f9190611108565b60405180910390f35b61032061098a565b60405161032d91906112ad565b60405180910390f35b606060038054610345906112f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610371906112f7565b80156103be5780601f10610393576101008083540402835291602001916103be565b820191906000526020600020905b8154815290600101906020018083116103a157829003601f168201915b5050505050905090565b60007f00000000000000000000000001b3646adb846061411da058757b944049075b2273ffffffffffffffffffffffffffffffffffffffff166391d148547fe375467771a3da970adf947331fa16820d1549824b3d750554a5e1f0b81b1acf856040518363ffffffff1660e01b8152600401610445929190611337565b602060405180830381865afa158015610462573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610486919061138c565b6104bc576040517ff50a3b5200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6104c73384846109ae565b6001905092915050565b6000600254905090565b60006040517ff50a3b5200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006012905090565b600080610523610b77565b90506105448185856105358589610903565b61053f91906113e8565b6109ae565b600191505092915050565b7f00000000000000000000000001b3646adb846061411da058757b944049075b2273ffffffffffffffffffffffffffffffffffffffff166391d148547fe375467771a3da970adf947331fa16820d1549824b3d750554a5e1f0b81b1acf336040518363ffffffff1660e01b81526004016105ca929190611337565b602060405180830381865afa1580156105e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061060b919061138c565b610641576040517ff50a3b5200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61064b8282610b7f565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f00000000000000000000000001b3646adb846061411da058757b944049075b2273ffffffffffffffffffffffffffffffffffffffff166391d148547fe375467771a3da970adf947331fa16820d1549824b3d750554a5e1f0b81b1acf336040518363ffffffff1660e01b8152600401610712929190611337565b602060405180830381865afa15801561072f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610753919061138c565b610789576040517ff50a3b5200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610794823383610cd5565b61079e8282610d61565b5050565b6060600480546107b1906112f7565b80601f01602080910402602001604051908101604052809291908181526020018280546107dd906112f7565b801561082a5780601f106107ff5761010080835404028352916020019161082a565b820191906000526020600020905b81548152906001019060200180831161080d57829003601f168201915b5050505050905090565b60008061083f610b77565b9050600061084d8286610903565b905083811015610892576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108899061148e565b60405180910390fd5b61089f82868684036109ae565b60019250505092915050565b60006040517ff50a3b5200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7fe375467771a3da970adf947331fa16820d1549824b3d750554a5e1f0b81b1acf81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f00000000000000000000000001b3646adb846061411da058757b944049075b2281565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1490611520565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a83906115b2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b6a9190611108565b60405180910390a3505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be59061161e565b60405180910390fd5b610bfa60008383610f2e565b8060026000828254610c0c91906113e8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cbd9190611108565b60405180910390a3610cd160008383610f33565b5050565b6000610ce18484610903565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d5b5781811015610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d449061168a565b60405180910390fd5b610d5a84848484036109ae565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc79061171c565b60405180910390fd5b610ddc82600083610f2e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e59906117ae565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f159190611108565b60405180910390a3610f2983600084610f33565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f72578082015181840152602081019050610f57565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f9a82610f38565b610fa48185610f43565b9350610fb4818560208601610f54565b610fbd81610f7e565b840191505092915050565b60006020820190508181036000830152610fe28184610f8f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061101a82610fef565b9050919050565b61102a8161100f565b811461103557600080fd5b50565b60008135905061104781611021565b92915050565b6000819050919050565b6110608161104d565b811461106b57600080fd5b50565b60008135905061107d81611057565b92915050565b6000806040838503121561109a57611099610fea565b5b60006110a885828601611038565b92505060206110b98582860161106e565b9150509250929050565b60008115159050919050565b6110d8816110c3565b82525050565b60006020820190506110f360008301846110cf565b92915050565b6111028161104d565b82525050565b600060208201905061111d60008301846110f9565b92915050565b60008060006060848603121561113c5761113b610fea565b5b600061114a86828701611038565b935050602061115b86828701611038565b925050604061116c8682870161106e565b9150509250925092565b600060ff82169050919050565b61118c81611176565b82525050565b60006020820190506111a76000830184611183565b92915050565b6000602082840312156111c3576111c2610fea565b5b60006111d184828501611038565b91505092915050565b6000819050919050565b6111ed816111da565b82525050565b600060208201905061120860008301846111e4565b92915050565b6000806040838503121561122557611224610fea565b5b600061123385828601611038565b925050602061124485828601611038565b9150509250929050565b6000819050919050565b600061127361126e61126984610fef565b61124e565b610fef565b9050919050565b600061128582611258565b9050919050565b60006112978261127a565b9050919050565b6112a78161128c565b82525050565b60006020820190506112c2600083018461129e565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061130f57607f821691505b602082108103611322576113216112c8565b5b50919050565b6113318161100f565b82525050565b600060408201905061134c60008301856111e4565b6113596020830184611328565b9392505050565b611369816110c3565b811461137457600080fd5b50565b60008151905061138681611360565b92915050565b6000602082840312156113a2576113a1610fea565b5b60006113b084828501611377565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113f38261104d565b91506113fe8361104d565b9250828201905080821115611416576114156113b9565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611478602583610f43565b91506114838261141c565b604082019050919050565b600060208201905081810360008301526114a78161146b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061150a602483610f43565b9150611515826114ae565b604082019050919050565b60006020820190508181036000830152611539816114fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061159c602283610f43565b91506115a782611540565b604082019050919050565b600060208201905081810360008301526115cb8161158f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611608601f83610f43565b9150611613826115d2565b602082019050919050565b60006020820190508181036000830152611637816115fb565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611674601d83610f43565b915061167f8261163e565b602082019050919050565b600060208201905081810360008301526116a381611667565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611706602183610f43565b9150611711826116aa565b604082019050919050565b60006020820190508181036000830152611735816116f9565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611798602283610f43565b91506117a38261173c565b604082019050919050565b600060208201905081810360008301526117c78161178b565b905091905056fea26469706673582212207d19b284998caff8f9965ef9613a4e5d5ecadff05abc878a7d3085407b915b7f64736f6c63430008120033

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

00000000000000000000000001b3646adb846061411da058757b944049075b22

-----Decoded View---------------
Arg [0] : _acl (address): 0x01B3646Adb846061411Da058757B944049075B22

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000001b3646adb846061411da058757b944049075b22


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.