ERC-20
Overview
Max Total Supply
1,000,000,000 VOLT
Holders
254
Market
Price
-
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,626,981.354295254566667436 VOLTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
VOLT
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-18 */ // SPDX-License-Identifier: MIT // Website : https://www.voltonsonic.fun/ // X : https://x.com/VoltOnSonic // Telegram : https://t.me/voltonsonic pragma solidity ^0.8.0; /** * @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 v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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. * * By default, the owner account will be the one that deploys the contract. 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; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @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 { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @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 { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _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/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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 amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` 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 amount) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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 v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * 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. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => 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 override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override 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 `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` 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. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File @openzeppelin/contracts/utils/math/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // Original license: SPDX_License_Identifier: MIT pragma solidity 0.8.26; contract VOLT is ERC20, Ownable { using SafeMath for uint256; uint256 private constant _totalSupply = 1_000_000_000 * 1e18; bool public tradingActive = false; bool public removeMaxWallet = false; uint256 private launchBlock; address private pairAddress; mapping(address => bool) private _sniper; constructor() ERC20(unicode"Volt", unicode"VOLT") { _mint(owner(), _totalSupply); } function setPairAddress(address pair) external onlyOwner { pairAddress = pair; } function enableTrading() external onlyOwner { require(pairAddress != address(0), "Pair address not set"); tradingActive = true; launchBlock = block.number; } function addToSniper(address account) external onlyOwner { _sniper[account] = true; } function removeFromSniper(address account) external onlyOwner { _sniper[account] = false; } function isSniper(address account) public view returns (bool) { return _sniper[account]; } function setRemoveMaxWallet(bool status) external onlyOwner { removeMaxWallet = status; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!_sniper[from] && !_sniper[to], "Sniper is blacklisted"); if (tx.origin != owner()) { require(tradingActive, "Trading is not active"); if (!removeMaxWallet && to != pairAddress) { uint256 maxWallet = (_totalSupply * 30) / 1000; require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } super._transfer(from, to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToSniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isSniper","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":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromSniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeMaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"setPairAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setRemoveMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","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
60806040526005805461ffff60a01b1916905534801561001d575f80fd5b5060405180604001604052806004815260200163159bdb1d60e21b815250604051806040016040528060048152602001631593d31560e21b81525081600390816100679190610237565b5060046100748282610237565b5050506100aa6100886100d660201b60201c565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6100d16100bf6005546001600160a01b031690565b6b033b2e3c9fd0803ce80000006100da565b610316565b3390565b6001600160a01b0382166101345760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f82825461014591906102f1565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806101c857607f821691505b6020821081036101e657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561019b57805f5260205f20601f840160051c810160208510156102115750805b601f840160051c820191505b81811015610230575f815560010161021d565b5050505050565b81516001600160401b03811115610250576102506101a0565b6102648161025e84546101b4565b846101ec565b6020601f821160018114610296575f831561027f5750848201515b5f19600385901b1c1916600184901b178455610230565b5f84815260208120601f198516915b828110156102c557878501518255602094850194600190920191016102a5565b50848210156102e257868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561031057634e487b7160e01b5f52601160045260245ffd5b92915050565b610e1c806103235f395ff3fe608060405234801561000f575f80fd5b506004361061013d575f3560e01c80638da5cb5b116100b4578063a9059cbb11610079578063a9059cbb1461029d578063bbc0c742146102b0578063dc07b617146102c4578063dd62ed3e146102d8578063f2fde38b146102eb578063ff16e91e146102fe575f80fd5b80638da5cb5b1461024157806395d89b411461025c5780639ba047b914610264578063a22d483214610277578063a457c2d71461028a575f80fd5b8063313ce56711610105578063313ce567146101d257806339509351146101e157806370a08231146101f4578063715018a61461021c5780637cf1ddb4146102265780638a8c523c14610239575f80fd5b806306fdde0314610141578063095ea7b31461015f5780630f3a325f1461018257806318160ddd146101ad57806323b872dd146101bf575b5f80fd5b610149610311565b6040516101569190610ba7565b60405180910390f35b61017261016d366004610bf7565b6103a1565b6040519015158152602001610156565b610172610190366004610c1f565b6001600160a01b03165f9081526008602052604090205460ff1690565b6002545b604051908152602001610156565b6101726101cd366004610c3f565b6103ba565b60405160128152602001610156565b6101726101ef366004610bf7565b6103dd565b6101b1610202366004610c1f565b6001600160a01b03165f9081526020819052604090205490565b6102246103fe565b005b610224610234366004610c1f565b610411565b610224610439565b6005546040516001600160a01b039091168152602001610156565b6101496104ae565b610224610272366004610c79565b6104bd565b610224610285366004610c1f565b6104e3565b610172610298366004610bf7565b61050d565b6101726102ab366004610bf7565b610587565b60055461017290600160a01b900460ff1681565b60055461017290600160a81b900460ff1681565b6101b16102e6366004610c98565b610594565b6102246102f9366004610c1f565b6105be565b61022461030c366004610c1f565b610637565b60606003805461032090610cc9565b80601f016020809104026020016040519081016040528092919081815260200182805461034c90610cc9565b80156103975780601f1061036e57610100808354040283529160200191610397565b820191905f5260205f20905b81548152906001019060200180831161037a57829003601f168201915b5050505050905090565b5f336103ae818585610662565b60019150505b92915050565b5f336103c7858285610785565b6103d28585856107fd565b506001949350505050565b5f336103ae8185856103ef8383610594565b6103f99190610d15565b610662565b610406610a03565b61040f5f610a5d565b565b610419610a03565b6001600160a01b03165f908152600860205260409020805460ff19169055565b610441610a03565b6007546001600160a01b03166104955760405162461bcd60e51b815260206004820152601460248201527314185a5c881859191c995cdcc81b9bdd081cd95d60621b60448201526064015b60405180910390fd5b6005805460ff60a01b1916600160a01b17905543600655565b60606004805461032090610cc9565b6104c5610a03565b60058054911515600160a81b0260ff60a81b19909216919091179055565b6104eb610a03565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b5f338161051a8286610594565b90508381101561057a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161048c565b6103d28286868403610662565b5f336103ae8185856107fd565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6105c6610a03565b6001600160a01b03811661062b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161048c565b61063481610a5d565b50565b61063f610a03565b6001600160a01b03165f908152600860205260409020805460ff19166001179055565b6001600160a01b0383166106c45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161048c565b6001600160a01b0382166107255760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161048c565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6107908484610594565b90505f1981146107f757818110156107ea5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161048c565b6107f78484848403610662565b50505050565b6001600160a01b0383166108235760405162461bcd60e51b815260040161048c90610d28565b6001600160a01b0382166108495760405162461bcd60e51b815260040161048c90610d6d565b6001600160a01b0383165f9081526008602052604090205460ff1615801561088957506001600160a01b0382165f9081526008602052604090205460ff16155b6108cd5760405162461bcd60e51b815260206004820152601560248201527414db9a5c195c881a5cc8189b1858dadb1a5cdd1959605a1b604482015260640161048c565b6005546001600160a01b031632146109f357600554600160a01b900460ff166109305760405162461bcd60e51b815260206004820152601560248201527454726164696e67206973206e6f742061637469766560581b604482015260640161048c565b600554600160a81b900460ff1615801561095857506007546001600160a01b03838116911614155b156109f3575f6103e86109786b033b2e3c9fd0803ce8000000601e610db0565b6109829190610dc7565b9050806109a3846001600160a01b03165f9081526020819052604090205490565b6109ad9084610d15565b11156109f15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161048c565b505b6109fe838383610a7f565b505050565b6005546001600160a01b0316331461040f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161048c565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610aa55760405162461bcd60e51b815260040161048c90610d28565b6001600160a01b038216610acb5760405162461bcd60e51b815260040161048c90610d6d565b6001600160a01b0383165f9081526020819052604090205481811015610b425760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161048c565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36107f7565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610bf2575f80fd5b919050565b5f8060408385031215610c08575f80fd5b610c1183610bdc565b946020939093013593505050565b5f60208284031215610c2f575f80fd5b610c3882610bdc565b9392505050565b5f805f60608486031215610c51575f80fd5b610c5a84610bdc565b9250610c6860208501610bdc565b929592945050506040919091013590565b5f60208284031215610c89575f80fd5b81358015158114610c38575f80fd5b5f8060408385031215610ca9575f80fd5b610cb283610bdc565b9150610cc060208401610bdc565b90509250929050565b600181811c90821680610cdd57607f821691505b602082108103610cfb57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156103b4576103b4610d01565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176103b4576103b4610d01565b5f82610de157634e487b7160e01b5f52601260045260245ffd5b50049056fea264697066735822122096db92f49f693b136f08f11501f799c67b140e826e51b45c9098a1c808b50ac464736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061013d575f3560e01c80638da5cb5b116100b4578063a9059cbb11610079578063a9059cbb1461029d578063bbc0c742146102b0578063dc07b617146102c4578063dd62ed3e146102d8578063f2fde38b146102eb578063ff16e91e146102fe575f80fd5b80638da5cb5b1461024157806395d89b411461025c5780639ba047b914610264578063a22d483214610277578063a457c2d71461028a575f80fd5b8063313ce56711610105578063313ce567146101d257806339509351146101e157806370a08231146101f4578063715018a61461021c5780637cf1ddb4146102265780638a8c523c14610239575f80fd5b806306fdde0314610141578063095ea7b31461015f5780630f3a325f1461018257806318160ddd146101ad57806323b872dd146101bf575b5f80fd5b610149610311565b6040516101569190610ba7565b60405180910390f35b61017261016d366004610bf7565b6103a1565b6040519015158152602001610156565b610172610190366004610c1f565b6001600160a01b03165f9081526008602052604090205460ff1690565b6002545b604051908152602001610156565b6101726101cd366004610c3f565b6103ba565b60405160128152602001610156565b6101726101ef366004610bf7565b6103dd565b6101b1610202366004610c1f565b6001600160a01b03165f9081526020819052604090205490565b6102246103fe565b005b610224610234366004610c1f565b610411565b610224610439565b6005546040516001600160a01b039091168152602001610156565b6101496104ae565b610224610272366004610c79565b6104bd565b610224610285366004610c1f565b6104e3565b610172610298366004610bf7565b61050d565b6101726102ab366004610bf7565b610587565b60055461017290600160a01b900460ff1681565b60055461017290600160a81b900460ff1681565b6101b16102e6366004610c98565b610594565b6102246102f9366004610c1f565b6105be565b61022461030c366004610c1f565b610637565b60606003805461032090610cc9565b80601f016020809104026020016040519081016040528092919081815260200182805461034c90610cc9565b80156103975780601f1061036e57610100808354040283529160200191610397565b820191905f5260205f20905b81548152906001019060200180831161037a57829003601f168201915b5050505050905090565b5f336103ae818585610662565b60019150505b92915050565b5f336103c7858285610785565b6103d28585856107fd565b506001949350505050565b5f336103ae8185856103ef8383610594565b6103f99190610d15565b610662565b610406610a03565b61040f5f610a5d565b565b610419610a03565b6001600160a01b03165f908152600860205260409020805460ff19169055565b610441610a03565b6007546001600160a01b03166104955760405162461bcd60e51b815260206004820152601460248201527314185a5c881859191c995cdcc81b9bdd081cd95d60621b60448201526064015b60405180910390fd5b6005805460ff60a01b1916600160a01b17905543600655565b60606004805461032090610cc9565b6104c5610a03565b60058054911515600160a81b0260ff60a81b19909216919091179055565b6104eb610a03565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b5f338161051a8286610594565b90508381101561057a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161048c565b6103d28286868403610662565b5f336103ae8185856107fd565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6105c6610a03565b6001600160a01b03811661062b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161048c565b61063481610a5d565b50565b61063f610a03565b6001600160a01b03165f908152600860205260409020805460ff19166001179055565b6001600160a01b0383166106c45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161048c565b6001600160a01b0382166107255760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161048c565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6107908484610594565b90505f1981146107f757818110156107ea5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161048c565b6107f78484848403610662565b50505050565b6001600160a01b0383166108235760405162461bcd60e51b815260040161048c90610d28565b6001600160a01b0382166108495760405162461bcd60e51b815260040161048c90610d6d565b6001600160a01b0383165f9081526008602052604090205460ff1615801561088957506001600160a01b0382165f9081526008602052604090205460ff16155b6108cd5760405162461bcd60e51b815260206004820152601560248201527414db9a5c195c881a5cc8189b1858dadb1a5cdd1959605a1b604482015260640161048c565b6005546001600160a01b031632146109f357600554600160a01b900460ff166109305760405162461bcd60e51b815260206004820152601560248201527454726164696e67206973206e6f742061637469766560581b604482015260640161048c565b600554600160a81b900460ff1615801561095857506007546001600160a01b03838116911614155b156109f3575f6103e86109786b033b2e3c9fd0803ce8000000601e610db0565b6109829190610dc7565b9050806109a3846001600160a01b03165f9081526020819052604090205490565b6109ad9084610d15565b11156109f15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161048c565b505b6109fe838383610a7f565b505050565b6005546001600160a01b0316331461040f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161048c565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610aa55760405162461bcd60e51b815260040161048c90610d28565b6001600160a01b038216610acb5760405162461bcd60e51b815260040161048c90610d6d565b6001600160a01b0383165f9081526020819052604090205481811015610b425760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161048c565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36107f7565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610bf2575f80fd5b919050565b5f8060408385031215610c08575f80fd5b610c1183610bdc565b946020939093013593505050565b5f60208284031215610c2f575f80fd5b610c3882610bdc565b9392505050565b5f805f60608486031215610c51575f80fd5b610c5a84610bdc565b9250610c6860208501610bdc565b929592945050506040919091013590565b5f60208284031215610c89575f80fd5b81358015158114610c38575f80fd5b5f8060408385031215610ca9575f80fd5b610cb283610bdc565b9150610cc060208401610bdc565b90509250929050565b600181811c90821680610cdd57607f821691505b602082108103610cfb57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156103b4576103b4610d01565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176103b4576103b4610d01565b5f82610de157634e487b7160e01b5f52601260045260245ffd5b50049056fea264697066735822122096db92f49f693b136f08f11501f799c67b140e826e51b45c9098a1c808b50ac464736f6c634300081a0033
Deployed Bytecode Sourcemap
27831:1993:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9756:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12116:201;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;12116:201:0;920:187:1;28801:104:0;;;;;;:::i;:::-;-1:-1:-1;;;;;28881:16:0;28857:4;28881:16;;;:7;:16;;;;;;;;;28801:104;10885:108;10973:12;;10885:108;;;1449:25:1;;;1437:2;1422:18;10885:108:0;1303:177:1;12897:261:0;;;;;;:::i;:::-;;:::i;10727:93::-;;;10810:2;2006:36:1;;1994:2;1979:18;10727:93:0;1864:184:1;13567:238:0;;;;;;:::i;:::-;;:::i;11056:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11157:18:0;11130:7;11157:18;;;;;;;;;;;;11056:127;3001:103;;;:::i;:::-;;28687:106;;;;;;:::i;:::-;;:::i;28381:191::-;;;:::i;2360:87::-;2433:6;;2360:87;;-1:-1:-1;;;;;2433:6:0;;;2199:51:1;;2187:2;2172:18;2360:87:0;2053:203:1;9975:104:0;;;:::i;28913:103::-;;;;;;:::i;:::-;;:::i;28279:94::-;;;;;;:::i;:::-;;:::i;14308:436::-;;;;;;:::i;:::-;;:::i;11389:193::-;;;;;;:::i;:::-;;:::i;27974:33::-;;;;;-1:-1:-1;;;27974:33:0;;;;;;28014:35;;;;;-1:-1:-1;;;28014:35:0;;;;;;11645:151;;;;;;:::i;:::-;;:::i;3259:238::-;;;;;;:::i;:::-;;:::i;28580:99::-;;;;;;:::i;:::-;;:::i;9756:100::-;9810:13;9843:5;9836:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9756:100;:::o;12116:201::-;12199:4;804:10;12255:32;804:10;12271:7;12280:6;12255:8;:32::i;:::-;12305:4;12298:11;;;12116:201;;;;;:::o;12897:261::-;12994:4;804:10;13052:38;13068:4;804:10;13083:6;13052:15;:38::i;:::-;13101:27;13111:4;13117:2;13121:6;13101:9;:27::i;:::-;-1:-1:-1;13146:4:0;;12897:261;-1:-1:-1;;;;12897:261:0:o;13567:238::-;13655:4;804:10;13711:64;804:10;13727:7;13764:10;13736:25;804:10;13727:7;13736:9;:25::i;:::-;:38;;;;:::i;:::-;13711:8;:64::i;3001:103::-;2246:13;:11;:13::i;:::-;3066:30:::1;3093:1;3066:18;:30::i;:::-;3001:103::o:0;28687:106::-;2246:13;:11;:13::i;:::-;-1:-1:-1;;;;;28760:16:0::1;28779:5;28760:16:::0;;;:7:::1;:16;::::0;;;;:24;;-1:-1:-1;;28760:24:0::1;::::0;;28687:106::o;28381:191::-;2246:13;:11;:13::i;:::-;28444:11:::1;::::0;-1:-1:-1;;;;;28444:11:0::1;28436:58;;;::::0;-1:-1:-1;;;28436:58:0;;3653:2:1;28436:58:0::1;::::0;::::1;3635:21:1::0;3692:2;3672:18;;;3665:30;-1:-1:-1;;;3711:18:1;;;3704:50;3771:18;;28436:58:0::1;;;;;;;;;28507:13;:20:::0;;-1:-1:-1;;;;28507:20:0::1;-1:-1:-1::0;;;28507:20:0::1;::::0;;28552:12:::1;28538:11;:26:::0;28381:191::o;9975:104::-;10031:13;10064:7;10057:14;;;;;:::i;28913:103::-;2246:13;:11;:13::i;:::-;28984:15:::1;:24:::0;;;::::1;;-1:-1:-1::0;;;28984:24:0::1;-1:-1:-1::0;;;;28984:24:0;;::::1;::::0;;;::::1;::::0;;28913:103::o;28279:94::-;2246:13;:11;:13::i;:::-;28347:11:::1;:18:::0;;-1:-1:-1;;;;;;28347:18:0::1;-1:-1:-1::0;;;;;28347:18:0;;;::::1;::::0;;;::::1;::::0;;28279:94::o;14308:436::-;14401:4;804:10;14401:4;14484:25;804:10;14501:7;14484:9;:25::i;:::-;14457:52;;14548:15;14528:16;:35;;14520:85;;;;-1:-1:-1;;;14520:85:0;;4002:2:1;14520:85:0;;;3984:21:1;4041:2;4021:18;;;4014:30;4080:34;4060:18;;;4053:62;-1:-1:-1;;;4131:18:1;;;4124:35;4176:19;;14520:85:0;3800:401:1;14520:85:0;14641:60;14650:5;14657:7;14685:15;14666:16;:34;14641:8;:60::i;11389:193::-;11468:4;804:10;11524:28;804:10;11541:2;11545:6;11524:9;:28::i;11645:151::-;-1:-1:-1;;;;;11761:18:0;;;11734:7;11761:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11645:151::o;3259:238::-;2246:13;:11;:13::i;:::-;-1:-1:-1;;;;;3362:22:0;::::1;3340:110;;;::::0;-1:-1:-1;;;3340:110:0;;4408:2:1;3340:110:0::1;::::0;::::1;4390:21:1::0;4447:2;4427:18;;;4420:30;4486:34;4466:18;;;4459:62;-1:-1:-1;;;4537:18:1;;;4530:36;4583:19;;3340:110:0::1;4206:402:1::0;3340:110:0::1;3461:28;3480:8;3461:18;:28::i;:::-;3259:238:::0;:::o;28580:99::-;2246:13;:11;:13::i;:::-;-1:-1:-1;;;;;28648:16:0::1;;::::0;;;:7:::1;:16;::::0;;;;:23;;-1:-1:-1;;28648:23:0::1;28667:4;28648:23;::::0;;28580:99::o;18301:346::-;-1:-1:-1;;;;;18403:19:0;;18395:68;;;;-1:-1:-1;;;18395:68:0;;4815:2:1;18395:68:0;;;4797:21:1;4854:2;4834:18;;;4827:30;4893:34;4873:18;;;4866:62;-1:-1:-1;;;4944:18:1;;;4937:34;4988:19;;18395:68:0;4613:400:1;18395:68:0;-1:-1:-1;;;;;18482:21:0;;18474:68;;;;-1:-1:-1;;;18474:68:0;;5220:2:1;18474:68:0;;;5202:21:1;5259:2;5239:18;;;5232:30;5298:34;5278:18;;;5271:62;-1:-1:-1;;;5349:18:1;;;5342:32;5391:19;;18474:68:0;5018:398:1;18474:68:0;-1:-1:-1;;;;;18555:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18607:32;;1449:25:1;;;18607:32:0;;1422:18:1;18607:32:0;;;;;;;18301:346;;;:::o;18938:419::-;19039:24;19066:25;19076:5;19083:7;19066:9;:25::i;:::-;19039:52;;-1:-1:-1;;19106:16:0;:37;19102:248;;19188:6;19168:16;:26;;19160:68;;;;-1:-1:-1;;;19160:68:0;;5623:2:1;19160:68:0;;;5605:21:1;5662:2;5642:18;;;5635:30;5701:31;5681:18;;;5674:59;5750:18;;19160:68:0;5421:353:1;19160:68:0;19272:51;19281:5;19288:7;19316:6;19297:16;:25;19272:8;:51::i;:::-;19028:329;18938:419;;;:::o;29024:797::-;-1:-1:-1;;;;;29156:18:0;;29148:68;;;;-1:-1:-1;;;29148:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29235:16:0;;29227:64;;;;-1:-1:-1;;;29227:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29311:13:0;;;;;;:7;:13;;;;;;;;29310:14;:30;;;;-1:-1:-1;;;;;;29329:11:0;;;;;;:7;:11;;;;;;;;29328:12;29310:30;29302:64;;;;-1:-1:-1;;;29302:64:0;;6791:2:1;29302:64:0;;;6773:21:1;6830:2;6810:18;;;6803:30;-1:-1:-1;;;6849:18:1;;;6842:51;6910:18;;29302:64:0;6589:345:1;29302:64:0;2433:6;;-1:-1:-1;;;;;2433:6:0;29383:9;:20;29379:389;;29428:13;;-1:-1:-1;;;29428:13:0;;;;29420:47;;;;-1:-1:-1;;;29420:47:0;;7141:2:1;29420:47:0;;;7123:21:1;7180:2;7160:18;;;7153:30;-1:-1:-1;;;7199:18:1;;;7192:51;7260:18;;29420:47:0;6939:345:1;29420:47:0;29489:15;;-1:-1:-1;;;29489:15:0;;;;29488:16;:37;;;;-1:-1:-1;29514:11:0;;-1:-1:-1;;;;;29508:17:0;;;29514:11;;29508:17;;29488:37;29484:273;;;29546:17;29588:4;29567:17;27945:20;29582:2;29567:17;:::i;:::-;29566:26;;;;:::i;:::-;29546:46;;29669:9;29652:13;29662:2;-1:-1:-1;;;;;11157:18:0;11130:7;11157:18;;;;;;;;;;;;11056:127;29652:13;29643:22;;:6;:22;:::i;:::-;:35;;29613:128;;;;-1:-1:-1;;;29613:128:0;;7886:2:1;29613:128:0;;;7868:21:1;7925:2;7905:18;;;7898:30;-1:-1:-1;;;7944:18:1;;;7937:49;8003:18;;29613:128:0;7684:343:1;29613:128:0;29527:230;29484:273;29780:33;29796:4;29802:2;29806:6;29780:15;:33::i;:::-;29024:797;;;:::o;2525:132::-;2433:6;;-1:-1:-1;;;;;2433:6:0;804:10;2589:23;2581:68;;;;-1:-1:-1;;;2581:68:0;;8234:2:1;2581:68:0;;;8216:21:1;;;8253:18;;;8246:30;8312:34;8292:18;;;8285:62;8364:18;;2581:68:0;8032:356:1;3657:197:0;3770:6;:17;;-1:-1:-1;;;;;;3770:17:0;-1:-1:-1;;;;;3770:17:0;;;;;;;;;;3657:197::o;15214:806::-;-1:-1:-1;;;;;15311:18:0;;15303:68;;;;-1:-1:-1;;;15303:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15390:16:0;;15382:64;;;;-1:-1:-1;;;15382:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15532:15:0;;15510:19;15532:15;;;;;;;;;;;15566:21;;;;15558:72;;;;-1:-1:-1;;;15558:72:0;;8595:2:1;15558:72:0;;;8577:21:1;8634:2;8614:18;;;8607:30;8673:34;8653:18;;;8646:62;-1:-1:-1;;;8724:18:1;;;8717:36;8770:19;;15558:72:0;8393:402:1;15558:72:0;-1:-1:-1;;;;;15666:15:0;;;:9;:15;;;;;;;;;;;15684:20;;;15666:38;;15884:13;;;;;;;;;;:23;;;;;;15936:26;;1449:25:1;;;15884:13:0;;15936:26;;1422:18:1;15936:26:0;;;;;;;15975:37;29024:797;14:418:1;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1112:186::-;1171:6;1224:2;1212:9;1203:7;1199:23;1195:32;1192:52;;;1240:1;1237;1230:12;1192:52;1263:29;1282:9;1263:29;:::i;:::-;1253:39;1112:186;-1:-1:-1;;;1112:186:1:o;1485:374::-;1562:6;1570;1578;1631:2;1619:9;1610:7;1606:23;1602:32;1599:52;;;1647:1;1644;1637:12;1599:52;1670:29;1689:9;1670:29;:::i;:::-;1660:39;;1718:38;1752:2;1741:9;1737:18;1718:38;:::i;:::-;1485:374;;1708:48;;-1:-1:-1;;;1825:2:1;1810:18;;;;1797:32;;1485:374::o;2261:273::-;2317:6;2370:2;2358:9;2349:7;2345:23;2341:32;2338:52;;;2386:1;2383;2376:12;2338:52;2425:9;2412:23;2478:5;2471:13;2464:21;2457:5;2454:32;2444:60;;2500:1;2497;2490:12;2539:260;2607:6;2615;2668:2;2656:9;2647:7;2643:23;2639:32;2636:52;;;2684:1;2681;2674:12;2636:52;2707:29;2726:9;2707:29;:::i;:::-;2697:39;;2755:38;2789:2;2778:9;2774:18;2755:38;:::i;:::-;2745:48;;2539:260;;;;;:::o;2804:380::-;2883:1;2879:12;;;;2926;;;2947:61;;3001:4;2993:6;2989:17;2979:27;;2947:61;3054:2;3046:6;3043:14;3023:18;3020:38;3017:161;;3100:10;3095:3;3091:20;3088:1;3081:31;3135:4;3132:1;3125:15;3163:4;3160:1;3153:15;3017:161;;2804:380;;;:::o;3189:127::-;3250:10;3245:3;3241:20;3238:1;3231:31;3281:4;3278:1;3271:15;3305:4;3302:1;3295:15;3321:125;3386:9;;;3407:10;;;3404:36;;;3420:18;;:::i;5779:401::-;5981:2;5963:21;;;6020:2;6000:18;;;5993:30;6059:34;6054:2;6039:18;;6032:62;-1:-1:-1;;;6125:2:1;6110:18;;6103:35;6170:3;6155:19;;5779:401::o;6185:399::-;6387:2;6369:21;;;6426:2;6406:18;;;6399:30;6465:34;6460:2;6445:18;;6438:62;-1:-1:-1;;;6531:2:1;6516:18;;6509:33;6574:3;6559:19;;6185:399::o;7289:168::-;7362:9;;;7393;;7410:15;;;7404:22;;7390:37;7380:71;;7431:18;;:::i;7462:217::-;7502:1;7528;7518:132;;7572:10;7567:3;7563:20;7560:1;7553:31;7607:4;7604:1;7597:15;7635:4;7632:1;7625:15;7518:132;-1:-1:-1;7664:9:1;;7462:217::o
Swarm Source
ipfs://96db92f49f693b136f08f11501f799c67b140e826e51b45c9098a1c808b50ac4
[ 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.