ETH Price: $3,387.58 (-1.57%)
Gas: 3 Gwei

Contract

0x95014fD5c9Afa80a0aE0F2F0A4f588A0E7803555
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Transfer200232572024-06-05 4:32:2324 days ago1717561943IN
OasisGame: OSG Token
0 ETH0.00032485.6882159
Transfer196870452024-04-19 4:15:2371 days ago1713500123IN
OasisGame: OSG Token
0 ETH0.000450228.61024528
Transfer183596112023-10-16 1:20:11257 days ago1697419211IN
OasisGame: OSG Token
0 ETH0.000276875.29258453
Transfer183263482023-10-11 9:36:59262 days ago1697017019IN
OasisGame: OSG Token
0 ETH0.000419548.02170753
Transfer177132682023-07-17 13:26:35347 days ago1689600395IN
OasisGame: OSG Token
0 ETH0.0014547427.81487963
Transfer173513352023-05-27 15:38:35398 days ago1685201915IN
OasisGame: OSG Token
0 ETH0.0015337929.33311434
Transfer166959482023-02-24 4:49:59491 days ago1677214199IN
OasisGame: OSG Token
0 ETH0.0017377530.43938925
Transfer166704952023-02-20 14:57:47494 days ago1676905067IN
OasisGame: OSG Token
0 ETH0.0023706345.32671706
Transfer166679072023-02-20 6:13:47495 days ago1676873627IN
OasisGame: OSG Token
0 ETH0.0014068726.89338459
Transfer166607412023-02-19 6:04:35496 days ago1676786675IN
OasisGame: OSG Token
0 ETH0.001098621.00545043
Transfer166594532023-02-19 1:44:35496 days ago1676771075IN
OasisGame: OSG Token
0 ETH0.0010553620.17869135
Transfer166562752023-02-18 15:01:35496 days ago1676732495IN
OasisGame: OSG Token
0 ETH0.0014242427.23798234
Transfer166543942023-02-18 8:40:35497 days ago1676709635IN
OasisGame: OSG Token
0 ETH0.0009942219.01398981
Transfer166420122023-02-16 14:53:35498 days ago1676559215IN
OasisGame: OSG Token
0 ETH0.0023298944.5580733
Transfer166234302023-02-14 0:31:11501 days ago1676334671IN
OasisGame: OSG Token
0 ETH0.0005877618.14705269
Transfer166191422023-02-13 10:08:47502 days ago1676282927IN
OasisGame: OSG Token
0 ETH0.0010333819.76295236
Transfer166181842023-02-13 6:55:47502 days ago1676271347IN
OasisGame: OSG Token
0 ETH0.0007147513.66936815
Transfer166178552023-02-13 5:49:47502 days ago1676267387IN
OasisGame: OSG Token
0 ETH0.0007827814.97042343
Transfer166175302023-02-13 4:44:23502 days ago1676263463IN
OasisGame: OSG Token
0 ETH0.001076118.84958236
Transfer166130822023-02-12 13:48:47502 days ago1676209727IN
OasisGame: OSG Token
0 ETH0.0007387114.12752196
Transfer166118872023-02-12 9:48:59503 days ago1676195339IN
OasisGame: OSG Token
0 ETH0.0008888616.99526536
Transfer166115982023-02-12 8:51:11503 days ago1676191871IN
OasisGame: OSG Token
0 ETH0.0007125113.62327567
Transfer166054142023-02-11 12:07:35504 days ago1676117255IN
OasisGame: OSG Token
0 ETH0.0007853115.01521492
Transfer166043812023-02-11 8:39:35504 days ago1676104775IN
OasisGame: OSG Token
0 ETH0.0008564216.37493712
Transfer165880922023-02-09 2:03:35506 days ago1675908215IN
OasisGame: OSG Token
0 ETH0.0016194530.97125841
View all transactions

Advanced mode:
Parent Transaction Hash Block From To Value
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
OasisGame

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 16: OasisGame.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./ERC20Burnable.sol";
import "./ERC20Pausable.sol";
import "./ERC20Lockable.sol";
import "./AccessControlEnumerable.sol";
import "./Context.sol";

/**
 * @dev {ERC20} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract OasisGame is Context, AccessControlEnumerable, ERC20Burnable, ERC20Pausable, ERC20Lockable {
    
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
    bytes32 public constant LOCKER_ROLE = keccak256("LOCKER_ROLE");

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * See {ERC20-constructor}.
     */
    constructor(string memory name, string memory symbol) ERC20(name, symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
        _setupRole(LOCKER_ROLE, _msgSender());
    }

    /**
     * @dev Creates `amount` new tokens for `to`.
     *
     * See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, uint256 amount) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint");
        _mint(to, amount);
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause");
        _unpause();
    }
    
    
    /**
     * @dev Freeze a account until undo.
     *
     * See {ERC20Lockable} and {Lockable-_lock}.
     *
     * Requirements:
     *
     * - the caller must have the `LOCKER_ROLE`.
     */
    function freezeAddress(address target) public virtual {
        require(hasRole(LOCKER_ROLE, _msgSender()), "ERC20: must have locker role to lock");
        _lock(target);
    }
    
    
    /**
     * @dev Unfreeze a account.
     *
     * See {ERC20Lockable} and {Lockable-_unlock}.
     *
     * Requirements:
     *
     * - the caller must have the `LOCKER_ROLE`.
     */
    function unFreezeAddress(address target) public virtual {
        require(hasRole(LOCKER_ROLE, _msgSender()), "ERC20: must have locker role to Unlock");
        _unlock(target);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable, ERC20Lockable) {
        super._beforeTokenTransfer(from, to, amount);
    }
}

File 2 of 16: AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";
import "./ERC165.sol";

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

File 3 of 16: AccessControlEnumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./AccessControl.sol";
import "./EnumerableSet.sol";

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

File 4 of 16: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

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

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

pragma solidity ^0.8.0;

/**
 * @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] = valueIndex; // Replace lastvalue's index to valueIndex

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

File 7 of 16: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 8 of 16: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./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 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, 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 defaut 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
     * 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 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");
        _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 { }
}

File 9 of 16: ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        _approve(account, _msgSender(), currentAllowance - amount);
        _burn(account, amount);
    }
}

File 10 of 16: ERC20Lockable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./Lockable.sol";

/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Lockable is ERC20, Lockable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the address must not be locked.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!locked(from), "ERC20Lockable: token transfer while locked");
    }
}

File 11 of 16: ERC20Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./Pausable.sol";

/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

File 12 of 16: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 13 of 16: IERC20.sol
// 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);
}

File 14 of 16: IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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 15 of 16: Lockable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Lockable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Locked(address account, address target);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event UnLocked(address account, address target);

    mapping(address => bool) public frozenList;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
    }

    /**
     * @dev Returns true if the address is frozen, and false otherwise.
     */
    function locked(address checkaddress) public view virtual returns (bool) {
        return frozenList[checkaddress];
    }

    /**
     * @dev Triggers locked state.
     *
     * Requirements:
     *
     * - The address must not be locked.
     */
    function _lock(address targetAddress) internal virtual {
        require(frozenList[targetAddress] != true, "ACCOUNT HAS ALREADY BEEN LOCKED.");
        frozenList[targetAddress] = true;
        emit Locked(_msgSender(), targetAddress);
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The address must be locked.
     */
    function _unlock(address targetAddress) internal virtual {
        require(frozenList[targetAddress] != false, "ACCOUNT HAS NOT BEEN LOCKED.");
        frozenList[targetAddress] = false;
        emit UnLocked(_msgSender(), targetAddress);
    }
}

