Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 24 from a total of 24 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 21777350 | 397 days ago | IN | 0 ETH | 0.00009855 | ||||
| Del B | 21777339 | 397 days ago | IN | 0 ETH | 0.00013014 | ||||
| Add B | 21777329 | 397 days ago | IN | 0 ETH | 0.00139191 | ||||
| Approve | 21777326 | 397 days ago | IN | 0 ETH | 0.00010011 | ||||
| Approve | 21777326 | 397 days ago | IN | 0 ETH | 0.00010011 | ||||
| Approve | 21777326 | 397 days ago | IN | 0 ETH | 0.00010011 | ||||
| Approve | 21777325 | 397 days ago | IN | 0 ETH | 0.00010195 | ||||
| Approve | 21777325 | 397 days ago | IN | 0 ETH | 0.00010195 | ||||
| Approve | 21777325 | 397 days ago | IN | 0 ETH | 0.00010195 | ||||
| Approve | 21777325 | 397 days ago | IN | 0 ETH | 0.00010195 | ||||
| Approve | 21777325 | 397 days ago | IN | 0 ETH | 0.00010195 | ||||
| Approve | 21777325 | 397 days ago | IN | 0 ETH | 0.00010195 | ||||
| Approve | 21777325 | 397 days ago | IN | 0 ETH | 0.00010195 | ||||
| Approve | 21777325 | 397 days ago | IN | 0 ETH | 0.00010195 | ||||
| Approve | 21777325 | 397 days ago | IN | 0 ETH | 0.00010195 | ||||
| Approve | 21777325 | 397 days ago | IN | 0 ETH | 0.00010195 | ||||
| Approve | 21777325 | 397 days ago | IN | 0 ETH | 0.00010195 | ||||
| Remove LM | 21777325 | 397 days ago | IN | 0 ETH | 0.00014609 | ||||
| Approve | 21777323 | 397 days ago | IN | 0 ETH | 0.00009622 | ||||
| Approve | 21777323 | 397 days ago | IN | 0 ETH | 0.00009622 | ||||
| Enable Trading | 21777322 | 397 days ago | IN | 0 ETH | 0.00071959 | ||||
| Transfer | 21777319 | 397 days ago | IN | 0.3 ETH | 0.00005479 | ||||
| Transfer | 21777287 | 397 days ago | IN | 0 ETH | 0.00011343 | ||||
| Transfer | 21777285 | 397 days ago | IN | 0.7 ETH | 0.00004217 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Add Liquidity ET... | 21777322 | 397 days ago | 1 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Feelsguy
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/**
*Submitted for verification at Etherscan.io on 2024-09-28
*/
// SPDX-License-Identifier: MIT
/*
Feels Guy is Wojak's Original name.
Website: http://www.feelsguyerc.xyz/
Telegram: https://t.me/BaoChengCZ
Twitter: https://x.com/feelsguyerc
*/
pragma solidity 0.8.24;
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 Feelsguy 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;
address payable private _taxWallet;
uint256 private _initialBuyTax=25;
uint256 private _initialSellTax=25;
uint256 private _finalBuyTax=0;
uint256 private _finalSellTax=0;
uint256 private _reduceBuyTaxAt=10;
uint256 private _reduceSellTaxAt=15;
uint256 private _preventSwapBefore=25;
uint256 private _transferTax=0;
uint256 private _buyCount=0;
uint8 private constant _decimals = 9;
uint256 private constant _tTotal = 10000000000 * 10**_decimals;
string private constant _name = unicode"Feelsguy";
string private constant _symbol = unicode"Feelsguy";
uint256 public _maxTxAmount = 2 * (_tTotal/100);
uint256 public _maxWalletSize = 2 * (_tTotal/100);
uint256 public _taxSwapThreshold= 1 * (_tTotal/1000);
uint256 public _maxTaxSwap= 1 * (_tTotal/100);
IUniswapV2Router02 private uniswapV2Router;
address private uniswapV2Pair;
bool private tradingOpen;
bool private inSwap = false;
bool private swapEnabled = false;
uint256 private sellCount = 0;
uint256 private lastSellBlock = 0;
event MaxTxAmountUpdated(uint _maxTxAmount);
event TransferTaxUpdated(uint _tax);
modifier lockTheSwap {
inSwap = true;
_;
inSwap = false;
}
constructor () {
_taxWallet = payable(0x6EE171e9b67518259d9fc14F72Fb737085594aFa);
_balances[_msgSender()] = _tTotal;
_isExcludedFromFee[owner()] = true;
_isExcludedFromFee[address(this)] = true;
_isExcludedFromFee[_taxWallet] = true;
uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
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]);
if(_buyCount==0){
taxAmount = amount.mul((_buyCount>_reduceBuyTaxAt)?_finalBuyTax:_initialBuyTax).div(100);
}
if(_buyCount>0){
taxAmount = amount.mul(_transferTax).div(100);
}
if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] ) {
require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount.");
require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize.");
taxAmount = amount.mul((_buyCount>_reduceBuyTaxAt)?_finalBuyTax:_initialBuyTax).div(100);
_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) {
if (block.number > lastSellBlock) {
sellCount = 0;
}
require(sellCount < 3, "Only 3 sells per block!");
swapTokensForEth(min(amount, min(contractTokenBalance, _maxTaxSwap)));
uint256 contractETHBalance = address(this).balance;
if (contractETHBalance > 0) {
sendETHToFee(address(this).balance);
}
sellCount++;
lastSellBlock = block.number;
}
}
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 removeLM() external onlyOwner{
_maxTxAmount = _tTotal;
_maxWalletSize=_tTotal;
emit MaxTxAmountUpdated(_tTotal);
}
function sendETHToFee(uint256 amount) private {
_taxWallet.transfer(amount);
}
function addB(address[] memory bots_) public onlyOwner {
for (uint i = 0; i < bots_.length; i++) {
bots[bots_[i]] = true;
}
}
function delB(address[] memory notbot) public onlyOwner {
for (uint i = 0; i < notbot.length; i++) {
bots[notbot[i]] = false;
}
}
function isBot(address a) public view returns (bool){
return bots[a];
}
function enableTrading() external onlyOwner() {
require(!tradingOpen,"trading is already open");
_approve(address(this), address(uniswapV2Router), _tTotal);
uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
swapEnabled = true;
tradingOpen = true;
}
receive() external payable {}
function manualSw() external {
require(_msgSender()==_taxWallet);
uint256 tokenBalance=balanceOf(address(this));
if(tokenBalance>0){
swapTokensForEth(tokenBalance);
}
uint256 ethBalance=address(this).balance;
if(ethBalance>0){
sendETHToFee(ethBalance);
}
}
function manualsend() external {
require(_msgSender()==_taxWallet);
uint256 contractETHBalance = address(this).balance;
sendETHToFee(contractETHBalance);
}
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"remappings": []
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"TransferTaxUpdated","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":"bots_","type":"address[]"}],"name":"addB","outputs":[],"stateMutability":"nonpayable","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":"notbot","type":"address[]"}],"name":"delB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLM","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":[{"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
6080604052601960065560196007555f6008555f600955600a8055600f600b556019600c555f600d555f600e5560646009600a6200003e9190620005bb565b6200004f906402540be400620005d2565b6200005b9190620005ec565b62000068906002620005d2565b600f5560646200007b6009600a620005bb565b6200008c906402540be400620005d2565b620000989190620005ec565b620000a5906002620005d2565b6010556103e8620000b96009600a620005bb565b620000ca906402540be400620005d2565b620000d69190620005ec565b620000e3906001620005d2565b6011556064620000f66009600a620005bb565b62000107906402540be400620005d2565b620001139190620005ec565b62000120906001620005d2565b6012556014805461ffff60a81b191690555f601581905560165534801562000146575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600580546001600160a01b031916736ee171e9b67518259d9fc14f72fb737085594afa179055620001bb6009600a620005bb565b620001cc906402540be400620005d2565b335f908152600160208190526040822092909255600390620001f55f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff19968716179055308152600384528281208054861660019081179091556005549092168152829020805490941617909255601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155825163c45a015560e01b81529251909263c45a01559260048083019391928290030181865afa158015620002ab573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002d191906200060c565b6001600160a01b031663c9c653963060135f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000331573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200035791906200060c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620003a2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003c891906200060c565b601480546001600160a01b0319166001600160a01b0392831690811790915560135460405163095ea7b360e01b8152921660048301525f1960248301529063095ea7b3906044016020604051808303815f875af11580156200042c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000452919062000634565b50335f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620004846009600a620005bb565b62000495906402540be400620005d2565b60405190815260200160405180910390a362000655565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200050057815f1904821115620004e457620004e4620004ac565b80851615620004f257918102915b93841c9390800290620004c5565b509250929050565b5f826200051857506001620005b5565b816200052657505f620005b5565b81600181146200053f57600281146200054a576200056a565b6001915050620005b5565b60ff8411156200055e576200055e620004ac565b50506001821b620005b5565b5060208310610133831016604e8410600b84101617156200058f575081810a620005b5565b6200059b8383620004c0565b805f1904821115620005b157620005b1620004ac565b0290505b92915050565b5f620005cb60ff84168362000508565b9392505050565b8082028115828204841417620005b557620005b5620004ac565b5f826200060757634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156200061d575f80fd5b81516001600160a01b0381168114620005cb575f80fd5b5f6020828403121562000645575f80fd5b81518015158114620005cb575f80fd5b61185980620006635f395ff3fe608060405260043610610134575f3560e01c80637d1db4a5116100a857806395d89b411161006d57806395d89b411461013f5780639b8fe4221461034a578063a9059cbb14610369578063b0bac86e14610388578063bf474bed1461039c578063dd62ed3e146103b1575f80fd5b80637d1db4a5146102c7578063874d9e3b146102dc5780638a8c523c146102fb5780638da5cb5b1461030f5780638f9a55c014610335575f80fd5b8063313ce567116100f9578063313ce567146102035780633bbac5791461021e5780634948ad1f146102555780636fc3eaec1461026b57806370a082311461027f578063715018a6146102b3575f80fd5b806306fdde031461013f578063095ea7b31461017e5780630faee56f146101ad57806318160ddd146101d057806323b872dd146101e4575f80fd5b3661013b57005b5f80fd5b34801561014a575f80fd5b5060408051808201825260088152674665656c7367757960c01b602082015290516101759190611387565b60405180910390f35b348015610189575f80fd5b5061019d6101983660046113f7565b6103f5565b6040519015158152602001610175565b3480156101b8575f80fd5b506101c260125481565b604051908152602001610175565b3480156101db575f80fd5b506101c261040b565b3480156101ef575f80fd5b5061019d6101fe366004611421565b61042c565b34801561020e575f80fd5b5060405160098152602001610175565b348015610229575f80fd5b5061019d61023836600461145f565b6001600160a01b03165f9081526004602052604090205460ff1690565b348015610260575f80fd5b50610269610493565b005b348015610276575f80fd5b50610269610550565b34801561028a575f80fd5b506101c261029936600461145f565b6001600160a01b03165f9081526001602052604090205490565b3480156102be575f80fd5b5061026961057c565b3480156102d2575f80fd5b506101c2600f5481565b3480156102e7575f80fd5b506102696102f636600461148e565b6105ed565b348015610306575f80fd5b50610269610675565b34801561031a575f80fd5b505f546040516001600160a01b039091168152602001610175565b348015610340575f80fd5b506101c260105481565b348015610355575f80fd5b5061026961036436600461148e565b610810565b348015610374575f80fd5b5061019d6103833660046113f7565b610893565b348015610393575f80fd5b5061026961089f565b3480156103a7575f80fd5b506101c260115481565b3480156103bc575f80fd5b506101c26103cb36600461154e565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f6104013384846108ec565b5060015b92915050565b5f6104186009600a611679565b610427906402540be400611687565b905090565b5f610438848484610a0f565b6104898433610484856040518060600160405280602881526020016117fc602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190611003565b6108ec565b5060019392505050565b5f546001600160a01b031633146104c55760405162461bcd60e51b81526004016104bc9061169e565b60405180910390fd5b6104d16009600a611679565b6104e0906402540be400611687565b600f556104ef6009600a611679565b6104fe906402540be400611687565b6010557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf61052e6009600a611679565b61053d906402540be400611687565b60405190815260200160405180910390a1565b6005546001600160a01b0316336001600160a01b03161461056f575f80fd5b476105798161103b565b50565b5f546001600160a01b031633146105a55760405162461bcd60e51b81526004016104bc9061169e565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146106165760405162461bcd60e51b81526004016104bc9061169e565b5f5b815181101561067157600160045f848481518110610638576106386116d3565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055600101610618565b5050565b5f546001600160a01b0316331461069e5760405162461bcd60e51b81526004016104bc9061169e565b601454600160a01b900460ff16156106f85760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104bc565b6013546107259030906001600160a01b03166107166009600a611679565b610484906402540be400611687565b6013546001600160a01b031663f305d7194730610756816001600160a01b03165f9081526001602052604090205490565b5f806107695f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156107cf573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906107f491906116e7565b50506014805462ff00ff60a01b19166201000160a01b17905550565b5f546001600160a01b031633146108395760405162461bcd60e51b81526004016104bc9061169e565b5f5b8151811015610671575f60045f84848151811061085a5761085a6116d3565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905560010161083b565b5f610401338484610a0f565b6005546001600160a01b0316336001600160a01b0316146108be575f80fd5b305f9081526001602052604090205480156108dc576108dc81611072565b478015610671576106718161103b565b6001600160a01b03831661094e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104bc565b6001600160a01b0382166109af5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104bc565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a735760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104bc565b6001600160a01b038216610ad55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104bc565b5f8111610b365760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104bc565b5f80546001600160a01b03858116911614801590610b6157505f546001600160a01b03848116911614155b15610ec6576001600160a01b0384165f9081526004602052604090205460ff16158015610ba657506001600160a01b0383165f9081526004602052604090205460ff16155b610bae575f80fd5b600e545f03610be657610be36064610bdd600a54600e5411610bd257600654610bd6565b6008545b85906111e2565b90611267565b90505b600e5415610c0b57610c086064610bdd600d54856111e290919063ffffffff16565b90505b6014546001600160a01b038581169116148015610c3657506013546001600160a01b03848116911614155b8015610c5a57506001600160a01b0383165f9081526003602052604090205460ff16155b15610d5d57600f54821115610cb15760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104bc565b60105482610cd3856001600160a01b03165f9081526001602052604090205490565b610cdd9190611712565b1115610d2b5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104bc565b610d466064610bdd600a54600e5411610bd257600654610bd6565b600e80549192505f610d5783611725565b91905055505b6014546001600160a01b038481169116148015610d8357506001600160a01b0384163014155b15610db057610dad6064610bdd600b54600e5411610da357600754610bd6565b60095485906111e2565b90505b305f90815260016020526040902054601454600160a81b900460ff16158015610de657506014546001600160a01b038581169116145b8015610dfb5750601454600160b01b900460ff165b8015610e08575060115481115b8015610e175750600c54600e54115b15610ec457601654431115610e2b575f6015555b600360155410610e7d5760405162461bcd60e51b815260206004820152601760248201527f4f6e6c7920332073656c6c732070657220626c6f636b2100000000000000000060448201526064016104bc565b610e9a610e9584610e90846012546112a8565b6112a8565b611072565b478015610eaa57610eaa4761103b565b60158054905f610eb983611725565b909155505043601655505b505b8015610f3e57305f90815260016020526040902054610ee590826112bc565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f359085815260200190565b60405180910390a35b6001600160a01b0384165f90815260016020526040902054610f60908361131a565b6001600160a01b0385165f90815260016020526040902055610fa3610f85838361131a565b6001600160a01b0385165f90815260016020526040902054906112bc565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610fec858561131a565b60405190815260200160405180910390a350505050565b5f81848411156110265760405162461bcd60e51b81526004016104bc9190611387565b505f611032848661173d565b95945050505050565b6005546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610671573d5f803e3d5ffd5b6014805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106110b8576110b86116d3565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561110f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111339190611750565b81600181518110611146576111466116d3565b6001600160a01b03928316602091820292909201015260135461116c91309116846108ec565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac947906111a49085905f9086903090429060040161176b565b5f604051808303815f87803b1580156111bb575f80fd5b505af11580156111cd573d5f803e3d5ffd5b50506014805460ff60a81b1916905550505050565b5f825f036111f157505f610405565b5f6111fc8385611687565b90508261120985836117dc565b146112605760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104bc565b9392505050565b5f61126083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061135b565b5f8183116112b65782611260565b50919050565b5f806112c88385611712565b9050838110156112605760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104bc565b5f61126083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611003565b5f818361137b5760405162461bcd60e51b81526004016104bc9190611387565b505f61103284866117dc565b5f602080835283518060208501525f5b818110156113b357858101830151858201604001528201611397565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610579575f80fd5b80356113f2816113d3565b919050565b5f8060408385031215611408575f80fd5b8235611413816113d3565b946020939093013593505050565b5f805f60608486031215611433575f80fd5b833561143e816113d3565b9250602084013561144e816113d3565b929592945050506040919091013590565b5f6020828403121561146f575f80fd5b8135611260816113d3565b634e487b7160e01b5f52604160045260245ffd5b5f602080838503121561149f575f80fd5b823567ffffffffffffffff808211156114b6575f80fd5b818501915085601f8301126114c9575f80fd5b8135818111156114db576114db61147a565b8060051b604051601f19603f830116810181811085821117156115005761150061147a565b60405291825284820192508381018501918883111561151d575f80fd5b938501935b8285101561154257611533856113e7565b84529385019392850192611522565b98975050505050505050565b5f806040838503121561155f575f80fd5b823561156a816113d3565b9150602083013561157a816113d3565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156115d357815f19048211156115b9576115b9611585565b808516156115c657918102915b93841c939080029061159e565b509250929050565b5f826115e957506001610405565b816115f557505f610405565b816001811461160b576002811461161557611631565b6001915050610405565b60ff84111561162657611626611585565b50506001821b610405565b5060208310610133831016604e8410600b8410161715611654575081810a610405565b61165e8383611599565b805f190482111561167157611671611585565b029392505050565b5f61126060ff8416836115db565b808202811582820484141761040557610405611585565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f805f606084860312156116f9575f80fd5b8351925060208401519150604084015190509250925092565b8082018082111561040557610405611585565b5f6001820161173657611736611585565b5060010190565b8181038181111561040557610405611585565b5f60208284031215611760575f80fd5b8151611260816113d3565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156117bb5784516001600160a01b031683529383019391830191600101611796565b50506001600160a01b03969096166060850152505050608001529392505050565b5f826117f657634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220663920d0f8134af5e346c387efa5a4e8e1cab2761c3a1dc23c8ef98f8b8cb27d64736f6c63430008180033
Deployed Bytecode
0x608060405260043610610134575f3560e01c80637d1db4a5116100a857806395d89b411161006d57806395d89b411461013f5780639b8fe4221461034a578063a9059cbb14610369578063b0bac86e14610388578063bf474bed1461039c578063dd62ed3e146103b1575f80fd5b80637d1db4a5146102c7578063874d9e3b146102dc5780638a8c523c146102fb5780638da5cb5b1461030f5780638f9a55c014610335575f80fd5b8063313ce567116100f9578063313ce567146102035780633bbac5791461021e5780634948ad1f146102555780636fc3eaec1461026b57806370a082311461027f578063715018a6146102b3575f80fd5b806306fdde031461013f578063095ea7b31461017e5780630faee56f146101ad57806318160ddd146101d057806323b872dd146101e4575f80fd5b3661013b57005b5f80fd5b34801561014a575f80fd5b5060408051808201825260088152674665656c7367757960c01b602082015290516101759190611387565b60405180910390f35b348015610189575f80fd5b5061019d6101983660046113f7565b6103f5565b6040519015158152602001610175565b3480156101b8575f80fd5b506101c260125481565b604051908152602001610175565b3480156101db575f80fd5b506101c261040b565b3480156101ef575f80fd5b5061019d6101fe366004611421565b61042c565b34801561020e575f80fd5b5060405160098152602001610175565b348015610229575f80fd5b5061019d61023836600461145f565b6001600160a01b03165f9081526004602052604090205460ff1690565b348015610260575f80fd5b50610269610493565b005b348015610276575f80fd5b50610269610550565b34801561028a575f80fd5b506101c261029936600461145f565b6001600160a01b03165f9081526001602052604090205490565b3480156102be575f80fd5b5061026961057c565b3480156102d2575f80fd5b506101c2600f5481565b3480156102e7575f80fd5b506102696102f636600461148e565b6105ed565b348015610306575f80fd5b50610269610675565b34801561031a575f80fd5b505f546040516001600160a01b039091168152602001610175565b348015610340575f80fd5b506101c260105481565b348015610355575f80fd5b5061026961036436600461148e565b610810565b348015610374575f80fd5b5061019d6103833660046113f7565b610893565b348015610393575f80fd5b5061026961089f565b3480156103a7575f80fd5b506101c260115481565b3480156103bc575f80fd5b506101c26103cb36600461154e565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f6104013384846108ec565b5060015b92915050565b5f6104186009600a611679565b610427906402540be400611687565b905090565b5f610438848484610a0f565b6104898433610484856040518060600160405280602881526020016117fc602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190611003565b6108ec565b5060019392505050565b5f546001600160a01b031633146104c55760405162461bcd60e51b81526004016104bc9061169e565b60405180910390fd5b6104d16009600a611679565b6104e0906402540be400611687565b600f556104ef6009600a611679565b6104fe906402540be400611687565b6010557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf61052e6009600a611679565b61053d906402540be400611687565b60405190815260200160405180910390a1565b6005546001600160a01b0316336001600160a01b03161461056f575f80fd5b476105798161103b565b50565b5f546001600160a01b031633146105a55760405162461bcd60e51b81526004016104bc9061169e565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146106165760405162461bcd60e51b81526004016104bc9061169e565b5f5b815181101561067157600160045f848481518110610638576106386116d3565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055600101610618565b5050565b5f546001600160a01b0316331461069e5760405162461bcd60e51b81526004016104bc9061169e565b601454600160a01b900460ff16156106f85760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104bc565b6013546107259030906001600160a01b03166107166009600a611679565b610484906402540be400611687565b6013546001600160a01b031663f305d7194730610756816001600160a01b03165f9081526001602052604090205490565b5f806107695f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156107cf573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906107f491906116e7565b50506014805462ff00ff60a01b19166201000160a01b17905550565b5f546001600160a01b031633146108395760405162461bcd60e51b81526004016104bc9061169e565b5f5b8151811015610671575f60045f84848151811061085a5761085a6116d3565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905560010161083b565b5f610401338484610a0f565b6005546001600160a01b0316336001600160a01b0316146108be575f80fd5b305f9081526001602052604090205480156108dc576108dc81611072565b478015610671576106718161103b565b6001600160a01b03831661094e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104bc565b6001600160a01b0382166109af5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104bc565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a735760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104bc565b6001600160a01b038216610ad55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104bc565b5f8111610b365760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104bc565b5f80546001600160a01b03858116911614801590610b6157505f546001600160a01b03848116911614155b15610ec6576001600160a01b0384165f9081526004602052604090205460ff16158015610ba657506001600160a01b0383165f9081526004602052604090205460ff16155b610bae575f80fd5b600e545f03610be657610be36064610bdd600a54600e5411610bd257600654610bd6565b6008545b85906111e2565b90611267565b90505b600e5415610c0b57610c086064610bdd600d54856111e290919063ffffffff16565b90505b6014546001600160a01b038581169116148015610c3657506013546001600160a01b03848116911614155b8015610c5a57506001600160a01b0383165f9081526003602052604090205460ff16155b15610d5d57600f54821115610cb15760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104bc565b60105482610cd3856001600160a01b03165f9081526001602052604090205490565b610cdd9190611712565b1115610d2b5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104bc565b610d466064610bdd600a54600e5411610bd257600654610bd6565b600e80549192505f610d5783611725565b91905055505b6014546001600160a01b038481169116148015610d8357506001600160a01b0384163014155b15610db057610dad6064610bdd600b54600e5411610da357600754610bd6565b60095485906111e2565b90505b305f90815260016020526040902054601454600160a81b900460ff16158015610de657506014546001600160a01b038581169116145b8015610dfb5750601454600160b01b900460ff165b8015610e08575060115481115b8015610e175750600c54600e54115b15610ec457601654431115610e2b575f6015555b600360155410610e7d5760405162461bcd60e51b815260206004820152601760248201527f4f6e6c7920332073656c6c732070657220626c6f636b2100000000000000000060448201526064016104bc565b610e9a610e9584610e90846012546112a8565b6112a8565b611072565b478015610eaa57610eaa4761103b565b60158054905f610eb983611725565b909155505043601655505b505b8015610f3e57305f90815260016020526040902054610ee590826112bc565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f359085815260200190565b60405180910390a35b6001600160a01b0384165f90815260016020526040902054610f60908361131a565b6001600160a01b0385165f90815260016020526040902055610fa3610f85838361131a565b6001600160a01b0385165f90815260016020526040902054906112bc565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610fec858561131a565b60405190815260200160405180910390a350505050565b5f81848411156110265760405162461bcd60e51b81526004016104bc9190611387565b505f611032848661173d565b95945050505050565b6005546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610671573d5f803e3d5ffd5b6014805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106110b8576110b86116d3565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561110f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111339190611750565b81600181518110611146576111466116d3565b6001600160a01b03928316602091820292909201015260135461116c91309116846108ec565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac947906111a49085905f9086903090429060040161176b565b5f604051808303815f87803b1580156111bb575f80fd5b505af11580156111cd573d5f803e3d5ffd5b50506014805460ff60a81b1916905550505050565b5f825f036111f157505f610405565b5f6111fc8385611687565b90508261120985836117dc565b146112605760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104bc565b9392505050565b5f61126083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061135b565b5f8183116112b65782611260565b50919050565b5f806112c88385611712565b9050838110156112605760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104bc565b5f61126083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611003565b5f818361137b5760405162461bcd60e51b81526004016104bc9190611387565b505f61103284866117dc565b5f602080835283518060208501525f5b818110156113b357858101830151858201604001528201611397565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610579575f80fd5b80356113f2816113d3565b919050565b5f8060408385031215611408575f80fd5b8235611413816113d3565b946020939093013593505050565b5f805f60608486031215611433575f80fd5b833561143e816113d3565b9250602084013561144e816113d3565b929592945050506040919091013590565b5f6020828403121561146f575f80fd5b8135611260816113d3565b634e487b7160e01b5f52604160045260245ffd5b5f602080838503121561149f575f80fd5b823567ffffffffffffffff808211156114b6575f80fd5b818501915085601f8301126114c9575f80fd5b8135818111156114db576114db61147a565b8060051b604051601f19603f830116810181811085821117156115005761150061147a565b60405291825284820192508381018501918883111561151d575f80fd5b938501935b8285101561154257611533856113e7565b84529385019392850192611522565b98975050505050505050565b5f806040838503121561155f575f80fd5b823561156a816113d3565b9150602083013561157a816113d3565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156115d357815f19048211156115b9576115b9611585565b808516156115c657918102915b93841c939080029061159e565b509250929050565b5f826115e957506001610405565b816115f557505f610405565b816001811461160b576002811461161557611631565b6001915050610405565b60ff84111561162657611626611585565b50506001821b610405565b5060208310610133831016604e8410600b8410161715611654575081810a610405565b61165e8383611599565b805f190482111561167157611671611585565b029392505050565b5f61126060ff8416836115db565b808202811582820484141761040557610405611585565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f805f606084860312156116f9575f80fd5b8351925060208401519150604084015190509250925092565b8082018082111561040557610405611585565b5f6001820161173657611736611585565b5060010190565b8181038181111561040557610405611585565b5f60208284031215611760575f80fd5b8151611260816113d3565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156117bb5784516001600160a01b031683529383019391830191600101611796565b50506001600160a01b03969096166060850152505050608001529392505050565b5f826117f657634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220663920d0f8134af5e346c387efa5a4e8e1cab2761c3a1dc23c8ef98f8b8cb27d64736f6c63430008180033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.