ETH Price: $3,440.11 (+1.43%)
Gas: 4 Gwei

Token

Open Exchange Token (OX)
 

Overview

Max Total Supply

5,900,500,621.790980258989451491 OX

Holders

3,921 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH (-3.98%)

Onchain Market Cap

$10,092,098.25

Circulating Supply Market Cap

$10,164,079.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
40.374545616559510029 OX

Value
$0.07 ( ~2.03481753515633E-05 Eth) [0.0000%]
0x9d028D94F984A81Df53764a2E7387db85e2f00C2
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

OPNX (Open Exchange) is an exchange for trading crypto spot, derivatives, and claims on public orderbooks. OPNX's vision is to create a new standard for a radically transparent and accessible financial world.

Market

Volume (24H):$62.38
Market Capitalization:$10,164,079.00
Circulating Supply:5,944,828,355.00 OX
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OpenExchangeToken

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 5 : OpenExchangeToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {SuperallowlistERC20} from "../lib/superallowlist/src/SuperallowlistERC20.sol";

/**
 * @title Open Exchange Token (OX)
 * @notice OX is an ERC20 token deployed initially on Ethereum mainnet. It has a 
   maximum supply of 9,860,000,000 tokens, which is approx. 100 times the total supply of 
   the FLEX token on flexstatistics.com. OX implements a mutable minting mechanism
   through authorized "Minter" addresses and includes functionalities from the 
   SuperallowlistERC20 contract for managing the denylist and superallowlist.
 * @author opnxj
 */
contract OpenExchangeToken is SuperallowlistERC20 {
    // 100 times the max supply of FLEX on flexstatistics.com
    uint256 public constant MAX_MINTABLE_SUPPLY = 9_860_000_000 ether;
    uint256 public constant INITIAL_MINT_TO_TREASURY = 500_000_000 ether; // 500M
    uint256 public totalMintedSupply;
    bool public mintingStopped;

    mapping(address => bool) public minters;

    event MintingStopped();
    event MinterSet(address indexed minter, bool isMinter);

    modifier mintingNotStopped() {
        require(!mintingStopped, "Minting has been stopped");
        _;
    }

    modifier onlyMinters() {
        require(minters[msg.sender], "Sender is not a Minter");
        _;
    }

    constructor(
        address treasury
    ) SuperallowlistERC20("Open Exchange Token", "OX", 18) {
        totalMintedSupply += INITIAL_MINT_TO_TREASURY;
        _mint(treasury, INITIAL_MINT_TO_TREASURY);
    }

    /**
     * @notice Stops the future minting of tokens on this chain (not all chains)
     * @dev Only callable by the contract owner
     */
    function stopMinting() external onlyOwner {
        mintingStopped = true;
        emit MintingStopped();
    }

    /**
     * @notice Updates the Minter status of an address
     * @dev Only callable by the contract owner
     * @param minter The address for which the Minter status is being updated
     * @param isMinter Boolean indicating whether the address should be assigned or revoked the Minter role
     */
    function setMinter(address minter, bool isMinter) external onlyOwner {
        minters[minter] = isMinter;
        emit MinterSet(minter, isMinter);
    }

    /**
     * @notice Mints new OX tokens and assigns them to the specified address
     * @dev Only callable by addresses with the Minter role
     * @param to The address to which the newly minted tokens will be assigned
     * @param amount The amount of tokens to mint and assign to the `to` address
     */
    function mint(
        address to,
        uint256 amount
    ) external mintingNotStopped onlyMinters {
        require(
            totalMintedSupply + amount <= MAX_MINTABLE_SUPPLY,
            "Exceeds maximum supply"
        );
        totalMintedSupply += amount;
        _mint(to, amount);
    }

    /**
     * @notice Burns a specific amount of tokens
     * @dev This function permanently removes tokens from the total supply
     * @param amount The amount of tokens to burn
     */
    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }
}

File 2 of 5 : SuperallowlistERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {ERC20} from "../lib/solmate/src/tokens/ERC20.sol";
import {Ownable} from "../lib/openzeppelin-contracts/contracts/access/Ownable.sol";

/**
 * @title SuperallowlistERC20
 * @author opnxj
 * @dev The SuperallowlistERC20 contract is an abstract contract that extends the ERC20 token functionality.
 * It adds the ability to manage a denylist and a superallowlist, allowing certain addresses to be excluded from the denylist.
 * The owner can assign a denylister, who is responsible for managing the denylist and adding addresses to it.
 * Addresses on the superallowlist are immune from being denylisted and have additional privileges.
 */