File 16 of 16: Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"address","name":"target","type":"address"}],"name":"Locked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"address","name":"target","type":"address"}],"name":"UnLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOCKER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_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":"address","name":"target","type":"address"}],"name":"freezeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"frozenList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"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":"checkaddress","type":"address"}],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"unFreezeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200400c3803806200400c83398181016040528101906200003791906200052f565b81818160059080519060200190620000519291906200040d565b5080600690805190602001906200006a9291906200040d565b5050506000600760006101000a81548160ff021916908315150217905550620000ac6000801b620000a06200017760201b60201c565b6200017f60201b60201c565b620000ed7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620000e16200017760201b60201c565b6200017f60201b60201c565b6200012e7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620001226200017760201b60201c565b6200017f60201b60201c565b6200016f7faf9a8bb3cbd6b84fbccefa71ff73e26e798553c6914585a84886212a46a90279620001636200017760201b60201c565b6200017f60201b60201c565b505062000712565b600033905090565b620001968282620001c760201b6200117a1760201c565b620001c28160016000858152602001908152602001600020620001dd60201b620011881790919060201c565b505050565b620001d982826200021560201b60201c565b5050565b60006200020d836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200030660201b60201c565b905092915050565b6200022782826200038060201b60201c565b6200030257600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002a76200017760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006200031a8383620003ea60201b60201c565b620003755782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506200037a565b600090505b92915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b8280546200041b9062000637565b90600052602060002090601f0160209004810192826200043f57600085556200048b565b82601f106200045a57805160ff19168380011785556200048b565b828001600101855582156200048b579182015b828111156200048a5782518255916020019190600101906200046d565b5b5090506200049a91906200049e565b5090565b5b80821115620004b95760008160009055506001016200049f565b5090565b6000620004d4620004ce84620005cb565b620005a2565b905082815260208101848484011115620004ed57600080fd5b620004fa84828562000601565b509392505050565b600082601f8301126200051457600080fd5b815162000526848260208601620004bd565b91505092915050565b600080604083850312156200054357600080fd5b600083015167ffffffffffffffff8111156200055e57600080fd5b6200056c8582860162000502565b925050602083015167ffffffffffffffff8111156200058a57600080fd5b620005988582860162000502565b9150509250929050565b6000620005ae620005c1565b9050620005bc82826200066d565b919050565b6000604051905090565b600067ffffffffffffffff821115620005e957620005e8620006d2565b5b620005f48262000701565b9050602081019050919050565b60005b838110156200062157808201518184015260208101905062000604565b8381111562000631576000848401525b50505050565b600060028204905060018216806200065057607f821691505b60208210811415620006675762000666620006a3565b5b50919050565b620006788262000701565b810181811067ffffffffffffffff821117156200069a5762000699620006d2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6138ea80620007226000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c806370a082311161011a578063a9059cbb116100ad578063d53913931161007c578063d5391393146105fc578063d547741f1461061a578063dd62ed3e14610636578063e63ab1e914610666578063f362136714610684576101fb565b8063a9059cbb14610550578063ca15c87314610580578063cbf9fe5f146105b0578063d3739d35146105e0576101fb565b806391d14854116100e957806391d14854146104b457806395d89b41146104e4578063a217fddf14610502578063a457c2d714610520576101fb565b806370a082311461042e57806379cc67901461045e5780638456cb591461047a5780639010d07c14610484576101fb565b806336568abe1161019257806342966c681161016157806342966c68146103a857806351e946d5146103c45780635c975abb146103e05780636a8269b4146103fe576101fb565b806336568abe1461033657806339509351146103525780633f4ba83a1461038257806340c10f191461038c576101fb565b806323b872dd116101ce57806323b872dd1461029c578063248a9ca3146102cc5780632f2ff15d146102fc578063313ce56714610318576101fb565b806301ffc9a71461020057806306fdde0314610230578063095ea7b31461024e57806318160ddd1461027e575b600080fd5b61021a60048036038101906102159190612695565b6106a2565b6040516102279190612b3d565b60405180910390f35b61023861071c565b6040516102459190612b73565b60405180910390f35b610268600480360381019061026391906125b8565b6107ae565b6040516102759190612b3d565b60405180910390f35b6102866107cc565b6040516102939190612ed5565b60405180910390f35b6102b660048036038101906102b19190612569565b6107d6565b6040516102c39190612b3d565b60405180910390f35b6102e660048036038101906102e191906125f4565b6108d7565b6040516102f39190612b58565b60405180910390f35b6103166004803603810190610311919061261d565b6108f6565b005b61032061092a565b60405161032d9190612ef0565b60405180910390f35b610350600480360381019061034b919061261d565b610933565b005b61036c600480360381019061036791906125b8565b610967565b6040516103799190612b3d565b60405180910390f35b61038a610a13565b005b6103a660048036038101906103a191906125b8565b610a8d565b005b6103c260048036038101906103bd91906126be565b610b0b565b005b6103de60048036038101906103d99190612504565b610b1f565b005b6103e8610b9b565b6040516103f59190612b3d565b60405180910390f35b61041860048036038101906104139190612504565b610bb2565b6040516104259190612b3d565b60405180910390f35b61044860048036038101906104439190612504565b610bd2565b6040516104559190612ed5565b60405180910390f35b610478600480360381019061047391906125b8565b610c1b565b005b610482610c9f565b005b61049e60048036038101906104999190612659565b610d19565b6040516104ab9190612af9565b60405180910390f35b6104ce60048036038101906104c9919061261d565b610d48565b6040516104db9190612b3d565b60405180910390f35b6104ec610db2565b6040516104f99190612b73565b60405180910390f35b61050a610e44565b6040516105179190612b58565b60405180910390f35b61053a600480360381019061053591906125b8565b610e4b565b6040516105479190612b3d565b60405180910390f35b61056a600480360381019061056591906125b8565b610f3f565b6040516105779190612b3d565b60405180910390f35b61059a600480360381019061059591906125f4565b610f5d565b6040516105a79190612ed5565b60405180910390f35b6105ca60048036038101906105c59190612504565b610f81565b6040516105d79190612b3d565b60405180910390f35b6105fa60048036038101906105f59190612504565b610fd7565b005b610604611053565b6040516106119190612b58565b60405180910390f35b610634600480360381019061062f919061261d565b611077565b005b610650600480360381019061064b919061252d565b6110ab565b60405161065d9190612ed5565b60405180910390f35b61066e611132565b60405161067b9190612b58565b60405180910390f35b61068c611156565b6040516106999190612b58565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107155750610714826111b8565b5b9050919050565b60606005805461072b9061306f565b80601f01602080910402602001604051908101604052809291908181526020018280546107579061306f565b80156107a45780601f10610779576101008083540402835291602001916107a4565b820191906000526020600020905b81548152906001019060200180831161078757829003601f168201915b5050505050905090565b60006107c26107bb611232565b848461123a565b6001905092915050565b6000600454905090565b60006107e3848484611405565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061082e611232565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a590612d35565b60405180910390fd5b6108cb856108ba611232565b85846108c69190612f7d565b61123a565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b6109008282611687565b610925816001600085815260200190815260200160002061118890919063ffffffff16565b505050565b60006012905090565b61093d82826116ed565b610962816001600085815260200190815260200160002061177090919063ffffffff16565b505050565b6000610a09610974611232565b848460036000610982611232565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a049190612f27565b61123a565b6001905092915050565b610a447f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610a3f611232565b610d48565b610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90612c35565b60405180910390fd5b610a8b6117a0565b565b610abe7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610ab9611232565b610d48565b610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490612d55565b60405180910390fd5b610b078282611842565b5050565b610b1c610b16611232565b82611997565b50565b610b507faf9a8bb3cbd6b84fbccefa71ff73e26e798553c6914585a84886212a46a90279610b4b611232565b610d48565b610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8690612e35565b60405180910390fd5b610b9881611b6d565b50565b6000600760009054906101000a900460ff16905090565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610c2e83610c29611232565b6110ab565b905081811015610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90612d75565b60405180910390fd5b610c9083610c7f611232565b8484610c8b9190612f7d565b61123a565b610c9a8383611997565b505050565b610cd07f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610ccb611232565b610d48565b610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690612df5565b60405180910390fd5b610d17611c9c565b565b6000610d408260016000868152602001908152602001600020611d3f90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610dc19061306f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ded9061306f565b8015610e3a5780601f10610e0f57610100808354040283529160200191610e3a565b820191906000526020600020905b815481529060010190602001808311610e1d57829003601f168201915b5050505050905090565b6000801b81565b60008060036000610e5a611232565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90612e55565b60405180910390fd5b610f34610f22611232565b858584610f2f9190612f7d565b61123a565b600191505092915050565b6000610f53610f4c611232565b8484611405565b6001905092915050565b6000610f7a60016000848152602001908152602001600020611d59565b9050919050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110087faf9a8bb3cbd6b84fbccefa71ff73e26e798553c6914585a84886212a46a90279611003611232565b610d48565b611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e90612c75565b60405180910390fd5b61105081611d6e565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6110818282611e9d565b6110a6816001600085815260200190815260200160002061177090919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b7faf9a8bb3cbd6b84fbccefa71ff73e26e798553c6914585a84886212a46a9027981565b6111848282611f03565b5050565b60006111b0836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611fe3565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061122b575061122a82612053565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190612dd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190612c95565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113f89190612ed5565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90612db5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc90612bb5565b60405180910390fd5b6114f08383836120bd565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90612cb5565b60405180910390fd5b81816115839190612f7d565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116159190612f27565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116799190612ed5565b60405180910390a350505050565b6116a0611693836108d7565b61169b611232565b610d48565b6116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690612bd5565b60405180910390fd5b6116e98282611f03565b5050565b6116f5611232565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990612e75565b60405180910390fd5b61176c82826120cd565b5050565b6000611798836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6121ae565b905092915050565b6117a8610b9b565b6117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de90612bf5565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61182b611232565b6040516118389190612af9565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a990612e95565b60405180910390fd5b6118be600083836120bd565b80600460008282546118d09190612f27565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119269190612f27565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161198b9190612ed5565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe90612d95565b60405180910390fd5b611a13826000836120bd565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190612c15565b60405180910390fd5b8181611aa69190612f7d565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160046000828254611afb9190612f7d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b609190612ed5565b60405180910390a3505050565b60011515600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890612c55565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fb0c70af567d1a37efb45800fd6369f93612be23e1066055303c51dd8b7b0b77b611c82611232565b82604051611c91929190612b14565b60405180910390a150565b611ca4610b9b565b15611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb90612cf5565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d28611232565b604051611d359190612af9565b60405180910390a1565b6000611d4e836000018361232c565b60001c905092915050565b6000611d67826000016123c6565b9050919050565b60001515600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415611e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df990612d15565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fcb0356f4b1226f73fb6b54884817c2910036693b4e0a9524a7f4c8782b838f5c611e83611232565b82604051611e92929190612b14565b60405180910390a150565b611eb6611ea9836108d7565b611eb1611232565b610d48565b611ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eec90612cd5565b60405180910390fd5b611eff82826120cd565b5050565b611f0d8282610d48565b611fdf57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f84611232565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611fef83836123d7565b61204857826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061204d565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120c88383836123fa565b505050565b6120d78282610d48565b156121aa57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061214f611232565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080836001016000848152602001908152602001600020549050600081146123205760006001826121e09190612f7d565b90506000600186600001805490506121f89190612f7d565b90506000866000018281548110612238577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612282577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550866000018054806122e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612326565b60009150505b92915050565b600081836000018054905011612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90612b95565b60405180910390fd5b8260000182815481106123b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b612405838383612453565b61240e83610f81565b1561244e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244590612e15565b60405180910390fd5b505050565b61245e8383836124ab565b612466610b9b565b156124a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249d90612eb5565b60405180910390fd5b505050565b505050565b6000813590506124bf81613858565b92915050565b6000813590506124d48161386f565b92915050565b6000813590506124e981613886565b92915050565b6000813590506124fe8161389d565b92915050565b60006020828403121561251657600080fd5b6000612524848285016124b0565b91505092915050565b6000806040838503121561254057600080fd5b600061254e858286016124b0565b925050602061255f858286016124b0565b9150509250929050565b60008060006060848603121561257e57600080fd5b600061258c868287016124b0565b935050602061259d868287016124b0565b92505060406125ae868287016124ef565b9150509250925092565b600080604083850312156125cb57600080fd5b60006125d9858286016124b0565b92505060206125ea858286016124ef565b9150509250929050565b60006020828403121561260657600080fd5b6000612614848285016124c5565b91505092915050565b6000806040838503121561263057600080fd5b600061263e858286016124c5565b925050602061264f858286016124b0565b9150509250929050565b6000806040838503121561266c57600080fd5b600061267a858286016124c5565b925050602061268b858286016124ef565b9150509250929050565b6000602082840312156126a757600080fd5b60006126b5848285016124da565b91505092915050565b6000602082840312156126d057600080fd5b60006126de848285016124ef565b91505092915050565b6126f081612fb1565b82525050565b6126ff81612fc3565b82525050565b61270e81612fcf565b82525050565b600061271f82612f0b565b6127298185612f16565b935061273981856020860161303c565b612742816130ff565b840191505092915050565b600061275a602283612f16565b915061276582613110565b604082019050919050565b600061277d602383612f16565b91506127888261315f565b604082019050919050565b60006127a0602f83612f16565b91506127ab826131ae565b604082019050919050565b60006127c3601483612f16565b91506127ce826131fd565b602082019050919050565b60006127e6602283612f16565b91506127f182613226565b604082019050919050565b6000612809603983612f16565b915061281482613275565b604082019050919050565b600061282c602083612f16565b9150612837826132c4565b602082019050919050565b600061284f602683612f16565b915061285a826132ed565b604082019050919050565b6000612872602283612f16565b915061287d8261333c565b604082019050919050565b6000612895602683612f16565b91506128a08261338b565b604082019050919050565b60006128b8603083612f16565b91506128c3826133da565b604082019050919050565b60006128db601083612f16565b91506128e682613429565b602082019050919050565b60006128fe601c83612f16565b915061290982613452565b602082019050919050565b6000612921602883612f16565b915061292c8261347b565b604082019050919050565b6000612944603683612f16565b915061294f826134ca565b604082019050919050565b6000612967602483612f16565b915061297282613519565b604082019050919050565b600061298a602183612f16565b915061299582613568565b604082019050919050565b60006129ad602583612f16565b91506129b8826135b7565b604082019050919050565b60006129d0602483612f16565b91506129db82613606565b604082019050919050565b60006129f3603783612f16565b91506129fe82613655565b604082019050919050565b6000612a16602a83612f16565b9150612a21826136a4565b604082019050919050565b6000612a39602483612f16565b9150612a44826136f3565b604082019050919050565b6000612a5c602583612f16565b9150612a6782613742565b604082019050919050565b6000612a7f602f83612f16565b9150612a8a82613791565b604082019050919050565b6000612aa2601f83612f16565b9150612aad826137e0565b602082019050919050565b6000612ac5602a83612f16565b9150612ad082613809565b604082019050919050565b612ae481613025565b82525050565b612af38161302f565b82525050565b6000602082019050612b0e60008301846126e7565b92915050565b6000604082019050612b2960008301856126e7565b612b3660208301846126e7565b9392505050565b6000602082019050612b5260008301846126f6565b92915050565b6000602082019050612b6d6000830184612705565b92915050565b60006020820190508181036000830152612b8d8184612714565b905092915050565b60006020820190508181036000830152612bae8161274d565b9050919050565b60006020820190508181036000830152612bce81612770565b9050919050565b60006020820190508181036000830152612bee81612793565b9050919050565b60006020820190508181036000830152612c0e816127b6565b9050919050565b60006020820190508181036000830152612c2e816127d9565b9050919050565b60006020820190508181036000830152612c4e816127fc565b9050919050565b60006020820190508181036000830152612c6e8161281f565b9050919050565b60006020820190508181036000830152612c8e81612842565b9050919050565b60006020820190508181036000830152612cae81612865565b9050919050565b60006020820190508181036000830152612cce81612888565b9050919050565b60006020820190508181036000830152612cee816128ab565b9050919050565b60006020820190508181036000830152612d0e816128ce565b9050919050565b60006020820190508181036000830152612d2e816128f1565b9050919050565b60006020820190508181036000830152612d4e81612914565b9050919050565b60006020820190508181036000830152612d6e81612937565b9050919050565b60006020820190508181036000830152612d8e8161295a565b9050919050565b60006020820190508181036000830152612dae8161297d565b9050919050565b60006020820190508181036000830152612dce816129a0565b9050919050565b60006020820190508181036000830152612dee816129c3565b9050919050565b60006020820190508181036000830152612e0e816129e6565b9050919050565b60006020820190508181036000830152612e2e81612a09565b9050919050565b60006020820190508181036000830152612e4e81612a2c565b9050919050565b60006020820190508181036000830152612e6e81612a4f565b9050919050565b60006020820190508181036000830152612e8e81612a72565b9050919050565b60006020820190508181036000830152612eae81612a95565b9050919050565b60006020820190508181036000830152612ece81612ab8565b9050919050565b6000602082019050612eea6000830184612adb565b92915050565b6000602082019050612f056000830184612aea565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612f3282613025565b9150612f3d83613025565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f7257612f716130a1565b5b828201905092915050565b6000612f8882613025565b9150612f9383613025565b925082821015612fa657612fa56130a1565b5b828203905092915050565b6000612fbc82613005565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561305a57808201518184015260208101905061303f565b83811115613069576000848401525b50505050565b6000600282049050600182168061308757607f821691505b6020821081141561309b5761309a6130d0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f206772616e740000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f4143434f554e542048415320414c5245414459204245454e204c4f434b45442e600082015250565b7f45524332303a206d7573742068617665206c6f636b657220726f6c6520746f2060008201527f556e6c6f636b0000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f207265766f6b6500000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4143434f554e5420484153204e4f54204245454e204c4f434b45442e00000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f7665206d696e74657220726f6c6520746f206d696e7400000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f207061757365000000000000000000602082015250565b7f45524332304c6f636b61626c653a20746f6b656e207472616e7366657220776860008201527f696c65206c6f636b656400000000000000000000000000000000000000000000602082015250565b7f45524332303a206d7573742068617665206c6f636b657220726f6c6520746f2060008201527f6c6f636b00000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61386181612fb1565b811461386c57600080fd5b50565b61387881612fcf565b811461388357600080fd5b50565b61388f81612fd9565b811461389a57600080fd5b50565b6138a681613025565b81146138b157600080fd5b5056fea26469706673582212205a390c9d0c14301f45a65e1fda4655834f8ac05d63fcced9b114ee077444fb2b64736f6c634300080100330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000094f6173697347616d65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034f53470000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c806370a082311161011a578063a9059cbb116100ad578063d53913931161007c578063d5391393146105fc578063d547741f1461061a578063dd62ed3e14610636578063e63ab1e914610666578063f362136714610684576101fb565b8063a9059cbb14610550578063ca15c87314610580578063cbf9fe5f146105b0578063d3739d35146105e0576101fb565b806391d14854116100e957806391d14854146104b457806395d89b41146104e4578063a217fddf14610502578063a457c2d714610520576101fb565b806370a082311461042e57806379cc67901461045e5780638456cb591461047a5780639010d07c14610484576101fb565b806336568abe1161019257806342966c681161016157806342966c68146103a857806351e946d5146103c45780635c975abb146103e05780636a8269b4146103fe576101fb565b806336568abe1461033657806339509351146103525780633f4ba83a1461038257806340c10f191461038c576101fb565b806323b872dd116101ce57806323b872dd1461029c578063248a9ca3146102cc5780632f2ff15d146102fc578063313ce56714610318576101fb565b806301ffc9a71461020057806306fdde0314610230578063095ea7b31461024e57806318160ddd1461027e575b600080fd5b61021a60048036038101906102159190612695565b6106a2565b6040516102279190612b3d565b60405180910390f35b61023861071c565b6040516102459190612b73565b60405180910390f35b610268600480360381019061026391906125b8565b6107ae565b6040516102759190612b3d565b60405180910390f35b6102866107cc565b6040516102939190612ed5565b60405180910390f35b6102b660048036038101906102b19190612569565b6107d6565b6040516102c39190612b3d565b60405180910390f35b6102e660048036038101906102e191906125f4565b6108d7565b6040516102f39190612b58565b60405180910390f35b6103166004803603810190610311919061261d565b6108f6565b005b61032061092a565b60405161032d9190612ef0565b60405180910390f35b610350600480360381019061034b919061261d565b610933565b005b61036c600480360381019061036791906125b8565b610967565b6040516103799190612b3d565b60405180910390f35b61038a610a13565b005b6103a660048036038101906103a191906125b8565b610a8d565b005b6103c260048036038101906103bd91906126be565b610b0b565b005b6103de60048036038101906103d99190612504565b610b1f565b005b6103e8610b9b565b6040516103f59190612b3d565b60405180910390f35b61041860048036038101906104139190612504565b610bb2565b6040516104259190612b3d565b60405180910390f35b61044860048036038101906104439190612504565b610bd2565b6040516104559190612ed5565b60405180910390f35b610478600480360381019061047391906125b8565b610c1b565b005b610482610c9f565b005b61049e60048036038101906104999190612659565b610d19565b6040516104ab9190612af9565b60405180910390f35b6104ce60048036038101906104c9919061261d565b610d48565b6040516104db9190612b3d565b60405180910390f35b6104ec610db2565b6040516104f99190612b73565b60405180910390f35b61050a610e44565b6040516105179190612b58565b60405180910390f35b61053a600480360381019061053591906125b8565b610e4b565b6040516105479190612b3d565b60405180910390f35b61056a600480360381019061056591906125b8565b610f3f565b6040516105779190612b3d565b60405180910390f35b61059a600480360381019061059591906125f4565b610f5d565b6040516105a79190612ed5565b60405180910390f35b6105ca60048036038101906105c59190612504565b610f81565b6040516105d79190612b3d565b60405180910390f35b6105fa60048036038101906105f59190612504565b610fd7565b005b610604611053565b6040516106119190612b58565b60405180910390f35b610634600480360381019061062f919061261d565b611077565b005b610650600480360381019061064b919061252d565b6110ab565b60405161065d9190612ed5565b60405180910390f35b61066e611132565b60405161067b9190612b58565b60405180910390f35b61068c611156565b6040516106999190612b58565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107155750610714826111b8565b5b9050919050565b60606005805461072b9061306f565b80601f01602080910402602001604051908101604052809291908181526020018280546107579061306f565b80156107a45780601f10610779576101008083540402835291602001916107a4565b820191906000526020600020905b81548152906001019060200180831161078757829003601f168201915b5050505050905090565b60006107c26107bb611232565b848461123a565b6001905092915050565b6000600454905090565b60006107e3848484611405565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061082e611232565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a590612d35565b60405180910390fd5b6108cb856108ba611232565b85846108c69190612f7d565b61123a565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b6109008282611687565b610925816001600085815260200190815260200160002061118890919063ffffffff16565b505050565b60006012905090565b61093d82826116ed565b610962816001600085815260200190815260200160002061177090919063ffffffff16565b505050565b6000610a09610974611232565b848460036000610982611232565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a049190612f27565b61123a565b6001905092915050565b610a447f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610a3f611232565b610d48565b610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90612c35565b60405180910390fd5b610a8b6117a0565b565b610abe7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610ab9611232565b610d48565b610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490612d55565b60405180910390fd5b610b078282611842565b5050565b610b1c610b16611232565b82611997565b50565b610b507faf9a8bb3cbd6b84fbccefa71ff73e26e798553c6914585a84886212a46a90279610b4b611232565b610d48565b610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8690612e35565b60405180910390fd5b610b9881611b6d565b50565b6000600760009054906101000a900460ff16905090565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610c2e83610c29611232565b6110ab565b905081811015610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90612d75565b60405180910390fd5b610c9083610c7f611232565b8484610c8b9190612f7d565b61123a565b610c9a8383611997565b505050565b610cd07f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610ccb611232565b610d48565b610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690612df5565b60405180910390fd5b610d17611c9c565b565b6000610d408260016000868152602001908152602001600020611d3f90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610dc19061306f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ded9061306f565b8015610e3a5780601f10610e0f57610100808354040283529160200191610e3a565b820191906000526020600020905b815481529060010190602001808311610e1d57829003601f168201915b5050505050905090565b6000801b81565b60008060036000610e5a611232565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90612e55565b60405180910390fd5b610f34610f22611232565b858584610f2f9190612f7d565b61123a565b600191505092915050565b6000610f53610f4c611232565b8484611405565b6001905092915050565b6000610f7a60016000848152602001908152602001600020611d59565b9050919050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110087faf9a8bb3cbd6b84fbccefa71ff73e26e798553c6914585a84886212a46a90279611003611232565b610d48565b611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e90612c75565b60405180910390fd5b61105081611d6e565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6110818282611e9d565b6110a6816001600085815260200190815260200160002061177090919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b7faf9a8bb3cbd6b84fbccefa71ff73e26e798553c6914585a84886212a46a9027981565b6111848282611f03565b5050565b60006111b0836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611fe3565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061122b575061122a82612053565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190612dd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190612c95565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113f89190612ed5565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90612db5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc90612bb5565b60405180910390fd5b6114f08383836120bd565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90612cb5565b60405180910390fd5b81816115839190612f7d565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116159190612f27565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116799190612ed5565b60405180910390a350505050565b6116a0611693836108d7565b61169b611232565b610d48565b6116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690612bd5565b60405180910390fd5b6116e98282611f03565b5050565b6116f5611232565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990612e75565b60405180910390fd5b61176c82826120cd565b5050565b6000611798836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6121ae565b905092915050565b6117a8610b9b565b6117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de90612bf5565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61182b611232565b6040516118389190612af9565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a990612e95565b60405180910390fd5b6118be600083836120bd565b80600460008282546118d09190612f27565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119269190612f27565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161198b9190612ed5565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe90612d95565b60405180910390fd5b611a13826000836120bd565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190612c15565b60405180910390fd5b8181611aa69190612f7d565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160046000828254611afb9190612f7d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b609190612ed5565b60405180910390a3505050565b60011515600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890612c55565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fb0c70af567d1a37efb45800fd6369f93612be23e1066055303c51dd8b7b0b77b611c82611232565b82604051611c91929190612b14565b60405180910390a150565b611ca4610b9b565b15611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb90612cf5565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d28611232565b604051611d359190612af9565b60405180910390a1565b6000611d4e836000018361232c565b60001c905092915050565b6000611d67826000016123c6565b9050919050565b60001515600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415611e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df990612d15565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fcb0356f4b1226f73fb6b54884817c2910036693b4e0a9524a7f4c8782b838f5c611e83611232565b82604051611e92929190612b14565b60405180910390a150565b611eb6611ea9836108d7565b611eb1611232565b610d48565b611ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eec90612cd5565b60405180910390fd5b611eff82826120cd565b5050565b611f0d8282610d48565b611fdf57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f84611232565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611fef83836123d7565b61204857826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061204d565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120c88383836123fa565b505050565b6120d78282610d48565b156121aa57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061214f611232565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080836001016000848152602001908152602001600020549050600081146123205760006001826121e09190612f7d565b90506000600186600001805490506121f89190612f7d565b90506000866000018281548110612238577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612282577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550866000018054806122e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612326565b60009150505b92915050565b600081836000018054905011612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90612b95565b60405180910390fd5b8260000182815481106123b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b612405838383612453565b61240e83610f81565b1561244e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244590612e15565b60405180910390fd5b505050565b61245e8383836124ab565b612466610b9b565b156124a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249d90612eb5565b60405180910390fd5b505050565b505050565b6000813590506124bf81613858565b92915050565b6000813590506124d48161386f565b92915050565b6000813590506124e981613886565b92915050565b6000813590506124fe8161389d565b92915050565b60006020828403121561251657600080fd5b6000612524848285016124b0565b91505092915050565b6000806040838503121561254057600080fd5b600061254e858286016124b0565b925050602061255f858286016124b0565b9150509250929050565b60008060006060848603121561257e57600080fd5b600061258c868287016124b0565b935050602061259d868287016124b0565b92505060406125ae868287016124ef565b9150509250925092565b600080604083850312156125cb57600080fd5b60006125d9858286016124b0565b92505060206125ea858286016124ef565b9150509250929050565b60006020828403121561260657600080fd5b6000612614848285016124c5565b91505092915050565b6000806040838503121561263057600080fd5b600061263e858286016124c5565b925050602061264f858286016124b0565b9150509250929050565b6000806040838503121561266c57600080fd5b600061267a858286016124c5565b925050602061268b858286016124ef565b9150509250929050565b6000602082840312156126a757600080fd5b60006126b5848285016124da565b91505092915050565b6000602082840312156126d057600080fd5b60006126de848285016124ef565b91505092915050565b6126f081612fb1565b82525050565b6126ff81612fc3565b82525050565b61270e81612fcf565b82525050565b600061271f82612f0b565b6127298185612f16565b935061273981856020860161303c565b612742816130ff565b840191505092915050565b600061275a602283612f16565b915061276582613110565b604082019050919050565b600061277d602383612f16565b91506127888261315f565b604082019050919050565b60006127a0602f83612f16565b91506127ab826131ae565b604082019050919050565b60006127c3601483612f16565b91506127ce826131fd565b602082019050919050565b60006127e6602283612f16565b91506127f182613226565b604082019050919050565b6000612809603983612f16565b915061281482613275565b604082019050919050565b600061282c602083612f16565b9150612837826132c4565b602082019050919050565b600061284f602683612f16565b915061285a826132ed565b604082019050919050565b6000612872602283612f16565b915061287d8261333c565b604082019050919050565b6000612895602683612f16565b91506128a08261338b565b604082019050919050565b60006128b8603083612f16565b91506128c3826133da565b604082019050919050565b60006128db601083612f16565b91506128e682613429565b602082019050919050565b60006128fe601c83612f16565b915061290982613452565b602082019050919050565b6000612921602883612f16565b915061292c8261347b565b604082019050919050565b6000612944603683612f16565b915061294f826134ca565b604082019050919050565b6000612967602483612f16565b915061297282613519565b604082019050919050565b600061298a602183612f16565b915061299582613568565b604082019050919050565b60006129ad602583612f16565b91506129b8826135b7565b604082019050919050565b60006129d0602483612f16565b91506129db82613606565b604082019050919050565b60006129f3603783612f16565b91506129fe82613655565b604082019050919050565b6000612a16602a83612f16565b9150612a21826136a4565b604082019050919050565b6000612a39602483612f16565b9150612a44826136f3565b604082019050919050565b6000612a5c602583612f16565b9150612a6782613742565b604082019050919050565b6000612a7f602f83612f16565b9150612a8a82613791565b604082019050919050565b6000612aa2601f83612f16565b9150612aad826137e0565b602082019050919050565b6000612ac5602a83612f16565b9150612ad082613809565b604082019050919050565b612ae481613025565b82525050565b612af38161302f565b82525050565b6000602082019050612b0e60008301846126e7565b92915050565b6000604082019050612b2960008301856126e7565b612b3660208301846126e7565b9392505050565b6000602082019050612b5260008301846126f6565b92915050565b6000602082019050612b6d6000830184612705565b92915050565b60006020820190508181036000830152612b8d8184612714565b905092915050565b60006020820190508181036000830152612bae8161274d565b9050919050565b60006020820190508181036000830152612bce81612770565b9050919050565b60006020820190508181036000830152612bee81612793565b9050919050565b60006020820190508181036000830152612c0e816127b6565b9050919050565b60006020820190508181036000830152612c2e816127d9565b9050919050565b60006020820190508181036000830152612c4e816127fc565b9050919050565b60006020820190508181036000830152612c6e8161281f565b9050919050565b60006020820190508181036000830152612c8e81612842565b9050919050565b60006020820190508181036000830152612cae81612865565b9050919050565b60006020820190508181036000830152612cce81612888565b9050919050565b60006020820190508181036000830152612cee816128ab565b9050919050565b60006020820190508181036000830152612d0e816128ce565b9050919050565b60006020820190508181036000830152612d2e816128f1565b9050919050565b60006020820190508181036000830152612d4e81612914565b9050919050565b60006020820190508181036000830152612d6e81612937565b9050919050565b60006020820190508181036000830152612d8e8161295a565b9050919050565b60006020820190508181036000830152612dae8161297d565b9050919050565b60006020820190508181036000830152612dce816129a0565b9050919050565b60006020820190508181036000830152612dee816129c3565b9050919050565b60006020820190508181036000830152612e0e816129e6565b9050919050565b60006020820190508181036000830152612e2e81612a09565b9050919050565b60006020820190508181036000830152612e4e81612a2c565b9050919050565b60006020820190508181036000830152612e6e81612a4f565b9050919050565b60006020820190508181036000830152612e8e81612a72565b9050919050565b60006020820190508181036000830152612eae81612a95565b9050919050565b60006020820190508181036000830152612ece81612ab8565b9050919050565b6000602082019050612eea6000830184612adb565b92915050565b6000602082019050612f056000830184612aea565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612f3282613025565b9150612f3d83613025565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f7257612f716130a1565b5b828201905092915050565b6000612f8882613025565b9150612f9383613025565b925082821015612fa657612fa56130a1565b5b828203905092915050565b6000612fbc82613005565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561305a57808201518184015260208101905061303f565b83811115613069576000848401525b50505050565b6000600282049050600182168061308757607f821691505b6020821081141561309b5761309a6130d0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f206772616e740000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f4143434f554e542048415320414c5245414459204245454e204c4f434b45442e600082015250565b7f45524332303a206d7573742068617665206c6f636b657220726f6c6520746f2060008201527f556e6c6f636b0000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f207265766f6b6500000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4143434f554e5420484153204e4f54204245454e204c4f434b45442e00000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f7665206d696e74657220726f6c6520746f206d696e7400000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f207061757365000000000000000000602082015250565b7f45524332304c6f636b61626c653a20746f6b656e207472616e7366657220776860008201527f696c65206c6f636b656400000000000000000000000000000000000000000000602082015250565b7f45524332303a206d7573742068617665206c6f636b657220726f6c6520746f2060008201527f6c6f636b00000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61386181612fb1565b811461386c57600080fd5b50565b61387881612fcf565b811461388357600080fd5b50565b61388f81612fd9565b811461389a57600080fd5b50565b6138a681613025565b81146138b157600080fd5b5056fea26469706673582212205a390c9d0c14301f45a65e1fda4655834f8ac05d63fcced9b114ee077444fb2b64736f6c63430008010033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000094f6173697347616d65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034f53470000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): OasisGame
Arg [1] : symbol (string): OSG

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 4f6173697347616d650000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4f53470000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

