ETH Price: $1,976.71 (+0.80%)
 

More Info

Private Name Tags

TokenTracker

ZENIQ (ZENIQ) ($0.0014)

Multichain Info

Transaction Hash
Method
Block
From
To
Transfer245059502026-02-21 14:50:4715 hrs ago1771685447IN
ZENIQ: ZENIQ Token
0 ETH0.000049091.04869322
Transfer244966122026-02-20 7:36:3547 hrs ago1771572995IN
ZENIQ: ZENIQ Token
0 ETH0.000001070.03612124
Approve244958582026-02-20 5:05:232 days ago1771563923IN
ZENIQ: ZENIQ Token
0 ETH0.000002650.057
Approve244846112026-02-18 15:27:113 days ago1771428431IN
ZENIQ: ZENIQ Token
0 ETH0.000006990.28769467
Approve244786632026-02-17 19:32:234 days ago1771356743IN
ZENIQ: ZENIQ Token
0 ETH0.000009470.20336351
Approve244768932026-02-17 13:36:354 days ago1771335395IN
ZENIQ: ZENIQ Token
0 ETH0.00010022.16319288
Transfer244712432026-02-16 18:42:115 days ago1771267331IN
ZENIQ: ZENIQ Token
0 ETH0.000002580.05530246
Approve244696132026-02-16 13:14:595 days ago1771247699IN
ZENIQ: ZENIQ Token
0 ETH0.000050441.08427214
Approve244637122026-02-15 17:30:596 days ago1771176659IN
ZENIQ: ZENIQ Token
0 ETH0.000006460.13980821
Transfer244635902026-02-15 17:06:236 days ago1771175183IN
ZENIQ: ZENIQ Token
0 ETH0.00000530.11328439
Transfer244603552026-02-15 6:17:237 days ago1771136243IN
ZENIQ: ZENIQ Token
0 ETH0.000001110.03235824
Approve244487502026-02-13 15:27:118 days ago1770996431IN
ZENIQ: ZENIQ Token
0 ETH0.000057081.22685389
Approve244378842026-02-12 3:02:5910 days ago1770865379IN
ZENIQ: ZENIQ Token
0 ETH0.000100042.15912856
Approve244211942026-02-09 19:07:1112 days ago1770664031IN
ZENIQ: ZENIQ Token
0 ETH0.00002220.47643416
Approve244119052026-02-08 11:55:3513 days ago1770551735IN
ZENIQ: ZENIQ Token
0 ETH0.000006850.14806768
Approve244069682026-02-07 19:14:5914 days ago1770491699IN
ZENIQ: ZENIQ Token
0 ETH0.000008380.18018473
Approve243553292026-01-31 14:03:1121 days ago1769868191IN
ZENIQ: ZENIQ Token
0 ETH0.000098022.11726496
Transfer243551612026-01-31 13:29:3521 days ago1769866175IN
ZENIQ: ZENIQ Token
0 ETH0.000003680.07868364
Transfer243361972026-01-28 22:01:3524 days ago1769637695IN
ZENIQ: ZENIQ Token
0 ETH0.000095772.04591918
Approve243360112026-01-28 21:24:2324 days ago1769635463IN
ZENIQ: ZENIQ Token
0 ETH0.000049341.06054083
Transfer243331092026-01-28 11:42:1124 days ago1769600531IN
ZENIQ: ZENIQ Token
0 ETH0.000051161.09302574
Approve242999052026-01-23 20:34:3529 days ago1769200475IN
ZENIQ: ZENIQ Token
0 ETH0.000104162.24798184
Transfer242967672026-01-23 10:03:4729 days ago1769162627IN
ZENIQ: ZENIQ Token
0 ETH0.000001820.06150698
Approve242846092026-01-21 17:17:5931 days ago1769015879IN
ZENIQ: ZENIQ Token
0 ETH0.000041870.89866226
Approve242665242026-01-19 4:47:4734 days ago1768798067IN
ZENIQ: ZENIQ Token
0 ETH0.000001410.03045756
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ZENIQToken

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-03-31
*/

