Source Code
Latest 25 from a total of 6,701 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Claim | 22479314 | 217 days ago | IN | 0 ETH | 0.00011941 | ||||
| Claim | 21177098 | 399 days ago | IN | 0 ETH | 0.00195674 | ||||
| Claim | 20701438 | 465 days ago | IN | 0 ETH | 0.00024669 | ||||
| Claim | 20393887 | 508 days ago | IN | 0 ETH | 0.00391461 | ||||
| Claim | 20393887 | 508 days ago | IN | 0 ETH | 0.0000391 | ||||
| Claim | 20393518 | 508 days ago | IN | 0 ETH | 0.00013825 | ||||
| Claim | 19871738 | 581 days ago | IN | 0 ETH | 0.00038623 | ||||
| Claim | 19752754 | 597 days ago | IN | 0 ETH | 0.00064624 | ||||
| Claim | 19668068 | 609 days ago | IN | 0 ETH | 0.00104611 | ||||
| Claim | 19495458 | 634 days ago | IN | 0 ETH | 0.00166312 | ||||
| Claim | 19489042 | 634 days ago | IN | 0 ETH | 0.0024645 | ||||
| Claim | 19452234 | 640 days ago | IN | 0 ETH | 0.00218392 | ||||
| Claim | 19148706 | 682 days ago | IN | 0 ETH | 0.0020639 | ||||
| Claim | 19098834 | 689 days ago | IN | 0 ETH | 0.00305592 | ||||
| Claim | 19048619 | 696 days ago | IN | 0 ETH | 0.00170305 | ||||
| Claim | 19048587 | 696 days ago | IN | 0 ETH | 0.00197426 | ||||
| Claim | 19000029 | 703 days ago | IN | 0 ETH | 0.00160235 | ||||
| Claim | 18978207 | 706 days ago | IN | 0 ETH | 0.00421076 | ||||
| Claim | 18915952 | 715 days ago | IN | 0 ETH | 0.00117846 | ||||
| Claim | 18907693 | 716 days ago | IN | 0 ETH | 0.00137553 | ||||
| Claim | 18858980 | 723 days ago | IN | 0 ETH | 0.00173406 | ||||
| Claim | 18852321 | 724 days ago | IN | 0 ETH | 0.00194335 | ||||
| Claim | 18777688 | 734 days ago | IN | 0 ETH | 0.00357252 | ||||
| Claim | 18712213 | 743 days ago | IN | 0 ETH | 0.00338186 | ||||
| Claim | 18681137 | 748 days ago | IN | 0 ETH | 0.00373435 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
HOKKAirdrop
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount)
external
returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender)
external
view
returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
}
/**
* @dev These functions deal with verification of Merkle Trees proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
bytes32 proofElement = proof[i];
if (computedHash <= proofElement) {
// Hash(current computed hash + current element of the proof)
computedHash = keccak256(
abi.encodePacked(computedHash, proofElement)
);
} else {
// Hash(current element of the proof + current computed hash)
computedHash = keccak256(
abi.encodePacked(proofElement, computedHash)
);
}
}
// Check if the computed hash (root) is equal to the provided root
return computedHash == root;
}
}
// Allows anyone to claim a token if they exist in a merkle root.
interface IMerkleDistributor {
// Returns the address of the token distributed by this contract.
function token() external view returns (address);
// Returns the merkle root of the merkle tree containing account balances available to claim.
function merkleRoot() external view returns (bytes32);
// Returns true if the index has been marked claimed.
function isClaimed(uint256 index) external view returns (bool);
// Claim the given amount of the token to the given address. Reverts if the inputs are invalid.
function claim(
uint256 index,
address account,
uint256 amount,
bytes32[] calldata merkleProof
) external;
// This event is triggered whenever a call to #claim succeeds.
event Claimed(uint256 index, address account, uint256 amount);
}
contract HOKKAirdrop is IMerkleDistributor, Ownable {
address public immutable override token;
bytes32 public override merkleRoot;
// This is a packed array of booleans.
mapping(uint256 => uint256) private claimedBitMap;
constructor(address token_, bytes32 merkleRoot_) {
token = token_;
merkleRoot = merkleRoot_;
}
function setMerkleRoot(bytes32 merkleRoot_) public onlyOwner {
merkleRoot = merkleRoot_;
}
function isClaimed(uint256 index) public view override returns (bool) {
uint256 claimedWordIndex = index / 256;
uint256 claimedBitIndex = index % 256;
uint256 claimedWord = claimedBitMap[claimedWordIndex];
uint256 mask = (1 << claimedBitIndex);
return claimedWord & mask == mask;
}
function _setClaimed(uint256 index) private {
uint256 claimedWordIndex = index / 256;
uint256 claimedBitIndex = index % 256;
claimedBitMap[claimedWordIndex] =
claimedBitMap[claimedWordIndex] |
(1 << claimedBitIndex);
}
function claim(
uint256 index,
address account,
uint256 amount,
bytes32[] calldata merkleProof
) external override {
require(!isClaimed(index), "HOKKAirdrop: Drop already claimed.");
// Verify the merkle proof.
bytes32 node = keccak256(abi.encodePacked(index, account, amount));
require(
MerkleProof.verify(merkleProof, merkleRoot, node),
"HOKKAirdrop: Invalid proof."
);
// Mark it claimed and send the token.
_setClaimed(index);
require(
IERC20(token).transfer(account, amount * (10**18)),
"HOKKAirdrop: Transfer failed."
);
emit Claimed(index, account, amount);
}
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"token_","type":"address"},{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60a060405234801561001057600080fd5b5060405161098b38038061098b83398101604081905261002f916100a3565b61003833610053565b60609190911b6001600160601b0319166080526001556100db565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100b5578182fd5b82516001600160a01b03811681146100cb578283fd5b6020939093015192949293505050565b60805160601c61088b6101006000396000818161013901526102ac015261088b6000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c80638da5cb5b1161005b5780638da5cb5b146100d95780639e34070f146100fe578063f2fde38b14610121578063fc0c546a1461013457600080fd5b80632e7ba6ef1461008d5780632eb4a7ab146100a2578063715018a6146100be5780637cb64759146100c6575b600080fd5b6100a061009b366004610700565b61015b565b005b6100ab60015481565b6040519081526020015b60405180910390f35b6100a06103ff565b6100a06100d43660046106e8565b610435565b6000546001600160a01b03165b6040516001600160a01b0390911681526020016100b5565b61011161010c3660046106e8565b610464565b60405190151581526020016100b5565b6100a061012f3660046106a7565b6104a5565b6100e67f000000000000000000000000000000000000000000000000000000000000000081565b61016485610464565b156101c15760405162461bcd60e51b815260206004820152602260248201527f484f4b4b41697264726f703a2044726f7020616c726561647920636c61696d65604482015261321760f11b60648201526084015b60405180910390fd5b60408051602081018790526bffffffffffffffffffffffff19606087901b16918101919091526054810184905260009060740160405160208183030381529060405280519060200120905061024d838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506001549150849050610540565b6102995760405162461bcd60e51b815260206004820152601b60248201527f484f4b4b41697264726f703a20496e76616c69642070726f6f662e000000000060448201526064016101b8565b6102a2866105fd565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663a9059cbb866102e487670de0b6b3a76400006107db565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561032a57600080fd5b505af115801561033e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061036291906106c8565b6103ae5760405162461bcd60e51b815260206004820152601d60248201527f484f4b4b41697264726f703a205472616e73666572206661696c65642e00000060448201526064016101b8565b604080518781526001600160a01b03871660208201529081018590527f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed0269060600160405180910390a1505050505050565b6000546001600160a01b031633146104295760405162461bcd60e51b81526004016101b890610792565b610433600061063b565b565b6000546001600160a01b0316331461045f5760405162461bcd60e51b81526004016101b890610792565b600155565b600080610473610100846107c7565b9050600061048361010085610815565b60009283526002602052604090922054600190921b9182169091149392505050565b6000546001600160a01b031633146104cf5760405162461bcd60e51b81526004016101b890610792565b6001600160a01b0381166105345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016101b8565b61053d8161063b565b50565b600081815b85518110156105f257600086828151811061057057634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116105b25760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506105df565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806105ea816107fa565b915050610545565b509092149392505050565b600061060b610100836107c7565b9050600061061b61010084610815565b6000928352600260205260409092208054600190931b9092179091555050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b03811681146106a257600080fd5b919050565b6000602082840312156106b8578081fd5b6106c18261068b565b9392505050565b6000602082840312156106d9578081fd5b815180151581146106c1578182fd5b6000602082840312156106f9578081fd5b5035919050565b600080600080600060808688031215610717578081fd5b853594506107276020870161068b565b935060408601359250606086013567ffffffffffffffff8082111561074a578283fd5b818801915088601f83011261075d578283fd5b81358181111561076b578384fd5b8960208260051b850101111561077f578384fd5b9699959850939650602001949392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000826107d6576107d661083f565b500490565b60008160001904831182151516156107f5576107f5610829565b500290565b600060001982141561080e5761080e610829565b5060010190565b6000826108245761082461083f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fdfea2646970667358221220e0de93ec1e8826d526b37f64f38c0b69d059d850551f6e7627e7065811bc4a3d64736f6c63430008040033000000000000000000000000e87e15b9c7d989474cb6d8c56b3db4efad5b21e872d5843dc4fa6679589900c45636a223c2717abca9e844ea88ca4d784f8218b0
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100885760003560e01c80638da5cb5b1161005b5780638da5cb5b146100d95780639e34070f146100fe578063f2fde38b14610121578063fc0c546a1461013457600080fd5b80632e7ba6ef1461008d5780632eb4a7ab146100a2578063715018a6146100be5780637cb64759146100c6575b600080fd5b6100a061009b366004610700565b61015b565b005b6100ab60015481565b6040519081526020015b60405180910390f35b6100a06103ff565b6100a06100d43660046106e8565b610435565b6000546001600160a01b03165b6040516001600160a01b0390911681526020016100b5565b61011161010c3660046106e8565b610464565b60405190151581526020016100b5565b6100a061012f3660046106a7565b6104a5565b6100e67f000000000000000000000000e87e15b9c7d989474cb6d8c56b3db4efad5b21e881565b61016485610464565b156101c15760405162461bcd60e51b815260206004820152602260248201527f484f4b4b41697264726f703a2044726f7020616c726561647920636c61696d65604482015261321760f11b60648201526084015b60405180910390fd5b60408051602081018790526bffffffffffffffffffffffff19606087901b16918101919091526054810184905260009060740160405160208183030381529060405280519060200120905061024d838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506001549150849050610540565b6102995760405162461bcd60e51b815260206004820152601b60248201527f484f4b4b41697264726f703a20496e76616c69642070726f6f662e000000000060448201526064016101b8565b6102a2866105fd565b6001600160a01b037f000000000000000000000000e87e15b9c7d989474cb6d8c56b3db4efad5b21e81663a9059cbb866102e487670de0b6b3a76400006107db565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561032a57600080fd5b505af115801561033e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061036291906106c8565b6103ae5760405162461bcd60e51b815260206004820152601d60248201527f484f4b4b41697264726f703a205472616e73666572206661696c65642e00000060448201526064016101b8565b604080518781526001600160a01b03871660208201529081018590527f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed0269060600160405180910390a1505050505050565b6000546001600160a01b031633146104295760405162461bcd60e51b81526004016101b890610792565b610433600061063b565b565b6000546001600160a01b0316331461045f5760405162461bcd60e51b81526004016101b890610792565b600155565b600080610473610100846107c7565b9050600061048361010085610815565b60009283526002602052604090922054600190921b9182169091149392505050565b6000546001600160a01b031633146104cf5760405162461bcd60e51b81526004016101b890610792565b6001600160a01b0381166105345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016101b8565b61053d8161063b565b50565b600081815b85518110156105f257600086828151811061057057634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116105b25760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506105df565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806105ea816107fa565b915050610545565b509092149392505050565b600061060b610100836107c7565b9050600061061b61010084610815565b6000928352600260205260409092208054600190931b9092179091555050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b03811681146106a257600080fd5b919050565b6000602082840312156106b8578081fd5b6106c18261068b565b9392505050565b6000602082840312156106d9578081fd5b815180151581146106c1578182fd5b6000602082840312156106f9578081fd5b5035919050565b600080600080600060808688031215610717578081fd5b853594506107276020870161068b565b935060408601359250606086013567ffffffffffffffff8082111561074a578283fd5b818801915088601f83011261075d578283fd5b81358181111561076b578384fd5b8960208260051b850101111561077f578384fd5b9699959850939650602001949392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000826107d6576107d661083f565b500490565b60008160001904831182151516156107f5576107f5610829565b500290565b600060001982141561080e5761080e610829565b5060010190565b6000826108245761082461083f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fdfea2646970667358221220e0de93ec1e8826d526b37f64f38c0b69d059d850551f6e7627e7065811bc4a3d64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e87e15b9c7d989474cb6d8c56b3db4efad5b21e872d5843dc4fa6679589900c45636a223c2717abca9e844ea88ca4d784f8218b0
-----Decoded View---------------
Arg [0] : token_ (address): 0xe87e15B9c7d989474Cb6d8c56b3DB4eFAD5b21E8
Arg [1] : merkleRoot_ (bytes32): 0x72d5843dc4fa6679589900c45636a223c2717abca9e844ea88ca4d784f8218b0
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000e87e15b9c7d989474cb6d8c56b3db4efad5b21e8
Arg [1] : 72d5843dc4fa6679589900c45636a223c2717abca9e844ea88ca4d784f8218b0
Loading...
Loading
Loading...
Loading
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.