ETH Price: $3,250.65 (+2.14%)
Gas: 1 Gwei

Contract

0x56EE175FE37CD461486cE3c3166e0CaFCcd9843f
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Transaction Hash
Method
Block
From
To
Approve203301382024-07-18 1:30:118 days ago1721266211IN
Witnet: EWIT Token
0 ETH0.000239155.17241856
Approve203295652024-07-17 23:34:598 days ago1721259299IN
Witnet: EWIT Token
0 ETH0.000266975.77398308
Approve201001152024-06-15 22:16:5940 days ago1718489819IN
Witnet: EWIT Token
0 ETH0.000138212.96852048
Transfer200596792024-06-10 6:35:5945 days ago1718001359IN
Witnet: EWIT Token
0 ETH0.000242384.94281094
Approve197311472024-04-25 8:19:4791 days ago1714033187IN
Witnet: EWIT Token
0 ETH0.000420414.39906658
Approve197311322024-04-25 8:16:4791 days ago1714033007IN
Witnet: EWIT Token
0 ETH0.0006628114.33527095
Approve195318562024-03-28 9:55:47119 days ago1711619747IN
Witnet: EWIT Token
0 ETH0.0010000221.59469286
Swap194463682024-03-16 8:47:11131 days ago1710578831IN
Witnet: EWIT Token
0 ETH0.0014354530.4987983
Swap194273972024-03-13 16:41:11134 days ago1710348071IN
Witnet: EWIT Token
0 ETH0.0030016663.79201342
Swap192348872024-02-15 17:41:59161 days ago1708018919IN
Witnet: EWIT Token
0 ETH0.0020589243.74551548
Approve190222712024-01-16 21:55:35191 days ago1705442135IN
Witnet: EWIT Token
0 ETH0.0017570737.6885087
Approve190222572024-01-16 21:52:47191 days ago1705441967IN
Witnet: EWIT Token
0 ETH0.001712336.9661006
Mint190222352024-01-16 21:48:11191 days ago1705441691IN
Witnet: EWIT Token
0 ETH0.0031515337.82488958
Approve189604332024-01-08 6:10:11199 days ago1704694211IN
Witnet: EWIT Token
0 ETH0.0003990616.39749257
Swap187571372023-12-10 16:55:35228 days ago1702227335IN
Witnet: EWIT Token
0 ETH0.0014158830.09061952
Swap185477272023-11-11 9:14:59257 days ago1699694099IN
Witnet: EWIT Token
0 ETH0.0010857923.07551642
Swap185064762023-11-05 14:44:11263 days ago1699195451IN
Witnet: EWIT Token
0 ETH0.0011204126.51616007
Swap184576502023-10-29 18:33:47270 days ago1698604427IN
Witnet: EWIT Token
0 ETH0.0007731116.43033356
Swap173458912023-05-26 21:18:11426 days ago1685135891IN
Witnet: EWIT Token
0 ETH0.001377529.26760031
Swap172356672023-05-11 7:36:47441 days ago1683790607IN
Witnet: EWIT Token
0 ETH0.0042479290.2777169
Approve170176652023-04-10 12:01:11472 days ago1681128071IN
Witnet: EWIT Token
0 ETH0.0006122123.24558863
Swap169714252023-04-03 22:23:59479 days ago1680560639IN
Witnet: EWIT Token
0 ETH0.0012375826.30146348
Swap169613752023-04-02 12:21:47480 days ago1680438107IN
Witnet: EWIT Token
0 ETH0.0008846618.80103095
Swap166724492023-02-20 21:31:47521 days ago1676928707IN
Witnet: EWIT Token
0 ETH0.0011514127.24990454
Swap161062902022-12-03 19:11:59600 days ago1670094719IN
Witnet: EWIT Token
0 ETH0.0005261511.1790041
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
eWit

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 13: eWIT.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "AccessControlEnumerable.sol";
import "ERC20Pausable.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.
 */
