ETH Price: $2,382.53 (+1.27%)

Contract

0xEE1EC62D1659F8772B881774AdCd49413F7b3c05
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve208586812024-09-29 20:26:594 days ago1727641619IN
0xEE1EC62D...13F7b3c05
0 ETH0.000237889.81200102
Approve207287852024-09-11 17:13:2322 days ago1726074803IN
0xEE1EC62D...13F7b3c05
0 ETH0.000155253.35677887
Transfer207281162024-09-11 14:58:3522 days ago1726066715IN
0xEE1EC62D...13F7b3c05
0 ETH0.000409117.90994259
Approve206647942024-09-02 18:52:2331 days ago1725303143IN
0xEE1EC62D...13F7b3c05
0 ETH0.000350337.57643057
Approve206349712024-08-29 14:55:4735 days ago1724943347IN
0xEE1EC62D...13F7b3c05
0 ETH0.000137525.67254564
Approve205627292024-08-19 12:39:1145 days ago1724071151IN
0xEE1EC62D...13F7b3c05
0 ETH0.00007132.70598027
Approve205627272024-08-19 12:38:4745 days ago1724071127IN
0xEE1EC62D...13F7b3c05
0 ETH0.00011452.47573151
Approve205506082024-08-17 20:03:5947 days ago1723925039IN
0xEE1EC62D...13F7b3c05
0 ETH0.000041581.71527116
Approve205453312024-08-17 2:21:5948 days ago1723861319IN
0xEE1EC62D...13F7b3c05
0 ETH0.000050771.09658928
Approve205453232024-08-17 2:20:2348 days ago1723861223IN
0xEE1EC62D...13F7b3c05
0 ETH0.000047071.01678405
Approve205414142024-08-16 13:12:5948 days ago1723813979IN
0xEE1EC62D...13F7b3c05
0 ETH0.000225034.86415083
Approve205413922024-08-16 13:08:3548 days ago1723813715IN
0xEE1EC62D...13F7b3c05
0 ETH0.000233455.0460789
Approve205413682024-08-16 13:03:3548 days ago1723813415IN
0xEE1EC62D...13F7b3c05
0 ETH0.000221234.78191892
Approve205413382024-08-16 12:57:3548 days ago1723813055IN
0xEE1EC62D...13F7b3c05
0 ETH0.000200984.34431122
Mint205413372024-08-16 12:57:2348 days ago1723813043IN
0xEE1EC62D...13F7b3c05
0 ETH0.00044554.2153667
Mint205409152024-08-16 11:32:4748 days ago1723807967IN
0xEE1EC62D...13F7b3c05
0 ETH0.000281372.66202292
Mint205406142024-08-16 10:31:5948 days ago1723804319IN
0xEE1EC62D...13F7b3c05
0 ETH0.000217742.4573456
Mint205403382024-08-16 9:36:3549 days ago1723800995IN
0xEE1EC62D...13F7b3c05
0 ETH0.000169021.59879362
Mint205402822024-08-16 9:25:2349 days ago1723800323IN
0xEE1EC62D...13F7b3c05
0 ETH0.000110671.54720823
Mint205402412024-08-16 9:17:1149 days ago1723799831IN
0xEE1EC62D...13F7b3c05
0 ETH0.000117811.64731271
Mint205401962024-08-16 9:08:1149 days ago1723799291IN
0xEE1EC62D...13F7b3c05
0 ETH0.000130611.82588456
Mint205401502024-08-16 8:58:5949 days ago1723798739IN
0xEE1EC62D...13F7b3c05
0 ETH0.000150931.70288886
Approve205401472024-08-16 8:58:2349 days ago1723798703IN
0xEE1EC62D...13F7b3c05
0 ETH0.000081971.77230476
Approve205400542024-08-16 8:39:4749 days ago1723797587IN
0xEE1EC62D...13F7b3c05
0 ETH0.000085011.8375378
Approve205400462024-08-16 8:38:1149 days ago1723797491IN
0xEE1EC62D...13F7b3c05
0 ETH0.000081511.76197182
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
PointToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : PointToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.6;

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