abstract contract SuperallowlistERC20 is ERC20, Ownable {
    address public denylister;
    mapping(address => bool) public denylist;
    mapping(address => bool) public superallowlist;

    event DenylisterSet(address indexed addr);
    event DenylistAdded(address indexed addr);
    event DenylistRemoved(address indexed addr);
    event SuperallowlistAdded(address indexed addr);

    modifier notDenylisted(address addr) {
        require(!denylist[addr], "Address is denylisted");
        _;
    }

    modifier onlyDenylister() {
        require(
            msg.sender == denylister,
            "Only the denylister can call this function"
        );
        _;
    }

    modifier onlySuperallowlister() {
        require(
            msg.sender == owner() || superallowlist[msg.sender],
            "Only the owner or superallowlisted can call this function"
        );
        _;
    }

    /**
     * @notice Initializes the SuperallowlistERC20 contract.
     * @dev This constructor is called when deploying the contract. It sets the 
            initial values of the ERC20 token (name, symbol, and decimals) using the 
            provided parameters. The deployer of the contract becomes the denylister.
     * @param name The name of the token.
     * @param symbol The symbol of the token.
     * @param decimals The number of decimals used for token representation.
     */
    constructor(
        string memory name,
        string memory symbol,
        uint8 decimals
    ) ERC20(name, symbol, decimals) {
        denylister = msg.sender;
        emit DenylisterSet(msg.sender);
    }

    /**
     * @notice Sets the address assigned to the denylister role.
     * @dev Only the contract owner can call this function. It updates the denylister 
            address to the provided address.
     * @param addr The address to assign as the denylister.
     * Emits a `DenylisterSet` event on success.
     */
    function setDenylister(address addr) external onlyOwner {
        denylister = addr;
        emit DenylisterSet(addr);
    }

    /**
     * @notice Adds the specified address to the denylist.
     * @dev Only the denylister can call this function. The address will be prevented
            from performing transfers if it is on the denylist. Addresses on the 
            superallowlist cannot be added to the denylist using this function.
     * @param addr The address to add to the denylist.
     * Emits a `DenylistAdded` event on success.
     */
    function addToDenylist(address addr) external onlyDenylister {
        require(
            !superallowlist[addr],
            "Cannot add superallowlisted address to the denylist"
        );
        denylist[addr] = true;
        emit DenylistAdded(addr);
    }

    /**
     * @notice Removes the specified address from the denylist.
     * @dev Internal function used to remove an address from the denylist. This 
            function should only be called within the contract.
     * @param addr The address to remove from the denylist.
     * Emits a `DenylistRemoved` event on success.
     */
    function _removeFromDenylist(address addr) internal {
        require(denylist[addr], "Address is not in the denylist");
        denylist[addr] = false;
        emit DenylistRemoved(addr);
    }

    /**
     * @notice Removes the specified address from the denylist.
     * @dev Only the denylister can call this function. The address will be allowed 
            to perform transfers again.
     * @param addr The address to remove from the denylist.
     * Emits a `DenylistRemoved` event on success.
     */
    function removeFromDenylist(address addr) external onlyDenylister {
        _removeFromDenylist(addr);
    }

    /**
     * @notice Adds the specified address to the superallowlist.
     * @dev Only the owner can call this function. Once added, the address becomes a 
            superallowlisted address and cannot be denylisted. If the address was 
            previously on the denylist, it will be removed from the denylist.
     * @param addr The address to add to the superallowlist.
     * Emits a `DenylistRemoved` event if the address was previously on the denylist.
     * Emits a `SuperallowlistAdded` event on success.
     */
    function addToSuperallowlist(address addr) external onlySuperallowlister {
        if (denylist[addr]) {
            _removeFromDenylist(addr);
        }
        superallowlist[addr] = true;
        emit SuperallowlistAdded(addr);
    }

    /**
     * @notice Transfers a specified amount of tokens from the sender's account to the specified recipient.
     * @dev Overrides the ERC20 `transfer` function. Restricts the transfer if either
            the sender or recipient is denylisted.
     * @param to The address of the recipient.
     * @param value The amount of tokens to transfer.
     * @return A boolean indicating the success of the transfer.
     */
    function transfer(
        address to,
        uint256 value
    )
        public
        override
        notDenylisted(msg.sender)
        notDenylisted(to)
        returns (bool)
    {
        return super.transfer(to, value);
    }

    /**
     * @notice Transfers a specified amount of tokens from a specified address to the 
               specified recipient, on behalf of the sender.
     * @dev Overrides the ERC20 `transferFrom` function. Restricts the transfer if 
            either the sender, recipient, or `from` address is denylisted.
     * @param from The address from which to transfer tokens.
     * @param to The address of the recipient.
     * @param value The amount of tokens to transfer.
     * @return A boolean indicating the success of the transfer.
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    )
        public
        override
        notDenylisted(msg.sender)
        notDenylisted(from)
        notDenylisted(to)
        returns (bool)
    {
        return super.transferFrom(from, to, value);
    }
}

File 3 of 5 : ERC20.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;

/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)
/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)
/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.
abstract contract ERC20 {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

    event Transfer(address indexed from, address indexed to, uint256 amount);

    event Approval(address indexed owner, address indexed spender, uint256 amount);

    /*//////////////////////////////////////////////////////////////
                            METADATA STORAGE
    //////////////////////////////////////////////////////////////*/

    string public name;

    string public symbol;

    uint8 public immutable decimals;

    /*//////////////////////////////////////////////////////////////
                              ERC20 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 public totalSupply;

    mapping(address => uint256) public balanceOf;

    mapping(address => mapping(address => uint256)) public allowance;

    /*//////////////////////////////////////////////////////////////
                            EIP-2612 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 internal immutable INITIAL_CHAIN_ID;

    bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR;

    mapping(address => uint256) public nonces;

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;

        INITIAL_CHAIN_ID = block.chainid;
        INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator();
    }

    /*//////////////////////////////////////////////////////////////
                               ERC20 LOGIC
    //////////////////////////////////////////////////////////////*/

    function approve(address spender, uint256 amount) public virtual returns (bool) {
        allowance[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);

        return true;
    }

    function transfer(address to, uint256 amount) public virtual returns (bool) {
        balanceOf[msg.sender] -= amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(msg.sender, to, amount);

        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual returns (bool) {
        uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals.

        if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount;

        balanceOf[from] -= amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(from, to, amount);

        return true;
    }

    /*//////////////////////////////////////////////////////////////
                             EIP-2612 LOGIC
    //////////////////////////////////////////////////////////////*/

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual {
        require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED");

        // Unchecked because the only math done is incrementing
        // the owner's nonce which cannot realistically overflow.
        unchecked {
            address recoveredAddress = ecrecover(
                keccak256(
                    abi.encodePacked(
                        "\x19\x01",
                        DOMAIN_SEPARATOR(),
                        keccak256(
                            abi.encode(
                                keccak256(
                                    "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
                                ),
                                owner,
                                spender,
                                value,
                                nonces[owner]++,
                                deadline
                            )
                        )
                    )
                ),
                v,
                r,
                s
            );

            require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER");

            allowance[recoveredAddress][spender] = value;
        }

        emit Approval(owner, spender, value);
    }

    function DOMAIN_SEPARATOR() public view virtual returns (bytes32) {
        return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator();
    }

    function computeDomainSeparator() internal view virtual returns (bytes32) {
        return
            keccak256(
                abi.encode(
                    keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
                    keccak256(bytes(name)),
                    keccak256("1"),
                    block.chainid,
                    address(this)
                )
            );
    }

    /*//////////////////////////////////////////////////////////////
                        INTERNAL MINT/BURN LOGIC
    //////////////////////////////////////////////////////////////*/

    function _mint(address to, uint256 amount) internal virtual {
        totalSupply += amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(address(0), to, amount);
    }

    function _burn(address from, uint256 amount) internal virtual {
        balanceOf[from] -= amount;

        // Cannot underflow because a user's balance
        // will never be larger than the total supply.
        unchecked {
            totalSupply -= amount;
        }

        emit Transfer(from, address(0), amount);
    }
}

