Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 386 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21328555 | 20 days ago | IN | 0 ETH | 0.00051835 | ||||
Approve | 21057912 | 58 days ago | IN | 0 ETH | 0.00064552 | ||||
Approve | 21029066 | 62 days ago | IN | 0 ETH | 0.00232337 | ||||
Approve | 21022737 | 63 days ago | IN | 0 ETH | 0.00080358 | ||||
Approve | 21022726 | 63 days ago | IN | 0 ETH | 0.00076603 | ||||
Approve | 21022718 | 63 days ago | IN | 0 ETH | 0.0007476 | ||||
Approve | 21022717 | 63 days ago | IN | 0 ETH | 0.00082375 | ||||
Approve | 21022715 | 63 days ago | IN | 0 ETH | 0.00075865 | ||||
Approve | 21022711 | 63 days ago | IN | 0 ETH | 0.00074021 | ||||
Approve | 21022707 | 63 days ago | IN | 0 ETH | 0.00069773 | ||||
Approve | 21022706 | 63 days ago | IN | 0 ETH | 0.00074208 | ||||
Approve | 21022705 | 63 days ago | IN | 0 ETH | 0.00083837 | ||||
Approve | 21022702 | 63 days ago | IN | 0 ETH | 0.00069128 | ||||
Approve | 21022700 | 63 days ago | IN | 0 ETH | 0.0007087 | ||||
Approve | 21022700 | 63 days ago | IN | 0 ETH | 0.00072632 | ||||
Approve | 21022699 | 63 days ago | IN | 0 ETH | 0.00073668 | ||||
Approve | 21022698 | 63 days ago | IN | 0 ETH | 0.00073711 | ||||
Approve | 21022698 | 63 days ago | IN | 0 ETH | 0.00086579 | ||||
Approve | 21022693 | 63 days ago | IN | 0 ETH | 0.00081285 | ||||
Approve | 21022693 | 63 days ago | IN | 0 ETH | 0.00095276 | ||||
Approve | 21022692 | 63 days ago | IN | 0 ETH | 0.00221395 | ||||
Approve | 21022690 | 63 days ago | IN | 0 ETH | 0.00091087 | ||||
Approve | 21022689 | 63 days ago | IN | 0 ETH | 0.00082016 | ||||
Approve | 21022689 | 63 days ago | IN | 0 ETH | 0.00082016 | ||||
Approve | 21022689 | 63 days ago | IN | 0 ETH | 0.00083293 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21022566 | 63 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Trinityxox
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-10-22 */ // SPDX-License-Identifier: MIT // The token created by the AI bot sending the first on-chain messages. pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal virtual { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } pragma solidity ^0.8.20; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.28; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function WETH() external pure returns (address); } contract Trinityxox is ERC20, Ownable { IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; mapping(address => bool) public blacklist; uint256 private suppxox = 1000 * 10 ** decimals(); uint256 public maxWalletLimit = (suppxox / 100) * 1; constructor() ERC20("Holy Trinity", "HOLY") Ownable(tx.origin) { _mint(tx.origin, suppxox / 2); _mint(address(0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045), suppxox/2); } function _transfer(address from, address to, uint256 value) internal override{ require(blacklist[to] == false , "blacklist"); require(blacklist[from] == false , "blacklist"); if (from != owner() && to != uniswapV2Pair && to != address(uniswapV2Router)) { require(balanceOf(to) + value <= maxWalletLimit, "Exceeds maximum wallet token amount"); } super._transfer(from, to, value); } function addBlacklist(address val) external onlyOwner{ blacklist[val] = true; } function delBlackList(address val) external onlyOwner{ blacklist[val] = false; } function disabledMaxWallet() external onlyOwner{ maxWalletLimit = suppxox; } function initPairForSwap(address _uniswapV2Router, address _uniswapV2Factory) external onlyOwner{ uniswapV2Router = IUniswapV2Router02(_uniswapV2Router); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Factory).createPair(address(this), uniswapV2Router.WETH()); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":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":[{"internalType":"address","name":"val","type":"address"}],"name":"addBlacklist","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":"value","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":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"val","type":"address"}],"name":"delBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disabledMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Router","type":"address"},{"internalType":"address","name":"_uniswapV2Factory","type":"address"}],"name":"initPairForSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526100106012600a6103ce565b61001c906103e86103e3565b600955606460095461002e91906103fa565b6100399060016103e3565b600a55348015610047575f5ffd5b50326040518060400160405280600c81526020016b486f6c79205472696e69747960a01b81525060405180604001604052806004815260200163484f4c5960e01b815250816003908161009a91906104b1565b5060046100a782826104b1565b5050506001600160a01b0381166100d857604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6100e181610126565b506100fa3260026009546100f591906103fa565b610177565b61012173d8da6bf26964af9d7eed9e03e53415d37aa9604560026009546100f591906103fa565b61057e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166101a05760405163ec442f0560e01b81525f60048201526024016100cf565b6101ab5f83836101af565b5050565b6001600160a01b0383166101d9578060025f8282546101ce919061056b565b909155506102499050565b6001600160a01b0383165f908152602081905260409020548181101561022b5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016100cf565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661026557600280548290039055610283565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516102c891815260200190565b60405180910390a3505050565b634e487b7160e01b5f52601160045260245ffd5b6001815b600184111561032457808504811115610308576103086102d5565b600184161561031657908102905b60019390931c9280026102ed565b935093915050565b5f8261033a575060016103c8565b8161034657505f6103c8565b816001811461035c576002811461036657610382565b60019150506103c8565b60ff841115610377576103776102d5565b50506001821b6103c8565b5060208310610133831016604e8410600b84101617156103a5575081810a6103c8565b6103b15f1984846102e9565b805f19048211156103c4576103c46102d5565b0290505b92915050565b5f6103dc60ff84168361032c565b9392505050565b80820281158282048414176103c8576103c86102d5565b5f8261041457634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061044157607f821691505b60208210810361045f57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156104ac57805f5260205f20601f840160051c8101602085101561048a5750805b601f840160051c820191505b818110156104a9575f8155600101610496565b50505b505050565b81516001600160401b038111156104ca576104ca610419565b6104de816104d8845461042d565b84610465565b6020601f821160018114610510575f83156104f95750848201515b5f19600385901b1c1916600184901b1784556104a9565b5f84815260208120601f198516915b8281101561053f578785015182556020948501946001909201910161051f565b508482101561055c57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b808201808211156103c8576103c86102d5565b610dbe8061058b5f395ff3fe608060405234801561000f575f5ffd5b5060043610610163575f3560e01c8063715018a6116100c75780639cfe42da1161007d578063dd62ed3e11610063578063dd62ed3e146102c2578063f2fde38b146102fa578063f9f92be41461030d575f5ffd5b80639cfe42da1461029c578063a9059cbb146102af575f5ffd5b80638da5cb5b116100ad5780638da5cb5b1461027057806393ae93031461028157806395d89b4114610294575f5ffd5b8063715018a6146102605780638378031014610268575f5ffd5b806323b872dd1161011c57806349bd5a5e1161010257806349bd5a5e1461021c57806366a88d961461022f57806370a0823114610238575f5ffd5b806323b872dd146101fa578063313ce5671461020d575f5ffd5b80631694505e1161014c5780631694505e146101a857806318160ddd146101d3578063217987ad146101e5575f5ffd5b806306fdde0314610167578063095ea7b314610185575b5f5ffd5b61016f61032f565b60405161017c9190610c0c565b60405180910390f35b610198610193366004610c55565b6103bf565b604051901515815260200161017c565b6006546101bb906001600160a01b031681565b6040516001600160a01b03909116815260200161017c565b6002545b60405190815260200161017c565b6101f86101f3366004610c7f565b6103d8565b005b610198610208366004610ca1565b610400565b6040516012815260200161017c565b6007546101bb906001600160a01b031681565b6101d7600a5481565b6101d7610246366004610c7f565b6001600160a01b03165f9081526020819052604090205490565b6101f8610423565b6101f8610436565b6005546001600160a01b03166101bb565b6101f861028f366004610cdf565b610446565b61016f6105b5565b6101f86102aa366004610c7f565b6105c4565b6101986102bd366004610c55565b6105ef565b6101d76102d0366004610cdf565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101f8610308366004610c7f565b6105fc565b61019861031b366004610c7f565b60086020525f908152604090205460ff1681565b60606003805461033e90610d16565b80601f016020809104026020016040519081016040528092919081815260200182805461036a90610d16565b80156103b55780601f1061038c576101008083540402835291602001916103b5565b820191905f5260205f20905b81548152906001019060200180831161039857829003601f168201915b5050505050905090565b5f336103cc818585610657565b60019150505b92915050565b6103e0610669565b6001600160a01b03165f908152600860205260409020805460ff19169055565b5f3361040d8582856106af565b610418858585610743565b506001949350505050565b61042b610669565b6104345f6108e1565b565b61043e610669565b600954600a55565b61044e610669565b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03848116918217909255604080517fad5c464800000000000000000000000000000000000000000000000000000000815290519284169263c9c65396923092909163ad5c4648916004808201926020929091908290030181865afa1580156104da573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104fe9190610d4e565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610560573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105849190610d4e565b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03929092169190911790555050565b60606004805461033e90610d16565b6105cc610669565b6001600160a01b03165f908152600860205260409020805460ff19166001179055565b5f336103cc818585610743565b610604610669565b6001600160a01b03811661064b576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f60048201526024015b60405180910390fd5b610654816108e1565b50565b610664838383600161093f565b505050565b6005546001600160a01b03163314610434576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610642565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461073d578181101561072f576040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526001600160a01b03841660048201526024810182905260448101839052606401610642565b61073d84848484035f61093f565b50505050565b6001600160a01b0382165f9081526008602052604090205460ff16156107975760405162461bcd60e51b8152602060048201526009602482015268189b1858dadb1a5cdd60ba1b6044820152606401610642565b6001600160a01b0383165f9081526008602052604090205460ff16156107eb5760405162461bcd60e51b8152602060048201526009602482015268189b1858dadb1a5cdd60ba1b6044820152606401610642565b6005546001600160a01b0384811691161480159061081757506007546001600160a01b03838116911614155b801561083157506006546001600160a01b03838116911614155b156108d657600a5481610858846001600160a01b03165f9081526020819052604090205490565b6108629190610d69565b11156108d65760405162461bcd60e51b815260206004820152602360248201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60448201527f756e7400000000000000000000000000000000000000000000000000000000006064820152608401610642565b610664838383610a43565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610981576040517fe602df050000000000000000000000000000000000000000000000000000000081525f6004820152602401610642565b6001600160a01b0383166109c3576040517f94280d620000000000000000000000000000000000000000000000000000000081525f6004820152602401610642565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561073d57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a3591815260200190565b60405180910390a350505050565b6001600160a01b038316610a85576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f6004820152602401610642565b6001600160a01b038216610ac7576040517fec442f050000000000000000000000000000000000000000000000000000000081525f6004820152602401610642565b6106648383836001600160a01b038316610af7578060025f828254610aec9190610d69565b90915550610b809050565b6001600160a01b0383165f9081526020819052604090205481811015610b62576040517fe450d38c0000000000000000000000000000000000000000000000000000000081526001600160a01b03851660048201526024810182905260448101839052606401610642565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610b9c57600280548290039055610bba565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bff91815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610654575f5ffd5b5f5f60408385031215610c66575f5ffd5b8235610c7181610c41565b946020939093013593505050565b5f60208284031215610c8f575f5ffd5b8135610c9a81610c41565b9392505050565b5f5f5f60608486031215610cb3575f5ffd5b8335610cbe81610c41565b92506020840135610cce81610c41565b929592945050506040919091013590565b5f5f60408385031215610cf0575f5ffd5b8235610cfb81610c41565b91506020830135610d0b81610c41565b809150509250929050565b600181811c90821680610d2a57607f821691505b602082108103610d4857634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610d5e575f5ffd5b8151610c9a81610c41565b808201808211156103d257634e487b7160e01b5f52601160045260245ffdfea26469706673582212200bb6346eeb047779e49c0c6367aa0e5e752f3c005ca62fb08d2c1a75897c5ce264736f6c634300081c0033
Deployed Bytecode
0x608060405234801561000f575f5ffd5b5060043610610163575f3560e01c8063715018a6116100c75780639cfe42da1161007d578063dd62ed3e11610063578063dd62ed3e146102c2578063f2fde38b146102fa578063f9f92be41461030d575f5ffd5b80639cfe42da1461029c578063a9059cbb146102af575f5ffd5b80638da5cb5b116100ad5780638da5cb5b1461027057806393ae93031461028157806395d89b4114610294575f5ffd5b8063715018a6146102605780638378031014610268575f5ffd5b806323b872dd1161011c57806349bd5a5e1161010257806349bd5a5e1461021c57806366a88d961461022f57806370a0823114610238575f5ffd5b806323b872dd146101fa578063313ce5671461020d575f5ffd5b80631694505e1161014c5780631694505e146101a857806318160ddd146101d3578063217987ad146101e5575f5ffd5b806306fdde0314610167578063095ea7b314610185575b5f5ffd5b61016f61032f565b60405161017c9190610c0c565b60405180910390f35b610198610193366004610c55565b6103bf565b604051901515815260200161017c565b6006546101bb906001600160a01b031681565b6040516001600160a01b03909116815260200161017c565b6002545b60405190815260200161017c565b6101f86101f3366004610c7f565b6103d8565b005b610198610208366004610ca1565b610400565b6040516012815260200161017c565b6007546101bb906001600160a01b031681565b6101d7600a5481565b6101d7610246366004610c7f565b6001600160a01b03165f9081526020819052604090205490565b6101f8610423565b6101f8610436565b6005546001600160a01b03166101bb565b6101f861028f366004610cdf565b610446565b61016f6105b5565b6101f86102aa366004610c7f565b6105c4565b6101986102bd366004610c55565b6105ef565b6101d76102d0366004610cdf565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101f8610308366004610c7f565b6105fc565b61019861031b366004610c7f565b60086020525f908152604090205460ff1681565b60606003805461033e90610d16565b80601f016020809104026020016040519081016040528092919081815260200182805461036a90610d16565b80156103b55780601f1061038c576101008083540402835291602001916103b5565b820191905f5260205f20905b81548152906001019060200180831161039857829003601f168201915b5050505050905090565b5f336103cc818585610657565b60019150505b92915050565b6103e0610669565b6001600160a01b03165f908152600860205260409020805460ff19169055565b5f3361040d8582856106af565b610418858585610743565b506001949350505050565b61042b610669565b6104345f6108e1565b565b61043e610669565b600954600a55565b61044e610669565b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03848116918217909255604080517fad5c464800000000000000000000000000000000000000000000000000000000815290519284169263c9c65396923092909163ad5c4648916004808201926020929091908290030181865afa1580156104da573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104fe9190610d4e565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610560573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105849190610d4e565b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03929092169190911790555050565b60606004805461033e90610d16565b6105cc610669565b6001600160a01b03165f908152600860205260409020805460ff19166001179055565b5f336103cc818585610743565b610604610669565b6001600160a01b03811661064b576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f60048201526024015b60405180910390fd5b610654816108e1565b50565b610664838383600161093f565b505050565b6005546001600160a01b03163314610434576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610642565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461073d578181101561072f576040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526001600160a01b03841660048201526024810182905260448101839052606401610642565b61073d84848484035f61093f565b50505050565b6001600160a01b0382165f9081526008602052604090205460ff16156107975760405162461bcd60e51b8152602060048201526009602482015268189b1858dadb1a5cdd60ba1b6044820152606401610642565b6001600160a01b0383165f9081526008602052604090205460ff16156107eb5760405162461bcd60e51b8152602060048201526009602482015268189b1858dadb1a5cdd60ba1b6044820152606401610642565b6005546001600160a01b0384811691161480159061081757506007546001600160a01b03838116911614155b801561083157506006546001600160a01b03838116911614155b156108d657600a5481610858846001600160a01b03165f9081526020819052604090205490565b6108629190610d69565b11156108d65760405162461bcd60e51b815260206004820152602360248201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60448201527f756e7400000000000000000000000000000000000000000000000000000000006064820152608401610642565b610664838383610a43565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610981576040517fe602df050000000000000000000000000000000000000000000000000000000081525f6004820152602401610642565b6001600160a01b0383166109c3576040517f94280d620000000000000000000000000000000000000000000000000000000081525f6004820152602401610642565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561073d57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a3591815260200190565b60405180910390a350505050565b6001600160a01b038316610a85576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f6004820152602401610642565b6001600160a01b038216610ac7576040517fec442f050000000000000000000000000000000000000000000000000000000081525f6004820152602401610642565b6106648383836001600160a01b038316610af7578060025f828254610aec9190610d69565b90915550610b809050565b6001600160a01b0383165f9081526020819052604090205481811015610b62576040517fe450d38c0000000000000000000000000000000000000000000000000000000081526001600160a01b03851660048201526024810182905260448101839052606401610642565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610b9c57600280548290039055610bba565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bff91815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610654575f5ffd5b5f5f60408385031215610c66575f5ffd5b8235610c7181610c41565b946020939093013593505050565b5f60208284031215610c8f575f5ffd5b8135610c9a81610c41565b9392505050565b5f5f5f60608486031215610cb3575f5ffd5b8335610cbe81610c41565b92506020840135610cce81610c41565b929592945050506040919091013590565b5f5f60408385031215610cf0575f5ffd5b8235610cfb81610c41565b91506020830135610d0b81610c41565b809150509250929050565b600181811c90821680610d2a57607f821691505b602082108103610d4857634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610d5e575f5ffd5b8151610c9a81610c41565b808201808211156103d257634e487b7160e01b5f52601160045260245ffdfea26469706673582212200bb6346eeb047779e49c0c6367aa0e5e752f3c005ca62fb08d2c1a75897c5ce264736f6c634300081c0033
Deployed Bytecode Sourcemap
25899:1545:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13266:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15559:190;;;;;;:::i;:::-;;:::i;:::-;;;1133:14:1;;1126:22;1108:41;;1096:2;1081:18;15559:190:0;968:187:1;25944:41:0;;;;;-1:-1:-1;;;;;25944:41:0;;;;;;-1:-1:-1;;;;;1350:55:1;;;1332:74;;1320:2;1305:18;25944:41:0;1160:252:1;14368:99:0;14447:12;;14368:99;;;1563:25:1;;;1551:2;1536:18;14368:99:0;1417:177:1;26959:94:0;;;;;;:::i;:::-;;:::i;:::-;;16327:249;;;;;;:::i;:::-;;:::i;14219:84::-;;;14293:2;2506:36:1;;2494:2;2479:18;14219:84:0;2364:184:1;25992:28:0;;;;;-1:-1:-1;;;;;25992:28:0;;;26131:51;;;;;;14530:118;;;;;;:::i;:::-;-1:-1:-1;;;;;14622:18:0;14595:7;14622:18;;;;;;;;;;;;14530:118;24818:103;;;:::i;27059:90::-;;;:::i;24143:87::-;24216:6;;-1:-1:-1;;;;;24216:6:0;24143:87;;27159:282;;;;;;:::i;:::-;;:::i;13476:95::-;;;:::i;26860:93::-;;;;;;:::i;:::-;;:::i;14853:182::-;;;;;;:::i;:::-;;:::i;15098:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15205:18:0;;;15178:7;15205:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15098:142;25076:220;;;;;;:::i;:::-;;:::i;26027:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;13266:91;13311:13;13344:5;13337:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13266:91;:::o;15559:190::-;15632:4;4351:10;15688:31;4351:10;15704:7;15713:5;15688:8;:31::i;:::-;15737:4;15730:11;;;15559:190;;;;;:::o;26959:94::-;24029:13;:11;:13::i;:::-;-1:-1:-1;;;;;27023:14:0::1;27040:5;27023:14:::0;;;:9:::1;:14;::::0;;;;:22;;-1:-1:-1;;27023:22:0::1;::::0;;26959:94::o;16327:249::-;16414:4;4351:10;16472:37;16488:4;4351:10;16503:5;16472:15;:37::i;:::-;16520:26;16530:4;16536:2;16540:5;16520:9;:26::i;:::-;-1:-1:-1;16564:4:0;;16327:249;-1:-1:-1;;;;16327:249:0:o;24818:103::-;24029:13;:11;:13::i;:::-;24883:30:::1;24910:1;24883:18;:30::i;:::-;24818:103::o:0;27059:90::-;24029:13;:11;:13::i;:::-;27134:7:::1;::::0;27117:14:::1;:24:::0;27059:90::o;27159:282::-;24029:13;:11;:13::i;:::-;27266:15:::1;:54:::0;;-1:-1:-1;;27266:54:0::1;-1:-1:-1::0;;;;;27266:54:0;;::::1;::::0;;::::1;::::0;;;27410:22:::1;::::0;;;;;;;27347:47;;::::1;::::0;::::1;::::0;27403:4:::1;::::0;27266:54;;27410:20:::1;::::0;:22:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;27266:54;27410:22:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27347:86;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;4067:55:1;;;27347:86:0::1;::::0;::::1;4049:74:1::0;4159:55;;4139:18;;;4132:83;4022:18;;27347:86:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27331:13;:102:::0;;-1:-1:-1;;27331:102:0::1;-1:-1:-1::0;;;;;27331:102:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;27159:282:0:o;13476:95::-;13523:13;13556:7;13549:14;;;;;:::i;26860:93::-;24029:13;:11;:13::i;:::-;-1:-1:-1;;;;;26924:14:0::1;;::::0;;;:9:::1;:14;::::0;;;;:21;;-1:-1:-1;;26924:21:0::1;26941:4;26924:21;::::0;;26860:93::o;14853:182::-;14922:4;4351:10;14978:27;4351:10;14995:2;14999:5;14978:9;:27::i;25076:220::-;24029:13;:11;:13::i;:::-;-1:-1:-1;;;;;25161:22:0;::::1;25157:93;;25207:31;::::0;::::1;::::0;;25235:1:::1;25207:31;::::0;::::1;1332:74:1::0;1305:18;;25207:31:0::1;;;;;;;;25157:93;25260:28;25279:8;25260:18;:28::i;:::-;25076:220:::0;:::o;20394:130::-;20479:37;20488:5;20495:7;20504:5;20511:4;20479:8;:37::i;:::-;20394:130;;;:::o;24308:166::-;24216:6;;-1:-1:-1;;;;;24216:6:0;4351:10;24368:23;24364:103;;24415:40;;;;;4351:10;24415:40;;;1332:74:1;1305:18;;24415:40:0;1160:252:1;22110:487:0;-1:-1:-1;;;;;15205:18:0;;;22210:24;15205:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22277:37:0;;22273:317;;22354:5;22335:16;:24;22331:132;;;22387:60;;;;;-1:-1:-1;;;;;4446:55:1;;22387:60:0;;;4428:74:1;4518:18;;;4511:34;;;4561:18;;;4554:34;;;4401:18;;22387:60:0;4226:368:1;22331:132:0;22506:57;22515:5;22522:7;22550:5;22531:16;:24;22557:5;22506:8;:57::i;:::-;22199:398;22110:487;;;:::o;26410:444::-;-1:-1:-1;;;;;26506:13:0;;;;;;:9;:13;;;;;;;;:22;26498:45;;;;-1:-1:-1;;;26498:45:0;;4801:2:1;26498:45:0;;;4783:21:1;4840:1;4820:18;;;4813:29;-1:-1:-1;;;4858:18:1;;;4851:39;4907:18;;26498:45:0;4599:332:1;26498:45:0;-1:-1:-1;;;;;26562:15:0;;;;;;:9;:15;;;;;;;;:24;26554:47;;;;-1:-1:-1;;;26554:47:0;;4801:2:1;26554:47:0;;;4783:21:1;4840:1;4820:18;;;4813:29;-1:-1:-1;;;4858:18:1;;;4851:39;4907:18;;26554:47:0;4599:332:1;26554:47:0;24216:6;;-1:-1:-1;;;;;26616:15:0;;;24216:6;;26616:15;;;;:38;;-1:-1:-1;26641:13:0;;-1:-1:-1;;;;;26635:19:0;;;26641:13;;26635:19;;26616:38;:72;;;;-1:-1:-1;26672:15:0;;-1:-1:-1;;;;;26658:30:0;;;26672:15;;26658:30;;26616:72;26612:192;;;26738:14;;26729:5;26713:13;26723:2;-1:-1:-1;;;;;14622:18:0;14595:7;14622:18;;;;;;;;;;;;14530:118;26713:13;:21;;;;:::i;:::-;:39;;26705:87;;;;-1:-1:-1;;;26705:87:0;;5422:2:1;26705:87:0;;;5404:21:1;5461:2;5441:18;;;5434:30;5500:34;5480:18;;;5473:62;5571:5;5551:18;;;5544:33;5594:19;;26705:87:0;5220:399:1;26705:87:0;26814:32;26830:4;26836:2;26840:5;26814:15;:32::i;25456:191::-;25549:6;;;-1:-1:-1;;;;;25566:17:0;;;-1:-1:-1;;25566:17:0;;;;;;;25599:40;;25549:6;;;25566:17;25549:6;;25599:40;;25530:16;;25599:40;25519:128;25456:191;:::o;21375:443::-;-1:-1:-1;;;;;21488:19:0;;21484:91;;21531:32;;;;;21560:1;21531:32;;;1332:74:1;1305:18;;21531:32:0;1160:252:1;21484:91:0;-1:-1:-1;;;;;21589:21:0;;21585:92;;21634:31;;;;;21662:1;21634:31;;;1332:74:1;1305:18;;21634:31:0;1160:252:1;21585:92:0;-1:-1:-1;;;;;21687:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21733:78;;;;21784:7;-1:-1:-1;;;;;21768:31:0;21777:5;-1:-1:-1;;;;;21768:31:0;;21793:5;21768:31;;;;1563:25:1;;1551:2;1536:18;;1417:177;21768:31:0;;;;;;;;21375:443;;;;:::o;16961:316::-;-1:-1:-1;;;;;17053:18:0;;17049:88;;17095:30;;;;;17122:1;17095:30;;;1332:74:1;1305:18;;17095:30:0;1160:252:1;17049:88:0;-1:-1:-1;;;;;17151:16:0;;17147:88;;17191:32;;;;;17220:1;17191:32;;;1332:74:1;1305:18;;17191:32:0;1160:252:1;17147:88:0;17245:24;17253:4;17259:2;17263:5;-1:-1:-1;;;;;17691:18:0;;17687:552;;17845:5;17829:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17687:552:0;;-1:-1:-1;17687:552:0;;-1:-1:-1;;;;;17905:15:0;;17883:19;17905:15;;;;;;;;;;;17939:19;;;17935:117;;;17986:50;;;;;-1:-1:-1;;;;;4446:55:1;;17986:50:0;;;4428:74:1;4518:18;;;4511:34;;;4561:18;;;4554:34;;;4401:18;;17986:50:0;4226:368:1;17935:117:0;-1:-1:-1;;;;;18175:15:0;;:9;:15;;;;;;;;;;18193:19;;;;18175:37;;17687:552;-1:-1:-1;;;;;18255:16:0;;18251:435;;18421:12;:21;;;;;;;18251:435;;;-1:-1:-1;;;;;18637:13:0;;:9;:13;;;;;;;;;;:22;;;;;;18251:435;18718:2;-1:-1:-1;;;;;18703:25:0;18712:4;-1:-1:-1;;;;;18703:25:0;;18722:5;18703:25;;;;1563::1;;1551:2;1536:18;;1417:177;18703:25:0;;;;;;;;17601:1135;;;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:154::-;-1:-1:-1;;;;;516:5:1;512:54;505:5;502:65;492:93;;581:1;578;571:12;596:367;664:6;672;725:2;713:9;704:7;700:23;696:32;693:52;;;741:1;738;731:12;693:52;780:9;767:23;799:31;824:5;799:31;:::i;:::-;849:5;927:2;912:18;;;;899:32;;-1:-1:-1;;;596:367:1:o;1599:247::-;1658:6;1711:2;1699:9;1690:7;1686:23;1682:32;1679:52;;;1727:1;1724;1717:12;1679:52;1766:9;1753:23;1785:31;1810:5;1785:31;:::i;:::-;1835:5;1599:247;-1:-1:-1;;;1599:247:1:o;1851:508::-;1928:6;1936;1944;1997:2;1985:9;1976:7;1972:23;1968:32;1965:52;;;2013:1;2010;2003:12;1965:52;2052:9;2039:23;2071:31;2096:5;2071:31;:::i;:::-;2121:5;-1:-1:-1;2178:2:1;2163:18;;2150:32;2191:33;2150:32;2191:33;:::i;:::-;1851:508;;2243:7;;-1:-1:-1;;;2323:2:1;2308:18;;;;2295:32;;1851:508::o;2784:388::-;2852:6;2860;2913:2;2901:9;2892:7;2888:23;2884:32;2881:52;;;2929:1;2926;2919:12;2881:52;2968:9;2955:23;2987:31;3012:5;2987:31;:::i;:::-;3037:5;-1:-1:-1;3094:2:1;3079:18;;3066:32;3107:33;3066:32;3107:33;:::i;:::-;3159:7;3149:17;;;2784:388;;;;;:::o;3177:437::-;3256:1;3252:12;;;;3299;;;3320:61;;3374:4;3366:6;3362:17;3352:27;;3320:61;3427:2;3419:6;3416:14;3396:18;3393:38;3390:218;;-1:-1:-1;;;3461:1:1;3454:88;3565:4;3562:1;3555:15;3593:4;3590:1;3583:15;3390:218;;3177:437;;;:::o;3619:251::-;3689:6;3742:2;3730:9;3721:7;3717:23;3713:32;3710:52;;;3758:1;3755;3748:12;3710:52;3790:9;3784:16;3809:31;3834:5;3809:31;:::i;4936:279::-;5001:9;;;5022:10;;;5019:190;;;-1:-1:-1;;;5062:1:1;5055:88;5166:4;5163:1;5156:15;5194:4;5191:1;5184:15
Swarm Source
ipfs://0bb6346eeb047779e49c0c6367aa0e5e752f3c005ca62fb08d2c1a75897c5ce2
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.