contract PointToken is ERC20, Ownable {
    address private _minter;

    //authorizer addressz
    address public authorizer;
    mapping(uint256 => bool) public usedNonces;

    /// @notice Record the cumulative amount claimed by each address for a certain Token.
    /// @notice The first 'address' is the Token and the second 'address' is the user address.
    mapping(address => uint256) public claimed;

    event Mint(address indexed reciver, uint256 amount, uint256 nonce);
    event AuthorizerChanged(address indexed authorizer);
    event Burn(address indexed reciver, uint256 amount);
    event MinterChanged(address oldMinter, address newMinter);

    constructor(
        string memory _name,
        string memory _symbol
    ) public ERC20(_name, _symbol) Ownable() {
        _minter = msg.sender;
    }

    modifier onlyMinter() {
        require(_minter == _msgSender(), "Mint: caller is not the minter");
        _;
    }

    // change minter address
    function setMinter(address minter) external onlyOwner {
        require(minter != address(0), "Can not set 0x0 address");
        require(minter != _minter, "Minter is not set");
        address oldMinter = _minter;
        _minter = minter;
        emit MinterChanged(oldMinter, minter);
    }

    /// @notice mint token.
    /// @dev Explain to a developer any extra details
    /// @param amount The amount of the token you want to mint.
    /// @param nonce One authorization can only be mint once.
    /// @param underBlock The valid block, if current block number is higher than this block, the authorization(signature) will be invalid.
    /// @param signature Authorizer's signature.
    function mint(
        uint256 amount,
        uint256 nonce,
        uint256 underBlock,
        bytes memory signature
    ) public {
        require(block.number <= underBlock, "The signature has expired");
        require(!usedNonces[nonce], "You cannot claim it twice.");

        address recoveredAddr = recoverAuthorizer(
            address(this),
            msg.sender,
            amount,
            nonce,
            underBlock,
            signature
        );
        require(recoveredAddr == authorizer, "Invalid signature");

        _mint(msg.sender, amount);

        usedNonces[nonce] = true;
        claimed[msg.sender] += amount;

        emit Mint(msg.sender, amount, nonce);
    }

    // burn token for specify address
    function burn(address _from, uint256 _amount) external onlyMinter {
        _burn(_from, _amount);
        emit Burn(_from, _amount);
    }

    /// @notice Set authorizer address.
    /// @dev Only owner can execute.
    /// @param _authorizer Authorizer address.
    function setAuthorizer(address _authorizer) external onlyOwner {
        require(
            _authorizer != authorizer && _authorizer != address(0),
            "authorizer not changed or authorizer invalid"
        );
        authorizer = _authorizer;
        emit AuthorizerChanged(_authorizer);
    }

    /// @notice Recover out the autorizer's address by the withdrawal info and the signature.
    /// @param token The address which is going to be claimed.
    /// @param recipient Recipient address.
    /// @param amount The amount of the token you want to calim.
    /// @param nonce One authorization can only be claimed once.
    /// @param underBlock The valid block, if current block number is higher than this block, the authorization(signature) will be invalid.
    /// @param signature Authorizer's signature.
    function recoverAuthorizer(
        address token,
        address recipient,
        uint256 amount,
        uint256 nonce,
        uint256 underBlock,
        bytes memory signature
    ) public view returns (address) {
        bytes32 message = prefixed(
            keccak256(
                abi.encodePacked(
                    token,
                    recipient,
                    amount,
                    nonce,
                    this,
                    underBlock
                )
            )
        );
        return recoverSigner(message, signature);
    }

    // 'v, r, s', The separating signature information.
    function splitSignature(
        bytes memory sig
    ) internal pure returns (uint8 v, bytes32 r, bytes32 s) {
        require(sig.length == 65);

        assembly {
            // first 32 bytes, after the length prefix.
            r := mload(add(sig, 32))
            // second 32 bytes.
            s := mload(add(sig, 64))
            // final byte (first byte of the next 32 bytes).
            v := byte(0, mload(add(sig, 96)))
        }

        return (v, r, s);
    }

    function recoverSigner(
        bytes32 message,
        bytes memory sig
    ) internal pure returns (address) {
        (uint8 v, bytes32 r, bytes32 s) = splitSignature(sig);

        return ecrecover(message, v, r, s);
    }

    // Add a prefix, because it will be added when eth_sign is signed.
    function prefixed(bytes32 hash) internal pure returns (bytes32) {
        return
            keccak256(
                abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)
            );
    }
}

