ETH Price: $3,397.14 (-1.14%)
Gas: 2 Gwei

Contract

0x71c16082E3Cd72DfEE928F08B16442893f4F1455
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value

There are no matching entries

Please try again later

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To Value
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.87039 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.00225 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.00037 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.00806 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.00096 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.00346 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.05936 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.01785 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.62685 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.04375 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.00014 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.00178 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.875 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
20.025 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.23158 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.13247 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.00608 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.02158 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.00082 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.0304 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.02895 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.00845 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.01375 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.0045 ETH
201335702024-06-20 14:35:118 days ago1718894111
0x71c16082...93f4F1455
0.00225 ETH
View All Internal Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xcb8faE26...C0e4DF4a9
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
BitwaveMultiSend

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
london EvmVersion
File 1 of 3 : BitwaveMultiSend.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

/// @title A multi-send contract for ERC-20 tokens and ETH.
/// @author Bitwave
/// @author Pat White
/// @author Inish Crisson
/// @notice Now with support for fallback functions. 
/// @notice This is intended to be deployed by a factory contract, hence why "owner" has been paramaterised. 
contract BitwaveMultiSend is ReentrancyGuard {
  
  address public owner;

  // A uint to produce a unique ID for each transaction.
  uint32 public paymentCount;
  uint8 public bwChainId;

  constructor(address _owner, uint8 _bwChainId) {
    owner = _owner;
    bwChainId = _bwChainId;
  }

  modifier restrictedToOwner() {
        require(msg.sender == owner, "Sender not authorized.");
        _;
  }

  event multiSendPaymentExecuted(bytes id);

/// @notice Sends Eth to an array of addresses according to the values in a uint array.
/// @param _to An array of addresses to be paid.
/// @param _value An array of values to be paid to "_to" addresses.
/// @return _success A bool to indicate transaction success.
  function sendEth(address payable [] memory _to, uint256[] memory _value) public restrictedToOwner nonReentrant payable returns (bool _success) {
        // input validation
        require(_to.length == _value.length);
        require(_to.length <= 255);

        // count values for refunding sender
        uint256 beforeValue = msg.value;
        uint256 afterValue = 0;

        // Generate a unique ID for this transaction.
        emit multiSendPaymentExecuted(abi.encodePacked(address(this), paymentCount++, uint8(_value.length), bwChainId));

        // loop through to addresses and send value
        for (uint8 i = 0; i < _to.length; i++) {
            afterValue = afterValue + (_value[i]);
            (bool sent, ) = _to[i].call{value: _value[i]}("");
            require(sent, "Failed to send Ether");
        }

        // send back remaining value to sender
        uint256 remainingValue = beforeValue - afterValue;
        if (remainingValue > 0) {
            (bool sent, ) = owner.call{value: remainingValue}("");
            require(sent, "Failed to send Ether");
        }
        return true;
  }

/// @notice Sends *ONE TYPE OF* ERC-20 token to an array of addresses according to the values in a uint array.
/// @param _tokenAddress The ERC-20 token address.
/// @param _to An array of addresses to be paid.
/// @param _value An array of values to be paid to "_to" addresses.
/// @return _success A bool to indicate transaction success.
  function sendErc20(address _tokenAddress, address[] memory _to, uint256[] memory _value) public restrictedToOwner nonReentrant returns (bool _success) {
      // input validation
      require(_to.length == _value.length);
      require(_to.length <= 255);

      // use the erc20 abi
      IERC20 token = IERC20(_tokenAddress);

      // Generate a unique ID for this transaction.
      emit multiSendPaymentExecuted(abi.encodePacked(address(this), paymentCount++, uint8(_value.length), bwChainId));

      // loop through to addresses and send value
      for (uint8 i = 0; i < _to.length; i++) {
          assert(token.transferFrom(msg.sender, _to[i], _value[i]) == true);
      }
      return true;
  }
}

File 2 of 3 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 3 of 3 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint8","name":"_bwChainId","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes","name":"id","type":"bytes"}],"name":"multiSendPaymentExecuted","type":"event"},{"inputs":[],"name":"bwChainId","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paymentCount","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_value","type":"uint256[]"}],"name":"sendErc20","outputs":[{"internalType":"bool","name":"_success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_value","type":"uint256[]"}],"name":"sendEth","outputs":[{"internalType":"bool","name":"_success","type":"bool"}],"stateMutability":"payable","type":"function"}]