802:2896:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:224:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2056:98:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4153:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3144:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4786:414;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4157:121:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2141:162:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2993:91:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2648:171:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5595:212:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2542:175:14;;;:::i;:::-;;1761:202;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;473:89:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2929:177:14;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1035:84:15;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;826:42:13;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3308:125:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;868:327:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2166:169:14;;;:::i;:::-;;1611:143:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3839:137:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2267:102:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2335:49:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6294:371:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3636:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1922:132:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1063:121:13;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3311:183:14;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;913:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2391:167:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3866:149:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;981:62:14;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1049;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;802:224:1;887:4;925:42;910:57;;;:11;:57;;;;:109;;;;983:36;1007:11;983:23;:36::i;:::-;910:109;903:116;;802:224;;;:::o;2056:98:5:-;2110:13;2142:5;2135:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2056:98;:::o;4153:166::-;4236:4;4252:39;4261:12;:10;:12::i;:::-;4275:7;4284:6;4252:8;:39::i;:::-;4308:4;4301:11;;4153:166;;;;:::o;3144:106::-;3205:7;3231:12;;3224:19;;3144:106;:::o;4786:414::-;4892:4;4908:36;4918:6;4926:9;4937:6;4908:9;:36::i;:::-;4955:24;4982:11;:19;4994:6;4982:19;;;;;;;;;;;;;;;:33;5002:12;:10;:12::i;:::-;4982:33;;;;;;;;;;;;;;;;4955:60;;5053:6;5033:16;:26;;5025:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5114:57;5123:6;5131:12;:10;:12::i;:::-;5164:6;5145:16;:25;;;;:::i;:::-;5114:8;:57::i;:::-;5189:4;5182:11;;;4786:414;;;;;:::o;4157:121:0:-;4223:7;4249:6;:12;4256:4;4249:12;;;;;;;;;;;:22;;;4242:29;;4157:121;;;:::o;2141:162:1:-;2225:30;2241:4;2247:7;2225:15;:30::i;:::-;2265:31;2288:7;2265:12;:18;2278:4;2265:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;2141:162;;:::o;2993:91:5:-;3051:5;3075:2;3068:9;;2993:91;:::o;2648:171:1:-;2735:33;2754:4;2760:7;2735:18;:33::i;:::-;2778:34;2804:7;2778:12;:18;2791:4;2778:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;2648:171;;:::o;5595:212:5:-;5683:4;5699:80;5708:12;:10;:12::i;:::-;5722:7;5768:10;5731:11;:25;5743:12;:10;:12::i;:::-;5731:25;;;;;;;;;;;;;;;:34;5757:7;5731:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5699:8;:80::i;:::-;5796:4;5789:11;;5595:212;;;;:::o;2542:175:14:-;2594:34;1019:24;2615:12;:10;:12::i;:::-;2594:7;:34::i;:::-;2586:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;2700:10;:8;:10::i;:::-;2542:175::o;1761:202::-;1836:34;951:24;1857:12;:10;:12::i;:::-;1836:7;:34::i;:::-;1828:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;1939:17;1945:2;1949:6;1939:5;:17::i;:::-;1761:202;;:::o;473:89:6:-;528:27;534:12;:10;:12::i;:::-;548:6;528:5;:27::i;:::-;473:89;:::o;2929:177:14:-;3001:34;1087:24;3022:12;:10;:12::i;:::-;3001:7;:34::i;:::-;2993:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;3086:13;3092:6;3086:5;:13::i;:::-;2929:177;:::o;1035:84:15:-;1082:4;1105:7;;;;;;;;;;;1098:14;;1035:84;:::o;826:42:13:-;;;;;;;;;;;;;;;;;;;;;;:::o;3308:125:5:-;3382:7;3408:9;:18;3418:7;3408:18;;;;;;;;;;;;;;;;3401:25;;3308:125;;;:::o;868:327:6:-;944:24;971:32;981:7;990:12;:10;:12::i;:::-;971:9;:32::i;:::-;944:59;;1041:6;1021:16;:26;;1013:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1098:58;1107:7;1116:12;:10;:12::i;:::-;1149:6;1130:16;:25;;;;:::i;:::-;1098:8;:58::i;:::-;1166:22;1172:7;1181:6;1166:5;:22::i;:::-;868:327;;;:::o;2166:169:14:-;2216:34;1019:24;2237:12;:10;:12::i;:::-;2216:7;:34::i;:::-;2208:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;2320:8;:6;:8::i;:::-;2166:169::o;1611:143:1:-;1693:7;1719:28;1741:5;1719:12;:18;1732:4;1719:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;1712:35;;1611:143;;;;:::o;3839:137:0:-;3917:4;3940:6;:12;3947:4;3940:12;;;;;;;;;;;:20;;:29;3961:7;3940:29;;;;;;;;;;;;;;;;;;;;;;;;;3933:36;;3839:137;;;;:::o;2267:102:5:-;2323:13;2355:7;2348:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2267:102;:::o;2335:49:0:-;2380:4;2335:49;;;:::o;6294:371:5:-;6387:4;6403:24;6430:11;:25;6442:12;:10;:12::i;:::-;6430:25;;;;;;;;;;;;;;;:34;6456:7;6430:34;;;;;;;;;;;;;;;;6403:61;;6502:15;6482:16;:35;;6474:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6569:67;6578:12;:10;:12::i;:::-;6592:7;6620:15;6601:16;:34;;;;:::i;:::-;6569:8;:67::i;:::-;6654:4;6647:11;;;6294:371;;;;:::o;3636:172::-;3722:4;3738:42;3748:12;:10;:12::i;:::-;3762:9;3773:6;3738:9;:42::i;:::-;3797:4;3790:11;;3636:172;;;;:::o;1922:132:1:-;1994:7;2020:27;:12;:18;2033:4;2020:18;;;;;;;;;;;:25;:27::i;:::-;2013:34;;1922:132;;;:::o;1063:121:13:-;1130:4;1153:10;:24;1164:12;1153:24;;;;;;;;;;;;;;;;;;;;;;;;;1146:31;;1063:121;;;:::o;3311:183:14:-;3385:34;1087:24;3406:12;:10;:12::i;:::-;3385:7;:34::i;:::-;3377:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;3472:15;3480:6;3472:7;:15::i;:::-;3311:183;:::o;913:62::-;951:24;913:62;:::o;2391:167:1:-;2476:31;2493:4;2499:7;2476:16;:31::i;:::-;2517:34;2543:7;2517:12;:18;2530:4;2517:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;2391:167;;:::o;3866:149:5:-;3955:7;3981:11;:18;3993:5;3981:18;;;;;;;;;;;;;;;:27;4000:7;3981:27;;;;;;;;;;;;;;;;3974:34;;3866:149;;;;:::o;981:62:14:-;1019:24;981:62;:::o;1049:::-;1087:24;1049:62;:::o;6491:110:0:-;6569:25;6580:4;6586:7;6569:10;:25::i;:::-;6491:110;;:::o;6430:150:9:-;6500:4;6523:50;6528:3;:10;;6564:5;6548:23;;6540:32;;6523:4;:50::i;:::-;6516:57;;6430:150;;;;:::o;3538:214:0:-;3623:4;3661:32;3646:47;;;:11;:47;;;;:99;;;;3709:36;3733:11;3709:23;:36::i;:::-;3646:99;3639:106;;3538:214;;;:::o;586:96:3:-;639:7;665:10;658:17;;586:96;:::o;9558:340:5:-;9676:1;9659:19;;:5;:19;;;;9651:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9756:1;9737:21;;:7;:21;;;;9729:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9838:6;9808:11;:18;9820:5;9808:18;;;;;;;;;;;;;;;:27;9827:7;9808:27;;;;;;;;;;;;;;;:36;;;;9875:7;9859:32;;9868:5;9859:32;;;9884:6;9859:32;;;;;;:::i;:::-;;;;;;;;9558:340;;;:::o;7139:592::-;7262:1;7244:20;;:6;:20;;;;7236:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7345:1;7324:23;;:9;:23;;;;7316:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7398:47;7419:6;7427:9;7438:6;7398:20;:47::i;:::-;7456:21;7480:9;:17;7490:6;7480:17;;;;;;;;;;;;;;;;7456:41;;7532:6;7515:13;:23;;7507:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7627:6;7611:13;:22;;;;:::i;:::-;7591:9;:17;7601:6;7591:17;;;;;;;;;;;;;;;:42;;;;7667:6;7643:9;:20;7653:9;7643:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7706:9;7689:35;;7698:6;7689:35;;;7717:6;7689:35;;;;;;:::i;:::-;;;;;;;;7139:592;;;;:::o;4528:228:0:-;4620:41;4628:18;4641:4;4628:12;:18::i;:::-;4648:12;:10;:12::i;:::-;4620:7;:41::i;:::-;4612:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;4724:25;4735:4;4741:7;4724:10;:25::i;:::-;4528:228;;:::o;5712:214::-;5818:12;:10;:12::i;:::-;5807:23;;:7;:23;;;5799:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;5893:26;5905:4;5911:7;5893:11;:26::i;:::-;5712:214;;:::o;6748:156:9:-;6821:4;6844:53;6852:3;:10;;6888:5;6872:23;;6864:32;;6844:7;:53::i;:::-;6837:60;;6748:156;;;;:::o;2047:117:15:-;1614:8;:6;:8::i;:::-;1606:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2115:5:::1;2105:7;;:15;;;;;;;;;;;;;;;;;;2135:22;2144:12;:10;:12::i;:::-;2135:22;;;;;;:::i;:::-;;;;;;;;2047:117::o:0;8002:330:5:-;8104:1;8085:21;;:7;:21;;;;8077:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8153:49;8182:1;8186:7;8195:6;8153:20;:49::i;:::-;8229:6;8213:12;;:22;;;;;;;:::i;:::-;;;;;;;;8267:6;8245:9;:18;8255:7;8245:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8309:7;8288:37;;8305:1;8288:37;;;8318:6;8288:37;;;;;;:::i;:::-;;;;;;;;8002:330;;:::o;8652:483::-;8754:1;8735:21;;:7;:21;;;;8727:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;8805:49;8826:7;8843:1;8847:6;8805:20;:49::i;:::-;8865:22;8890:9;:18;8900:7;8890:18;;;;;;;;;;;;;;;;8865:43;;8944:6;8926:14;:24;;8918:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9037:6;9020:14;:23;;;;:::i;:::-;8999:9;:18;9009:7;8999:18;;;;;;;;;;;;;;;:44;;;;9069:6;9053:12;;:22;;;;;;;:::i;:::-;;;;;;;;9117:1;9091:37;;9100:7;9091:37;;;9121:6;9091:37;;;;;;:::i;:::-;;;;;;;;8652:483;;;:::o;1317:242:13:-;1419:4;1390:33;;:10;:25;1401:13;1390:25;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;;1382:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;1498:4;1470:10;:25;1481:13;1470:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;1517:35;1524:12;:10;:12::i;:::-;1538:13;1517:35;;;;;;;:::i;:::-;;;;;;;;1317:242;:::o;1800:115:15:-;1349:8;:6;:8::i;:::-;1348:9;1340:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1869:4:::1;1859:7;;:14;;;;;;;;;;;;;;;;;;1888:20;1895:12;:10;:12::i;:::-;1888:20;;;;;;:::i;:::-;;;;;;;;1800:115::o:0;7678:156:9:-;7752:7;7802:22;7806:3;:10;;7818:5;7802:3;:22::i;:::-;7794:31;;7771:56;;7678:156;;;;:::o;7231:115::-;7294:7;7320:19;7328:3;:10;;7320:7;:19::i;:::-;7313:26;;7231:115;;;:::o;1690:244:13:-;1794:5;1765:34;;:10;:25;1776:13;1765:25;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;;1757:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1870:5;1842:10;:25;1853:13;1842:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;1890:37;1899:12;:10;:12::i;:::-;1913:13;1890:37;;;;;;;:::i;:::-;;;;;;;;1690:244;:::o;4990:231:0:-;5083:41;5091:18;5104:4;5091:12;:18::i;:::-;5111:12;:10;:12::i;:::-;5083:7;:41::i;:::-;5075:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;5188:26;5200:4;5206:7;5188:11;:26::i;:::-;4990:231;;:::o;6924:224::-;6998:22;7006:4;7012:7;6998;:22::i;:::-;6993:149;;7068:4;7036:6;:12;7043:4;7036:12;;;;;;;;;;;:20;;:29;7057:7;7036:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;7118:12;:10;:12::i;:::-;7091:40;;7109:7;7091:40;;7103:4;7091:40;;;;;;;;;;6993:149;6924:224;;:::o;1632:404:9:-;1695:4;1716:21;1726:3;1731:5;1716:9;:21::i;:::-;1711:319;;1753:3;:11;;1770:5;1753:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1933:3;:11;;:18;;;;1911:3;:12;;:19;1924:5;1911:19;;;;;;;;;;;:40;;;;1972:4;1965:11;;;;1711:319;2014:5;2007:12;;1632:404;;;;;:::o;763:155:4:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;3500:196:14:-;3645:44;3672:4;3678:2;3682:6;3645:26;:44::i;:::-;3500:196;;;:::o;7154:225:0:-;7228:22;7236:4;7242:7;7228;:22::i;:::-;7224:149;;;7298:5;7266:6;:12;7273:4;7266:12;;;;;;;;;;;:20;;:29;7287:7;7266:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;7349:12;:10;:12::i;:::-;7322:40;;7340:7;7322:40;;7334:4;7322:40;;;;;;;;;;7224:149;7154:225;;:::o;2204:1521:9:-;2270:4;2386:18;2407:3;:12;;:19;2420:5;2407:19;;;;;;;;;;;;2386:40;;2455:1;2441:10;:15;2437:1282;;2798:21;2835:1;2822:10;:14;;;;:::i;:::-;2798:38;;2850:17;2891:1;2870:3;:11;;:18;;;;:22;;;;:::i;:::-;2850:42;;3132:17;3152:3;:11;;3164:9;3152:22;;;;;;;;;;;;;;;;;;;;;;;;3132:42;;3295:9;3266:3;:11;;3278:13;3266:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;3396:10;3370:3;:12;;:23;3383:9;3370:23;;;;;;;;;;;:36;;;;3528:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3620:3;:12;;:19;3633:5;3620:19;;;;;;;;;;;3613:26;;;3661:4;3654:11;;;;;;;;2437:1282;3703:5;3696:12;;;2204:1521;;;;;:::o;4453:201::-;4520:7;4568:5;4547:3;:11;;:18;;;;:26;4539:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4629:3;:11;;4641:5;4629:18;;;;;;;;;;;;;;;;;;;;;;;;4622:25;;4453:201;;;;:::o;4014:107::-;4070:7;4096:3;:11;;:18;;;;4089:25;;4014:107;;;:::o;3806:127::-;3879:4;3925:1;3902:3;:12;;:19;3915:5;3902:19;;;;;;;;;;;;:24;;3895:31;;3806:127;;;;:::o;571:238:7:-;679:44;706:4;712:2;716:6;679:26;:44::i;:::-;743:12;750:4;743:6;:12::i;:::-;742:13;734:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;571:238;;;:::o;572:234:8:-;680:44;707:4;713:2;717:6;680:26;:44::i;:::-;744:8;:6;:8::i;:::-;743:9;735:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;572:234;;;:::o;10485:92:5:-;;;;:::o;7:139:16:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:137::-;;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;348:86;;;;:::o;440:139::-;;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:262::-;;693:2;681:9;672:7;668:23;664:32;661:2;;;709:1;706;699:12;661:2;752:1;777:53;822:7;813:6;802:9;798:22;777:53;:::i;:::-;767:63;;723:117;651:196;;;;:::o;853:407::-;;;978:2;966:9;957:7;953:23;949:32;946:2;;;994:1;991;984:12;946:2;1037:1;1062:53;1107:7;1098:6;1087:9;1083:22;1062:53;:::i;:::-;1052:63;;1008:117;1164:2;1190:53;1235:7;1226:6;1215:9;1211:22;1190:53;:::i;:::-;1180:63;;1135:118;936:324;;;;;:::o;1266:552::-;;;;1408:2;1396:9;1387:7;1383:23;1379:32;1376:2;;;1424:1;1421;1414:12;1376:2;1467:1;1492:53;1537:7;1528:6;1517:9;1513:22;1492:53;:::i;:::-;1482:63;;1438:117;1594:2;1620:53;1665:7;1656:6;1645:9;1641:22;1620:53;:::i;:::-;1610:63;;1565:118;1722:2;1748:53;1793:7;1784:6;1773:9;1769:22;1748:53;:::i;:::-;1738:63;;1693:118;1366:452;;;;;:::o;1824:407::-;;;1949:2;1937:9;1928:7;1924:23;1920:32;1917:2;;;1965:1;1962;1955:12;1917:2;2008:1;2033:53;2078:7;2069:6;2058:9;2054:22;2033:53;:::i;:::-;2023:63;;1979:117;2135:2;2161:53;2206:7;2197:6;2186:9;2182:22;2161:53;:::i;:::-;2151:63;;2106:118;1907:324;;;;;:::o;2237:262::-;;2345:2;2333:9;2324:7;2320:23;2316:32;2313:2;;;2361:1;2358;2351:12;2313:2;2404:1;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2375:117;2303:196;;;;:::o;2505:407::-;;;2630:2;2618:9;2609:7;2605:23;2601:32;2598:2;;;2646:1;2643;2636:12;2598:2;2689:1;2714:53;2759:7;2750:6;2739:9;2735:22;2714:53;:::i;:::-;2704:63;;2660:117;2816:2;2842:53;2887:7;2878:6;2867:9;2863:22;2842:53;:::i;:::-;2832:63;;2787:118;2588:324;;;;;:::o;2918:407::-;;;3043:2;3031:9;3022:7;3018:23;3014:32;3011:2;;;3059:1;3056;3049:12;3011:2;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;3229:2;3255:53;3300:7;3291:6;3280:9;3276:22;3255:53;:::i;:::-;3245:63;;3200:118;3001:324;;;;;:::o;3331:260::-;;3438:2;3426:9;3417:7;3413:23;3409:32;3406:2;;;3454:1;3451;3444:12;3406:2;3497:1;3522:52;3566:7;3557:6;3546:9;3542:22;3522:52;:::i;:::-;3512:62;;3468:116;3396:195;;;;:::o;3597:262::-;;3705:2;3693:9;3684:7;3680:23;3676:32;3673:2;;;3721:1;3718;3711:12;3673:2;3764:1;3789:53;3834:7;3825:6;3814:9;3810:22;3789:53;:::i;:::-;3779:63;;3735:117;3663:196;;;;:::o;3865:118::-;3952:24;3970:5;3952:24;:::i;:::-;3947:3;3940:37;3930:53;;:::o;3989:109::-;4070:21;4085:5;4070:21;:::i;:::-;4065:3;4058:34;4048:50;;:::o;4104:118::-;4191:24;4209:5;4191:24;:::i;:::-;4186:3;4179:37;4169:53;;:::o;4228:364::-;;4344:39;4377:5;4344:39;:::i;:::-;4399:71;4463:6;4458:3;4399:71;:::i;:::-;4392:78;;4479:52;4524:6;4519:3;4512:4;4505:5;4501:16;4479:52;:::i;:::-;4556:29;4578:6;4556:29;:::i;:::-;4551:3;4547:39;4540:46;;4320:272;;;;;:::o;4598:366::-;;4761:67;4825:2;4820:3;4761:67;:::i;:::-;4754:74;;4837:93;4926:3;4837:93;:::i;:::-;4955:2;4950:3;4946:12;4939:19;;4744:220;;;:::o;4970:366::-;;5133:67;5197:2;5192:3;5133:67;:::i;:::-;5126:74;;5209:93;5298:3;5209:93;:::i;:::-;5327:2;5322:3;5318:12;5311:19;;5116:220;;;:::o;5342:366::-;;5505:67;5569:2;5564:3;5505:67;:::i;:::-;5498:74;;5581:93;5670:3;5581:93;:::i;:::-;5699:2;5694:3;5690:12;5683:19;;5488:220;;;:::o;5714:366::-;;5877:67;5941:2;5936:3;5877:67;:::i;:::-;5870:74;;5953:93;6042:3;5953:93;:::i;:::-;6071:2;6066:3;6062:12;6055:19;;5860:220;;;:::o;6086:366::-;;6249:67;6313:2;6308:3;6249:67;:::i;:::-;6242:74;;6325:93;6414:3;6325:93;:::i;:::-;6443:2;6438:3;6434:12;6427:19;;6232:220;;;:::o;6458:366::-;;6621:67;6685:2;6680:3;6621:67;:::i;:::-;6614:74;;6697:93;6786:3;6697:93;:::i;:::-;6815:2;6810:3;6806:12;6799:19;;6604:220;;;:::o;6830:366::-;;6993:67;7057:2;7052:3;6993:67;:::i;:::-;6986:74;;7069:93;7158:3;7069:93;:::i;:::-;7187:2;7182:3;7178:12;7171:19;;6976:220;;;:::o;7202:366::-;;7365:67;7429:2;7424:3;7365:67;:::i;:::-;7358:74;;7441:93;7530:3;7441:93;:::i;:::-;7559:2;7554:3;7550:12;7543:19;;7348:220;;;:::o;7574:366::-;;7737:67;7801:2;7796:3;7737:67;:::i;:::-;7730:74;;7813:93;7902:3;7813:93;:::i;:::-;7931:2;7926:3;7922:12;7915:19;;7720:220;;;:::o;7946:366::-;;8109:67;8173:2;8168:3;8109:67;:::i;:::-;8102:74;;8185:93;8274:3;8185:93;:::i;:::-;8303:2;8298:3;8294:12;8287:19;;8092:220;;;:::o;8318:366::-;;8481:67;8545:2;8540:3;8481:67;:::i;:::-;8474:74;;8557:93;8646:3;8557:93;:::i;:::-;8675:2;8670:3;8666:12;8659:19;;8464:220;;;:::o;8690:366::-;;8853:67;8917:2;8912:3;8853:67;:::i;:::-;8846:74;;8929:93;9018:3;8929:93;:::i;:::-;9047:2;9042:3;9038:12;9031:19;;8836:220;;;:::o;9062:366::-;;9225:67;9289:2;9284:3;9225:67;:::i;:::-;9218:74;;9301:93;9390:3;9301:93;:::i;:::-;9419:2;9414:3;9410:12;9403:19;;9208:220;;;:::o;9434:366::-;;9597:67;9661:2;9656:3;9597:67;:::i;:::-;9590:74;;9673:93;9762:3;9673:93;:::i;:::-;9791:2;9786:3;9782:12;9775:19;;9580:220;;;:::o;9806:366::-;;9969:67;10033:2;10028:3;9969:67;:::i;:::-;9962:74;;10045:93;10134:3;10045:93;:::i;:::-;10163:2;10158:3;10154:12;10147:19;;9952:220;;;:::o;10178:366::-;;10341:67;10405:2;10400:3;10341:67;:::i;:::-;10334:74;;10417:93;10506:3;10417:93;:::i;:::-;10535:2;10530:3;10526:12;10519:19;;10324:220;;;:::o;10550:366::-;;10713:67;10777:2;10772:3;10713:67;:::i;:::-;10706:74;;10789:93;10878:3;10789:93;:::i;:::-;10907:2;10902:3;10898:12;10891:19;;10696:220;;;:::o;10922:366::-;;11085:67;11149:2;11144:3;11085:67;:::i;:::-;11078:74;;11161:93;11250:3;11161:93;:::i;:::-;11279:2;11274:3;11270:12;11263:19;;11068:220;;;:::o;11294:366::-;;11457:67;11521:2;11516:3;11457:67;:::i;:::-;11450:74;;11533:93;11622:3;11533:93;:::i;:::-;11651:2;11646:3;11642:12;11635:19;;11440:220;;;:::o;11666:366::-;;11829:67;11893:2;11888:3;11829:67;:::i;:::-;11822:74;;11905:93;11994:3;11905:93;:::i;:::-;12023:2;12018:3;12014:12;12007:19;;11812:220;;;:::o;12038:366::-;;12201:67;12265:2;12260:3;12201:67;:::i;:::-;12194:74;;12277:93;12366:3;12277:93;:::i;:::-;12395:2;12390:3;12386:12;12379:19;;12184:220;;;:::o;12410:366::-;;12573:67;12637:2;12632:3;12573:67;:::i;:::-;12566:74;;12649:93;12738:3;12649:93;:::i;:::-;12767:2;12762:3;12758:12;12751:19;;12556:220;;;:::o;12782:366::-;;12945:67;13009:2;13004:3;12945:67;:::i;:::-;12938:74;;13021:93;13110:3;13021:93;:::i;:::-;13139:2;13134:3;13130:12;13123:19;;12928:220;;;:::o;13154:366::-;;13317:67;13381:2;13376:3;13317:67;:::i;:::-;13310:74;;13393:93;13482:3;13393:93;:::i;:::-;13511:2;13506:3;13502:12;13495:19;;13300:220;;;:::o;13526:366::-;;13689:67;13753:2;13748:3;13689:67;:::i;:::-;13682:74;;13765:93;13854:3;13765:93;:::i;:::-;13883:2;13878:3;13874:12;13867:19;;13672:220;;;:::o;13898:366::-;;14061:67;14125:2;14120:3;14061:67;:::i;:::-;14054:74;;14137:93;14226:3;14137:93;:::i;:::-;14255:2;14250:3;14246:12;14239:19;;14044:220;;;:::o;14270:118::-;14357:24;14375:5;14357:24;:::i;:::-;14352:3;14345:37;14335:53;;:::o;14394:112::-;14477:22;14493:5;14477:22;:::i;:::-;14472:3;14465:35;14455:51;;:::o;14512:222::-;;14643:2;14632:9;14628:18;14620:26;;14656:71;14724:1;14713:9;14709:17;14700:6;14656:71;:::i;:::-;14610:124;;;;:::o;14740:332::-;;14899:2;14888:9;14884:18;14876:26;;14912:71;14980:1;14969:9;14965:17;14956:6;14912:71;:::i;:::-;14993:72;15061:2;15050:9;15046:18;15037:6;14993:72;:::i;:::-;14866:206;;;;;:::o;15078:210::-;;15203:2;15192:9;15188:18;15180:26;;15216:65;15278:1;15267:9;15263:17;15254:6;15216:65;:::i;:::-;15170:118;;;;:::o;15294:222::-;;15425:2;15414:9;15410:18;15402:26;;15438:71;15506:1;15495:9;15491:17;15482:6;15438:71;:::i;:::-;15392:124;;;;:::o;15522:313::-;;15673:2;15662:9;15658:18;15650:26;;15722:9;15716:4;15712:20;15708:1;15697:9;15693:17;15686:47;15750:78;15823:4;15814:6;15750:78;:::i;:::-;15742:86;;15640:195;;;;:::o;15841:419::-;;16045:2;16034:9;16030:18;16022:26;;16094:9;16088:4;16084:20;16080:1;16069:9;16065:17;16058:47;16122:131;16248:4;16122:131;:::i;:::-;16114:139;;16012:248;;;:::o;16266:419::-;;16470:2;16459:9;16455:18;16447:26;;16519:9;16513:4;16509:20;16505:1;16494:9;16490:17;16483:47;16547:131;16673:4;16547:131;:::i;:::-;16539:139;;16437:248;;;:::o;16691:419::-;;16895:2;16884:9;16880:18;16872:26;;16944:9;16938:4;16934:20;16930:1;16919:9;16915:17;16908:47;16972:131;17098:4;16972:131;:::i;:::-;16964:139;;16862:248;;;:::o;17116:419::-;;17320:2;17309:9;17305:18;17297:26;;17369:9;17363:4;17359:20;17355:1;17344:9;17340:17;17333:47;17397:131;17523:4;17397:131;:::i;:::-;17389:139;;17287:248;;;:::o;17541:419::-;;17745:2;17734:9;17730:18;17722:26;;17794:9;17788:4;17784:20;17780:1;17769:9;17765:17;17758:47;17822:131;17948:4;17822:131;:::i;:::-;17814:139;;17712:248;;;:::o;17966:419::-;;18170:2;18159:9;18155:18;18147:26;;18219:9;18213:4;18209:20;18205:1;18194:9;18190:17;18183:47;18247:131;18373:4;18247:131;:::i;:::-;18239:139;;18137:248;;;:::o;18391:419::-;;18595:2;18584:9;18580:18;18572:26;;18644:9;18638:4;18634:20;18630:1;18619:9;18615:17;18608:47;18672:131;18798:4;18672:131;:::i;:::-;18664:139;;18562:248;;;:::o;18816:419::-;;19020:2;19009:9;19005:18;18997:26;;19069:9;19063:4;19059:20;19055:1;19044:9;19040:17;19033:47;19097:131;19223:4;19097:131;:::i;:::-;19089:139;;18987:248;;;:::o;19241:419::-;;19445:2;19434:9;19430:18;19422:26;;19494:9;19488:4;19484:20;19480:1;19469:9;19465:17;19458:47;19522:131;19648:4;19522:131;:::i;:::-;19514:139;;19412:248;;;:::o;19666:419::-;;19870:2;19859:9;19855:18;19847:26;;19919:9;19913:4;19909:20;19905:1;19894:9;19890:17;19883:47;19947:131;20073:4;19947:131;:::i;:::-;19939:139;;19837:248;;;:::o;20091:419::-;;20295:2;20284:9;20280:18;20272:26;;20344:9;20338:4;20334:20;20330:1;20319:9;20315:17;20308:47;20372:131;20498:4;20372:131;:::i;:::-;20364:139;;20262:248;;;:::o;20516:419::-;;20720:2;20709:9;20705:18;20697:26;;20769:9;20763:4;20759:20;20755:1;20744:9;20740:17;20733:47;20797:131;20923:4;20797:131;:::i;:::-;20789:139;;20687:248;;;:::o;20941:419::-;;21145:2;21134:9;21130:18;21122:26;;21194:9;21188:4;21184:20;21180:1;21169:9;21165:17;21158:47;21222:131;21348:4;21222:131;:::i;:::-;21214:139;;21112:248;;;:::o;21366:419::-;;21570:2;21559:9;21555:18;21547:26;;21619:9;21613:4;21609:20;21605:1;21594:9;21590:17;21583:47;21647:131;21773:4;21647:131;:::i;:::-;21639:139;;21537:248;;;:::o;21791:419::-;;21995:2;21984:9;21980:18;21972:26;;22044:9;22038:4;22034:20;22030:1;22019:9;22015:17;22008:47;22072:131;22198:4;22072:131;:::i;:::-;22064:139;;21962:248;;;:::o;22216:419::-;;22420:2;22409:9;22405:18;22397:26;;22469:9;22463:4;22459:20;22455:1;22444:9;22440:17;22433:47;22497:131;22623:4;22497:131;:::i;:::-;22489:139;;22387:248;;;:::o;22641:419::-;;22845:2;22834:9;22830:18;22822:26;;22894:9;22888:4;22884:20;22880:1;22869:9;22865:17;22858:47;22922:131;23048:4;22922:131;:::i;:::-;22914:139;;22812:248;;;:::o;23066:419::-;;23270:2;23259:9;23255:18;23247:26;;23319:9;23313:4;23309:20;23305:1;23294:9;23290:17;23283:47;23347:131;23473:4;23347:131;:::i;:::-;23339:139;;23237:248;;;:::o;23491:419::-;;23695:2;23684:9;23680:18;23672:26;;23744:9;23738:4;23734:20;23730:1;23719:9;23715:17;23708:47;23772:131;23898:4;23772:131;:::i;:::-;23764:139;;23662:248;;;:::o;23916:419::-;;24120:2;24109:9;24105:18;24097:26;;24169:9;24163:4;24159:20;24155:1;24144:9;24140:17;24133:47;24197:131;24323:4;24197:131;:::i;:::-;24189:139;;24087:248;;;:::o;24341:419::-;;24545:2;24534:9;24530:18;24522:26;;24594:9;24588:4;24584:20;24580:1;24569:9;24565:17;24558:47;24622:131;24748:4;24622:131;:::i;:::-;24614:139;;24512:248;;;:::o;24766:419::-;;24970:2;24959:9;24955:18;24947:26;;25019:9;25013:4;25009:20;25005:1;24994:9;24990:17;24983:47;25047:131;25173:4;25047:131;:::i;:::-;25039:139;;24937:248;;;:::o;25191:419::-;;25395:2;25384:9;25380:18;25372:26;;25444:9;25438:4;25434:20;25430:1;25419:9;25415:17;25408:47;25472:131;25598:4;25472:131;:::i;:::-;25464:139;;25362:248;;;:::o;25616:419::-;;25820:2;25809:9;25805:18;25797:26;;25869:9;25863:4;25859:20;25855:1;25844:9;25840:17;25833:47;25897:131;26023:4;25897:131;:::i;:::-;25889:139;;25787:248;;;:::o;26041:419::-;;26245:2;26234:9;26230:18;26222:26;;26294:9;26288:4;26284:20;26280:1;26269:9;26265:17;26258:47;26322:131;26448:4;26322:131;:::i;:::-;26314:139;;26212:248;;;:::o;26466:419::-;;26670:2;26659:9;26655:18;26647:26;;26719:9;26713:4;26709:20;26705:1;26694:9;26690:17;26683:47;26747:131;26873:4;26747:131;:::i;:::-;26739:139;;26637:248;;;:::o;26891:222::-;;27022:2;27011:9;27007:18;26999:26;;27035:71;27103:1;27092:9;27088:17;27079:6;27035:71;:::i;:::-;26989:124;;;;:::o;27119:214::-;;27246:2;27235:9;27231:18;27223:26;;27259:67;27323:1;27312:9;27308:17;27299:6;27259:67;:::i;:::-;27213:120;;;;:::o;27339:99::-;;27425:5;27419:12;27409:22;;27398:40;;;:::o;27444:169::-;;27562:6;27557:3;27550:19;27602:4;27597:3;27593:14;27578:29;;27540:73;;;;:::o;27619:305::-;;27678:20;27696:1;27678:20;:::i;:::-;27673:25;;27712:20;27730:1;27712:20;:::i;:::-;27707:25;;27866:1;27798:66;27794:74;27791:1;27788:81;27785:2;;;27872:18;;:::i;:::-;27785:2;27916:1;27913;27909:9;27902:16;;27663:261;;;;:::o;27930:191::-;;27990:20;28008:1;27990:20;:::i;:::-;27985:25;;28024:20;28042:1;28024:20;:::i;:::-;28019:25;;28063:1;28060;28057:8;28054:2;;;28068:18;;:::i;:::-;28054:2;28113:1;28110;28106:9;28098:17;;27975:146;;;;:::o;28127:96::-;;28193:24;28211:5;28193:24;:::i;:::-;28182:35;;28172:51;;;:::o;28229:90::-;;28306:5;28299:13;28292:21;28281:32;;28271:48;;;:::o;28325:77::-;;28391:5;28380:16;;28370:32;;;:::o;28408:149::-;;28484:66;28477:5;28473:78;28462:89;;28452:105;;;:::o;28563:126::-;;28640:42;28633:5;28629:54;28618:65;;28608:81;;;:::o;28695:77::-;;28761:5;28750:16;;28740:32;;;:::o;28778:86::-;;28853:4;28846:5;28842:16;28831:27;;28821:43;;;:::o;28870:307::-;28938:1;28948:113;28962:6;28959:1;28956:13;28948:113;;;29047:1;29042:3;29038:11;29032:18;29028:1;29023:3;29019:11;29012:39;28984:2;28981:1;28977:10;28972:15;;28948:113;;;29079:6;29076:1;29073:13;29070:2;;;29159:1;29150:6;29145:3;29141:16;29134:27;29070:2;28919:258;;;;:::o;29183:320::-;;29264:1;29258:4;29254:12;29244:22;;29311:1;29305:4;29301:12;29332:18;29322:2;;29388:4;29380:6;29376:17;29366:27;;29322:2;29450;29442:6;29439:14;29419:18;29416:38;29413:2;;;29469:18;;:::i;:::-;29413:2;29234:269;;;;:::o;29509:180::-;29557:77;29554:1;29547:88;29654:4;29651:1;29644:15;29678:4;29675:1;29668:15;29695:180;29743:77;29740:1;29733:88;29840:4;29837:1;29830:15;29864:4;29861:1;29854:15;29881:102;;29973:2;29969:7;29964:2;29957:5;29953:14;29949:28;29939:38;;29929:54;;;:::o;29989:221::-;30129:34;30125:1;30117:6;30113:14;30106:58;30198:4;30193:2;30185:6;30181:15;30174:29;30095:115;:::o;30216:222::-;30356:34;30352:1;30344:6;30340:14;30333:58;30425:5;30420:2;30412:6;30408:15;30401:30;30322:116;:::o;30444:234::-;30584:34;30580:1;30572:6;30568:14;30561:58;30653:17;30648:2;30640:6;30636:15;30629:42;30550:128;:::o;30684:170::-;30824:22;30820:1;30812:6;30808:14;30801:46;30790:64;:::o;30860:221::-;31000:34;30996:1;30988:6;30984:14;30977:58;31069:4;31064:2;31056:6;31052:15;31045:29;30966:115;:::o;31087:244::-;31227:34;31223:1;31215:6;31211:14;31204:58;31296:27;31291:2;31283:6;31279:15;31272:52;31193:138;:::o;31337:182::-;31477:34;31473:1;31465:6;31461:14;31454:58;31443:76;:::o;31525:225::-;31665:34;31661:1;31653:6;31649:14;31642:58;31734:8;31729:2;31721:6;31717:15;31710:33;31631:119;:::o;31756:221::-;31896:34;31892:1;31884:6;31880:14;31873:58;31965:4;31960:2;31952:6;31948:15;31941:29;31862:115;:::o;31983:225::-;32123:34;32119:1;32111:6;32107:14;32100:58;32192:8;32187:2;32179:6;32175:15;32168:33;32089:119;:::o;32214:235::-;32354:34;32350:1;32342:6;32338:14;32331:58;32423:18;32418:2;32410:6;32406:15;32399:43;32320:129;:::o;32455:166::-;32595:18;32591:1;32583:6;32579:14;32572:42;32561:60;:::o;32627:178::-;32767:30;32763:1;32755:6;32751:14;32744:54;32733:72;:::o;32811:227::-;32951:34;32947:1;32939:6;32935:14;32928:58;33020:10;33015:2;33007:6;33003:15;32996:35;32917:121;:::o;33044:241::-;33184:34;33180:1;33172:6;33168:14;33161:58;33253:24;33248:2;33240:6;33236:15;33229:49;33150:135;:::o;33291:223::-;33431:34;33427:1;33419:6;33415:14;33408:58;33500:6;33495:2;33487:6;33483:15;33476:31;33397:117;:::o;33520:220::-;33660:34;33656:1;33648:6;33644:14;33637:58;33729:3;33724:2;33716:6;33712:15;33705:28;33626:114;:::o;33746:224::-;33886:34;33882:1;33874:6;33870:14;33863:58;33955:7;33950:2;33942:6;33938:15;33931:32;33852:118;:::o;33976:223::-;34116:34;34112:1;34104:6;34100:14;34093:58;34185:6;34180:2;34172:6;34168:15;34161:31;34082:117;:::o;34205:242::-;34345:34;34341:1;34333:6;34329:14;34322:58;34414:25;34409:2;34401:6;34397:15;34390:50;34311:136;:::o;34453:229::-;34593:34;34589:1;34581:6;34577:14;34570:58;34662:12;34657:2;34649:6;34645:15;34638:37;34559:123;:::o;34688:223::-;34828:34;34824:1;34816:6;34812:14;34805:58;34897:6;34892:2;34884:6;34880:15;34873:31;34794:117;:::o;34917:224::-;35057:34;35053:1;35045:6;35041:14;35034:58;35126:7;35121:2;35113:6;35109:15;35102:32;35023:118;:::o;35147:234::-;35287:34;35283:1;35275:6;35271:14;35264:58;35356:17;35351:2;35343:6;35339:15;35332:42;35253:128;:::o;35387:181::-;35527:33;35523:1;35515:6;35511:14;35504:57;35493:75;:::o;35574:229::-;35714:34;35710:1;35702:6;35698:14;35691:58;35783:12;35778:2;35770:6;35766:15;35759:37;35680:123;:::o;35809:122::-;35882:24;35900:5;35882:24;:::i;:::-;35875:5;35872:35;35862:2;;35921:1;35918;35911:12;35862:2;35852:79;:::o;35937:122::-;36010:24;36028:5;36010:24;:::i;:::-;36003:5;36000:35;35990:2;;36049:1;36046;36039:12;35990:2;35980:79;:::o;36065:120::-;36137:23;36154:5;36137:23;:::i;:::-;36130:5;36127:34;36117:2;;36175:1;36172;36165:12;36117:2;36107:78;:::o;36191:122::-;36264:24;36282:5;36264:24;:::i;:::-;36257:5;36254:35;36244:2;;36303:1;36300;36293:12;36244:2;36234:79;:::o

Swarm Source

ipfs://5a390c9d0c14301f45a65e1fda4655834f8ac05d63fcced9b114ee077444fb2b

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

The OSG project specializes in developing various contents in the field of virtual reality hardware and software based on its IT technology, and research capacity in contents and systems.

Validator Index Block Amount
View All Withdrawals

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

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