File 2 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../../utils/Context.sol";
import "./IERC20.sol";
import "../../math/SafeMath.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

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

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

    /**
     * @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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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:
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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

File 3 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 4 of 6 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

File 5 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

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

File 6 of 6 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"authorizer","type":"address"}],"name":"AuthorizerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"reciver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"reciver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldMinter","type":"address"},{"indexed":false,"internalType":"address","name":"newMinter","type":"address"}],"name":"MinterChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"authorizer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","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":[{"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":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"underBlock","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"underBlock","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"recoverAuthorizer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_authorizer","type":"address"}],"name":"setAuthorizer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"usedNonces","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162001bac38038062001bac833981810160405260408110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b50604052505082518391508290620001b89060039060208501906200025e565b508051620001ce9060049060208401906200025e565b50506005805460ff19166012179055506000620001ea6200025a565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35050600680546001600160a01b0319163317905550620002fa565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002a157805160ff1916838001178555620002d1565b82800160010185558215620002d1579182015b82811115620002d1578251825591602001919060010190620002b4565b50620002df929150620002e3565b5090565b5b80821115620002df5760008155600101620002e4565b6118a2806200030a6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80638da5cb5b116100b8578063b1b883781161007c578063b1b883781461047a578063c884ef831461054c578063d09edf3114610572578063dd62ed3e1461057a578063f2fde38b146105a8578063fca3b5aa146105ce57610142565b80638da5cb5b146103ca57806395d89b41146103ee5780639dc29fac146103f6578063a457c2d714610422578063a9059cbb1461044e57610142565b8063313ce5671161010a578063313ce5671461027c578063395093511461029a5780634a9eee69146102c65780636717e41c1461037f57806370a082311461039c578063715018a6146103c257610142565b8063058a628f1461014757806306fdde031461016f578063095ea7b3146101ec57806318160ddd1461022c57806323b872dd14610246575b600080fd5b61016d6004803603602081101561015d57600080fd5b50356001600160a01b03166105f4565b005b610177610701565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b1578181015183820152602001610199565b50505050905090810190601f1680156101de5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102186004803603604081101561020257600080fd5b506001600160a01b038135169060200135610797565b604080519115158252519081900360200190f35b6102346107b4565b60408051918252519081900360200190f35b6102186004803603606081101561025c57600080fd5b506001600160a01b038135811691602081013590911690604001356107ba565b610284610841565b6040805160ff9092168252519081900360200190f35b610218600480360360408110156102b057600080fd5b506001600160a01b03813516906020013561084a565b61016d600480360360808110156102dc57600080fd5b8135916020810135916040820135919081019060808101606082013564010000000081111561030a57600080fd5b82018360208201111561031c57600080fd5b8035906020019184600183028401116401000000008311171561033e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610898945050505050565b6102186004803603602081101561039557600080fd5b5035610a30565b610234600480360360208110156103b257600080fd5b50356001600160a01b0316610a45565b61016d610a60565b6103d2610b12565b604080516001600160a01b039092168252519081900360200190f35b610177610b26565b61016d6004803603604081101561040c57600080fd5b506001600160a01b038135169060200135610b87565b6102186004803603604081101561043857600080fd5b506001600160a01b038135169060200135610c3e565b6102186004803603604081101561046457600080fd5b506001600160a01b038135169060200135610ca6565b6103d2600480360360c081101561049057600080fd5b6001600160a01b0382358116926020810135909116916040820135916060810135916080820135919081019060c0810160a08201356401000000008111156104d757600080fd5b8201836020820111156104e957600080fd5b8035906020019184600183028401116401000000008311171561050b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610cba945050505050565b6102346004803603602081101561056257600080fd5b50356001600160a01b0316610d50565b6103d2610d62565b6102346004803603604081101561059057600080fd5b506001600160a01b0381358116916020013516610d71565b61016d600480360360208110156105be57600080fd5b50356001600160a01b0316610d9c565b61016d600480360360208110156105e457600080fd5b50356001600160a01b0316610eaa565b6105fc611021565b6001600160a01b031661060d610b12565b6001600160a01b031614610656576040805162461bcd60e51b815260206004820181905260248201526000805160206117be833981519152604482015290519081900360640190fd5b6007546001600160a01b0382811691161480159061067c57506001600160a01b03811615155b6106b75760405162461bcd60e51b815260040180806020018281038252602c81526020018061176a602c913960400191505060405180910390fd5b600780546001600160a01b0319166001600160a01b0383169081179091556040517f94b979b6831a51293e2641426f97747feed46f17779fed9cd18d1ecefcfe92ef90600090a250565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561078d5780601f106107625761010080835404028352916020019161078d565b820191906000526020600020905b81548152906001019060200180831161077057829003601f168201915b5050505050905090565b60006107ab6107a4611021565b8484611025565b50600192915050565b60025490565b60006107c7848484611111565b610837846107d3611021565b61083285604051806060016040528060288152602001611796602891396001600160a01b038a16600090815260016020526040812090610811611021565b6001600160a01b03168152602081019190915260400160002054919061126c565b611025565b5060019392505050565b60055460ff1690565b60006107ab610857611021565b846108328560016000610868611021565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611303565b814311156108ed576040805162461bcd60e51b815260206004820152601960248201527f546865207369676e617475726520686173206578706972656400000000000000604482015290519081900360640190fd5b60008381526008602052604090205460ff1615610951576040805162461bcd60e51b815260206004820152601a60248201527f596f752063616e6e6f7420636c61696d2069742074776963652e000000000000604482015290519081900360640190fd5b6000610961303387878787610cba565b6007549091506001600160a01b038083169116146109ba576040805162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015290519081900360640190fd5b6109c43386611364565b6000848152600860209081526040808320805460ff19166001179055338084526009835292819020805489019055805188815291820187905280517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f9281900390910190a25050505050565b60086020526000908152604090205460ff1681565b6001600160a01b031660009081526020819052604090205490565b610a68611021565b6001600160a01b0316610a79610b12565b6001600160a01b031614610ac2576040805162461bcd60e51b815260206004820181905260248201526000805160206117be833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60055461010090046001600160a01b031690565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561078d5780601f106107625761010080835404028352916020019161078d565b610b8f611021565b6006546001600160a01b03908116911614610bf1576040805162461bcd60e51b815260206004820152601e60248201527f4d696e743a2063616c6c6572206973206e6f7420746865206d696e7465720000604482015290519081900360640190fd5b610bfb8282611454565b6040805182815290516001600160a01b038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60006107ab610c4b611021565b84610832856040518060600160405280602581526020016118486025913960016000610c75611021565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061126c565b60006107ab610cb3611021565b8484611111565b600080610d3888888888308960405160200180876001600160a01b031660601b8152601401866001600160a01b031660601b8152601401858152602001848152602001836001600160a01b031660601b8152601401828152602001965050505050505060405160208183030381529060405280519060200120611550565b9050610d4481846115a1565b98975050505050505050565b60096020526000908152604090205481565b6007546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610da4611021565b6001600160a01b0316610db5610b12565b6001600160a01b031614610dfe576040805162461bcd60e51b815260206004820181905260248201526000805160206117be833981519152604482015290519081900360640190fd5b6001600160a01b038116610e435760405162461bcd60e51b81526004018080602001828103825260268152602001806116fc6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610eb2611021565b6001600160a01b0316610ec3610b12565b6001600160a01b031614610f0c576040805162461bcd60e51b815260206004820181905260248201526000805160206117be833981519152604482015290519081900360640190fd5b6001600160a01b038116610f67576040805162461bcd60e51b815260206004820152601760248201527f43616e206e6f7420736574203078302061646472657373000000000000000000604482015290519081900360640190fd5b6006546001600160a01b0382811691161415610fbe576040805162461bcd60e51b8152602060048201526011602482015270135a5b9d195c881a5cc81b9bdd081cd95d607a1b604482015290519081900360640190fd5b600680546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f6929181900390910190a15050565b3390565b6001600160a01b03831661106a5760405162461bcd60e51b81526004018080602001828103825260248152602001806118246024913960400191505060405180910390fd5b6001600160a01b0382166110af5760405162461bcd60e51b81526004018080602001828103825260228152602001806117226022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111565760405162461bcd60e51b81526004018080602001828103825260258152602001806117ff6025913960400191505060405180910390fd5b6001600160a01b03821661119b5760405162461bcd60e51b81526004018080602001828103825260238152602001806116b76023913960400191505060405180910390fd5b6111a6838383611625565b6111e381604051806060016040528060268152602001611744602691396001600160a01b038616600090815260208190526040902054919061126c565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546112129082611303565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156112fb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112c05781810151838201526020016112a8565b50505050905090810190601f1680156112ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008282018381101561135d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166113bf576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6113cb60008383611625565b6002546113d89082611303565b6002556001600160a01b0382166000908152602081905260409020546113fe9082611303565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166114995760405162461bcd60e51b81526004018080602001828103825260218152602001806117de6021913960400191505060405180910390fd5b6114a582600083611625565b6114e2816040518060600160405280602281526020016116da602291396001600160a01b038516600090815260208190526040902054919061126c565b6001600160a01b038316600090815260208190526040902055600254611508908261162a565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b604080517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602080830191909152603c8083019490945282518083039094018452605c909101909152815191012090565b6000806000806115b085611687565b92509250925060018684848460405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015611610573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b505050565b600082821115611681576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000806000835160411461169a57600080fd5b5050506020810151604082015160609092015160001a9290919056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365617574686f72697a6572206e6f74206368616e676564206f7220617574686f72697a657220696e76616c696445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220aa46bbdaf0dcd448a871a43ca0fcf5bfe026d663d8f661320d139cc903e2ccf564736f6c634300060c003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001250756666657220706f696e7420746f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000085055464645527074000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80638da5cb5b116100b8578063b1b883781161007c578063b1b883781461047a578063c884ef831461054c578063d09edf3114610572578063dd62ed3e1461057a578063f2fde38b146105a8578063fca3b5aa146105ce57610142565b80638da5cb5b146103ca57806395d89b41146103ee5780639dc29fac146103f6578063a457c2d714610422578063a9059cbb1461044e57610142565b8063313ce5671161010a578063313ce5671461027c578063395093511461029a5780634a9eee69146102c65780636717e41c1461037f57806370a082311461039c578063715018a6146103c257610142565b8063058a628f1461014757806306fdde031461016f578063095ea7b3146101ec57806318160ddd1461022c57806323b872dd14610246575b600080fd5b61016d6004803603602081101561015d57600080fd5b50356001600160a01b03166105f4565b005b610177610701565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b1578181015183820152602001610199565b50505050905090810190601f1680156101de5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102186004803603604081101561020257600080fd5b506001600160a01b038135169060200135610797565b604080519115158252519081900360200190f35b6102346107b4565b60408051918252519081900360200190f35b6102186004803603606081101561025c57600080fd5b506001600160a01b038135811691602081013590911690604001356107ba565b610284610841565b6040805160ff9092168252519081900360200190f35b610218600480360360408110156102b057600080fd5b506001600160a01b03813516906020013561084a565b61016d600480360360808110156102dc57600080fd5b8135916020810135916040820135919081019060808101606082013564010000000081111561030a57600080fd5b82018360208201111561031c57600080fd5b8035906020019184600183028401116401000000008311171561033e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610898945050505050565b6102186004803603602081101561039557600080fd5b5035610a30565b610234600480360360208110156103b257600080fd5b50356001600160a01b0316610a45565b61016d610a60565b6103d2610b12565b604080516001600160a01b039092168252519081900360200190f35b610177610b26565b61016d6004803603604081101561040c57600080fd5b506001600160a01b038135169060200135610b87565b6102186004803603604081101561043857600080fd5b506001600160a01b038135169060200135610c3e565b6102186004803603604081101561046457600080fd5b506001600160a01b038135169060200135610ca6565b6103d2600480360360c081101561049057600080fd5b6001600160a01b0382358116926020810135909116916040820135916060810135916080820135919081019060c0810160a08201356401000000008111156104d757600080fd5b8201836020820111156104e957600080fd5b8035906020019184600183028401116401000000008311171561050b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610cba945050505050565b6102346004803603602081101561056257600080fd5b50356001600160a01b0316610d50565b6103d2610d62565b6102346004803603604081101561059057600080fd5b506001600160a01b0381358116916020013516610d71565b61016d600480360360208110156105be57600080fd5b50356001600160a01b0316610d9c565b61016d600480360360208110156105e457600080fd5b50356001600160a01b0316610eaa565b6105fc611021565b6001600160a01b031661060d610b12565b6001600160a01b031614610656576040805162461bcd60e51b815260206004820181905260248201526000805160206117be833981519152604482015290519081900360640190fd5b6007546001600160a01b0382811691161480159061067c57506001600160a01b03811615155b6106b75760405162461bcd60e51b815260040180806020018281038252602c81526020018061176a602c913960400191505060405180910390fd5b600780546001600160a01b0319166001600160a01b0383169081179091556040517f94b979b6831a51293e2641426f97747feed46f17779fed9cd18d1ecefcfe92ef90600090a250565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561078d5780601f106107625761010080835404028352916020019161078d565b820191906000526020600020905b81548152906001019060200180831161077057829003601f168201915b5050505050905090565b60006107ab6107a4611021565b8484611025565b50600192915050565b60025490565b60006107c7848484611111565b610837846107d3611021565b61083285604051806060016040528060288152602001611796602891396001600160a01b038a16600090815260016020526040812090610811611021565b6001600160a01b03168152602081019190915260400160002054919061126c565b611025565b5060019392505050565b60055460ff1690565b60006107ab610857611021565b846108328560016000610868611021565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611303565b814311156108ed576040805162461bcd60e51b815260206004820152601960248201527f546865207369676e617475726520686173206578706972656400000000000000604482015290519081900360640190fd5b60008381526008602052604090205460ff1615610951576040805162461bcd60e51b815260206004820152601a60248201527f596f752063616e6e6f7420636c61696d2069742074776963652e000000000000604482015290519081900360640190fd5b6000610961303387878787610cba565b6007549091506001600160a01b038083169116146109ba576040805162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015290519081900360640190fd5b6109c43386611364565b6000848152600860209081526040808320805460ff19166001179055338084526009835292819020805489019055805188815291820187905280517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f9281900390910190a25050505050565b60086020526000908152604090205460ff1681565b6001600160a01b031660009081526020819052604090205490565b610a68611021565b6001600160a01b0316610a79610b12565b6001600160a01b031614610ac2576040805162461bcd60e51b815260206004820181905260248201526000805160206117be833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60055461010090046001600160a01b031690565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561078d5780601f106107625761010080835404028352916020019161078d565b610b8f611021565b6006546001600160a01b03908116911614610bf1576040805162461bcd60e51b815260206004820152601e60248201527f4d696e743a2063616c6c6572206973206e6f7420746865206d696e7465720000604482015290519081900360640190fd5b610bfb8282611454565b6040805182815290516001600160a01b038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60006107ab610c4b611021565b84610832856040518060600160405280602581526020016118486025913960016000610c75611021565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061126c565b60006107ab610cb3611021565b8484611111565b600080610d3888888888308960405160200180876001600160a01b031660601b8152601401866001600160a01b031660601b8152601401858152602001848152602001836001600160a01b031660601b8152601401828152602001965050505050505060405160208183030381529060405280519060200120611550565b9050610d4481846115a1565b98975050505050505050565b60096020526000908152604090205481565b6007546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610da4611021565b6001600160a01b0316610db5610b12565b6001600160a01b031614610dfe576040805162461bcd60e51b815260206004820181905260248201526000805160206117be833981519152604482015290519081900360640190fd5b6001600160a01b038116610e435760405162461bcd60e51b81526004018080602001828103825260268152602001806116fc6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610eb2611021565b6001600160a01b0316610ec3610b12565b6001600160a01b031614610f0c576040805162461bcd60e51b815260206004820181905260248201526000805160206117be833981519152604482015290519081900360640190fd5b6001600160a01b038116610f67576040805162461bcd60e51b815260206004820152601760248201527f43616e206e6f7420736574203078302061646472657373000000000000000000604482015290519081900360640190fd5b6006546001600160a01b0382811691161415610fbe576040805162461bcd60e51b8152602060048201526011602482015270135a5b9d195c881a5cc81b9bdd081cd95d607a1b604482015290519081900360640190fd5b600680546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f6929181900390910190a15050565b3390565b6001600160a01b03831661106a5760405162461bcd60e51b81526004018080602001828103825260248152602001806118246024913960400191505060405180910390fd5b6001600160a01b0382166110af5760405162461bcd60e51b81526004018080602001828103825260228152602001806117226022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111565760405162461bcd60e51b81526004018080602001828103825260258152602001806117ff6025913960400191505060405180910390fd5b6001600160a01b03821661119b5760405162461bcd60e51b81526004018080602001828103825260238152602001806116b76023913960400191505060405180910390fd5b6111a6838383611625565b6111e381604051806060016040528060268152602001611744602691396001600160a01b038616600090815260208190526040902054919061126c565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546112129082611303565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156112fb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112c05781810151838201526020016112a8565b50505050905090810190601f1680156112ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008282018381101561135d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166113bf576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6113cb60008383611625565b6002546113d89082611303565b6002556001600160a01b0382166000908152602081905260409020546113fe9082611303565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166114995760405162461bcd60e51b81526004018080602001828103825260218152602001806117de6021913960400191505060405180910390fd5b6114a582600083611625565b6114e2816040518060600160405280602281526020016116da602291396001600160a01b038516600090815260208190526040902054919061126c565b6001600160a01b038316600090815260208190526040902055600254611508908261162a565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b604080517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602080830191909152603c8083019490945282518083039094018452605c909101909152815191012090565b6000806000806115b085611687565b92509250925060018684848460405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015611610573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b505050565b600082821115611681576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000806000835160411461169a57600080fd5b5050506020810151604082015160609092015160001a9290919056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365617574686f72697a6572206e6f74206368616e676564206f7220617574686f72697a657220696e76616c696445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220aa46bbdaf0dcd448a871a43ca0fcf5bfe026d663d8f661320d139cc903e2ccf564736f6c634300060c0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001250756666657220706f696e7420746f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000085055464645527074000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Puffer point token
Arg [1] : _symbol (string): PUFFERpt

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 50756666657220706f696e7420746f6b656e0000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 5055464645527074000000000000000000000000000000000000000000000000


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.