Deployed Bytecode

0x60806040526004361061004a5760003560e01c80630937e68a1461004f57806325245b261461007a578063359c3e51146100aa5780638da5cb5b146100d5578063aee2561314610100575b600080fd5b34801561005b57600080fd5b5061006461013d565b6040516100719190610e34565b60405180910390f35b610094600480360381019061008f9190610ae8565b610153565b6040516100a19190610d97565b60405180910390f35b3480156100b657600080fd5b506100bf610535565b6040516100cc9190610e4f565b60405180910390f35b3480156100e157600080fd5b506100ea610548565b6040516100f79190610d45565b60405180910390f35b34801561010c57600080fd5b5061012760048036038101906101229190610a5d565b61056e565b6040516101349190610d97565b60405180910390f35b600160149054906101000a900463ffffffff1681565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146101e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101dc90610e14565b60405180910390fd5b6002600054141561022b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161022290610df4565b60405180910390fd5b6002600081905550815183511461024157600080fd5b60ff8351111561025057600080fd5b600034905060007f344e55d3c745e6200b5294430593c7fc321059db7a33f1634a961f965a6bf057306001601481819054906101000a900463ffffffff168092919061029b906110b0565b91906101000a81548163ffffffff021916908363ffffffff1602179055508651600160189054906101000a900460ff166040516020016102de9493929190610ce2565b6040516020818303038152906040526040516102fa9190610db2565b60405180910390a160005b85518160ff16101561043657848160ff1681518110610327576103266111ad565b5b60200260200101518261033a9190610f4b565b91506000868260ff1681518110610354576103536111ad565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16868360ff1681518110610388576103876111ad565b5b602002602001015160405161039c90610d30565b60006040518083038185875af1925050503d80600081146103d9576040519150601f19603f3d011682016040523d82523d6000602084013e6103de565b606091505b5050905080610422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161041990610dd4565b60405180910390fd5b50808061042e906110dd565b915050610305565b50600081836104459190610fa1565b90506000811115610520576000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161049890610d30565b60006040518083038185875af1925050503d80600081146104d5576040519150601f19603f3d011682016040523d82523d6000602084013e6104da565b606091505b505090508061051e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590610dd4565b60405180910390fd5b505b60019350505050600160008190555092915050565b600160189054906101000a900460ff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f790610e14565b60405180910390fd5b60026000541415610646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063d90610df4565b60405180910390fd5b6002600081905550815183511461065c57600080fd5b60ff8351111561066b57600080fd5b60008490507f344e55d3c745e6200b5294430593c7fc321059db7a33f1634a961f965a6bf057306001601481819054906101000a900463ffffffff16809291906106b4906110b0565b91906101000a81548163ffffffff021916908363ffffffff1602179055508551600160189054906101000a900460ff166040516020016106f79493929190610ce2565b6040516020818303038152906040526040516107139190610db2565b60405180910390a160005b84518160ff16101561081a57600115158273ffffffffffffffffffffffffffffffffffffffff166323b872dd33888560ff1681518110610761576107606111ad565b5b6020026020010151888660ff168151811061077f5761077e6111ad565b5b60200260200101516040518463ffffffff1660e01b81526004016107a593929190610d60565b602060405180830381600087803b1580156107bf57600080fd5b505af11580156107d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f79190610b60565b1515146108075761080661114f565b5b8080610812906110dd565b91505061071e565b50600191505060016000819055509392505050565b600061084261083d84610e8f565b610e6a565b9050808382526020820190508285602086028201111561086557610864611210565b5b60005b85811015610895578161087b888261097f565b845260208401935060208301925050600181019050610868565b5050509392505050565b60006108b26108ad84610ebb565b610e6a565b905080838252602082019050828560208602820111156108d5576108d4611210565b5b60005b8581101561090557816108eb8882610994565b8452602084019350602083019250506001810190506108d8565b5050509392505050565b600061092261091d84610ee7565b610e6a565b9050808382526020820190508285602086028201111561094557610944611210565b5b60005b85811015610975578161095b8882610a48565b845260208401935060208301925050600181019050610948565b5050509392505050565b60008135905061098e816112d5565b92915050565b6000813590506109a3816112ec565b92915050565b600082601f8301126109be576109bd61120b565b5b81356109ce84826020860161082f565b91505092915050565b600082601f8301126109ec576109eb61120b565b5b81356109fc84826020860161089f565b91505092915050565b600082601f830112610a1a57610a1961120b565b5b8135610a2a84826020860161090f565b91505092915050565b600081519050610a4281611303565b92915050565b600081359050610a578161131a565b92915050565b600080600060608486031215610a7657610a7561121a565b5b6000610a848682870161097f565b935050602084013567ffffffffffffffff811115610aa557610aa4611215565b5b610ab1868287016109a9565b925050604084013567ffffffffffffffff811115610ad257610ad1611215565b5b610ade86828701610a05565b9150509250925092565b60008060408385031215610aff57610afe61121a565b5b600083013567ffffffffffffffff811115610b1d57610b1c611215565b5b610b29858286016109d7565b925050602083013567ffffffffffffffff811115610b4a57610b49611215565b5b610b5685828601610a05565b9150509250929050565b600060208284031215610b7657610b7561121a565b5b6000610b8484828501610a33565b91505092915050565b610b9681610fd5565b82525050565b610bad610ba882610fd5565b611107565b82525050565b610bbc81610ff9565b82525050565b6000610bcd82610f13565b610bd78185610f1e565b9350610be781856020860161104c565b610bf08161121f565b840191505092915050565b6000610c08601483610f3a565b9150610c1382611257565b602082019050919050565b6000610c2b600083610f2f565b9150610c3682611280565b600082019050919050565b6000610c4e601f83610f3a565b9150610c5982611283565b602082019050919050565b6000610c71601683610f3a565b9150610c7c826112ac565b602082019050919050565b610c9081611025565b82525050565b610c9f8161102f565b82525050565b610cb6610cb18261102f565b61112b565b82525050565b610cc58161103f565b82525050565b610cdc610cd78261103f565b61113d565b82525050565b6000610cee8287610b9c565b601482019150610cfe8286610ca5565b600482019150610d0e8285610ccb565b600182019150610d1e8284610ccb565b60018201915081905095945050505050565b6000610d3b82610c1e565b9150819050919050565b6000602082019050610d5a6000830184610b8d565b92915050565b6000606082019050610d756000830186610b8d565b610d826020830185610b8d565b610d8f6040830184610c87565b949350505050565b6000602082019050610dac6000830184610bb3565b92915050565b60006020820190508181036000830152610dcc8184610bc2565b905092915050565b60006020820190508181036000830152610ded81610bfb565b9050919050565b60006020820190508181036000830152610e0d81610c41565b9050919050565b60006020820190508181036000830152610e2d81610c64565b9050919050565b6000602082019050610e496000830184610c96565b92915050565b6000602082019050610e646000830184610cbc565b92915050565b6000610e74610e85565b9050610e80828261107f565b919050565b6000604051905090565b600067ffffffffffffffff821115610eaa57610ea96111dc565b5b602082029050602081019050919050565b600067ffffffffffffffff821115610ed657610ed56111dc565b5b602082029050602081019050919050565b600067ffffffffffffffff821115610f0257610f016111dc565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b6000610f5682611025565b9150610f6183611025565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610f9657610f9561117e565b5b828201905092915050565b6000610fac82611025565b9150610fb783611025565b925082821015610fca57610fc961117e565b5b828203905092915050565b6000610fe082611005565b9050919050565b6000610ff282611005565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b60005b8381101561106a57808201518184015260208101905061104f565b83811115611079576000848401525b50505050565b6110888261121f565b810181811067ffffffffffffffff821117156110a7576110a66111dc565b5b80604052505050565b60006110bb8261102f565b915063ffffffff8214156110d2576110d161117e565b5b600182019050919050565b60006110e88261103f565b915060ff8214156110fc576110fb61117e565b5b600182019050919050565b600061111282611119565b9050919050565b60006111248261124a565b9050919050565b600061113682611230565b9050919050565b60006111488261123d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01b9050919050565b60008160f81b9050919050565b60008160601b9050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b50565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f53656e646572206e6f7420617574686f72697a65642e00000000000000000000600082015250565b6112de81610fd5565b81146112e957600080fd5b50565b6112f581610fe7565b811461130057600080fd5b50565b61130c81610ff9565b811461131757600080fd5b50565b61132381611025565b811461132e57600080fd5b5056fea2646970667358221220303e7e8943249d13de02f69dfe4d498a6084b3de65c3cdd0e4d8567265371e0664736f6c63430008070033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

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.