ETH Price: $2,671.60 (+1.94%)

Token

DUST (DUST)
 

Overview

Max Total Supply

1,371,021.125523148147612795 DUST

Holders

209

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
wreckinbeard.eth
Balance
500 DUST

Value
$0.00
0x2A9961aA2B35A992026304A7B92Fba073a85eE91
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Dust

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 9999 runs

Other Settings:
byzantium EvmVersion, MIT license
File 1 of 11 : Dust.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;

import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract Dust is AccessControl, ERC20 {
    using SafeMath for uint256;

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE");
    bytes32 public constant FEE_SETTER_ROLE = keccak256("FEE_SETTER_ROLE");

    // Token details
    mapping (address => uint256) _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
   
    mapping (address => bool) public allowedTransfer;
    bool public transferRestricted;
    mapping (address => bool) allowedContracts; 	
     
    // Set total supply here
    uint256 private _tTotal;

    // Tracker for total burned amount
    uint256 private _bTotal;

    // Set the name, symbol, and decimals here
    string constant _name = "DUST";
    string constant _symbol = "DUST";
    uint8 constant _decimals = 18;

    address public WETH;
    address public constant _burnAddress = 0x000000000000000000000000000000000000dEaD;

    // @dev: disallows contracts from entering
    modifier notContract() {
        require(!_isContract(msg.sender), "Contract not allowed");
        require(msg.sender == tx.origin, "Proxy contract not allowed");
        _;
    }

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    // Edit the constructor in order to declare default fees on deployment
    constructor () ERC20("","") {
        _setupRole(MINTER_ROLE, msg.sender);
        _setupRole(BURNER_ROLE, msg.sender);
        _setupRole(FEE_SETTER_ROLE, msg.sender);
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);

        allowedTransfer[_msgSender()] = true;
        allowedTransfer[address(this)] = true;
        allowedTransfer[_burnAddress] = true;   
        transferRestricted = true;
    }

    // @dev: returns the size of the code of an address. If >0, address is a contract. 
    function _isContract(address _addr) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(_addr)
        }
        return size > 0;
    }

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

    function symbol() public pure override returns (string memory) {
        return _symbol;
    }

    function decimals() public pure override returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function totalBurned() public view returns (uint256) {
        return _balances[_burnAddress].add(_bTotal);
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        require(msg.sender == tx.origin || allowedContracts[msg.sender], "Proxy contract not allowed");
        if(transferRestricted) { 
            require(allowedTransfer[msg.sender] || allowedTransfer[recipient], "Transfer not allowed"); 
        }
        if (_isContract(msg.sender)) {
            require(allowedContracts[msg.sender], "This contract is not approved to interact with DUST");
        }
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        require(msg.sender == tx.origin || allowedContracts[msg.sender], "Proxy contract not allowed");
        if(transferRestricted) { 
            require(allowedTransfer[sender] || allowedTransfer[recipient], "Transfer not allowed"); 
        }
        if (_isContract(msg.sender)) {
            require(allowedContracts[msg.sender], "This contract is not approved to interact with DUST");
        }
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "BEP20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual override returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual override returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "BEP20: decreased allowance below zero"));
        return true;
    }

    function setTransferRestricted(bool _restricted) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "DUST: NOT_ALLOWED");
        transferRestricted = _restricted;
    }
    
    function setTransferAllowed(address _account, bool _flag) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "DUST: NOT_ALLOWED");
        allowedTransfer[_account] = _flag;
    }

    function addGarageContract(address _gameAddress) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "DUST: NOT_ALLOWED");
        grantRole(MINTER_ROLE, _gameAddress);
        grantRole(BURNER_ROLE, _gameAddress);
        allowedContracts[_gameAddress] = true;
        allowedTransfer[_gameAddress] = true;
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal override {
        require(owner != address(0), "BEP20: approve from the zero address");
        require(spender != address(0), "BEP20: approve to the zero address");

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


    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "BEP20: transfer from the zero address");
        require(to != address(0), "BEP20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
               
        _balances[from] = _balances[from].sub(amount, "Insufficient Balance");
        _balances[to] = _balances[to].add(amount);

        emit Transfer(from, to, amount);
    }


    function getCirculatingSupply() public view returns (uint256) {
        return _tTotal.sub(balanceOf(_burnAddress)).sub(balanceOf(address(0)));
    }

    // Rescue bnb that is sent here by mistake
    function rescueBNB(uint256 amount, address to) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "DUST: NOT_ALLOWED");
        payable(to).transfer(amount);
    }

    // Rescue tokens that are sent here by mistake
    function rescueToken(IERC20 token, uint256 amount, address to) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "DUST: NOT_ALLOWED");
        if( token.balanceOf(address(this)) < amount ) {
            amount = token.balanceOf(address(this));
        }
        token.transfer(to, amount);
    }

    /**	
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.	
     *	
     * Does not update the allowance amount in case of infinite allowance.	
     * Revert if not enough allowance is available.	
     *	
     * Might emit an {Approval} event.	
     */	
    function _spendAllowance(	
        address owner,	
        address spender,	
        uint256 amount	
    ) internal override virtual {	
        uint256 currentAllowance = allowance(owner, spender);	
        if (currentAllowance != type(uint256).max) {	
            require(currentAllowance >= amount, "ERC20: insufficient allowance");	
            unchecked {	
                _approve(owner, spender, currentAllowance - 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) override internal {
        require(account != address(0), 'BEP20: mint to the zero address');

        _tTotal = _tTotal.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) override internal {	
        require(account != address(0), 'BEP20: burn from the zero address');	
        _balances[account] = _balances[account].sub(amount, 'BEP20: burn amount exceeds balance');	
        _tTotal = _tTotal.sub(amount);
        _bTotal = _bTotal.add(amount);	
        emit Transfer(account, address(0), amount);	
    }

    
    function burnFrom(address _from, uint256 _amount) public {	
        require(hasRole(BURNER_ROLE, msg.sender), "DUST: NOT_ALLOWED");	
        _spendAllowance(_from, msg.sender, _amount);
        _burn(_from, _amount);	
        
    }	

    function mint(address _to, uint256 _amount) public {
        require(hasRole(MINTER_ROLE, msg.sender), "DUST: NOT_ALLOWED");
        _mint(_to, _amount);
        
    }

    function burn(uint256 _amount) public {
        require(hasRole(BURNER_ROLE, msg.sender), "DUST: NOT_ALLOWED");
        _burn(msg.sender, _amount);

    }
	
    function setAllowedContract(address _contract, bool flag) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "DUST: NOT_ALLOWED");
        require(_isContract(_contract), "extcodesize != 0: ensure this is a contract, not a wallet!");
        allowedContracts[_contract] = flag;
    }
}

