ERC-20
Source Code
Overview
Max Total Supply
1,000,000,000 fool
Holders
563
Transfers
-
0
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
fool
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/**
*Submitted for verification at basescan.org on 2024-04-01
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
/*
* sup fool.
*
* Social Links:
* - Telegram: https://t.me/FoolonBase
* - Twitter: https://x.com/FoolonBase
* - Website: https://www.basedfools.com/
*
* Name: fool
* Symbol: $fool
* Total Supply: 1 Billion Tokens
*/
pragma solidity ^0.8.20;
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;
}
}
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC-20 standard as defined in the ERC.
*/
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);
}
pragma solidity ^0.8.20;
/**
* @dev Interface for the optional metadata functions from the ERC-20 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);
}
pragma solidity ^0.8.20;
/**
* @dev Standard ERC-20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 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 ERC-721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-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 ERC-1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 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);
}
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}.
*
* Skips emitting an {Approval} event indicating an allowance update. This is not
* required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
*
* 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:
*
* ```solidity
* 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);
}
}
}
}
contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant NOT_ENTERED = 1;
uint256 private constant ENTERED = 2;
uint256 private _status;
/**
* @dev Unauthorized reentrant call.
*/
error ReentrancyGuardReentrantCall();
constructor() {
_status = NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be NOT_ENTERED
if (_status == ENTERED) {
revert ReentrancyGuardReentrantCall();
}
// Any calls to nonReentrant after this point will fail
_status = ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == ENTERED;
}
}
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);
}
}
contract fool is ERC20, ReentrancyGuard, Ownable {
uint256 public constant TOTAL_SUPPLY = 1e9 * 1e18; // 1 billion tokens
uint256 public constant MAX_WALLET_SIZE = TOTAL_SUPPLY / 50; // 2% of total supply
uint256 public deployBlock;
uint256 public tradeOpenBlock; // Block number when trading is opened
bool public tradingOpen; // Trading toggle
address public taxWallet;
constructor(address _taxWallet) ERC20("fool", "fool") Ownable(msg.sender) {
_mint(msg.sender, TOTAL_SUPPLY);
taxWallet = _taxWallet; // Set the tax wallet address
deployBlock = block.number; // Capture the deployment block
tradingOpen = false; // Initialize the tradingOpen variable
}
function openTrading() external onlyOwner {
tradingOpen = true;
tradeOpenBlock = block.number; // Capture the block number when trading opens
}
function getCurrentTaxRate() public view returns (uint256) {
if (!tradingOpen) return 0; // No tax before trading opens
uint256 blocksSinceTradeOpen = block.number - tradeOpenBlock;
if (blocksSinceTradeOpen >= 20) return 0; // No tax after 20 blocks
// Gradually decrease tax from 80% to 0% over 20 blocks
return (800 - (blocksSinceTradeOpen * 40)); // 800 is 80%, decrease by 40 each block (4%)
}
function _beforeTokenTransfer(address from, address to, uint256 amount) internal {
require(from == address(0) || balanceOf(to) + amount <= MAX_WALLET_SIZE, "Exceeds maximum wallet size");
if (from != address(0) && to != address(0)) {
uint256 currentTaxRate = getCurrentTaxRate(); // Use the current dynamic tax rate
if (currentTaxRate > 0) {
uint256 taxAmount = (amount * currentTaxRate) / 1000;
// Send tax to the tax wallet
_transfer(from, taxWallet, taxAmount);
amount -= taxAmount; // Adjust the amount that will be transferred next
}
}
}
function _transfer(address from, address to, uint256 amount) internal override {
require(tradingOpen || from == owner() || from == address(0), "Trading not open or sender not owner");
uint256 currentTaxRate = getCurrentTaxRate(); // Use the current dynamic tax rate
if (currentTaxRate > 0 && from != address(0) && to != address(0)) { // Exclude minting and burning
uint256 taxAmount = (amount * currentTaxRate) / 1000;
uint256 amountAfterTax = amount - taxAmount;
super._transfer(from, taxWallet, taxAmount); // Tax transfer
super._transfer(from, to, amountAfterTax); // Transfer net amount
} else {
super._transfer(from, to, amount); // No tax applied
}
}
// Function to update the tax wallet
function updateTaxWallet(address newTaxWallet) external onlyOwner {
require(newTaxWallet != address(0), "Invalid address");
taxWallet = newTaxWallet;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_taxWallet","type":"address"}],"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"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","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":[],"name":"MAX_WALLET_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deployBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentTaxRate","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":"openTrading","outputs":[],"stateMutability":"nonpayable","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":"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":[],"name":"tradeOpenBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"newTaxWallet","type":"address"}],"name":"updateTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801562000010575f80fd5b5060405162002151380380620021518339818101604052810190620000369190620005b2565b336040518060400160405280600481526020017f666f6f6c000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f666f6f6c000000000000000000000000000000000000000000000000000000008152508160039081620000b4919062000846565b508060049081620000c6919062000846565b50505060016005819055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000144575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200013b91906200093b565b60405180910390fd5b6200015581620001dc60201b60201c565b5062000174336b033b2e3c9fd0803ce80000006200029f60201b60201c565b80600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550436007819055505f60095f6101000a81548160ff0219169083151502179055505062000a24565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000312575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200030991906200093b565b60405180910390fd5b620003255f83836200032960201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200037d578060025f82825462000370919062000983565b925050819055506200044e565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000409578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200040093929190620009ce565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000497578060025f8282540392505081905550620004e1565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000540919062000a09565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200057c8262000551565b9050919050565b6200058e8162000570565b811462000599575f80fd5b50565b5f81519050620005ac8162000583565b92915050565b5f60208284031215620005ca57620005c96200054d565b5b5f620005d9848285016200059c565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200065e57607f821691505b60208210810362000674576200067362000619565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006d87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200069b565b620006e486836200069b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200072e620007286200072284620006fc565b62000705565b620006fc565b9050919050565b5f819050919050565b62000749836200070e565b62000761620007588262000735565b848454620006a7565b825550505050565b5f90565b6200077762000769565b620007848184846200073e565b505050565b5b81811015620007ab576200079f5f826200076d565b6001810190506200078a565b5050565b601f821115620007fa57620007c4816200067a565b620007cf846200068c565b81016020851015620007df578190505b620007f7620007ee856200068c565b83018262000789565b50505b505050565b5f82821c905092915050565b5f6200081c5f1984600802620007ff565b1980831691505092915050565b5f6200083683836200080b565b9150826002028217905092915050565b6200085182620005e2565b67ffffffffffffffff8111156200086d576200086c620005ec565b5b62000879825462000646565b62000886828285620007af565b5f60209050601f831160018114620008bc575f8415620008a7578287015190505b620008b3858262000829565b86555062000922565b601f198416620008cc866200067a565b5f5b82811015620008f557848901518255600182019150602085019450602081019050620008ce565b8683101562000915578489015162000911601f8916826200080b565b8355505b6001600288020188555050505b505050505050565b620009358162000570565b82525050565b5f602082019050620009505f8301846200092a565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200098f82620006fc565b91506200099c83620006fc565b9250828201905080821115620009b757620009b662000956565b5b92915050565b620009c881620006fc565b82525050565b5f606082019050620009e35f8301866200092a565b620009f26020830185620009bd565b62000a016040830184620009bd565b949350505050565b5f60208201905062000a1e5f830184620009bd565b92915050565b61171f8062000a325f395ff3fe608060405234801561000f575f80fd5b5060043610610135575f3560e01c806374c9f603116100b6578063a3ec191a1161007a578063a3ec191a1461031b578063a9059cbb14610339578063c9567bf914610369578063dd62ed3e14610373578063f2fde38b146103a3578063ffb54a99146103bf57610135565b806374c9f603146102875780638da5cb5b146102a3578063902d55a5146102c157806395d89b41146102df578063a37c6b8b146102fd57610135565b8063313ce567116100fd578063313ce567146101f35780634f0543171461021157806364f53f2e1461022f57806370a082311461024d578063715018a61461027d57610135565b806306fdde0314610139578063095ea7b31461015757806318160ddd1461018757806323b872dd146101a55780632dc0562d146101d5575b5f80fd5b6101416103dd565b60405161014e91906111d1565b60405180910390f35b610171600480360381019061016c9190611282565b61046d565b60405161017e91906112da565b60405180910390f35b61018f61048f565b60405161019c9190611302565b60405180910390f35b6101bf60048036038101906101ba919061131b565b610498565b6040516101cc91906112da565b60405180910390f35b6101dd6104c6565b6040516101ea919061137a565b60405180910390f35b6101fb6104ec565b60405161020891906113ae565b60405180910390f35b6102196104f4565b6040516102269190611302565b60405180910390f35b610237610510565b6040516102449190611302565b60405180910390f35b610267600480360381019061026291906113c7565b61056f565b6040516102749190611302565b60405180910390f35b6102856105b4565b005b6102a1600480360381019061029c91906113c7565b6105c7565b005b6102ab610681565b6040516102b8919061137a565b60405180910390f35b6102c96106a9565b6040516102d69190611302565b60405180910390f35b6102e76106b9565b6040516102f491906111d1565b60405180910390f35b610305610749565b6040516103129190611302565b60405180910390f35b61032361074f565b6040516103309190611302565b60405180910390f35b610353600480360381019061034e9190611282565b610755565b60405161036091906112da565b60405180910390f35b610371610777565b005b61038d600480360381019061038891906113f2565b6107a2565b60405161039a9190611302565b60405180910390f35b6103bd60048036038101906103b891906113c7565b610824565b005b6103c76108a8565b6040516103d491906112da565b60405180910390f35b6060600380546103ec9061145d565b80601f01602080910402602001604051908101604052809291908181526020018280546104189061145d565b80156104635780601f1061043a57610100808354040283529160200191610463565b820191905f5260205f20905b81548152906001019060200180831161044657829003601f168201915b5050505050905090565b5f806104776108ba565b90506104848185856108c1565b600191505092915050565b5f600254905090565b5f806104a26108ba565b90506104af8582856108d3565b6104ba858585610965565b60019150509392505050565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b60326b033b2e3c9fd0803ce800000061050d91906114e7565b81565b5f60095f9054906101000a900460ff1661052c575f905061056c565b5f6008544361053b9190611517565b90506014811061054e575f91505061056c565b60288161055b919061154a565b6103206105689190611517565b9150505b90565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105bc610b25565b6105c55f610bac565b565b6105cf610b25565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361063d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610634906115d5565b60405180910390fd5b80600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6b033b2e3c9fd0803ce800000081565b6060600480546106c89061145d565b80601f01602080910402602001604051908101604052809291908181526020018280546106f49061145d565b801561073f5780601f106107165761010080835404028352916020019161073f565b820191905f5260205f20905b81548152906001019060200180831161072257829003601f168201915b5050505050905090565b60085481565b60075481565b5f8061075f6108ba565b905061076c818585610965565b600191505092915050565b61077f610b25565b600160095f6101000a81548160ff02191690831515021790555043600881905550565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61082c610b25565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361089c575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610893919061137a565b60405180910390fd5b6108a581610bac565b50565b60095f9054906101000a900460ff1681565b5f33905090565b6108ce8383836001610c6f565b505050565b5f6108de84846107a2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461095f5781811015610950578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610947939291906115f3565b60405180910390fd5b61095e84848484035f610c6f565b5b50505050565b60095f9054906101000a900460ff16806109b15750610982610681565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806109e757505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b610a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90611698565b60405180910390fd5b5f610a2f610510565b90505f81118015610a6c57505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610aa457505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15610b13575f6103e88284610ab9919061154a565b610ac391906114e7565b90505f8184610ad29190611517565b9050610b0186600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610e3e565b610b0c868683610e3e565b5050610b1f565b610b1e848484610e3e565b5b50505050565b610b2d6108ba565b73ffffffffffffffffffffffffffffffffffffffff16610b4b610681565b73ffffffffffffffffffffffffffffffffffffffff1614610baa57610b6e6108ba565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610ba1919061137a565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610cdf575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610cd6919061137a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d4f575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610d46919061137a565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610e38578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e2f9190611302565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eae575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ea5919061137a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f1e575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f15919061137a565b60405180910390fd5b610f29838383610f2e565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f7e578060025f828254610f7291906116b6565b9250508190555061104c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611007578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ffe939291906115f3565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611093578060025f82825403925050819055506110dd565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161113a9190611302565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561117e578082015181840152602081019050611163565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6111a382611147565b6111ad8185611151565b93506111bd818560208601611161565b6111c681611189565b840191505092915050565b5f6020820190508181035f8301526111e98184611199565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61121e826111f5565b9050919050565b61122e81611214565b8114611238575f80fd5b50565b5f8135905061124981611225565b92915050565b5f819050919050565b6112618161124f565b811461126b575f80fd5b50565b5f8135905061127c81611258565b92915050565b5f8060408385031215611298576112976111f1565b5b5f6112a58582860161123b565b92505060206112b68582860161126e565b9150509250929050565b5f8115159050919050565b6112d4816112c0565b82525050565b5f6020820190506112ed5f8301846112cb565b92915050565b6112fc8161124f565b82525050565b5f6020820190506113155f8301846112f3565b92915050565b5f805f60608486031215611332576113316111f1565b5b5f61133f8682870161123b565b93505060206113508682870161123b565b92505060406113618682870161126e565b9150509250925092565b61137481611214565b82525050565b5f60208201905061138d5f83018461136b565b92915050565b5f60ff82169050919050565b6113a881611393565b82525050565b5f6020820190506113c15f83018461139f565b92915050565b5f602082840312156113dc576113db6111f1565b5b5f6113e98482850161123b565b91505092915050565b5f8060408385031215611408576114076111f1565b5b5f6114158582860161123b565b92505060206114268582860161123b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061147457607f821691505b60208210810361148757611486611430565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6114f18261124f565b91506114fc8361124f565b92508261150c5761150b61148d565b5b828204905092915050565b5f6115218261124f565b915061152c8361124f565b9250828203905081811115611544576115436114ba565b5b92915050565b5f6115548261124f565b915061155f8361124f565b925082820261156d8161124f565b91508282048414831517611584576115836114ba565b5b5092915050565b7f496e76616c6964206164647265737300000000000000000000000000000000005f82015250565b5f6115bf600f83611151565b91506115ca8261158b565b602082019050919050565b5f6020820190508181035f8301526115ec816115b3565b9050919050565b5f6060820190506116065f83018661136b565b61161360208301856112f3565b61162060408301846112f3565b949350505050565b7f54726164696e67206e6f74206f70656e206f722073656e646572206e6f74206f5f8201527f776e657200000000000000000000000000000000000000000000000000000000602082015250565b5f611682602483611151565b915061168d82611628565b604082019050919050565b5f6020820190508181035f8301526116af81611676565b9050919050565b5f6116c08261124f565b91506116cb8361124f565b92508282019050808211156116e3576116e26114ba565b5b9291505056fea2646970667358221220b9b55408fd05fedc67df948f4800353b5268de655c89c410d722a186625e910d64736f6c63430008140033000000000000000000000000d6f0c144c39921bb78559630bbb3203a50d66a31
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610135575f3560e01c806374c9f603116100b6578063a3ec191a1161007a578063a3ec191a1461031b578063a9059cbb14610339578063c9567bf914610369578063dd62ed3e14610373578063f2fde38b146103a3578063ffb54a99146103bf57610135565b806374c9f603146102875780638da5cb5b146102a3578063902d55a5146102c157806395d89b41146102df578063a37c6b8b146102fd57610135565b8063313ce567116100fd578063313ce567146101f35780634f0543171461021157806364f53f2e1461022f57806370a082311461024d578063715018a61461027d57610135565b806306fdde0314610139578063095ea7b31461015757806318160ddd1461018757806323b872dd146101a55780632dc0562d146101d5575b5f80fd5b6101416103dd565b60405161014e91906111d1565b60405180910390f35b610171600480360381019061016c9190611282565b61046d565b60405161017e91906112da565b60405180910390f35b61018f61048f565b60405161019c9190611302565b60405180910390f35b6101bf60048036038101906101ba919061131b565b610498565b6040516101cc91906112da565b60405180910390f35b6101dd6104c6565b6040516101ea919061137a565b60405180910390f35b6101fb6104ec565b60405161020891906113ae565b60405180910390f35b6102196104f4565b6040516102269190611302565b60405180910390f35b610237610510565b6040516102449190611302565b60405180910390f35b610267600480360381019061026291906113c7565b61056f565b6040516102749190611302565b60405180910390f35b6102856105b4565b005b6102a1600480360381019061029c91906113c7565b6105c7565b005b6102ab610681565b6040516102b8919061137a565b60405180910390f35b6102c96106a9565b6040516102d69190611302565b60405180910390f35b6102e76106b9565b6040516102f491906111d1565b60405180910390f35b610305610749565b6040516103129190611302565b60405180910390f35b61032361074f565b6040516103309190611302565b60405180910390f35b610353600480360381019061034e9190611282565b610755565b60405161036091906112da565b60405180910390f35b610371610777565b005b61038d600480360381019061038891906113f2565b6107a2565b60405161039a9190611302565b60405180910390f35b6103bd60048036038101906103b891906113c7565b610824565b005b6103c76108a8565b6040516103d491906112da565b60405180910390f35b6060600380546103ec9061145d565b80601f01602080910402602001604051908101604052809291908181526020018280546104189061145d565b80156104635780601f1061043a57610100808354040283529160200191610463565b820191905f5260205f20905b81548152906001019060200180831161044657829003601f168201915b5050505050905090565b5f806104776108ba565b90506104848185856108c1565b600191505092915050565b5f600254905090565b5f806104a26108ba565b90506104af8582856108d3565b6104ba858585610965565b60019150509392505050565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b60326b033b2e3c9fd0803ce800000061050d91906114e7565b81565b5f60095f9054906101000a900460ff1661052c575f905061056c565b5f6008544361053b9190611517565b90506014811061054e575f91505061056c565b60288161055b919061154a565b6103206105689190611517565b9150505b90565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105bc610b25565b6105c55f610bac565b565b6105cf610b25565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361063d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610634906115d5565b60405180910390fd5b80600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6b033b2e3c9fd0803ce800000081565b6060600480546106c89061145d565b80601f01602080910402602001604051908101604052809291908181526020018280546106f49061145d565b801561073f5780601f106107165761010080835404028352916020019161073f565b820191905f5260205f20905b81548152906001019060200180831161072257829003601f168201915b5050505050905090565b60085481565b60075481565b5f8061075f6108ba565b905061076c818585610965565b600191505092915050565b61077f610b25565b600160095f6101000a81548160ff02191690831515021790555043600881905550565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61082c610b25565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361089c575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610893919061137a565b60405180910390fd5b6108a581610bac565b50565b60095f9054906101000a900460ff1681565b5f33905090565b6108ce8383836001610c6f565b505050565b5f6108de84846107a2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461095f5781811015610950578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610947939291906115f3565b60405180910390fd5b61095e84848484035f610c6f565b5b50505050565b60095f9054906101000a900460ff16806109b15750610982610681565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806109e757505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b610a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90611698565b60405180910390fd5b5f610a2f610510565b90505f81118015610a6c57505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610aa457505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15610b13575f6103e88284610ab9919061154a565b610ac391906114e7565b90505f8184610ad29190611517565b9050610b0186600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610e3e565b610b0c868683610e3e565b5050610b1f565b610b1e848484610e3e565b5b50505050565b610b2d6108ba565b73ffffffffffffffffffffffffffffffffffffffff16610b4b610681565b73ffffffffffffffffffffffffffffffffffffffff1614610baa57610b6e6108ba565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610ba1919061137a565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610cdf575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610cd6919061137a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d4f575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610d46919061137a565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610e38578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e2f9190611302565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eae575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ea5919061137a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f1e575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f15919061137a565b60405180910390fd5b610f29838383610f2e565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f7e578060025f828254610f7291906116b6565b9250508190555061104c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611007578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ffe939291906115f3565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611093578060025f82825403925050819055506110dd565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161113a9190611302565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561117e578082015181840152602081019050611163565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6111a382611147565b6111ad8185611151565b93506111bd818560208601611161565b6111c681611189565b840191505092915050565b5f6020820190508181035f8301526111e98184611199565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61121e826111f5565b9050919050565b61122e81611214565b8114611238575f80fd5b50565b5f8135905061124981611225565b92915050565b5f819050919050565b6112618161124f565b811461126b575f80fd5b50565b5f8135905061127c81611258565b92915050565b5f8060408385031215611298576112976111f1565b5b5f6112a58582860161123b565b92505060206112b68582860161126e565b9150509250929050565b5f8115159050919050565b6112d4816112c0565b82525050565b5f6020820190506112ed5f8301846112cb565b92915050565b6112fc8161124f565b82525050565b5f6020820190506113155f8301846112f3565b92915050565b5f805f60608486031215611332576113316111f1565b5b5f61133f8682870161123b565b93505060206113508682870161123b565b92505060406113618682870161126e565b9150509250925092565b61137481611214565b82525050565b5f60208201905061138d5f83018461136b565b92915050565b5f60ff82169050919050565b6113a881611393565b82525050565b5f6020820190506113c15f83018461139f565b92915050565b5f602082840312156113dc576113db6111f1565b5b5f6113e98482850161123b565b91505092915050565b5f8060408385031215611408576114076111f1565b5b5f6114158582860161123b565b92505060206114268582860161123b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061147457607f821691505b60208210810361148757611486611430565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6114f18261124f565b91506114fc8361124f565b92508261150c5761150b61148d565b5b828204905092915050565b5f6115218261124f565b915061152c8361124f565b9250828203905081811115611544576115436114ba565b5b92915050565b5f6115548261124f565b915061155f8361124f565b925082820261156d8161124f565b91508282048414831517611584576115836114ba565b5b5092915050565b7f496e76616c6964206164647265737300000000000000000000000000000000005f82015250565b5f6115bf600f83611151565b91506115ca8261158b565b602082019050919050565b5f6020820190508181035f8301526115ec816115b3565b9050919050565b5f6060820190506116065f83018661136b565b61161360208301856112f3565b61162060408301846112f3565b949350505050565b7f54726164696e67206e6f74206f70656e206f722073656e646572206e6f74206f5f8201527f776e657200000000000000000000000000000000000000000000000000000000602082015250565b5f611682602483611151565b915061168d82611628565b604082019050919050565b5f6020820190508181035f8301526116af81611676565b9050919050565b5f6116c08261124f565b91506116cb8361124f565b92508282019050808211156116e3576116e26114ba565b5b9291505056fea2646970667358221220b9b55408fd05fedc67df948f4800353b5268de655c89c410d722a186625e910d64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d6f0c144c39921bb78559630bbb3203a50d66a31
-----Decoded View---------------
Arg [0] : _taxWallet (address): 0xd6f0c144C39921bB78559630Bbb3203A50D66a31
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d6f0c144c39921bb78559630bbb3203a50d66a31
Deployed Bytecode Sourcemap
25587:3055:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11269:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13562:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12371:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14362:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25963:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12222:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25719:59;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26484:451;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12533:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24751:103;;;:::i;:::-;;28465:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24076:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25643:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11479:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25840:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25807:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12856:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26310:166;;;:::i;:::-;;13101:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25009:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25915:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11269:91;11314:13;11347:5;11340:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11269:91;:::o;13562:190::-;13635:4;13652:13;13668:12;:10;:12::i;:::-;13652:28;;13691:31;13700:5;13707:7;13716:5;13691:8;:31::i;:::-;13740:4;13733:11;;;13562:190;;;;:::o;12371:99::-;12423:7;12450:12;;12443:19;;12371:99;:::o;14362:249::-;14449:4;14466:15;14484:12;:10;:12::i;:::-;14466:30;;14507:37;14523:4;14529:7;14538:5;14507:15;:37::i;:::-;14555:26;14565:4;14571:2;14575:5;14555:9;:26::i;:::-;14599:4;14592:11;;;14362:249;;;;;:::o;25963:24::-;;;;;;;;;;;;;:::o;12222:84::-;12271:5;12296:2;12289:9;;12222:84;:::o;25719:59::-;25776:2;25682:10;25761:17;;;;:::i;:::-;25719:59;:::o;26484:451::-;26534:7;26559:11;;;;;;;;;;;26554:26;;26579:1;26572:8;;;;26554:26;26624:28;26670:14;;26655:12;:29;;;;:::i;:::-;26624:60;;26723:2;26699:20;:26;26695:40;;26734:1;26727:8;;;;;26695:40;26877:2;26854:20;:25;;;;:::i;:::-;26847:3;:33;;;;:::i;:::-;26839:42;;;26484:451;;:::o;12533:118::-;12598:7;12625:9;:18;12635:7;12625:18;;;;;;;;;;;;;;;;12618:25;;12533:118;;;:::o;24751:103::-;23962:13;:11;:13::i;:::-;24816:30:::1;24843:1;24816:18;:30::i;:::-;24751:103::o:0;28465:174::-;23962:13;:11;:13::i;:::-;28574:1:::1;28550:26;;:12;:26;;::::0;28542:54:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;28619:12;28607:9;;:24;;;;;;;;;;;;;;;;;;28465:174:::0;:::o;24076:87::-;24122:7;24149:6;;;;;;;;;;;24142:13;;24076:87;:::o;25643:49::-;25682:10;25643:49;:::o;11479:95::-;11526:13;11559:7;11552:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11479:95;:::o;25840:29::-;;;;:::o;25807:26::-;;;;:::o;12856:182::-;12925:4;12942:13;12958:12;:10;:12::i;:::-;12942:28;;12981:27;12991:5;12998:2;13002:5;12981:9;:27::i;:::-;13026:4;13019:11;;;12856:182;;;;:::o;26310:166::-;23962:13;:11;:13::i;:::-;26377:4:::1;26363:11;;:18;;;;;;;;;;;;;;;;;;26409:12;26392:14;:29;;;;26310:166::o:0;13101:142::-;13181:7;13208:11;:18;13220:5;13208:18;;;;;;;;;;;;;;;:27;13227:7;13208:27;;;;;;;;;;;;;;;;13201:34;;13101:142;;;;:::o;25009:220::-;23962:13;:11;:13::i;:::-;25114:1:::1;25094:22;;:8;:22;;::::0;25090:93:::1;;25168:1;25140:31;;;;;;;;;;;:::i;:::-;;;;;;;;25090:93;25193:28;25212:8;25193:18;:28::i;:::-;25009:220:::0;:::o;25915:23::-;;;;;;;;;;;;;:::o;367:98::-;420:7;447:10;440:17;;367:98;:::o;18429:130::-;18514:37;18523:5;18530:7;18539:5;18546:4;18514:8;:37::i;:::-;18429:130;;;:::o;20161:487::-;20261:24;20288:25;20298:5;20305:7;20288:9;:25::i;:::-;20261:52;;20348:17;20328:16;:37;20324:317;;20405:5;20386:16;:24;20382:132;;;20465:7;20474:16;20492:5;20438:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;20382:132;20557:57;20566:5;20573:7;20601:5;20582:16;:24;20608:5;20557:8;:57::i;:::-;20324:317;20250:398;20161:487;;;:::o;27638:777::-;27736:11;;;;;;;;;;;:30;;;;27759:7;:5;:7::i;:::-;27751:15;;:4;:15;;;27736:30;:52;;;;27786:1;27770:18;;:4;:18;;;27736:52;27728:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;27840:22;27865:19;:17;:19::i;:::-;27840:44;;27958:1;27941:14;:18;:40;;;;;27979:1;27963:18;;:4;:18;;;;27941:40;:60;;;;;27999:1;27985:16;;:2;:16;;;;27941:60;27937:471;;;28049:17;28097:4;28079:14;28070:6;:23;;;;:::i;:::-;28069:32;;;;:::i;:::-;28049:52;;28116:22;28150:9;28141:6;:18;;;;:::i;:::-;28116:43;;28174;28190:4;28196:9;;;;;;;;;;;28207;28174:15;:43::i;:::-;28248:41;28264:4;28270:2;28274:14;28248:15;:41::i;:::-;28003:321;;27937:471;;;28345:33;28361:4;28367:2;28371:6;28345:15;:33::i;:::-;27937:471;27717:698;27638:777;;;:::o;24241:166::-;24312:12;:10;:12::i;:::-;24301:23;;:7;:5;:7::i;:::-;:23;;;24297:103;;24375:12;:10;:12::i;:::-;24348:40;;;;;;;;;;;:::i;:::-;;;;;;;;24297:103;24241:166::o;25389:191::-;25463:16;25482:6;;;;;;;;;;;25463:25;;25508:8;25499:6;;:17;;;;;;;;;;;;;;;;;;25563:8;25532:40;;25553:8;25532:40;;;;;;;;;;;;25452:128;25389:191;:::o;19426:443::-;19556:1;19539:19;;:5;:19;;;19535:91;;19611:1;19582:32;;;;;;;;;;;:::i;:::-;;;;;;;;19535:91;19659:1;19640:21;;:7;:21;;;19636:92;;19713:1;19685:31;;;;;;;;;;;:::i;:::-;;;;;;;;19636:92;19768:5;19738:11;:18;19750:5;19738:18;;;;;;;;;;;;;;;:27;19757:7;19738:27;;;;;;;;;;;;;;;:35;;;;19788:9;19784:78;;;19835:7;19819:31;;19828:5;19819:31;;;19844:5;19819:31;;;;;;:::i;:::-;;;;;;;;19784:78;19426:443;;;;:::o;14996:316::-;15104:1;15088:18;;:4;:18;;;15084:88;;15157:1;15130:30;;;;;;;;;;;:::i;:::-;;;;;;;;15084:88;15200:1;15186:16;;:2;:16;;;15182:88;;15255:1;15226:32;;;;;;;;;;;:::i;:::-;;;;;;;;15182:88;15280:24;15288:4;15294:2;15298:5;15280:7;:24::i;:::-;14996:316;;;:::o;15636:1135::-;15742:1;15726:18;;:4;:18;;;15722:552;;15880:5;15864:12;;:21;;;;;;;:::i;:::-;;;;;;;;15722:552;;;15918:19;15940:9;:15;15950:4;15940:15;;;;;;;;;;;;;;;;15918:37;;15988:5;15974:11;:19;15970:117;;;16046:4;16052:11;16065:5;16021:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;15970:117;16242:5;16228:11;:19;16210:9;:15;16220:4;16210:15;;;;;;;;;;;;;;;:37;;;;15903:371;15722:552;16304:1;16290:16;;:2;:16;;;16286:435;;16472:5;16456:12;;:21;;;;;;;;;;;16286:435;;;16689:5;16672:9;:13;16682:2;16672:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;16286:435;16753:2;16738:25;;16747:4;16738:25;;;16757:5;16738:25;;;;;;:::i;:::-;;;;;;;;15636: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:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:180;6766:77;6763:1;6756:88;6863:4;6860:1;6853:15;6887:4;6884:1;6877:15;6904:185;6944:1;6961:20;6979:1;6961:20;:::i;:::-;6956:25;;6995:20;7013:1;6995:20;:::i;:::-;6990:25;;7034:1;7024:35;;7039:18;;:::i;:::-;7024:35;7081:1;7078;7074:9;7069:14;;6904:185;;;;:::o;7095:194::-;7135:4;7155:20;7173:1;7155:20;:::i;:::-;7150:25;;7189:20;7207:1;7189:20;:::i;:::-;7184:25;;7233:1;7230;7226:9;7218:17;;7257:1;7251:4;7248:11;7245:37;;;7262:18;;:::i;:::-;7245:37;7095:194;;;;:::o;7295:410::-;7335:7;7358:20;7376:1;7358:20;:::i;:::-;7353:25;;7392:20;7410:1;7392:20;:::i;:::-;7387:25;;7447:1;7444;7440:9;7469:30;7487:11;7469:30;:::i;:::-;7458:41;;7648:1;7639:7;7635:15;7632:1;7629:22;7609:1;7602:9;7582:83;7559:139;;7678:18;;:::i;:::-;7559:139;7343:362;7295:410;;;;:::o;7711:165::-;7851:17;7847:1;7839:6;7835:14;7828:41;7711:165;:::o;7882:366::-;8024:3;8045:67;8109:2;8104:3;8045:67;:::i;:::-;8038:74;;8121:93;8210:3;8121:93;:::i;:::-;8239:2;8234:3;8230:12;8223:19;;7882:366;;;:::o;8254:419::-;8420:4;8458:2;8447:9;8443:18;8435:26;;8507:9;8501:4;8497:20;8493:1;8482:9;8478:17;8471:47;8535:131;8661:4;8535:131;:::i;:::-;8527:139;;8254:419;;;:::o;8679:442::-;8828:4;8866:2;8855:9;8851:18;8843:26;;8879:71;8947:1;8936:9;8932:17;8923:6;8879:71;:::i;:::-;8960:72;9028:2;9017:9;9013:18;9004:6;8960:72;:::i;:::-;9042;9110:2;9099:9;9095:18;9086:6;9042:72;:::i;:::-;8679:442;;;;;;:::o;9127:223::-;9267:34;9263:1;9255:6;9251:14;9244:58;9336:6;9331:2;9323:6;9319:15;9312:31;9127:223;:::o;9356:366::-;9498:3;9519:67;9583:2;9578:3;9519:67;:::i;:::-;9512:74;;9595:93;9684:3;9595:93;:::i;:::-;9713:2;9708:3;9704:12;9697:19;;9356:366;;;:::o;9728:419::-;9894:4;9932:2;9921:9;9917:18;9909:26;;9981:9;9975:4;9971:20;9967:1;9956:9;9952:17;9945:47;10009:131;10135:4;10009:131;:::i;:::-;10001:139;;9728:419;;;:::o;10153:191::-;10193:3;10212:20;10230:1;10212:20;:::i;:::-;10207:25;;10246:20;10264:1;10246:20;:::i;:::-;10241:25;;10289:1;10286;10282:9;10275:16;;10310:3;10307:1;10304:10;10301:36;;;10317:18;;:::i;:::-;10301:36;10153:191;;;;:::o
Swarm Source
ipfs://b9b55408fd05fedc67df948f4800353b5268de655c89c410d722a186625e910d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.
Add Token to MetaMask (Web3)