Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 425 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 37162310 | 134 days ago | IN | 0 ETH | 0.00000008 | ||||
| Approve | 34646169 | 192 days ago | IN | 0 ETH | 0.00000001 | ||||
| Approve | 33618761 | 216 days ago | IN | 0 ETH | 0.00000013 | ||||
| Approve | 33279868 | 224 days ago | IN | 0 ETH | 0.00000028 | ||||
| Approve | 33279840 | 224 days ago | IN | 0 ETH | 0.00000051 | ||||
| Approve | 33279707 | 224 days ago | IN | 0 ETH | 0.00000054 | ||||
| Approve | 33279131 | 224 days ago | IN | 0 ETH | 0.0000004 | ||||
| Approve | 33274152 | 224 days ago | IN | 0 ETH | 0.00000094 | ||||
| Approve | 33268170 | 224 days ago | IN | 0 ETH | 0.00000045 | ||||
| Approve | 33221480 | 225 days ago | IN | 0 ETH | 0.00000072 | ||||
| Approve | 33221274 | 225 days ago | IN | 0 ETH | 0.00000063 | ||||
| Approve | 33146602 | 227 days ago | IN | 0 ETH | 0.00000028 | ||||
| Approve | 33144221 | 227 days ago | IN | 0 ETH | 0.00000048 | ||||
| Approve | 33106880 | 228 days ago | IN | 0 ETH | 0.00023646 | ||||
| Approve | 33010594 | 230 days ago | IN | 0 ETH | 0.00000034 | ||||
| Approve | 33010534 | 230 days ago | IN | 0 ETH | 0.00000035 | ||||
| Approve | 32545191 | 241 days ago | IN | 0 ETH | 0.00023633 | ||||
| Approve | 31250077 | 271 days ago | IN | 0 ETH | 0.00000032 | ||||
| Approve | 31245494 | 271 days ago | IN | 0 ETH | 0.00000018 | ||||
| Approve | 28106784 | 343 days ago | IN | 0 ETH | 0.00000052 | ||||
| Approve | 28106766 | 343 days ago | IN | 0 ETH | 0.00000052 | ||||
| Approve | 26231883 | 387 days ago | IN | 0 ETH | 0.00000047 | ||||
| Approve | 25574577 | 402 days ago | IN | 0 ETH | 0.0000017 | ||||
| Approve | 25252727 | 409 days ago | IN | 0 ETH | 0.00000164 | ||||
| Approve | 25252694 | 409 days ago | IN | 0 ETH | 0.00000134 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
EATXToken
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at basescan.org on 2024-07-07 */ // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // 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/access/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) 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); } } // File @openzeppelin/contracts/interfaces/[email protected] // Original license: SPDX_License_Identifier: MIT // 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/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) 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/[email protected] // Original license: SPDX_License_Identifier: MIT // 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/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // 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 { 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); } } } } // File contracts/eatx.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.20; contract EATXToken is ERC20, Ownable { uint256 public buyTax = 75; // 0.75% (75 basis points) uint256 public sellTax = 150; // 1.5% (150 basis points) address public taxWallet; mapping(address => bool) private _isExcludedFromTax; event BuyTaxUpdated(uint256 newBuyTax); event SellTaxUpdated(uint256 newSellTax); event TaxWalletUpdated(address newTaxWallet); event ExcludeFromTax(address account, bool isExcluded); constructor() ERC20("EATUTXO", "EATX") Ownable(msg.sender) { _mint(msg.sender, 1000000000 * (10 ** decimals())); taxWallet = msg.sender; _isExcludedFromTax[msg.sender] = true; } function setTaxWallet(address _taxWallet) external onlyOwner { require(_taxWallet != address(0), "Invalid tax wallet address"); taxWallet = _taxWallet; emit TaxWalletUpdated(_taxWallet); } function setBuyTax(uint256 _buyTax) external onlyOwner { require(_buyTax <= 1000, "Buy tax too high"); // Max 10% buyTax = _buyTax; emit BuyTaxUpdated(_buyTax); } function setSellTax(uint256 _sellTax) external onlyOwner { require(_sellTax <= 1000, "Sell tax too high"); // Max 10% sellTax = _sellTax; emit SellTaxUpdated(_sellTax); } function excludeFromTax(address account, bool excluded) external onlyOwner { _isExcludedFromTax[account] = excluded; emit ExcludeFromTax(account, excluded); } function isExcludedFromTax(address account) public view returns (bool) { return _isExcludedFromTax[account]; } function _update( address from, address to, uint256 amount ) internal override { if (_isExcludedFromTax[from] || _isExcludedFromTax[to]) { super._update(from, to, amount); } else { uint256 taxAmount; if (to == address(this)) { // Sell taxAmount = (amount * sellTax) / 10000; } else { // Buy or transfer taxAmount = (amount * buyTax) / 10000; } uint256 transferAmount = amount - taxAmount; super._update(from, to, transferAmount); if (taxAmount > 0) { super._update(from, taxWallet, taxAmount); } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":false,"internalType":"uint256","name":"newBuyTax","type":"uint256"}],"name":"BuyTaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromTax","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":false,"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"SellTaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newTaxWallet","type":"address"}],"name":"TaxWalletUpdated","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":"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":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxWallet","type":"address"}],"name":"setTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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"}]Contract Creation Code
6080604052604b60065560966007553480156200001a575f80fd5b50336040518060400160405280600781526020017f4541545554584f000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f454154580000000000000000000000000000000000000000000000000000000081525081600390816200009991906200098e565b508060049081620000ab91906200098e565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000121575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000118919062000ab5565b60405180910390fd5b62000132816200020e60201b60201c565b50620001733362000148620002d160201b60201c565b600a62000156919062000c59565b633b9aca0062000167919062000ca9565b620002d960201b60201c565b3360085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555062000e32565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200034c575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000343919062000ab5565b60405180910390fd5b6200035f5f83836200036360201b60201c565b5050565b60095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680620003ff575060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156200041e57620004188383836200050660201b60201c565b62000501565b5f3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200047a576127106007548362000466919062000ca9565b62000472919062000d20565b90506200049c565b612710600654836200048d919062000ca9565b62000499919062000d20565b90505b5f8183620004ab919062000d57565b9050620004c08585836200050660201b60201c565b5f821115620004fe57620004fd8560085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846200050660201b60201c565b5b50505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200055a578060025f8282546200054d919062000d91565b925050819055506200062b565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620005e6578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620005dd9392919062000ddc565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000674578060025f8282540392505081905550620006be565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200071d919062000e17565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620007a657607f821691505b602082108103620007bc57620007bb62000761565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620008207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007e3565b6200082c8683620007e3565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000876620008706200086a8462000844565b6200084d565b62000844565b9050919050565b5f819050919050565b620008918362000856565b620008a9620008a0826200087d565b848454620007ef565b825550505050565b5f90565b620008bf620008b1565b620008cc81848462000886565b505050565b5b81811015620008f357620008e75f82620008b5565b600181019050620008d2565b5050565b601f82111562000942576200090c81620007c2565b6200091784620007d4565b8101602085101562000927578190505b6200093f6200093685620007d4565b830182620008d1565b50505b505050565b5f82821c905092915050565b5f620009645f198460080262000947565b1980831691505092915050565b5f6200097e838362000953565b9150826002028217905092915050565b62000999826200072a565b67ffffffffffffffff811115620009b557620009b462000734565b5b620009c182546200078e565b620009ce828285620008f7565b5f60209050601f83116001811462000a04575f8415620009ef578287015190505b620009fb858262000971565b86555062000a6a565b601f19841662000a1486620007c2565b5f5b8281101562000a3d5784890151825560018201915060208501945060208101905062000a16565b8683101562000a5d578489015162000a59601f89168262000953565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000a9d8262000a72565b9050919050565b62000aaf8162000a91565b82525050565b5f60208201905062000aca5f83018462000aa4565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000b5a5780860481111562000b325762000b3162000ad0565b5b600185161562000b425780820291505b808102905062000b528562000afd565b945062000b12565b94509492505050565b5f8262000b74576001905062000c46565b8162000b83575f905062000c46565b816001811462000b9c576002811462000ba75762000bdd565b600191505062000c46565b60ff84111562000bbc5762000bbb62000ad0565b5b8360020a91508482111562000bd65762000bd562000ad0565b5b5062000c46565b5060208310610133831016604e8410600b841016171562000c175782820a90508381111562000c115762000c1062000ad0565b5b62000c46565b62000c26848484600162000b09565b9250905081840481111562000c405762000c3f62000ad0565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000c658262000844565b915062000c728362000c4d565b925062000ca17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b63565b905092915050565b5f62000cb58262000844565b915062000cc28362000844565b925082820262000cd28162000844565b9150828204841483151762000cec5762000ceb62000ad0565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000d2c8262000844565b915062000d398362000844565b92508262000d4c5762000d4b62000cf3565b5b828204905092915050565b5f62000d638262000844565b915062000d708362000844565b925082820390508181111562000d8b5762000d8a62000ad0565b5b92915050565b5f62000d9d8262000844565b915062000daa8362000844565b925082820190508082111562000dc55762000dc462000ad0565b5b92915050565b62000dd68162000844565b82525050565b5f60608201905062000df15f83018662000aa4565b62000e00602083018562000dcb565b62000e0f604083018462000dcb565b949350505050565b5f60208201905062000e2c5f83018462000dcb565b92915050565b6119418062000e405f395ff3fe608060405234801561000f575f80fd5b506004361061012a575f3560e01c80638da5cb5b116100ab578063cc1776d31161006f578063cc1776d314610332578063dc1052e214610350578063dd62ed3e1461036c578063ea414b281461039c578063f2fde38b146103b85761012a565b80638da5cb5b1461027a57806395d89b4114610298578063a9059cbb146102b6578063c6a30647146102e6578063cb4ca631146103025761012a565b8063313ce567116100f2578063313ce567146101e85780634f7041a51461020657806370a0823114610224578063715018a6146102545780638cd09d501461025e5761012a565b806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c57806323b872dd1461019a5780632dc0562d146101ca575b5f80fd5b6101366103d4565b60405161014391906112f7565b60405180910390f35b610166600480360381019061016191906113a8565b610464565b6040516101739190611400565b60405180910390f35b610184610486565b6040516101919190611428565b60405180910390f35b6101b460048036038101906101af9190611441565b61048f565b6040516101c19190611400565b60405180910390f35b6101d26104bd565b6040516101df91906114a0565b60405180910390f35b6101f06104e2565b6040516101fd91906114d4565b60405180910390f35b61020e6104ea565b60405161021b9190611428565b60405180910390f35b61023e600480360381019061023991906114ed565b6104f0565b60405161024b9190611428565b60405180910390f35b61025c610535565b005b61027860048036038101906102739190611518565b610548565b005b6102826105d6565b60405161028f91906114a0565b60405180910390f35b6102a06105fe565b6040516102ad91906112f7565b60405180910390f35b6102d060048036038101906102cb91906113a8565b61068e565b6040516102dd9190611400565b60405180910390f35b61030060048036038101906102fb919061156d565b6106b0565b005b61031c600480360381019061031791906114ed565b610749565b6040516103299190611400565b60405180910390f35b61033a61079b565b6040516103479190611428565b60405180910390f35b61036a60048036038101906103659190611518565b6107a1565b005b610386600480360381019061038191906115ab565b61082f565b6040516103939190611428565b60405180910390f35b6103b660048036038101906103b191906114ed565b6108b1565b005b6103d260048036038101906103cd91906114ed565b6109a1565b005b6060600380546103e390611616565b80601f016020809104026020016040519081016040528092919081815260200182805461040f90611616565b801561045a5780601f106104315761010080835404028352916020019161045a565b820191905f5260205f20905b81548152906001019060200180831161043d57829003601f168201915b5050505050905090565b5f8061046e610a25565b905061047b818585610a2c565b600191505092915050565b5f600254905090565b5f80610499610a25565b90506104a6858285610a3e565b6104b1858585610ad0565b60019150509392505050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b60065481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61053d610bc0565b6105465f610c47565b565b610550610bc0565b6103e8811115610595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058c90611690565b60405180910390fd5b806007819055507fa6255338a5f732d64ceba7f4c18182567f9d1067eb984b46d478b37d72a52d11816040516105cb9190611428565b60405180910390a150565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461060d90611616565b80601f016020809104026020016040519081016040528092919081815260200182805461063990611616565b80156106845780601f1061065b57610100808354040283529160200191610684565b820191905f5260205f20905b81548152906001019060200180831161066757829003601f168201915b5050505050905090565b5f80610698610a25565b90506106a5818585610ad0565b600191505092915050565b6106b8610bc0565b8060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f7e9c88b87a525bea9b5a9169ddf4660ad19e19b88ea5057a584ee4d31cceec9c828260405161073d9291906116ae565b60405180910390a15050565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60075481565b6107a9610bc0565b6103e88111156107ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e59061171f565b60405180910390fd5b806006819055507f7a758dc8e99047b028278b3e2ff1416d8493a7aacee7a5dc30b6bf93270eccce816040516108249190611428565b60405180910390a150565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108b9610bc0565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e90611787565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f1797049ec5d8ec17fdce2660fb55e33695fd7ebbdb65726cc6d171c0e1c312c78160405161099691906114a0565b60405180910390a150565b6109a9610bc0565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a19575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610a1091906114a0565b60405180910390fd5b610a2281610c47565b50565b5f33905090565b610a398383836001610d0a565b505050565b5f610a49848461082f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610aca5781811015610abb578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610ab2939291906117a5565b60405180910390fd5b610ac984848484035f610d0a565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b40575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b3791906114a0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb0575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ba791906114a0565b60405180910390fd5b610bbb838383610ed9565b505050565b610bc8610a25565b73ffffffffffffffffffffffffffffffffffffffff16610be66105d6565b73ffffffffffffffffffffffffffffffffffffffff1614610c4557610c09610a25565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610c3c91906114a0565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610d7a575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610d7191906114a0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dea575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610de191906114a0565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ed3578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610eca9190611428565b60405180910390a35b50505050565b60095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610f74575060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610f8957610f84838383611054565b61104f565b5f3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fdf5761271060075483610fce9190611807565b610fd89190611875565b9050610ffd565b61271060065483610ff09190611807565b610ffa9190611875565b90505b5f818361100a91906118a5565b9050611017858583611054565b5f82111561104c5761104b8560085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611054565b5b50505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110a4578060025f82825461109891906118d8565b92505081905550611172565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561112d578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611124939291906117a5565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b9578060025f8282540392505081905550611203565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112609190611428565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156112a4578082015181840152602081019050611289565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6112c98261126d565b6112d38185611277565b93506112e3818560208601611287565b6112ec816112af565b840191505092915050565b5f6020820190508181035f83015261130f81846112bf565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6113448261131b565b9050919050565b6113548161133a565b811461135e575f80fd5b50565b5f8135905061136f8161134b565b92915050565b5f819050919050565b61138781611375565b8114611391575f80fd5b50565b5f813590506113a28161137e565b92915050565b5f80604083850312156113be576113bd611317565b5b5f6113cb85828601611361565b92505060206113dc85828601611394565b9150509250929050565b5f8115159050919050565b6113fa816113e6565b82525050565b5f6020820190506114135f8301846113f1565b92915050565b61142281611375565b82525050565b5f60208201905061143b5f830184611419565b92915050565b5f805f6060848603121561145857611457611317565b5b5f61146586828701611361565b935050602061147686828701611361565b925050604061148786828701611394565b9150509250925092565b61149a8161133a565b82525050565b5f6020820190506114b35f830184611491565b92915050565b5f60ff82169050919050565b6114ce816114b9565b82525050565b5f6020820190506114e75f8301846114c5565b92915050565b5f6020828403121561150257611501611317565b5b5f61150f84828501611361565b91505092915050565b5f6020828403121561152d5761152c611317565b5b5f61153a84828501611394565b91505092915050565b61154c816113e6565b8114611556575f80fd5b50565b5f8135905061156781611543565b92915050565b5f806040838503121561158357611582611317565b5b5f61159085828601611361565b92505060206115a185828601611559565b9150509250929050565b5f80604083850312156115c1576115c0611317565b5b5f6115ce85828601611361565b92505060206115df85828601611361565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061162d57607f821691505b6020821081036116405761163f6115e9565b5b50919050565b7f53656c6c2074617820746f6f20686967680000000000000000000000000000005f82015250565b5f61167a601183611277565b915061168582611646565b602082019050919050565b5f6020820190508181035f8301526116a78161166e565b9050919050565b5f6040820190506116c15f830185611491565b6116ce60208301846113f1565b9392505050565b7f4275792074617820746f6f2068696768000000000000000000000000000000005f82015250565b5f611709601083611277565b9150611714826116d5565b602082019050919050565b5f6020820190508181035f830152611736816116fd565b9050919050565b7f496e76616c6964207461782077616c6c657420616464726573730000000000005f82015250565b5f611771601a83611277565b915061177c8261173d565b602082019050919050565b5f6020820190508181035f83015261179e81611765565b9050919050565b5f6060820190506117b85f830186611491565b6117c56020830185611419565b6117d26040830184611419565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61181182611375565b915061181c83611375565b925082820261182a81611375565b91508282048414831517611841576118406117da565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61187f82611375565b915061188a83611375565b92508261189a57611899611848565b5b828204905092915050565b5f6118af82611375565b91506118ba83611375565b92508282039050818111156118d2576118d16117da565b5b92915050565b5f6118e282611375565b91506118ed83611375565b9250828201905080821115611905576119046117da565b5b9291505056fea2646970667358221220d0238f06a3eb99d26a85deb50bf370d5c895400356e2eb4ede6d4ee8ccbc537c64736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061012a575f3560e01c80638da5cb5b116100ab578063cc1776d31161006f578063cc1776d314610332578063dc1052e214610350578063dd62ed3e1461036c578063ea414b281461039c578063f2fde38b146103b85761012a565b80638da5cb5b1461027a57806395d89b4114610298578063a9059cbb146102b6578063c6a30647146102e6578063cb4ca631146103025761012a565b8063313ce567116100f2578063313ce567146101e85780634f7041a51461020657806370a0823114610224578063715018a6146102545780638cd09d501461025e5761012a565b806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c57806323b872dd1461019a5780632dc0562d146101ca575b5f80fd5b6101366103d4565b60405161014391906112f7565b60405180910390f35b610166600480360381019061016191906113a8565b610464565b6040516101739190611400565b60405180910390f35b610184610486565b6040516101919190611428565b60405180910390f35b6101b460048036038101906101af9190611441565b61048f565b6040516101c19190611400565b60405180910390f35b6101d26104bd565b6040516101df91906114a0565b60405180910390f35b6101f06104e2565b6040516101fd91906114d4565b60405180910390f35b61020e6104ea565b60405161021b9190611428565b60405180910390f35b61023e600480360381019061023991906114ed565b6104f0565b60405161024b9190611428565b60405180910390f35b61025c610535565b005b61027860048036038101906102739190611518565b610548565b005b6102826105d6565b60405161028f91906114a0565b60405180910390f35b6102a06105fe565b6040516102ad91906112f7565b60405180910390f35b6102d060048036038101906102cb91906113a8565b61068e565b6040516102dd9190611400565b60405180910390f35b61030060048036038101906102fb919061156d565b6106b0565b005b61031c600480360381019061031791906114ed565b610749565b6040516103299190611400565b60405180910390f35b61033a61079b565b6040516103479190611428565b60405180910390f35b61036a60048036038101906103659190611518565b6107a1565b005b610386600480360381019061038191906115ab565b61082f565b6040516103939190611428565b60405180910390f35b6103b660048036038101906103b191906114ed565b6108b1565b005b6103d260048036038101906103cd91906114ed565b6109a1565b005b6060600380546103e390611616565b80601f016020809104026020016040519081016040528092919081815260200182805461040f90611616565b801561045a5780601f106104315761010080835404028352916020019161045a565b820191905f5260205f20905b81548152906001019060200180831161043d57829003601f168201915b5050505050905090565b5f8061046e610a25565b905061047b818585610a2c565b600191505092915050565b5f600254905090565b5f80610499610a25565b90506104a6858285610a3e565b6104b1858585610ad0565b60019150509392505050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b60065481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61053d610bc0565b6105465f610c47565b565b610550610bc0565b6103e8811115610595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058c90611690565b60405180910390fd5b806007819055507fa6255338a5f732d64ceba7f4c18182567f9d1067eb984b46d478b37d72a52d11816040516105cb9190611428565b60405180910390a150565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461060d90611616565b80601f016020809104026020016040519081016040528092919081815260200182805461063990611616565b80156106845780601f1061065b57610100808354040283529160200191610684565b820191905f5260205f20905b81548152906001019060200180831161066757829003601f168201915b5050505050905090565b5f80610698610a25565b90506106a5818585610ad0565b600191505092915050565b6106b8610bc0565b8060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f7e9c88b87a525bea9b5a9169ddf4660ad19e19b88ea5057a584ee4d31cceec9c828260405161073d9291906116ae565b60405180910390a15050565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60075481565b6107a9610bc0565b6103e88111156107ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e59061171f565b60405180910390fd5b806006819055507f7a758dc8e99047b028278b3e2ff1416d8493a7aacee7a5dc30b6bf93270eccce816040516108249190611428565b60405180910390a150565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108b9610bc0565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e90611787565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f1797049ec5d8ec17fdce2660fb55e33695fd7ebbdb65726cc6d171c0e1c312c78160405161099691906114a0565b60405180910390a150565b6109a9610bc0565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a19575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610a1091906114a0565b60405180910390fd5b610a2281610c47565b50565b5f33905090565b610a398383836001610d0a565b505050565b5f610a49848461082f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610aca5781811015610abb578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610ab2939291906117a5565b60405180910390fd5b610ac984848484035f610d0a565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b40575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b3791906114a0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb0575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ba791906114a0565b60405180910390fd5b610bbb838383610ed9565b505050565b610bc8610a25565b73ffffffffffffffffffffffffffffffffffffffff16610be66105d6565b73ffffffffffffffffffffffffffffffffffffffff1614610c4557610c09610a25565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610c3c91906114a0565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610d7a575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610d7191906114a0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dea575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610de191906114a0565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ed3578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610eca9190611428565b60405180910390a35b50505050565b60095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610f74575060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610f8957610f84838383611054565b61104f565b5f3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fdf5761271060075483610fce9190611807565b610fd89190611875565b9050610ffd565b61271060065483610ff09190611807565b610ffa9190611875565b90505b5f818361100a91906118a5565b9050611017858583611054565b5f82111561104c5761104b8560085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611054565b5b50505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110a4578060025f82825461109891906118d8565b92505081905550611172565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561112d578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611124939291906117a5565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b9578060025f8282540392505081905550611203565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112609190611428565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156112a4578082015181840152602081019050611289565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6112c98261126d565b6112d38185611277565b93506112e3818560208601611287565b6112ec816112af565b840191505092915050565b5f6020820190508181035f83015261130f81846112bf565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6113448261131b565b9050919050565b6113548161133a565b811461135e575f80fd5b50565b5f8135905061136f8161134b565b92915050565b5f819050919050565b61138781611375565b8114611391575f80fd5b50565b5f813590506113a28161137e565b92915050565b5f80604083850312156113be576113bd611317565b5b5f6113cb85828601611361565b92505060206113dc85828601611394565b9150509250929050565b5f8115159050919050565b6113fa816113e6565b82525050565b5f6020820190506114135f8301846113f1565b92915050565b61142281611375565b82525050565b5f60208201905061143b5f830184611419565b92915050565b5f805f6060848603121561145857611457611317565b5b5f61146586828701611361565b935050602061147686828701611361565b925050604061148786828701611394565b9150509250925092565b61149a8161133a565b82525050565b5f6020820190506114b35f830184611491565b92915050565b5f60ff82169050919050565b6114ce816114b9565b82525050565b5f6020820190506114e75f8301846114c5565b92915050565b5f6020828403121561150257611501611317565b5b5f61150f84828501611361565b91505092915050565b5f6020828403121561152d5761152c611317565b5b5f61153a84828501611394565b91505092915050565b61154c816113e6565b8114611556575f80fd5b50565b5f8135905061156781611543565b92915050565b5f806040838503121561158357611582611317565b5b5f61159085828601611361565b92505060206115a185828601611559565b9150509250929050565b5f80604083850312156115c1576115c0611317565b5b5f6115ce85828601611361565b92505060206115df85828601611361565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061162d57607f821691505b6020821081036116405761163f6115e9565b5b50919050565b7f53656c6c2074617820746f6f20686967680000000000000000000000000000005f82015250565b5f61167a601183611277565b915061168582611646565b602082019050919050565b5f6020820190508181035f8301526116a78161166e565b9050919050565b5f6040820190506116c15f830185611491565b6116ce60208301846113f1565b9392505050565b7f4275792074617820746f6f2068696768000000000000000000000000000000005f82015250565b5f611709601083611277565b9150611714826116d5565b602082019050919050565b5f6020820190508181035f830152611736816116fd565b9050919050565b7f496e76616c6964207461782077616c6c657420616464726573730000000000005f82015250565b5f611771601a83611277565b915061177c8261173d565b602082019050919050565b5f6020820190508181035f83015261179e81611765565b9050919050565b5f6060820190506117b85f830186611491565b6117c56020830185611419565b6117d26040830184611419565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61181182611375565b915061181c83611375565b925082820261182a81611375565b91508282048414831517611841576118406117da565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61187f82611375565b915061188a83611375565b92508261189a57611899611848565b5b828204905092915050565b5f6118af82611375565b91506118ba83611375565b92508282039050818111156118d2576118d16117da565b5b92915050565b5f6118e282611375565b91506118ed83611375565b9250828201905080821115611905576119046117da565b5b9291505056fea2646970667358221220d0238f06a3eb99d26a85deb50bf370d5c895400356e2eb4ede6d4ee8ccbc537c64736f6c63430008140033
Deployed Bytecode Sourcemap
26295:2411:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16856:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19149:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17958:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19917:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26461:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17809:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26339:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18120:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3506:103;;;:::i;:::-;;27407:202;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2831:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17066:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18443:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27617:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27806:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26399:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27205:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18688:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26977:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3764;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16856:91;16901:13;16934:5;16927:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16856:91;:::o;19149:190::-;19222:4;19239:13;19255:12;:10;:12::i;:::-;19239:28;;19278:31;19287:5;19294:7;19303:5;19278:8;:31::i;:::-;19327:4;19320:11;;;19149:190;;;;:::o;17958:99::-;18010:7;18037:12;;18030:19;;17958:99;:::o;19917:249::-;20004:4;20021:15;20039:12;:10;:12::i;:::-;20021:30;;20062:37;20078:4;20084:7;20093:5;20062:15;:37::i;:::-;20110:26;20120:4;20126:2;20130:5;20110:9;:26::i;:::-;20154:4;20147:11;;;19917:249;;;;;:::o;26461:24::-;;;;;;;;;;;;;:::o;17809:84::-;17858:5;17883:2;17876:9;;17809:84;:::o;26339:26::-;;;;:::o;18120:118::-;18185:7;18212:9;:18;18222:7;18212:18;;;;;;;;;;;;;;;;18205:25;;18120:118;;;:::o;3506:103::-;2717:13;:11;:13::i;:::-;3571:30:::1;3598:1;3571:18;:30::i;:::-;3506:103::o:0;27407:202::-;2717:13;:11;:13::i;:::-;27495:4:::1;27483:8;:16;;27475:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;27553:8;27543:7;:18;;;;27577:24;27592:8;27577:24;;;;;;:::i;:::-;;;;;;;;27407:202:::0;:::o;2831:87::-;2877:7;2904:6;;;;;;;;;;;2897:13;;2831:87;:::o;17066:95::-;17113:13;17146:7;17139:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17066:95;:::o;18443:182::-;18512:4;18529:13;18545:12;:10;:12::i;:::-;18529:28;;18568:27;18578:5;18585:2;18589:5;18568:9;:27::i;:::-;18613:4;18606:11;;;18443:182;;;;:::o;27617:181::-;2717:13;:11;:13::i;:::-;27733:8:::1;27703:18;:27;27722:7;27703:27;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;27757:33;27772:7;27781:8;27757:33;;;;;;;:::i;:::-;;;;;;;;27617:181:::0;;:::o;27806:124::-;27871:4;27895:18;:27;27914:7;27895:27;;;;;;;;;;;;;;;;;;;;;;;;;27888:34;;27806:124;;;:::o;26399:28::-;;;;:::o;27205:194::-;2717:13;:11;:13::i;:::-;27290:4:::1;27279:7;:15;;27271:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;27346:7;27337:6;:16;;;;27369:22;27383:7;27369:22;;;;;;:::i;:::-;;;;;;;;27205:194:::0;:::o;18688:142::-;18768:7;18795:11;:18;18807:5;18795:18;;;;;;;;;;;;;;;:27;18814:7;18795:27;;;;;;;;;;;;;;;;18788:34;;18688:142;;;;:::o;26977:220::-;2717:13;:11;:13::i;:::-;27079:1:::1;27057:24;;:10;:24;;::::0;27049:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;27135:10;27123:9;;:22;;;;;;;;;;;;;;;;;;27161:28;27178:10;27161:28;;;;;;:::i;:::-;;;;;;;;26977:220:::0;:::o;3764:::-;2717:13;:11;:13::i;:::-;3869:1:::1;3849:22;;:8;:22;;::::0;3845:93:::1;;3923:1;3895:31;;;;;;;;;;;:::i;:::-;;;;;;;;3845:93;3948:28;3967:8;3948:18;:28::i;:::-;3764:220:::0;:::o;785:98::-;838:7;865:10;858:17;;785:98;:::o;23976:130::-;24061:37;24070:5;24077:7;24086:5;24093:4;24061:8;:37::i;:::-;23976:130;;;:::o;25692:487::-;25792:24;25819:25;25829:5;25836:7;25819:9;:25::i;:::-;25792:52;;25879:17;25859:16;:37;25855:317;;25936:5;25917:16;:24;25913:132;;;25996:7;26005:16;26023:5;25969:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;25913:132;26088:57;26097:5;26104:7;26132:5;26113:16;:24;26139:5;26088:8;:57::i;:::-;25855:317;25781:398;25692:487;;;:::o;20551:308::-;20651:1;20635:18;;:4;:18;;;20631:88;;20704:1;20677:30;;;;;;;;;;;:::i;:::-;;;;;;;;20631:88;20747:1;20733:16;;:2;:16;;;20729:88;;20802:1;20773:32;;;;;;;;;;;:::i;:::-;;;;;;;;20729:88;20827:24;20835:4;20841:2;20845:5;20827:7;:24::i;:::-;20551:308;;;:::o;2996:166::-;3067:12;:10;:12::i;:::-;3056:23;;:7;:5;:7::i;:::-;:23;;;3052:103;;3130:12;:10;:12::i;:::-;3103:40;;;;;;;;;;;:::i;:::-;;;;;;;;3052:103;2996:166::o;4144:191::-;4218:16;4237:6;;;;;;;;;;;4218:25;;4263:8;4254:6;;:17;;;;;;;;;;;;;;;;;;4318:8;4287:40;;4308:8;4287:40;;;;;;;;;;;;4207:128;4144:191;:::o;24957:443::-;25087:1;25070:19;;:5;:19;;;25066:91;;25142:1;25113:32;;;;;;;;;;;:::i;:::-;;;;;;;;25066:91;25190:1;25171:21;;:7;:21;;;25167:92;;25244:1;25216:31;;;;;;;;;;;:::i;:::-;;;;;;;;25167:92;25299:5;25269:11;:18;25281:5;25269:18;;;;;;;;;;;;;;;:27;25288:7;25269:27;;;;;;;;;;;;;;;:35;;;;25319:9;25315:78;;;25366:7;25350:31;;25359:5;25350:31;;;25375:5;25350:31;;;;;;:::i;:::-;;;;;;;;25315:78;24957:443;;;;:::o;27938:765::-;28064:18;:24;28083:4;28064:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;28092:18;:22;28111:2;28092:22;;;;;;;;;;;;;;;;;;;;;;;;;28064:50;28060:636;;;28131:31;28145:4;28151:2;28155:6;28131:13;:31::i;:::-;28060:636;;;28195:17;28245:4;28231:19;;:2;:19;;;28227:237;;28329:5;28318:7;;28309:6;:16;;;;:::i;:::-;28308:26;;;;:::i;:::-;28296:38;;28227:237;;;28443:5;28433:6;;28424;:15;;;;:::i;:::-;28423:25;;;;:::i;:::-;28411:37;;28227:237;28478:22;28512:9;28503:6;:18;;;;:::i;:::-;28478:43;;28536:39;28550:4;28556:2;28560:14;28536:13;:39::i;:::-;28606:1;28594:9;:13;28590:95;;;28628:41;28642:4;28648:9;;;;;;;;;;;28659;28628:13;:41::i;:::-;28590:95;28180:516;;28060:636;27938:765;;;:::o;21183:1135::-;21289:1;21273:18;;:4;:18;;;21269:552;;21427:5;21411:12;;:21;;;;;;;:::i;:::-;;;;;;;;21269:552;;;21465:19;21487:9;:15;21497:4;21487:15;;;;;;;;;;;;;;;;21465:37;;21535:5;21521:11;:19;21517:117;;;21593:4;21599:11;21612:5;21568:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21517:117;21789:5;21775:11;:19;21757:9;:15;21767:4;21757:15;;;;;;;;;;;;;;;:37;;;;21450:371;21269:552;21851:1;21837:16;;:2;:16;;;21833:435;;22019:5;22003:12;;:21;;;;;;;;;;;21833:435;;;22236:5;22219:9;:13;22229:2;22219:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;21833:435;22300:2;22285:25;;22294:4;22285:25;;;22304:5;22285:25;;;;;;:::i;:::-;;;;;;;;21183:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:86::-;4810:7;4850:4;4843:5;4839:16;4828:27;;4775:86;;;:::o;4867:112::-;4950:22;4966:5;4950:22;:::i;:::-;4945:3;4938:35;4867:112;;:::o;4985:214::-;5074:4;5112:2;5101:9;5097:18;5089:26;;5125:67;5189:1;5178:9;5174:17;5165:6;5125:67;:::i;:::-;4985:214;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:116::-;5945:21;5960:5;5945:21;:::i;:::-;5938:5;5935:32;5925:60;;5981:1;5978;5971:12;5925:60;5875:116;:::o;5997:133::-;6040:5;6078:6;6065:20;6056:29;;6094:30;6118:5;6094:30;:::i;:::-;5997:133;;;;:::o;6136:468::-;6201:6;6209;6258:2;6246:9;6237:7;6233:23;6229:32;6226:119;;;6264:79;;:::i;:::-;6226:119;6384:1;6409:53;6454:7;6445:6;6434:9;6430:22;6409:53;:::i;:::-;6399:63;;6355:117;6511:2;6537:50;6579:7;6570:6;6559:9;6555:22;6537:50;:::i;:::-;6527:60;;6482:115;6136:468;;;;;:::o;6610:474::-;6678:6;6686;6735:2;6723:9;6714:7;6710:23;6706:32;6703:119;;;6741:79;;:::i;:::-;6703:119;6861:1;6886:53;6931:7;6922:6;6911:9;6907:22;6886:53;:::i;:::-;6876:63;;6832:117;6988:2;7014:53;7059:7;7050:6;7039:9;7035:22;7014:53;:::i;:::-;7004:63;;6959:118;6610:474;;;;;:::o;7090:180::-;7138:77;7135:1;7128:88;7235:4;7232:1;7225:15;7259:4;7256:1;7249:15;7276:320;7320:6;7357:1;7351:4;7347:12;7337:22;;7404:1;7398:4;7394:12;7425:18;7415:81;;7481:4;7473:6;7469:17;7459:27;;7415:81;7543:2;7535:6;7532:14;7512:18;7509:38;7506:84;;7562:18;;:::i;:::-;7506:84;7327:269;7276:320;;;:::o;7602:167::-;7742:19;7738:1;7730:6;7726:14;7719:43;7602:167;:::o;7775:366::-;7917:3;7938:67;8002:2;7997:3;7938:67;:::i;:::-;7931:74;;8014:93;8103:3;8014:93;:::i;:::-;8132:2;8127:3;8123:12;8116:19;;7775:366;;;:::o;8147:419::-;8313:4;8351:2;8340:9;8336:18;8328:26;;8400:9;8394:4;8390:20;8386:1;8375:9;8371:17;8364:47;8428:131;8554:4;8428:131;:::i;:::-;8420:139;;8147:419;;;:::o;8572:320::-;8687:4;8725:2;8714:9;8710:18;8702:26;;8738:71;8806:1;8795:9;8791:17;8782:6;8738:71;:::i;:::-;8819:66;8881:2;8870:9;8866:18;8857:6;8819:66;:::i;:::-;8572:320;;;;;:::o;8898:166::-;9038:18;9034:1;9026:6;9022:14;9015:42;8898:166;:::o;9070:366::-;9212:3;9233:67;9297:2;9292:3;9233:67;:::i;:::-;9226:74;;9309:93;9398:3;9309:93;:::i;:::-;9427:2;9422:3;9418:12;9411:19;;9070:366;;;:::o;9442:419::-;9608:4;9646:2;9635:9;9631:18;9623:26;;9695:9;9689:4;9685:20;9681:1;9670:9;9666:17;9659:47;9723:131;9849:4;9723:131;:::i;:::-;9715:139;;9442:419;;;:::o;9867:176::-;10007:28;10003:1;9995:6;9991:14;9984:52;9867:176;:::o;10049:366::-;10191:3;10212:67;10276:2;10271:3;10212:67;:::i;:::-;10205:74;;10288:93;10377:3;10288:93;:::i;:::-;10406:2;10401:3;10397:12;10390:19;;10049:366;;;:::o;10421:419::-;10587:4;10625:2;10614:9;10610:18;10602:26;;10674:9;10668:4;10664:20;10660:1;10649:9;10645:17;10638:47;10702:131;10828:4;10702:131;:::i;:::-;10694:139;;10421:419;;;:::o;10846:442::-;10995:4;11033:2;11022:9;11018:18;11010:26;;11046:71;11114:1;11103:9;11099:17;11090:6;11046:71;:::i;:::-;11127:72;11195:2;11184:9;11180:18;11171:6;11127:72;:::i;:::-;11209;11277:2;11266:9;11262:18;11253:6;11209:72;:::i;:::-;10846:442;;;;;;:::o;11294:180::-;11342:77;11339:1;11332:88;11439:4;11436:1;11429:15;11463:4;11460:1;11453:15;11480:410;11520:7;11543:20;11561:1;11543:20;:::i;:::-;11538:25;;11577:20;11595:1;11577:20;:::i;:::-;11572:25;;11632:1;11629;11625:9;11654:30;11672:11;11654:30;:::i;:::-;11643:41;;11833:1;11824:7;11820:15;11817:1;11814:22;11794:1;11787:9;11767:83;11744:139;;11863:18;;:::i;:::-;11744:139;11528:362;11480:410;;;;:::o;11896:180::-;11944:77;11941:1;11934:88;12041:4;12038:1;12031:15;12065:4;12062:1;12055:15;12082:185;12122:1;12139:20;12157:1;12139:20;:::i;:::-;12134:25;;12173:20;12191:1;12173:20;:::i;:::-;12168:25;;12212:1;12202:35;;12217:18;;:::i;:::-;12202:35;12259:1;12256;12252:9;12247:14;;12082:185;;;;:::o;12273:194::-;12313:4;12333:20;12351:1;12333:20;:::i;:::-;12328:25;;12367:20;12385:1;12367:20;:::i;:::-;12362:25;;12411:1;12408;12404:9;12396:17;;12435:1;12429:4;12426:11;12423:37;;;12440:18;;:::i;:::-;12423:37;12273:194;;;;:::o;12473:191::-;12513:3;12532:20;12550:1;12532:20;:::i;:::-;12527:25;;12566:20;12584:1;12566:20;:::i;:::-;12561:25;;12609:1;12606;12602:9;12595:16;;12630:3;12627:1;12624:10;12621:36;;;12637:18;;:::i;:::-;12621:36;12473:191;;;;:::o
Swarm Source
ipfs://d0238f06a3eb99d26a85deb50bf370d5c895400356e2eb4ede6d4ee8ccbc537c
Loading...
Loading
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 ]
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.