ERC-20
Overview
Max Total Supply
777,777,777,000 COOK
Holders
208
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Ratatouille
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-24 */ /** Website : http://ratatouille.cooking/ Telegram : https://twitter.com/ratatouille_eth Twitter : https://t.me/RatatouilleERC20 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.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/IERC20Metadata.sol // 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/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.) (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]. * * 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 value {ERC20} uses, unless this function is * 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: cook.sol pragma solidity ^0.8.17; contract Ratatouille is ERC20, Ownable { uint256 public buyTaxPercentage; uint256 public sellTaxPercentage; uint256 public maxBuy; bool public tradingEnabled; address public uniswapPair; address public marketingWallet; address public cexWallet; address public partnershipWallet; address public taxWallet; bool private liquidityAdded; constructor( address _marketingWallet, address _cexWallet, address _taxWallet, address _partnershipWallet ) ERC20("Ratatouille", "COOK") { uint256 initialSupply = 777777777 * 10**21; uint256 marketingAmount = (initialSupply * 6) / 100; uint256 cexAmount = (initialSupply * 4) / 100; uint256 partnershipAmount = (initialSupply * 2) / 100; uint256 remainingAmount = initialSupply - marketingAmount - cexAmount - partnershipAmount; marketingWallet = _marketingWallet; cexWallet = _cexWallet; taxWallet = _taxWallet; partnershipWallet = _partnershipWallet; _mint(marketingWallet, marketingAmount); _mint(cexWallet, cexAmount); _mint(partnershipWallet, partnershipAmount); _mint(msg.sender, remainingAmount); } function addLiquidity() public onlyOwner { require(!liquidityAdded, "Liquidity already added"); liquidityAdded = true; } function setMaxBuy(uint256 _maxBuy) public onlyOwner { require(_maxBuy >= 0 && _maxBuy <= 100, "Invalid buy max buy"); maxBuy = _maxBuy; } function setBuyTaxPercentage(uint256 _buyTaxPercentage) public onlyOwner { require(_buyTaxPercentage >= 0 && _buyTaxPercentage <= 100, "Invalid buy tax percentage"); buyTaxPercentage = _buyTaxPercentage; } function setSellTaxPercentage(uint256 _sellTaxPercentage) public onlyOwner { require(_sellTaxPercentage >= 0 && _sellTaxPercentage <= 100, "Invalid sell tax percentage"); sellTaxPercentage = _sellTaxPercentage; } function setUniswapPair(address _uniswapPair) public onlyOwner { uniswapPair = _uniswapPair; } function enableTrading() public onlyOwner { tradingEnabled = true; } // Override the _transfer function to apply taxes on transfers function _transfer( address sender, address recipient, uint256 amount ) internal virtual override { require(tradingEnabled || sender == owner() || recipient == owner(), "Trading is not enabled"); uint256 taxPercentage; if (sender == owner() || recipient == owner()) { taxPercentage = 0; } else if (recipient == uniswapPair) { taxPercentage = sellTaxPercentage; } else if (sender == uniswapPair) { taxPercentage = buyTaxPercentage; } else { taxPercentage = 0; } uint256 taxAmount = (amount * taxPercentage) / 100; uint256 netAmount = amount - taxAmount; uint256 maxWalletAmount = totalSupply() * maxBuy / 100; bool isExcludedWallet = (recipient == owner() || recipient == taxWallet || recipient == marketingWallet || recipient == cexWallet || recipient == partnershipWallet || recipient == uniswapPair); if ((tradingEnabled && sender == uniswapPair) && !isExcludedWallet) { require(balanceOf(recipient) + amount <= maxWalletAmount, "Forbid"); } // Apply tax super._transfer(sender, taxWallet, taxAmount); // Transfer net amount to recipient super._transfer(sender, recipient, netAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_cexWallet","type":"address"},{"internalType":"address","name":"_taxWallet","type":"address"},{"internalType":"address","name":"_partnershipWallet","type":"address"}],"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":[],"name":"addLiquidity","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":"buyTaxPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cexWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnershipWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTaxPercentage","type":"uint256"}],"name":"setBuyTaxPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuy","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTaxPercentage","type":"uint256"}],"name":"setSellTaxPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapPair","type":"address"}],"name":"setUniswapPair","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":"tradingEnabled","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"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200166d3803806200166d833981016040819052620000349162000325565b6040518060400160405280600b81526020016a52617461746f75696c6c6560a81b81525060405180604001604052806004815260200163434f4f4b60e01b815250816003908162000086919062000426565b50600462000095828262000426565b505050620000b2620000ac620001e760201b60201c565b620001eb565b6c09d122b2b0b7a1a3aa84a0000060006064620000d183600662000508565b620000dd919062000528565b905060006064620000f084600462000508565b620000fc919062000528565b9050600060646200010f85600262000508565b6200011b919062000528565b9050600081836200012d86886200054b565b6200013991906200054b565b6200014591906200054b565b600a80546001600160a01b03808d166001600160a01b03199283168117909355600b80548d8316908416179055600d80548c8316908416179055600c8054918b16919092161790559091506200019c90856200023d565b600b54620001b4906001600160a01b0316846200023d565b600c54620001cc906001600160a01b0316836200023d565b620001d833826200023d565b50505050505050505062000577565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002985760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002ac919062000561565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b80516001600160a01b03811681146200032057600080fd5b919050565b600080600080608085870312156200033c57600080fd5b620003478562000308565b9350620003576020860162000308565b9250620003676040860162000308565b9150620003776060860162000308565b905092959194509250565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003ad57607f821691505b602082108103620003ce57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200030357600081815260208120601f850160051c81016020861015620003fd5750805b601f850160051c820191505b818110156200041e5782815560010162000409565b505050505050565b81516001600160401b0381111562000442576200044262000382565b6200045a8162000453845462000398565b84620003d4565b602080601f831160018114620004925760008415620004795750858301515b600019600386901b1c1916600185901b1785556200041e565b600085815260208120601f198616915b82811015620004c357888601518255948401946001909101908401620004a2565b5085821015620004e25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620005225762000522620004f2565b92915050565b6000826200054657634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115620005225762000522620004f2565b80820180821115620005225762000522620004f2565b6110e680620005876000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638a8c523c11610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e146103b3578063e8078d94146103c6578063f2fde38b146103ce578063f53bc835146103e157600080fd5b8063a9059cbb14610362578063b107594314610375578063c816841b14610388578063d5aed6bf146103a057600080fd5b80639e7d8d1d116100de5780639e7d8d1d146103205780639ec4be4114610329578063a457c2d71461033c578063a56d37f91461034f57600080fd5b80638a8c523c146102ff5780638da5cb5b1461030757806395d89b411461031857600080fd5b8063395093511161017157806370db69d61161014b57806370db69d6146102d0578063715018a6146102d957806375f0a874146102e3578063760bf186146102f657600080fd5b806339509351146102875780634ada218b1461029a57806370a08231146102a757600080fd5b806323b872dd116101ad57806323b872dd146102275780632dc0562d1461023a578063313ce56714610265578063367d53bc1461027457600080fd5b806306fdde03146101d4578063095ea7b3146101f257806318160ddd14610215575b600080fd5b6101dc6103f4565b6040516101e99190610ec3565b60405180910390f35b610205610200366004610f2d565b610486565b60405190151581526020016101e9565b6002545b6040519081526020016101e9565b610205610235366004610f57565b6104a0565b600d5461024d906001600160a01b031681565b6040516001600160a01b0390911681526020016101e9565b604051601281526020016101e9565b600c5461024d906001600160a01b031681565b610205610295366004610f2d565b6104c4565b6009546102059060ff1681565b6102196102b5366004610f93565b6001600160a01b031660009081526020819052604090205490565b61021960085481565b6102e16104e6565b005b600a5461024d906001600160a01b031681565b61021960065481565b6102e16104fa565b6005546001600160a01b031661024d565b6101dc610511565b61021960075481565b6102e1610337366004610fb5565b610520565b61020561034a366004610f2d565b610583565b6102e161035d366004610fb5565b6105fe565b610205610370366004610f2d565b61065c565b600b5461024d906001600160a01b031681565b60095461024d9061010090046001600160a01b031681565b6102e16103ae366004610f93565b61066a565b6102196103c1366004610fce565b61069a565b6102e16106c5565b6102e16103dc366004610f93565b61073c565b6102e16103ef366004610fb5565b6107b5565b60606003805461040390611001565b80601f016020809104026020016040519081016040528092919081815260200182805461042f90611001565b801561047c5780601f106104515761010080835404028352916020019161047c565b820191906000526020600020905b81548152906001019060200180831161045f57829003601f168201915b5050505050905090565b600033610494818585610809565b60019150505b92915050565b6000336104ae85828561092d565b6104b98585856109a7565b506001949350505050565b6000336104948185856104d7838361069a565b6104e19190611051565b610809565b6104ee610c73565b6104f86000610ccd565b565b610502610c73565b6009805460ff19166001179055565b60606004805461040390611001565b610528610c73565b606481111561057e5760405162461bcd60e51b815260206004820152601b60248201527f496e76616c69642073656c6c207461782070657263656e74616765000000000060448201526064015b60405180910390fd5b600755565b60003381610591828661069a565b9050838110156105f15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610575565b6104b98286868403610809565b610606610c73565b60648111156106575760405162461bcd60e51b815260206004820152601a60248201527f496e76616c696420627579207461782070657263656e746167650000000000006044820152606401610575565b600655565b6000336104948185856109a7565b610672610c73565b600980546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106cd610c73565b600d54600160a01b900460ff16156107275760405162461bcd60e51b815260206004820152601760248201527f4c697175696469747920616c72656164792061646465640000000000000000006044820152606401610575565b600d805460ff60a01b1916600160a01b179055565b610744610c73565b6001600160a01b0381166107a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610575565b6107b281610ccd565b50565b6107bd610c73565b60648111156108045760405162461bcd60e51b8152602060048201526013602482015272496e76616c696420627579206d61782062757960681b6044820152606401610575565b600855565b6001600160a01b03831661086b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610575565b6001600160a01b0382166108cc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610575565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610939848461069a565b905060001981146109a157818110156109945760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610575565b6109a18484848403610809565b50505050565b60095460ff16806109c557506005546001600160a01b038481169116145b806109dd57506005546001600160a01b038381169116145b610a225760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610575565b6000610a366005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161480610a6257506005546001600160a01b038481169116145b15610a6f57506000610abb565b6009546001600160a01b03610100909104811690841603610a935750600754610abb565b6009546001600160a01b03610100909104811690851603610ab75750600654610abb565b5060005b60006064610ac98385611064565b610ad3919061107b565b90506000610ae1828561109d565b905060006064600854610af360025490565b610afd9190611064565b610b07919061107b565b90506000610b1d6005546001600160a01b031690565b6001600160a01b0316876001600160a01b03161480610b495750600d546001600160a01b038881169116145b80610b615750600a546001600160a01b038881169116145b80610b795750600b546001600160a01b038881169116145b80610b915750600c546001600160a01b038881169116145b80610bae57506009546001600160a01b0388811661010090920416145b60095490915060ff168015610bd557506009546001600160a01b0389811661010090920416145b8015610bdf575080155b15610c46578186610c05896001600160a01b031660009081526020819052604090205490565b610c0f9190611051565b1115610c465760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610575565b600d54610c5e9089906001600160a01b031686610d1f565b610c69888885610d1f565b5050505050505050565b6005546001600160a01b031633146104f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610575565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610d835760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610575565b6001600160a01b038216610de55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610575565b6001600160a01b03831660009081526020819052604090205481811015610e5d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610575565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109a1565b600060208083528351808285015260005b81811015610ef057858101830151858201604001528201610ed4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f2857600080fd5b919050565b60008060408385031215610f4057600080fd5b610f4983610f11565b946020939093013593505050565b600080600060608486031215610f6c57600080fd5b610f7584610f11565b9250610f8360208501610f11565b9150604084013590509250925092565b600060208284031215610fa557600080fd5b610fae82610f11565b9392505050565b600060208284031215610fc757600080fd5b5035919050565b60008060408385031215610fe157600080fd5b610fea83610f11565b9150610ff860208401610f11565b90509250929050565b600181811c9082168061101557607f821691505b60208210810361103557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561049a5761049a61103b565b808202811582820484141761049a5761049a61103b565b60008261109857634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561049a5761049a61103b56fea264697066735822122045f826ff34c45c8717011d587eddfd310daf8457260e9066a0f808d726075f8364736f6c634300081100330000000000000000000000004caec64d24c105fc88d80eb0338ff699c5999cf100000000000000000000000055e232bb6f6a4332eb9413d11d339372cc8ebcb4000000000000000000000000469cfb6eed472b2d49b5049ed88f795782c2ba1e00000000000000000000000080f96ecd3413ac9338536d628bdd1647dbba92e4
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638a8c523c11610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e146103b3578063e8078d94146103c6578063f2fde38b146103ce578063f53bc835146103e157600080fd5b8063a9059cbb14610362578063b107594314610375578063c816841b14610388578063d5aed6bf146103a057600080fd5b80639e7d8d1d116100de5780639e7d8d1d146103205780639ec4be4114610329578063a457c2d71461033c578063a56d37f91461034f57600080fd5b80638a8c523c146102ff5780638da5cb5b1461030757806395d89b411461031857600080fd5b8063395093511161017157806370db69d61161014b57806370db69d6146102d0578063715018a6146102d957806375f0a874146102e3578063760bf186146102f657600080fd5b806339509351146102875780634ada218b1461029a57806370a08231146102a757600080fd5b806323b872dd116101ad57806323b872dd146102275780632dc0562d1461023a578063313ce56714610265578063367d53bc1461027457600080fd5b806306fdde03146101d4578063095ea7b3146101f257806318160ddd14610215575b600080fd5b6101dc6103f4565b6040516101e99190610ec3565b60405180910390f35b610205610200366004610f2d565b610486565b60405190151581526020016101e9565b6002545b6040519081526020016101e9565b610205610235366004610f57565b6104a0565b600d5461024d906001600160a01b031681565b6040516001600160a01b0390911681526020016101e9565b604051601281526020016101e9565b600c5461024d906001600160a01b031681565b610205610295366004610f2d565b6104c4565b6009546102059060ff1681565b6102196102b5366004610f93565b6001600160a01b031660009081526020819052604090205490565b61021960085481565b6102e16104e6565b005b600a5461024d906001600160a01b031681565b61021960065481565b6102e16104fa565b6005546001600160a01b031661024d565b6101dc610511565b61021960075481565b6102e1610337366004610fb5565b610520565b61020561034a366004610f2d565b610583565b6102e161035d366004610fb5565b6105fe565b610205610370366004610f2d565b61065c565b600b5461024d906001600160a01b031681565b60095461024d9061010090046001600160a01b031681565b6102e16103ae366004610f93565b61066a565b6102196103c1366004610fce565b61069a565b6102e16106c5565b6102e16103dc366004610f93565b61073c565b6102e16103ef366004610fb5565b6107b5565b60606003805461040390611001565b80601f016020809104026020016040519081016040528092919081815260200182805461042f90611001565b801561047c5780601f106104515761010080835404028352916020019161047c565b820191906000526020600020905b81548152906001019060200180831161045f57829003601f168201915b5050505050905090565b600033610494818585610809565b60019150505b92915050565b6000336104ae85828561092d565b6104b98585856109a7565b506001949350505050565b6000336104948185856104d7838361069a565b6104e19190611051565b610809565b6104ee610c73565b6104f86000610ccd565b565b610502610c73565b6009805460ff19166001179055565b60606004805461040390611001565b610528610c73565b606481111561057e5760405162461bcd60e51b815260206004820152601b60248201527f496e76616c69642073656c6c207461782070657263656e74616765000000000060448201526064015b60405180910390fd5b600755565b60003381610591828661069a565b9050838110156105f15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610575565b6104b98286868403610809565b610606610c73565b60648111156106575760405162461bcd60e51b815260206004820152601a60248201527f496e76616c696420627579207461782070657263656e746167650000000000006044820152606401610575565b600655565b6000336104948185856109a7565b610672610c73565b600980546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106cd610c73565b600d54600160a01b900460ff16156107275760405162461bcd60e51b815260206004820152601760248201527f4c697175696469747920616c72656164792061646465640000000000000000006044820152606401610575565b600d805460ff60a01b1916600160a01b179055565b610744610c73565b6001600160a01b0381166107a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610575565b6107b281610ccd565b50565b6107bd610c73565b60648111156108045760405162461bcd60e51b8152602060048201526013602482015272496e76616c696420627579206d61782062757960681b6044820152606401610575565b600855565b6001600160a01b03831661086b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610575565b6001600160a01b0382166108cc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610575565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610939848461069a565b905060001981146109a157818110156109945760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610575565b6109a18484848403610809565b50505050565b60095460ff16806109c557506005546001600160a01b038481169116145b806109dd57506005546001600160a01b038381169116145b610a225760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610575565b6000610a366005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161480610a6257506005546001600160a01b038481169116145b15610a6f57506000610abb565b6009546001600160a01b03610100909104811690841603610a935750600754610abb565b6009546001600160a01b03610100909104811690851603610ab75750600654610abb565b5060005b60006064610ac98385611064565b610ad3919061107b565b90506000610ae1828561109d565b905060006064600854610af360025490565b610afd9190611064565b610b07919061107b565b90506000610b1d6005546001600160a01b031690565b6001600160a01b0316876001600160a01b03161480610b495750600d546001600160a01b038881169116145b80610b615750600a546001600160a01b038881169116145b80610b795750600b546001600160a01b038881169116145b80610b915750600c546001600160a01b038881169116145b80610bae57506009546001600160a01b0388811661010090920416145b60095490915060ff168015610bd557506009546001600160a01b0389811661010090920416145b8015610bdf575080155b15610c46578186610c05896001600160a01b031660009081526020819052604090205490565b610c0f9190611051565b1115610c465760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610575565b600d54610c5e9089906001600160a01b031686610d1f565b610c69888885610d1f565b5050505050505050565b6005546001600160a01b031633146104f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610575565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610d835760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610575565b6001600160a01b038216610de55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610575565b6001600160a01b03831660009081526020819052604090205481811015610e5d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610575565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109a1565b600060208083528351808285015260005b81811015610ef057858101830151858201604001528201610ed4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f2857600080fd5b919050565b60008060408385031215610f4057600080fd5b610f4983610f11565b946020939093013593505050565b600080600060608486031215610f6c57600080fd5b610f7584610f11565b9250610f8360208501610f11565b9150604084013590509250925092565b600060208284031215610fa557600080fd5b610fae82610f11565b9392505050565b600060208284031215610fc757600080fd5b5035919050565b60008060408385031215610fe157600080fd5b610fea83610f11565b9150610ff860208401610f11565b90509250929050565b600181811c9082168061101557607f821691505b60208210810361103557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561049a5761049a61103b565b808202811582820484141761049a5761049a61103b565b60008261109857634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561049a5761049a61103b56fea264697066735822122045f826ff34c45c8717011d587eddfd310daf8457260e9066a0f808d726075f8364736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004caec64d24c105fc88d80eb0338ff699c5999cf100000000000000000000000055e232bb6f6a4332eb9413d11d339372cc8ebcb4000000000000000000000000469cfb6eed472b2d49b5049ed88f795782c2ba1e00000000000000000000000080f96ecd3413ac9338536d628bdd1647dbba92e4
-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0x4caeC64d24C105FC88d80EB0338ff699C5999Cf1
Arg [1] : _cexWallet (address): 0x55E232Bb6F6A4332Eb9413D11D339372CC8EBcB4
Arg [2] : _taxWallet (address): 0x469cFB6eED472b2D49B5049eD88f795782c2BA1e
Arg [3] : _partnershipWallet (address): 0x80f96eCD3413ac9338536d628bDD1647dBbA92e4
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000004caec64d24c105fc88d80eb0338ff699c5999cf1
Arg [1] : 00000000000000000000000055e232bb6f6a4332eb9413d11d339372cc8ebcb4
Arg [2] : 000000000000000000000000469cfb6eed472b2d49b5049ed88f795782c2ba1e
Arg [3] : 00000000000000000000000080f96ecd3413ac9338536d628bdd1647dbba92e4
Deployed Bytecode Sourcemap
20773:3718:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9528:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11879:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11879:201:0;1004:187:1;10648:108:0;10736:12;;10648:108;;;1342:25:1;;;1330:2;1315:18;10648:108:0;1196:177:1;12660:295:0;;;;;;:::i;:::-;;:::i;21099:24::-;;;;;-1:-1:-1;;;;;21099:24:0;;;;;;-1:-1:-1;;;;;1875:32:1;;;1857:51;;1845:2;1830:18;21099:24:0;1711:203:1;10490:93:0;;;10573:2;2061:36:1;;2049:2;2034:18;10490:93:0;1919:184:1;21060:32:0;;;;;-1:-1:-1;;;;;21060:32:0;;;13364:238;;;;;;:::i;:::-;;:::i;20926:26::-;;;;;;;;;10819:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10920:18:0;10893:7;10920:18;;;;;;;;;;;;10819:127;20898:21;;;;;;2954:103;;;:::i;:::-;;20992:30;;;;;-1:-1:-1;;;;;20992:30:0;;;20821:31;;;;;;22971:82;;;:::i;2306:87::-;2379:6;;-1:-1:-1;;;;;2379:6:0;2306:87;;9747:104;;;:::i;20859:32::-;;;;;;22604:235;;;;;;:::i;:::-;;:::i;14105:436::-;;;;;;:::i;:::-;;:::i;22368:228::-;;;;;;:::i;:::-;;:::i;11152:193::-;;;;;;:::i;:::-;;:::i;21029:24::-;;;;;-1:-1:-1;;;;;21029:24:0;;;20959:26;;;;;;;;-1:-1:-1;;;;;20959:26:0;;;22851:108;;;;;;:::i;:::-;;:::i;11408:151::-;;;;;;:::i;:::-;;:::i;22048:143::-;;;:::i;3212:201::-;;;;;;:::i;:::-;;:::i;22199:161::-;;;;;;:::i;:::-;;:::i;9528:100::-;9582:13;9615:5;9608:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9528:100;:::o;11879:201::-;11962:4;937:10;12018:32;937:10;12034:7;12043:6;12018:8;:32::i;:::-;12068:4;12061:11;;;11879:201;;;;;:::o;12660:295::-;12791:4;937:10;12849:38;12865:4;937:10;12880:6;12849:15;:38::i;:::-;12898:27;12908:4;12914:2;12918:6;12898:9;:27::i;:::-;-1:-1:-1;12943:4:0;;12660:295;-1:-1:-1;;;;12660:295:0:o;13364:238::-;13452:4;937:10;13508:64;937:10;13524:7;13561:10;13533:25;937:10;13524:7;13533:9;:25::i;:::-;:38;;;;:::i;:::-;13508:8;:64::i;2954:103::-;2192:13;:11;:13::i;:::-;3019:30:::1;3046:1;3019:18;:30::i;:::-;2954:103::o:0;22971:82::-;2192:13;:11;:13::i;:::-;23024:14:::1;:21:::0;;-1:-1:-1;;23024:21:0::1;23041:4;23024:21;::::0;;22971:82::o;9747:104::-;9803:13;9836:7;9829:14;;;;;:::i;22604:235::-;2192:13;:11;:13::i;:::-;22747:3:::1;22725:18;:25;;22690:92;;;::::0;-1:-1:-1;;;22690:92:0;;3598:2:1;22690:92:0::1;::::0;::::1;3580:21:1::0;3637:2;3617:18;;;3610:30;3676:29;3656:18;;;3649:57;3723:18;;22690:92:0::1;;;;;;;;;22793:17;:38:::0;22604:235::o;14105:436::-;14198:4;937:10;14198:4;14281:25;937:10;14298:7;14281:9;:25::i;:::-;14254:52;;14345:15;14325:16;:35;;14317:85;;;;-1:-1:-1;;;14317:85:0;;3954:2:1;14317:85:0;;;3936:21:1;3993:2;3973:18;;;3966:30;4032:34;4012:18;;;4005:62;-1:-1:-1;;;4083:18:1;;;4076:35;4128:19;;14317:85:0;3752:401:1;14317:85:0;14438:60;14447:5;14454:7;14482:15;14463:16;:34;14438:8;:60::i;22368:228::-;2192:13;:11;:13::i;:::-;22507:3:::1;22486:17;:24;;22452:89;;;::::0;-1:-1:-1;;;22452:89:0;;4360:2:1;22452:89:0::1;::::0;::::1;4342:21:1::0;4399:2;4379:18;;;4372:30;4438:28;4418:18;;;4411:56;4484:18;;22452:89:0::1;4158:350:1::0;22452:89:0::1;22552:16;:36:::0;22368:228::o;11152:193::-;11231:4;937:10;11287:28;937:10;11304:2;11308:6;11287:9;:28::i;22851:108::-;2192:13;:11;:13::i;:::-;22925:11:::1;:26:::0;;-1:-1:-1;;;;;22925:26:0;;::::1;;;-1:-1:-1::0;;;;;;22925:26:0;;::::1;::::0;;;::::1;::::0;;22851:108::o;11408:151::-;-1:-1:-1;;;;;11524:18:0;;;11497:7;11524:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11408:151::o;22048:143::-;2192:13;:11;:13::i;:::-;22109:14:::1;::::0;-1:-1:-1;;;22109:14:0;::::1;;;22108:15;22100:51;;;::::0;-1:-1:-1;;;22100:51:0;;4715:2:1;22100:51:0::1;::::0;::::1;4697:21:1::0;4754:2;4734:18;;;4727:30;4793:25;4773:18;;;4766:53;4836:18;;22100:51:0::1;4513:347:1::0;22100:51:0::1;22162:14;:21:::0;;-1:-1:-1;;;;22162:21:0::1;-1:-1:-1::0;;;22162:21:0::1;::::0;;22048:143::o;3212:201::-;2192:13;:11;:13::i;:::-;-1:-1:-1;;;;;3301:22:0;::::1;3293:73;;;::::0;-1:-1:-1;;;3293:73:0;;5067:2:1;3293:73:0::1;::::0;::::1;5049:21:1::0;5106:2;5086:18;;;5079:30;5145:34;5125:18;;;5118:62;-1:-1:-1;;;5196:18:1;;;5189:36;5242:19;;3293:73:0::1;4865:402:1::0;3293:73:0::1;3377:28;3396:8;3377:18;:28::i;:::-;3212:201:::0;:::o;22199:161::-;2192:13;:11;:13::i;:::-;22298:3:::1;22287:7;:14;;22263:62;;;::::0;-1:-1:-1;;;22263:62:0;;5474:2:1;22263:62:0::1;::::0;::::1;5456:21:1::0;5513:2;5493:18;;;5486:30;-1:-1:-1;;;5532:18:1;;;5525:49;5591:18;;22263:62:0::1;5272:343:1::0;22263:62:0::1;22336:6;:16:::0;22199:161::o;18132:380::-;-1:-1:-1;;;;;18268:19:0;;18260:68;;;;-1:-1:-1;;;18260:68:0;;5822:2:1;18260:68:0;;;5804:21:1;5861:2;5841:18;;;5834:30;5900:34;5880:18;;;5873:62;-1:-1:-1;;;5951:18:1;;;5944:34;5995:19;;18260:68:0;5620:400:1;18260:68:0;-1:-1:-1;;;;;18347:21:0;;18339:68;;;;-1:-1:-1;;;18339:68:0;;6227:2:1;18339:68:0;;;6209:21:1;6266:2;6246:18;;;6239:30;6305:34;6285:18;;;6278:62;-1:-1:-1;;;6356:18:1;;;6349:32;6398:19;;18339:68:0;6025:398:1;18339:68:0;-1:-1:-1;;;;;18420:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18472:32;;1342:25:1;;;18472:32:0;;1315:18:1;18472:32:0;;;;;;;18132:380;;;:::o;18803:453::-;18938:24;18965:25;18975:5;18982:7;18965:9;:25::i;:::-;18938:52;;-1:-1:-1;;19005:16:0;:37;19001:248;;19087:6;19067:16;:26;;19059:68;;;;-1:-1:-1;;;19059:68:0;;6630:2:1;19059:68:0;;;6612:21:1;6669:2;6649:18;;;6642:30;6708:31;6688:18;;;6681:59;6757:18;;19059:68:0;6428:353:1;19059:68:0;19171:51;19180:5;19187:7;19215:6;19196:16;:25;19171:8;:51::i;:::-;18927:329;18803:453;;;:::o;23129:1359::-;23278:14;;;;;:35;;-1:-1:-1;2379:6:0;;-1:-1:-1;;;;;23296:17:0;;;2379:6;;23296:17;23278:35;:59;;;-1:-1:-1;2379:6:0;;-1:-1:-1;;;;;23317:20:0;;;2379:6;;23317:20;23278:59;23270:94;;;;-1:-1:-1;;;23270:94:0;;6988:2:1;23270:94:0;;;6970:21:1;7027:2;7007:18;;;7000:30;-1:-1:-1;;;7046:18:1;;;7039:52;7108:18;;23270:94:0;6786:346:1;23270:94:0;23377:21;23423:7;2379:6;;-1:-1:-1;;;;;2379:6:0;;2306:87;23423:7;-1:-1:-1;;;;;23413:17:0;:6;-1:-1:-1;;;;;23413:17:0;;:41;;;-1:-1:-1;2379:6:0;;-1:-1:-1;;;;;23434:20:0;;;2379:6;;23434:20;23413:41;23409:329;;;-1:-1:-1;23487:1:0;23409:329;;;23523:11;;-1:-1:-1;;;;;23523:11:0;;;;;;23510:24;;;;23506:232;;-1:-1:-1;23567:17:0;;23506:232;;;23616:11;;-1:-1:-1;;;;;23616:11:0;;;;;;23606:21;;;;23602:136;;-1:-1:-1;23660:16:0;;23602:136;;;-1:-1:-1;23725:1:0;23602:136;23750:17;23797:3;23771:22;23780:13;23771:6;:22;:::i;:::-;23770:30;;;;:::i;:::-;23750:50;-1:-1:-1;23811:17:0;23831:18;23750:50;23831:6;:18;:::i;:::-;23811:38;;23862:23;23913:3;23904:6;;23888:13;10736:12;;;10648:108;23888:13;:22;;;;:::i;:::-;:28;;;;:::i;:::-;23862:54;;23927:21;23965:7;2379:6;;-1:-1:-1;;;;;2379:6:0;;2306:87;23965:7;-1:-1:-1;;;;;23952:20:0;:9;-1:-1:-1;;;;;23952:20:0;;:46;;;-1:-1:-1;23989:9:0;;-1:-1:-1;;;;;23976:22:0;;;23989:9;;23976:22;23952:46;:78;;;-1:-1:-1;24015:15:0;;-1:-1:-1;;;;;24002:28:0;;;24015:15;;24002:28;23952:78;:104;;;-1:-1:-1;24047:9:0;;-1:-1:-1;;;;;24034:22:0;;;24047:9;;24034:22;23952:104;:138;;;-1:-1:-1;24073:17:0;;-1:-1:-1;;;;;24060:30:0;;;24073:17;;24060:30;23952:138;:166;;;-1:-1:-1;24107:11:0;;-1:-1:-1;;;;;24094:24:0;;;24107:11;;;;;24094:24;23952:166;24145:14;;23927:192;;-1:-1:-1;24145:14:0;;:39;;;;-1:-1:-1;24173:11:0;;-1:-1:-1;;;;;24163:21:0;;;24173:11;;;;;24163:21;24145:39;24144:62;;;;;24190:16;24189:17;24144:62;24140:162;;;24264:15;24254:6;24231:20;24241:9;-1:-1:-1;;;;;10920:18:0;10893:7;10920:18;;;;;;;;;;;;10819:127;24231:20;:29;;;;:::i;:::-;:48;;24223:67;;;;-1:-1:-1;;;24223:67:0;;7867:2:1;24223:67:0;;;7849:21:1;7906:1;7886:18;;;7879:29;-1:-1:-1;;;7924:18:1;;;7917:36;7970:18;;24223:67:0;7665:329:1;24223:67:0;24358:9;;24334:45;;24350:6;;-1:-1:-1;;;;;24358:9:0;24369;24334:15;:45::i;:::-;24435;24451:6;24459:9;24470;24435:15;:45::i;:::-;23259:1229;;;;;23129:1359;;;:::o;2471:132::-;2379:6;;-1:-1:-1;;;;;2379:6:0;937:10;2535:23;2527:68;;;;-1:-1:-1;;;2527:68:0;;8201:2:1;2527:68:0;;;8183:21:1;;;8220:18;;;8213:30;8279:34;8259:18;;;8252:62;8331:18;;2527:68:0;7999:356:1;3573:191:0;3666:6;;;-1:-1:-1;;;;;3683:17:0;;;-1:-1:-1;;;;;;3683:17:0;;;;;;;3716:40;;3666:6;;;3683:17;3666:6;;3716:40;;3647:16;;3716:40;3636:128;3573:191;:::o;15011:840::-;-1:-1:-1;;;;;15142:18:0;;15134:68;;;;-1:-1:-1;;;15134:68:0;;8562:2:1;15134:68:0;;;8544:21:1;8601:2;8581:18;;;8574:30;8640:34;8620:18;;;8613:62;-1:-1:-1;;;8691:18:1;;;8684:35;8736:19;;15134:68:0;8360:401:1;15134:68:0;-1:-1:-1;;;;;15221:16:0;;15213:64;;;;-1:-1:-1;;;15213:64:0;;8968:2:1;15213:64:0;;;8950:21:1;9007:2;8987:18;;;8980:30;9046:34;9026:18;;;9019:62;-1:-1:-1;;;9097:18:1;;;9090:33;9140:19;;15213:64:0;8766:399:1;15213:64:0;-1:-1:-1;;;;;15363:15:0;;15341:19;15363:15;;;;;;;;;;;15397:21;;;;15389:72;;;;-1:-1:-1;;;15389:72:0;;9372:2:1;15389:72:0;;;9354:21:1;9411:2;9391:18;;;9384:30;9450:34;9430:18;;;9423:62;-1:-1:-1;;;9501:18:1;;;9494:36;9547:19;;15389:72:0;9170:402:1;15389:72:0;-1:-1:-1;;;;;15497:15:0;;;:9;:15;;;;;;;;;;;15515:20;;;15497:38;;15715:13;;;;;;;;;;:23;;;;;;15767:26;;1342:25:1;;;15715:13:0;;15767:26;;1315:18:1;15767:26:0;;;;;;;15806:37;19856:125;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;2108:186::-;2167:6;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;:::-;2249:39;2108:186;-1:-1:-1;;;2108:186:1:o;2299:180::-;2358:6;2411:2;2399:9;2390:7;2386:23;2382:32;2379:52;;;2427:1;2424;2417:12;2379:52;-1:-1:-1;2450:23:1;;2299:180;-1:-1:-1;2299:180:1:o;2484:260::-;2552:6;2560;2613:2;2601:9;2592:7;2588:23;2584:32;2581:52;;;2629:1;2626;2619:12;2581:52;2652:29;2671:9;2652:29;:::i;:::-;2642:39;;2700:38;2734:2;2723:9;2719:18;2700:38;:::i;:::-;2690:48;;2484:260;;;;;:::o;2749:380::-;2828:1;2824:12;;;;2871;;;2892:61;;2946:4;2938:6;2934:17;2924:27;;2892:61;2999:2;2991:6;2988:14;2968:18;2965:38;2962:161;;3045:10;3040:3;3036:20;3033:1;3026:31;3080:4;3077:1;3070:15;3108:4;3105:1;3098:15;2962:161;;2749:380;;;:::o;3134:127::-;3195:10;3190:3;3186:20;3183:1;3176:31;3226:4;3223:1;3216:15;3250:4;3247:1;3240:15;3266:125;3331:9;;;3352:10;;;3349:36;;;3365:18;;:::i;7137:168::-;7210:9;;;7241;;7258:15;;;7252:22;;7238:37;7228:71;;7279:18;;:::i;7310:217::-;7350:1;7376;7366:132;;7420:10;7415:3;7411:20;7408:1;7401:31;7455:4;7452:1;7445:15;7483:4;7480:1;7473:15;7366:132;-1:-1:-1;7512:9:1;;7310:217::o;7532:128::-;7599:9;;;7620:11;;;7617:37;;;7634:18;;:::i
Swarm Source
ipfs://45f826ff34c45c8717011d587eddfd310daf8457260e9066a0f808d726075f83
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.