File 2 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

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

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

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

File 3 of 11 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

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

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

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 4 of 11 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            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) {
        unchecked {
            // 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) {
        unchecked {
            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) {
        unchecked {
            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) {
        return a + b;
    }

    /**
     * @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) {
        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) {
        return a * b;
    }

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        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) {
        unchecked {
            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.
     *
     * 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) {
        unchecked {
            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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 5 of 11 : 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;
    }
}

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 7 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 8 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 9 of 11 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 11 of 11 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 9999
  },
  "viaIR": true,
  "evmVersion": "byzantium",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE_SETTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_gameAddress","type":"address"}],"name":"addGarageContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowedTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"rescueBNB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"rescueToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"setAllowedContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_flag","type":"bool"}],"name":"setTransferAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_restricted","type":"bool"}],"name":"setTransferRestricted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalBurned","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":"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":[],"name":"transferRestricted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

604060808152346200058757620000156200058c565b6200001f6200058c565b908051906001604060020a03808311620005585760048054946002918287049560018098169586156200054d575b602096878910146200051f578190601f98898111620004ca575b5087908983116001146200045d5760009262000451575b505060088202850a6000190419169084021781555b8151938411620004235760055490878483049216801562000418575b86831014620003ea5750858111620003a0575b508394808411600114620003315750600894600092918462000325575b5050828102928502900a600019041916176005555b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a680600052600082528460002033600052825260ff85600020541615620002e5575b507f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84880600052600082528460002033600052825260ff85600020541615620002a5575b507fe6ad9a47fbda1dc18de1eb5eeb7d935e5e81b4748f3cfc61e233e64f8818206080600052600082528460002033600052825260ff8560002054161562000265575b5060008052600081528360002033600052815260ff8460002054161562000227575b528160002060ff199082828254161790553060005282600020828282541617905561dead60005282600020828282541617905560095416176009555161238a9081620005b18239f35b600080526000815283600020336000528152836000208360ff19825416179055333360006000805160206200293b833981519152818851a4620001de565b806000526000825284600020336000528252846000208460ff19825416179055339033906000805160206200293b83398151915260008851a438620001bc565b806000526000825284600020336000528252846000208460ff19825416179055339033906000805160206200293b83398151915260008851a43862000179565b806000526000825284600020336000528252846000208460ff19825416179055339033906000805160206200293b83398151915260008851a43862000136565b015191503880620000df565b9486939195601f198316916005600052866000209260005b8181106200038857509784600899106200036d575b505050500201600555620000f4565b01519083168702840a6000190419169055388080806200035e565b828a015185558a979094019391880191880162000349565b60056000528460002085878181880104830193828810620003e0575b0104019087905b828110620003d3575050620000c2565b60008155018790620003c3565b93508293620003bc565b6022907f4e487b71000000000000000000000000000000000000000000000000000000006000525260246000fd5b91607f1691620000af565b6041907f4e487b71000000000000000000000000000000000000000000000000000000006000525260246000fd5b0151905038806200007e565b8a9350869291601f19831691866000528a6000209260005b8c828210620004b0575050841162000495575b5050500201815562000093565b01516008838c1602840a600019041916905538808062000488565b8484015186558f988c985090950194938401930162000475565b9091508360005287600020888a818187010483019382871062000515575b9186959493918e93010401915b8281106200050557505062000067565b600081558594508c9101620004f5565b93508293620004e8565b6022837f4e487b71000000000000000000000000000000000000000000000000000000006000525260246000fd5b96607f16966200004d565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b60405190602082018281106001604060020a0382111762000558576040526000825256fe60806040818152600480361015610016575b600080fd5b6000927c010000000000000000000000000000000000000000000000000000000084350490816301ffc9a7146113805750806306fdde03146107f2578063095ea7b31461135657806318160ddd1461133757806320606b70146112fc57806323b872dd1461118d578063248a9ca314611164578063282c51f314611129578063293e995114610f7a5780632b112e4914610f015780632f2ff15d14610e50578063313ce56714610e3457806336568abe14610d6f5780633950935114610d1a57806340c10f1914610be957806342966c6814610b8d57806348709a9314610b6957806355de1faf14610a6657806362695eae14610a1d57806370a08231146109d957806370bb0a161461098b57806379cc67901461084f57806391d14854146107fe57806395d89b41146107f2578063a217fddf146107d7578063a457c2d714610721578063a8b80428146106aa578063a9059cbb146105d7578063ad5c4648146105a2578063bd3900c01461058557838163c3e0dbe91461050957508063d5391393146104ce578063d547741f14610491578063d89135cd1461045d578063dd62ed3e14610407578063e9347683146103cc5763f8a67a62146101d957600080fd5b346103015760606003193601126103015780359073ffffffffffffffffffffffffffffffffffffffff8083168093036103c857602435906044359081168091036103c457819286805286602093818552878220338352855261024060ff8984205416611d43565b8751907f70a082310000000000000000000000000000000000000000000000000000000091828152308582015286816024818c5afa9081156103ba57849161038d575b5010610319575b5090604491849596885197889586947fa9059cbb00000000000000000000000000000000000000000000000000000000865285015260248401525af1801561030c576102d557505051f35b81813d8311610305575b6102e98183611a69565b810103126103015751801515036102fd5751f35b5080fd5b8280fd5b503d6102df565b50505051903d90823e3d90fd5b9394505085519283523081840152868484602481895afa80156103815785948291610349575b509450604461028a565b858194939692503d831161037a575b6103628183611a69565b81010312610376579051849390604461033f565b8380fd5b503d610358565b508651903d90823e3d90fd5b90508681813d83116103b3575b6103a48183611a69565b81010312610376575138610283565b503d61039a565b8a513d86823e3d90fd5b8580fd5b8480fd5b5050346102fd57816003193601126102fd57602090517fe6ad9a47fbda1dc18de1eb5eeb7d935e5e81b4748f3cfc61e233e64f881820608152f35b5050346102fd57806003193601126102fd5780602092610425611529565b61042d61154c565b73ffffffffffffffffffffffffffffffffffffffff91821683526007865283832091168252845220549051908152f35b5050346102fd57816003193601126102fd5761048a818361dead60209552600685522054600c5490611b2e565b9051908152f35b50346103015781600319360112610301576104cb90356104af61154c565b90808552846020526104c66001858720015461157e565b611aaa565b51f35b5050346102fd57816003193601126102fd57602090517f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a68152f35b919050346102fd57826003193601126102fd57818080923561052961154c565b8280528260205286832033845260205261054860ff8885205416611d43565b8290821561057b575b73ffffffffffffffffffffffffffffffffffffffff1690f1156105715751f35b51903d90823e3d90fd5b6108fc9150610551565b5050346102fd57816003193601126102fd576020905161dead8152f35b5050346102fd57816003193601126102fd5760209073ffffffffffffffffffffffffffffffffffffffff600d54169051908152f35b5050346102fd57806003193601126102fd5761062a602092826105f8611529565b913233148015610696575b61060c90611baa565b60ff6009541661064d575b333b610631575b50506024359033611f1d565b5160018152f35b338152600a865220546106469060ff16611c74565b823861061e565b3381526008865260ff82822054168015610670575b61066b90611c0f565b610617565b5073ffffffffffffffffffffffffffffffffffffffff831681528181205460ff16610662565b50338152600a86528181205460ff16610603565b5050346102fd57806003193601126102fd576104cb6106c7611529565b73ffffffffffffffffffffffffffffffffffffffff6106e461156f565b918580528560205284862033875260205261070460ff8688205416611d43565b16845260086020528284209060ff60ff1983541691151516179055565b5050346102fd57806003193601126102fd5761062a6020926107d083610745611529565b923381526007875281812073ffffffffffffffffffffffffffffffffffffffff851682528752205484519061077982611a4d565b602582527f42455032303a2064656372656173656420616c6c6f77616e63652062656c6f77878301527f207a65726f0000000000000000000000000000000000000000000000000000008683015260243590611cff565b9033611da8565b5050346102fd57816003193601126102fd5751908152602090f35b5050505061001161148c565b50346103015781600319360112610301578160209360ff9261081e61154c565b9035825281865273ffffffffffffffffffffffffffffffffffffffff83832091168252855220541690519015158152f35b509190346102fd57806003193601126102fd5761086a611529565b602435907f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8488452836020528284203385526020526108ad60ff8486205416611d43565b73ffffffffffffffffffffffffffffffffffffffff81168452600760205282842033855260205282842054947fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860361090c575b50906104cb916121b7565b82861061092e5750610926826104cb949596033383611da8565b849392610901565b60649060208551917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b5034610301576020600319360112610301573580151580910361030157828052826020528183203384526020526109c760ff8385205416611d43565b60ff60ff196009541691161760095551f35b5050346102fd5760206003193601126102fd578060209273ffffffffffffffffffffffffffffffffffffffff610a0d611529565b1681526006845220549051908152f35b5050346102fd5760206003193601126102fd5760ff8160209373ffffffffffffffffffffffffffffffffffffffff610a53611529565b1681526008855220541690519015158152f35b5034610301578160031936011261030157610a7f611529565b610a8761156f565b9184805284602052838520338652602052610aa760ff8587205416611d43565b813b15610ae657509073ffffffffffffffffffffffffffffffffffffffff6104cb92168452600a6020528284209060ff60ff1983541691151516179055565b60849060208551917f08c379a0000000000000000000000000000000000000000000000000000000008352820152603a60248201527f657874636f646573697a6520213d20303a20656e73757265207468697320697360448201527f206120636f6e74726163742c206e6f7420612077616c6c6574210000000000006064820152fd5b5050346102fd57816003193601126102fd5760209060ff6009541690519015158152f35b5034610301576020600319360112610301576104cb907f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848845283602052828420338552602052610be260ff8486205416611d43565b35336121b7565b5034610301578160031936011261030157610c02611529565b6024357f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6855273ffffffffffffffffffffffffffffffffffffffff6020928684528587203388528452610c5a60ff8789205416611d43565b16928315610cbe5750849181610c937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef93600b54611b2e565b600b5584845260068252610caa8187862054611b2e565b85855260068352868520558551908152a351f35b606490838651917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b5050346102fd57806003193601126102fd5761062a6020926107d0610d3d611529565b913381526007865284812073ffffffffffffffffffffffffffffffffffffffff84168252865284602435912054611b2e565b5034610301578160031936011261030157610d8861154c565b903373ffffffffffffffffffffffffffffffffffffffff831603610db157906104cb9135611aaa565b60849060208451917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152fd5b5050346102fd57816003193601126102fd576020905160128152f35b503461030157816003193601126103015735610e6a61154c565b81845283602052610e806001848620015461157e565b8184528360205273ffffffffffffffffffffffffffffffffffffffff83852091169081855260205260ff838520541615610eb957505051f35b81845283602052828420818552602052828420600160ff1982541617905533917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d858551a451f35b509190346102fd57816003193601126102fd57600b549161dead81526006602052818120548303928311610f4e578080526006602052818120548303928311610f4e576020838351908152f35b806011857f4e487b71000000000000000000000000000000000000000000000000000000006024945252fd5b5050346102fd5760208060031936011261030157610f96611529565b8380528382528284203385528252610fb360ff8486205416611d43565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a690818552848352600191610fec83868820015461157e565b80865285845273ffffffffffffffffffffffffffffffffffffffff858720921691828752845260ff8587205416156110e0575b507f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8489081865285845261105683868820015461157e565b818652858452848620818752845260ff858720541615611097575b5050600a825260088385209260ff19938385825416179055528284209182541617905551f35b81865285845284862081875284528486208360ff1982541617905533917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d878751a43880611071565b80865285845284862082875284528486208360ff198254161790558133917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d888851a43861101f565b5050346102fd57816003193601126102fd57602090517f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8488152f35b503461030157602060031936011261030157816020936001923581528085522001549051908152f35b5050346102fd5760606003193601126102fd5761062a6020926112766111b1611529565b91846111bb61154c565b916111ef604435809432331480156112e8575b6111d790611baa565b60ff60095416611299575b333b61127e575b87611f1d565b73ffffffffffffffffffffffffffffffffffffffff8516815260078852818120338252885220549085519161122383611a4d565b602883527f42455032303a207472616e7366657220616d6f756e7420657863656564732061888401527f6c6c6f77616e636500000000000000000000000000000000000000000000000087840152611cff565b903390611da8565b338452600a8b5261129460ff8686205416611c74565b6111e9565b73ffffffffffffffffffffffffffffffffffffffff808916855260088c5260ff868620541680156112d4575b6112cf9150611c0f565b6111e2565b50811684526112cf60ff86862054166112c5565b50338452600a8b528484205460ff166111ce565b5050346102fd57816003193601126102fd57602090517f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8668152f35b5050346102fd57816003193601126102fd57602090600b549051908152f35b5050346102fd57806003193601126102fd5760209061062a611376611529565b6024359033611da8565b9250503461030157602060031936011261030157357fffffffff00000000000000000000000000000000000000000000000000000000811680910361030157602092507f7965db0b0000000000000000000000000000000000000000000000000000000081149081156113f5575b5015158152f35b7f01ffc9a700000000000000000000000000000000000000000000000000000000915014386113ee565b60005b8381106114325750506000910152565b8181015183820152602001611422565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f60409360208452611485815180928160208801526020888801910161141f565b0116010190565b503461001157600060031936011261001157604051604081019080821067ffffffffffffffff8311176114fa576114f691604052600481527f4455535400000000000000000000000000000000000000000000000000000000602082015260405191829182611442565b0390f35b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361001157565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361001157565b60243590811515820361001157565b6000818152602090808252604092838220338352835260ff8483205416156115a65750505050565b339084516115b381611a4d565b602a81528481019186368437815115611a2057603083538151936001948510156119f3576078602184015360295b85811161190857506118ac578651936080850185811067ffffffffffffffff82111761187f57885260428552868501956060368837855115611852576030875385518210156118525790607860218701536041915b81831161176257505050611706579385936116d2936116c360489461168e7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000996117029b519a8b97880152518092603788019061141f565b8401917f206973206d697373696e6720726f6c652000000000000000000000000000000060378401525180938684019061141f565b01036028810185520183611a69565b519182917f08c379a000000000000000000000000000000000000000000000000000000000835260048301611442565b0390fd5b6064858751907f08c379a000000000000000000000000000000000000000000000000000000000825280600483015260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152fd5b909192600f81169060109182811015611825577f30313233343536373839616263646566000000000000000000000000000000007f0100000000000000000000000000000000000000000000000000000000000000911a02831a6117c6868a611b6a565b53049280156117f8577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019190611636565b6024827f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b6024847f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b807f4e487b7100000000000000000000000000000000000000000000000000000000602492526032600452fd5b6024877f4e487b710000000000000000000000000000000000000000000000000000000081526041600452fd5b6064868851907f08c379a000000000000000000000000000000000000000000000000000000000825280600483015260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152fd5b90601090600f8116828110156119c6577f30313233343536373839616263646566000000000000000000000000000000007f0100000000000000000000000000000000000000000000000000000000000000911a02881a6119698487611b6a565b5304908015611999577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016115e1565b6024877f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b6024897f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b6024867f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b6024857f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b6060810190811067ffffffffffffffff8211176114fa57604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff8211176114fa57604052565b906000918083528260205273ffffffffffffffffffffffffffffffffffffffff6040842092169182845260205260ff604084205416611ae857505050565b80835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b3393604051a4565b91908201809211611b3b57565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b908151811015611b7b570160200190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b15611bb157565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f50726f787920636f6e7472616374206e6f7420616c6c6f7765640000000000006044820152fd5b15611c1657565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5472616e73666572206e6f7420616c6c6f7765640000000000000000000000006044820152fd5b15611c7b57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f5468697320636f6e7472616374206973206e6f7420617070726f76656420746f60448201527f20696e74657261637420776974682044555354000000000000000000000000006064820152fd5b9091818311611d0d57500390565b611702906040519182917f08c379a000000000000000000000000000000000000000000000000000000000835260048301611442565b15611d4a57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f445553543a204e4f545f414c4c4f5745440000000000000000000000000000006044820152fd5b73ffffffffffffffffffffffffffffffffffffffff809116918215611e9a5716918215611e165760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260078252604060002085600052825280604060002055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b73ffffffffffffffffffffffffffffffffffffffff80911691821561213357169182156120af57801561202b57600082815260066020526040908181205482519083820182811067ffffffffffffffff821117611ffe578492867fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef979593611fd19360209852601483527f496e73756666696369656e742042616c616e636500000000000000000000000088840152611cff565b868252600685528282205586815281611fed8482842054611b2e565b9188815260068652205551908152a3565b6024847f4e487b710000000000000000000000000000000000000000000000000000000081526041600452fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fd5b73ffffffffffffffffffffffffffffffffffffffff1680156122d0576000918183526006602052612249604084205482604051916121f483611a4d565b602283527f42455032303a206275726e20616d6f756e7420657863656564732062616c616e60208401527f63650000000000000000000000000000000000000000000000000000000000006040840152611cff565b82845260066020526040842055600b548181039081116122a3577fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91602091600b5561229781600c54611b2e565b600c55604051908152a3565b6024847f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f42455032303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152fdfea26469706673582212208be9ceb0bbdc005f527c126607cbc066a1221a346821d22c166907122832fb2564736f6c634300081000332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d

Deployed Bytecode

0x60806040818152600480361015610016575b600080fd5b6000927c010000000000000000000000000000000000000000000000000000000084350490816301ffc9a7146113805750806306fdde03146107f2578063095ea7b31461135657806318160ddd1461133757806320606b70146112fc57806323b872dd1461118d578063248a9ca314611164578063282c51f314611129578063293e995114610f7a5780632b112e4914610f015780632f2ff15d14610e50578063313ce56714610e3457806336568abe14610d6f5780633950935114610d1a57806340c10f1914610be957806342966c6814610b8d57806348709a9314610b6957806355de1faf14610a6657806362695eae14610a1d57806370a08231146109d957806370bb0a161461098b57806379cc67901461084f57806391d14854146107fe57806395d89b41146107f2578063a217fddf146107d7578063a457c2d714610721578063a8b80428146106aa578063a9059cbb146105d7578063ad5c4648146105a2578063bd3900c01461058557838163c3e0dbe91461050957508063d5391393146104ce578063d547741f14610491578063d89135cd1461045d578063dd62ed3e14610407578063e9347683146103cc5763f8a67a62146101d957600080fd5b346103015760606003193601126103015780359073ffffffffffffffffffffffffffffffffffffffff8083168093036103c857602435906044359081168091036103c457819286805286602093818552878220338352855261024060ff8984205416611d43565b8751907f70a082310000000000000000000000000000000000000000000000000000000091828152308582015286816024818c5afa9081156103ba57849161038d575b5010610319575b5090604491849596885197889586947fa9059cbb00000000000000000000000000000000000000000000000000000000865285015260248401525af1801561030c576102d557505051f35b81813d8311610305575b6102e98183611a69565b810103126103015751801515036102fd5751f35b5080fd5b8280fd5b503d6102df565b50505051903d90823e3d90fd5b9394505085519283523081840152868484602481895afa80156103815785948291610349575b509450604461028a565b858194939692503d831161037a575b6103628183611a69565b81010312610376579051849390604461033f565b8380fd5b503d610358565b508651903d90823e3d90fd5b90508681813d83116103b3575b6103a48183611a69565b81010312610376575138610283565b503d61039a565b8a513d86823e3d90fd5b8580fd5b8480fd5b5050346102fd57816003193601126102fd57602090517fe6ad9a47fbda1dc18de1eb5eeb7d935e5e81b4748f3cfc61e233e64f881820608152f35b5050346102fd57806003193601126102fd5780602092610425611529565b61042d61154c565b73ffffffffffffffffffffffffffffffffffffffff91821683526007865283832091168252845220549051908152f35b5050346102fd57816003193601126102fd5761048a818361dead60209552600685522054600c5490611b2e565b9051908152f35b50346103015781600319360112610301576104cb90356104af61154c565b90808552846020526104c66001858720015461157e565b611aaa565b51f35b5050346102fd57816003193601126102fd57602090517f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a68152f35b919050346102fd57826003193601126102fd57818080923561052961154c565b8280528260205286832033845260205261054860ff8885205416611d43565b8290821561057b575b73ffffffffffffffffffffffffffffffffffffffff1690f1156105715751f35b51903d90823e3d90fd5b6108fc9150610551565b5050346102fd57816003193601126102fd576020905161dead8152f35b5050346102fd57816003193601126102fd5760209073ffffffffffffffffffffffffffffffffffffffff600d54169051908152f35b5050346102fd57806003193601126102fd5761062a602092826105f8611529565b913233148015610696575b61060c90611baa565b60ff6009541661064d575b333b610631575b50506024359033611f1d565b5160018152f35b338152600a865220546106469060ff16611c74565b823861061e565b3381526008865260ff82822054168015610670575b61066b90611c0f565b610617565b5073ffffffffffffffffffffffffffffffffffffffff831681528181205460ff16610662565b50338152600a86528181205460ff16610603565b5050346102fd57806003193601126102fd576104cb6106c7611529565b73ffffffffffffffffffffffffffffffffffffffff6106e461156f565b918580528560205284862033875260205261070460ff8688205416611d43565b16845260086020528284209060ff60ff1983541691151516179055565b5050346102fd57806003193601126102fd5761062a6020926107d083610745611529565b923381526007875281812073ffffffffffffffffffffffffffffffffffffffff851682528752205484519061077982611a4d565b602582527f42455032303a2064656372656173656420616c6c6f77616e63652062656c6f77878301527f207a65726f0000000000000000000000000000000000000000000000000000008683015260243590611cff565b9033611da8565b5050346102fd57816003193601126102fd5751908152602090f35b5050505061001161148c565b50346103015781600319360112610301578160209360ff9261081e61154c565b9035825281865273ffffffffffffffffffffffffffffffffffffffff83832091168252855220541690519015158152f35b509190346102fd57806003193601126102fd5761086a611529565b602435907f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8488452836020528284203385526020526108ad60ff8486205416611d43565b73ffffffffffffffffffffffffffffffffffffffff81168452600760205282842033855260205282842054947fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860361090c575b50906104cb916121b7565b82861061092e5750610926826104cb949596033383611da8565b849392610901565b60649060208551917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b5034610301576020600319360112610301573580151580910361030157828052826020528183203384526020526109c760ff8385205416611d43565b60ff60ff196009541691161760095551f35b5050346102fd5760206003193601126102fd578060209273ffffffffffffffffffffffffffffffffffffffff610a0d611529565b1681526006845220549051908152f35b5050346102fd5760206003193601126102fd5760ff8160209373ffffffffffffffffffffffffffffffffffffffff610a53611529565b1681526008855220541690519015158152f35b5034610301578160031936011261030157610a7f611529565b610a8761156f565b9184805284602052838520338652602052610aa760ff8587205416611d43565b813b15610ae657509073ffffffffffffffffffffffffffffffffffffffff6104cb92168452600a6020528284209060ff60ff1983541691151516179055565b60849060208551917f08c379a0000000000000000000000000000000000000000000000000000000008352820152603a60248201527f657874636f646573697a6520213d20303a20656e73757265207468697320697360448201527f206120636f6e74726163742c206e6f7420612077616c6c6574210000000000006064820152fd5b5050346102fd57816003193601126102fd5760209060ff6009541690519015158152f35b5034610301576020600319360112610301576104cb907f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848845283602052828420338552602052610be260ff8486205416611d43565b35336121b7565b5034610301578160031936011261030157610c02611529565b6024357f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6855273ffffffffffffffffffffffffffffffffffffffff6020928684528587203388528452610c5a60ff8789205416611d43565b16928315610cbe5750849181610c937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef93600b54611b2e565b600b5584845260068252610caa8187862054611b2e565b85855260068352868520558551908152a351f35b606490838651917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b5050346102fd57806003193601126102fd5761062a6020926107d0610d3d611529565b913381526007865284812073ffffffffffffffffffffffffffffffffffffffff84168252865284602435912054611b2e565b5034610301578160031936011261030157610d8861154c565b903373ffffffffffffffffffffffffffffffffffffffff831603610db157906104cb9135611aaa565b60849060208451917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152fd5b5050346102fd57816003193601126102fd576020905160128152f35b503461030157816003193601126103015735610e6a61154c565b81845283602052610e806001848620015461157e565b8184528360205273ffffffffffffffffffffffffffffffffffffffff83852091169081855260205260ff838520541615610eb957505051f35b81845283602052828420818552602052828420600160ff1982541617905533917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d858551a451f35b509190346102fd57816003193601126102fd57600b549161dead81526006602052818120548303928311610f4e578080526006602052818120548303928311610f4e576020838351908152f35b806011857f4e487b71000000000000000000000000000000000000000000000000000000006024945252fd5b5050346102fd5760208060031936011261030157610f96611529565b8380528382528284203385528252610fb360ff8486205416611d43565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a690818552848352600191610fec83868820015461157e565b80865285845273ffffffffffffffffffffffffffffffffffffffff858720921691828752845260ff8587205416156110e0575b507f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8489081865285845261105683868820015461157e565b818652858452848620818752845260ff858720541615611097575b5050600a825260088385209260ff19938385825416179055528284209182541617905551f35b81865285845284862081875284528486208360ff1982541617905533917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d878751a43880611071565b80865285845284862082875284528486208360ff198254161790558133917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d888851a43861101f565b5050346102fd57816003193601126102fd57602090517f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8488152f35b503461030157602060031936011261030157816020936001923581528085522001549051908152f35b5050346102fd5760606003193601126102fd5761062a6020926112766111b1611529565b91846111bb61154c565b916111ef604435809432331480156112e8575b6111d790611baa565b60ff60095416611299575b333b61127e575b87611f1d565b73ffffffffffffffffffffffffffffffffffffffff8516815260078852818120338252885220549085519161122383611a4d565b602883527f42455032303a207472616e7366657220616d6f756e7420657863656564732061888401527f6c6c6f77616e636500000000000000000000000000000000000000000000000087840152611cff565b903390611da8565b338452600a8b5261129460ff8686205416611c74565b6111e9565b73ffffffffffffffffffffffffffffffffffffffff808916855260088c5260ff868620541680156112d4575b6112cf9150611c0f565b6111e2565b50811684526112cf60ff86862054166112c5565b50338452600a8b528484205460ff166111ce565b5050346102fd57816003193601126102fd57602090517f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8668152f35b5050346102fd57816003193601126102fd57602090600b549051908152f35b5050346102fd57806003193601126102fd5760209061062a611376611529565b6024359033611da8565b9250503461030157602060031936011261030157357fffffffff00000000000000000000000000000000000000000000000000000000811680910361030157602092507f7965db0b0000000000000000000000000000000000000000000000000000000081149081156113f5575b5015158152f35b7f01ffc9a700000000000000000000000000000000000000000000000000000000915014386113ee565b60005b8381106114325750506000910152565b8181015183820152602001611422565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f60409360208452611485815180928160208801526020888801910161141f565b0116010190565b503461001157600060031936011261001157604051604081019080821067ffffffffffffffff8311176114fa576114f691604052600481527f4455535400000000000000000000000000000000000000000000000000000000602082015260405191829182611442565b0390f35b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361001157565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361001157565b60243590811515820361001157565b6000818152602090808252604092838220338352835260ff8483205416156115a65750505050565b339084516115b381611a4d565b602a81528481019186368437815115611a2057603083538151936001948510156119f3576078602184015360295b85811161190857506118ac578651936080850185811067ffffffffffffffff82111761187f57885260428552868501956060368837855115611852576030875385518210156118525790607860218701536041915b81831161176257505050611706579385936116d2936116c360489461168e7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000996117029b519a8b97880152518092603788019061141f565b8401917f206973206d697373696e6720726f6c652000000000000000000000000000000060378401525180938684019061141f565b01036028810185520183611a69565b519182917f08c379a000000000000000000000000000000000000000000000000000000000835260048301611442565b0390fd5b6064858751907f08c379a000000000000000000000000000000000000000000000000000000000825280600483015260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152fd5b909192600f81169060109182811015611825577f30313233343536373839616263646566000000000000000000000000000000007f0100000000000000000000000000000000000000000000000000000000000000911a02831a6117c6868a611b6a565b53049280156117f8577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019190611636565b6024827f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b6024847f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b807f4e487b7100000000000000000000000000000000000000000000000000000000602492526032600452fd5b6024877f4e487b710000000000000000000000000000000000000000000000000000000081526041600452fd5b6064868851907f08c379a000000000000000000000000000000000000000000000000000000000825280600483015260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152fd5b90601090600f8116828110156119c6577f30313233343536373839616263646566000000000000000000000000000000007f0100000000000000000000000000000000000000000000000000000000000000911a02881a6119698487611b6a565b5304908015611999577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016115e1565b6024877f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b6024897f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b6024867f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b6024857f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b6060810190811067ffffffffffffffff8211176114fa57604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff8211176114fa57604052565b906000918083528260205273ffffffffffffffffffffffffffffffffffffffff6040842092169182845260205260ff604084205416611ae857505050565b80835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b3393604051a4565b91908201809211611b3b57565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b908151811015611b7b570160200190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b15611bb157565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f50726f787920636f6e7472616374206e6f7420616c6c6f7765640000000000006044820152fd5b15611c1657565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5472616e73666572206e6f7420616c6c6f7765640000000000000000000000006044820152fd5b15611c7b57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f5468697320636f6e7472616374206973206e6f7420617070726f76656420746f60448201527f20696e74657261637420776974682044555354000000000000000000000000006064820152fd5b9091818311611d0d57500390565b611702906040519182917f08c379a000000000000000000000000000000000000000000000000000000000835260048301611442565b15611d4a57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f445553543a204e4f545f414c4c4f5745440000000000000000000000000000006044820152fd5b73ffffffffffffffffffffffffffffffffffffffff809116918215611e9a5716918215611e165760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260078252604060002085600052825280604060002055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b73ffffffffffffffffffffffffffffffffffffffff80911691821561213357169182156120af57801561202b57600082815260066020526040908181205482519083820182811067ffffffffffffffff821117611ffe578492867fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef979593611fd19360209852601483527f496e73756666696369656e742042616c616e636500000000000000000000000088840152611cff565b868252600685528282205586815281611fed8482842054611b2e565b9188815260068652205551908152a3565b6024847f4e487b710000000000000000000000000000000000000000000000000000000081526041600452fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fd5b73ffffffffffffffffffffffffffffffffffffffff1680156122d0576000918183526006602052612249604084205482604051916121f483611a4d565b602283527f42455032303a206275726e20616d6f756e7420657863656564732062616c616e60208401527f63650000000000000000000000000000000000000000000000000000000000006040840152611cff565b82845260066020526040842055600b548181039081116122a3577fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91602091600b5561229781600c54611b2e565b600c55604051908152a3565b6024847f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f42455032303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152fdfea26469706673582212208be9ceb0bbdc005f527c126607cbc066a1221a346821d22c166907122832fb2564736f6c63430008100033

Deployed Bytecode Sourcemap

232:10229:10:-:0;;;;;;;;;;;;-1:-1:-1;232:10229:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7358:10;232:10229;;;;7322:69;232:10229;;;;;;7322:69;:::i;:::-;232:10229;;;;7405:30;;;;7429:4;7405:30;;;232:10229;7405:30;;232:10229;7405:30;;;;;;;;;;;;;232:10229;7405:39;;7401:110;;232:10229;;;;;;;;;;7520:26;;;;;232:10229;7520:26;;;;232:10229;;;;;7520:26;;;;;;;;232:10229;;;;7520:26;;;;;;;;;;;;;:::i;:::-;;;232:10229;;;;;;;;;;;;;;;;;;;;;7520:26;;;;;;232:10229;;;;;;;;;;;;7401:110;232:10229;;;;;;7470:30;;;7429:4;7470:30;;;232:10229;7470:30;;;232:10229;7470:30;;;;;;;;;;;;;;7401:110;-1:-1:-1;7461:39:10;-1:-1:-1;232:10229:10;7401:110;;7470:30;;;;;;;;;;;;;;;;;;:::i;:::-;;;232:10229;;;;;;;;;;7470:30;;232:10229;;;;7470:30;;;;;;232:10229;;;;;;;;;;;7405:30;;;;;;;;;;;;;;;;:::i;:::-;;;232:10229;;;;;7405:30;;;;;;;;;232:10229;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;487:28;232:10229;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;3719:11;232:10229;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;2839:5:9;232:10229:10;;1161:42;232:10229;;;2862:9;232:10229;;;;2890:7;232:10229;2839:5:9;;:::i;:::-;232:10229:10;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;5373:7:0;232:10229:10;;;;:::i;:::-;;;;;;;;2516:4:0;232:10229:10;;;;4491:22:0;232:10229:10;2516:4:0;:::i;:::-;5373:7;:::i;:::-;232:10229:10;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;347:24;232:10229;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;;;;;:::i;:::-;;;;;;;;;;7105:10;232:10229;;;;7069:69;232:10229;;;;;;7069:69;:::i;:::-;7148:28;;;;;;232:10229;;;7148:28;;;;;232:10229;;7148:28;232:10229;;;;;;;;;7148:28;;;-1:-1:-1;7148:28:10;;232:10229;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;1161:42;232:10229;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;1097:19;232:10229;;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;3571:6;232:10229;;;;;:::i;:::-;3150:9;;3136:10;:23;:55;;;;232:10229;3128:94;;;:::i;:::-;232:10229;3235:18;232:10229;;3232:140;;232:10229;3136:10;2305:59;3381:146;;232:10229;;;;;3136:10;;3571:6;:::i;:::-;232:10229;;;;;3381:146;3136:10;232:10229;;3432:16;232:10229;;;;3424:92;;232:10229;;3424:92;:::i;:::-;3381:146;;;;3232:140;3136:10;232:10229;;3278:15;232:10229;;;;;;;;3278:57;;;;3232:140;3270:90;;;:::i;:::-;3232:140;;3278:57;-1:-1:-1;232:10229:10;;;;;;;;;;;3278:57;;3136:55;-1:-1:-1;3136:10:10;232:10229;;3163:16;232:10229;;;;;;;;3136:55;;232:10229;;;;;;;-1:-1:-1;;232:10229:10;;;;;5505:33;232:10229;;:::i;:::-;;;;:::i;:::-;;;;;;;;;;;5462:10;232:10229;;;;5426:69;232:10229;;;;;;5426:69;:::i;:::-;232:10229;;;5505:15;232:10229;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;5022:96;232:10229;;5022:96;232:10229;;;:::i;:::-;719:10:5;;232:10229:10;;5022:11;232:10229;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;5022:96;;:::i;:::-;719:10:5;;5022:96:10;:::i;232:10229::-;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;:::i;:::-;;;;415:24;232:10229;;;;;;;;9682:10;232:10229;;;;9653:62;232:10229;;;;;;9653:62;:::i;:::-;232:10229;;;;;3719:11;232:10229;;;;;9682:10;232:10229;;;;;;;;8049:37;8069:17;8049:37;;8045:248;;232:10229;9792:7;;;;;:::i;8045:248::-;8111:26;;;232:10229;;;8240:25;232:10229;9792:7;232:10229;;;;9682:10;8240:25;;:::i;:::-;8045:248;;;;;232:10229;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;;;;;;;;;;;;;;;;5257:10;232:10229;;;;5221:69;232:10229;;;;;;5221:69;:::i;:::-;232:10229;-1:-1:-1;;5300:32:10;232:10229;;;;;5300:32;232:10229;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;;;;:::i;:::-;;;;3003:9;232:10229;;;;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;;;;;:::i;:::-;;;;666:48;232:10229;;;;;;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;10272:10;232:10229;;;;10236:69;232:10229;;;;;;10236:69;:::i;:::-;2305:59;;2380:8;232:10229;;;;;10418:34;232:10229;;;;10418:16;232:10229;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;720:30;232:10229;;;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;10136:7;232:10229;415:24;232:10229;;;;;;;;10075:10;232:10229;;;;10046:62;232:10229;;;;;;10046:62;:::i;:::-;232:10229;10075:10;10136:7;:::i;232:10229::-;;;;;;-1:-1:-1;;232:10229:10;;;;;;;:::i;:::-;;;347:24;232:10229;;;;;;;;;;;9914:10;232:10229;;;;9885:62;232:10229;;;;;;9885:62;:::i;:::-;232:10229;8654:21;;;232:10229;;;;;;2839:5:9;8827:37:10;232:10229;8732:7;232:10229;2839:5:9;:::i;:::-;8732:7:10;232:10229;;;;8782:9;232:10229;;2839:5:9;232:10229:10;;;;;2839:5:9;:::i;:::-;232:10229:10;;;8782:9;232:10229;;;;;;;;;;;8827:37;232:10229;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;4787:50;232:10229;;2839:5:9;232:10229:10;;:::i;:::-;719:10:5;;232:10229:10;;4787:11;232:10229;;;;;;;;;;;;;;;;;;2839:5:9;:::i;232:10229:10:-;;;;;;-1:-1:-1;;232:10229:10;;;;;;;:::i;:::-;719:10:5;;232:10229:10;;;6020:23:0;232:10229:10;;;6124:7:0;232:10229:10;;6124:7:0;:::i;232:10229:10:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;1088:2;232:10229;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;:::i;:::-;;;;;;;2516:4:0;232:10229:10;;;;4491:22:0;232:10229:10;2516:4:0;:::i;:::-;232:10229:10;;;;;;;;;;;;;;;;;;;;;;;;7556:23:0;7552:149;;232:10229:10;;;;7552:149:0;232:10229:10;;;;;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;719:10:5;232:10229:10;7650:40:0;232:10229:10;;;7650:40:0;232:10229:10;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;6880:7;232:10229;;1161:42;232:10229;;3003:9;232:10229;;;;;;;;;;;;;;;;3003:9;232:10229;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;:::i;:::-;;;;;;;;;;5655:10;232:10229;;;;5619:69;232:10229;;;;;;5619:69;:::i;:::-;347:24;232:10229;;;;;;;4491:22:0;232:10229:10;2516:4:0;232:10229:10;;;;4491:22:0;232:10229:10;2516:4:0;:::i;:::-;232:10229:10;;;;;;;;;;;;;;;;;;;;;;;;7556:23:0;7552:149;;232:10229:10;415:24;;232:10229;;;;;;;2516:4:0;232:10229:10;;;;4491:22:0;232:10229:10;2516:4:0;:::i;:::-;232:10229:10;;;;;;;;;;;;;;;;;;;;7556:23:0;7552:149;;232:10229:10;;;5790:16;232:10229;;5837:15;232:10229;;;;-1:-1:-1;;232:10229:10;;;;;;;;;;;;;;;;;;;;;;7552:149:0;232:10229:10;;;;;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;5655:10;232:10229;7650:40:0;232:10229:10;;;7650:40:0;7552:149;;;;;232:10229:10;;;;;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;5655:10;;232:10229;7650:40:0;232:10229:10;;;7650:40:0;7552:149;;;232:10229:10;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;415:24;232:10229;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;;;;;;;;;;4491:22:0;232:10229:10;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;4518:89;232:10229;;4518:89;232:10229;;:::i;:::-;;;;;:::i;:::-;;4470:6;232:10229;;4059:9;;;4045:10;:23;:55;;;;232:10229;4037:94;;;:::i;:::-;232:10229;4144:18;232:10229;;4141:136;;232:10229;4045:10;2305:59;4286:146;;232:10229;4470:6;;:::i;:::-;232:10229;;;;;4518:11;232:10229;;;;;4045:10;232:10229;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;4518:89;:::i;:::-;4045:10;;4518:89;;:::i;4286:146::-;4045:10;232:10229;;4337:16;232:10229;;4329:92;232:10229;;;;;;4329:92;:::i;:::-;4286:146;;4141:136;232:10229;;;;;;4187:15;232:10229;;;;;;;;4187:53;;;;4141:136;4179:86;;;;:::i;:::-;4141:136;;4187:53;232:10229;;;;;4179:86;232:10229;;;;;;4187:53;;4045:55;-1:-1:-1;4045:10:10;232:10229;;4072:16;232:10229;;;;;;;;4045:55;;232:10229;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;1548:80;232:10229;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;2772:7;232:10229;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;3882:6;232:10229;;:::i;:::-;;;719:10:5;;3882:6:10;:::i;232:10229::-;;;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;;;;;;;;2714:47:0;;2729:32;2714:47;;:87;;;;;232:10229:10;;;;;;;2714:87:0;952:25:7;937:40;;;2714:87:0;;;232:10229:10;;;;;;;;-1:-1:-1;;232:10229:10;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;:::o;:::-;;;;;;-1:-1:-1;;232:10229:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;:::o;3334:103:0:-;3004:6;232:10229:10;;;;;;;;;;;;;719:10:5;232:10229:10;;;;;;;;;;3805:23:0;3801:403;;3334:103;;;;:::o;3801:403::-;719:10:5;232:10229:10;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1809:15:6;;;232:10229:10;;;;;;;;;;1834:15:6;232:10229:10;;;1834:15:6;232:10229:10;1892:5:6;;;;;;2008:10;223:18;;232:10229:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1809:15:6;;;232:10229:10;;;;;;;;1834:15:6;232:10229:10;;;1834:15:6;232:10229:10;1859:132:6;1892:5;;;;;;2008:10;;;223:18;;232:10229:10;;;3896:265:0;232:10229:10;;;;;;;3844:349:0;232:10229:10;;3896:265:0;;;;;232:10229:10;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:::i;:::-;;3896:265:0;;;;;;;;;:::i;:::-;232:10229:10;3844:349:0;;;;;;;;;;:::i;:::-;;;;223:18:6;;232:10229:10;;;223:18:6;;;;;1979:1;223:18;;;;;;232:10229:10;223:18:6;232:10229:10;;;223:18:6;;1899:3;1943:11;;;1951:3;1943:11;;1930:25;;;;;;;;;232:10229:10;223:18:6;1930:25;;223:18;1918:37;;;;;;:::i;:::-;;232:10229:10;1899:3:6;232:10229:10;;;;;;1864:26:6;;;;232:10229:10;;;;;;;1979:1:6;232:10229:10;;1930:25:6;232:10229:10;;;;;;1979:1:6;232:10229:10;;;;;;;;;;;;;;;;;;;;;;223:18:6;;232:10229:10;;;223:18:6;;;;;1979:1;223:18;;;;;;232:10229:10;223:18:6;232:10229:10;;;223:18:6;;1899:3;1943:11;1930:25;;1951:3;1943:11;;1930:25;;;;;;232:10229:10;223:18:6;1930:25;;223:18;1918:37;;;;;;:::i;:::-;;232:10229:10;1899:3:6;232:10229:10;;;;;;1864:26:6;;232:10229:10;;;;;;;1979:1:6;232:10229:10;;1930:25:6;232:10229:10;;;;;;1979:1:6;232:10229:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::o;7878:234:0:-;;3004:6;232:10229:10;;;;;;;;;;;;;;;;;;;;;;;;;7957:149:0;;7878:234;;;:::o;7957:149::-;232:10229:10;;;;;;;;;;;;;;;;;-1:-1:-1;;232:10229:10;;;;;8055:40:0;719:10:5;232:10229:10;;;8055:40:0;7878:234::o;232:10229:10:-;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;4959:231:9;;;5126:6;;;232:10229:10;;;;4959:231:9;:::o;232:10229:10:-;;;;;;;;;;;;;;;:::i;:::-;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;5886:371;232:10229;;;;6018:19;;;232:10229;;;6096:21;;;232:10229;;;6218:32;232:10229;;6035:1;232:10229;6167:11;232:10229;;;6035:1;232:10229;;6035:1;232:10229;;;;;6035:1;232:10229;;;;;;;6218:32;5886:371::o;232:10229::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6264:530;232:10229;;;;6391:18;;;232:10229;;;6469:16;;;232:10229;;6543:10;;232:10229;;6407:1;232:10229;;;6643:9;232:10229;;;;;;;;;;;;;;;;;;;;;;;;;;6761:26;232:10229;;;6643:51;232:10229;;;;;;;;;;;;6643:51;:::i;:::-;232:10229;;;6643:9;232:10229;;;;;;;;;;2839:5:9;232:10229:10;;;;;2839:5:9;:::i;:::-;232:10229:10;;;;6643:9;232:10229;;;;;;;;6761:26;6264:530::o;232:10229::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9190:384;232:10229;;9275:21;;232:10229;;9294:1;232:10229;;;;9366:9;232:10229;;9366:68;232:10229;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;9366:68;:::i;:::-;232:10229;;;9366:9;232:10229;;;;;;9455:7;232:10229;;;;;;;;;9529:37;232:10229;;;9455:7;232:10229;2839:5:9;232:10229:10;9494:7;232:10229;2839:5:9;:::i;:::-;9494:7:10;232:10229;;;;;;9529:37;9190:384::o;232:10229::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://8be9ceb0bbdc005f527c126607cbc066a1221a346821d22c166907122832fb25
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.