ERC-20
Overview
Max Total Supply
1,000,000,000 BIZZ
Holders
56
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:
Biz
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-24 */ /** @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#####@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#%%%#########((@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%#%############(((((@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%##############((((((((%@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%##############((((((((((((@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%##############(((((((((((((@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%##############((((((((((((((@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%##############((((((((((((((@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%#######&@@@###///(((((((((((@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((((@@###///////(((((((@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((((((//////###(/////////(((((@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@%#%%(((/////////////###////////////((@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@%%##%%%%#####//////////////##(//////////////@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@%%%%%############//////////////###//////////////@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@%%%##############//////////////@@@#(////////////&@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@%%%%##############/////////////@@@@@@##//////////%%%##@@@@@@@@@@@@@@@@ @@@@@@@@@%%%%##############////////////(@@&(#@@@@&#///////%%%#####@@@@@@@@@@@@@@ @@@@@@@@@%%%##############/////(&@@((((((((/////@@@@#////%%%#########@@@@@@@@@@@ @@@@@@@@%%%##############@@@@#((((((///////////////@@@@@%%%%###########@@@@@@@@@ @@@@@@@%%%%#######(((((((((%@@@#(////////////////////@@%%%%##############@@@@@@@ @@@@@@@@%%#(((((((((((((((((((@@@##////////////////////%%%##############@@@@@@@@ @@@@@@@@@@%%((((((((((((((((((((@@@%#////////////////////##############@@@@@@@@@ @@@@@@@@@@@@%%((((((((((((((((((((@@@@#///////////((((((((((##########@@@@@@@@@@ @@@@@@@@@@@@@@@%((((((((((((((((%@@@@@@@%(/(((((((((((((((((((########@@@@@@@@@@ @@@@@@@@@@@@@@@@@#(((((((@@@@@@@@@@@@@@@@@%%((((((((((((((((((((#####@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%((((((((((((((((((((##@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#(((((((((((((((/(@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%(((((((#@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ building decentralized social networks through the use of our anonymous image board Image Board > https://bizzchan.com/ website:https://bizzchain.org/ Telegram:https://bizzchain.org/ Twitter:https://twitter.com/bizzchain Discord : https://discord.com/invite/bizzchain Tokenomics: 1 Billion Bizz Fixed 1% buy and 5% sell tax Max wallet 2% */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; 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); } 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); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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 {} } abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } contract ERC20PresetFixedSupply is ERC20Burnable { /** * @dev Mints `initialSupply` amount of token and transfers them to `owner`. * * See {ERC20-constructor}. */ constructor(string memory name, string memory symbol, uint256 initialSupply, address owner) ERC20(name, symbol) { _mint(owner, initialSupply); } } 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); } } interface IUniswapV2Router02 { function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract Biz is Context, ERC20PresetFixedSupply, Ownable { address private deployer; uint256 private constant MAX_WALLET_SIZE = 1e9 * 1e18; // Max wallet size: 2% of total supply uint256 private constant BUY_TAX = 2; // Buy tax: 2% uint256 private constant SELL_TAX = 4; // Sell tax: 4% address private constant uniswapRouter = address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Replace with the actual Uniswap Router address address private constant marketingWallet = address(0x50aefAB26Cd44Ef2f2B69C3BaE098A1e60f19346); // Marketing wallet address IUniswapV2Router02 private uniswapRouterInstance; mapping(address => bool) private taxExemptAddresses; mapping(address => bool) private walletExemptAddresses; constructor() ERC20PresetFixedSupply("Bizzchain", "BIZZ", 1e9 * 1e18, msg.sender) { deployer = _msgSender(); uniswapRouterInstance = IUniswapV2Router02(uniswapRouter); _approve(address(this), uniswapRouter, type(uint256).max); // Approve unlimited token transfer to the Uniswap Router } function _transfer(address sender, address recipient, uint256 amount) internal virtual override { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); bool isSenderExempt = isTaxExempt(sender); bool isRecipientExempt = isTaxExempt(recipient); if (!isSenderExempt && !isRecipientExempt) { require(balanceOf(recipient) + amount <= getMaxWalletSize(recipient), "ERC20: Recipient wallet size exceeds the limit"); } uint256 taxAmount; if (!isSenderExempt && !isRecipientExempt) { if (sender == uniswapRouter || recipient == uniswapRouter) { // Buy tax: 2% taxAmount = (amount * BUY_TAX) / 100; } else { // Sell tax: 4% taxAmount = (amount * SELL_TAX) / 100; } } if (taxAmount > 0) { super._transfer(sender, deployer, taxAmount); // Transfer tax to deployer address amount -= taxAmount; // Swap the collected tax for ETH and send to the marketing wallet _swapTokensForETH(taxAmount); _transferETHToMarketingWallet(); } super._transfer(sender, recipient, amount); } function _swapTokensForETH(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapRouterInstance.WETH(); approve(address(uniswapRouterInstance), tokenAmount); uniswapRouterInstance.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function _transferETHToMarketingWallet() private { uint256 balance = address(this).balance; payable(marketingWallet).transfer(balance); } function isTaxExempt(address account) public view returns (bool) { return taxExemptAddresses[account]; } function setTaxExempt(address account, bool exempt) public onlyOwner { taxExemptAddresses[account] = exempt; } function isWalletExempt(address account) public view returns (bool) { return walletExemptAddresses[account]; } function setWalletExempt(address account, bool exempt) public onlyOwner { walletExemptAddresses[account] = exempt; } function getMaxWalletSize(address account) public view returns (uint256) { if (isWalletExempt(account)) { return type(uint256).max; } return MAX_WALLET_SIZE; } receive() external payable {} }
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":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"}],"name":"getMaxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"isTaxExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWalletExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setTaxExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setWalletExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051806040016040528060098152602001682134bd3d31b430b4b760b91b815250604051806040016040528060048152602001632124ad2d60e11b8152506b033b2e3c9fd0803ce80000003383838160039081620000729190620003ec565b506004620000818282620003ec565b505050620000968183620000fe60201b60201c565b50505050620000b4620000ae620001c560201b60201c565b620001c9565b600680546001600160a01b0319908116331790915560078054737a250d5630b4cf539739df2c5dacb4c659f2488d921682179055620000f89030906000196200021b565b620004e0565b6001600160a01b0382166200015a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200016e9190620004b8565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166200027f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000151565b6001600160a01b038216620002e25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000151565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200037357607f821691505b6020821081036200039457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200034357600081815260208120601f850160051c81016020861015620003c35750805b601f850160051c820191505b81811015620003e457828155600101620003cf565b505050505050565b81516001600160401b0381111562000408576200040862000348565b62000420816200041984546200035e565b846200039a565b602080601f8311600181146200045857600084156200043f5750858301515b600019600386901b1c1916600185901b178555620003e4565b600085815260208120601f198616915b82811015620004895788860151825594840194600190910190840162000468565b5085821015620004a85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620004da57634e487b7160e01b600052601160045260246000fd5b92915050565b6112fa80620004f06000396000f3fe60806040526004361061012e5760003560e01c8063715018a6116100ab578063a457c2d71161006f578063a457c2d714610353578063a9059cbb14610373578063c821fcb814610393578063dd62ed3e146103cc578063de79ef0f146103ec578063f2fde38b1461040c57600080fd5b8063715018a6146102c157806379cc6790146102d65780638da5cb5b146102f6578063916352591461031e57806395d89b411461033e57600080fd5b806323b872dd116100f257806323b872dd1461020f578063313ce5671461022f578063395093511461024b57806342966c681461026b57806370a082311461028b57600080fd5b806306fdde031461013a578063095ea7b31461016557806316c2be6b1461019557806318160ddd146101ce5780631dc61040146101ed57600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f61042c565b60405161015c9190610f70565b60405180910390f35b34801561017157600080fd5b50610185610180366004610fd3565b6104be565b604051901515815260200161015c565b3480156101a157600080fd5b506101856101b0366004610fff565b6001600160a01b031660009081526008602052604090205460ff1690565b3480156101da57600080fd5b506002545b60405190815260200161015c565b3480156101f957600080fd5b5061020d610208366004611023565b6104d8565b005b34801561021b57600080fd5b5061018561022a366004611061565b61050b565b34801561023b57600080fd5b506040516012815260200161015c565b34801561025757600080fd5b50610185610266366004610fd3565b61052f565b34801561027757600080fd5b5061020d6102863660046110a2565b610551565b34801561029757600080fd5b506101df6102a6366004610fff565b6001600160a01b031660009081526020819052604090205490565b3480156102cd57600080fd5b5061020d61055e565b3480156102e257600080fd5b5061020d6102f1366004610fd3565b610572565b34801561030257600080fd5b506005546040516001600160a01b03909116815260200161015c565b34801561032a57600080fd5b5061020d610339366004611023565b61058b565b34801561034a57600080fd5b5061014f6105be565b34801561035f57600080fd5b5061018561036e366004610fd3565b6105cd565b34801561037f57600080fd5b5061018561038e366004610fd3565b61064d565b34801561039f57600080fd5b506101856103ae366004610fff565b6001600160a01b031660009081526009602052604090205460ff1690565b3480156103d857600080fd5b506101df6103e73660046110bb565b61065b565b3480156103f857600080fd5b506101df610407366004610fff565b610686565b34801561041857600080fd5b5061020d610427366004610fff565b6106c3565b60606003805461043b906110e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610467906110e9565b80156104b45780601f10610489576101008083540402835291602001916104b4565b820191906000526020600020905b81548152906001019060200180831161049757829003601f168201915b5050505050905090565b6000336104cc818585610739565b60019150505b92915050565b6104e061085e565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6000336105198582856108b8565b610524858585610932565b506001949350505050565b6000336104cc818585610542838361065b565b61054c9190611139565b610739565b61055b3382610b36565b50565b61056661085e565b6105706000610c60565b565b61057d8233836108b8565b6105878282610b36565b5050565b61059361085e565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b60606004805461043b906110e9565b600033816105db828661065b565b9050838110156106405760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6105248286868403610739565b6000336104cc818585610932565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03811660009081526009602052604081205460ff16156106b05750600019919050565b506b033b2e3c9fd0803ce8000000919050565b6106cb61085e565b6001600160a01b0381166107305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610637565b61055b81610c60565b6001600160a01b03831661079b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610637565b6001600160a01b0382166107fc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610637565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b031633146105705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610637565b60006108c4848461065b565b9050600019811461092c578181101561091f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610637565b61092c8484848403610739565b50505050565b6001600160a01b0383166109585760405162461bcd60e51b81526004016106379061114c565b6001600160a01b03821661097e5760405162461bcd60e51b815260040161063790611191565b6001600160a01b0383811660009081526008602052604080822054928516825290205460ff9182169116811580156109b4575080155b15610a51576109c284610686565b836109e2866001600160a01b031660009081526020819052604090205490565b6109ec9190611139565b1115610a515760405162461bcd60e51b815260206004820152602e60248201527f45524332303a20526563697069656e742077616c6c65742073697a652065786360448201526d1959591cc81d1a19481b1a5b5a5d60921b6064820152608401610637565b600082158015610a5f575081155b15610ae8576001600160a01b038616737a250d5630b4cf539739df2c5dacb4c659f2488d1480610aab57506001600160a01b038516737a250d5630b4cf539739df2c5dacb4c659f2488d145b15610ace576064610abd6002866111d4565b610ac791906111eb565b9050610ae8565b6064610adb6004866111d4565b610ae591906111eb565b90505b8015610b2357600654610b069087906001600160a01b031683610cb2565b610b10818561120d565b9350610b1b81610ddc565b610b23610f2d565b610b2e868686610cb2565b505050505050565b6001600160a01b038216610b965760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610637565b6001600160a01b03821660009081526020819052604090205481811015610c0a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610637565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610851565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610cd85760405162461bcd60e51b81526004016106379061114c565b6001600160a01b038216610cfe5760405162461bcd60e51b815260040161063790611191565b6001600160a01b03831660009081526020819052604090205481811015610d765760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610637565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361092c565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610e1157610e11611220565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610e6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8e9190611236565b81600181518110610ea157610ea1611220565b6001600160a01b039283166020918202929092010152600754610ec59116836104be565b5060075460405163791ac94760e01b81526001600160a01b039091169063791ac94790610eff908590600090869030904290600401611253565b600060405180830381600087803b158015610f1957600080fd5b505af1158015610b2e573d6000803e3d6000fd5b60405147907350aefab26cd44ef2f2b69c3bae098a1e60f193469082156108fc029083906000818181858888f19350505050158015610587573d6000803e3d6000fd5b600060208083528351808285015260005b81811015610f9d57858101830151858201604001528201610f81565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461055b57600080fd5b60008060408385031215610fe657600080fd5b8235610ff181610fbe565b946020939093013593505050565b60006020828403121561101157600080fd5b813561101c81610fbe565b9392505050565b6000806040838503121561103657600080fd5b823561104181610fbe565b91506020830135801515811461105657600080fd5b809150509250929050565b60008060006060848603121561107657600080fd5b833561108181610fbe565b9250602084013561109181610fbe565b929592945050506040919091013590565b6000602082840312156110b457600080fd5b5035919050565b600080604083850312156110ce57600080fd5b82356110d981610fbe565b9150602083013561105681610fbe565b600181811c908216806110fd57607f821691505b60208210810361111d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104d2576104d2611123565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176104d2576104d2611123565b60008261120857634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156104d2576104d2611123565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561124857600080fd5b815161101c81610fbe565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156112a35784516001600160a01b03168352938301939183019160010161127e565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a0f77a835585f6cde36d30c992968ba705b3f9319c4a90307839e70f331649ca64736f6c63430008120033
Deployed Bytecode
0x60806040526004361061012e5760003560e01c8063715018a6116100ab578063a457c2d71161006f578063a457c2d714610353578063a9059cbb14610373578063c821fcb814610393578063dd62ed3e146103cc578063de79ef0f146103ec578063f2fde38b1461040c57600080fd5b8063715018a6146102c157806379cc6790146102d65780638da5cb5b146102f6578063916352591461031e57806395d89b411461033e57600080fd5b806323b872dd116100f257806323b872dd1461020f578063313ce5671461022f578063395093511461024b57806342966c681461026b57806370a082311461028b57600080fd5b806306fdde031461013a578063095ea7b31461016557806316c2be6b1461019557806318160ddd146101ce5780631dc61040146101ed57600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f61042c565b60405161015c9190610f70565b60405180910390f35b34801561017157600080fd5b50610185610180366004610fd3565b6104be565b604051901515815260200161015c565b3480156101a157600080fd5b506101856101b0366004610fff565b6001600160a01b031660009081526008602052604090205460ff1690565b3480156101da57600080fd5b506002545b60405190815260200161015c565b3480156101f957600080fd5b5061020d610208366004611023565b6104d8565b005b34801561021b57600080fd5b5061018561022a366004611061565b61050b565b34801561023b57600080fd5b506040516012815260200161015c565b34801561025757600080fd5b50610185610266366004610fd3565b61052f565b34801561027757600080fd5b5061020d6102863660046110a2565b610551565b34801561029757600080fd5b506101df6102a6366004610fff565b6001600160a01b031660009081526020819052604090205490565b3480156102cd57600080fd5b5061020d61055e565b3480156102e257600080fd5b5061020d6102f1366004610fd3565b610572565b34801561030257600080fd5b506005546040516001600160a01b03909116815260200161015c565b34801561032a57600080fd5b5061020d610339366004611023565b61058b565b34801561034a57600080fd5b5061014f6105be565b34801561035f57600080fd5b5061018561036e366004610fd3565b6105cd565b34801561037f57600080fd5b5061018561038e366004610fd3565b61064d565b34801561039f57600080fd5b506101856103ae366004610fff565b6001600160a01b031660009081526009602052604090205460ff1690565b3480156103d857600080fd5b506101df6103e73660046110bb565b61065b565b3480156103f857600080fd5b506101df610407366004610fff565b610686565b34801561041857600080fd5b5061020d610427366004610fff565b6106c3565b60606003805461043b906110e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610467906110e9565b80156104b45780601f10610489576101008083540402835291602001916104b4565b820191906000526020600020905b81548152906001019060200180831161049757829003601f168201915b5050505050905090565b6000336104cc818585610739565b60019150505b92915050565b6104e061085e565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6000336105198582856108b8565b610524858585610932565b506001949350505050565b6000336104cc818585610542838361065b565b61054c9190611139565b610739565b61055b3382610b36565b50565b61056661085e565b6105706000610c60565b565b61057d8233836108b8565b6105878282610b36565b5050565b61059361085e565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b60606004805461043b906110e9565b600033816105db828661065b565b9050838110156106405760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6105248286868403610739565b6000336104cc818585610932565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03811660009081526009602052604081205460ff16156106b05750600019919050565b506b033b2e3c9fd0803ce8000000919050565b6106cb61085e565b6001600160a01b0381166107305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610637565b61055b81610c60565b6001600160a01b03831661079b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610637565b6001600160a01b0382166107fc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610637565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b031633146105705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610637565b60006108c4848461065b565b9050600019811461092c578181101561091f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610637565b61092c8484848403610739565b50505050565b6001600160a01b0383166109585760405162461bcd60e51b81526004016106379061114c565b6001600160a01b03821661097e5760405162461bcd60e51b815260040161063790611191565b6001600160a01b0383811660009081526008602052604080822054928516825290205460ff9182169116811580156109b4575080155b15610a51576109c284610686565b836109e2866001600160a01b031660009081526020819052604090205490565b6109ec9190611139565b1115610a515760405162461bcd60e51b815260206004820152602e60248201527f45524332303a20526563697069656e742077616c6c65742073697a652065786360448201526d1959591cc81d1a19481b1a5b5a5d60921b6064820152608401610637565b600082158015610a5f575081155b15610ae8576001600160a01b038616737a250d5630b4cf539739df2c5dacb4c659f2488d1480610aab57506001600160a01b038516737a250d5630b4cf539739df2c5dacb4c659f2488d145b15610ace576064610abd6002866111d4565b610ac791906111eb565b9050610ae8565b6064610adb6004866111d4565b610ae591906111eb565b90505b8015610b2357600654610b069087906001600160a01b031683610cb2565b610b10818561120d565b9350610b1b81610ddc565b610b23610f2d565b610b2e868686610cb2565b505050505050565b6001600160a01b038216610b965760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610637565b6001600160a01b03821660009081526020819052604090205481811015610c0a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610637565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610851565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610cd85760405162461bcd60e51b81526004016106379061114c565b6001600160a01b038216610cfe5760405162461bcd60e51b815260040161063790611191565b6001600160a01b03831660009081526020819052604090205481811015610d765760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610637565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361092c565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610e1157610e11611220565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610e6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8e9190611236565b81600181518110610ea157610ea1611220565b6001600160a01b039283166020918202929092010152600754610ec59116836104be565b5060075460405163791ac94760e01b81526001600160a01b039091169063791ac94790610eff908590600090869030904290600401611253565b600060405180830381600087803b158015610f1957600080fd5b505af1158015610b2e573d6000803e3d6000fd5b60405147907350aefab26cd44ef2f2b69c3bae098a1e60f193469082156108fc029083906000818181858888f19350505050158015610587573d6000803e3d6000fd5b600060208083528351808285015260005b81811015610f9d57858101830151858201604001528201610f81565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461055b57600080fd5b60008060408385031215610fe657600080fd5b8235610ff181610fbe565b946020939093013593505050565b60006020828403121561101157600080fd5b813561101c81610fbe565b9392505050565b6000806040838503121561103657600080fd5b823561104181610fbe565b91506020830135801515811461105657600080fd5b809150509250929050565b60008060006060848603121561107657600080fd5b833561108181610fbe565b9250602084013561109181610fbe565b929592945050506040919091013590565b6000602082840312156110b457600080fd5b5035919050565b600080604083850312156110ce57600080fd5b82356110d981610fbe565b9150602083013561105681610fbe565b600181811c908216806110fd57607f821691505b60208210810361111d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104d2576104d2611123565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176104d2576104d2611123565b60008261120857634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156104d2576104d2611123565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561124857600080fd5b815161101c81610fbe565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156112a35784516001600160a01b03168352938301939183019160010161127e565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a0f77a835585f6cde36d30c992968ba705b3f9319c4a90307839e70f331649ca64736f6c63430008120033
Deployed Bytecode Sourcemap
21398:3916:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6954:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9314:201;;;;;;;;;;-1:-1:-1;9314:201:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;9314:201:0;1023:187:1;24542:118:0;;;;;;;;;;-1:-1:-1;24542:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;24625:27:0;24601:4;24625:27;;;:18;:27;;;;;;;;;24542:118;8083:108;;;;;;;;;;-1:-1:-1;8171:12:0;;8083:108;;;1613:25:1;;;1601:2;1586:18;8083:108:0;1467:177:1;24668:124:0;;;;;;;;;;-1:-1:-1;24668:124:0;;;;;:::i;:::-;;:::i;:::-;;10095:261;;;;;;;;;;-1:-1:-1;10095:261:0;;;;;:::i;:::-;;:::i;7925:93::-;;;;;;;;;;-1:-1:-1;7925:93:0;;8008:2;2673:36:1;;2661:2;2646:18;7925:93:0;2531:184:1;10765:238:0;;;;;;;;;;-1:-1:-1;10765:238:0;;;;;:::i;:::-;;:::i;18110:91::-;;;;;;;;;;-1:-1:-1;18110:91:0;;;;;:::i;:::-;;:::i;8254:127::-;;;;;;;;;;-1:-1:-1;8254:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8355:18:0;8328:7;8355:18;;;;;;;;;;;;8254:127;20260:103;;;;;;;;;;;;;:::i;18520:164::-;;;;;;;;;;-1:-1:-1;18520:164:0;;;;;:::i;:::-;;:::i;19619:87::-;;;;;;;;;;-1:-1:-1;19692:6:0;;19619:87;;-1:-1:-1;;;;;19692:6:0;;;3051:51:1;;3039:2;3024:18;19619:87:0;2905:203:1;24932:130:0;;;;;;;;;;-1:-1:-1;24932:130:0;;;;;:::i;:::-;;:::i;7173:104::-;;;;;;;;;;;;;:::i;11506:436::-;;;;;;;;;;-1:-1:-1;11506:436:0;;;;;:::i;:::-;;:::i;8587:193::-;;;;;;;;;;-1:-1:-1;8587:193:0;;;;;:::i;:::-;;:::i;24800:124::-;;;;;;;;;;-1:-1:-1;24800:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;24886:30:0;24862:4;24886:30;;;:21;:30;;;;;;;;;24800:124;8843:151;;;;;;;;;;-1:-1:-1;8843:151:0;;;;;:::i;:::-;;:::i;25070:204::-;;;;;;;;;;-1:-1:-1;25070:204:0;;;;;:::i;:::-;;:::i;20518:201::-;;;;;;;;;;-1:-1:-1;20518:201:0;;;;;:::i;:::-;;:::i;6954:100::-;7008:13;7041:5;7034:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6954:100;:::o;9314:201::-;9397:4;6172:10;9453:32;6172:10;9469:7;9478:6;9453:8;:32::i;:::-;9503:4;9496:11;;;9314:201;;;;;:::o;24668:124::-;19505:13;:11;:13::i;:::-;-1:-1:-1;;;;;24748:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:36;;-1:-1:-1;;24748:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24668:124::o;10095:261::-;10192:4;6172:10;10250:38;10266:4;6172:10;10281:6;10250:15;:38::i;:::-;10299:27;10309:4;10315:2;10319:6;10299:9;:27::i;:::-;-1:-1:-1;10344:4:0;;10095:261;-1:-1:-1;;;;10095:261:0:o;10765:238::-;10853:4;6172:10;10909:64;6172:10;10925:7;10962:10;10934:25;6172:10;10925:7;10934:9;:25::i;:::-;:38;;;;:::i;:::-;10909:8;:64::i;18110:91::-;18166:27;6172:10;18186:6;18166:5;:27::i;:::-;18110:91;:::o;20260:103::-;19505:13;:11;:13::i;:::-;20325:30:::1;20352:1;20325:18;:30::i;:::-;20260:103::o:0;18520:164::-;18597:46;18613:7;6172:10;18636:6;18597:15;:46::i;:::-;18654:22;18660:7;18669:6;18654:5;:22::i;:::-;18520:164;;:::o;24932:130::-;19505:13;:11;:13::i;:::-;-1:-1:-1;;;;;25015:30:0;;;::::1;;::::0;;;:21:::1;:30;::::0;;;;:39;;-1:-1:-1;;25015:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24932:130::o;7173:104::-;7229:13;7262:7;7255:14;;;;;:::i;11506:436::-;11599:4;6172:10;11599:4;11682:25;6172:10;11699:7;11682:9;:25::i;:::-;11655:52;;11746:15;11726:16;:35;;11718:85;;;;-1:-1:-1;;;11718:85:0;;4355:2:1;11718:85:0;;;4337:21:1;4394:2;4374:18;;;4367:30;4433:34;4413:18;;;4406:62;-1:-1:-1;;;4484:18:1;;;4477:35;4529:19;;11718:85:0;;;;;;;;;11839:60;11848:5;11855:7;11883:15;11864:16;:34;11839:8;:60::i;8587:193::-;8666:4;6172:10;8722:28;6172:10;8739:2;8743:6;8722:9;:28::i;8843:151::-;-1:-1:-1;;;;;8959:18:0;;;8932:7;8959:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8843:151::o;25070:204::-;-1:-1:-1;;;;;24886:30:0;;25134:7;24886:30;;;:21;:30;;;;;;;;25154:80;;;-1:-1:-1;;;25205:17:0;25070:204;-1:-1:-1;25070:204:0:o;25154:80::-;-1:-1:-1;21536:10:0;;25070:204;-1:-1:-1;25070:204:0:o;20518:201::-;19505:13;:11;:13::i;:::-;-1:-1:-1;;;;;20607:22:0;::::1;20599:73;;;::::0;-1:-1:-1;;;20599:73:0;;4761:2:1;20599:73:0::1;::::0;::::1;4743:21:1::0;4800:2;4780:18;;;4773:30;4839:34;4819:18;;;4812:62;-1:-1:-1;;;4890:18:1;;;4883:36;4936:19;;20599:73:0::1;4559:402:1::0;20599:73:0::1;20683:28;20702:8;20683:18;:28::i;15499:346::-:0;-1:-1:-1;;;;;15601:19:0;;15593:68;;;;-1:-1:-1;;;15593:68:0;;5168:2:1;15593:68:0;;;5150:21:1;5207:2;5187:18;;;5180:30;5246:34;5226:18;;;5219:62;-1:-1:-1;;;5297:18:1;;;5290:34;5341:19;;15593:68:0;4966:400:1;15593:68:0;-1:-1:-1;;;;;15680:21:0;;15672:68;;;;-1:-1:-1;;;15672:68:0;;5573:2:1;15672:68:0;;;5555:21:1;5612:2;5592:18;;;5585:30;5651:34;5631:18;;;5624:62;-1:-1:-1;;;5702:18:1;;;5695:32;5744:19;;15672:68:0;5371:398:1;15672:68:0;-1:-1:-1;;;;;15753:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15805:32;;1613:25:1;;;15805:32:0;;1586:18:1;15805:32:0;;;;;;;;15499:346;;;:::o;19784:132::-;19692:6;;-1:-1:-1;;;;;19692:6:0;6172:10;19848:23;19840:68;;;;-1:-1:-1;;;19840:68:0;;5976:2:1;19840:68:0;;;5958:21:1;;;5995:18;;;5988:30;6054:34;6034:18;;;6027:62;6106:18;;19840:68:0;5774:356:1;16136:419:0;16237:24;16264:25;16274:5;16281:7;16264:9;:25::i;:::-;16237:52;;-1:-1:-1;;16304:16:0;:37;16300:248;;16386:6;16366:16;:26;;16358:68;;;;-1:-1:-1;;;16358:68:0;;6337:2:1;16358:68:0;;;6319:21:1;6376:2;6356:18;;;6349:30;6415:31;6395:18;;;6388:59;6464:18;;16358:68:0;6135:353:1;16358:68:0;16470:51;16479:5;16486:7;16514:6;16495:16;:25;16470:8;:51::i;:::-;16226:329;16136:419;;;:::o;22500:1372::-;-1:-1:-1;;;;;22615:20:0;;22607:70;;;;-1:-1:-1;;;22607:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22696:23:0;;22688:71;;;;-1:-1:-1;;;22688:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24625:27:0;;;22772:19;24625:27;;;:18;:27;;;;;;;;;;;;;;;;;;;;;22888:15;;:37;;;;;22908:17;22907:18;22888:37;22884:189;;;22983:27;23000:9;22983:16;:27::i;:::-;22973:6;22950:20;22960:9;-1:-1:-1;;;;;8355:18:0;8328:7;8355:18;;;;;;;;;;;;8254:127;22950:20;:29;;;;:::i;:::-;:60;;22942:119;;;;-1:-1:-1;;;22942:119:0;;7505:2:1;22942:119:0;;;7487:21:1;7544:2;7524:18;;;7517:30;7583:34;7563:18;;;7556:62;-1:-1:-1;;;7634:18:1;;;7627:44;7688:19;;22942:119:0;7303:410:1;22942:119:0;23085:17;23118:14;23117:15;:37;;;;;23137:17;23136:18;23117:37;23113:342;;;-1:-1:-1;;;;;23175:23:0;;21759:42;23175:23;;:53;;-1:-1:-1;;;;;;23202:26:0;;21759:42;23202:26;23175:53;23171:273;;;23314:3;23294:16;21627:1;23294:6;:16;:::i;:::-;23293:24;;;;:::i;:::-;23281:36;;23171:273;;;23425:3;23404:17;21686:1;23404:6;:17;:::i;:::-;23403:25;;;;:::i;:::-;23391:37;;23171:273;23471:13;;23467:343;;23525:8;;23501:44;;23517:6;;-1:-1:-1;;;;;23525:8:0;23535:9;23501:15;:44::i;:::-;23596:19;23606:9;23596:19;;:::i;:::-;;;23724:28;23742:9;23724:17;:28::i;:::-;23767:31;:29;:31::i;:::-;23822:42;23838:6;23846:9;23857:6;23822:15;:42::i;:::-;22596:1276;;;22500:1372;;;:::o;14386:675::-;-1:-1:-1;;;;;14470:21:0;;14462:67;;;;-1:-1:-1;;;14462:67:0;;8448:2:1;14462:67:0;;;8430:21:1;8487:2;8467:18;;;8460:30;8526:34;8506:18;;;8499:62;-1:-1:-1;;;8577:18:1;;;8570:31;8618:19;;14462:67:0;8246:397:1;14462:67:0;-1:-1:-1;;;;;14629:18:0;;14604:22;14629:18;;;;;;;;;;;14666:24;;;;14658:71;;;;-1:-1:-1;;;14658:71:0;;8850:2:1;14658:71:0;;;8832:21:1;8889:2;8869:18;;;8862:30;8928:34;8908:18;;;8901:62;-1:-1:-1;;;8979:18:1;;;8972:32;9021:19;;14658:71:0;8648:398:1;14658:71:0;-1:-1:-1;;;;;14765:18:0;;:9;:18;;;;;;;;;;;14786:23;;;14765:44;;14904:12;:22;;;;;;;14955:37;1613:25:1;;;14765:9:0;;:18;14955:37;;1586:18:1;14955:37:0;1467:177:1;20879:191:0;20972:6;;;-1:-1:-1;;;;;20989:17:0;;;-1:-1:-1;;;;;;20989:17:0;;;;;;;21022:40;;20972:6;;;20989:17;20972:6;;21022:40;;20953:16;;21022:40;20942:128;20879:191;:::o;12412:806::-;-1:-1:-1;;;;;12509:18:0;;12501:68;;;;-1:-1:-1;;;12501:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12588:16:0;;12580:64;;;;-1:-1:-1;;;12580:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12730:15:0;;12708:19;12730:15;;;;;;;;;;;12764:21;;;;12756:72;;;;-1:-1:-1;;;12756:72:0;;9253:2:1;12756:72:0;;;9235:21:1;9292:2;9272:18;;;9265:30;9331:34;9311:18;;;9304:62;-1:-1:-1;;;9382:18:1;;;9375:36;9428:19;;12756:72:0;9051:402:1;12756:72:0;-1:-1:-1;;;;;12864:15:0;;;:9;:15;;;;;;;;;;;12882:20;;;12864:38;;13082:13;;;;;;;;;;:23;;;;;;13134:26;;1613:25:1;;;13082:13:0;;13134:26;;1586:18:1;13134:26:0;;;;;;;13173:37;14386:675;23884:478;23975:16;;;23989:1;23975:16;;;;;;;;23951:21;;23975:16;;;;;;;;;;-1:-1:-1;23975:16:0;23951:40;;24020:4;24002;24007:1;24002:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;24002:23:0;;;:7;;;;;;;;;;:23;;;;24046:21;;:28;;;-1:-1:-1;;;24046:28:0;;;;:21;;;;;:26;;:28;;;;;24002:7;;24046:28;;;;;:21;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24036:4;24041:1;24036:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;24036:38:0;;;:7;;;;;;;;;:38;24103:21;;24087:52;;24103:21;24127:11;24087:7;:52::i;:::-;-1:-1:-1;24152:21:0;;:202;;-1:-1:-1;;;24152:202:0;;-1:-1:-1;;;;;24152:21:0;;;;:72;;:202;;24239:11;;24152:21;;24281:4;;24308;;24328:15;;24152:202;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24374:160;24484:42;;24452:21;;21910:42;;24484;;;;;24452:21;;24434:15;24484:42;24434:15;24484:42;24452:21;21910:42;24484;;;;;;;;;;;;;;;;;;;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:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;:::-;1451:5;1215:247;-1:-1:-1;;;1215:247:1:o;1649:416::-;1714:6;1722;1775:2;1763:9;1754:7;1750:23;1746:32;1743:52;;;1791:1;1788;1781:12;1743:52;1830:9;1817:23;1849:31;1874:5;1849:31;:::i;:::-;1899:5;-1:-1:-1;1956:2:1;1941:18;;1928:32;1998:15;;1991:23;1979:36;;1969:64;;2029:1;2026;2019:12;1969:64;2052:7;2042:17;;;1649:416;;;;;:::o;2070:456::-;2147:6;2155;2163;2216:2;2204:9;2195:7;2191:23;2187:32;2184:52;;;2232:1;2229;2222:12;2184:52;2271:9;2258:23;2290:31;2315:5;2290:31;:::i;:::-;2340:5;-1:-1:-1;2397:2:1;2382:18;;2369:32;2410:33;2369:32;2410:33;:::i;:::-;2070:456;;2462:7;;-1:-1:-1;;;2516:2:1;2501:18;;;;2488:32;;2070:456::o;2720:180::-;2779:6;2832:2;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;-1:-1:-1;2871:23:1;;2720:180;-1:-1:-1;2720:180:1:o;3113:388::-;3181:6;3189;3242:2;3230:9;3221:7;3217:23;3213:32;3210:52;;;3258:1;3255;3248:12;3210:52;3297:9;3284:23;3316:31;3341:5;3316:31;:::i;:::-;3366:5;-1:-1:-1;3423:2:1;3408:18;;3395:32;3436:33;3395:32;3436:33;:::i;3506:380::-;3585:1;3581:12;;;;3628;;;3649:61;;3703:4;3695:6;3691:17;3681:27;;3649:61;3756:2;3748:6;3745:14;3725:18;3722:38;3719:161;;3802:10;3797:3;3793:20;3790:1;3783:31;3837:4;3834:1;3827:15;3865:4;3862:1;3855:15;3719:161;;3506:380;;;:::o;3891:127::-;3952:10;3947:3;3943:20;3940:1;3933:31;3983:4;3980:1;3973:15;4007:4;4004:1;3997:15;4023:125;4088:9;;;4109:10;;;4106:36;;;4122:18;;:::i;6493:401::-;6695:2;6677:21;;;6734:2;6714:18;;;6707:30;6773:34;6768:2;6753:18;;6746:62;-1:-1:-1;;;6839:2:1;6824:18;;6817:35;6884:3;6869:19;;6493:401::o;6899:399::-;7101:2;7083:21;;;7140:2;7120:18;;;7113:30;7179:34;7174:2;7159:18;;7152:62;-1:-1:-1;;;7245:2:1;7230:18;;7223:33;7288:3;7273:19;;6899:399::o;7718:168::-;7791:9;;;7822;;7839:15;;;7833:22;;7819:37;7809:71;;7860:18;;:::i;7891:217::-;7931:1;7957;7947:132;;8001:10;7996:3;7992:20;7989:1;7982:31;8036:4;8033:1;8026:15;8064:4;8061:1;8054:15;7947:132;-1:-1:-1;8093:9:1;;7891:217::o;8113:128::-;8180:9;;;8201:11;;;8198:37;;;8215:18;;:::i;9590:127::-;9651:10;9646:3;9642:20;9639:1;9632:31;9682:4;9679:1;9672:15;9706:4;9703:1;9696:15;9722:251;9792:6;9845:2;9833:9;9824:7;9820:23;9816:32;9813:52;;;9861:1;9858;9851:12;9813:52;9893:9;9887:16;9912:31;9937:5;9912:31;:::i;9978:980::-;10240:4;10288:3;10277:9;10273:19;10319:6;10308:9;10301:25;10345:2;10383:6;10378:2;10367:9;10363:18;10356:34;10426:3;10421:2;10410:9;10406:18;10399:31;10450:6;10485;10479:13;10516:6;10508;10501:22;10554:3;10543:9;10539:19;10532:26;;10593:2;10585:6;10581:15;10567:29;;10614:1;10624:195;10638:6;10635:1;10632:13;10624:195;;;10703:13;;-1:-1:-1;;;;;10699:39:1;10687:52;;10794:15;;;;10759:12;;;;10735:1;10653:9;10624:195;;;-1:-1:-1;;;;;;;10875:32:1;;;;10870:2;10855:18;;10848:60;-1:-1:-1;;;10939:3:1;10924:19;10917:35;10836:3;9978:980;-1:-1:-1;;;9978:980:1:o
Swarm Source
ipfs://a0f77a835585f6cde36d30c992968ba705b3f9319c4a90307839e70f331649ca
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.