ETH Price: $3,437.20 (-1.22%)
Gas: 4 Gwei

Token

CHAD (CHAD)
 

Overview

Max Total Supply

6,119,400 CHAD

Holders

240

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
1nine.eth
Balance
1,100 CHAD

Value
$0.00
0x938497fc61d9b9a6bfbf26961cea801d196ee03c
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:
CHAD

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 8 : CHAD.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.7;

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

contract CHAD is ERC20, Ownable {
    using ECDSA for bytes32;

    bool public isPaused = true;
    bool public isTokenCapLock = false;

    uint256 public MAX_SUPPLY;

    address private _signer;
    mapping(address => bool) private _tokenClaimed;
    mapping(uint256 => bool) private _nonceUsed;

    event TokenClaimed(address indexed owner, uint256 amount);

    constructor(address signerAddrs) ERC20("CHAD", "CHAD") {
        _signer = signerAddrs;
    }

    function claimRewards(uint256 amount, uint256 nonce, bytes calldata signature) external {
        require(!isPaused, "Claiming process is paused!");
        require(_validateSignature(amount, nonce, signature, msg.sender), "Invalid signer");
        require(!_nonceUsed[nonce], "Nonce already used");
        require(!_tokenClaimed[msg.sender], "Already claimed");

        uint256 rewards = amount * (10**18);
        _nonceUsed[nonce] = true;
        _tokenClaimed[msg.sender] = true;
        _mint(msg.sender, rewards);

        emit TokenClaimed(msg.sender, rewards);
    }

    function checkClaimStatus(address user) external view returns(bool) {
        return _tokenClaimed[user];
    }

    function getMaxSupply() public view returns (uint256) {
        require(isTokenCapLock, "Max supply is not set");
        return MAX_SUPPLY;
    }

    function _validateSignature(uint256 amount, uint256 nonce, bytes calldata signature, address sender) private view returns(bool) {
        bytes32 dataHash = keccak256(abi.encodePacked(amount, nonce, sender));
        bytes32 message = ECDSA.toEthSignedMessageHash(dataHash);

        address receivedAddress = ECDSA.recover(message, signature);
        return (receivedAddress != address(0) && receivedAddress == _signer);
    }

    function flipPause() external onlyOwner {
        isPaused = !isPaused;
    }

    function mintFor(address user, uint256 amount) external onlyOwner {
        if (isTokenCapLock) require(totalSupply() + amount <= MAX_SUPPLY, "You try to mint more than max supply");
        _mint(user, amount);
    }

    function setTokenCap(uint256 tokenCap) external onlyOwner {
        require(totalSupply() < tokenCap, "Value is smaller than the number of existing tokens");
        require(!isTokenCapLock, "Token cap has been already set");

        MAX_SUPPLY = tokenCap;
    }

    function setTokenCapLock() external onlyOwner {
        isTokenCapLock = true;
    }

    function setSigner(address signerAddrs) external onlyOwner {
        _signer = signerAddrs;
    }

    function burn(uint256 _amount) external onlyOwner {
        _burn(msg.sender, _amount);
    }
}

File 2 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