abstract contract ERC20PresetMinterPauser is Context, AccessControlEnumerable, ERC20Pausable {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    /**
     * @dev Creates `amount` new tokens for `to`.
     *
     * See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, uint256 amount) internal 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();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20Pausable) {
        super._beforeTokenTransfer(from, to, amount);
    }
    
    modifier onlyAdmin() {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have admin role");
        _;
    }
}

contract eWit is ERC20PresetMinterPauser {
    address public platform;
    address public immutable developer;
    uint256 public totalSwapped;
    
    string constant NAME = 'eWit';
    string constant SYMBOL = 'EWIT';
    uint8 constant DECIMALS = 9;
    
    uint8 public feePercentage = 50; // Corresponds to 5%
    uint256 public minimumSwap = 10000 * 10 ** uint256(decimals());
    uint256 pendingAllowedToMint = 100000 * 10 ** uint256(decimals());

    event Swap(address indexed sender, string indexed witAddress, uint256 total);
    event Mint(address indexed sender, address indexed etherAddress, uint256 total, uint256 totalMinusFees, string indexed witnetFundsReceivedAt);
    
    function swap(string memory _wit_address, uint256 _total) external whenNotPaused {
        require(_total >= minimumSwap, "Invalid number of tokens");
        require(bytes(_wit_address).length == 42, "Invalid witnet address");

        _burn(msg.sender, _total);

        totalSwapped += _total;
        
        emit Swap(msg.sender, _wit_address, _total);
   }
    
   function mint(address _ether_address, uint256 _total, string memory _witnet_funds_received_at) external {
        require(pendingAllowedToMint >= _total, "Mint round needs to be renewed");
        require(hasRole(MINTER_ROLE, _msgSender()), "Must have minter role to mint");
        require(bytes(_witnet_funds_received_at).length == 42, "Invalid witnet address");

        pendingAllowedToMint -= _total;

        (uint256 swapAmount, uint256 platformFees, uint256 developerFees) = getFees(_total);

        _mint(_ether_address, swapAmount);

        if (platformFees > 0) {
            _mint(platform, platformFees);
            _mint(developer, developerFees);
        }
        
        emit Mint(msg.sender, _ether_address, _total, swapAmount, _witnet_funds_received_at);
    }
    
   function getFees(uint256 _total) internal view returns (uint256 swapAmount, uint256 platformFees, uint256 developerFees) {
        uint256 totalFees = _total * feePercentage / 1000;
        developerFees = totalFees / 10;
        platformFees = totalFees - developerFees;
        swapAmount = _total - totalFees;
   } 
    
    function updateMinimum(uint256 _new_minimum) external onlyAdmin {
        minimumSwap = _new_minimum;
    }
    
    function updateFees(uint8 _new_fees) external onlyAdmin {
        require(_new_fees <= 50, 'Fees cannot surpass 5%');
        feePercentage = _new_fees;
    }
    
    function updatePlatformWallet(address _new_wallet) external onlyAdmin {
        require(_new_wallet != address(0), 'Cannot set the zero address');
        platform = _new_wallet;
    }
    
    function renewMintRound(uint256 _allowed_to_mint) external onlyAdmin {
        pendingAllowedToMint = _allowed_to_mint;
    }
    
    function decimals() override public view virtual returns (uint8) {
        return DECIMALS;
    }
    
    constructor(address _multisig, address _platform, address _developer) ERC20(NAME, SYMBOL)
    {
        require(_platform != address(0), 'Platform: cannot set the zero address');
        require(_developer != address(0), 'Developer: cannot set the zero address');

        platform = _platform;
        developer = _developer;

        _setupRole(DEFAULT_ADMIN_ROLE, _multisig);
    }
}

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

pragma solidity ^0.8.0;

import "Context.sol";
import "Strings.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 Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view 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 onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

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

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been 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 13: 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 13: 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 5 of 13: 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 6 of 13: 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 7 of 13: 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
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _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 8 of 13: 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 9 of 13: 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 10 of 13: 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 11 of 13: 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.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

File 12 of 13: 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());
    }
}

File 13 of 13: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_multisig","type":"address"},{"internalType":"address","name":"_platform","type":"address"},{"internalType":"address","name":"_developer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"etherAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"total","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalMinusFees","type":"uint256"},{"indexed":true,"internalType":"string","name":"witnetFundsReceivedAt","type":"string"}],"name":"Mint","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":"sender","type":"address"},{"indexed":true,"internalType":"string","name":"witAddress","type":"string"},{"indexed":false,"internalType":"uint256","name":"total","type":"uint256"}],"name":"Swap","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"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feePercentage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":[],"name":"minimumSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_ether_address","type":"address"},{"internalType":"uint256","name":"_total","type":"uint256"},{"internalType":"string","name":"_witnet_funds_received_at","type":"string"}],"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":[],"name":"platform","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allowed_to_mint","type":"uint256"}],"name":"renewMintRound","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"string","name":"_wit_address","type":"string"},{"internalType":"uint256","name":"_total","type":"uint256"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSwapped","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_new_fees","type":"uint8"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new_minimum","type":"uint256"}],"name":"updateMinimum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_new_wallet","type":"address"}],"name":"updatePlatformWallet","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526009805460ff191660321790556200001a600990565b6200002a9060ff16600a620004d7565b620000389061271062000593565b600a5560096200004d9060ff16600a620004d7565b6200005c90620186a062000593565b600b553480156200006c57600080fd5b506040516200272d3803806200272d8339810160408190526200008f9162000445565b604051806040016040528060048152602001631955da5d60e21b815250604051806040016040528060048152602001631155d25560e21b8152508160059080519060200190620000e192919062000382565b508051620000f790600690602084019062000382565b50506007805460ff19169055506001600160a01b0382166200016e5760405162461bcd60e51b815260206004820152602560248201527f506c6174666f726d3a2063616e6e6f742073657420746865207a65726f206164604482015264647265737360d81b60648201526084015b60405180910390fd5b6001600160a01b038116620001d55760405162461bcd60e51b815260206004820152602660248201527f446576656c6f7065723a2063616e6e6f742073657420746865207a65726f206160448201526564647265737360d01b606482015260840162000165565b60078054610100600160a81b0319166101006001600160a01b03851602179055606081901b6001600160601b031916608052620002146000846200021d565b50505062000608565b6200023482826200026060201b62000e7f1760201c565b60008281526001602090815260409091206200025b91839062000e8d62000270821b17901c565b505050565b6200026c828262000290565b5050565b600062000287836001600160a01b03841662000330565b90505b92915050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166200026c576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620002ec3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205462000379575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200028a565b5060006200028a565b8280546200039090620005b5565b90600052602060002090601f016020900481019282620003b45760008555620003ff565b82601f10620003cf57805160ff1916838001178555620003ff565b82800160010185558215620003ff579182015b82811115620003ff578251825591602001919060010190620003e2565b506200040d92915062000411565b5090565b5b808211156200040d576000815560010162000412565b80516001600160a01b03811681146200044057600080fd5b919050565b6000806000606084860312156200045a578283fd5b620004658462000428565b9250620004756020850162000428565b9150620004856040850162000428565b90509250925092565b600181815b80851115620004cf578160001904821115620004b357620004b3620005f2565b80851615620004c157918102915b93841c939080029062000493565b509250929050565b6000620002878383600082620004f0575060016200028a565b81620004ff575060006200028a565b8160018114620005185760028114620005235762000543565b60019150506200028a565b60ff841115620005375762000537620005f2565b50506001821b6200028a565b5060208310610133831016604e8410600b841016171562000568575081810a6200028a565b6200057483836200048e565b80600019048211156200058b576200058b620005f2565b029392505050565b6000816000190483118215151615620005b057620005b0620005f2565b500290565b600181811c90821680620005ca57607f821691505b60208210811415620005ec57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60805160601c6120ff6200062e6000396000818161045d0152610ded01526120ff6000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c806391d1485411610125578063ca15c873116100ad578063d547741f1161007c578063d547741f146104b9578063d8501f4f146104cc578063dd62ed3e146104d5578063e03d852a1461050e578063e63ab1e91461051757600080fd5b8063ca15c87314610445578063ca4b208b14610458578063d3fc98641461047f578063d53913931461049257600080fd5b8063a217fddf116100f4578063a217fddf146103f1578063a457c2d7146103f9578063a9059cbb1461040c578063ada4ef301461041f578063c3ece3e51461043257600080fd5b806391d14854146103b657806395d89b41146103c95780639d456b62146103d1578063a001ecdd146103e457600080fd5b8063387f55e1116101a85780634f863ea1116101775780634f863ea1146103545780635c975abb1461036757806370a08231146103725780638456cb591461039b5780639010d07c146103a357600080fd5b8063387f55e1146102f657806339509351146103095780633f4ba83a1461031c5780634bde38c81461032457600080fd5b806323b872dd116101ef57806323b872dd14610283578063248a9ca3146102965780632f2ff15d146102b9578063313ce567146102ce57806336568abe146102e357600080fd5b806301ffc9a71461022157806306fdde0314610249578063095ea7b31461025e57806318160ddd14610271575b600080fd5b61023461022f366004611e10565b61053e565b60405190151581526020015b60405180910390f35b610251610569565b6040516102409190611f2d565b61023461026c366004611d37565b6105fb565b6004545b604051908152602001610240565b610234610291366004611cfc565b610611565b6102756102a4366004611db5565b60009081526020819052604090206001015490565b6102cc6102c7366004611dcd565b6106c7565b005b60095b60405160ff9091168152602001610240565b6102cc6102f1366004611dcd565b6106ee565b6102cc610304366004611db5565b610710565b610234610317366004611d37565b61073c565b6102cc610773565b60075461033c9061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610240565b6102cc610362366004611e7b565b610819565b60075460ff16610234565b610275610380366004611cb0565b6001600160a01b031660009081526002602052604090205490565b6102cc6108a3565b61033c6103b1366004611def565b610947565b6102346103c4366004611dcd565b610966565b61025161098f565b6102cc6103df366004611e38565b61099e565b6009546102d19060ff1681565b610275600081565b610234610407366004611d37565b610af0565b61023461041a366004611d37565b610b8b565b6102cc61042d366004611cb0565b610b98565b6102cc610440366004611db5565b610c3d565b610275610453366004611db5565b610c69565b61033c7f000000000000000000000000000000000000000000000000000000000000000081565b6102cc61048d366004611d60565b610c80565b6102757f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102cc6104c7366004611dcd565b610e75565b61027560085481565b6102756104e3366004611cca565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610275600a5481565b6102757f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60006001600160e01b03198216635a05180f60e01b1480610563575061056382610ea2565b92915050565b60606005805461057890612062565b80601f01602080910402602001604051908101604052809291908181526020018280546105a490612062565b80156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b5050505050905090565b6000610608338484610ed7565b50600192915050565b600061061e848484610ffc565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156106a85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6106bc85336106b78685612004565b610ed7565b506001949350505050565b6106d182826111df565b60008281526001602052604090206106e99082610e8d565b505050565b6106f88282611205565b60008281526001602052604090206106e9908261127f565b61071b600033610966565b6107375760405162461bcd60e51b815260040161069f90611f60565b600a55565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916106089185906106b7908690611fad565b61079d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610966565b61080f5760405162461bcd60e51b815260206004820152603960248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20756e706175736500000000000000606482015260840161069f565b610817611294565b565b610824600033610966565b6108405760405162461bcd60e51b815260040161069f90611f60565b60328160ff16111561088d5760405162461bcd60e51b8152602060048201526016602482015275466565732063616e6e6f74207375727061737320352560501b604482015260640161069f565b6009805460ff191660ff92909216919091179055565b6108cd7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610966565b61093f5760405162461bcd60e51b815260206004820152603760248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f207061757365000000000000000000606482015260840161069f565b610817611327565b600082815260016020526040812061095f90836113a2565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60606006805461057890612062565b60075460ff16156109e45760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161069f565b600a54811015610a365760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964206e756d626572206f6620746f6b656e730000000000000000604482015260640161069f565b8151602a14610a805760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964207769746e6574206164647265737360501b604482015260640161069f565b610a8a33826113ae565b8060086000828254610a9c9190611fad565b9091555050604051610aaf908390611e9c565b6040519081900381208282529033907ff6c184dc66b66fdd652f70b2bd5fc222712bd2978e2d910ee14b62cf4d04cf37906020015b60405180910390a35050565b3360009081526003602090815260408083206001600160a01b038616845290915281205482811015610b725760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161069f565b610b8133856106b78685612004565b5060019392505050565b6000610608338484610ffc565b610ba3600033610966565b610bbf5760405162461bcd60e51b815260040161069f90611f60565b6001600160a01b038116610c155760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f742073657420746865207a65726f20616464726573730000000000604482015260640161069f565b600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610c48600033610966565b610c645760405162461bcd60e51b815260040161069f90611f60565b600b55565b600081815260016020526040812061056390611509565b81600b541015610cd25760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420726f756e64206e6565647320746f2062652072656e657765640000604482015260640161069f565b610cfc7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610966565b610d485760405162461bcd60e51b815260206004820152601d60248201527f4d7573742068617665206d696e74657220726f6c6520746f206d696e74000000604482015260640161069f565b8051602a14610d925760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964207769746e6574206164647265737360501b604482015260640161069f565b81600b6000828254610da49190612004565b90915550600090508080610db785611513565b925092509250610dc78684611569565b8115610e1257600754610de89061010090046001600160a01b031683611569565b610e127f000000000000000000000000000000000000000000000000000000000000000082611569565b83604051610e209190611e9c565b6040805191829003822087835260208301869052916001600160a01b0389169133917fad2943b15836caf43698401a62af4738985fb33dd979844d99d37f5293f037d3910160405180910390a4505050505050565b6106f8828261164d565b610e898282611673565b5050565b600061095f836001600160a01b0384166116f7565b60006001600160e01b03198216637965db0b60e01b148061056357506301ffc9a760e01b6001600160e01b0319831614610563565b6001600160a01b038316610f395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161069f565b6001600160a01b038216610f9a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161069f565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166110605760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161069f565b6001600160a01b0382166110c25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161069f565b6110cd838383611746565b6001600160a01b038316600090815260026020526040902054818110156111455760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161069f565b61114f8282612004565b6001600160a01b038086166000908152600260205260408082209390935590851681529081208054849290611185908490611fad565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111d191815260200190565b60405180910390a350505050565b6000828152602081905260409020600101546111fb8133611751565b6106e98383611673565b6001600160a01b03811633146112755760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161069f565b610e8982826117b5565b600061095f836001600160a01b03841661181a565b60075460ff166112dd5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161069f565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60075460ff161561136d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161069f565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861130a3390565b600061095f8383611931565b6001600160a01b03821661140e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161069f565b61141a82600083611746565b6001600160a01b0382166000908152600260205260409020548181101561148e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161069f565b6114988282612004565b6001600160a01b038416600090815260026020526040812091909155600480548492906114c6908490612004565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610fef565b6000610563825490565b6009546000908190819081906103e8906115309060ff1687611fe5565b61153a9190611fc5565b9050611547600a82611fc5565b91506115538282612004565b925061155f8186612004565b9350509193909250565b6001600160a01b0382166115bf5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161069f565b6115cb60008383611746565b80600460008282546115dd9190611fad565b90915550506001600160a01b0382166000908152600260205260408120805483929061160a908490611fad565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610ae4565b6000828152602081905260409020600101546116698133611751565b6106e983836117b5565b61167d8282610966565b610e89576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556116b33390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461173e57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610563565b506000610563565b6106e98383836119c5565b61175b8282610966565b610e8957611773816001600160a01b03166014611a2b565b61177e836020611a2b565b60405160200161178f929190611eb8565b60408051601f198184030181529082905262461bcd60e51b825261069f91600401611f2d565b6117bf8282610966565b15610e89576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000818152600183016020526040812054801561192757600061183e600183612004565b855490915060009061185290600190612004565b9050600086600001828154811061187957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106118aa57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600189019091526040902084905586548790806118eb57634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610563565b6000915050610563565b8154600090821061198f5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161069f565b8260000182815481106119b257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60075460ff16156106e95760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b606482015260840161069f565b60606000611a3a836002611fe5565b611a45906002611fad565b67ffffffffffffffff811115611a6b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a95576020820181803683370190505b509050600360fc1b81600081518110611abe57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611afb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611b1f846002611fe5565b611b2a906001611fad565b90505b6001811115611bbe576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611b6c57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611b9057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611bb78161204b565b9050611b2d565b50831561095f5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161069f565b80356001600160a01b0381168114611c2457600080fd5b919050565b600082601f830112611c39578081fd5b813567ffffffffffffffff80821115611c5457611c546120b3565b604051601f8301601f19908116603f01168101908282118183101715611c7c57611c7c6120b3565b81604052838152866020858801011115611c94578485fd5b8360208701602083013792830160200193909352509392505050565b600060208284031215611cc1578081fd5b61095f82611c0d565b60008060408385031215611cdc578081fd5b611ce583611c0d565b9150611cf360208401611c0d565b90509250929050565b600080600060608486031215611d10578081fd5b611d1984611c0d565b9250611d2760208501611c0d565b9150604084013590509250925092565b60008060408385031215611d49578182fd5b611d5283611c0d565b946020939093013593505050565b600080600060608486031215611d74578283fd5b611d7d84611c0d565b925060208401359150604084013567ffffffffffffffff811115611d9f578182fd5b611dab86828701611c29565b9150509250925092565b600060208284031215611dc6578081fd5b5035919050565b60008060408385031215611ddf578182fd5b82359150611cf360208401611c0d565b60008060408385031215611e01578182fd5b50508035926020909101359150565b600060208284031215611e21578081fd5b81356001600160e01b03198116811461095f578182fd5b60008060408385031215611e4a578182fd5b823567ffffffffffffffff811115611e60578283fd5b611e6c85828601611c29565b95602094909401359450505050565b600060208284031215611e8c578081fd5b813560ff8116811461095f578182fd5b60008251611eae81846020870161201b565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611ef081601785016020880161201b565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611f2181602884016020880161201b565b01602801949350505050565b6020815260008251806020840152611f4c81604085016020870161201b565b601f01601f19169190910160400192915050565b6020808252602d908201527f45524332305072657365744d696e7465725061757365723a206d75737420686160408201526c76652061646d696e20726f6c6560981b606082015260800190565b60008219821115611fc057611fc061209d565b500190565b600082611fe057634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611fff57611fff61209d565b500290565b6000828210156120165761201661209d565b500390565b60005b8381101561203657818101518382015260200161201e565b83811115612045576000848401525b50505050565b60008161205a5761205a61209d565b506000190190565b600181811c9082168061207657607f821691505b6020821081141561209757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122009acd023215bb19ec4aa0c76e084254a0f1980469d7bf4e0eb49a3d54065972d64736f6c634300080400330000000000000000000000005bed4eecc421bf8d0ba186a42c16026ffe949d490000000000000000000000005bed4eecc421bf8d0ba186a42c16026ffe949d490000000000000000000000007243d36d2f199244c6b8fd7213e6d785db1471b2

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021c5760003560e01c806391d1485411610125578063ca15c873116100ad578063d547741f1161007c578063d547741f146104b9578063d8501f4f146104cc578063dd62ed3e146104d5578063e03d852a1461050e578063e63ab1e91461051757600080fd5b8063ca15c87314610445578063ca4b208b14610458578063d3fc98641461047f578063d53913931461049257600080fd5b8063a217fddf116100f4578063a217fddf146103f1578063a457c2d7146103f9578063a9059cbb1461040c578063ada4ef301461041f578063c3ece3e51461043257600080fd5b806391d14854146103b657806395d89b41146103c95780639d456b62146103d1578063a001ecdd146103e457600080fd5b8063387f55e1116101a85780634f863ea1116101775780634f863ea1146103545780635c975abb1461036757806370a08231146103725780638456cb591461039b5780639010d07c146103a357600080fd5b8063387f55e1146102f657806339509351146103095780633f4ba83a1461031c5780634bde38c81461032457600080fd5b806323b872dd116101ef57806323b872dd14610283578063248a9ca3146102965780632f2ff15d146102b9578063313ce567146102ce57806336568abe146102e357600080fd5b806301ffc9a71461022157806306fdde0314610249578063095ea7b31461025e57806318160ddd14610271575b600080fd5b61023461022f366004611e10565b61053e565b60405190151581526020015b60405180910390f35b610251610569565b6040516102409190611f2d565b61023461026c366004611d37565b6105fb565b6004545b604051908152602001610240565b610234610291366004611cfc565b610611565b6102756102a4366004611db5565b60009081526020819052604090206001015490565b6102cc6102c7366004611dcd565b6106c7565b005b60095b60405160ff9091168152602001610240565b6102cc6102f1366004611dcd565b6106ee565b6102cc610304366004611db5565b610710565b610234610317366004611d37565b61073c565b6102cc610773565b60075461033c9061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610240565b6102cc610362366004611e7b565b610819565b60075460ff16610234565b610275610380366004611cb0565b6001600160a01b031660009081526002602052604090205490565b6102cc6108a3565b61033c6103b1366004611def565b610947565b6102346103c4366004611dcd565b610966565b61025161098f565b6102cc6103df366004611e38565b61099e565b6009546102d19060ff1681565b610275600081565b610234610407366004611d37565b610af0565b61023461041a366004611d37565b610b8b565b6102cc61042d366004611cb0565b610b98565b6102cc610440366004611db5565b610c3d565b610275610453366004611db5565b610c69565b61033c7f0000000000000000000000007243d36d2f199244c6b8fd7213e6d785db1471b281565b6102cc61048d366004611d60565b610c80565b6102757f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102cc6104c7366004611dcd565b610e75565b61027560085481565b6102756104e3366004611cca565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610275600a5481565b6102757f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60006001600160e01b03198216635a05180f60e01b1480610563575061056382610ea2565b92915050565b60606005805461057890612062565b80601f01602080910402602001604051908101604052809291908181526020018280546105a490612062565b80156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b5050505050905090565b6000610608338484610ed7565b50600192915050565b600061061e848484610ffc565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156106a85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6106bc85336106b78685612004565b610ed7565b506001949350505050565b6106d182826111df565b60008281526001602052604090206106e99082610e8d565b505050565b6106f88282611205565b60008281526001602052604090206106e9908261127f565b61071b600033610966565b6107375760405162461bcd60e51b815260040161069f90611f60565b600a55565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916106089185906106b7908690611fad565b61079d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610966565b61080f5760405162461bcd60e51b815260206004820152603960248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20756e706175736500000000000000606482015260840161069f565b610817611294565b565b610824600033610966565b6108405760405162461bcd60e51b815260040161069f90611f60565b60328160ff16111561088d5760405162461bcd60e51b8152602060048201526016602482015275466565732063616e6e6f74207375727061737320352560501b604482015260640161069f565b6009805460ff191660ff92909216919091179055565b6108cd7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610966565b61093f5760405162461bcd60e51b815260206004820152603760248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f207061757365000000000000000000606482015260840161069f565b610817611327565b600082815260016020526040812061095f90836113a2565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60606006805461057890612062565b60075460ff16156109e45760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161069f565b600a54811015610a365760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964206e756d626572206f6620746f6b656e730000000000000000604482015260640161069f565b8151602a14610a805760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964207769746e6574206164647265737360501b604482015260640161069f565b610a8a33826113ae565b8060086000828254610a9c9190611fad565b9091555050604051610aaf908390611e9c565b6040519081900381208282529033907ff6c184dc66b66fdd652f70b2bd5fc222712bd2978e2d910ee14b62cf4d04cf37906020015b60405180910390a35050565b3360009081526003602090815260408083206001600160a01b038616845290915281205482811015610b725760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161069f565b610b8133856106b78685612004565b5060019392505050565b6000610608338484610ffc565b610ba3600033610966565b610bbf5760405162461bcd60e51b815260040161069f90611f60565b6001600160a01b038116610c155760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f742073657420746865207a65726f20616464726573730000000000604482015260640161069f565b600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610c48600033610966565b610c645760405162461bcd60e51b815260040161069f90611f60565b600b55565b600081815260016020526040812061056390611509565b81600b541015610cd25760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420726f756e64206e6565647320746f2062652072656e657765640000604482015260640161069f565b610cfc7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610966565b610d485760405162461bcd60e51b815260206004820152601d60248201527f4d7573742068617665206d696e74657220726f6c6520746f206d696e74000000604482015260640161069f565b8051602a14610d925760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964207769746e6574206164647265737360501b604482015260640161069f565b81600b6000828254610da49190612004565b90915550600090508080610db785611513565b925092509250610dc78684611569565b8115610e1257600754610de89061010090046001600160a01b031683611569565b610e127f0000000000000000000000007243d36d2f199244c6b8fd7213e6d785db1471b282611569565b83604051610e209190611e9c565b6040805191829003822087835260208301869052916001600160a01b0389169133917fad2943b15836caf43698401a62af4738985fb33dd979844d99d37f5293f037d3910160405180910390a4505050505050565b6106f8828261164d565b610e898282611673565b5050565b600061095f836001600160a01b0384166116f7565b60006001600160e01b03198216637965db0b60e01b148061056357506301ffc9a760e01b6001600160e01b0319831614610563565b6001600160a01b038316610f395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161069f565b6001600160a01b038216610f9a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161069f565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166110605760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161069f565b6001600160a01b0382166110c25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161069f565b6110cd838383611746565b6001600160a01b038316600090815260026020526040902054818110156111455760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161069f565b61114f8282612004565b6001600160a01b038086166000908152600260205260408082209390935590851681529081208054849290611185908490611fad565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111d191815260200190565b60405180910390a350505050565b6000828152602081905260409020600101546111fb8133611751565b6106e98383611673565b6001600160a01b03811633146112755760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161069f565b610e8982826117b5565b600061095f836001600160a01b03841661181a565b60075460ff166112dd5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161069f565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60075460ff161561136d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161069f565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861130a3390565b600061095f8383611931565b6001600160a01b03821661140e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161069f565b61141a82600083611746565b6001600160a01b0382166000908152600260205260409020548181101561148e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161069f565b6114988282612004565b6001600160a01b038416600090815260026020526040812091909155600480548492906114c6908490612004565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610fef565b6000610563825490565b6009546000908190819081906103e8906115309060ff1687611fe5565b61153a9190611fc5565b9050611547600a82611fc5565b91506115538282612004565b925061155f8186612004565b9350509193909250565b6001600160a01b0382166115bf5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161069f565b6115cb60008383611746565b80600460008282546115dd9190611fad565b90915550506001600160a01b0382166000908152600260205260408120805483929061160a908490611fad565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610ae4565b6000828152602081905260409020600101546116698133611751565b6106e983836117b5565b61167d8282610966565b610e89576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556116b33390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461173e57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610563565b506000610563565b6106e98383836119c5565b61175b8282610966565b610e8957611773816001600160a01b03166014611a2b565b61177e836020611a2b565b60405160200161178f929190611eb8565b60408051601f198184030181529082905262461bcd60e51b825261069f91600401611f2d565b6117bf8282610966565b15610e89576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000818152600183016020526040812054801561192757600061183e600183612004565b855490915060009061185290600190612004565b9050600086600001828154811061187957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106118aa57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600189019091526040902084905586548790806118eb57634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610563565b6000915050610563565b8154600090821061198f5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161069f565b8260000182815481106119b257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60075460ff16156106e95760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b606482015260840161069f565b60606000611a3a836002611fe5565b611a45906002611fad565b67ffffffffffffffff811115611a6b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a95576020820181803683370190505b509050600360fc1b81600081518110611abe57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611afb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611b1f846002611fe5565b611b2a906001611fad565b90505b6001811115611bbe576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611b6c57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611b9057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611bb78161204b565b9050611b2d565b50831561095f5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161069f565b80356001600160a01b0381168114611c2457600080fd5b919050565b600082601f830112611c39578081fd5b813567ffffffffffffffff80821115611c5457611c546120b3565b604051601f8301601f19908116603f01168101908282118183101715611c7c57611c7c6120b3565b81604052838152866020858801011115611c94578485fd5b8360208701602083013792830160200193909352509392505050565b600060208284031215611cc1578081fd5b61095f82611c0d565b60008060408385031215611cdc578081fd5b611ce583611c0d565b9150611cf360208401611c0d565b90509250929050565b600080600060608486031215611d10578081fd5b611d1984611c0d565b9250611d2760208501611c0d565b9150604084013590509250925092565b60008060408385031215611d49578182fd5b611d5283611c0d565b946020939093013593505050565b600080600060608486031215611d74578283fd5b611d7d84611c0d565b925060208401359150604084013567ffffffffffffffff811115611d9f578182fd5b611dab86828701611c29565b9150509250925092565b600060208284031215611dc6578081fd5b5035919050565b60008060408385031215611ddf578182fd5b82359150611cf360208401611c0d565b60008060408385031215611e01578182fd5b50508035926020909101359150565b600060208284031215611e21578081fd5b81356001600160e01b03198116811461095f578182fd5b60008060408385031215611e4a578182fd5b823567ffffffffffffffff811115611e60578283fd5b611e6c85828601611c29565b95602094909401359450505050565b600060208284031215611e8c578081fd5b813560ff8116811461095f578182fd5b60008251611eae81846020870161201b565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611ef081601785016020880161201b565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611f2181602884016020880161201b565b01602801949350505050565b6020815260008251806020840152611f4c81604085016020870161201b565b601f01601f19169190910160400192915050565b6020808252602d908201527f45524332305072657365744d696e7465725061757365723a206d75737420686160408201526c76652061646d696e20726f6c6560981b606082015260800190565b60008219821115611fc057611fc061209d565b500190565b600082611fe057634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611fff57611fff61209d565b500290565b6000828210156120165761201661209d565b500390565b60005b8381101561203657818101518382015260200161201e565b83811115612045576000848401525b50505050565b60008161205a5761205a61209d565b506000190190565b600181811c9082168061207657607f821691505b6020821081141561209757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122009acd023215bb19ec4aa0c76e084254a0f1980469d7bf4e0eb49a3d54065972d64736f6c63430008040033

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

0000000000000000000000005bed4eecc421bf8d0ba186a42c16026ffe949d490000000000000000000000005bed4eecc421bf8d0ba186a42c16026ffe949d490000000000000000000000007243d36d2f199244c6b8fd7213e6d785db1471b2

-----Decoded View---------------
Arg [0] : _multisig (address): 0x5beD4eEcc421bf8d0BA186a42c16026fFe949d49
Arg [1] : _platform (address): 0x5beD4eEcc421bf8d0BA186a42c16026fFe949d49
Arg [2] : _developer (address): 0x7243d36d2F199244c6B8FD7213e6d785DB1471b2

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000005bed4eecc421bf8d0ba186a42c16026ffe949d49
Arg [1] : 0000000000000000000000005bed4eecc421bf8d0ba186a42c16026ffe949d49
Arg [2] : 0000000000000000000000007243d36d2f199244c6b8fd7213e6d785db1471b2


Deployed Bytecode Sourcemap

2411:3295:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;798:224:1;;;;;;:::i;:::-;;:::i;:::-;;;5900:14:13;;5893:22;5875:41;;5863:2;5848:18;798:224:1;;;;;;;;2050:98:4;;;:::i;:::-;;;;;;;:::i;4147:166::-;;;;;;:::i;:::-;;:::i;3138:106::-;3225:12;;3138:106;;;6073:25:13;;;6061:2;6046:18;3138:106:4;6028:76:13;4780:414:4;;;;;;:::i;:::-;;:::i;5307:121:0:-;;;;;;:::i;:::-;5373:7;5399:12;;;;;;;;;;:22;;;;5307:121;2137:162:1;;;;;;:::i;:::-;;:::i;:::-;;5213:97:12;2663:1;5213:97;;;16786:4:13;16774:17;;;16756:36;;16744:2;16729:18;5213:97:12;16711:87:13;2644:171:1;;;;;;:::i;:::-;;:::i;4599:107:12:-;;;;;;:::i;:::-;;:::i;5589:212:4:-;;;;;;:::i;:::-;;:::i;1894:175:12:-;;;:::i;2458:23::-;;;;;;;;-1:-1:-1;;;;;2458:23:12;;;;;;-1:-1:-1;;;;;5691:32:13;;;5673:51;;5661:2;5646:18;2458:23:12;5628:102:13;4716:158:12;;;;;;:::i;:::-;;:::i;1033:84:10:-;1103:7;;;;1033:84;;3302:125:4;;;;;;:::i;:::-;-1:-1:-1;;;;;3402:18:4;3376:7;3402:18;;;:9;:18;;;;;;;3302:125;1518:169:12;;;:::i;1607:143:1:-;;;;;;:::i;:::-;;:::i;4333:137:0:-;;;;;;:::i;:::-;;:::i;2261:102:4:-;;;:::i;3107:363:12:-;;;;;;:::i;:::-;;:::i;2675:31::-;;;;;;;;;2353:49:0;;2398:4;2353:49;;6288:371:4;;;;;;:::i;:::-;;:::i;3630:172::-;;;;;;:::i;:::-;;:::i;4884:184:12:-;;;;;;:::i;:::-;;:::i;5078:125::-;;;;;;:::i;:::-;;:::i;1918:132:1:-;;;;;;:::i;:::-;;:::i;2487:34:12:-;;;;;3479:783;;;;;;:::i;:::-;;:::i;791:62::-;;829:24;791:62;;2387:167:1;;;;;;:::i;:::-;;:::i;2527:27:12:-;;;;;;3860:149:4;;;;;;:::i;:::-;-1:-1:-1;;;;;3975:18:4;;;3949:7;3975:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3860:149;2733:62:12;;;;;;859;;897:24;859:62;;798:224:1;883:4;-1:-1:-1;;;;;;906:57:1;;-1:-1:-1;;;906:57:1;;:109;;;979:36;1003:11;979:23;:36::i;:::-;899:116;798:224;-1:-1:-1;;798:224:1:o;2050:98:4:-;2104:13;2136:5;2129:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2050:98;:::o;4147:166::-;4230:4;4246:39;665:10:2;4269:7:4;4278:6;4246:8;:39::i;:::-;-1:-1:-1;4302:4:4;4147:166;;;;:::o;4780:414::-;4886:4;4902:36;4912:6;4920:9;4931:6;4902:9;:36::i;:::-;-1:-1:-1;;;;;4976:19:4;;4949:24;4976:19;;;:11;:19;;;;;;;;665:10:2;4976:33:4;;;;;;;;5027:26;;;;5019:79;;;;-1:-1:-1;;;5019:79:4;;11977:2:13;5019:79:4;;;11959:21:13;12016:2;11996:18;;;11989:30;12055:34;12035:18;;;12028:62;-1:-1:-1;;;12106:18:13;;;12099:38;12154:19;;5019:79:4;;;;;;;;;5108:57;5117:6;665:10:2;5139:25:4;5158:6;5139:16;:25;:::i;:::-;5108:8;:57::i;:::-;-1:-1:-1;5183:4:4;;4780:414;-1:-1:-1;;;;4780:414:4:o;2137:162:1:-;2221:30;2237:4;2243:7;2221:15;:30::i;:::-;2261:18;;;;:12;:18;;;;;:31;;2284:7;2261:22;:31::i;:::-;;2137:162;;:::o;2644:171::-;2731:33;2750:4;2756:7;2731:18;:33::i;:::-;2774:18;;;;:12;:18;;;;;:34;;2800:7;2774:25;:34::i;4599:107:12:-;2298:41;2398:4:0;665:10:2;4333:137:0;:::i;2298:41:12:-;2290:99;;;;-1:-1:-1;;;2290:99:12;;;;;;;:::i;:::-;4673:11:::1;:26:::0;4599:107::o;5589:212:4:-;665:10:2;5677:4:4;5725:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5725:34:4;;;;;;;;;;5677:4;;5693:80;;5716:7;;5725:47;;5762:10;;5725:47;:::i;1894:175:12:-;1946:34;897:24;665:10:2;4333:137:0;:::i;1946:34:12:-;1938:104;;;;-1:-1:-1;;;1938:104:12;;8619:2:13;1938:104:12;;;8601:21:13;8658:2;8638:18;;;8631:30;8697:34;8677:18;;;8670:62;8768:27;8748:18;;;8741:55;8813:19;;1938:104:12;8591:247:13;1938:104:12;2052:10;:8;:10::i;:::-;1894:175::o;4716:158::-;2298:41;2398:4:0;665:10:2;4333:137:0;:::i;2298:41:12:-;2290:99;;;;-1:-1:-1;;;2290:99:12;;;;;;;:::i;:::-;4803:2:::1;4790:9;:15;;;;4782:50;;;::::0;-1:-1:-1;;;4782:50:12;;9448:2:13;4782:50:12::1;::::0;::::1;9430:21:13::0;9487:2;9467:18;;;9460:30;-1:-1:-1;;;9506:18:13;;;9499:52;9568:18;;4782:50:12::1;9420:172:13::0;4782:50:12::1;4842:13;:25:::0;;-1:-1:-1;;4842:25:12::1;;::::0;;;::::1;::::0;;;::::1;::::0;;4716:158::o;1518:169::-;1568:34;897:24;665:10:2;4333:137:0;:::i;1568:34:12:-;1560:102;;;;-1:-1:-1;;;1560:102:12;;13950:2:13;1560:102:12;;;13932:21:13;13989:2;13969:18;;;13962:30;14028:34;14008:18;;;14001:62;14099:25;14079:18;;;14072:53;14142:19;;1560:102:12;13922:245:13;1560:102:12;1672:8;:6;:8::i;1607:143:1:-;1689:7;1715:18;;;:12;:18;;;;;:28;;1737:5;1715:21;:28::i;:::-;1708:35;1607:143;-1:-1:-1;;;1607:143:1:o;4333:137:0:-;4411:4;4434:12;;;;;;;;;;;-1:-1:-1;;;;;4434:29:0;;;;;;;;;;;;;;;4333:137::o;2261:102:4:-;2317:13;2349:7;2342:14;;;;;:::i;3107:363:12:-;1103:7:10;;;;1346:9;1338:38;;;;-1:-1:-1;;;1338:38:10;;10915:2:13;1338:38:10;;;10897:21:13;10954:2;10934:18;;;10927:30;-1:-1:-1;;;10973:18:13;;;10966:46;11029:18;;1338:38:10;10887:166:13;1338:38:10;3216:11:12::1;;3206:6;:21;;3198:58;;;::::0;-1:-1:-1;;;3198:58:12;;10562:2:13;3198:58:12::1;::::0;::::1;10544:21:13::0;10601:2;10581:18;;;10574:30;10640:26;10620:18;;;10613:54;10684:18;;3198:58:12::1;10534:174:13::0;3198:58:12::1;3280:12;3274:26;3304:2;3274:32;3266:67;;;::::0;-1:-1:-1;;;3266:67:12;;12788:2:13;3266:67:12::1;::::0;::::1;12770:21:13::0;12827:2;12807:18;;;12800:30;-1:-1:-1;;;12846:18:13;;;12839:52;12908:18;;3266:67:12::1;12760:172:13::0;3266:67:12::1;3344:25;3350:10;3362:6;3344:5;:25::i;:::-;3396:6;3380:12;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;3426:38:12::1;::::0;::::1;::::0;3443:12;;3426:38:::1;:::i;:::-;;::::0;;;;::::1;::::0;;6073:25:13;;;3426:38:12;3431:10:::1;::::0;3426:38:::1;::::0;6061:2:13;6046:18;3426:38:12::1;;;;;;;;3107:363:::0;;:::o;6288:371:4:-;665:10:2;6381:4:4;6424:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6424:34:4;;;;;;;;;;6476:35;;;;6468:85;;;;-1:-1:-1;;;6468:85:4;;14374:2:13;6468:85:4;;;14356:21:13;14413:2;14393:18;;;14386:30;14452:34;14432:18;;;14425:62;-1:-1:-1;;;14503:18:13;;;14496:35;14548:19;;6468:85:4;14346:227:13;6468:85:4;6563:67;665:10:2;6586:7:4;6595:34;6614:15;6595:16;:34;:::i;6563:67::-;-1:-1:-1;6648:4:4;;6288:371;-1:-1:-1;;;6288:371:4:o;3630:172::-;3716:4;3732:42;665:10:2;3756:9:4;3767:6;3732:9;:42::i;4884:184:12:-;2298:41;2398:4:0;665:10:2;4333:137:0;:::i;2298:41:12:-;2290:99;;;;-1:-1:-1;;;2290:99:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;4972:25:12;::::1;4964:65;;;::::0;-1:-1:-1;;;4964:65:12;;10206:2:13;4964:65:12::1;::::0;::::1;10188:21:13::0;10245:2;10225:18;;;10218:30;10284:29;10264:18;;;10257:57;10331:18;;4964:65:12::1;10178:177:13::0;4964:65:12::1;5039:8;:22:::0;;-1:-1:-1;;;;;5039:22:12;;::::1;;;-1:-1:-1::0;;;;;;5039:22:12;;::::1;::::0;;;::::1;::::0;;4884:184::o;5078:125::-;2298:41;2398:4:0;665:10:2;4333:137:0;:::i;2298:41:12:-;2290:99;;;;-1:-1:-1;;;2290:99:12;;;;;;;:::i;:::-;5157:20:::1;:39:::0;5078:125::o;1918:132:1:-;1990:7;2016:18;;;:12;:18;;;;;:27;;:25;:27::i;3479:783:12:-;3625:6;3601:20;;:30;;3593:73;;;;-1:-1:-1;;;3593:73:12;;11618:2:13;3593:73:12;;;11600:21:13;11657:2;11637:18;;;11630:30;11696:32;11676:18;;;11669:60;11746:18;;3593:73:12;11590:180:13;3593:73:12;3684:34;829:24;665:10:2;4333:137:0;:::i;3684:34:12:-;3676:76;;;;-1:-1:-1;;;3676:76:12;;11260:2:13;3676:76:12;;;11242:21:13;11299:2;11279:18;;;11272:30;11338:31;11318:18;;;11311:59;11387:18;;3676:76:12;11232:179:13;3676:76:12;3776:25;3770:39;3813:2;3770:45;3762:80;;;;-1:-1:-1;;;3762:80:12;;12788:2:13;3762:80:12;;;12770:21:13;12827:2;12807:18;;;12800:30;-1:-1:-1;;;12846:18:13;;;12839:52;12908:18;;3762:80:12;12760:172:13;3762:80:12;3877:6;3853:20;;:30;;;;;;;:::i;:::-;;;;-1:-1:-1;3895:18:12;;-1:-1:-1;3895:18:12;;3962:15;3970:6;3962:7;:15::i;:::-;3894:83;;;;;;3988:33;3994:14;4010:10;3988:5;:33::i;:::-;4036:16;;4032:121;;4074:8;;4068:29;;4074:8;;;-1:-1:-1;;;;;4074:8:12;4084:12;4068:5;:29::i;:::-;4111:31;4117:9;4128:13;4111:5;:31::i;:::-;4229:25;4176:79;;;;;;:::i;:::-;;;;;;;;;;16535:25:13;;;16591:2;16576:18;;16569:34;;;4176:79:12;-1:-1:-1;;;;;4176:79:12;;;4181:10;;4176:79;;16508:18:13;4176:79:12;;;;;;;3479:783;;;;;;:::o;2387:167:1:-;2472:31;2489:4;2495:7;2472:16;:31::i;7474:110:0:-;7552:25;7563:4;7569:7;7552:10;:25::i;:::-;7474:110;;:::o;6430:150:6:-;6500:4;6523:50;6528:3;-1:-1:-1;;;;;6548:23:6;;6523:4;:50::i;4032:214:0:-;4117:4;-1:-1:-1;;;;;;4140:47:0;;-1:-1:-1;;;4140:47:0;;:99;;-1:-1:-1;;;;;;;;;;869:40:3;;;4203:36:0;761:155:3;9552:340:4;-1:-1:-1;;;;;9653:19:4;;9645:68;;;;-1:-1:-1;;;9645:68:4;;13545:2:13;9645:68:4;;;13527:21:13;13584:2;13564:18;;;13557:30;13623:34;13603:18;;;13596:62;-1:-1:-1;;;13674:18:13;;;13667:34;13718:19;;9645:68:4;13517:226:13;9645:68:4;-1:-1:-1;;;;;9731:21:4;;9723:68;;;;-1:-1:-1;;;9723:68:4;;9045:2:13;9723:68:4;;;9027:21:13;9084:2;9064:18;;;9057:30;9123:34;9103:18;;;9096:62;-1:-1:-1;;;9174:18:13;;;9167:32;9216:19;;9723:68:4;9017:224:13;9723:68:4;-1:-1:-1;;;;;9802:18:4;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;9853:32;;6073:25:13;;;9853:32:4;;6046:18:13;9853:32:4;;;;;;;;9552:340;;;:::o;7133:592::-;-1:-1:-1;;;;;7238:20:4;;7230:70;;;;-1:-1:-1;;;7230:70:4;;13139:2:13;7230:70:4;;;13121:21:13;13178:2;13158:18;;;13151:30;13217:34;13197:18;;;13190:62;-1:-1:-1;;;13268:18:13;;;13261:35;13313:19;;7230:70:4;13111:227:13;7230:70:4;-1:-1:-1;;;;;7318:23:4;;7310:71;;;;-1:-1:-1;;;7310:71:4;;7463:2:13;7310:71:4;;;7445:21:13;7502:2;7482:18;;;7475:30;7541:34;7521:18;;;7514:62;-1:-1:-1;;;7592:18:13;;;7585:33;7635:19;;7310:71:4;7435:225:13;7310:71:4;7392:47;7413:6;7421:9;7432:6;7392:20;:47::i;:::-;-1:-1:-1;;;;;7474:17:4;;7450:21;7474:17;;;:9;:17;;;;;;7509:23;;;;7501:74;;;;-1:-1:-1;;;7501:74:4;;9799:2:13;7501:74:4;;;9781:21:13;9838:2;9818:18;;;9811:30;9877:34;9857:18;;;9850:62;-1:-1:-1;;;9928:18:13;;;9921:36;9974:19;;7501:74:4;9771:228:13;7501:74:4;7605:22;7621:6;7605:13;:22;:::i;:::-;-1:-1:-1;;;;;7585:17:4;;;;;;;:9;:17;;;;;;:42;;;;7637:20;;;;;;;;:30;;7661:6;;7585:17;7637:30;;7661:6;;7637:30;:::i;:::-;;;;;;;;7700:9;-1:-1:-1;;;;;7683:35:4;7692:6;-1:-1:-1;;;;;7683:35:4;;7711:6;7683:35;;;;6073:25:13;;6061:2;6046:18;;6028:76;7683:35:4;;;;;;;;7133:592;;;;:::o;5678:145:0:-;5373:7;5399:12;;;;;;;;;;:22;;;3917:30;3928:4;665:10:2;3917::0;:30::i;:::-;5791:25:::1;5802:4;5808:7;5791:10;:25::i;6695:214::-:0;-1:-1:-1;;;;;6790:23:0;;665:10:2;6790:23:0;6782:83;;;;-1:-1:-1;;;6782:83:0;;15194:2:13;6782:83:0;;;15176:21:13;15233:2;15213:18;;;15206:30;15272:34;15252:18;;;15245:62;-1:-1:-1;;;15323:18:13;;;15316:45;15378:19;;6782:83:0;15166:237:13;6782:83:0;6876:26;6888:4;6894:7;6876:11;:26::i;6748:156:6:-;6821:4;6844:53;6852:3;-1:-1:-1;;;;;6872:23:6;;6844:7;:53::i;2045:117:10:-;1103:7;;;;1604:41;;;;-1:-1:-1;;;1604:41:10;;7867:2:13;1604:41:10;;;7849:21:13;7906:2;7886:18;;;7879:30;-1:-1:-1;;;7925:18:13;;;7918:50;7985:18;;1604:41:10;7839:170:13;1604:41:10;2103:7:::1;:15:::0;;-1:-1:-1;;2103:15:10::1;::::0;;2133:22:::1;665:10:2::0;2142:12:10::1;2133:22;::::0;-1:-1:-1;;;;;5691:32:13;;;5673:51;;5661:2;5646:18;2133:22:10::1;;;;;;;2045:117::o:0;1798:115::-;1103:7;;;;1346:9;1338:38;;;;-1:-1:-1;;;1338:38:10;;10915:2:13;1338:38:10;;;10897:21:13;10954:2;10934:18;;;10927:30;-1:-1:-1;;;10973:18:13;;;10966:46;11029:18;;1338:38:10;10887:166:13;1338:38:10;1857:7:::1;:14:::0;;-1:-1:-1;;1857:14:10::1;1867:4;1857:14;::::0;;1886:20:::1;1893:12;665:10:2::0;;586:96;7678:156:6;7752:7;7802:22;7806:3;7818:5;7802:3;:22::i;8646:483:4:-;-1:-1:-1;;;;;8729:21:4;;8721:67;;;;-1:-1:-1;;;8721:67:4;;12386:2:13;8721:67:4;;;12368:21:13;12425:2;12405:18;;;12398:30;12464:34;12444:18;;;12437:62;-1:-1:-1;;;12515:18:13;;;12508:31;12556:19;;8721:67:4;12358:223:13;8721:67:4;8799:49;8820:7;8837:1;8841:6;8799:20;:49::i;:::-;-1:-1:-1;;;;;8884:18:4;;8859:22;8884:18;;;:9;:18;;;;;;8920:24;;;;8912:71;;;;-1:-1:-1;;;8912:71:4;;8216:2:13;8912:71:4;;;8198:21:13;8255:2;8235:18;;;8228:30;8294:34;8274:18;;;8267:62;-1:-1:-1;;;8345:18:13;;;8338:32;8387:19;;8912:71:4;8188:224:13;8912:71:4;9014:23;9031:6;9014:14;:23;:::i;:::-;-1:-1:-1;;;;;8993:18:4;;;;;;:9;:18;;;;;:44;;;;9047:12;:22;;9063:6;;8993:18;9047:22;;9063:6;;9047:22;:::i;:::-;;;;-1:-1:-1;;9085:37:4;;6073:25:13;;;9111:1:4;;-1:-1:-1;;;;;9085:37:4;;;;;6061:2:13;6046:18;9085:37:4;6028:76:13;7231:115:6;7294:7;7320:19;7328:3;4096:18;;4014:107;4271:317:12;4431:13;;4327:18;;;;;;;;4447:4;;4422:22;;4431:13;;4422:6;:22;:::i;:::-;:29;;;;:::i;:::-;4402:49;-1:-1:-1;4477:14:12;4489:2;4402:49;4477:14;:::i;:::-;4461:30;-1:-1:-1;4516:25:12;4461:30;4516:9;:25;:::i;:::-;4501:40;-1:-1:-1;4564:18:12;4573:9;4564:6;:18;:::i;:::-;4551:31;;4271:317;;;;;;:::o;7996:330:4:-;-1:-1:-1;;;;;8079:21:4;;8071:65;;;;-1:-1:-1;;;8071:65:4;;15610:2:13;8071:65:4;;;15592:21:13;15649:2;15629:18;;;15622:30;15688:33;15668:18;;;15661:61;15739:18;;8071:65:4;15582:181:13;8071:65:4;8147:49;8176:1;8180:7;8189:6;8147:20;:49::i;:::-;8223:6;8207:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8239:18:4;;;;;;:9;:18;;;;;:28;;8261:6;;8239:18;:28;;8261:6;;8239:28;:::i;:::-;;;;-1:-1:-1;;8282:37:4;;6073:25:13;;;-1:-1:-1;;;;;8282:37:4;;;8299:1;;8282:37;;6061:2:13;6046:18;8282:37:4;6028:76:13;6057:147:0;5373:7;5399:12;;;;;;;;;;:22;;;3917:30;3928:4;665:10:2;3917::0;:30::i;:::-;6171:26:::1;6183:4;6189:7;6171:11;:26::i;7907:224::-:0;7981:22;7989:4;7995:7;7981;:22::i;:::-;7976:149;;8019:6;:12;;;;;;;;;;;-1:-1:-1;;;;;8019:29:0;;;;;;;;;:36;;-1:-1:-1;;8019:36:0;8051:4;8019:36;;;8101:12;665:10:2;;586:96;8101:12:0;-1:-1:-1;;;;;8074:40:0;8092:7;-1:-1:-1;;;;;8074:40:0;8086:4;8074:40;;;;;;;;;;7907:224;;:::o;1632:404:6:-;1695:4;3902:19;;;:12;;;:19;;;;;;1711:319;;-1:-1:-1;1753:23:6;;;;;;;;:11;:23;;;;;;;;;;;;;1933:18;;1911:19;;;:12;;;:19;;;;;;:40;;;;1965:11;;1711:319;-1:-1:-1;2014:5:6;2007:12;;2075:174:12;2198:44;2225:4;2231:2;2235:6;2198:26;:44::i;4751:375:0:-;4830:22;4838:4;4844:7;4830;:22::i;:::-;4826:294;;4959:41;4987:7;-1:-1:-1;;;;;4959:41:0;4997:2;4959:19;:41::i;:::-;5055:38;5083:4;5090:2;5055:19;:38::i;:::-;4882:225;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;4882:225:0;;;;;;;;;;-1:-1:-1;;;4868:241:0;;;;;;;:::i;8137:225::-;8211:22;8219:4;8225:7;8211;:22::i;:::-;8207:149;;;8281:5;8249:12;;;;;;;;;;;-1:-1:-1;;;;;8249:29:0;;;;;;;;;;:37;;-1:-1:-1;;8249:37:0;;;8305:40;665:10:2;;8249:12:0;;8305:40;;8281:5;8305:40;8137:225;;:::o;2204:1521:6:-;2270:4;2407:19;;;:12;;;:19;;;;;;2441:15;;2437:1282;;2798:21;2822:14;2835:1;2822:10;:14;:::i;:::-;2870:18;;2798:38;;-1:-1:-1;2850:17:6;;2870:22;;2891:1;;2870:22;:::i;:::-;2850:42;;3132:17;3152:3;:11;;3164:9;3152:22;;;;;;-1:-1:-1;;;3152:22:6;;;;;;;;;;;;;;;;;3132:42;;3295:9;3266:3;:11;;3278:13;3266:26;;;;;;-1:-1:-1;;;3266:26:6;;;;;;;;;;;;;;;;;;;;:38;;;;3370:23;;;:12;;;:23;;;;;;:36;;;3528:17;;3370:3;;3528:17;;;-1:-1:-1;;;3528:17:6;;;;;;;;;;;;;;;;;;;;;;;;;;3620:3;:12;;:19;3633:5;3620:19;;;;;;;;;;;3613:26;;;3661:4;3654:11;;;;;;;;2437:1282;3703:5;3696:12;;;;;4453:201;4547:18;;4520:7;;4547:26;-1:-1:-1;4539:73:6;;;;-1:-1:-1;;;4539:73:6;;6699:2:13;4539:73:6;;;6681:21:13;6738:2;6718:18;;;6711:30;6777:34;6757:18;;;6750:62;-1:-1:-1;;;6828:18:13;;;6821:32;6870:19;;4539:73:6;6671:224:13;4539:73:6;4629:3;:11;;4641:5;4629:18;;;;;;-1:-1:-1;;;4629:18:6;;;;;;;;;;;;;;;;;4622:25;;4453:201;;;;:::o;568:234:5:-;1103:7:10;;;;739:9:5;731:64;;;;-1:-1:-1;;;731:64:5;;15970:2:13;731:64:5;;;15952:21:13;16009:2;15989:18;;;15982:30;16048:34;16028:18;;;16021:62;-1:-1:-1;;;16099:18:13;;;16092:40;16149:19;;731:64:5;15942:232:13;1531:437:11;1606:13;1631:19;1663:10;1667:6;1663:1;:10;:::i;:::-;:14;;1676:1;1663:14;:::i;:::-;1653:25;;;;;;-1:-1:-1;;;1653:25:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1653:25:11;;1631:47;;-1:-1:-1;;;1688:6:11;1695:1;1688:9;;;;;;-1:-1:-1;;;1688:9:11;;;;;;;;;;;;:15;-1:-1:-1;;;;;1688:15:11;;;;;;;;;-1:-1:-1;;;1713:6:11;1720:1;1713:9;;;;;;-1:-1:-1;;;1713:9:11;;;;;;;;;;;;:15;-1:-1:-1;;;;;1713:15:11;;;;;;;;-1:-1:-1;1743:9:11;1755:10;1759:6;1755:1;:10;:::i;:::-;:14;;1768:1;1755:14;:::i;:::-;1743:26;;1738:128;1775:1;1771;:5;1738:128;;;-1:-1:-1;;;1818:5:11;1826:3;1818:11;1809:21;;;;;-1:-1:-1;;;1809:21:11;;;;;;;;;;;;1797:6;1804:1;1797:9;;;;;;-1:-1:-1;;;1797:9:11;;;;;;;;;;;;:33;-1:-1:-1;;;;;1797:33:11;;;;;;;;-1:-1:-1;1854:1:11;1844:11;;;;;1778:3;;;:::i;:::-;;;1738:128;;;-1:-1:-1;1883:10:11;;1875:55;;;;-1:-1:-1;;;1875:55:11;;7102:2:13;1875:55:11;;;7084:21:13;;;7121:18;;;7114:30;7180:34;7160:18;;;7153:62;7232:18;;1875:55:11;7074:182:13;14:173;82:20;;-1:-1:-1;;;;;131:31:13;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:739::-;235:5;288:3;281:4;273:6;269:17;265:27;255:2;;310:5;303;296:20;255:2;350:6;337:20;376:18;413:2;409;406:10;403:2;;;419:18;;:::i;:::-;494:2;488:9;462:2;548:13;;-1:-1:-1;;544:22:13;;;568:2;540:31;536:40;524:53;;;592:18;;;612:22;;;589:46;586:2;;;638:18;;:::i;:::-;678:10;674:2;667:22;713:2;705:6;698:18;759:3;752:4;747:2;739:6;735:15;731:26;728:35;725:2;;;780:5;773;766:20;725:2;848;841:4;833:6;829:17;822:4;814:6;810:17;797:54;871:15;;;888:4;867:26;860:41;;;;-1:-1:-1;875:6:13;245:686;-1:-1:-1;;;245:686:13:o;936:196::-;995:6;1048:2;1036:9;1027:7;1023:23;1019:32;1016:2;;;1069:6;1061;1054:22;1016:2;1097:29;1116:9;1097:29;:::i;1137:270::-;1205:6;1213;1266:2;1254:9;1245:7;1241:23;1237:32;1234:2;;;1287:6;1279;1272:22;1234:2;1315:29;1334:9;1315:29;:::i;:::-;1305:39;;1363:38;1397:2;1386:9;1382:18;1363:38;:::i;:::-;1353:48;;1224:183;;;;;:::o;1412:338::-;1489:6;1497;1505;1558:2;1546:9;1537:7;1533:23;1529:32;1526:2;;;1579:6;1571;1564:22;1526:2;1607:29;1626:9;1607:29;:::i;:::-;1597:39;;1655:38;1689:2;1678:9;1674:18;1655:38;:::i;:::-;1645:48;;1740:2;1729:9;1725:18;1712:32;1702:42;;1516:234;;;;;:::o;1755:264::-;1823:6;1831;1884:2;1872:9;1863:7;1859:23;1855:32;1852:2;;;1905:6;1897;1890:22;1852:2;1933:29;1952:9;1933:29;:::i;:::-;1923:39;2009:2;1994:18;;;;1981:32;;-1:-1:-1;;;1842:177:13:o;2024:484::-;2111:6;2119;2127;2180:2;2168:9;2159:7;2155:23;2151:32;2148:2;;;2201:6;2193;2186:22;2148:2;2229:29;2248:9;2229:29;:::i;:::-;2219:39;;2305:2;2294:9;2290:18;2277:32;2267:42;;2360:2;2349:9;2345:18;2332:32;2387:18;2379:6;2376:30;2373:2;;;2424:6;2416;2409:22;2373:2;2452:50;2494:7;2485:6;2474:9;2470:22;2452:50;:::i;:::-;2442:60;;;2138:370;;;;;:::o;2513:190::-;2572:6;2625:2;2613:9;2604:7;2600:23;2596:32;2593:2;;;2646:6;2638;2631:22;2593:2;-1:-1:-1;2674:23:13;;2583:120;-1:-1:-1;2583:120:13:o;2708:264::-;2776:6;2784;2837:2;2825:9;2816:7;2812:23;2808:32;2805:2;;;2858:6;2850;2843:22;2805:2;2899:9;2886:23;2876:33;;2928:38;2962:2;2951:9;2947:18;2928:38;:::i;2977:258::-;3045:6;3053;3106:2;3094:9;3085:7;3081:23;3077:32;3074:2;;;3127:6;3119;3112:22;3074:2;-1:-1:-1;;3155:23:13;;;3225:2;3210:18;;;3197:32;;-1:-1:-1;3064:171:13:o;3240:306::-;3298:6;3351:2;3339:9;3330:7;3326:23;3322:32;3319:2;;;3372:6;3364;3357:22;3319:2;3403:23;;-1:-1:-1;;;;;;3455:32:13;;3445:43;;3435:2;;3507:6;3499;3492:22;3551:410;3629:6;3637;3690:2;3678:9;3669:7;3665:23;3661:32;3658:2;;;3711:6;3703;3696:22;3658:2;3756:9;3743:23;3789:18;3781:6;3778:30;3775:2;;;3826:6;3818;3811:22;3775:2;3854:50;3896:7;3887:6;3876:9;3872:22;3854:50;:::i;:::-;3844:60;3951:2;3936:18;;;;3923:32;;-1:-1:-1;;;;3648:313:13:o;4161:289::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:2;;;4292:6;4284;4277:22;4239:2;4336:9;4323:23;4386:4;4379:5;4375:16;4368:5;4365:27;4355:2;;4411:6;4403;4396:22;4455:276;4586:3;4624:6;4618:13;4640:53;4686:6;4681:3;4674:4;4666:6;4662:17;4640:53;:::i;:::-;4709:16;;;;;4594:137;-1:-1:-1;;4594:137:13:o;4736:786::-;5147:25;5142:3;5135:38;5117:3;5202:6;5196:13;5218:62;5273:6;5268:2;5263:3;5259:12;5252:4;5244:6;5240:17;5218:62;:::i;:::-;-1:-1:-1;;;5339:2:13;5299:16;;;5331:11;;;5324:40;5389:13;;5411:63;5389:13;5460:2;5452:11;;5445:4;5433:17;;5411:63;:::i;:::-;5494:17;5513:2;5490:26;;5125:397;-1:-1:-1;;;;5125:397:13:o;6109:383::-;6258:2;6247:9;6240:21;6221:4;6290:6;6284:13;6333:6;6328:2;6317:9;6313:18;6306:34;6349:66;6408:6;6403:2;6392:9;6388:18;6383:2;6375:6;6371:15;6349:66;:::i;:::-;6476:2;6455:15;-1:-1:-1;;6451:29:13;6436:45;;;;6483:2;6432:54;;6230:262;-1:-1:-1;;6230:262:13:o;14578:409::-;14780:2;14762:21;;;14819:2;14799:18;;;14792:30;14858:34;14853:2;14838:18;;14831:62;-1:-1:-1;;;14924:2:13;14909:18;;14902:43;14977:3;14962:19;;14752:235::o;16803:128::-;16843:3;16874:1;16870:6;16867:1;16864:13;16861:2;;;16880:18;;:::i;:::-;-1:-1:-1;16916:9:13;;16851:80::o;16936:217::-;16976:1;17002;16992:2;;-1:-1:-1;;;17027:31:13;;17081:4;17078:1;17071:15;17109:4;17034:1;17099:15;16992:2;-1:-1:-1;17138:9:13;;16982:171::o;17158:168::-;17198:7;17264:1;17260;17256:6;17252:14;17249:1;17246:21;17241:1;17234:9;17227:17;17223:45;17220:2;;;17271:18;;:::i;:::-;-1:-1:-1;17311:9:13;;17210:116::o;17331:125::-;17371:4;17399:1;17396;17393:8;17390:2;;;17404:18;;:::i;:::-;-1:-1:-1;17441:9:13;;17380:76::o;17461:258::-;17533:1;17543:113;17557:6;17554:1;17551:13;17543:113;;;17633:11;;;17627:18;17614:11;;;17607:39;17579:2;17572:10;17543:113;;;17674:6;17671:1;17668:13;17665:2;;;17709:1;17700:6;17695:3;17691:16;17684:27;17665:2;;17514:205;;;:::o;17724:136::-;17763:3;17791:5;17781:2;;17800:18;;:::i;:::-;-1:-1:-1;;;17836:18:13;;17771:89::o;17865:380::-;17944:1;17940:12;;;;17987;;;18008:2;;18062:4;18054:6;18050:17;18040:27;;18008:2;18115;18107:6;18104:14;18084:18;18081:38;18078:2;;;18161:10;18156:3;18152:20;18149:1;18142:31;18196:4;18193:1;18186:15;18224:4;18221:1;18214:15;18078:2;;17920:325;;;:::o;18250:127::-;18311:10;18306:3;18302:20;18299:1;18292:31;18342:4;18339:1;18332:15;18366:4;18363:1;18356:15;18382:127;18443:10;18438:3;18434:20;18431:1;18424:31;18474:4;18471:1;18464:15;18498:4;18495:1;18488:15

Swarm Source

ipfs://09acd023215bb19ec4aa0c76e084254a0f1980469d7bf4e0eb49a3d54065972d

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 Witnet decentralized oracle runs on its own blockchain and relies on the token for incentivization of independently run nodes that resolve the data requests and agree on the results.

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.