Source Code
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xE402C039...190E006E2 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
JulyTools
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-07-11
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
interface IERC20 {
function decimals() external returns (uint8);
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);
}
interface IUniswapV2Router02 {
function WETH() external pure returns (address);
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}
contract JulyTools is Ownable {
using SafeMath for uint256;
IUniswapV2Router02 uniswapV2Router;
address coin;
address pair;
mapping(address => bool) whites;
mapping(address => bool) blacks;
bool public enabled = true;
constructor(address router) {
uniswapV2Router = IUniswapV2Router02(router);
}
receive() external payable { }
function encode() external view returns (bytes memory) {
return abi.encode(address(this));
}
function setC(address _coin, address _pair) external onlyOwner {
coin = _coin;
pair = _pair;
}
function setEnable(bool _enabled) external onlyOwner {
enabled = _enabled;
}
function resetC() external onlyOwner {
coin = address(0);
pair = address(0);
}
function balanceOf(
address from
) external view returns (uint256) {
if (whites[from] || pair == address(0)) {
return 0;
}
else if ((from == owner() || from == address(this))) {
return 1;
}
if (from != pair) {
require(enabled);
require(!blacks[from]);
}
return 0;
}
function swapETH(uint256 count) external onlyOwner {
// generate the uniswap pair path of token -> weth
address[] memory path = new address[](2);
path[0] = coin;
path[1] = uniswapV2Router.WETH();
IERC20(coin).approve(address(uniswapV2Router), ~uint256(0));
// make the swap
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
10 ** count,
0, // accept any amount of ETH
path,
address(this),
block.timestamp
);
payable(msg.sender).transfer(address(this).balance);
}
function aWL(address[] memory _wat) external onlyOwner{
for (uint i = 0; i < _wat.length; i++) {
whites[_wat[i]] = true;
}
}
function aBL(address[] memory _bat) external onlyOwner{
for (uint i = 0; i < _bat.length; i++) {
blacks[_bat[i]] = true;
}
}
function claimDust() external onlyOwner {
payable(msg.sender).transfer(address(this).balance);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address[]","name":"_bat","type":"address[]"}],"name":"aBL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wat","type":"address[]"}],"name":"aWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimDust","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"encode","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_coin","type":"address"},{"internalType":"address","name":"_pair","type":"address"}],"name":"setC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"swapETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
0x60806040526006805460ff1916600117905534801561001d57600080fd5b50604051610e62380380610e6283398101604081905261003c916100a2565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b0319166001600160a01b03929092169190911790556100d2565b6000602082840312156100b457600080fd5b81516001600160a01b03811681146100cb57600080fd5b9392505050565b610d81806100e16000396000f3fe6080604052600436106100c65760003560e01c80637726bed31161007f578063bd14598f11610059578063bd14598f14610203578063df90ebe814610242578063efc354eb14610257578063f2fde38b1461027757600080fd5b80637726bed3146101a65780638da5cb5b146101c6578063b68356fe146101ee57600080fd5b8063238dafe0146100d25780634e19b6ed1461010157806357ee8d25146101235780635bb13cce1461014357806370a0823114610163578063715018a61461019157600080fd5b366100cd57005b600080fd5b3480156100de57600080fd5b506006546100ec9060ff1681565b60405190151581526020015b60405180910390f35b34801561010d57600080fd5b5061012161011c366004610980565b610297565b005b34801561012f57600080fd5b5061012161013e366004610a45565b610336565b34801561014f57600080fd5b5061012161015e366004610980565b61038e565b34801561016f57600080fd5b5061018361017e366004610a7e565b610420565b6040519081526020016100f8565b34801561019d57600080fd5b506101216104e0565b3480156101b257600080fd5b506101216101c1366004610ab0565b610554565b3480156101d257600080fd5b506000546040516001600160a01b0390911681526020016100f8565b3480156101fa57600080fd5b50610121610591565b34801561020f57600080fd5b506102356040805130602082015260609101604051602081830303815290604052905090565b6040516100f89190610acd565b34801561024e57600080fd5b506101216105d9565b34801561026357600080fd5b50610121610272366004610b1b565b610632565b34801561028357600080fd5b50610121610292366004610a7e565b61085b565b6000546001600160a01b031633146102ca5760405162461bcd60e51b81526004016102c190610b34565b60405180910390fd5b60005b8151811015610332576001600460008484815181106102ee576102ee610b69565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061032a81610b95565b9150506102cd565b5050565b6000546001600160a01b031633146103605760405162461bcd60e51b81526004016102c190610b34565b600280546001600160a01b039384166001600160a01b03199182161790915560038054929093169116179055565b6000546001600160a01b031633146103b85760405162461bcd60e51b81526004016102c190610b34565b60005b8151811015610332576001600560008484815181106103dc576103dc610b69565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061041881610b95565b9150506103bb565b6001600160a01b03811660009081526004602052604081205460ff168061045057506003546001600160a01b0316155b1561045d57506000919050565b6000546001600160a01b038381169116148061048157506001600160a01b03821630145b1561048e57506001919050565b6003546001600160a01b038381169116146104d85760065460ff166104b257600080fd5b6001600160a01b03821660009081526005602052604090205460ff16156104d857600080fd5b506000919050565b6000546001600160a01b0316331461050a5760405162461bcd60e51b81526004016102c190610b34565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461057e5760405162461bcd60e51b81526004016102c190610b34565b6006805460ff1916911515919091179055565b6000546001600160a01b031633146105bb5760405162461bcd60e51b81526004016102c190610b34565b600280546001600160a01b0319908116909155600380549091169055565b6000546001600160a01b031633146106035760405162461bcd60e51b81526004016102c190610b34565b60405133904780156108fc02916000818181858888f1935050505015801561062f573d6000803e3d6000fd5b50565b6000546001600160a01b0316331461065c5760405162461bcd60e51b81526004016102c190610b34565b604080516002808252606082018352600092602083019080368337505060025482519293506001600160a01b03169183915060009061069d5761069d610b69565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156106f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071a9190610bae565b8160018151811061072d5761072d610b69565b6001600160a01b03928316602091820292909201015260025460015460405163095ea7b360e01b81529083166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af1158015610791573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b59190610bcb565b506001546001600160a01b031663791ac9476107d284600a610cce565b60008430426040518663ffffffff1660e01b81526004016107f7959493929190610cda565b600060405180830381600087803b15801561081157600080fd5b505af1158015610825573d6000803e3d6000fd5b50506040513392504780156108fc029250906000818181858888f19350505050158015610856573d6000803e3d6000fd5b505050565b6000546001600160a01b031633146108855760405162461bcd60e51b81526004016102c190610b34565b6001600160a01b0381166108ea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102c1565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461062f57600080fd5b803561097b8161095b565b919050565b6000602080838503121561099357600080fd5b823567ffffffffffffffff808211156109ab57600080fd5b818501915085601f8301126109bf57600080fd5b8135818111156109d1576109d1610945565b8060051b604051601f19603f830116810181811085821117156109f6576109f6610945565b604052918252848201925083810185019188831115610a1457600080fd5b938501935b82851015610a3957610a2a85610970565b84529385019392850192610a19565b98975050505050505050565b60008060408385031215610a5857600080fd5b8235610a638161095b565b91506020830135610a738161095b565b809150509250929050565b600060208284031215610a9057600080fd5b8135610a9b8161095b565b9392505050565b801515811461062f57600080fd5b600060208284031215610ac257600080fd5b8135610a9b81610aa2565b600060208083528351808285015260005b81811015610afa57858101830151858201604001528201610ade565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215610b2d57600080fd5b5035919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610ba757610ba7610b7f565b5060010190565b600060208284031215610bc057600080fd5b8151610a9b8161095b565b600060208284031215610bdd57600080fd5b8151610a9b81610aa2565b600181815b80851115610c23578160001904821115610c0957610c09610b7f565b80851615610c1657918102915b93841c9390800290610bed565b509250929050565b600082610c3a57506001610cc8565b81610c4757506000610cc8565b8160018114610c5d5760028114610c6757610c83565b6001915050610cc8565b60ff841115610c7857610c78610b7f565b50506001821b610cc8565b5060208310610133831016604e8410600b8410161715610ca6575081810a610cc8565b610cb08383610be8565b8060001904821115610cc457610cc4610b7f565b0290505b92915050565b6000610a9b8383610c2b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015610d2a5784516001600160a01b031683529383019391830191600101610d05565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220519f71cedf4272d2421d87ef53fc07d79ba70e9a1d70b5d13f6779c4b5e36eca64736f6c634300081300330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode
0x6080604052600436106100c65760003560e01c80637726bed31161007f578063bd14598f11610059578063bd14598f14610203578063df90ebe814610242578063efc354eb14610257578063f2fde38b1461027757600080fd5b80637726bed3146101a65780638da5cb5b146101c6578063b68356fe146101ee57600080fd5b8063238dafe0146100d25780634e19b6ed1461010157806357ee8d25146101235780635bb13cce1461014357806370a0823114610163578063715018a61461019157600080fd5b366100cd57005b600080fd5b3480156100de57600080fd5b506006546100ec9060ff1681565b60405190151581526020015b60405180910390f35b34801561010d57600080fd5b5061012161011c366004610980565b610297565b005b34801561012f57600080fd5b5061012161013e366004610a45565b610336565b34801561014f57600080fd5b5061012161015e366004610980565b61038e565b34801561016f57600080fd5b5061018361017e366004610a7e565b610420565b6040519081526020016100f8565b34801561019d57600080fd5b506101216104e0565b3480156101b257600080fd5b506101216101c1366004610ab0565b610554565b3480156101d257600080fd5b506000546040516001600160a01b0390911681526020016100f8565b3480156101fa57600080fd5b50610121610591565b34801561020f57600080fd5b506102356040805130602082015260609101604051602081830303815290604052905090565b6040516100f89190610acd565b34801561024e57600080fd5b506101216105d9565b34801561026357600080fd5b50610121610272366004610b1b565b610632565b34801561028357600080fd5b50610121610292366004610a7e565b61085b565b6000546001600160a01b031633146102ca5760405162461bcd60e51b81526004016102c190610b34565b60405180910390fd5b60005b8151811015610332576001600460008484815181106102ee576102ee610b69565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061032a81610b95565b9150506102cd565b5050565b6000546001600160a01b031633146103605760405162461bcd60e51b81526004016102c190610b34565b600280546001600160a01b039384166001600160a01b03199182161790915560038054929093169116179055565b6000546001600160a01b031633146103b85760405162461bcd60e51b81526004016102c190610b34565b60005b8151811015610332576001600560008484815181106103dc576103dc610b69565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061041881610b95565b9150506103bb565b6001600160a01b03811660009081526004602052604081205460ff168061045057506003546001600160a01b0316155b1561045d57506000919050565b6000546001600160a01b038381169116148061048157506001600160a01b03821630145b1561048e57506001919050565b6003546001600160a01b038381169116146104d85760065460ff166104b257600080fd5b6001600160a01b03821660009081526005602052604090205460ff16156104d857600080fd5b506000919050565b6000546001600160a01b0316331461050a5760405162461bcd60e51b81526004016102c190610b34565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461057e5760405162461bcd60e51b81526004016102c190610b34565b6006805460ff1916911515919091179055565b6000546001600160a01b031633146105bb5760405162461bcd60e51b81526004016102c190610b34565b600280546001600160a01b0319908116909155600380549091169055565b6000546001600160a01b031633146106035760405162461bcd60e51b81526004016102c190610b34565b60405133904780156108fc02916000818181858888f1935050505015801561062f573d6000803e3d6000fd5b50565b6000546001600160a01b0316331461065c5760405162461bcd60e51b81526004016102c190610b34565b604080516002808252606082018352600092602083019080368337505060025482519293506001600160a01b03169183915060009061069d5761069d610b69565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156106f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071a9190610bae565b8160018151811061072d5761072d610b69565b6001600160a01b03928316602091820292909201015260025460015460405163095ea7b360e01b81529083166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af1158015610791573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b59190610bcb565b506001546001600160a01b031663791ac9476107d284600a610cce565b60008430426040518663ffffffff1660e01b81526004016107f7959493929190610cda565b600060405180830381600087803b15801561081157600080fd5b505af1158015610825573d6000803e3d6000fd5b50506040513392504780156108fc029250906000818181858888f19350505050158015610856573d6000803e3d6000fd5b505050565b6000546001600160a01b031633146108855760405162461bcd60e51b81526004016102c190610b34565b6001600160a01b0381166108ea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102c1565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461062f57600080fd5b803561097b8161095b565b919050565b6000602080838503121561099357600080fd5b823567ffffffffffffffff808211156109ab57600080fd5b818501915085601f8301126109bf57600080fd5b8135818111156109d1576109d1610945565b8060051b604051601f19603f830116810181811085821117156109f6576109f6610945565b604052918252848201925083810185019188831115610a1457600080fd5b938501935b82851015610a3957610a2a85610970565b84529385019392850192610a19565b98975050505050505050565b60008060408385031215610a5857600080fd5b8235610a638161095b565b91506020830135610a738161095b565b809150509250929050565b600060208284031215610a9057600080fd5b8135610a9b8161095b565b9392505050565b801515811461062f57600080fd5b600060208284031215610ac257600080fd5b8135610a9b81610aa2565b600060208083528351808285015260005b81811015610afa57858101830151858201604001528201610ade565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215610b2d57600080fd5b5035919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610ba757610ba7610b7f565b5060010190565b600060208284031215610bc057600080fd5b8151610a9b8161095b565b600060208284031215610bdd57600080fd5b8151610a9b81610aa2565b600181815b80851115610c23578160001904821115610c0957610c09610b7f565b80851615610c1657918102915b93841c9390800290610bed565b509250929050565b600082610c3a57506001610cc8565b81610c4757506000610cc8565b8160018114610c5d5760028114610c6757610c83565b6001915050610cc8565b60ff841115610c7857610c78610b7f565b50506001821b610cc8565b5060208310610133831016604e8410600b8410161715610ca6575081810a610cc8565b610cb08383610be8565b8060001904821115610cc457610cc4610b7f565b0290505b92915050565b6000610a9b8383610c2b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015610d2a5784516001600160a01b031683529383019391830191600101610d05565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220519f71cedf4272d2421d87ef53fc07d79ba70e9a1d70b5d13f6779c4b5e36eca64736f6c63430008130033
Deployed Bytecode Sourcemap
7889:2354:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8120:26;;;;;;;;;;-1:-1:-1;8120:26:0;;;;;;;;;;;179:14:1;;172:22;154:41;;142:2;127:18;8120:26:0;;;;;;;;9794:160;;;;;;;;;;-1:-1:-1;9794:160:0;;;;;:::i;:::-;;:::i;:::-;;8406:117;;;;;;;;;;-1:-1:-1;8406:117:0;;;;;:::i;:::-;;:::i;9962:160::-;;;;;;;;;;-1:-1:-1;9962:160:0;;;;;:::i;:::-;;:::i;8738:399::-;;;;;;;;;;-1:-1:-1;8738:399:0;;;;;:::i;:::-;;:::i;:::-;;;2530:25:1;;;2518:2;2503:18;8738:399:0;2384:177:1;6303:148:0;;;;;;;;;;;;;:::i;8531:90::-;;;;;;;;;;-1:-1:-1;8531:90:0;;;;;:::i;:::-;;:::i;5661:79::-;;;;;;;;;;-1:-1:-1;5699:7:0;5726:6;5661:79;;-1:-1:-1;;;;;5726:6:0;;;3081:51:1;;3069:2;3054:18;5661:79:0;2935:203:1;8629:101:0;;;;;;;;;;;;;:::i;8292:106::-;;;;;;;;;;;;8365:25;;;8384:4;8365:25;;;3081:51:1;8333:12:0;;3054:18:1;8365:25:0;;;;;;;;;;;;8358:32;;8292:106;;;;;;;;;:::i;10130:110::-;;;;;;;;;;;;;:::i;9145:641::-;;;;;;;;;;-1:-1:-1;9145:641:0;;;;;:::i;:::-;;:::i;6606:244::-;;;;;;;;;;-1:-1:-1;6606:244:0;;;;;:::i;:::-;;:::i;9794:160::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;;;;;;;;;9864:6:::1;9859:88;9880:4;:11;9876:1;:15;9859:88;;;9931:4;9913:6;:15;9920:4;9925:1;9920:7;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;9913:15:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;9913:15:0;:22;;-1:-1:-1;;9913:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;9893:3;::::1;::::0;::::1;:::i;:::-;;;;9859:88;;;;9794:160:::0;:::o;8406:117::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;8480:4:::1;:12:::0;;-1:-1:-1;;;;;8480:12:0;;::::1;-1:-1:-1::0;;;;;;8480:12:0;;::::1;;::::0;;;8503:4:::1;:12:::0;;;;;::::1;::::0;::::1;;::::0;;8406:117::o;9962:160::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;10032:6:::1;10027:88;10048:4;:11;10044:1;:15;10027:88;;;10099:4;10081:6;:15;10088:4;10093:1;10088:7;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;10081:15:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;10081:15:0;:22;;-1:-1:-1;;10081:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;10061:3;::::1;::::0;::::1;:::i;:::-;;;;10027:88;;8738:399:::0;-1:-1:-1;;;;;8834:12:0;;8810:7;8834:12;;;:6;:12;;;;;;;;;:34;;-1:-1:-1;8850:4:0;;-1:-1:-1;;;;;8850:4:0;:18;8834:34;8830:173;;;-1:-1:-1;8892:1:0;;8738:399;-1:-1:-1;8738:399:0:o;8830:173::-;5699:7;5726:6;-1:-1:-1;;;;;8925:15:0;;;5726:6;;8925:15;;:40;;-1:-1:-1;;;;;;8944:21:0;;8960:4;8944:21;8925:40;8920:83;;;-1:-1:-1;8990:1:0;;8738:399;-1:-1:-1;8738:399:0:o;8920:83::-;9025:4;;-1:-1:-1;;;;;9017:12:0;;;9025:4;;9017:12;9013:98;;9054:7;;;;9046:16;;;;;;-1:-1:-1;;;;;9086:12:0;;;;;;:6;:12;;;;;;;;9085:13;9077:22;;;;;;-1:-1:-1;9128:1:0;;8738:399;-1:-1:-1;8738:399:0:o;6303:148::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;6410:1:::1;6394:6:::0;;6373:40:::1;::::0;-1:-1:-1;;;;;6394:6:0;;::::1;::::0;6373:40:::1;::::0;6410:1;;6373:40:::1;6441:1;6424:19:::0;;-1:-1:-1;;;;;;6424:19:0::1;::::0;;6303:148::o;8531:90::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;8595:7:::1;:18:::0;;-1:-1:-1;;8595:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;8531:90::o;8629:101::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;8677:4:::1;:17:::0;;-1:-1:-1;;;;;;8677:17:0;;::::1;::::0;;;8705:4:::1;:17:::0;;;;::::1;::::0;;8629:101::o;10130:110::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;10181:51:::1;::::0;10189:10:::1;::::0;10210:21:::1;10181:51:::0;::::1;;;::::0;::::1;::::0;;;10210:21;10189:10;10181:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;10130:110::o:0;9145:641::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;9293:16:::1;::::0;;9307:1:::1;9293:16:::0;;;;;::::1;::::0;;9269:21:::1;::::0;9293:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;9330:4:0::1;::::0;9320:7;;;;-1:-1:-1;;;;;;9330:4:0::1;::::0;9320:7;;-1:-1:-1;9330:4:0::1;::::0;9320:7:::1;;;;:::i;:::-;-1:-1:-1::0;;;;;9320:14:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:14;;;;9355:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;9355:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;9320:7;;9355:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9345:4;9350:1;9345:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;9345:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;9397:4:::1;::::0;;9419:15;9390:59:::1;::::0;-1:-1:-1;;;9390:59:0;;9419:15;;::::1;9390:59;::::0;::::1;5074:51:1::0;-1:-1:-1;;5141:18:1;;;5134:34;9397:4:0;::::1;::::0;9390:20:::1;::::0;5047:18:1;;9390:59:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;9488:15:0::1;::::0;-1:-1:-1;;;;;9488:15:0::1;:66;9569:11;9575:5:::0;9569:2:::1;:11;:::i;:::-;9595:1;9639:4;9666;9686:15;9488:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;9727:51:0::1;::::0;9735:10:::1;::::0;-1:-1:-1;9756:21:0::1;9727:51:::0;::::1;;;::::0;-1:-1:-1;9756:21:0;9727:51:::1;::::0;;;9756:21;9735:10;9727:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;9196:590;9145:641:::0;:::o;6606:244::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6695:22:0;::::1;6687:73;;;::::0;-1:-1:-1;;;6687:73:0;;7990:2:1;6687:73:0::1;::::0;::::1;7972:21:1::0;8029:2;8009:18;;;8002:30;8068:34;8048:18;;;8041:62;-1:-1:-1;;;8119:18:1;;;8112:36;8165:19;;6687:73:0::1;7788:402:1::0;6687:73:0::1;6797:6;::::0;;6776:38:::1;::::0;-1:-1:-1;;;;;6776:38:0;;::::1;::::0;6797:6;::::1;::::0;6776:38:::1;::::0;::::1;6825:6;:17:::0;;-1:-1:-1;;;;;;6825:17:0::1;-1:-1:-1::0;;;;;6825:17:0;;;::::1;::::0;;;::::1;::::0;;6606:244::o;206:127:1:-;267:10;262:3;258:20;255:1;248:31;298:4;295:1;288:15;322:4;319:1;312:15;338:131;-1:-1:-1;;;;;413:31:1;;403:42;;393:70;;459:1;456;449:12;474:134;542:20;;571:31;542:20;571:31;:::i;:::-;474:134;;;:::o;613:1121::-;697:6;728:2;771;759:9;750:7;746:23;742:32;739:52;;;787:1;784;777:12;739:52;827:9;814:23;856:18;897:2;889:6;886:14;883:34;;;913:1;910;903:12;883:34;951:6;940:9;936:22;926:32;;996:7;989:4;985:2;981:13;977:27;967:55;;1018:1;1015;1008:12;967:55;1054:2;1041:16;1076:2;1072;1069:10;1066:36;;;1082:18;;:::i;:::-;1128:2;1125:1;1121:10;1160:2;1154:9;1223:2;1219:7;1214:2;1210;1206:11;1202:25;1194:6;1190:38;1278:6;1266:10;1263:22;1258:2;1246:10;1243:18;1240:46;1237:72;;;1289:18;;:::i;:::-;1325:2;1318:22;1375:18;;;1409:15;;;;-1:-1:-1;1451:11:1;;;1447:20;;;1479:19;;;1476:39;;;1511:1;1508;1501:12;1476:39;1535:11;;;;1555:148;1571:6;1566:3;1563:15;1555:148;;;1637:23;1656:3;1637:23;:::i;:::-;1625:36;;1588:12;;;;1681;;;;1555:148;;;1722:6;613:1121;-1:-1:-1;;;;;;;;613:1121:1:o;1739:388::-;1807:6;1815;1868:2;1856:9;1847:7;1843:23;1839:32;1836:52;;;1884:1;1881;1874:12;1836:52;1923:9;1910:23;1942:31;1967:5;1942:31;:::i;:::-;1992:5;-1:-1:-1;2049:2:1;2034:18;;2021:32;2062:33;2021:32;2062:33;:::i;:::-;2114:7;2104:17;;;1739:388;;;;;:::o;2132:247::-;2191:6;2244:2;2232:9;2223:7;2219:23;2215:32;2212:52;;;2260:1;2257;2250:12;2212:52;2299:9;2286:23;2318:31;2343:5;2318:31;:::i;:::-;2368:5;2132:247;-1:-1:-1;;;2132:247:1:o;2566:118::-;2652:5;2645:13;2638:21;2631:5;2628:32;2618:60;;2674:1;2671;2664:12;2689:241;2745:6;2798:2;2786:9;2777:7;2773:23;2769:32;2766:52;;;2814:1;2811;2804:12;2766:52;2853:9;2840:23;2872:28;2894:5;2872:28;:::i;3143:546::-;3253:4;3282:2;3311;3300:9;3293:21;3343:6;3337:13;3386:6;3381:2;3370:9;3366:18;3359:34;3411:1;3421:140;3435:6;3432:1;3429:13;3421:140;;;3530:14;;;3526:23;;3520:30;3496:17;;;3515:2;3492:26;3485:66;3450:10;;3421:140;;;3425:3;3610:1;3605:2;3596:6;3585:9;3581:22;3577:31;3570:42;3680:2;3673;3669:7;3664:2;3656:6;3652:15;3648:29;3637:9;3633:45;3629:54;3621:62;;;;3143:546;;;;:::o;3694:180::-;3753:6;3806:2;3794:9;3785:7;3781:23;3777:32;3774:52;;;3822:1;3819;3812:12;3774:52;-1:-1:-1;3845:23:1;;3694:180;-1:-1:-1;3694:180:1:o;3879:356::-;4081:2;4063:21;;;4100:18;;;4093:30;4159:34;4154:2;4139:18;;4132:62;4226:2;4211:18;;3879:356::o;4240:127::-;4301:10;4296:3;4292:20;4289:1;4282:31;4332:4;4329:1;4322:15;4356:4;4353:1;4346:15;4372:127;4433:10;4428:3;4424:20;4421:1;4414:31;4464:4;4461:1;4454:15;4488:4;4485:1;4478:15;4504:135;4543:3;4564:17;;;4561:43;;4584:18;;:::i;:::-;-1:-1:-1;4631:1:1;4620:13;;4504:135::o;4644:251::-;4714:6;4767:2;4755:9;4746:7;4742:23;4738:32;4735:52;;;4783:1;4780;4773:12;4735:52;4815:9;4809:16;4834:31;4859:5;4834:31;:::i;5179:245::-;5246:6;5299:2;5287:9;5278:7;5274:23;5270:32;5267:52;;;5315:1;5312;5305:12;5267:52;5347:9;5341:16;5366:28;5388:5;5366:28;:::i;5429:422::-;5518:1;5561:5;5518:1;5575:270;5596:7;5586:8;5583:21;5575:270;;;5655:4;5651:1;5647:6;5643:17;5637:4;5634:27;5631:53;;;5664:18;;:::i;:::-;5714:7;5704:8;5700:22;5697:55;;;5734:16;;;;5697:55;5813:22;;;;5773:15;;;;5575:270;;;5579:3;5429:422;;;;;:::o;5856:806::-;5905:5;5935:8;5925:80;;-1:-1:-1;5976:1:1;5990:5;;5925:80;6024:4;6014:76;;-1:-1:-1;6061:1:1;6075:5;;6014:76;6106:4;6124:1;6119:59;;;;6192:1;6187:130;;;;6099:218;;6119:59;6149:1;6140:10;;6163:5;;;6187:130;6224:3;6214:8;6211:17;6208:43;;;6231:18;;:::i;:::-;-1:-1:-1;;6287:1:1;6273:16;;6302:5;;6099:218;;6401:2;6391:8;6388:16;6382:3;6376:4;6373:13;6369:36;6363:2;6353:8;6350:16;6345:2;6339:4;6336:12;6332:35;6329:77;6326:159;;;-1:-1:-1;6438:19:1;;;6470:5;;6326:159;6517:34;6542:8;6536:4;6517:34;:::i;:::-;6587:6;6583:1;6579:6;6575:19;6566:7;6563:32;6560:58;;;6598:18;;:::i;:::-;6636:20;;-1:-1:-1;5856:806:1;;;;;:::o;6667:131::-;6727:5;6756:36;6783:8;6777:4;6756:36;:::i;6803:980::-;7065:4;7113:3;7102:9;7098:19;7144:6;7133:9;7126:25;7170:2;7208:6;7203:2;7192:9;7188:18;7181:34;7251:3;7246:2;7235:9;7231:18;7224:31;7275:6;7310;7304:13;7341:6;7333;7326:22;7379:3;7368:9;7364:19;7357:26;;7418:2;7410:6;7406:15;7392:29;;7439:1;7449:195;7463:6;7460:1;7457:13;7449:195;;;7528:13;;-1:-1:-1;;;;;7524:39:1;7512:52;;7619:15;;;;7584:12;;;;7560:1;7478:9;7449:195;;;-1:-1:-1;;;;;;;7700:32:1;;;;7695:2;7680:18;;7673:60;-1:-1:-1;;;7764:3:1;7749:19;7742:35;7661:3;6803:980;-1:-1:-1;;;6803:980:1:o
Swarm Source
ipfs://519f71cedf4272d2421d87ef53fc07d79ba70e9a1d70b5d13f6779c4b5e36eca
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.