File 3 of 8 : 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 4 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `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 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 5 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

File 6 of 8 : 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 8 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"signerAddrs","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokenClaimed","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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"checkClaimStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTokenCapLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signerAddrs","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenCap","type":"uint256"}],"name":"setTokenCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTokenCapLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526005805461ffff60a01b1916600160a01b1790553480156200002557600080fd5b5060405162001b0538038062001b058339810160408190526200004891620001dc565b60408051808201825260048082526310d2105160e21b602080840182815285518087019096529285528401528151919291620000879160039162000136565b5080516200009d90600490602084019062000136565b505050620000ba620000b4620000e060201b60201c565b620000e4565b600780546001600160a01b0319166001600160a01b03929092169190911790556200024b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000144906200020e565b90600052602060002090601f016020900481019282620001685760008555620001b3565b82601f106200018357805160ff1916838001178555620001b3565b82800160010185558215620001b3579182015b82811115620001b357825182559160200191906001019062000196565b50620001c1929150620001c5565b5090565b5b80821115620001c15760008155600101620001c6565b600060208284031215620001ef57600080fd5b81516001600160a01b03811681146200020757600080fd5b9392505050565b600181811c908216806200022357607f821691505b602082108114156200024557634e487b7160e01b600052602260045260246000fd5b50919050565b6118aa806200025b6000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063b187bd2611610097578063da1919b311610071578063da1919b314610344578063dd62ed3e14610357578063e596827e14610390578063f2fde38b146103a457600080fd5b8063b187bd26146102f1578063b7d86ff214610305578063d64e38711461031857600080fd5b806370a0823114610277578063715018a6146102a05780638da5cb5b146102a857806395d89b41146102c3578063a457c2d7146102cb578063a9059cbb146102de57600080fd5b806332cb6b0c1161014b57806342966c681161012557806342966c68146102415780634c0f38c2146102545780636779b03d1461025c5780636c19e7831461026457600080fd5b806332cb6b0c1461021d578063385df64914610226578063395093511461022e57600080fd5b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101d457806323b872dd146101e65780632854bc7e146101f9578063313ce5671461020e575b600080fd5b61019b6103b7565b6040516101a89190611735565b60405180910390f35b6101c46101bf366004611672565b610449565b60405190151581526020016101a8565b6002545b6040519081526020016101a8565b6101c46101f4366004611636565b61045f565b61020c61020736600461169c565b61050e565b005b604051601281526020016101a8565b6101d860065481565b61020c61060a565b6101c461023c366004611672565b610655565b61020c61024f36600461169c565b610691565b6101d86106c8565b61020c610723565b61020c6102723660046115e1565b610762565b6101d86102853660046115e1565b6001600160a01b031660009081526020819052604090205490565b61020c6107ae565b6005546040516001600160a01b0390911681526020016101a8565b61019b6107e4565b6101c46102d9366004611672565b6107f3565b6101c46102ec366004611672565b61088c565b6005546101c490600160a01b900460ff1681565b61020c6103133660046116b5565b610899565b6101c46103263660046115e1565b6001600160a01b031660009081526008602052604090205460ff1690565b61020c610352366004611672565b610a78565b6101d8610365366004611603565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546101c490600160a81b900460ff1681565b61020c6103b23660046115e1565b610b33565b6060600380546103c69061180d565b80601f01602080910402602001604051908101604052809291908181526020018280546103f29061180d565b801561043f5780601f106104145761010080835404028352916020019161043f565b820191906000526020600020905b81548152906001019060200180831161042257829003601f168201915b5050505050905090565b6000610456338484610bcb565b50600192915050565b600061046c848484610cf0565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104f65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105038533858403610bcb565b506001949350505050565b6005546001600160a01b031633146105385760405162461bcd60e51b81526004016104ed9061178a565b8061054260025490565b106105ab5760405162461bcd60e51b815260206004820152603360248201527f56616c756520697320736d616c6c6572207468616e20746865206e756d626572604482015272206f66206578697374696e6720746f6b656e7360681b60648201526084016104ed565b600554600160a81b900460ff16156106055760405162461bcd60e51b815260206004820152601e60248201527f546f6b656e2063617020686173206265656e20616c726561647920736574000060448201526064016104ed565b600655565b6005546001600160a01b031633146106345760405162461bcd60e51b81526004016104ed9061178a565b6005805460ff60a01b198116600160a01b9182900460ff1615909102179055565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161045691859061068c9086906117bf565b610bcb565b6005546001600160a01b031633146106bb5760405162461bcd60e51b81526004016104ed9061178a565b6106c53382610ebf565b50565b600554600090600160a81b900460ff1661071c5760405162461bcd60e51b815260206004820152601560248201527413585e081cdd5c1c1b1e481a5cc81b9bdd081cd95d605a1b60448201526064016104ed565b5060065490565b6005546001600160a01b0316331461074d5760405162461bcd60e51b81526004016104ed9061178a565b6005805460ff60a81b1916600160a81b179055565b6005546001600160a01b0316331461078c5760405162461bcd60e51b81526004016104ed9061178a565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146107d85760405162461bcd60e51b81526004016104ed9061178a565b6107e26000611005565b565b6060600480546103c69061180d565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156108755760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104ed565b6108823385858403610bcb565b5060019392505050565b6000610456338484610cf0565b600554600160a01b900460ff16156108f35760405162461bcd60e51b815260206004820152601b60248201527f436c61696d696e672070726f636573732069732070617573656421000000000060448201526064016104ed565b6109008484848433611057565b61093d5760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21039b4b3b732b960911b60448201526064016104ed565b60008381526009602052604090205460ff16156109915760405162461bcd60e51b8152602060048201526012602482015271139bdb98d948185b1c9958591e481d5cd95960721b60448201526064016104ed565b3360009081526008602052604090205460ff16156109e35760405162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e4818db185a5b5959608a1b60448201526064016104ed565b60006109f785670de0b6b3a76400006117d7565b60008581526009602090815260408083208054600160ff199182168117909255338086526008909452919093208054909116909217909155909150610a3c908261117b565b60405181815233907fe42df0d9493dfd0d7f69902c895b94c190a53e8c27876a86f45e7c997d9d8f7c9060200160405180910390a25050505050565b6005546001600160a01b03163314610aa25760405162461bcd60e51b81526004016104ed9061178a565b600554600160a81b900460ff1615610b255760065481610ac160025490565b610acb91906117bf565b1115610b255760405162461bcd60e51b8152602060048201526024808201527f596f752074727920746f206d696e74206d6f7265207468616e206d617820737560448201526370706c7960e01b60648201526084016104ed565b610b2f828261117b565b5050565b6005546001600160a01b03163314610b5d5760405162461bcd60e51b81526004016104ed9061178a565b6001600160a01b038116610bc25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ed565b6106c581611005565b6001600160a01b038316610c2d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ed565b6001600160a01b038216610c8e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ed565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610d545760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104ed565b6001600160a01b038216610db65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ed565b6001600160a01b03831660009081526020819052604090205481811015610e2e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104ed565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610e659084906117bf565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eb191815260200190565b60405180910390a350505050565b6001600160a01b038216610f1f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104ed565b6001600160a01b03821660009081526020819052604090205481811015610f935760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104ed565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610fc29084906117f6565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610ce3565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008086868460405160200161109293929190928352602083019190915260601b6bffffffffffffffffffffffff1916604082015260540190565b6040516020818303038152906040528051906020012090506000611103826040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b905060006111478288888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061125a92505050565b90506001600160a01b0381161580159061116e57506007546001600160a01b038281169116145b9998505050505050505050565b6001600160a01b0382166111d15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104ed565b80600260008282546111e391906117bf565b90915550506001600160a01b038216600090815260208190526040812080548392906112109084906117bf565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000806000611269858561127e565b91509150611276816112ee565b509392505050565b6000808251604114156112b55760208301516040840151606085015160001a6112a9878285856114a9565b945094505050506112e7565b8251604014156112df57602083015160408401516112d4868383611596565b9350935050506112e7565b506000905060025b9250929050565b60008160048111156113025761130261185e565b141561130b5750565b600181600481111561131f5761131f61185e565b141561136d5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016104ed565b60028160048111156113815761138161185e565b14156113cf5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016104ed565b60038160048111156113e3576113e361185e565b141561143c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016104ed565b60048160048111156114505761145061185e565b14156106c55760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016104ed565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156114e0575060009050600361158d565b8460ff16601b141580156114f857508460ff16601c14155b15611509575060009050600461158d565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561155d573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166115865760006001925092505061158d565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016115b7878288856114a9565b935093505050935093915050565b80356001600160a01b03811681146115dc57600080fd5b919050565b6000602082840312156115f357600080fd5b6115fc826115c5565b9392505050565b6000806040838503121561161657600080fd5b61161f836115c5565b915061162d602084016115c5565b90509250929050565b60008060006060848603121561164b57600080fd5b611654846115c5565b9250611662602085016115c5565b9150604084013590509250925092565b6000806040838503121561168557600080fd5b61168e836115c5565b946020939093013593505050565b6000602082840312156116ae57600080fd5b5035919050565b600080600080606085870312156116cb57600080fd5b8435935060208501359250604085013567ffffffffffffffff808211156116f157600080fd5b818701915087601f83011261170557600080fd5b81358181111561171457600080fd5b88602082850101111561172657600080fd5b95989497505060200194505050565b600060208083528351808285015260005b8181101561176257858101830151858201604001528201611746565b81811115611774576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156117d2576117d2611848565b500190565b60008160001904831182151516156117f1576117f1611848565b500290565b60008282101561180857611808611848565b500390565b600181811c9082168061182157607f821691505b6020821081141561184257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfea2646970667358221220d9a4ffdaadd770c6c0a7df6b487127890fa41bb38b1b59758c48722b4f8e0e6a64736f6c63430008070033000000000000000000000000eb154f3773b99b130466ae112d3c0e03cb11da9c

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063b187bd2611610097578063da1919b311610071578063da1919b314610344578063dd62ed3e14610357578063e596827e14610390578063f2fde38b146103a457600080fd5b8063b187bd26146102f1578063b7d86ff214610305578063d64e38711461031857600080fd5b806370a0823114610277578063715018a6146102a05780638da5cb5b146102a857806395d89b41146102c3578063a457c2d7146102cb578063a9059cbb146102de57600080fd5b806332cb6b0c1161014b57806342966c681161012557806342966c68146102415780634c0f38c2146102545780636779b03d1461025c5780636c19e7831461026457600080fd5b806332cb6b0c1461021d578063385df64914610226578063395093511461022e57600080fd5b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101d457806323b872dd146101e65780632854bc7e146101f9578063313ce5671461020e575b600080fd5b61019b6103b7565b6040516101a89190611735565b60405180910390f35b6101c46101bf366004611672565b610449565b60405190151581526020016101a8565b6002545b6040519081526020016101a8565b6101c46101f4366004611636565b61045f565b61020c61020736600461169c565b61050e565b005b604051601281526020016101a8565b6101d860065481565b61020c61060a565b6101c461023c366004611672565b610655565b61020c61024f36600461169c565b610691565b6101d86106c8565b61020c610723565b61020c6102723660046115e1565b610762565b6101d86102853660046115e1565b6001600160a01b031660009081526020819052604090205490565b61020c6107ae565b6005546040516001600160a01b0390911681526020016101a8565b61019b6107e4565b6101c46102d9366004611672565b6107f3565b6101c46102ec366004611672565b61088c565b6005546101c490600160a01b900460ff1681565b61020c6103133660046116b5565b610899565b6101c46103263660046115e1565b6001600160a01b031660009081526008602052604090205460ff1690565b61020c610352366004611672565b610a78565b6101d8610365366004611603565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546101c490600160a81b900460ff1681565b61020c6103b23660046115e1565b610b33565b6060600380546103c69061180d565b80601f01602080910402602001604051908101604052809291908181526020018280546103f29061180d565b801561043f5780601f106104145761010080835404028352916020019161043f565b820191906000526020600020905b81548152906001019060200180831161042257829003601f168201915b5050505050905090565b6000610456338484610bcb565b50600192915050565b600061046c848484610cf0565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104f65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105038533858403610bcb565b506001949350505050565b6005546001600160a01b031633146105385760405162461bcd60e51b81526004016104ed9061178a565b8061054260025490565b106105ab5760405162461bcd60e51b815260206004820152603360248201527f56616c756520697320736d616c6c6572207468616e20746865206e756d626572604482015272206f66206578697374696e6720746f6b656e7360681b60648201526084016104ed565b600554600160a81b900460ff16156106055760405162461bcd60e51b815260206004820152601e60248201527f546f6b656e2063617020686173206265656e20616c726561647920736574000060448201526064016104ed565b600655565b6005546001600160a01b031633146106345760405162461bcd60e51b81526004016104ed9061178a565b6005805460ff60a01b198116600160a01b9182900460ff1615909102179055565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161045691859061068c9086906117bf565b610bcb565b6005546001600160a01b031633146106bb5760405162461bcd60e51b81526004016104ed9061178a565b6106c53382610ebf565b50565b600554600090600160a81b900460ff1661071c5760405162461bcd60e51b815260206004820152601560248201527413585e081cdd5c1c1b1e481a5cc81b9bdd081cd95d605a1b60448201526064016104ed565b5060065490565b6005546001600160a01b0316331461074d5760405162461bcd60e51b81526004016104ed9061178a565b6005805460ff60a81b1916600160a81b179055565b6005546001600160a01b0316331461078c5760405162461bcd60e51b81526004016104ed9061178a565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146107d85760405162461bcd60e51b81526004016104ed9061178a565b6107e26000611005565b565b6060600480546103c69061180d565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156108755760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104ed565b6108823385858403610bcb565b5060019392505050565b6000610456338484610cf0565b600554600160a01b900460ff16156108f35760405162461bcd60e51b815260206004820152601b60248201527f436c61696d696e672070726f636573732069732070617573656421000000000060448201526064016104ed565b6109008484848433611057565b61093d5760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21039b4b3b732b960911b60448201526064016104ed565b60008381526009602052604090205460ff16156109915760405162461bcd60e51b8152602060048201526012602482015271139bdb98d948185b1c9958591e481d5cd95960721b60448201526064016104ed565b3360009081526008602052604090205460ff16156109e35760405162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e4818db185a5b5959608a1b60448201526064016104ed565b60006109f785670de0b6b3a76400006117d7565b60008581526009602090815260408083208054600160ff199182168117909255338086526008909452919093208054909116909217909155909150610a3c908261117b565b60405181815233907fe42df0d9493dfd0d7f69902c895b94c190a53e8c27876a86f45e7c997d9d8f7c9060200160405180910390a25050505050565b6005546001600160a01b03163314610aa25760405162461bcd60e51b81526004016104ed9061178a565b600554600160a81b900460ff1615610b255760065481610ac160025490565b610acb91906117bf565b1115610b255760405162461bcd60e51b8152602060048201526024808201527f596f752074727920746f206d696e74206d6f7265207468616e206d617820737560448201526370706c7960e01b60648201526084016104ed565b610b2f828261117b565b5050565b6005546001600160a01b03163314610b5d5760405162461bcd60e51b81526004016104ed9061178a565b6001600160a01b038116610bc25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ed565b6106c581611005565b6001600160a01b038316610c2d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ed565b6001600160a01b038216610c8e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ed565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610d545760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104ed565b6001600160a01b038216610db65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ed565b6001600160a01b03831660009081526020819052604090205481811015610e2e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104ed565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610e659084906117bf565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eb191815260200190565b60405180910390a350505050565b6001600160a01b038216610f1f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104ed565b6001600160a01b03821660009081526020819052604090205481811015610f935760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104ed565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610fc29084906117f6565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610ce3565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008086868460405160200161109293929190928352602083019190915260601b6bffffffffffffffffffffffff1916604082015260540190565b6040516020818303038152906040528051906020012090506000611103826040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b905060006111478288888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061125a92505050565b90506001600160a01b0381161580159061116e57506007546001600160a01b038281169116145b9998505050505050505050565b6001600160a01b0382166111d15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104ed565b80600260008282546111e391906117bf565b90915550506001600160a01b038216600090815260208190526040812080548392906112109084906117bf565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000806000611269858561127e565b91509150611276816112ee565b509392505050565b6000808251604114156112b55760208301516040840151606085015160001a6112a9878285856114a9565b945094505050506112e7565b8251604014156112df57602083015160408401516112d4868383611596565b9350935050506112e7565b506000905060025b9250929050565b60008160048111156113025761130261185e565b141561130b5750565b600181600481111561131f5761131f61185e565b141561136d5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016104ed565b60028160048111156113815761138161185e565b14156113cf5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016104ed565b60038160048111156113e3576113e361185e565b141561143c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016104ed565b60048160048111156114505761145061185e565b14156106c55760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016104ed565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156114e0575060009050600361158d565b8460ff16601b141580156114f857508460ff16601c14155b15611509575060009050600461158d565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561155d573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166115865760006001925092505061158d565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016115b7878288856114a9565b935093505050935093915050565b80356001600160a01b03811681146115dc57600080fd5b919050565b6000602082840312156115f357600080fd5b6115fc826115c5565b9392505050565b6000806040838503121561161657600080fd5b61161f836115c5565b915061162d602084016115c5565b90509250929050565b60008060006060848603121561164b57600080fd5b611654846115c5565b9250611662602085016115c5565b9150604084013590509250925092565b6000806040838503121561168557600080fd5b61168e836115c5565b946020939093013593505050565b6000602082840312156116ae57600080fd5b5035919050565b600080600080606085870312156116cb57600080fd5b8435935060208501359250604085013567ffffffffffffffff808211156116f157600080fd5b818701915087601f83011261170557600080fd5b81358181111561171457600080fd5b88602082850101111561172657600080fd5b95989497505060200194505050565b600060208083528351808285015260005b8181101561176257858101830151858201604001528201611746565b81811115611774576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156117d2576117d2611848565b500190565b60008160001904831182151516156117f1576117f1611848565b500290565b60008282101561180857611808611848565b500390565b600181811c9082168061182157607f821691505b6020821081141561184257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfea2646970667358221220d9a4ffdaadd770c6c0a7df6b487127890fa41bb38b1b59758c48722b4f8e0e6a64736f6c63430008070033

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

000000000000000000000000eb154f3773b99b130466ae112d3c0e03cb11da9c

-----Decoded View---------------
Arg [0] : signerAddrs (address): 0xEB154f3773B99b130466ae112D3c0e03cB11dA9c

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000eb154f3773b99b130466ae112d3c0e03cb11da9c


Deployed Bytecode Sourcemap

234:2617:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4238:166;;;;;;:::i;:::-;;:::i;:::-;;;3279:14:8;;3272:22;3254:41;;3242:2;3227:18;4238:166:2;3114:187:8;3229:106:2;3316:12;;3229:106;;;13673:25:8;;;13661:2;13646:18;3229:106:2;13527:177:8;4871:478:2;;;;;;:::i;:::-;;:::i;2294:263:0:-;;;;;;:::i;:::-;;:::i;:::-;;3078:91:2;;;3160:2;13851:36:8;;13839:2;13824:18;3078:91:2;13709:184:8;376:25:0;;;;;;1988:77;;;:::i;5744:212:2:-;;;;;;:::i;:::-;;:::i;2756:93:0:-;;;;;;:::i;:::-;;:::i;1402:146::-;;;:::i;2563:84::-;;;:::i;2653:97::-;;;;;;:::i;:::-;;:::i;3393:125:2:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3493:18:2;3467:7;3493:18;;;;;;;;;;;;3393:125;1668:101:1;;;:::i;1036:85::-;1108:6;;1036:85;;-1:-1:-1;;;;;1108:6:1;;;3052:51:8;;3040:2;3025:18;1036:85:1;2906:203:8;2352:102:2;;;:::i;6443:405::-;;;;;;:::i;:::-;;:::i;3721:172::-;;;;;;:::i;:::-;;:::i;302:27:0:-;;;;;-1:-1:-1;;;302:27:0;;;;;;702:577;;;;;;:::i;:::-;;:::i;1285:111::-;;;;;;:::i;:::-;-1:-1:-1;;;;;1370:19:0;1347:4;1370:19;;;:13;:19;;;;;;;;;1285:111;2071:217;;;;;;:::i;:::-;;:::i;3951:149:2:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4066:18:2;;;4040:7;4066:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3951:149;335:34:0;;;;;-1:-1:-1;;;335:34:0;;;;;;1918:198:1;;;;;;:::i;:::-;;:::i;2141:98:2:-;2195:13;2227:5;2220:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98;:::o;4238:166::-;4321:4;4337:39;719:10:5;4360:7:2;4369:6;4337:8;:39::i;:::-;-1:-1:-1;4393:4:2;4238:166;;;;:::o;4871:478::-;5007:4;5023:36;5033:6;5041:9;5052:6;5023:9;:36::i;:::-;-1:-1:-1;;;;;5097:19:2;;5070:24;5097:19;;;:11;:19;;;;;;;;719:10:5;5097:33:2;;;;;;;;5148:26;;;;5140:79;;;;-1:-1:-1;;;5140:79:2;;9854:2:8;5140:79:2;;;9836:21:8;9893:2;9873:18;;;9866:30;9932:34;9912:18;;;9905:62;-1:-1:-1;;;9983:18:8;;;9976:38;10031:19;;5140:79:2;;;;;;;;;5253:57;5262:6;719:10:5;5303:6:2;5284:16;:25;5253:8;:57::i;:::-;-1:-1:-1;5338:4:2;;4871:478;-1:-1:-1;;;;4871:478:2:o;2294:263:0:-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:5;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;2386:8:0::1;2370:13;3316:12:2::0;;;3229:106;2370:13:0::1;:24;2362:88;;;::::0;-1:-1:-1;;;2362:88:0;;10624:2:8;2362:88:0::1;::::0;::::1;10606:21:8::0;10663:2;10643:18;;;10636:30;10702:34;10682:18;;;10675:62;-1:-1:-1;;;10753:18:8;;;10746:49;10812:19;;2362:88:0::1;10422:415:8::0;2362:88:0::1;2469:14;::::0;-1:-1:-1;;;2469:14:0;::::1;;;2468:15;2460:58;;;::::0;-1:-1:-1;;;2460:58:0;;7655:2:8;2460:58:0::1;::::0;::::1;7637:21:8::0;7694:2;7674:18;;;7667:30;7733:32;7713:18;;;7706:60;7783:18;;2460:58:0::1;7453:354:8::0;2460:58:0::1;2529:10;:21:::0;2294:263::o;1988:77::-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:5;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;2050:8:0::1;::::0;;-1:-1:-1;;;;2038:20:0;::::1;-1:-1:-1::0;;;2050:8:0;;;::::1;;;2049:9;2038:20:::0;;::::1;;::::0;;1988:77::o;5744:212:2:-;719:10:5;5832:4:2;5880:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5880:34:2;;;;;;;;;;5832:4;;5848:80;;5871:7;;5880:47;;5917:10;;5880:47;:::i;:::-;5848:8;:80::i;2756:93:0:-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:5;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;2816:26:0::1;2822:10;2834:7;2816:5;:26::i;:::-;2756:93:::0;:::o;1402:146::-;1474:14;;1447:7;;-1:-1:-1;;;1474:14:0;;;;1466:48;;;;-1:-1:-1;;;1466:48:0;;11044:2:8;1466:48:0;;;11026:21:8;11083:2;11063:18;;;11056:30;-1:-1:-1;;;11102:18:8;;;11095:51;11163:18;;1466:48:0;10842:345:8;1466:48:0;-1:-1:-1;1531:10:0;;;1402:146::o;2563:84::-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:5;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;2619:14:0::1;:21:::0;;-1:-1:-1;;;;2619:21:0::1;-1:-1:-1::0;;;2619:21:0::1;::::0;;2563:84::o;2653:97::-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:5;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;2722:7:0::1;:21:::0;;-1:-1:-1;;;;;;2722:21:0::1;-1:-1:-1::0;;;;;2722:21:0;;;::::1;::::0;;;::::1;::::0;;2653:97::o;1668:101:1:-;1108:6;;-1:-1:-1;;;;;1108:6:1;719:10:5;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;2352:102:2:-;2408:13;2440:7;2433:14;;;;;:::i;6443:405::-;719:10:5;6536:4:2;6579:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6579:34:2;;;;;;;;;;6631:35;;;;6623:85;;;;-1:-1:-1;;;6623:85:2;;12963:2:8;6623:85:2;;;12945:21:8;13002:2;12982:18;;;12975:30;13041:34;13021:18;;;13014:62;-1:-1:-1;;;13092:18:8;;;13085:35;13137:19;;6623:85:2;12761:401:8;6623:85:2;6742:67;719:10:5;6765:7:2;6793:15;6774:16;:34;6742:8;:67::i;:::-;-1:-1:-1;6837:4:2;;6443:405;-1:-1:-1;;;6443:405:2:o;3721:172::-;3807:4;3823:42;719:10:5;3847:9:2;3858:6;3823:9;:42::i;702:577:0:-;809:8;;-1:-1:-1;;;809:8:0;;;;808:9;800:49;;;;-1:-1:-1;;;800:49:0;;12607:2:8;800:49:0;;;12589:21:8;12646:2;12626:18;;;12619:30;12685:29;12665:18;;;12658:57;12732:18;;800:49:0;12405:351:8;800:49:0;867:56;886:6;894:5;901:9;;912:10;867:18;:56::i;:::-;859:83;;;;-1:-1:-1;;;859:83:0;;8820:2:8;859:83:0;;;8802:21:8;8859:2;8839:18;;;8832:30;-1:-1:-1;;;8878:18:8;;;8871:44;8932:18;;859:83:0;8618:338:8;859:83:0;961:17;;;;:10;:17;;;;;;;;960:18;952:49;;;;-1:-1:-1;;;952:49:0;;9507:2:8;952:49:0;;;9489:21:8;9546:2;9526:18;;;9519:30;-1:-1:-1;;;9565:18:8;;;9558:48;9623:18;;952:49:0;9305:342:8;952:49:0;1034:10;1020:25;;;;:13;:25;;;;;;;;1019:26;1011:54;;;;-1:-1:-1;;;1011:54:0;;9163:2:8;1011:54:0;;;9145:21:8;9202:2;9182:18;;;9175:30;-1:-1:-1;;;9221:18:8;;;9214:45;9276:18;;1011:54:0;8961:339:8;1011:54:0;1076:15;1094:17;:6;1104;1094:17;:::i;:::-;1121;;;;:10;:17;;;;;;;;:24;;1141:4;-1:-1:-1;;1121:24:0;;;;;;;;1169:10;1155:25;;;:13;:25;;;;;;;:32;;;;;;;;;;;1076:35;;-1:-1:-1;1197:26:0;;1076:35;1197:5;:26::i;:::-;1239:33;;13673:25:8;;;1252:10:0;;1239:33;;13661:2:8;13646:18;1239:33:0;;;;;;;790:489;702:577;;;;:::o;2071:217::-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:5;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;2151:14:0::1;::::0;-1:-1:-1;;;2151:14:0;::::1;;;2147:105;;;2201:10;;2191:6;2175:13;3316:12:2::0;;;3229:106;2175:13:0::1;:22;;;;:::i;:::-;:36;;2167:85;;;::::0;-1:-1:-1;;;2167:85:0;;6843:2:8;2167:85:0::1;::::0;::::1;6825:21:8::0;6882:2;6862:18;;;6855:30;6921:34;6901:18;;;6894:62;-1:-1:-1;;;6972:18:8;;;6965:34;7016:19;;2167:85:0::1;6641:400:8::0;2167:85:0::1;2262:19;2268:4;2274:6;2262:5;:19::i;:::-;2071:217:::0;;:::o;1918:198:1:-;1108:6;;-1:-1:-1;;;;;1108:6:1;719:10:5;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:1;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:1;;6033:2:8;1998:73:1::1;::::0;::::1;6015:21:8::0;6072:2;6052:18;;;6045:30;6111:34;6091:18;;;6084:62;-1:-1:-1;;;6162:18:8;;;6155:36;6208:19;;1998:73:1::1;5831:402:8::0;1998:73:1::1;2081:28;2100:8;2081:18;:28::i;10019:370:2:-:0;-1:-1:-1;;;;;10150:19:2;;10142:68;;;;-1:-1:-1;;;10142:68:2;;12202:2:8;10142:68:2;;;12184:21:8;12241:2;12221:18;;;12214:30;12280:34;12260:18;;;12253:62;-1:-1:-1;;;12331:18:8;;;12324:34;12375:19;;10142:68:2;12000:400:8;10142:68:2;-1:-1:-1;;;;;10228:21:2;;10220:68;;;;-1:-1:-1;;;10220:68:2;;6440:2:8;10220:68:2;;;6422:21:8;6479:2;6459:18;;;6452:30;6518:34;6498:18;;;6491:62;-1:-1:-1;;;6569:18:8;;;6562:32;6611:19;;10220:68:2;6238:398:8;10220:68:2;-1:-1:-1;;;;;10299:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10350:32;;13673:25:8;;;10350:32:2;;13646:18:8;10350:32:2;;;;;;;;10019:370;;;:::o;7322:713::-;-1:-1:-1;;;;;7457:20:2;;7449:70;;;;-1:-1:-1;;;7449:70:2;;11796:2:8;7449:70:2;;;11778:21:8;11835:2;11815:18;;;11808:30;11874:34;11854:18;;;11847:62;-1:-1:-1;;;11925:18:8;;;11918:35;11970:19;;7449:70:2;11594:401:8;7449:70:2;-1:-1:-1;;;;;7537:23:2;;7529:71;;;;-1:-1:-1;;;7529:71:2;;4866:2:8;7529:71:2;;;4848:21:8;4905:2;4885:18;;;4878:30;4944:34;4924:18;;;4917:62;-1:-1:-1;;;4995:18:8;;;4988:33;5038:19;;7529:71:2;4664:399:8;7529:71:2;-1:-1:-1;;;;;7693:17:2;;7669:21;7693:17;;;;;;;;;;;7728:23;;;;7720:74;;;;-1:-1:-1;;;7720:74:2;;7248:2:8;7720:74:2;;;7230:21:8;7287:2;7267:18;;;7260:30;7326:34;7306:18;;;7299:62;-1:-1:-1;;;7377:18:8;;;7370:36;7423:19;;7720:74:2;7046:402:8;7720:74:2;-1:-1:-1;;;;;7828:17:2;;;:9;:17;;;;;;;;;;;7848:22;;;7828:42;;7890:20;;;;;;;;:30;;7864:6;;7828:9;7890:30;;7864:6;;7890:30;:::i;:::-;;;;;;;;7953:9;-1:-1:-1;;;;;7936:35:2;7945:6;-1:-1:-1;;;;;7936:35:2;;7964:6;7936:35;;;;13673:25:8;;13661:2;13646:18;;13527:177;7936:35:2;;;;;;;;7439:596;7322:713;;;:::o;9020:576::-;-1:-1:-1;;;;;9103:21:2;;9095:67;;;;-1:-1:-1;;;9095:67:2;;11394:2:8;9095:67:2;;;11376:21:8;11433:2;11413:18;;;11406:30;11472:34;11452:18;;;11445:62;-1:-1:-1;;;11523:18:8;;;11516:31;11564:19;;9095:67:2;11192:397:8;9095:67:2;-1:-1:-1;;;;;9258:18:2;;9233:22;9258:18;;;;;;;;;;;9294:24;;;;9286:71;;;;-1:-1:-1;;;9286:71:2;;5270:2:8;9286:71:2;;;5252:21:8;5309:2;5289:18;;;5282:30;5348:34;5328:18;;;5321:62;-1:-1:-1;;;5399:18:8;;;5392:32;5441:19;;9286:71:2;5068:398:8;9286:71:2;-1:-1:-1;;;;;9391:18:2;;:9;:18;;;;;;;;;;9412:23;;;9391:44;;9455:12;:22;;9429:6;;9391:9;9455:22;;9429:6;;9455:22;:::i;:::-;;;;-1:-1:-1;;9493:37:2;;13673:25:8;;;9519:1:2;;-1:-1:-1;;;;;9493:37:2;;;;;13661:2:8;13646:18;9493:37:2;13527:177:8;2270:187:1;2362:6;;;-1:-1:-1;;;;;2378:17:1;;;-1:-1:-1;;;;;;2378:17:1;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;1554:428:0:-;1676:4;1692:16;1738:6;1746:5;1753:6;1721:39;;;;;;;;;2727:19:8;;;2771:2;2762:12;;2755:28;;;;2821:2;2817:15;-1:-1:-1;;2813:53:8;2808:2;2799:12;;2792:75;2892:2;2883:12;;2542:359;1721:39:0;;;;;;;;;;;;;1711:50;;;;;;1692:69;;1771:15;1789:38;1818:8;8239:58:7;;2399:66:8;8239:58:7;;;2387:79:8;2482:12;;;2475:28;;;8109:7:7;;2519:12:8;;8239:58:7;;;;;;;;;;;;8229:69;;;;;;8222:76;;8040:265;;;;1789:38:0;1771:56;;1838:23;1864:33;1878:7;1887:9;;1864:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1864:13:0;;-1:-1:-1;;;1864:33:0:i;:::-;1838:59;-1:-1:-1;;;;;;1915:29:0;;;;;;:59;;-1:-1:-1;1967:7:0;;-1:-1:-1;;;;;1948:26:0;;;1967:7;;1948:26;1915:59;1907:68;1554:428;-1:-1:-1;;;;;;;;;1554:428:0:o;8311:389:2:-;-1:-1:-1;;;;;8394:21:2;;8386:65;;;;-1:-1:-1;;;8386:65:2;;13369:2:8;8386:65:2;;;13351:21:8;13408:2;13388:18;;;13381:30;13447:33;13427:18;;;13420:61;13498:18;;8386:65:2;13167:355:8;8386:65:2;8538:6;8522:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8554:18:2;;:9;:18;;;;;;;;;;:28;;8576:6;;8554:9;:28;;8576:6;;8554:28;:::i;:::-;;;;-1:-1:-1;;8597:37:2;;13673:25:8;;;-1:-1:-1;;;;;8597:37:2;;;8614:1;;8597:37;;13661:2:8;13646:18;8597:37:2;;;;;;;2071:217:0;;:::o;4293:227:7:-;4371:7;4391:17;4410:18;4432:27;4443:4;4449:9;4432:10;:27::i;:::-;4390:69;;;;4469:18;4481:5;4469:11;:18::i;:::-;-1:-1:-1;4504:9:7;4293:227;-1:-1:-1;;;4293:227:7:o;2228:1279::-;2309:7;2318:12;2539:9;:16;2559:2;2539:22;2535:966;;;2828:4;2813:20;;2807:27;2877:4;2862:20;;2856:27;2934:4;2919:20;;2913:27;2577:9;2905:36;2975:25;2986:4;2905:36;2807:27;2856;2975:10;:25::i;:::-;2968:32;;;;;;;;;2535:966;3021:9;:16;3041:2;3021:22;3017:484;;;3290:4;3275:20;;3269:27;3340:4;3325:20;;3319:27;3380:23;3391:4;3269:27;3319;3380:10;:23::i;:::-;3373:30;;;;;;;;3017:484;-1:-1:-1;3450:1:7;;-1:-1:-1;3454:35:7;3017:484;2228:1279;;;;;:::o;533:631::-;610:20;601:5;:29;;;;;;;;:::i;:::-;;597:561;;;533:631;:::o;597:561::-;706:29;697:5;:38;;;;;;;;:::i;:::-;;693:465;;;751:34;;-1:-1:-1;;;751:34:7;;4513:2:8;751:34:7;;;4495:21:8;4552:2;4532:18;;;4525:30;4591:26;4571:18;;;4564:54;4635:18;;751:34:7;4311:348:8;693:465:7;815:35;806:5;:44;;;;;;;;:::i;:::-;;802:356;;;866:41;;-1:-1:-1;;;866:41:7;;5673:2:8;866:41:7;;;5655:21:8;5712:2;5692:18;;;5685:30;5751:33;5731:18;;;5724:61;5802:18;;866:41:7;5471:355:8;802:356:7;937:30;928:5;:39;;;;;;;;:::i;:::-;;924:234;;;983:44;;-1:-1:-1;;;983:44:7;;8014:2:8;983:44:7;;;7996:21:8;8053:2;8033:18;;;8026:30;8092:34;8072:18;;;8065:62;-1:-1:-1;;;8143:18:8;;;8136:32;8185:19;;983:44:7;7812:398:8;924:234:7;1057:30;1048:5;:39;;;;;;;;:::i;:::-;;1044:114;;;1103:44;;-1:-1:-1;;;1103:44:7;;8417:2:8;1103:44:7;;;8399:21:8;8456:2;8436:18;;;8429:30;8495:34;8475:18;;;8468:62;-1:-1:-1;;;8546:18:8;;;8539:32;8588:19;;1103:44:7;8215:398:8;5744:1603:7;5870:7;;6794:66;6781:79;;6777:161;;;-1:-1:-1;6892:1:7;;-1:-1:-1;6896:30:7;6876:51;;6777:161;6951:1;:7;;6956:2;6951:7;;:18;;;;;6962:1;:7;;6967:2;6962:7;;6951:18;6947:100;;;-1:-1:-1;7001:1:7;;-1:-1:-1;7005:30:7;6985:51;;6947:100;7158:24;;;7141:14;7158:24;;;;;;;;;3533:25:8;;;3606:4;3594:17;;3574:18;;;3567:45;;;;3628:18;;;3621:34;;;3671:18;;;3664:34;;;7158:24:7;;3505:19:8;;7158:24:7;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7158:24:7;;-1:-1:-1;;7158:24:7;;;-1:-1:-1;;;;;;;7196:20:7;;7192:101;;7248:1;7252:29;7232:50;;;;;;;7192:101;7311:6;-1:-1:-1;7319:20:7;;-1:-1:-1;5744:1603:7;;;;;;;;:::o;4774:379::-;4884:7;;-1:-1:-1;;;;;4981:75:7;;5082:3;5078:12;;;5092:2;5074:21;5121:25;5132:4;5074:21;5141:1;4981:75;5121:10;:25::i;:::-;5114:32;;;;;;4774:379;;;;;;:::o;14:173:8:-;82:20;;-1:-1:-1;;;;;131:31:8;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:8:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:8:o;1240:180::-;1299:6;1352:2;1340:9;1331:7;1327:23;1323:32;1320:52;;;1368:1;1365;1358:12;1320:52;-1:-1:-1;1391:23:8;;1240:180;-1:-1:-1;1240:180:8:o;1425:727::-;1513:6;1521;1529;1537;1590:2;1578:9;1569:7;1565:23;1561:32;1558:52;;;1606:1;1603;1596:12;1558:52;1642:9;1629:23;1619:33;;1699:2;1688:9;1684:18;1671:32;1661:42;;1754:2;1743:9;1739:18;1726:32;1777:18;1818:2;1810:6;1807:14;1804:34;;;1834:1;1831;1824:12;1804:34;1872:6;1861:9;1857:22;1847:32;;1917:7;1910:4;1906:2;1902:13;1898:27;1888:55;;1939:1;1936;1929:12;1888:55;1979:2;1966:16;2005:2;1997:6;1994:14;1991:34;;;2021:1;2018;2011:12;1991:34;2066:7;2061:2;2052:6;2048:2;2044:15;2040:24;2037:37;2034:57;;;2087:1;2084;2077:12;2034:57;1425:727;;;;-1:-1:-1;;2118:2:8;2110:11;;-1:-1:-1;;;1425:727:8:o;3709:597::-;3821:4;3850:2;3879;3868:9;3861:21;3911:6;3905:13;3954:6;3949:2;3938:9;3934:18;3927:34;3979:1;3989:140;4003:6;4000:1;3997:13;3989:140;;;4098:14;;;4094:23;;4088:30;4064:17;;;4083:2;4060:26;4053:66;4018:10;;3989:140;;;4147:6;4144:1;4141:13;4138:91;;;4217:1;4212:2;4203:6;4192:9;4188:22;4184:31;4177:42;4138:91;-1:-1:-1;4290:2:8;4269:15;-1:-1:-1;;4265:29:8;4250:45;;;;4297:2;4246:54;;3709:597;-1:-1:-1;;;3709:597:8:o;10061:356::-;10263:2;10245:21;;;10282:18;;;10275:30;10341:34;10336:2;10321:18;;10314:62;10408:2;10393:18;;10061:356::o;13898:128::-;13938:3;13969:1;13965:6;13962:1;13959:13;13956:39;;;13975:18;;:::i;:::-;-1:-1:-1;14011:9:8;;13898:128::o;14031:168::-;14071:7;14137:1;14133;14129:6;14125:14;14122:1;14119:21;14114:1;14107:9;14100:17;14096:45;14093:71;;;14144:18;;:::i;:::-;-1:-1:-1;14184:9:8;;14031:168::o;14204:125::-;14244:4;14272:1;14269;14266:8;14263:34;;;14277:18;;:::i;:::-;-1:-1:-1;14314:9:8;;14204:125::o;14334:380::-;14413:1;14409:12;;;;14456;;;14477:61;;14531:4;14523:6;14519:17;14509:27;;14477:61;14584:2;14576:6;14573:14;14553:18;14550:38;14547:161;;;14630:10;14625:3;14621:20;14618:1;14611:31;14665:4;14662:1;14655:15;14693:4;14690:1;14683:15;14547:161;;14334:380;;;:::o;14719:127::-;14780:10;14775:3;14771:20;14768:1;14761:31;14811:4;14808:1;14801:15;14835:4;14832:1;14825:15;14851:127;14912:10;14907:3;14903:20;14900:1;14893:31;14943:4;14940:1;14933:15;14967:4;14964:1;14957:15

Swarm Source

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