Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 89 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17387990 | 519 days ago | IN | 0 ETH | 0.00197093 | ||||
Approve | 17206610 | 545 days ago | IN | 0 ETH | 0.00413299 | ||||
Approve | 17200329 | 546 days ago | IN | 0 ETH | 0.0052047 | ||||
Approve | 17200315 | 546 days ago | IN | 0 ETH | 0.00515127 | ||||
Approve | 17200283 | 546 days ago | IN | 0 ETH | 0.00558815 | ||||
Approve | 17200283 | 546 days ago | IN | 0 ETH | 0.00558815 | ||||
Approve | 17200283 | 546 days ago | IN | 0 ETH | 0.00558815 | ||||
Approve | 17200283 | 546 days ago | IN | 0 ETH | 0.00558815 | ||||
Approve | 17200252 | 546 days ago | IN | 0 ETH | 0.00568776 | ||||
Approve | 17200240 | 546 days ago | IN | 0 ETH | 0.00655568 | ||||
Approve | 17200235 | 546 days ago | IN | 0 ETH | 0.00608474 | ||||
Approve | 17200232 | 546 days ago | IN | 0 ETH | 0.00566073 | ||||
Approve | 17200226 | 546 days ago | IN | 0 ETH | 0.00515169 | ||||
Approve | 17200224 | 546 days ago | IN | 0 ETH | 0.0053579 | ||||
Approve | 17200218 | 546 days ago | IN | 0 ETH | 0.00517041 | ||||
Approve | 17200208 | 546 days ago | IN | 0 ETH | 0.00531043 | ||||
Approve | 17200207 | 546 days ago | IN | 0 ETH | 0.00548484 | ||||
Approve | 17200207 | 546 days ago | IN | 0 ETH | 0.00548484 | ||||
Approve | 17200203 | 546 days ago | IN | 0 ETH | 0.00552363 | ||||
Approve | 17200198 | 546 days ago | IN | 0 ETH | 0.0053234 | ||||
Approve | 17200193 | 546 days ago | IN | 0 ETH | 0.00552839 | ||||
Approve | 17200189 | 546 days ago | IN | 0 ETH | 0.0055745 | ||||
Approve | 17200188 | 546 days ago | IN | 0 ETH | 0.00581828 | ||||
Approve | 17200179 | 546 days ago | IN | 0 ETH | 0.00562465 | ||||
Approve | 17200177 | 546 days ago | IN | 0 ETH | 0.00562962 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
17200245 | 546 days ago | 0.07413528 ETH | ||||
17200245 | 546 days ago | 0.07413528 ETH | ||||
17200244 | 546 days ago | 0.13271281 ETH | ||||
17200244 | 546 days ago | 0.13271281 ETH | ||||
17200243 | 546 days ago | 0.09335264 ETH | ||||
17200243 | 546 days ago | 0.09335264 ETH | ||||
17200242 | 546 days ago | 0.06984159 ETH | ||||
17200242 | 546 days ago | 0.06984159 ETH | ||||
17200227 | 546 days ago | 0.05389075 ETH | ||||
17200227 | 546 days ago | 0.05389075 ETH | ||||
17200223 | 546 days ago | 0.0293615 ETH | ||||
17200223 | 546 days ago | 0.0293615 ETH | ||||
17200217 | 546 days ago | 0.03381017 ETH | ||||
17200217 | 546 days ago | 0.03381017 ETH | ||||
17200217 | 546 days ago | 0.06697047 ETH | ||||
17200217 | 546 days ago | 0.06697047 ETH | ||||
17200217 | 546 days ago | 0.07870854 ETH | ||||
17200217 | 546 days ago | 0.07870854 ETH | ||||
17200217 | 546 days ago | 0.09299122 ETH | ||||
17200217 | 546 days ago | 0.09299122 ETH | ||||
17200217 | 546 days ago | 0.11154949 ETH | ||||
17200217 | 546 days ago | 0.11154949 ETH | ||||
17200217 | 546 days ago | 0.1035326 ETH | ||||
17200217 | 546 days ago | 0.1035326 ETH | ||||
17200216 | 546 days ago | 0.1254456 ETH |
Loading...
Loading
Contract Name:
FadorCommunity
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** Faded - $FADOR Did you fade a lot of tokens? Did you fade $PEPE Did you fade $SENDOR Don’t Fade $FADOR Don't Fade! Aggressive and determined presence of the devs packed with a good portion of experience. This Zero tax gem will make the hearts of all investors beat at ease. LP lock and renounce scheduled for right after launch. Telegram: https://t.me/FadorCommunity Twitter: https://twitter.com/FadorCommunity Website: https://faded.volt-ceo.com/ */ // SPDX-License-Identifier: MIT pragma solidity 0.8.17; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; return c; } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } contract FadorCommunity is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private bots; mapping(address => uint256) private _holderLastTransferTimestamp; bool public transferDelayEnabled = true; address payable private _taxWallet; uint256 private _initialBuyTax=20; uint256 private _initialSellTax=20; uint256 private _finalBuyTax=0; uint256 private _finalSellTax=0; uint256 private _reduceBuyTaxAt=20; uint256 private _reduceSellTaxAt=30; uint256 private _preventSwapBefore=20; uint256 private _buyCount=0; uint8 private constant _decimals = 9; uint256 private constant _tTotal = 1000000000 * 10**_decimals; string private constant _name = unicode"Faded"; string private constant _symbol = unicode"FADOR"; uint256 public _maxTxAmount = 20000000 * 10**_decimals; uint256 public _maxWalletSize = 20000000 * 10**_decimals; uint256 public _taxSwapThreshold= 1 * 10**_decimals; uint256 public _maxTaxSwap= 13000000 * 10**_decimals; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor () { _taxWallet = payable(_msgSender()); _balances[_msgSender()] = _tTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_taxWallet] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function _approve(address owner, address spender, uint256 amount) private { 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); } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); uint256 taxAmount=0; if (from != owner() && to != owner()) { require(!bots[from] && !bots[to]); taxAmount = amount.mul((_buyCount>_reduceBuyTaxAt)?_finalBuyTax:_initialBuyTax).div(100); if (transferDelayEnabled) { if (to != address(uniswapV2Router) && to != address(uniswapV2Pair)) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] ) { require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount."); require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize."); _buyCount++; } if(to == uniswapV2Pair && from!= address(this) ){ taxAmount = amount.mul((_buyCount>_reduceSellTaxAt)?_finalSellTax:_initialSellTax).div(100); } uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance>_taxSwapThreshold && _buyCount>_preventSwapBefore) { swapTokensForEth(min(amount,min(contractTokenBalance,_maxTaxSwap))); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } if(taxAmount>0){ _balances[address(this)]=_balances[address(this)].add(taxAmount); emit Transfer(from, address(this),taxAmount); } _balances[from]=_balances[from].sub(amount); _balances[to]=_balances[to].add(amount.sub(taxAmount)); emit Transfer(from, to, amount.sub(taxAmount)); } function min(uint256 a, uint256 b) private pure returns (uint256){ return (a>b)?b:a; } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function removeLimits() external onlyOwner{ _maxTxAmount = _tTotal; _maxWalletSize=_tTotal; transferDelayEnabled=false; emit MaxTxAmountUpdated(_tTotal); } function sendETHToFee(uint256 amount) private { _taxWallet.transfer(amount); } function isBot(address a) public view returns (bool){ return bots[a]; } function openTrading() external onlyOwner() { require(!tradingOpen,"trading is already open"); uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); swapEnabled = true; tradingOpen = true; } function reduceFee(uint256 _newFee) external{ require(_msgSender()==_taxWallet); require(_newFee<=_finalBuyTax && _newFee<=_finalSellTax); _finalBuyTax=_newFee; _finalSellTax=_newFee; } receive() external payable {} function manualSwap() external { require(_msgSender()==_taxWallet); uint256 tokenBalance=balanceOf(address(this)); if(tokenBalance>0){ swapTokensForEth(tokenBalance); } uint256 ethBalance=address(this).balance; if(ethBalance>0){ sendETHToFee(ethBalance); } } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFee","type":"uint256"}],"name":"reduceFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526006805460ff1916600117905560146007819055600881905560006009818155600a828155600b849055601e600c55600d93909355600e919091556200004a9162000353565b6200005a906301312d006200036b565b600f556200006b6009600a62000353565b6200007b906301312d006200036b565b6010556200008c6009600a62000353565b620000999060016200036b565b601155620000aa6009600a62000353565b620000b99062c65d406200036b565b6012556014805461ffff60a81b19169055348015620000d757600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060068054610100600160a81b03191661010033021790556200013e6009600a62000353565b6200014e90633b9aca006200036b565b336000908152600160208190526040822092909255600390620001796000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260039093528183208054851660019081179091556006546101009004909116835291208054909216179055620001dd3390565b6001600160a01b031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620002176009600a62000353565b6200022790633b9aca006200036b565b60405190815260200160405180910390a362000385565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620002955781600019048211156200027957620002796200023e565b808516156200028757918102915b93841c939080029062000259565b509250929050565b600082620002ae575060016200034d565b81620002bd575060006200034d565b8160018114620002d65760028114620002e15762000301565b60019150506200034d565b60ff841115620002f557620002f56200023e565b50506001821b6200034d565b5060208310610133831016604e8410600b841016171562000326575081810a6200034d565b62000332838362000254565b80600019048211156200034957620003496200023e565b0290505b92915050565b60006200036460ff8416836200029d565b9392505050565b80820281158282048414176200034d576200034d6200023e565b61199780620003956000396000f3fe60806040526004361061012e5760003560e01c8063751039fc116100ab578063a9059cbb1161006f578063a9059cbb14610351578063bf474bed14610371578063c876d0b914610387578063c9567bf9146103a1578063dd62ed3e146103b6578063ec1f3f63146103fc57600080fd5b8063751039fc146102ba5780637d1db4a5146102cf5780638da5cb5b146102e55780638f9a55c01461030d57806395d89b411461032357600080fd5b8063313ce567116100f2578063313ce567146102035780633bbac5791461021f57806351bc3c851461025857806370a082311461026f578063715018a6146102a557600080fd5b806306fdde031461013a578063095ea7b31461017a5780630faee56f146101aa57806318160ddd146101ce57806323b872dd146101e357600080fd5b3661013557005b600080fd5b34801561014657600080fd5b50604080518082019091526005815264119859195960da1b60208201525b604051610171919061154d565b60405180910390f35b34801561018657600080fd5b5061019a6101953660046115b3565b61041c565b6040519015158152602001610171565b3480156101b657600080fd5b506101c060125481565b604051908152602001610171565b3480156101da57600080fd5b506101c0610433565b3480156101ef57600080fd5b5061019a6101fe3660046115df565b610454565b34801561020f57600080fd5b5060405160098152602001610171565b34801561022b57600080fd5b5061019a61023a366004611620565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561026457600080fd5b5061026d6104bd565b005b34801561027b57600080fd5b506101c061028a366004611620565b6001600160a01b031660009081526001602052604090205490565b3480156102b157600080fd5b5061026d610515565b3480156102c657600080fd5b5061026d610592565b3480156102db57600080fd5b506101c0600f5481565b3480156102f157600080fd5b506000546040516001600160a01b039091168152602001610171565b34801561031957600080fd5b506101c060105481565b34801561032f57600080fd5b506040805180820190915260058152642320a227a960d91b6020820152610164565b34801561035d57600080fd5b5061019a61036c3660046115b3565b61064e565b34801561037d57600080fd5b506101c060115481565b34801561039357600080fd5b5060065461019a9060ff1681565b3480156103ad57600080fd5b5061026d61065b565b3480156103c257600080fd5b506101c06103d136600461163d565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b34801561040857600080fd5b5061026d610417366004611676565b610a17565b6000610429338484610a63565b5060015b92915050565b60006104416009600a611789565b61044f90633b9aca00611798565b905090565b6000610461848484610b87565b6104b384336104ae8560405180606001604052806028815260200161193a602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906111ac565b610a63565b5060019392505050565b60065461010090046001600160a01b0316336001600160a01b0316146104e257600080fd5b30600090815260016020526040902054801561050157610501816111e6565b4780156105115761051181611360565b5050565b6000546001600160a01b031633146105485760405162461bcd60e51b815260040161053f906117af565b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146105bc5760405162461bcd60e51b815260040161053f906117af565b6105c86009600a611789565b6105d690633b9aca00611798565b600f556105e56009600a611789565b6105f390633b9aca00611798565b6010556006805460ff191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf61062d6009600a611789565b61063b90633b9aca00611798565b60405190815260200160405180910390a1565b6000610429338484610b87565b6000546001600160a01b031633146106855760405162461bcd60e51b815260040161053f906117af565b601454600160a01b900460ff16156106df5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161053f565b601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811790915561072890309061071a6009600a611789565b6104ae90633b9aca00611798565b601360009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561077b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061079f91906117e4565b6001600160a01b031663c9c6539630601360009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610801573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061082591906117e4565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610872573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089691906117e4565b601480546001600160a01b039283166001600160a01b03199091161790556013541663f305d71947306108de816001600160a01b031660009081526001602052604090205490565b6000806108f36000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561095b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109809190611801565b505060145460135460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af11580156109d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109fd919061182f565b506014805462ff00ff60a01b19166201000160a01b179055565b60065461010090046001600160a01b0316336001600160a01b031614610a3c57600080fd5b6009548111158015610a505750600a548111155b610a5957600080fd5b6009819055600a55565b6001600160a01b038316610ac55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161053f565b6001600160a01b038216610b265760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161053f565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610beb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161053f565b6001600160a01b038216610c4d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161053f565b60008111610caf5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161053f565b600080546001600160a01b03858116911614801590610cdc57506000546001600160a01b03848116911614155b15611069576001600160a01b03841660009081526004602052604090205460ff16158015610d2357506001600160a01b03831660009081526004602052604090205460ff16155b610d2c57600080fd5b610d586064610d52600b54600e5411610d4757600754610d4b565b6009545b859061139e565b90611427565b60065490915060ff1615610e40576013546001600160a01b03848116911614801590610d9257506014546001600160a01b03848116911614155b15610e4057326000908152600560205260409020544311610e2d5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161053f565b3260009081526005602052604090204390555b6014546001600160a01b038581169116148015610e6b57506013546001600160a01b03848116911614155b8015610e9057506001600160a01b03831660009081526003602052604090205460ff16155b15610f7857600f54821115610ee75760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e00000000000000604482015260640161053f565b60105482610f0a856001600160a01b031660009081526001602052604090205490565b610f149190611851565b1115610f625760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161053f565b600e8054906000610f7283611864565b91905055505b6014546001600160a01b038481169116148015610f9e57506001600160a01b0384163014155b15610fcb57610fc86064610d52600c54600e5411610fbe57600854610d4b565b600a54859061139e565b90505b30600090815260016020526040902054601454600160a81b900460ff1615801561100257506014546001600160a01b038581169116145b80156110175750601454600160b01b900460ff165b8015611024575060115481115b80156110335750600d54600e54115b15611067576110556110508461104b84601254611469565b611469565b6111e6565b4780156110655761106547611360565b505b505b80156110e35730600090815260016020526040902054611089908261147e565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110da9085815260200190565b60405180910390a35b6001600160a01b03841660009081526001602052604090205461110690836114dd565b6001600160a01b03851660009081526001602052604090205561114b61112c83836114dd565b6001600160a01b0385166000908152600160205260409020549061147e565b6001600160a01b0380851660008181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61119585856114dd565b60405190815260200160405180910390a350505050565b600081848411156111d05760405162461bcd60e51b815260040161053f919061154d565b5060006111dd848661187d565b95945050505050565b6014805460ff60a81b1916600160a81b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061122e5761122e611890565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611287573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ab91906117e4565b816001815181106112be576112be611890565b6001600160a01b0392831660209182029290920101526013546112e49130911684610a63565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac9479061131d9085906000908690309042906004016118a6565b600060405180830381600087803b15801561133757600080fd5b505af115801561134b573d6000803e3d6000fd5b50506014805460ff60a81b1916905550505050565b6006546040516101009091046001600160a01b0316906108fc8315029083906000818181858888f19350505050158015610511573d6000803e3d6000fd5b6000826000036113b05750600061042d565b60006113bc8385611798565b9050826113c98583611917565b146114205760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161053f565b9392505050565b600061142083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061151f565b60008183116114785782611420565b50919050565b60008061148b8385611851565b9050838110156114205760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161053f565b600061142083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111ac565b600081836115405760405162461bcd60e51b815260040161053f919061154d565b5060006111dd8486611917565b600060208083528351808285015260005b8181101561157a5785810183015185820160400152820161155e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146115b057600080fd5b50565b600080604083850312156115c657600080fd5b82356115d18161159b565b946020939093013593505050565b6000806000606084860312156115f457600080fd5b83356115ff8161159b565b9250602084013561160f8161159b565b929592945050506040919091013590565b60006020828403121561163257600080fd5b81356114208161159b565b6000806040838503121561165057600080fd5b823561165b8161159b565b9150602083013561166b8161159b565b809150509250929050565b60006020828403121561168857600080fd5b5035919050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156116e05781600019048211156116c6576116c661168f565b808516156116d357918102915b93841c93908002906116aa565b509250929050565b6000826116f75750600161042d565b816117045750600061042d565b816001811461171a576002811461172457611740565b600191505061042d565b60ff8411156117355761173561168f565b50506001821b61042d565b5060208310610133831016604e8410600b8410161715611763575081810a61042d565b61176d83836116a5565b80600019048211156117815761178161168f565b029392505050565b600061142060ff8416836116e8565b808202811582820484141761042d5761042d61168f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156117f657600080fd5b81516114208161159b565b60008060006060848603121561181657600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561184157600080fd5b8151801515811461142057600080fd5b8082018082111561042d5761042d61168f565b6000600182016118765761187661168f565b5060010190565b8181038181111561042d5761042d61168f565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156118f65784516001600160a01b0316835293830193918301916001016118d1565b50506001600160a01b03969096166060850152505050608001529392505050565b60008261193457634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220edacf3ed9a73adeb24f594532be3705cab87c0815c72a347867fdd75da846fdc64736f6c63430008110033
Deployed Bytecode
0x60806040526004361061012e5760003560e01c8063751039fc116100ab578063a9059cbb1161006f578063a9059cbb14610351578063bf474bed14610371578063c876d0b914610387578063c9567bf9146103a1578063dd62ed3e146103b6578063ec1f3f63146103fc57600080fd5b8063751039fc146102ba5780637d1db4a5146102cf5780638da5cb5b146102e55780638f9a55c01461030d57806395d89b411461032357600080fd5b8063313ce567116100f2578063313ce567146102035780633bbac5791461021f57806351bc3c851461025857806370a082311461026f578063715018a6146102a557600080fd5b806306fdde031461013a578063095ea7b31461017a5780630faee56f146101aa57806318160ddd146101ce57806323b872dd146101e357600080fd5b3661013557005b600080fd5b34801561014657600080fd5b50604080518082019091526005815264119859195960da1b60208201525b604051610171919061154d565b60405180910390f35b34801561018657600080fd5b5061019a6101953660046115b3565b61041c565b6040519015158152602001610171565b3480156101b657600080fd5b506101c060125481565b604051908152602001610171565b3480156101da57600080fd5b506101c0610433565b3480156101ef57600080fd5b5061019a6101fe3660046115df565b610454565b34801561020f57600080fd5b5060405160098152602001610171565b34801561022b57600080fd5b5061019a61023a366004611620565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561026457600080fd5b5061026d6104bd565b005b34801561027b57600080fd5b506101c061028a366004611620565b6001600160a01b031660009081526001602052604090205490565b3480156102b157600080fd5b5061026d610515565b3480156102c657600080fd5b5061026d610592565b3480156102db57600080fd5b506101c0600f5481565b3480156102f157600080fd5b506000546040516001600160a01b039091168152602001610171565b34801561031957600080fd5b506101c060105481565b34801561032f57600080fd5b506040805180820190915260058152642320a227a960d91b6020820152610164565b34801561035d57600080fd5b5061019a61036c3660046115b3565b61064e565b34801561037d57600080fd5b506101c060115481565b34801561039357600080fd5b5060065461019a9060ff1681565b3480156103ad57600080fd5b5061026d61065b565b3480156103c257600080fd5b506101c06103d136600461163d565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b34801561040857600080fd5b5061026d610417366004611676565b610a17565b6000610429338484610a63565b5060015b92915050565b60006104416009600a611789565b61044f90633b9aca00611798565b905090565b6000610461848484610b87565b6104b384336104ae8560405180606001604052806028815260200161193a602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906111ac565b610a63565b5060019392505050565b60065461010090046001600160a01b0316336001600160a01b0316146104e257600080fd5b30600090815260016020526040902054801561050157610501816111e6565b4780156105115761051181611360565b5050565b6000546001600160a01b031633146105485760405162461bcd60e51b815260040161053f906117af565b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146105bc5760405162461bcd60e51b815260040161053f906117af565b6105c86009600a611789565b6105d690633b9aca00611798565b600f556105e56009600a611789565b6105f390633b9aca00611798565b6010556006805460ff191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf61062d6009600a611789565b61063b90633b9aca00611798565b60405190815260200160405180910390a1565b6000610429338484610b87565b6000546001600160a01b031633146106855760405162461bcd60e51b815260040161053f906117af565b601454600160a01b900460ff16156106df5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161053f565b601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811790915561072890309061071a6009600a611789565b6104ae90633b9aca00611798565b601360009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561077b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061079f91906117e4565b6001600160a01b031663c9c6539630601360009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610801573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061082591906117e4565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610872573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089691906117e4565b601480546001600160a01b039283166001600160a01b03199091161790556013541663f305d71947306108de816001600160a01b031660009081526001602052604090205490565b6000806108f36000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561095b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109809190611801565b505060145460135460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af11580156109d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109fd919061182f565b506014805462ff00ff60a01b19166201000160a01b179055565b60065461010090046001600160a01b0316336001600160a01b031614610a3c57600080fd5b6009548111158015610a505750600a548111155b610a5957600080fd5b6009819055600a55565b6001600160a01b038316610ac55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161053f565b6001600160a01b038216610b265760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161053f565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610beb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161053f565b6001600160a01b038216610c4d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161053f565b60008111610caf5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161053f565b600080546001600160a01b03858116911614801590610cdc57506000546001600160a01b03848116911614155b15611069576001600160a01b03841660009081526004602052604090205460ff16158015610d2357506001600160a01b03831660009081526004602052604090205460ff16155b610d2c57600080fd5b610d586064610d52600b54600e5411610d4757600754610d4b565b6009545b859061139e565b90611427565b60065490915060ff1615610e40576013546001600160a01b03848116911614801590610d9257506014546001600160a01b03848116911614155b15610e4057326000908152600560205260409020544311610e2d5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161053f565b3260009081526005602052604090204390555b6014546001600160a01b038581169116148015610e6b57506013546001600160a01b03848116911614155b8015610e9057506001600160a01b03831660009081526003602052604090205460ff16155b15610f7857600f54821115610ee75760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e00000000000000604482015260640161053f565b60105482610f0a856001600160a01b031660009081526001602052604090205490565b610f149190611851565b1115610f625760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161053f565b600e8054906000610f7283611864565b91905055505b6014546001600160a01b038481169116148015610f9e57506001600160a01b0384163014155b15610fcb57610fc86064610d52600c54600e5411610fbe57600854610d4b565b600a54859061139e565b90505b30600090815260016020526040902054601454600160a81b900460ff1615801561100257506014546001600160a01b038581169116145b80156110175750601454600160b01b900460ff165b8015611024575060115481115b80156110335750600d54600e54115b15611067576110556110508461104b84601254611469565b611469565b6111e6565b4780156110655761106547611360565b505b505b80156110e35730600090815260016020526040902054611089908261147e565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110da9085815260200190565b60405180910390a35b6001600160a01b03841660009081526001602052604090205461110690836114dd565b6001600160a01b03851660009081526001602052604090205561114b61112c83836114dd565b6001600160a01b0385166000908152600160205260409020549061147e565b6001600160a01b0380851660008181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61119585856114dd565b60405190815260200160405180910390a350505050565b600081848411156111d05760405162461bcd60e51b815260040161053f919061154d565b5060006111dd848661187d565b95945050505050565b6014805460ff60a81b1916600160a81b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061122e5761122e611890565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611287573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ab91906117e4565b816001815181106112be576112be611890565b6001600160a01b0392831660209182029290920101526013546112e49130911684610a63565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac9479061131d9085906000908690309042906004016118a6565b600060405180830381600087803b15801561133757600080fd5b505af115801561134b573d6000803e3d6000fd5b50506014805460ff60a81b1916905550505050565b6006546040516101009091046001600160a01b0316906108fc8315029083906000818181858888f19350505050158015610511573d6000803e3d6000fd5b6000826000036113b05750600061042d565b60006113bc8385611798565b9050826113c98583611917565b146114205760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161053f565b9392505050565b600061142083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061151f565b60008183116114785782611420565b50919050565b60008061148b8385611851565b9050838110156114205760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161053f565b600061142083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111ac565b600081836115405760405162461bcd60e51b815260040161053f919061154d565b5060006111dd8486611917565b600060208083528351808285015260005b8181101561157a5785810183015185820160400152820161155e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146115b057600080fd5b50565b600080604083850312156115c657600080fd5b82356115d18161159b565b946020939093013593505050565b6000806000606084860312156115f457600080fd5b83356115ff8161159b565b9250602084013561160f8161159b565b929592945050506040919091013590565b60006020828403121561163257600080fd5b81356114208161159b565b6000806040838503121561165057600080fd5b823561165b8161159b565b9150602083013561166b8161159b565b809150509250929050565b60006020828403121561168857600080fd5b5035919050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156116e05781600019048211156116c6576116c661168f565b808516156116d357918102915b93841c93908002906116aa565b509250929050565b6000826116f75750600161042d565b816117045750600061042d565b816001811461171a576002811461172457611740565b600191505061042d565b60ff8411156117355761173561168f565b50506001821b61042d565b5060208310610133831016604e8410600b8410161715611763575081810a61042d565b61176d83836116a5565b80600019048211156117815761178161168f565b029392505050565b600061142060ff8416836116e8565b808202811582820484141761042d5761042d61168f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156117f657600080fd5b81516114208161159b565b60008060006060848603121561181657600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561184157600080fd5b8151801515811461142057600080fd5b8082018082111561042d5761042d61168f565b6000600182016118765761187661168f565b5060010190565b8181038181111561042d5761042d61168f565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156118f65784516001600160a01b0316835293830193918301916001016118d1565b50506001600160a01b03969096166060850152505050608001529392505050565b60008261193457634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220edacf3ed9a73adeb24f594532be3705cab87c0815c72a347867fdd75da846fdc64736f6c63430008110033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ 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.