File 4 of 5 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^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() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(address(0));
    }

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

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

File 5 of 5 : Context.sol
// 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;
    }
}

Settings
{
  "remappings": [
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "openzeppelin/=lib/openzeppelin-contracts/contracts/",
    "pigeon/=lib/pigeon/",
    "solady/=lib/pigeon/lib/solady/src/",
    "solmate/=lib/solmate/src/",
    "superallowlist/=lib/superallowlist/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"treasury","type":"address"}],"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":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"}],"name":"DenylistAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"}],"name":"DenylistRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"}],"name":"DenylisterSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"bool","name":"isMinter","type":"bool"}],"name":"MinterSet","type":"event"},{"anonymous":false,"inputs":[],"name":"MintingStopped","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":"addr","type":"address"}],"name":"SuperallowlistAdded","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_MINT_TO_TREASURY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTABLE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addToDenylist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addToSuperallowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","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":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"denylist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"denylister","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingStopped","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"removeFromDenylist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setDenylister","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"bool","name":"isMinter","type":"bool"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"superallowlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMintedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040523480156200001157600080fd5b5060405162001b9e38038062001b9e8339810160408190526200003491620002b4565b6040518060400160405280601381526020017f4f70656e2045786368616e676520546f6b656e000000000000000000000000008152506040518060400160405280600281526020016109eb60f31b815250601282828282600090816200009b91906200038b565b506001620000aa83826200038b565b5060ff81166080524660a052620000c062000159565b60c05250620000d39150339050620001f5565b600780546001600160a01b031916339081179091556040517f48c6a8f586cf88e3c9563fb4c4570e5039eec72a74044ff721a437f0e2cfcf9a90600090a25050506b019d971e4fe8401e74000000600a600082825462000134919062000457565b90915550620001529050816b019d971e4fe8401e7400000062000247565b50620004fd565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516200018d91906200047f565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80600260008282546200025b919062000457565b90915550506001600160a01b0382166000818152600360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600060208284031215620002c757600080fd5b81516001600160a01b0381168114620002df57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200031157607f821691505b6020821081036200033257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200038657600081815260208120601f850160051c81016020861015620003615750805b601f850160051c820191505b8181101562000382578281556001016200036d565b5050505b505050565b81516001600160401b03811115620003a757620003a7620002e6565b620003bf81620003b88454620002fc565b8462000338565b602080601f831160018114620003f75760008415620003de5750858301515b600019600386901b1c1916600185901b17855562000382565b600085815260208120601f198616915b82811015620004285788860151825594840194600190910190840162000407565b5085821015620004475787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200047957634e487b7160e01b600052601160045260246000fd5b92915050565b60008083546200048f81620002fc565b60018281168015620004aa5760018114620004c057620004f1565b60ff1984168752821515830287019450620004f1565b8760005260208060002060005b85811015620004e85781548a820152908401908201620004cd565b50505082870194505b50929695505050505050565b60805160a05160c0516116716200052d60003960006108f3015260006108be015260006102a801526116716000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063bcc76c60116100a2578063f2fde38b11610071578063f2fde38b14610460578063f339292f14610473578063f46eccc414610480578063fa790141146104a357600080fd5b8063bcc76c60146103fc578063cf456ae71461040f578063d505accf14610422578063dd62ed3e1461043557600080fd5b80639462333a116100de5780639462333a146103ab57806395d89b41146103ce5780639805cc73146103d6578063a9059cbb146103e957600080fd5b806370a082311461033e578063715018a61461035e5780637ecebe00146103665780638da5cb5b1461038657600080fd5b80632d0c0959116101875780633e3e0b12116101565780633e3e0b121461030757806340c10f191461030f57806342966c6814610322578063601e26031461033557600080fd5b80632d0c095914610290578063313ce567146102a35780633371bfff146102dc5780633644e515146102ff57600080fd5b806318160ddd116101c357806318160ddd1461024057806319b7af4214610257578063228b547e1461026a57806323b872dd1461027d57600080fd5b806302c52db0146101ea57806306fdde03146101ff578063095ea7b31461021d575b600080fd5b6101fd6101f83660046112bc565b6104b6565b005b6102076104f5565b60405161021491906112de565b60405180910390f35b61023061022b36600461132c565b610583565b6040519015158152602001610214565b61024960025481565b604051908152602001610214565b6102496b019d971e4fe8401e7400000081565b6101fd6102783660046112bc565b6105f0565b61023061028b366004611356565b6106eb565b6101fd61029e3660046112bc565b6107aa565b6102ca7f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff9091168152602001610214565b6102306102ea3660046112bc565b60086020526000908152604090205460ff1681565b6102496108ba565b6101fd610915565b6101fd61031d36600461132c565b610955565b6101fd610330366004611392565b610a88565b610249600a5481565b61024961034c3660046112bc565b60036020526000908152604090205481565b6101fd610a92565b6102496103743660046112bc565b60056020526000908152604090205481565b6006546001600160a01b03165b6040516001600160a01b039091168152602001610214565b6102306103b93660046112bc565b60096020526000908152604090205460ff1681565b610207610aa6565b6101fd6103e43660046112bc565b610ab3565b6102306103f736600461132c565b610b05565b600754610393906001600160a01b031681565b6101fd61041d3660046113ab565b610b86565b6101fd6104303660046113e7565b610bed565b61024961044336600461145a565b600460209081526000928352604080842090915290825290205481565b6101fd61046e3660046112bc565b610e31565b600b546102309060ff1681565b61023061048e3660046112bc565b600c6020526000908152604090205460ff1681565b6102496b1fdc0037090cf06d0400000081565b6007546001600160a01b031633146104e95760405162461bcd60e51b81526004016104e09061148d565b60405180910390fd5b6104f281610ea7565b50565b60008054610502906114d7565b80601f016020809104026020016040519081016040528092919081815260200182805461052e906114d7565b801561057b5780601f106105505761010080835404028352916020019161057b565b820191906000526020600020905b81548152906001019060200180831161055e57829003601f168201915b505050505081565b3360008181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105de9086815260200190565b60405180910390a35060015b92915050565b6007546001600160a01b0316331461061a5760405162461bcd60e51b81526004016104e09061148d565b6001600160a01b03811660009081526009602052604090205460ff161561069f5760405162461bcd60e51b815260206004820152603360248201527f43616e6e6f7420616464207375706572616c6c6f776c69737465642061646472604482015272195cdcc81d1bc81d1a194819195b9e5b1a5cdd606a1b60648201526084016104e0565b6001600160a01b038116600081815260086020526040808220805460ff19166001179055517f1e638702ca4cce73afd29426329293779785870e8fc1bcf32a7fc2038b3b81289190a250565b3360008181526008602052604081205490919060ff161561071e5760405162461bcd60e51b81526004016104e090611511565b6001600160a01b038516600090815260086020526040902054859060ff16156107595760405162461bcd60e51b81526004016104e090611511565b6001600160a01b038516600090815260086020526040902054859060ff16156107945760405162461bcd60e51b81526004016104e090611511565b61079f878787610f58565b979650505050505050565b6006546001600160a01b03163314806107d257503360009081526009602052604090205460ff165b6108445760405162461bcd60e51b815260206004820152603960248201527f4f6e6c7920746865206f776e6572206f72207375706572616c6c6f776c69737460448201527f65642063616e2063616c6c20746869732066756e6374696f6e0000000000000060648201526084016104e0565b6001600160a01b03811660009081526008602052604090205460ff161561086e5761086e81610ea7565b6001600160a01b038116600081815260096020526040808220805460ff19166001179055517f2ac59b0a5459c3d0fb90fe9d506805fd6f652d10b1c19b02da21f385ad783a149190a250565b60007f000000000000000000000000000000000000000000000000000000000000000046146108f0576108eb611038565b905090565b507f000000000000000000000000000000000000000000000000000000000000000090565b61091d6110d2565b600b805460ff191660011790556040517f6295e5261d0e74d3e3bffffc52975d8ed333ad3846118f5d02f0bfe5fe88b56c90600090a1565b600b5460ff16156109a85760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e6720686173206265656e2073746f70706564000000000000000060448201526064016104e0565b336000908152600c602052604090205460ff16610a005760405162461bcd60e51b815260206004820152601660248201527529b2b73232b91034b9903737ba10309026b4b73a32b960511b60448201526064016104e0565b6b1fdc0037090cf06d0400000081600a54610a1b9190611556565b1115610a625760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b60448201526064016104e0565b80600a6000828254610a749190611556565b90915550610a849050828261112c565b5050565b6104f23382611186565b610a9a6110d2565b610aa460006111e8565b565b60018054610502906114d7565b610abb6110d2565b600780546001600160a01b0319166001600160a01b0383169081179091556040517f48c6a8f586cf88e3c9563fb4c4570e5039eec72a74044ff721a437f0e2cfcf9a90600090a250565b3360008181526008602052604081205490919060ff1615610b385760405162461bcd60e51b81526004016104e090611511565b6001600160a01b038416600090815260086020526040902054849060ff1615610b735760405162461bcd60e51b81526004016104e090611511565b610b7d858561123a565b95945050505050565b610b8e6110d2565b6001600160a01b0382166000818152600c6020908152604091829020805460ff191685151590811790915591519182527f583b0aa0e528532caf4b907c11d7a8158a122fe2a6fb80cd9b09776ebea8d92d910160405180910390a25050565b42841015610c3d5760405162461bcd60e51b815260206004820152601760248201527f5045524d49545f444541444c494e455f4558504952454400000000000000000060448201526064016104e0565b60006001610c496108ba565b6001600160a01b038a811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa158015610d55573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590610d8b5750876001600160a01b0316816001600160a01b0316145b610dc85760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b60448201526064016104e0565b6001600160a01b0390811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b610e396110d2565b6001600160a01b038116610e9e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e0565b6104f2816111e8565b6001600160a01b03811660009081526008602052604090205460ff16610f0f5760405162461bcd60e51b815260206004820152601e60248201527f41646472657373206973206e6f7420696e207468652064656e796c697374000060448201526064016104e0565b6001600160a01b038116600081815260086020526040808220805460ff19169055517f03089c6a20582bc5fc64476c0c293083cbe3612cd19aafd3d3767ac958ec0c9a9190a250565b6001600160a01b03831660009081526004602090815260408083203384529091528120546000198114610fb457610f8f8382611569565b6001600160a01b03861660009081526004602090815260408083203384529091529020555b6001600160a01b03851660009081526003602052604081208054859290610fdc908490611569565b90915550506001600160a01b038085166000818152600360205260409081902080548701905551909187169060008051602061161c833981519152906110259087815260200190565b60405180910390a3506001949350505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f600060405161106a919061157c565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6006546001600160a01b03163314610aa45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e0565b806002600082825461113e9190611556565b90915550506001600160a01b03821660008181526003602090815260408083208054860190555184815260008051602061161c83398151915291015b60405180910390a35050565b6001600160a01b038216600090815260036020526040812080548392906111ae908490611569565b90915550506002805482900390556040518181526000906001600160a01b0384169060008051602061161c8339815191529060200161117a565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360009081526003602052604081208054839190839061125b908490611569565b90915550506001600160a01b0383166000818152600360205260409081902080548501905551339060008051602061161c833981519152906105de9086815260200190565b80356001600160a01b03811681146112b757600080fd5b919050565b6000602082840312156112ce57600080fd5b6112d7826112a0565b9392505050565b600060208083528351808285015260005b8181101561130b578581018301518582016040015282016112ef565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561133f57600080fd5b611348836112a0565b946020939093013593505050565b60008060006060848603121561136b57600080fd5b611374846112a0565b9250611382602085016112a0565b9150604084013590509250925092565b6000602082840312156113a457600080fd5b5035919050565b600080604083850312156113be57600080fd5b6113c7836112a0565b9150602083013580151581146113dc57600080fd5b809150509250929050565b600080600080600080600060e0888a03121561140257600080fd5b61140b886112a0565b9650611419602089016112a0565b95506040880135945060608801359350608088013560ff8116811461143d57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561146d57600080fd5b611476836112a0565b9150611484602084016112a0565b90509250929050565b6020808252602a908201527f4f6e6c79207468652064656e796c69737465722063616e2063616c6c207468696040820152693990333ab731ba34b7b760b11b606082015260800190565b600181811c908216806114eb57607f821691505b60208210810361150b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601590820152741059191c995cdcc81a5cc819195b9e5b1a5cdd1959605a1b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156105ea576105ea611540565b818103818111156105ea576105ea611540565b600080835481600182811c91508083168061159857607f831692505b602080841082036115b757634e487b7160e01b86526022600452602486fd5b8180156115cb57600181146115e05761160d565b60ff198616895284151585028901965061160d565b60008a81526020902060005b868110156116055781548b8201529085019083016115ec565b505084890196505b50949897505050505050505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a31e2c7247710ce079dbdc3e6af663f4fc97a29326bf0c7b53ad360ed3a2fa6164736f6c634300081300330000000000000000000000005f0c6669bb3619bf732ab805695414d5832257ab

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063bcc76c60116100a2578063f2fde38b11610071578063f2fde38b14610460578063f339292f14610473578063f46eccc414610480578063fa790141146104a357600080fd5b8063bcc76c60146103fc578063cf456ae71461040f578063d505accf14610422578063dd62ed3e1461043557600080fd5b80639462333a116100de5780639462333a146103ab57806395d89b41146103ce5780639805cc73146103d6578063a9059cbb146103e957600080fd5b806370a082311461033e578063715018a61461035e5780637ecebe00146103665780638da5cb5b1461038657600080fd5b80632d0c0959116101875780633e3e0b12116101565780633e3e0b121461030757806340c10f191461030f57806342966c6814610322578063601e26031461033557600080fd5b80632d0c095914610290578063313ce567146102a35780633371bfff146102dc5780633644e515146102ff57600080fd5b806318160ddd116101c357806318160ddd1461024057806319b7af4214610257578063228b547e1461026a57806323b872dd1461027d57600080fd5b806302c52db0146101ea57806306fdde03146101ff578063095ea7b31461021d575b600080fd5b6101fd6101f83660046112bc565b6104b6565b005b6102076104f5565b60405161021491906112de565b60405180910390f35b61023061022b36600461132c565b610583565b6040519015158152602001610214565b61024960025481565b604051908152602001610214565b6102496b019d971e4fe8401e7400000081565b6101fd6102783660046112bc565b6105f0565b61023061028b366004611356565b6106eb565b6101fd61029e3660046112bc565b6107aa565b6102ca7f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff9091168152602001610214565b6102306102ea3660046112bc565b60086020526000908152604090205460ff1681565b6102496108ba565b6101fd610915565b6101fd61031d36600461132c565b610955565b6101fd610330366004611392565b610a88565b610249600a5481565b61024961034c3660046112bc565b60036020526000908152604090205481565b6101fd610a92565b6102496103743660046112bc565b60056020526000908152604090205481565b6006546001600160a01b03165b6040516001600160a01b039091168152602001610214565b6102306103b93660046112bc565b60096020526000908152604090205460ff1681565b610207610aa6565b6101fd6103e43660046112bc565b610ab3565b6102306103f736600461132c565b610b05565b600754610393906001600160a01b031681565b6101fd61041d3660046113ab565b610b86565b6101fd6104303660046113e7565b610bed565b61024961044336600461145a565b600460209081526000928352604080842090915290825290205481565b6101fd61046e3660046112bc565b610e31565b600b546102309060ff1681565b61023061048e3660046112bc565b600c6020526000908152604090205460ff1681565b6102496b1fdc0037090cf06d0400000081565b6007546001600160a01b031633146104e95760405162461bcd60e51b81526004016104e09061148d565b60405180910390fd5b6104f281610ea7565b50565b60008054610502906114d7565b80601f016020809104026020016040519081016040528092919081815260200182805461052e906114d7565b801561057b5780601f106105505761010080835404028352916020019161057b565b820191906000526020600020905b81548152906001019060200180831161055e57829003601f168201915b505050505081565b3360008181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105de9086815260200190565b60405180910390a35060015b92915050565b6007546001600160a01b0316331461061a5760405162461bcd60e51b81526004016104e09061148d565b6001600160a01b03811660009081526009602052604090205460ff161561069f5760405162461bcd60e51b815260206004820152603360248201527f43616e6e6f7420616464207375706572616c6c6f776c69737465642061646472604482015272195cdcc81d1bc81d1a194819195b9e5b1a5cdd606a1b60648201526084016104e0565b6001600160a01b038116600081815260086020526040808220805460ff19166001179055517f1e638702ca4cce73afd29426329293779785870e8fc1bcf32a7fc2038b3b81289190a250565b3360008181526008602052604081205490919060ff161561071e5760405162461bcd60e51b81526004016104e090611511565b6001600160a01b038516600090815260086020526040902054859060ff16156107595760405162461bcd60e51b81526004016104e090611511565b6001600160a01b038516600090815260086020526040902054859060ff16156107945760405162461bcd60e51b81526004016104e090611511565b61079f878787610f58565b979650505050505050565b6006546001600160a01b03163314806107d257503360009081526009602052604090205460ff165b6108445760405162461bcd60e51b815260206004820152603960248201527f4f6e6c7920746865206f776e6572206f72207375706572616c6c6f776c69737460448201527f65642063616e2063616c6c20746869732066756e6374696f6e0000000000000060648201526084016104e0565b6001600160a01b03811660009081526008602052604090205460ff161561086e5761086e81610ea7565b6001600160a01b038116600081815260096020526040808220805460ff19166001179055517f2ac59b0a5459c3d0fb90fe9d506805fd6f652d10b1c19b02da21f385ad783a149190a250565b60007f000000000000000000000000000000000000000000000000000000000000000146146108f0576108eb611038565b905090565b507f0d054b9e5e062486f6d36e20d1a5b0e14a79ccac78031a7901a1df355a1e0d6090565b61091d6110d2565b600b805460ff191660011790556040517f6295e5261d0e74d3e3bffffc52975d8ed333ad3846118f5d02f0bfe5fe88b56c90600090a1565b600b5460ff16156109a85760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e6720686173206265656e2073746f70706564000000000000000060448201526064016104e0565b336000908152600c602052604090205460ff16610a005760405162461bcd60e51b815260206004820152601660248201527529b2b73232b91034b9903737ba10309026b4b73a32b960511b60448201526064016104e0565b6b1fdc0037090cf06d0400000081600a54610a1b9190611556565b1115610a625760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b60448201526064016104e0565b80600a6000828254610a749190611556565b90915550610a849050828261112c565b5050565b6104f23382611186565b610a9a6110d2565b610aa460006111e8565b565b60018054610502906114d7565b610abb6110d2565b600780546001600160a01b0319166001600160a01b0383169081179091556040517f48c6a8f586cf88e3c9563fb4c4570e5039eec72a74044ff721a437f0e2cfcf9a90600090a250565b3360008181526008602052604081205490919060ff1615610b385760405162461bcd60e51b81526004016104e090611511565b6001600160a01b038416600090815260086020526040902054849060ff1615610b735760405162461bcd60e51b81526004016104e090611511565b610b7d858561123a565b95945050505050565b610b8e6110d2565b6001600160a01b0382166000818152600c6020908152604091829020805460ff191685151590811790915591519182527f583b0aa0e528532caf4b907c11d7a8158a122fe2a6fb80cd9b09776ebea8d92d910160405180910390a25050565b42841015610c3d5760405162461bcd60e51b815260206004820152601760248201527f5045524d49545f444541444c494e455f4558504952454400000000000000000060448201526064016104e0565b60006001610c496108ba565b6001600160a01b038a811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa158015610d55573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590610d8b5750876001600160a01b0316816001600160a01b0316145b610dc85760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b60448201526064016104e0565b6001600160a01b0390811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b610e396110d2565b6001600160a01b038116610e9e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e0565b6104f2816111e8565b6001600160a01b03811660009081526008602052604090205460ff16610f0f5760405162461bcd60e51b815260206004820152601e60248201527f41646472657373206973206e6f7420696e207468652064656e796c697374000060448201526064016104e0565b6001600160a01b038116600081815260086020526040808220805460ff19169055517f03089c6a20582bc5fc64476c0c293083cbe3612cd19aafd3d3767ac958ec0c9a9190a250565b6001600160a01b03831660009081526004602090815260408083203384529091528120546000198114610fb457610f8f8382611569565b6001600160a01b03861660009081526004602090815260408083203384529091529020555b6001600160a01b03851660009081526003602052604081208054859290610fdc908490611569565b90915550506001600160a01b038085166000818152600360205260409081902080548701905551909187169060008051602061161c833981519152906110259087815260200190565b60405180910390a3506001949350505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f600060405161106a919061157c565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6006546001600160a01b03163314610aa45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e0565b806002600082825461113e9190611556565b90915550506001600160a01b03821660008181526003602090815260408083208054860190555184815260008051602061161c83398151915291015b60405180910390a35050565b6001600160a01b038216600090815260036020526040812080548392906111ae908490611569565b90915550506002805482900390556040518181526000906001600160a01b0384169060008051602061161c8339815191529060200161117a565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360009081526003602052604081208054839190839061125b908490611569565b90915550506001600160a01b0383166000818152600360205260409081902080548501905551339060008051602061161c833981519152906105de9086815260200190565b80356001600160a01b03811681146112b757600080fd5b919050565b6000602082840312156112ce57600080fd5b6112d7826112a0565b9392505050565b600060208083528351808285015260005b8181101561130b578581018301518582016040015282016112ef565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561133f57600080fd5b611348836112a0565b946020939093013593505050565b60008060006060848603121561136b57600080fd5b611374846112a0565b9250611382602085016112a0565b9150604084013590509250925092565b6000602082840312156113a457600080fd5b5035919050565b600080604083850312156113be57600080fd5b6113c7836112a0565b9150602083013580151581146113dc57600080fd5b809150509250929050565b600080600080600080600060e0888a03121561140257600080fd5b61140b886112a0565b9650611419602089016112a0565b95506040880135945060608801359350608088013560ff8116811461143d57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561146d57600080fd5b611476836112a0565b9150611484602084016112a0565b90509250929050565b6020808252602a908201527f4f6e6c79207468652064656e796c69737465722063616e2063616c6c207468696040820152693990333ab731ba34b7b760b11b606082015260800190565b600181811c908216806114eb57607f821691505b60208210810361150b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601590820152741059191c995cdcc81a5cc819195b9e5b1a5cdd1959605a1b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156105ea576105ea611540565b818103818111156105ea576105ea611540565b600080835481600182811c91508083168061159857607f831692505b602080841082036115b757634e487b7160e01b86526022600452602486fd5b8180156115cb57600181146115e05761160d565b60ff198616895284151585028901965061160d565b60008a81526020902060005b868110156116055781548b8201529085019083016115ec565b505084890196505b50949897505050505050505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a31e2c7247710ce079dbdc3e6af663f4fc97a29326bf0c7b53ad360ed3a2fa6164736f6c63430008130033

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

0000000000000000000000005f0c6669bb3619bf732ab805695414d5832257ab

-----Decoded View---------------
Arg [0] : treasury (address): 0x5f0c6669bb3619bF732aB805695414D5832257ab

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005f0c6669bb3619bf732ab805695414d5832257ab


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.