// SPDX-License-Identifier: MIT

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);
}

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @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 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 {_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 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 override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @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 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.
     */
    function grantRole(bytes32 role, address account) public virtual override {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to grant");

        _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.
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to revoke");

        _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 granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    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.
     *
     * [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}.
     * ====
     */
    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 {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable {
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping (bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {grantRole} to track enumerable memberships
     */
    function grantRole(bytes32 role, address account) public virtual override {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {revokeRole} to track enumerable memberships
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        super.revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        super.renounceRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {_setupRole} to track enumerable memberships
     */
    function _setupRole(bytes32 role, address account) internal virtual override {
        super._setupRole(role, account);
        _roleMembers[role].add(account);
    }
}

contract ZENIQToken is Context, AccessControlEnumerable, ERC20 {
    bytes32 public constant BRIDGE_ROLE = keccak256("BRIDGE_ROLE");

    function burnFrom(address account, uint256 amount) public virtual {
        require(hasRole(BRIDGE_ROLE, _msgSender()), "ZENIQ: burning not allowed");
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ZENIQ: burn amount exceeds allowance");
        _approve(account, _msgSender(), currentAllowance - amount);
        _burn(account, amount);
    }

    function mint(address to, uint256 amount) public virtual {
        require(hasRole(BRIDGE_ROLE, _msgSender()), "ZENIQ: minting not allowed");
        _mint(to, amount);
    }

    constructor() ERC20("ZENIQ", "ZENIQ") {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(BRIDGE_ROLE, _msgSender());
    }

    function burn(uint256 amount) public virtual {
        require(hasRole(BRIDGE_ROLE, _msgSender()), "ZENIQ: burning not allowed");
        _burn(_msgSender(), amount);
    }
}

Contract Security Audit

Contract ABI

API
[{"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":"BRIDGE_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":[{"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":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","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":"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":"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"}]

60806040523480156200001157600080fd5b50604051806040016040528060058152602001645a454e495160d81b815250604051806040016040528060058152602001645a454e495160d81b81525081600590805190602001906200006692919062000226565b5080516200007c90600690602084019062000226565b506200008f915060009050335b620000c1565b620000bb7f52ba824bfabc2bcfcdf7f0edbb486ebb05e1836c90e78047efeb949990f72e5f3362000089565b62000309565b620000d882826200010460201b6200087f1760201c565b6000828152600160209081526040909120620000ff9183906200088962000114821b17901c565b505050565b62000110828262000134565b5050565b60006200012b836001600160a01b038416620001d4565b90505b92915050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1662000110576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620001903390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008181526001830160205260408120546200021d575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200012e565b5060006200012e565b8280546200023490620002cc565b90600052602060002090601f016020900481019282620002585760008555620002a3565b82601f106200027357805160ff1916838001178555620002a3565b82800160010185558215620002a3579182015b82811115620002a357825182559160200191906001019062000286565b50620002b1929150620002b5565b5090565b5b80821115620002b15760008155600101620002b6565b600281046001821680620002e157607f821691505b602082108114156200030357634e487b7160e01b600052602260045260246000fd5b50919050565b61150080620003196000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d7146102ef578063a9059cbb14610302578063b5bfddea14610315578063ca15c8731461032a578063d547741f1461033d578063dd62ed3e1461035057610158565b806370a082311461026557806379cc67901461028e5780639010d07c146102a157806391d14854146102cc57806395d89b41146102df578063a217fddf146102e757610158565b80632f2ff15d116101155780632f2ff15d146101f5578063313ce5671461020a57806336568abe14610219578063395093511461022c57806340c10f191461023f57806342966c681461025257610158565b806301ffc9a71461015d57806306fdde0314610185578063095ea7b31461019a57806318160ddd146101ad57806323b872dd146101bf578063248a9ca3146101d2575b600080fd5b61017061016b3660046113af565b610389565b60405190151581526020015b60405180910390f35b61018d6103b6565b60405161017c91906113d7565b6101706101a836600461132b565b610448565b6004545b60405190815260200161017c565b6101706101cd3660046112f0565b61045f565b6101b16101e0366004611354565b60009081526020819052604090206001015490565b61020861020336600461136c565b610515565b005b6040516012815260200161017c565b61020861022736600461136c565b61053c565b61017061023a36600461132b565b61055e565b61020861024d36600461132b565b610595565b610208610260366004611354565b610607565b6101b16102733660046112a4565b6001600160a01b031660009081526002602052604090205490565b61020861029c36600461132b565b610678565b6102b46102af36600461138e565b61075f565b6040516001600160a01b03909116815260200161017c565b6101706102da36600461136c565b61077e565b61018d6107a7565b6101b1600081565b6101706102fd36600461132b565b6107b6565b61017061031036600461132b565b610851565b6101b16000805160206114ab83398151915281565b6101b1610338366004611354565b61085e565b61020861034b36600461136c565b610875565b6101b161035e3660046112be565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b60006001600160e01b03198216635a05180f60e01b14806103ae57506103ae8261089e565b90505b919050565b6060600580546103c590611459565b80601f01602080910402602001604051908101604052809291908181526020018280546103f190611459565b801561043e5780601f106104135761010080835404028352916020019161043e565b820191906000526020600020905b81548152906001019060200180831161042157829003601f168201915b5050505050905090565b60006104553384846108d3565b5060015b92915050565b600061046c8484846109f8565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156104f65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61050a85336105058685611442565b6108d3565b506001949350505050565b61051f8282610bd0565b60008281526001602052604090206105379082610889565b505050565b6105468282610c51565b60008281526001602052604090206105379082610ccb565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161045591859061050590869061142a565b6105ad6000805160206114ab833981519152336102da565b6105f95760405162461bcd60e51b815260206004820152601a60248201527f5a454e49513a206d696e74696e67206e6f7420616c6c6f77656400000000000060448201526064016104ed565b6106038282610ce0565b5050565b61061f6000805160206114ab833981519152336102da565b61066b5760405162461bcd60e51b815260206004820152601a60248201527f5a454e49513a206275726e696e67206e6f7420616c6c6f77656400000000000060448201526064016104ed565b6106753382610dbf565b50565b6106906000805160206114ab833981519152336102da565b6106dc5760405162461bcd60e51b815260206004820152601a60248201527f5a454e49513a206275726e696e67206e6f7420616c6c6f77656400000000000060448201526064016104ed565b60006106e8833361035e565b9050818110156107465760405162461bcd60e51b8152602060048201526024808201527f5a454e49513a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016104ed565b61075583336105058585611442565b6105378383610dbf565b60008281526001602052604081206107779083610f0e565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600680546103c590611459565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156108385760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104ed565b61084733856105058685611442565b5060019392505050565b60006104553384846109f8565b60008181526001602052604081206103ae90610f1a565b6105468282610f24565b6106038282610fa4565b6000610777836001600160a01b038416611028565b60006001600160e01b03198216637965db0b60e01b14806103ae57506301ffc9a760e01b6001600160e01b03198316146103ae565b6001600160a01b0383166109355760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ed565b6001600160a01b0382166109965760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ed565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610a5c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104ed565b6001600160a01b038216610abe5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ed565b6001600160a01b03831660009081526002602052604090205481811015610b365760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104ed565b610b408282611442565b6001600160a01b038086166000908152600260205260408082209390935590851681529081208054849290610b7690849061142a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bc291815260200190565b60405180910390a350505050565b600082815260208190526040902060010154610bed905b336102da565b61087f5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526e0818591b5a5b881d1bc819dc985b9d608a1b60648201526084016104ed565b6001600160a01b0381163314610cc15760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016104ed565b6106038282611077565b6000610777836001600160a01b0384166110dc565b6001600160a01b038216610d365760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104ed565b8060046000828254610d48919061142a565b90915550506001600160a01b03821660009081526002602052604081208054839290610d7590849061142a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610e1f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104ed565b6001600160a01b03821660009081526002602052604090205481811015610e935760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104ed565b610e9d8282611442565b6001600160a01b03841660009081526002602052604081209190915560048054849290610ecb908490611442565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016109eb565b600061077783836111f9565b60006103ae825490565b600082815260208190526040902060010154610f3f90610be7565b610cc15760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526f2061646d696e20746f207265766f6b6560801b60648201526084016104ed565b610fae828261077e565b610603576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055610fe43390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461106f57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610459565b506000610459565b611081828261077e565b15610603576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081815260018301602052604081205480156111ef576000611100600183611442565b855490915060009061111490600190611442565b9050600086600001828154811061113b57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508087600001848154811061116c57634e487b7160e01b600052603260045260246000fd5b60009182526020909120015561118383600161142a565b600082815260018901602052604090205586548790806111b357634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610459565b6000915050610459565b815460009082106112575760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016104ed565b82600001828154811061127a57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b80356001600160a01b03811681146103b157600080fd5b6000602082840312156112b5578081fd5b6107778261128d565b600080604083850312156112d0578081fd5b6112d98361128d565b91506112e76020840161128d565b90509250929050565b600080600060608486031215611304578081fd5b61130d8461128d565b925061131b6020850161128d565b9150604084013590509250925092565b6000806040838503121561133d578182fd5b6113468361128d565b946020939093013593505050565b600060208284031215611365578081fd5b5035919050565b6000806040838503121561137e578182fd5b823591506112e76020840161128d565b600080604083850312156113a0578182fd5b50508035926020909101359150565b6000602082840312156113c0578081fd5b81356001600160e01b031981168114610777578182fd5b6000602080835283518082850152825b81811015611403578581018301518582016040015282016113e7565b818111156114145783604083870101525b50601f01601f1916929092016040019392505050565b6000821982111561143d5761143d611494565b500190565b60008282101561145457611454611494565b500390565b60028104600182168061146d57607f821691505b6020821081141561148e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe52ba824bfabc2bcfcdf7f0edbb486ebb05e1836c90e78047efeb949990f72e5fa26469706673582212205a607577b50ecf36c4eb931c48d20f4faa8a1666aba078522b21bab03d5ba55c64736f6c63430008020033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d7146102ef578063a9059cbb14610302578063b5bfddea14610315578063ca15c8731461032a578063d547741f1461033d578063dd62ed3e1461035057610158565b806370a082311461026557806379cc67901461028e5780639010d07c146102a157806391d14854146102cc57806395d89b41146102df578063a217fddf146102e757610158565b80632f2ff15d116101155780632f2ff15d146101f5578063313ce5671461020a57806336568abe14610219578063395093511461022c57806340c10f191461023f57806342966c681461025257610158565b806301ffc9a71461015d57806306fdde0314610185578063095ea7b31461019a57806318160ddd146101ad57806323b872dd146101bf578063248a9ca3146101d2575b600080fd5b61017061016b3660046113af565b610389565b60405190151581526020015b60405180910390f35b61018d6103b6565b60405161017c91906113d7565b6101706101a836600461132b565b610448565b6004545b60405190815260200161017c565b6101706101cd3660046112f0565b61045f565b6101b16101e0366004611354565b60009081526020819052604090206001015490565b61020861020336600461136c565b610515565b005b6040516012815260200161017c565b61020861022736600461136c565b61053c565b61017061023a36600461132b565b61055e565b61020861024d36600461132b565b610595565b610208610260366004611354565b610607565b6101b16102733660046112a4565b6001600160a01b031660009081526002602052604090205490565b61020861029c36600461132b565b610678565b6102b46102af36600461138e565b61075f565b6040516001600160a01b03909116815260200161017c565b6101706102da36600461136c565b61077e565b61018d6107a7565b6101b1600081565b6101706102fd36600461132b565b6107b6565b61017061031036600461132b565b610851565b6101b16000805160206114ab83398151915281565b6101b1610338366004611354565b61085e565b61020861034b36600461136c565b610875565b6101b161035e3660046112be565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b60006001600160e01b03198216635a05180f60e01b14806103ae57506103ae8261089e565b90505b919050565b6060600580546103c590611459565b80601f01602080910402602001604051908101604052809291908181526020018280546103f190611459565b801561043e5780601f106104135761010080835404028352916020019161043e565b820191906000526020600020905b81548152906001019060200180831161042157829003601f168201915b5050505050905090565b60006104553384846108d3565b5060015b92915050565b600061046c8484846109f8565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156104f65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61050a85336105058685611442565b6108d3565b506001949350505050565b61051f8282610bd0565b60008281526001602052604090206105379082610889565b505050565b6105468282610c51565b60008281526001602052604090206105379082610ccb565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161045591859061050590869061142a565b6105ad6000805160206114ab833981519152336102da565b6105f95760405162461bcd60e51b815260206004820152601a60248201527f5a454e49513a206d696e74696e67206e6f7420616c6c6f77656400000000000060448201526064016104ed565b6106038282610ce0565b5050565b61061f6000805160206114ab833981519152336102da565b61066b5760405162461bcd60e51b815260206004820152601a60248201527f5a454e49513a206275726e696e67206e6f7420616c6c6f77656400000000000060448201526064016104ed565b6106753382610dbf565b50565b6106906000805160206114ab833981519152336102da565b6106dc5760405162461bcd60e51b815260206004820152601a60248201527f5a454e49513a206275726e696e67206e6f7420616c6c6f77656400000000000060448201526064016104ed565b60006106e8833361035e565b9050818110156107465760405162461bcd60e51b8152602060048201526024808201527f5a454e49513a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016104ed565b61075583336105058585611442565b6105378383610dbf565b60008281526001602052604081206107779083610f0e565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600680546103c590611459565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156108385760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104ed565b61084733856105058685611442565b5060019392505050565b60006104553384846109f8565b60008181526001602052604081206103ae90610f1a565b6105468282610f24565b6106038282610fa4565b6000610777836001600160a01b038416611028565b60006001600160e01b03198216637965db0b60e01b14806103ae57506301ffc9a760e01b6001600160e01b03198316146103ae565b6001600160a01b0383166109355760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ed565b6001600160a01b0382166109965760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ed565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610a5c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104ed565b6001600160a01b038216610abe5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ed565b6001600160a01b03831660009081526002602052604090205481811015610b365760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104ed565b610b408282611442565b6001600160a01b038086166000908152600260205260408082209390935590851681529081208054849290610b7690849061142a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bc291815260200190565b60405180910390a350505050565b600082815260208190526040902060010154610bed905b336102da565b61087f5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526e0818591b5a5b881d1bc819dc985b9d608a1b60648201526084016104ed565b6001600160a01b0381163314610cc15760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016104ed565b6106038282611077565b6000610777836001600160a01b0384166110dc565b6001600160a01b038216610d365760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104ed565b8060046000828254610d48919061142a565b90915550506001600160a01b03821660009081526002602052604081208054839290610d7590849061142a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610e1f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104ed565b6001600160a01b03821660009081526002602052604090205481811015610e935760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104ed565b610e9d8282611442565b6001600160a01b03841660009081526002602052604081209190915560048054849290610ecb908490611442565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016109eb565b600061077783836111f9565b60006103ae825490565b600082815260208190526040902060010154610f3f90610be7565b610cc15760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526f2061646d696e20746f207265766f6b6560801b60648201526084016104ed565b610fae828261077e565b610603576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055610fe43390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461106f57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610459565b506000610459565b611081828261077e565b15610603576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081815260018301602052604081205480156111ef576000611100600183611442565b855490915060009061111490600190611442565b9050600086600001828154811061113b57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508087600001848154811061116c57634e487b7160e01b600052603260045260246000fd5b60009182526020909120015561118383600161142a565b600082815260018901602052604090205586548790806111b357634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610459565b6000915050610459565b815460009082106112575760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016104ed565b82600001828154811061127a57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b80356001600160a01b03811681146103b157600080fd5b6000602082840312156112b5578081fd5b6107778261128d565b600080604083850312156112d0578081fd5b6112d98361128d565b91506112e76020840161128d565b90509250929050565b600080600060608486031215611304578081fd5b61130d8461128d565b925061131b6020850161128d565b9150604084013590509250925092565b6000806040838503121561133d578182fd5b6113468361128d565b946020939093013593505050565b600060208284031215611365578081fd5b5035919050565b6000806040838503121561137e578182fd5b823591506112e76020840161128d565b600080604083850312156113a0578182fd5b50508035926020909101359150565b6000602082840312156113c0578081fd5b81356001600160e01b031981168114610777578182fd5b6000602080835283518082850152825b81811015611403578581018301518582016040015282016113e7565b818111156114145783604083870101525b50601f01601f1916929092016040019392505050565b6000821982111561143d5761143d611494565b500190565b60008282101561145457611454611494565b500390565b60028104600182168061146d57607f821691505b6020821081141561148e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe52ba824bfabc2bcfcdf7f0edbb486ebb05e1836c90e78047efeb949990f72e5fa26469706673582212205a607577b50ecf36c4eb931c48d20f4faa8a1666aba078522b21bab03d5ba55c64736f6c63430008020033

Deployed Bytecode Sourcemap

36114:1085:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33777:227;;;;;;:::i;:::-;;:::i;:::-;;;2886:14:1;;2879:22;2861:41;;2849:2;2834:18;33777:227:0;;;;;;;;5618:91;;;:::i;:::-;;;;;;;:::i;7758:169::-;;;;;;:::i;:::-;;:::i;6711:108::-;6799:12;;6711:108;;;3059:25:1;;;3047:2;3032:18;6711:108:0;3014:76:1;8409:422:0;;;;;;:::i;:::-;;:::i;20132:123::-;;;;;;:::i;:::-;20198:7;20225:12;;;;;;;;;;:22;;;;20132:123;35148:165;;;;;;:::i;:::-;;:::i;:::-;;6562:84;;;6636:2;10799:36:1;;10787:2;10772:18;6562:84:0;10754:87:1;35671:174:0;;;;;;:::i;:::-;;:::i;9240:215::-;;;;;;:::i;:::-;;:::i;36679:177::-;;;;;;:::i;:::-;;:::i;37021:175::-;;;;;;:::i;:::-;;:::i;6882:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;6983:18:0;6956:7;6983:18;;;:9;:18;;;;;;;6882:127;36255:416;;;;;;:::i;:::-;;:::i;34603:145::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2677:32:1;;;2659:51;;2647:2;2632:18;34603:145:0;2614:102:1;19804:139:0;;;;;;:::i;:::-;;:::i;5828:95::-;;;:::i;18260:49::-;;18305:4;18260:49;;9958:377;;;;;;:::i;:::-;;:::i;7222:175::-;;;;;;:::i;:::-;;:::i;36184:62::-;;-1:-1:-1;;;;;;;;;;;36184:62:0;;34922:134;;;;;;:::i;:::-;;:::i;35406:170::-;;;;;;:::i;:::-;;:::i;7460:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7576:18:0;;;7549:7;7576:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7460:151;33777:227;33862:4;-1:-1:-1;;;;;;33886:57:0;;-1:-1:-1;;;33886:57:0;;:110;;;33960:36;33984:11;33960:23;:36::i;:::-;33879:117;;33777:227;;;;:::o;5618:91::-;5663:13;5696:5;5689:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5618:91;:::o;7758:169::-;7841:4;7858:39;3394:10;7881:7;7890:6;7858:8;:39::i;:::-;-1:-1:-1;7915:4:0;7758:169;;;;;:::o;8409:422::-;8515:4;8532:36;8542:6;8550:9;8561:6;8532:9;:36::i;:::-;-1:-1:-1;;;;;8608:19:0;;8581:24;8608:19;;;:11;:19;;;;;;;;3394:10;8608:33;;;;;;;;8660:26;;;;8652:79;;;;-1:-1:-1;;;8652:79:0;;7113:2:1;8652:79:0;;;7095:21:1;7152:2;7132:18;;;7125:30;7191:34;7171:18;;;7164:62;-1:-1:-1;;;7242:18:1;;;7235:38;7290:19;;8652:79:0;;;;;;;;;8742:57;8751:6;3394:10;8773:25;8792:6;8773:16;:25;:::i;:::-;8742:8;:57::i;:::-;-1:-1:-1;8819:4:0;;8409:422;-1:-1:-1;;;;8409:422:0:o;35148:165::-;35233:30;35249:4;35255:7;35233:15;:30::i;:::-;35274:18;;;;:12;:18;;;;;:31;;35297:7;35274:22;:31::i;:::-;;35148:165;;:::o;35671:174::-;35759:33;35778:4;35784:7;35759:18;:33::i;:::-;35803:18;;;;:12;:18;;;;;:34;;35829:7;35803:25;:34::i;9240:215::-;3394:10;9328:4;9377:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9377:34:0;;;;;;;;;;9328:4;;9345:80;;9368:7;;9377:47;;9414:10;;9377:47;:::i;36679:177::-;36755:34;-1:-1:-1;;;;;;;;;;;3394:10:0;36776:12;3314:98;36755:34;36747:73;;;;-1:-1:-1;;;36747:73:0;;5934:2:1;36747:73:0;;;5916:21:1;5973:2;5953:18;;;5946:30;6012:28;5992:18;;;5985:56;6058:18;;36747:73:0;5906:176:1;36747:73:0;36831:17;36837:2;36841:6;36831:5;:17::i;:::-;36679:177;;:::o;37021:175::-;37085:34;-1:-1:-1;;;;;;;;;;;3394:10:0;37106:12;3314:98;37085:34;37077:73;;;;-1:-1:-1;;;37077:73:0;;9546:2:1;37077:73:0;;;9528:21:1;9585:2;9565:18;;;9558:30;9624:28;9604:18;;;9597:56;9670:18;;37077:73:0;9518:176:1;37077:73:0;37161:27;3394:10;37181:6;37161:5;:27::i;:::-;37021:175;:::o;36255:416::-;36340:34;-1:-1:-1;;;;;;;;;;;3394:10:0;36361:12;3314:98;36340:34;36332:73;;;;-1:-1:-1;;;36332:73:0;;9546:2:1;36332:73:0;;;9528:21:1;9585:2;9565:18;;;9558:30;9624:28;9604:18;;;9597:56;9670:18;;36332:73:0;9518:176:1;36332:73:0;36416:24;36443:32;36453:7;3394:10;36462:12;3314:98;36443:32;36416:59;;36514:6;36494:16;:26;;36486:75;;;;-1:-1:-1;;;36486:75:0;;8735:2:1;36486:75:0;;;8717:21:1;8774:2;8754:18;;;8747:30;8813:34;8793:18;;;8786:62;-1:-1:-1;;;8864:18:1;;;8857:34;8908:19;;36486:75:0;8707:226:1;36486:75:0;36572:58;36581:7;3394:10;36604:25;36623:6;36604:16;:25;:::i;36572:58::-;36641:22;36647:7;36656:6;36641:5;:22::i;34603:145::-;34685:7;34712:18;;;:12;:18;;;;;:28;;34734:5;34712:21;:28::i;:::-;34705:35;34603:145;-1:-1:-1;;;34603:145:0:o;19804:139::-;19882:4;19906:12;;;;;;;;;;;-1:-1:-1;;;;;19906:29:0;;;;;;;;;;;;;;;19804:139::o;5828:95::-;5875:13;5908:7;5901:14;;;;;:::i;9958:377::-;3394:10;10051:4;10095:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10095:34:0;;;;;;;;;;10148:35;;;;10140:85;;;;-1:-1:-1;;;10140:85:0;;9140:2:1;10140:85:0;;;9122:21:1;9179:2;9159:18;;;9152:30;9218:34;9198:18;;;9191:62;-1:-1:-1;;;9269:18:1;;;9262:35;9314:19;;10140:85:0;9112:227:1;10140:85:0;10236:67;3394:10;10259:7;10268:34;10287:15;10268:16;:34;:::i;10236:67::-;-1:-1:-1;10323:4:0;;9958:377;-1:-1:-1;;;9958:377:0:o;7222:175::-;7308:4;7325:42;3394:10;7349:9;7360:6;7325:9;:42::i;34922:134::-;34994:7;35021:18;;;:12;:18;;;;;:27;;:25;:27::i;35406:170::-;35492:31;35509:4;35515:7;35492:16;:31::i;22537:112::-;22616:25;22627:4;22633:7;22616:10;:25::i;30017:152::-;30087:4;30111:50;30116:3;-1:-1:-1;;;;;30136:23:0;;30111:4;:50::i;19495:217::-;19580:4;-1:-1:-1;;;;;;19604:47:0;;-1:-1:-1;;;19604:47:0;;:100;;-1:-1:-1;;;;;;;;;;15919:40:0;;;19668:36;15810:157;13314:346;-1:-1:-1;;;;;13416:19:0;;13408:68;;;;-1:-1:-1;;;13408:68:0;;8330:2:1;13408:68:0;;;8312:21:1;8369:2;8349:18;;;8342:30;8408:34;8388:18;;;8381:62;-1:-1:-1;;;8459:18:1;;;8452:34;8503:19;;13408:68:0;8302:226:1;13408:68:0;-1:-1:-1;;;;;13495:21:0;;13487:68;;;;-1:-1:-1;;;13487:68:0;;5531:2:1;13487:68:0;;;5513:21:1;5570:2;5550:18;;;5543:30;5609:34;5589:18;;;5582:62;-1:-1:-1;;;5660:18:1;;;5653:32;5702:19;;13487:68:0;5503:224:1;13487:68:0;-1:-1:-1;;;;;13568:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;13620:32;;3059:25:1;;;13620:32:0;;3032:18:1;13620:32:0;;;;;;;;13314:346;;;:::o;10825:604::-;-1:-1:-1;;;;;10931:20:0;;10923:70;;;;-1:-1:-1;;;10923:70:0;;7924:2:1;10923:70:0;;;7906:21:1;7963:2;7943:18;;;7936:30;8002:34;7982:18;;;7975:62;-1:-1:-1;;;8053:18:1;;;8046:35;8098:19;;10923:70:0;7896:227:1;10923:70:0;-1:-1:-1;;;;;11012:23:0;;11004:71;;;;-1:-1:-1;;;11004:71:0;;4308:2:1;11004:71:0;;;4290:21:1;4347:2;4327:18;;;4320:30;4386:34;4366:18;;;4359:62;-1:-1:-1;;;4437:18:1;;;4430:33;4480:19;;11004:71:0;4280:225:1;11004:71:0;-1:-1:-1;;;;;11172:17:0;;11148:21;11172:17;;;:9;:17;;;;;;11208:23;;;;11200:74;;;;-1:-1:-1;;;11200:74:0;;6289:2:1;11200:74:0;;;6271:21:1;6328:2;6308:18;;;6301:30;6367:34;6347:18;;;6340:62;-1:-1:-1;;;6418:18:1;;;6411:36;6464:19;;11200:74:0;6261:228:1;11200:74:0;11305:22;11321:6;11305:13;:22;:::i;:::-;-1:-1:-1;;;;;11285:17:0;;;;;;;:9;:17;;;;;;:42;;;;11338:20;;;;;;;;:30;;11362:6;;11285:17;11338:30;;11362:6;;11338:30;:::i;:::-;;;;;;;;11403:9;-1:-1:-1;;;;;11386:35:0;11395:6;-1:-1:-1;;;;;11386:35:0;;11414:6;11386:35;;;;3059:25:1;;3047:2;3032:18;;3014:76;11386:35:0;;;;;;;;10825:604;;;;:::o;20517:232::-;20198:7;20225:12;;;;;;;;;;:22;;;20610:41;;20618:18;3394:10;20638:12;3314:98;20610:41;20602:101;;;;-1:-1:-1;;;20602:101:0;;4712:2:1;20602:101:0;;;4694:21:1;4751:2;4731:18;;;4724:30;4790:34;4770:18;;;4763:62;-1:-1:-1;;;4841:18:1;;;4834:45;4896:19;;20602:101:0;4684:237:1;21736:218:0;-1:-1:-1;;;;;21832:23:0;;3394:10;21832:23;21824:83;;;;-1:-1:-1;;;21824:83:0;;9901:2:1;21824:83:0;;;9883:21:1;9940:2;9920:18;;;9913:30;9979:34;9959:18;;;9952:62;-1:-1:-1;;;10030:18:1;;;10023:45;10085:19;;21824:83:0;9873:237:1;21824:83:0;21920:26;21932:4;21938:7;21920:11;:26::i;30345:158::-;30418:4;30442:53;30450:3;-1:-1:-1;;;;;30470:23:0;;30442:7;:53::i;11711:338::-;-1:-1:-1;;;;;11795:21:0;;11787:65;;;;-1:-1:-1;;;11787:65:0;;10317:2:1;11787:65:0;;;10299:21:1;10356:2;10336:18;;;10329:30;10395:33;10375:18;;;10368:61;10446:18;;11787:65:0;10289:181:1;11787:65:0;11943:6;11927:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;11960:18:0;;;;;;:9;:18;;;;;:28;;11982:6;;11960:18;:28;;11982:6;;11960:28;:::i;:::-;;;;-1:-1:-1;;12004:37:0;;3059:25:1;;;-1:-1:-1;;;;;12004:37:0;;;12021:1;;12004:37;;3047:2:1;3032:18;12004:37:0;;;;;;;11711:338;;:::o;12382:494::-;-1:-1:-1;;;;;12466:21:0;;12458:67;;;;-1:-1:-1;;;12458:67:0;;7522:2:1;12458:67:0;;;7504:21:1;7561:2;7541:18;;;7534:30;7600:34;7580:18;;;7573:62;-1:-1:-1;;;7651:18:1;;;7644:31;7692:19;;12458:67:0;7494:223:1;12458:67:0;-1:-1:-1;;;;;12625:18:0;;12600:22;12625:18;;;:9;:18;;;;;;12662:24;;;;12654:71;;;;-1:-1:-1;;;12654:71:0;;5128:2:1;12654:71:0;;;5110:21:1;5167:2;5147:18;;;5140:30;5206:34;5186:18;;;5179:62;-1:-1:-1;;;5257:18:1;;;5250:32;5299:19;;12654:71:0;5100:224:1;12654:71:0;12757:23;12774:6;12757:14;:23;:::i;:::-;-1:-1:-1;;;;;12736:18:0;;;;;;:9;:18;;;;;:44;;;;12791:12;:22;;12807:6;;12736:18;12791:22;;12807:6;;12791:22;:::i;:::-;;;;-1:-1:-1;;12831:37:0;;3059:25:1;;;12857:1:0;;-1:-1:-1;;;;;12831:37:0;;;;;3047:2:1;3032:18;12831:37:0;3014:76:1;31303:158:0;31377:7;31428:22;31432:3;31444:5;31428:3;:22::i;30842:117::-;30905:7;30932:19;30940:3;27599:18;;27516:109;20994:235;20198:7;20225:12;;;;;;;;;;:22;;;21088:41;;21096:18;20132:123;21088:41;21080:102;;;;-1:-1:-1;;;21080:102:0;;6696:2:1;21080:102:0;;;6678:21:1;6735:2;6715:18;;;6708:30;6774:34;6754:18;;;6747:62;-1:-1:-1;;;6825:18:1;;;6818:46;6881:19;;21080:102:0;6668:238:1;22984:229:0;23059:22;23067:4;23073:7;23059;:22::i;:::-;23054:152;;23098:6;:12;;;;;;;;;;;-1:-1:-1;;;;;23098:29:0;;;;;;;;;:36;;-1:-1:-1;;23098:36:0;23130:4;23098:36;;;23181:12;3394:10;3314:98;;23181:12;-1:-1:-1;;;;;23154:40:0;23172:7;-1:-1:-1;;;;;23154:40:0;23166:4;23154:40;;;;;;;;;;22984:229;;:::o;25081:414::-;25144:4;27398:19;;;:12;;;:19;;;;;;25161:327;;-1:-1:-1;25204:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;25387:18;;25365:19;;;:12;;;:19;;;;;;:40;;;;25420:11;;25161:327;-1:-1:-1;25471:5:0;25464:12;;23221:230;23296:22;23304:4;23310:7;23296;:22::i;:::-;23292:152;;;23367:5;23335:12;;;;;;;;;;;-1:-1:-1;;;;;23335:29:0;;;;;;;;;;:37;;-1:-1:-1;;23335:37:0;;;23392:40;3394:10;;23335:12;;23392:40;;23367:5;23392:40;23221:230;;:::o;25671:1544::-;25737:4;25876:19;;;:12;;;:19;;;;;;25912:15;;25908:1300;;26274:21;26298:14;26311:1;26298:10;:14;:::i;:::-;26347:18;;26274:38;;-1:-1:-1;26327:17:0;;26347:22;;26368:1;;26347:22;:::i;:::-;26327:42;;26614:17;26634:3;:11;;26646:9;26634:22;;;;;;-1:-1:-1;;;26634:22:0;;;;;;;;;;;;;;;;;26614:42;;26780:9;26751:3;:11;;26763:13;26751:26;;;;;;-1:-1:-1;;;26751:26:0;;;;;;;;;;;;;;;;;;:38;26883:17;:13;26899:1;26883:17;:::i;:::-;26857:23;;;;:12;;;:23;;;;;:43;27009:17;;26857:3;;27009:17;;;-1:-1:-1;;;27009:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;27104:3;:12;;:19;27117:5;27104:19;;;;;;;;;;;27097:26;;;27147:4;27140:11;;;;;;;;25908:1300;27191:5;27184:12;;;;;27969:204;28064:18;;28036:7;;28064:26;-1:-1:-1;28056:73:0;;;;-1:-1:-1;;;28056:73:0;;3905:2:1;28056:73:0;;;3887:21:1;3944:2;3924:18;;;3917:30;3983:34;3963:18;;;3956:62;-1:-1:-1;;;4034:18:1;;;4027:32;4076:19;;28056:73:0;3877:224:1;28056:73:0;28147:3;:11;;28159:5;28147:18;;;;;;-1:-1:-1;;;28147:18:0;;;;;;;;;;;;;;;;;28140:25;;27969:204;;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;192:196;;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;;;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;;;;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;;;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:190::-;;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:1;;1350:120;-1:-1:-1;1350:120:1:o;1475:264::-;;;1604:2;1592:9;1583:7;1579:23;1575:32;1572:2;;;1625:6;1617;1610:22;1572:2;1666:9;1653:23;1643:33;;1695:38;1729:2;1718:9;1714:18;1695:38;:::i;1744:258::-;;;1873:2;1861:9;1852:7;1848:23;1844:32;1841:2;;;1894:6;1886;1879:22;1841:2;-1:-1:-1;;1922:23:1;;;1992:2;1977:18;;;1964:32;;-1:-1:-1;1831:171:1:o;2007:306::-;;2118:2;2106:9;2097:7;2093:23;2089:32;2086:2;;;2139:6;2131;2124:22;2086:2;2170:23;;-1:-1:-1;;;;;;2222:32:1;;2212:43;;2202:2;;2274:6;2266;2259:22;3095:603;;3236:2;3265;3254:9;3247:21;3297:6;3291:13;3340:6;3335:2;3324:9;3320:18;3313:34;3365:4;3378:140;3392:6;3389:1;3386:13;3378:140;;;3487:14;;;3483:23;;3477:30;3453:17;;;3472:2;3449:26;3442:66;3407:10;;3378:140;;;3536:6;3533:1;3530:13;3527:2;;;3606:4;3601:2;3592:6;3581:9;3577:22;3573:31;3566:45;3527:2;-1:-1:-1;3682:2:1;3661:15;-1:-1:-1;;3657:29:1;3642:45;;;;3689:2;3638:54;;3216:482;-1:-1:-1;;;3216:482:1:o;10846:128::-;;10917:1;10913:6;10910:1;10907:13;10904:2;;;10923:18;;:::i;:::-;-1:-1:-1;10959:9:1;;10894:80::o;10979:125::-;;11047:1;11044;11041:8;11038:2;;;11052:18;;:::i;:::-;-1:-1:-1;11089:9:1;;11028:76::o;11109:380::-;11194:1;11184:12;;11241:1;11231:12;;;11252:2;;11306:4;11298:6;11294:17;11284:27;;11252:2;11359;11351:6;11348:14;11328:18;11325:38;11322:2;;;11405:10;11400:3;11396:20;11393:1;11386:31;11440:4;11437:1;11430:15;11468:4;11465:1;11458:15;11322:2;;11164:325;;;:::o;11494:127::-;11555:10;11550:3;11546:20;11543:1;11536:31;11586:4;11583:1;11576:15;11610:4;11607:1;11600:15

Swarm Source

ipfs://5a607577b50ecf36c4eb931c48d20f4faa8a1666aba078522b21bab03d5ba55c

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

OVERVIEW

Seamless FIAT & Crypto Ecosystem for Finance and Investments.

0x5b52bfB8062Ce664D74bbCd4Cd6DC7Df53Fd7233
Loading...
Loading
[ Download: CSV Export  ]

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